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

fieldset[disabled] .multiselect{pointer-events:none}.multiselect__spinner{position:absolute;right:1px;top:1px;width:40px;height:38px;background:#fff;display:block}.multiselect__spinner:after,.multiselect__spinner:before{position:absolute;content:"";top:50%;left:50%;margin:-8px 0 0 -8px;width:16px;height:16px;border-radius:100%;border:2px solid transparent;border-top-color:#41b883;box-shadow:0 0 0 1px transparent}.multiselect__spinner:before{animation:spinning 2.4s cubic-bezier(.41,.26,.2,.62);animation-iteration-count:infinite}.multiselect__spinner:after{animation:spinning 2.4s cubic-bezier(.51,.09,.21,.8);animation-iteration-count:infinite}.multiselect__loading-enter-active,.multiselect__loading-leave-active{transition:opacity .4s ease-in-out;opacity:1}.multiselect__loading-enter,.multiselect__loading-leave-active{opacity:0}.multiselect,.multiselect__input,.multiselect__single{font-family:inherit;font-size:16px;touch-action:manipulation}.multiselect{box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:left;color:#35495e}.multiselect *{box-sizing:border-box}.multiselect:focus{outline:none}.multiselect--disabled{background:#ededed;pointer-events:none;opacity:.6}.multiselect--active{z-index:50}.multiselect--active:not(.multiselect--above) .multiselect__current,.multiselect--active:not(.multiselect--above) .multiselect__input,.multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-left-radius:0;border-bottom-right-radius:0}.multiselect--active .multiselect__select{transform:rotate(180deg)}.multiselect--above.multiselect--active .multiselect__current,.multiselect--above.multiselect--active .multiselect__input,.multiselect--above.multiselect--active .multiselect__tags{border-top-left-radius:0;border-top-right-radius:0}.multiselect__input,.multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 0 0 5px;width:100%;transition:border .1s ease;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.multiselect__input::-moz-placeholder{color:#35495e}.multiselect__input::placeholder{color:#35495e}.multiselect__tag~.multiselect__input,.multiselect__tag~.multiselect__single{width:auto}.multiselect__input:hover,.multiselect__single:hover{border-color:#cfcfcf}.multiselect__input:focus,.multiselect__single:focus{border-color:#a8a8a8;outline:none}.multiselect__single{padding-left:5px;margin-bottom:8px}.multiselect__tags-wrap{display:inline}.multiselect__tags{min-height:40px;display:block;padding:8px 40px 0 8px;border-radius:5px;border:1px solid #e8e8e8;background:#fff;font-size:14px}.multiselect__tag{position:relative;display:inline-block;padding:4px 26px 4px 10px;border-radius:5px;margin-right:10px;color:#fff;line-height:1;background:#41b883;margin-bottom:5px;white-space:nowrap;overflow:hidden;max-width:100%;text-overflow:ellipsis}.multiselect__tag-icon{cursor:pointer;margin-left:7px;position:absolute;right:0;top:0;bottom:0;font-weight:700;font-style:normal;width:22px;text-align:center;line-height:22px;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\D7";color:#266d4d;font-size:14px}.multiselect__tag-icon:focus,.multiselect__tag-icon:hover{background:#369a6e}.multiselect__tag-icon:focus:after,.multiselect__tag-icon:hover:after{color:#fff}.multiselect__current{min-height:40px;overflow:hidden;padding:8px 30px 0 12px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.multiselect__current,.multiselect__select{line-height:16px;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.multiselect__select{position:absolute;width:40px;height:38px;right:1px;top:1px;padding:4px 8px;text-align:center;transition:transform .2s ease}.multiselect__select:before{position:relative;right:0;top:65%;color:#999;margin-top:4px;border-color:#999 transparent transparent;border-style:solid;border-width:5px 5px 0;content:""}.multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.multiselect--active .multiselect__placeholder{display:none}.multiselect__content-wrapper{position:absolute;display:block;background:#fff;width:100%;max-height:240px;overflow:auto;border:1px solid #e8e8e8;border-top:none;border-bottom-left-radius:5px;border-bottom-right-radius:5px;z-index:50;-webkit-overflow-scrolling:touch}.multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.multiselect__content::webkit-scrollbar{display:none}.multiselect__element{display:block}.multiselect__option{display:block;padding:12px;min-height:40px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap}.multiselect__option:after{top:0;right:0;position:absolute;line-height:40px;padding-right:12px;padding-left:20px;font-size:13px}.multiselect__option--highlight{background:#41b883;outline:none;color:#fff}.multiselect__option--highlight:after{content:attr(data-select);background:#41b883;color:#fff}.multiselect__option--selected{background:#f3f3f3;color:#35495e;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver;background:inherit}.multiselect__option--selected.multiselect__option--highlight{background:#ff6a6a;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#ff6a6a;content:attr(data-deselect);color:#fff}.multiselect--disabled .multiselect__current,.multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.multiselect__option--group{background:#ededed;color:#35495e}.multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.multiselect__option--group-selected.multiselect__option--highlight{background:#ff6a6a;color:#fff}.multiselect__option--group-selected.multiselect__option--highlight:after{background:#ff6a6a;content:attr(data-deselect);color:#fff}.multiselect-enter-active,.multiselect-leave-active{transition:all .15s ease}.multiselect-enter,.multiselect-leave-active{opacity:0}.multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}[dir=rtl] .multiselect{text-align:right}[dir=rtl] .multiselect__select{right:auto;left:1px}[dir=rtl] .multiselect__tags{padding:8px 8px 0 40px}[dir=rtl] .multiselect__content{text-align:right}[dir=rtl] .multiselect__option:after{right:auto;left:0}[dir=rtl] .multiselect__clear{right:auto;left:12px}[dir=rtl] .multiselect__spinner{right:auto;left:1px}@keyframes spinning{0%{transform:rotate(0)}to{transform:rotate(2turn)}}
@charset "UTF-8";
/* Global - when u want to change bootstrap variable */
/* inter-100 - latin-ext_latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  src: local(""), url(/fonts/inter-v7-latin-ext_latin-100.woff2?58d62cf2b6f6a82a6934d48fd5a273f8) format("woff2"), url(/fonts/inter-v7-latin-ext_latin-100.woff?06b0788b299f9691392a3e7a011c3bd7) format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-200 - latin-ext_latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  src: local(""), url(/fonts/inter-v7-latin-ext_latin-200.woff2?85824c9bb7362c4523f4b603a50a718b) format("woff2"), url(/fonts/inter-v7-latin-ext_latin-200.woff?1e10a090e7a1a0943ea55d1ff90357e0) format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-300 - latin-ext_latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: local(""), url(/fonts/inter-v7-latin-ext_latin-300.woff2?63d88e98d504b129c79e9e483261e58a) format("woff2"), url(/fonts/inter-v7-latin-ext_latin-300.woff?0208ae3eebcfbfd6bf145261c919f1ac) format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-regular - latin-ext_latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: local(""), url(/fonts/inter-v7-latin-ext_latin-regular.woff2?bad5b1e6108b7494ecfa9d2b0b9db675) format("woff2"), url(/fonts/inter-v7-latin-ext_latin-regular.woff?53f0bff94fb2411296d7e01d804d8caa) format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-500 - latin-ext_latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: local(""), url(/fonts/inter-v7-latin-ext_latin-500.woff2?8badf2f573a5b321587326bc3f099b7e) format("woff2"), url(/fonts/inter-v7-latin-ext_latin-500.woff?1cdda7dc1584cbad770fe98760121cca) format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-600 - latin-ext_latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: local(""), url(/fonts/inter-v7-latin-ext_latin-600.woff2?a4ee8c515038dae49c5fba45eb69e73b) format("woff2"), url(/fonts/inter-v7-latin-ext_latin-600.woff?0714af3383af646b07aa36bb02a379f7) format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-700 - latin-ext_latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: local(""), url(/fonts/inter-v7-latin-ext_latin-700.woff2?b5b5afc7b6e2a0c89a85d9c4debed6ce) format("woff2"), url(/fonts/inter-v7-latin-ext_latin-700.woff?320bab860bac52d76fbea75c59331ed1) format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-800 - latin-ext_latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: local(""), url(/fonts/inter-v7-latin-ext_latin-800.woff2?fd62aa67654157c5736cb244bc244ac2) format("woff2"), url(/fonts/inter-v7-latin-ext_latin-800.woff?b265973a8b6aef90f1f042d16bf74aed) format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-900 - latin-ext_latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  src: local(""), url(/fonts/inter-v7-latin-ext_latin-900.woff2?8361ff41385624c25abaa0a6d36d7358) format("woff2"), url(/fonts/inter-v7-latin-ext_latin-900.woff?beb43a600521ddaddb1f84c4dfdc522c) format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Hellix-Regular */
@font-face {
  font-family: "hellix-regular";
  font-style: inherit;
  font-weight: inherit;
  font-variation-settings: "wght" 400;
  letter-spacing: 0;
  -ms-font-feature-settings: "liga" 0, "dlig" 0;
  font-feature-settings: "liga" 0, "dlig" 0;
  src: local(""), url(/fonts/Hellix-Regular.woff2?87915f7ff497eaae537a852d1989ec0d) format("woff2"), url(/fonts/Hellix-Regular.woff?6c5d5e08dfbe26131ae6f3879d52880d) format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Hellix-Semibold */
@font-face {
  font-family: "hellix-semibold";
  font-style: inherit;
  font-weight: inherit;
  font-variation-settings: "wght" 600;
  letter-spacing: -0.03em;
  -ms-font-feature-settings: "liga" 0, "dlig" 0;
  font-feature-settings: "liga" 0, "dlig" 0;
  src: local(""), url(/fonts/Hellix-SemiBold.woff2?2e260b4cd25f85b05308f720d383b92d) format("woff2"), url(/fonts/Hellix-SemiBold.woff?88d6a7e07d48217d7e85fdf6e0b89806) format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Hellix-Medium */
@font-face {
  font-family: "hellix-medium";
  font-style: inherit;
  font-weight: inherit;
  font-variation-settings: "wght" 500;
  letter-spacing: -0.03em;
  -ms-font-feature-settings: "liga" 0, "dlig" 0;
  font-feature-settings: "liga" 0, "dlig" 0;
  src: local(""), url(/fonts/Hellix-Medium.woff2?f87bee92cdde7e884544fcaed9702483) format("woff2"), url(/fonts/Hellix-Medium.woff?dafa1806375a73f663f10613cff6a0f5) format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Hellix-Bold */
@font-face {
  font-family: "hellix-bold";
  font-style: inherit;
  font-weight: inherit;
  font-variation-settings: "wght" 700;
  letter-spacing: 0;
  -ms-font-feature-settings: "liga" 0, "dlig" 0;
  font-feature-settings: "liga" 0, "dlig" 0;
  src: local(""), url(/fonts/Hellix-Bold.woff2?b27296501e8d81ab58cf002e05362521) format("woff2"), url(/fonts/Hellix-Bold.woff?1f7a5b7ec0dd4fbb806b1010ebe3ac03) format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/*BTNS*/
/*small BTN*/
/*normal BTN*/
/*Badge*/
/*Alerts*/
/*modals*/
/* Tooltip */
/* Bootstrap Vue Popover */
/* Custom input */
/*Custom checkbox*/
/*Modal opacity*/
/*
$pagination-padding-y:              .5rem !default;
$pagination-padding-x:              .75rem !default;
$pagination-padding-y-sm:           .25rem !default;
$pagination-padding-x-sm:           .5rem !default;
$pagination-padding-y-lg:           .75rem !default;
$pagination-padding-x-lg:           1.5rem !default;
$pagination-line-height:            1.25 !default;

$pagination-color:                  $link-color !default;
$pagination-bg:                     $white !default;
$pagination-border-width:           $border-width !default;
$pagination-border-color:           $gray-300 !default;

$pagination-focus-box-shadow:       $input-btn-focus-box-shadow !default;
$pagination-focus-outline:          0 !default;

$pagination-hover-color:            $link-hover-color !default;
$pagination-hover-bg:               $gray-200 !default;
$pagination-hover-border-color:     $gray-300 !default;

$pagination-active-color:           $component-active-color !default;
$pagination-active-bg:              $component-active-bg !default;
$pagination-active-border-color:    $pagination-active-bg !default;

$pagination-disabled-color:         $gray-600 !default;
$pagination-disabled-bg:            $white !default;
$pagination-disabled-border-color:  $gray-300 !default;

$pagination-border-radius-sm:       $border-radius-sm !default;
$pagination-border-radius-lg:       $border-radius-lg !default;
*/
/*
----------------
- mixins: begin
----------------
*/
/*
----------------
- mixins: end
----------------
*/
: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: #fde200;
  --secondary: #DBDBDB;
  --success: #45c61e;
  --info: #D6EBFB;
  --warning: #FABE4B;
  --danger: #df5a4c;
  --light: #ffffff;
  --dark: #999999;
  --lightv2: #ededed;
  --lighter: #f0f0f0;
  --darkv2: #5f5f5f;
  --darkv3: #b2b2b2;
  --darkv4: #706f6f;
  --black: #000;
  --color01: #21B558;
  --color02: #e53325;
  --color03: #FABE4B;
  --color04: #0aa5df;
  --color05: #C173FE;
  --color06: #FB8BE9;
  --color07: #BDE5EB;
  --color08: #1F68AC;
  --color09: #2DC9A3;
  --color10: #CE3838;
  --color11: #EE9329;
  --color12: #5EC2CF;
  --color13: #FF2B78;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1600px;
  --breakpoint-xxxl: 1920px;
  --font-family-sans-serif: "hellix-regular";
  --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: "hellix-regular";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  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: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

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: 0.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: #fde200;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #b19e00;
  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: 1.1rem;
  padding-bottom: 1.1rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  font-weight: 400;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.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: 0.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: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 4.6rem;
}

h2, .h2 {
  font-size: 3.8rem;
}

h3, .h3 {
  font-size: 3.2rem;
}

h4, .h4 {
  font-size: 2.4rem;
}

h5, .h5 {
  font-size: 1.6rem;
}

h6, .h6 {
  font-size: 1.6rem;
}

.lead {
  font-size: 2rem;
  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 rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.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: 0.5rem;
}

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

.blockquote {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

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

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

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.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: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.5rem;
}
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-xxxl,
.container-xl {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1170px;
  }
}
@media (min-width: 1920px) {
  .container-xxxl, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1440px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xxxl,
.col-xxxl-auto, .col-xxxl-12, .col-xxxl-11, .col-xxxl-10, .col-xxxl-9, .col-xxxl-8, .col-xxxl-7, .col-xxxl-6, .col-xxxl-5, .col-xxxl-4, .col-xxxl-3, .col-xxxl-2, .col-xxxl-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: 1.5rem;
  padding-left: 1.5rem;
}

.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: 1600px) {
  .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-xxxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xxxl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xxxl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xxxl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xxxl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xxxl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xxxl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxxl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xxxl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xxxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxxl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xxxl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xxxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxxl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xxxl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xxxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxxl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xxxl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xxxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxxl-first {
    order: -1;
  }
  .order-xxxl-last {
    order: 13;
  }
  .order-xxxl-0 {
    order: 0;
  }
  .order-xxxl-1 {
    order: 1;
  }
  .order-xxxl-2 {
    order: 2;
  }
  .order-xxxl-3 {
    order: 3;
  }
  .order-xxxl-4 {
    order: 4;
  }
  .order-xxxl-5 {
    order: 5;
  }
  .order-xxxl-6 {
    order: 6;
  }
  .order-xxxl-7 {
    order: 7;
  }
  .order-xxxl-8 {
    order: 8;
  }
  .order-xxxl-9 {
    order: 9;
  }
  .order-xxxl-10 {
    order: 10;
  }
  .order-xxxl-11 {
    order: 11;
  }
  .order-xxxl-12 {
    order: 12;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .offset-xxxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxxl-3 {
    margin-left: 25%;
  }
  .offset-xxxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxxl-6 {
    margin-left: 50%;
  }
  .offset-xxxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxxl-9 {
    margin-left: 75%;
  }
  .offset-xxxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxxl-11 {
    margin-left: 91.66666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #18181B;
}
.table th,
.table td {
  padding: 1.1rem;
  vertical-align: top;
  border-top: 1px solid #C1C0C0;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #C1C0C0;
}
.table tbody + tbody {
  border-top: 2px solid #C1C0C0;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #C1C0C0;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #C1C0C0;
}
.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, 0.05);
}

.table-hover tbody tr:hover {
  color: #18181B;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #fef7b8;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #fef07a;
}

.table-hover .table-primary:hover {
  background-color: #fef49f;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #fef49f;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: whitesmoke;
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #ececec;
}

.table-hover .table-secondary:hover {
  background-color: #e8e8e8;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #e8e8e8;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #cbefc0;
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #9ee18a;
}

.table-hover .table-success:hover {
  background-color: #baeaac;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #baeaac;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #f4f9fe;
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #eaf5fd;
}

.table-hover .table-info:hover {
  background-color: #ddecfc;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #ddecfc;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #feedcd;
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #fcdda1;
}

.table-hover .table-warning:hover {
  background-color: #fee4b4;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #fee4b4;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f6d1cd;
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #eea9a2;
}

.table-hover .table-danger:hover {
  background-color: #f2bdb7;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f2bdb7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: white;
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: white;
}

.table-hover .table-light:hover {
  background-color: #f2f2f2;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #f2f2f2;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #e2e2e2;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #cacaca;
}

.table-hover .table-dark:hover {
  background-color: #d5d5d5;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #d5d5d5;
}

.table-lightv2,
.table-lightv2 > th,
.table-lightv2 > td {
  background-color: #fafafa;
}
.table-lightv2 th,
.table-lightv2 td,
.table-lightv2 thead th,
.table-lightv2 tbody + tbody {
  border-color: #f6f6f6;
}

.table-hover .table-lightv2:hover {
  background-color: #ededed;
}
.table-hover .table-lightv2:hover > td,
.table-hover .table-lightv2:hover > th {
  background-color: #ededed;
}

.table-lighter,
.table-lighter > th,
.table-lighter > td {
  background-color: #fbfbfb;
}
.table-lighter th,
.table-lighter td,
.table-lighter thead th,
.table-lighter tbody + tbody {
  border-color: #f7f7f7;
}

.table-hover .table-lighter:hover {
  background-color: #eeeeee;
}
.table-hover .table-lighter:hover > td,
.table-hover .table-lighter:hover > th {
  background-color: #eeeeee;
}

.table-darkv2,
.table-darkv2 > th,
.table-darkv2 > td {
  background-color: #d2d2d2;
}
.table-darkv2 th,
.table-darkv2 td,
.table-darkv2 thead th,
.table-darkv2 tbody + tbody {
  border-color: #acacac;
}

.table-hover .table-darkv2:hover {
  background-color: #c5c5c5;
}
.table-hover .table-darkv2:hover > td,
.table-hover .table-darkv2:hover > th {
  background-color: #c5c5c5;
}

.table-darkv3,
.table-darkv3 > th,
.table-darkv3 > td {
  background-color: #e9e9e9;
}
.table-darkv3 th,
.table-darkv3 td,
.table-darkv3 thead th,
.table-darkv3 tbody + tbody {
  border-color: #d7d7d7;
}

.table-hover .table-darkv3:hover {
  background-color: gainsboro;
}
.table-hover .table-darkv3:hover > td,
.table-hover .table-darkv3:hover > th {
  background-color: gainsboro;
}

.table-darkv4,
.table-darkv4 > th,
.table-darkv4 > td {
  background-color: #d7d7d7;
}
.table-darkv4 th,
.table-darkv4 td,
.table-darkv4 thead th,
.table-darkv4 tbody + tbody {
  border-color: #b5b4b4;
}

.table-hover .table-darkv4:hover {
  background-color: #cacaca;
}
.table-hover .table-darkv4:hover > td,
.table-hover .table-darkv4:hover > th {
  background-color: #cacaca;
}

.table-black,
.table-black > th,
.table-black > td {
  background-color: #b8b8b8;
}
.table-black th,
.table-black td,
.table-black thead th,
.table-black tbody + tbody {
  border-color: #7a7a7a;
}

.table-hover .table-black:hover {
  background-color: #ababab;
}
.table-hover .table-black:hover > td,
.table-hover .table-black:hover > th {
  background-color: #ababab;
}

.table-color01,
.table-color01 > th,
.table-color01 > td {
  background-color: #c1ead0;
}
.table-color01 th,
.table-color01 td,
.table-color01 thead th,
.table-color01 tbody + tbody {
  border-color: #8cd9a8;
}

.table-hover .table-color01:hover {
  background-color: #aee4c2;
}
.table-hover .table-color01:hover > td,
.table-hover .table-color01:hover > th {
  background-color: #aee4c2;
}

.table-color02,
.table-color02 > th,
.table-color02 > td {
  background-color: #f8c6c2;
}
.table-color02 th,
.table-color02 td,
.table-color02 thead th,
.table-color02 tbody + tbody {
  border-color: #f1958e;
}

.table-hover .table-color02:hover {
  background-color: #f5b1ab;
}
.table-hover .table-color02:hover > td,
.table-hover .table-color02:hover > th {
  background-color: #f5b1ab;
}

.table-color03,
.table-color03 > th,
.table-color03 > td {
  background-color: #feedcd;
}
.table-color03 th,
.table-color03 td,
.table-color03 thead th,
.table-color03 tbody + tbody {
  border-color: #fcdda1;
}

.table-hover .table-color03:hover {
  background-color: #fee4b4;
}
.table-hover .table-color03:hover > td,
.table-hover .table-color03:hover > th {
  background-color: #fee4b4;
}

.table-color04,
.table-color04 > th,
.table-color04 > td {
  background-color: #bae6f6;
}
.table-color04 th,
.table-color04 td,
.table-color04 thead th,
.table-color04 tbody + tbody {
  border-color: #80d0ee;
}

.table-hover .table-color04:hover {
  background-color: #a3def3;
}
.table-hover .table-color04:hover > td,
.table-hover .table-color04:hover > th {
  background-color: #a3def3;
}

.table-color05,
.table-color05 > th,
.table-color05 > td {
  background-color: #eed8ff;
}
.table-color05 th,
.table-color05 td,
.table-color05 thead th,
.table-color05 tbody + tbody {
  border-color: #dfb6fe;
}

.table-hover .table-color05:hover {
  background-color: #e3bfff;
}
.table-hover .table-color05:hover > td,
.table-hover .table-color05:hover > th {
  background-color: #e3bfff;
}

.table-color06,
.table-color06 > th,
.table-color06 > td {
  background-color: #fedff9;
}
.table-color06 th,
.table-color06 td,
.table-color06 thead th,
.table-color06 tbody + tbody {
  border-color: #fdc3f4;
}

.table-hover .table-color06:hover {
  background-color: #fdc6f4;
}
.table-hover .table-color06:hover > td,
.table-hover .table-color06:hover > th {
  background-color: #fdc6f4;
}

.table-color07,
.table-color07 > th,
.table-color07 > td {
  background-color: #edf8f9;
}
.table-color07 th,
.table-color07 td,
.table-color07 thead th,
.table-color07 tbody + tbody {
  border-color: #ddf1f5;
}

.table-hover .table-color07:hover {
  background-color: #daf1f3;
}
.table-hover .table-color07:hover > td,
.table-hover .table-color07:hover > th {
  background-color: #daf1f3;
}

.table-color08,
.table-color08 > th,
.table-color08 > td {
  background-color: #c0d5e8;
}
.table-color08 th,
.table-color08 td,
.table-color08 thead th,
.table-color08 tbody + tbody {
  border-color: #8bb0d4;
}

.table-hover .table-color08:hover {
  background-color: #adc9e1;
}
.table-hover .table-color08:hover > td,
.table-hover .table-color08:hover > th {
  background-color: #adc9e1;
}

.table-color09,
.table-color09 > th,
.table-color09 > td {
  background-color: #c4f0e5;
}
.table-color09 th,
.table-color09 td,
.table-color09 thead th,
.table-color09 tbody + tbody {
  border-color: #92e3cf;
}

.table-hover .table-color09:hover {
  background-color: #b0ebdc;
}
.table-hover .table-color09:hover > td,
.table-hover .table-color09:hover > th {
  background-color: #b0ebdc;
}

.table-color10,
.table-color10 > th,
.table-color10 > td {
  background-color: #f1c7c7;
}
.table-color10 th,
.table-color10 td,
.table-color10 thead th,
.table-color10 tbody + tbody {
  border-color: #e69898;
}

.table-hover .table-color10:hover {
  background-color: #ecb3b3;
}
.table-hover .table-color10:hover > td,
.table-hover .table-color10:hover > th {
  background-color: #ecb3b3;
}

.table-color11,
.table-color11 > th,
.table-color11 > td {
  background-color: #fae1c3;
}
.table-color11 th,
.table-color11 td,
.table-color11 thead th,
.table-color11 tbody + tbody {
  border-color: #f6c790;
}

.table-hover .table-color11:hover {
  background-color: #f8d5ab;
}
.table-hover .table-color11:hover > td,
.table-hover .table-color11:hover > th {
  background-color: #f8d5ab;
}

.table-color12,
.table-color12 > th,
.table-color12 > td {
  background-color: #d2eef2;
}
.table-color12 th,
.table-color12 td,
.table-color12 thead th,
.table-color12 tbody + tbody {
  border-color: #abdfe6;
}

.table-hover .table-color12:hover {
  background-color: #bee7ec;
}
.table-hover .table-color12:hover > td,
.table-hover .table-color12:hover > th {
  background-color: #bee7ec;
}

.table-color13,
.table-color13 > th,
.table-color13 > td {
  background-color: #ffc4d9;
}
.table-color13 th,
.table-color13 td,
.table-color13 thead th,
.table-color13 tbody + tbody {
  border-color: #ff91b9;
}

.table-hover .table-color13:hover {
  background-color: #ffabc9;
}
.table-hover .table-color13:hover > td,
.table-hover .table-color13:hover > th {
  background-color: #ffabc9;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th {
  color: #808080;
  background-color: #e9ecef;
  border-color: #C1C0C0;
}

.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, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.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: 1599.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-xxxl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xxxl > .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.5em + 1.4rem + 4px);
  padding: 0.7rem 1.2rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  background-color: #efefef;
  background-clip: padding-box;
  border: 2px solid #ffffff;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.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: #000;
  background-color: #efefef;
  border-color: #fff17e;
  outline: 0;
  box-shadow: 0 0 0 0 rgba(253, 226, 0, 0.25);
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #c6c6c6;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
select.form-control:focus::-ms-value {
  color: #000;
  background-color: #efefef;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.7rem + 2px);
  padding-bottom: calc(0.7rem + 2px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 2px);
  padding-bottom: calc(0.5rem + 2px);
  font-size: 2rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 2px);
  padding-bottom: calc(0.25rem + 2px);
  font-size: 1.4rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.7rem 0;
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #000;
  background-color: transparent;
  border: solid transparent;
  border-width: 2px 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.5em + 0.5rem + 4px);
  padding: 0.25rem 0.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
  border-radius: 0.5rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 4px);
  padding: 0.5rem 1rem;
  font-size: 2rem;
  line-height: 1.5;
  border-radius: 0.5rem;
}

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: 0.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: 0.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: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #45c61e;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.35rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #212529;
  background-color: rgba(69, 198, 30, 0.9);
  border-radius: 0;
}
.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: #45c61e;
  padding-right: calc(1.5em + 1.4rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2345c61e' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.35rem) center;
  background-size: calc(0.75em + 0.7rem) calc(0.75em + 0.7rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #45c61e;
  box-shadow: 0 0 0 0 rgba(69, 198, 30, 0.25);
}

.was-validated select.form-control:valid, select.form-control.is-valid {
  padding-right: 4.8rem !important;
  background-position: right 2.4rem center;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 1.4rem);
  background-position: top calc(0.375em + 0.35rem) right calc(0.375em + 0.35rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #45c61e;
  padding-right: calc(0.75em + 3.25rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1.2rem center/8px 10px no-repeat, #efefef url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2345c61e' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 2.2rem/calc(0.75em + 0.7rem) calc(0.75em + 0.7rem) no-repeat;
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #45c61e;
  box-shadow: 0 0 0 0 rgba(69, 198, 30, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #45c61e;
}
.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: #45c61e;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #45c61e;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #5ee136;
  background-color: #5ee136;
}
.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 0 rgba(69, 198, 30, 0.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: #45c61e;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #45c61e;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #45c61e;
  box-shadow: 0 0 0 0 rgba(69, 198, 30, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #df5a4c;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.35rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #212529;
  background-color: rgba(223, 90, 76, 0.9);
  border-radius: 0;
}
.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: #df5a4c;
  padding-right: calc(1.5em + 1.4rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23df5a4c' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23df5a4c' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.35rem) center;
  background-size: calc(0.75em + 0.7rem) calc(0.75em + 0.7rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #df5a4c;
  box-shadow: 0 0 0 0 rgba(223, 90, 76, 0.25);
}

.was-validated select.form-control:invalid, select.form-control.is-invalid {
  padding-right: 4.8rem !important;
  background-position: right 2.4rem center;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 1.4rem);
  background-position: top calc(0.375em + 0.35rem) right calc(0.375em + 0.35rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #df5a4c;
  padding-right: calc(0.75em + 3.25rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1.2rem center/8px 10px no-repeat, #efefef url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23df5a4c' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23df5a4c' stroke='none'/%3e%3c/svg%3e") center right 2.2rem/calc(0.75em + 0.7rem) calc(0.75em + 0.7rem) no-repeat;
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #df5a4c;
  box-shadow: 0 0 0 0 rgba(223, 90, 76, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #df5a4c;
}
.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: #df5a4c;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #df5a4c;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e78277;
  background-color: #e78277;
}
.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 0 rgba(223, 90, 76, 0.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: #df5a4c;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #df5a4c;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #df5a4c;
  box-shadow: 0 0 0 0 rgba(223, 90, 76, 0.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: 0.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: normal;
  color: #000;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 2px solid transparent;
  padding: 0.9rem 1.8rem;
  font-size: 1.4rem;
  line-height: 1.5;
  border-radius: 3rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #000;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(253, 226, 0, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.45;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #212529;
  background-color: #fde200;
  border-color: #fde200;
}
.btn-primary:hover {
  color: #212529;
  background-color: #d7c000;
  border-color: #cab400;
}
.btn-primary:focus, .btn-primary.focus {
  color: #212529;
  background-color: #d7c000;
  border-color: #cab400;
  box-shadow: 0 0 0 0 rgba(220, 198, 6, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #212529;
  background-color: #fde200;
  border-color: #fde200;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #212529;
  background-color: #cab400;
  border-color: #bda900;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(220, 198, 6, 0.5);
}

.btn-secondary {
  color: #212529;
  background-color: #DBDBDB;
  border-color: #DBDBDB;
}
.btn-secondary:hover {
  color: #212529;
  background-color: #c8c8c8;
  border-color: #c2c2c2;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #212529;
  background-color: #c8c8c8;
  border-color: #c2c2c2;
  box-shadow: 0 0 0 0 rgba(191, 192, 192, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #212529;
  background-color: #DBDBDB;
  border-color: #DBDBDB;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #212529;
  background-color: #c2c2c2;
  border-color: #bbbbbb;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(191, 192, 192, 0.5);
}

.btn-success {
  color: #212529;
  background-color: #45c61e;
  border-color: #45c61e;
}
.btn-success:hover {
  color: #fff;
  background-color: #39a519;
  border-color: #369a17;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #39a519;
  border-color: #369a17;
  box-shadow: 0 0 0 0 rgba(64, 174, 32, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #212529;
  background-color: #45c61e;
  border-color: #45c61e;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #369a17;
  border-color: #328f16;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(64, 174, 32, 0.5);
}

.btn-info {
  color: #212529;
  background-color: #D6EBFB;
  border-color: #D6EBFB;
}
.btn-info:hover {
  color: #212529;
  background-color: #b3daf8;
  border-color: #a8d4f6;
}
.btn-info:focus, .btn-info.focus {
  color: #212529;
  background-color: #b3daf8;
  border-color: #a8d4f6;
  box-shadow: 0 0 0 0 rgba(187, 205, 220, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #212529;
  background-color: #D6EBFB;
  border-color: #D6EBFB;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #212529;
  background-color: #a8d4f6;
  border-color: #9ccff5;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(187, 205, 220, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #FABE4B;
  border-color: #FABE4B;
}
.btn-warning:hover {
  color: #212529;
  background-color: #f9b126;
  border-color: #f9ac19;
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #f9b126;
  border-color: #f9ac19;
  box-shadow: 0 0 0 0 rgba(217, 167, 70, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #FABE4B;
  border-color: #FABE4B;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #f9ac19;
  border-color: #f8a80d;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(217, 167, 70, 0.5);
}

.btn-danger {
  color: #212529;
  background-color: #df5a4c;
  border-color: #df5a4c;
}
.btn-danger:hover {
  color: #fff;
  background-color: #d93c2c;
  border-color: #d23626;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #d93c2c;
  border-color: #d23626;
  box-shadow: 0 0 0 0 rgba(195, 82, 71, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #212529;
  background-color: #df5a4c;
  border-color: #df5a4c;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #d23626;
  border-color: #c83324;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(195, 82, 71, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-light:hover {
  color: #212529;
  background-color: #ececec;
  border-color: #e6e6e6;
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #ececec;
  border-color: #e6e6e6;
  box-shadow: 0 0 0 0 rgba(222, 222, 223, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #e6e6e6;
  border-color: #dfdfdf;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(222, 222, 223, 0.5);
}

.btn-dark {
  color: #212529;
  background-color: #999999;
  border-color: #999999;
}
.btn-dark:hover {
  color: #212529;
  background-color: #868686;
  border-color: gray;
}
.btn-dark:focus, .btn-dark.focus {
  color: #212529;
  background-color: #868686;
  border-color: gray;
  box-shadow: 0 0 0 0 rgba(135, 136, 136, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #212529;
  background-color: #999999;
  border-color: #999999;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #212529;
  background-color: gray;
  border-color: #797979;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(135, 136, 136, 0.5);
}

.btn-lightv2 {
  color: #212529;
  background-color: #ededed;
  border-color: #ededed;
}
.btn-lightv2:hover {
  color: #212529;
  background-color: #dadada;
  border-color: #d4d4d4;
}
.btn-lightv2:focus, .btn-lightv2.focus {
  color: #212529;
  background-color: #dadada;
  border-color: #d4d4d4;
  box-shadow: 0 0 0 0 rgba(206, 207, 208, 0.5);
}
.btn-lightv2.disabled, .btn-lightv2:disabled {
  color: #212529;
  background-color: #ededed;
  border-color: #ededed;
}
.btn-lightv2:not(:disabled):not(.disabled):active, .btn-lightv2:not(:disabled):not(.disabled).active, .show > .btn-lightv2.dropdown-toggle {
  color: #212529;
  background-color: #d4d4d4;
  border-color: #cdcdcd;
}
.btn-lightv2:not(:disabled):not(.disabled):active:focus, .btn-lightv2:not(:disabled):not(.disabled).active:focus, .show > .btn-lightv2.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(206, 207, 208, 0.5);
}

.btn-lighter {
  color: #212529;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
.btn-lighter:hover {
  color: #212529;
  background-color: #dddddd;
  border-color: #d7d7d7;
}
.btn-lighter:focus, .btn-lighter.focus {
  color: #212529;
  background-color: #dddddd;
  border-color: #d7d7d7;
  box-shadow: 0 0 0 0 rgba(209, 210, 210, 0.5);
}
.btn-lighter.disabled, .btn-lighter:disabled {
  color: #212529;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
.btn-lighter:not(:disabled):not(.disabled):active, .btn-lighter:not(:disabled):not(.disabled).active, .show > .btn-lighter.dropdown-toggle {
  color: #212529;
  background-color: #d7d7d7;
  border-color: #d0d0d0;
}
.btn-lighter:not(:disabled):not(.disabled):active:focus, .btn-lighter:not(:disabled):not(.disabled).active:focus, .show > .btn-lighter.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(209, 210, 210, 0.5);
}

.btn-darkv2 {
  color: #fff;
  background-color: #5f5f5f;
  border-color: #5f5f5f;
}
.btn-darkv2:hover {
  color: #fff;
  background-color: #4c4c4c;
  border-color: #464646;
}
.btn-darkv2:focus, .btn-darkv2.focus {
  color: #fff;
  background-color: #4c4c4c;
  border-color: #464646;
  box-shadow: 0 0 0 0 rgba(119, 119, 119, 0.5);
}
.btn-darkv2.disabled, .btn-darkv2:disabled {
  color: #fff;
  background-color: #5f5f5f;
  border-color: #5f5f5f;
}
.btn-darkv2:not(:disabled):not(.disabled):active, .btn-darkv2:not(:disabled):not(.disabled).active, .show > .btn-darkv2.dropdown-toggle {
  color: #fff;
  background-color: #464646;
  border-color: #3f3f3f;
}
.btn-darkv2:not(:disabled):not(.disabled):active:focus, .btn-darkv2:not(:disabled):not(.disabled).active:focus, .show > .btn-darkv2.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(119, 119, 119, 0.5);
}

.btn-darkv3 {
  color: #212529;
  background-color: #b2b2b2;
  border-color: #b2b2b2;
}
.btn-darkv3:hover {
  color: #212529;
  background-color: #9f9f9f;
  border-color: #999999;
}
.btn-darkv3:focus, .btn-darkv3.focus {
  color: #212529;
  background-color: #9f9f9f;
  border-color: #999999;
  box-shadow: 0 0 0 0 rgba(156, 157, 157, 0.5);
}
.btn-darkv3.disabled, .btn-darkv3:disabled {
  color: #212529;
  background-color: #b2b2b2;
  border-color: #b2b2b2;
}
.btn-darkv3:not(:disabled):not(.disabled):active, .btn-darkv3:not(:disabled):not(.disabled).active, .show > .btn-darkv3.dropdown-toggle {
  color: #212529;
  background-color: #999999;
  border-color: #929292;
}
.btn-darkv3:not(:disabled):not(.disabled):active:focus, .btn-darkv3:not(:disabled):not(.disabled).active:focus, .show > .btn-darkv3.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(156, 157, 157, 0.5);
}

.btn-darkv4 {
  color: #fff;
  background-color: #706f6f;
  border-color: #706f6f;
}
.btn-darkv4:hover {
  color: #fff;
  background-color: #5d5c5c;
  border-color: #565656;
}
.btn-darkv4:focus, .btn-darkv4.focus {
  color: #fff;
  background-color: #5d5c5c;
  border-color: #565656;
  box-shadow: 0 0 0 0 rgba(133, 133, 133, 0.5);
}
.btn-darkv4.disabled, .btn-darkv4:disabled {
  color: #fff;
  background-color: #706f6f;
  border-color: #706f6f;
}
.btn-darkv4:not(:disabled):not(.disabled):active, .btn-darkv4:not(:disabled):not(.disabled).active, .show > .btn-darkv4.dropdown-toggle {
  color: #fff;
  background-color: #565656;
  border-color: #504f4f;
}
.btn-darkv4:not(:disabled):not(.disabled):active:focus, .btn-darkv4:not(:disabled):not(.disabled).active:focus, .show > .btn-darkv4.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(133, 133, 133, 0.5);
}

.btn-black {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.btn-black:hover {
  color: #fff;
  background-color: black;
  border-color: black;
}
.btn-black:focus, .btn-black.focus {
  color: #fff;
  background-color: black;
  border-color: black;
  box-shadow: 0 0 0 0 rgba(38, 38, 38, 0.5);
}
.btn-black.disabled, .btn-black:disabled {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.btn-black:not(:disabled):not(.disabled):active, .btn-black:not(:disabled):not(.disabled).active, .show > .btn-black.dropdown-toggle {
  color: #fff;
  background-color: black;
  border-color: black;
}
.btn-black:not(:disabled):not(.disabled):active:focus, .btn-black:not(:disabled):not(.disabled).active:focus, .show > .btn-black.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(38, 38, 38, 0.5);
}

.btn-color01 {
  color: #212529;
  background-color: #21B558;
  border-color: #21B558;
}
.btn-color01:hover {
  color: #fff;
  background-color: #1b9548;
  border-color: #198a43;
}
.btn-color01:focus, .btn-color01.focus {
  color: #fff;
  background-color: #1b9548;
  border-color: #198a43;
  box-shadow: 0 0 0 0 rgba(33, 159, 81, 0.5);
}
.btn-color01.disabled, .btn-color01:disabled {
  color: #212529;
  background-color: #21B558;
  border-color: #21B558;
}
.btn-color01:not(:disabled):not(.disabled):active, .btn-color01:not(:disabled):not(.disabled).active, .show > .btn-color01.dropdown-toggle {
  color: #fff;
  background-color: #198a43;
  border-color: #177f3e;
}
.btn-color01:not(:disabled):not(.disabled):active:focus, .btn-color01:not(:disabled):not(.disabled).active:focus, .show > .btn-color01.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(33, 159, 81, 0.5);
}

.btn-color02 {
  color: #fff;
  background-color: #e53325;
  border-color: #e53325;
}
.btn-color02:hover {
  color: #fff;
  background-color: #cb2518;
  border-color: #c02317;
}
.btn-color02:focus, .btn-color02.focus {
  color: #fff;
  background-color: #cb2518;
  border-color: #c02317;
  box-shadow: 0 0 0 0 rgba(233, 82, 70, 0.5);
}
.btn-color02.disabled, .btn-color02:disabled {
  color: #fff;
  background-color: #e53325;
  border-color: #e53325;
}
.btn-color02:not(:disabled):not(.disabled):active, .btn-color02:not(:disabled):not(.disabled).active, .show > .btn-color02.dropdown-toggle {
  color: #fff;
  background-color: #c02317;
  border-color: #b52116;
}
.btn-color02:not(:disabled):not(.disabled):active:focus, .btn-color02:not(:disabled):not(.disabled).active:focus, .show > .btn-color02.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(233, 82, 70, 0.5);
}

.btn-color03 {
  color: #212529;
  background-color: #FABE4B;
  border-color: #FABE4B;
}
.btn-color03:hover {
  color: #212529;
  background-color: #f9b126;
  border-color: #f9ac19;
}
.btn-color03:focus, .btn-color03.focus {
  color: #212529;
  background-color: #f9b126;
  border-color: #f9ac19;
  box-shadow: 0 0 0 0 rgba(217, 167, 70, 0.5);
}
.btn-color03.disabled, .btn-color03:disabled {
  color: #212529;
  background-color: #FABE4B;
  border-color: #FABE4B;
}
.btn-color03:not(:disabled):not(.disabled):active, .btn-color03:not(:disabled):not(.disabled).active, .show > .btn-color03.dropdown-toggle {
  color: #212529;
  background-color: #f9ac19;
  border-color: #f8a80d;
}
.btn-color03:not(:disabled):not(.disabled):active:focus, .btn-color03:not(:disabled):not(.disabled).active:focus, .show > .btn-color03.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(217, 167, 70, 0.5);
}

.btn-color04 {
  color: #212529;
  background-color: #0aa5df;
  border-color: #0aa5df;
}
.btn-color04:hover {
  color: #fff;
  background-color: #088aba;
  border-color: #0881ae;
}
.btn-color04:focus, .btn-color04.focus {
  color: #fff;
  background-color: #088aba;
  border-color: #0881ae;
  box-shadow: 0 0 0 0 rgba(13, 146, 196, 0.5);
}
.btn-color04.disabled, .btn-color04:disabled {
  color: #212529;
  background-color: #0aa5df;
  border-color: #0aa5df;
}
.btn-color04:not(:disabled):not(.disabled):active, .btn-color04:not(:disabled):not(.disabled).active, .show > .btn-color04.dropdown-toggle {
  color: #fff;
  background-color: #0881ae;
  border-color: #0778a2;
}
.btn-color04:not(:disabled):not(.disabled):active:focus, .btn-color04:not(:disabled):not(.disabled).active:focus, .show > .btn-color04.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(13, 146, 196, 0.5);
}

.btn-color05 {
  color: #212529;
  background-color: #C173FE;
  border-color: #C173FE;
}
.btn-color05:hover {
  color: #212529;
  background-color: #b04dfe;
  border-color: #ab40fe;
}
.btn-color05:focus, .btn-color05.focus {
  color: #212529;
  background-color: #b04dfe;
  border-color: #ab40fe;
  box-shadow: 0 0 0 0 rgba(169, 103, 222, 0.5);
}
.btn-color05.disabled, .btn-color05:disabled {
  color: #212529;
  background-color: #C173FE;
  border-color: #C173FE;
}
.btn-color05:not(:disabled):not(.disabled):active, .btn-color05:not(:disabled):not(.disabled).active, .show > .btn-color05.dropdown-toggle {
  color: #fff;
  background-color: #ab40fe;
  border-color: #a534fe;
}
.btn-color05:not(:disabled):not(.disabled):active:focus, .btn-color05:not(:disabled):not(.disabled).active:focus, .show > .btn-color05.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(169, 103, 222, 0.5);
}

.btn-color06 {
  color: #212529;
  background-color: #FB8BE9;
  border-color: #FB8BE9;
}
.btn-color06:hover {
  color: #212529;
  background-color: #fa66e2;
  border-color: #f95ae0;
}
.btn-color06:focus, .btn-color06.focus {
  color: #212529;
  background-color: #fa66e2;
  border-color: #f95ae0;
  box-shadow: 0 0 0 0 rgba(218, 124, 204, 0.5);
}
.btn-color06.disabled, .btn-color06:disabled {
  color: #212529;
  background-color: #FB8BE9;
  border-color: #FB8BE9;
}
.btn-color06:not(:disabled):not(.disabled):active, .btn-color06:not(:disabled):not(.disabled).active, .show > .btn-color06.dropdown-toggle {
  color: #212529;
  background-color: #f95ae0;
  border-color: #f94ddd;
}
.btn-color06:not(:disabled):not(.disabled):active:focus, .btn-color06:not(:disabled):not(.disabled).active:focus, .show > .btn-color06.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(218, 124, 204, 0.5);
}

.btn-color07 {
  color: #212529;
  background-color: #BDE5EB;
  border-color: #BDE5EB;
}
.btn-color07:hover {
  color: #212529;
  background-color: #a0d9e2;
  border-color: #96d6df;
}
.btn-color07:focus, .btn-color07.focus {
  color: #212529;
  background-color: #a0d9e2;
  border-color: #96d6df;
  box-shadow: 0 0 0 0 rgba(166, 200, 206, 0.5);
}
.btn-color07.disabled, .btn-color07:disabled {
  color: #212529;
  background-color: #BDE5EB;
  border-color: #BDE5EB;
}
.btn-color07:not(:disabled):not(.disabled):active, .btn-color07:not(:disabled):not(.disabled).active, .show > .btn-color07.dropdown-toggle {
  color: #212529;
  background-color: #96d6df;
  border-color: #8cd2dc;
}
.btn-color07:not(:disabled):not(.disabled):active:focus, .btn-color07:not(:disabled):not(.disabled).active:focus, .show > .btn-color07.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(166, 200, 206, 0.5);
}

.btn-color08 {
  color: #fff;
  background-color: #1F68AC;
  border-color: #1F68AC;
}
.btn-color08:hover {
  color: #fff;
  background-color: #19548c;
  border-color: #174e81;
}
.btn-color08:focus, .btn-color08.focus {
  color: #fff;
  background-color: #19548c;
  border-color: #174e81;
  box-shadow: 0 0 0 0 rgba(65, 127, 184, 0.5);
}
.btn-color08.disabled, .btn-color08:disabled {
  color: #fff;
  background-color: #1F68AC;
  border-color: #1F68AC;
}
.btn-color08:not(:disabled):not(.disabled):active, .btn-color08:not(:disabled):not(.disabled).active, .show > .btn-color08.dropdown-toggle {
  color: #fff;
  background-color: #174e81;
  border-color: #154776;
}
.btn-color08:not(:disabled):not(.disabled):active:focus, .btn-color08:not(:disabled):not(.disabled).active:focus, .show > .btn-color08.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(65, 127, 184, 0.5);
}

.btn-color09 {
  color: #212529;
  background-color: #2DC9A3;
  border-color: #2DC9A3;
}
.btn-color09:hover {
  color: #212529;
  background-color: #26aa8a;
  border-color: #249f81;
}
.btn-color09:focus, .btn-color09.focus {
  color: #212529;
  background-color: #26aa8a;
  border-color: #249f81;
  box-shadow: 0 0 0 0 rgba(43, 176, 145, 0.5);
}
.btn-color09.disabled, .btn-color09:disabled {
  color: #212529;
  background-color: #2DC9A3;
  border-color: #2DC9A3;
}
.btn-color09:not(:disabled):not(.disabled):active, .btn-color09:not(:disabled):not(.disabled).active, .show > .btn-color09.dropdown-toggle {
  color: #fff;
  background-color: #249f81;
  border-color: #219579;
}
.btn-color09:not(:disabled):not(.disabled):active:focus, .btn-color09:not(:disabled):not(.disabled).active:focus, .show > .btn-color09.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(43, 176, 145, 0.5);
}

.btn-color10 {
  color: #fff;
  background-color: #CE3838;
  border-color: #CE3838;
}
.btn-color10:hover {
  color: #fff;
  background-color: #b42c2c;
  border-color: #a92a2a;
}
.btn-color10:focus, .btn-color10.focus {
  color: #fff;
  background-color: #b42c2c;
  border-color: #a92a2a;
  box-shadow: 0 0 0 0 rgba(213, 86, 86, 0.5);
}
.btn-color10.disabled, .btn-color10:disabled {
  color: #fff;
  background-color: #CE3838;
  border-color: #CE3838;
}
.btn-color10:not(:disabled):not(.disabled):active, .btn-color10:not(:disabled):not(.disabled).active, .show > .btn-color10.dropdown-toggle {
  color: #fff;
  background-color: #a92a2a;
  border-color: #9f2727;
}
.btn-color10:not(:disabled):not(.disabled):active:focus, .btn-color10:not(:disabled):not(.disabled).active:focus, .show > .btn-color10.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(213, 86, 86, 0.5);
}

.btn-color11 {
  color: #212529;
  background-color: #EE9329;
  border-color: #EE9329;
}
.btn-color11:hover {
  color: #212529;
  background-color: #df8012;
  border-color: #d37911;
}
.btn-color11:focus, .btn-color11.focus {
  color: #212529;
  background-color: #df8012;
  border-color: #d37911;
  box-shadow: 0 0 0 0 rgba(207, 131, 41, 0.5);
}
.btn-color11.disabled, .btn-color11:disabled {
  color: #212529;
  background-color: #EE9329;
  border-color: #EE9329;
}
.btn-color11:not(:disabled):not(.disabled):active, .btn-color11:not(:disabled):not(.disabled).active, .show > .btn-color11.dropdown-toggle {
  color: #212529;
  background-color: #d37911;
  border-color: #c77310;
}
.btn-color11:not(:disabled):not(.disabled):active:focus, .btn-color11:not(:disabled):not(.disabled).active:focus, .show > .btn-color11.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(207, 131, 41, 0.5);
}

.btn-color12 {
  color: #212529;
  background-color: #5EC2CF;
  border-color: #5EC2CF;
}
.btn-color12:hover {
  color: #212529;
  background-color: #41b7c6;
  border-color: #39b1c1;
}
.btn-color12:focus, .btn-color12.focus {
  color: #212529;
  background-color: #41b7c6;
  border-color: #39b1c1;
  box-shadow: 0 0 0 0 rgba(85, 170, 182, 0.5);
}
.btn-color12.disabled, .btn-color12:disabled {
  color: #212529;
  background-color: #5EC2CF;
  border-color: #5EC2CF;
}
.btn-color12:not(:disabled):not(.disabled):active, .btn-color12:not(:disabled):not(.disabled).active, .show > .btn-color12.dropdown-toggle {
  color: #212529;
  background-color: #39b1c1;
  border-color: #36a8b7;
}
.btn-color12:not(:disabled):not(.disabled):active:focus, .btn-color12:not(:disabled):not(.disabled).active:focus, .show > .btn-color12.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(85, 170, 182, 0.5);
}

.btn-color13 {
  color: #fff;
  background-color: #FF2B78;
  border-color: #FF2B78;
}
.btn-color13:hover {
  color: #fff;
  background-color: #ff0560;
  border-color: #f7005a;
}
.btn-color13:focus, .btn-color13.focus {
  color: #fff;
  background-color: #ff0560;
  border-color: #f7005a;
  box-shadow: 0 0 0 0 rgba(255, 75, 140, 0.5);
}
.btn-color13.disabled, .btn-color13:disabled {
  color: #fff;
  background-color: #FF2B78;
  border-color: #FF2B78;
}
.btn-color13:not(:disabled):not(.disabled):active, .btn-color13:not(:disabled):not(.disabled).active, .show > .btn-color13.dropdown-toggle {
  color: #fff;
  background-color: #f7005a;
  border-color: #ea0055;
}
.btn-color13:not(:disabled):not(.disabled):active:focus, .btn-color13:not(:disabled):not(.disabled).active:focus, .show > .btn-color13.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(255, 75, 140, 0.5);
}

.btn-outline-primary {
  color: #fde200;
  border-color: #fde200;
}
.btn-outline-primary:hover {
  color: #212529;
  background-color: #fde200;
  border-color: #fde200;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0 rgba(253, 226, 0, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #fde200;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #212529;
  background-color: #fde200;
  border-color: #fde200;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(253, 226, 0, 0.5);
}

.btn-outline-secondary {
  color: #DBDBDB;
  border-color: #DBDBDB;
}
.btn-outline-secondary:hover {
  color: #212529;
  background-color: #DBDBDB;
  border-color: #DBDBDB;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0 rgba(219, 219, 219, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #DBDBDB;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #212529;
  background-color: #DBDBDB;
  border-color: #DBDBDB;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(219, 219, 219, 0.5);
}

.btn-outline-success {
  color: #45c61e;
  border-color: #45c61e;
}
.btn-outline-success:hover {
  color: #212529;
  background-color: #45c61e;
  border-color: #45c61e;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0 rgba(69, 198, 30, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #45c61e;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #212529;
  background-color: #45c61e;
  border-color: #45c61e;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(69, 198, 30, 0.5);
}

.btn-outline-info {
  color: #D6EBFB;
  border-color: #D6EBFB;
}
.btn-outline-info:hover {
  color: #212529;
  background-color: #D6EBFB;
  border-color: #D6EBFB;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0 rgba(214, 235, 251, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #D6EBFB;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #212529;
  background-color: #D6EBFB;
  border-color: #D6EBFB;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(214, 235, 251, 0.5);
}

.btn-outline-warning {
  color: #FABE4B;
  border-color: #FABE4B;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #FABE4B;
  border-color: #FABE4B;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0 rgba(250, 190, 75, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #FABE4B;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #FABE4B;
  border-color: #FABE4B;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(250, 190, 75, 0.5);
}

.btn-outline-danger {
  color: #df5a4c;
  border-color: #df5a4c;
}
.btn-outline-danger:hover {
  color: #212529;
  background-color: #df5a4c;
  border-color: #df5a4c;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0 rgba(223, 90, 76, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #df5a4c;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #212529;
  background-color: #df5a4c;
  border-color: #df5a4c;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(223, 90, 76, 0.5);
}

.btn-outline-light {
  color: #ffffff;
  border-color: #ffffff;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #ffffff;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
}

.btn-outline-dark {
  color: #999999;
  border-color: #999999;
}
.btn-outline-dark:hover {
  color: #212529;
  background-color: #999999;
  border-color: #999999;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0 rgba(153, 153, 153, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #999999;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #212529;
  background-color: #999999;
  border-color: #999999;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(153, 153, 153, 0.5);
}

.btn-outline-lightv2 {
  color: #ededed;
  border-color: #ededed;
}
.btn-outline-lightv2:hover {
  color: #212529;
  background-color: #ededed;
  border-color: #ededed;
}
.btn-outline-lightv2:focus, .btn-outline-lightv2.focus {
  box-shadow: 0 0 0 0 rgba(237, 237, 237, 0.5);
}
.btn-outline-lightv2.disabled, .btn-outline-lightv2:disabled {
  color: #ededed;
  background-color: transparent;
}
.btn-outline-lightv2:not(:disabled):not(.disabled):active, .btn-outline-lightv2:not(:disabled):not(.disabled).active, .show > .btn-outline-lightv2.dropdown-toggle {
  color: #212529;
  background-color: #ededed;
  border-color: #ededed;
}
.btn-outline-lightv2:not(:disabled):not(.disabled):active:focus, .btn-outline-lightv2:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-lightv2.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(237, 237, 237, 0.5);
}

.btn-outline-lighter {
  color: #f0f0f0;
  border-color: #f0f0f0;
}
.btn-outline-lighter:hover {
  color: #212529;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
.btn-outline-lighter:focus, .btn-outline-lighter.focus {
  box-shadow: 0 0 0 0 rgba(240, 240, 240, 0.5);
}
.btn-outline-lighter.disabled, .btn-outline-lighter:disabled {
  color: #f0f0f0;
  background-color: transparent;
}
.btn-outline-lighter:not(:disabled):not(.disabled):active, .btn-outline-lighter:not(:disabled):not(.disabled).active, .show > .btn-outline-lighter.dropdown-toggle {
  color: #212529;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
.btn-outline-lighter:not(:disabled):not(.disabled):active:focus, .btn-outline-lighter:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-lighter.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(240, 240, 240, 0.5);
}

.btn-outline-darkv2 {
  color: #5f5f5f;
  border-color: #5f5f5f;
}
.btn-outline-darkv2:hover {
  color: #fff;
  background-color: #5f5f5f;
  border-color: #5f5f5f;
}
.btn-outline-darkv2:focus, .btn-outline-darkv2.focus {
  box-shadow: 0 0 0 0 rgba(95, 95, 95, 0.5);
}
.btn-outline-darkv2.disabled, .btn-outline-darkv2:disabled {
  color: #5f5f5f;
  background-color: transparent;
}
.btn-outline-darkv2:not(:disabled):not(.disabled):active, .btn-outline-darkv2:not(:disabled):not(.disabled).active, .show > .btn-outline-darkv2.dropdown-toggle {
  color: #fff;
  background-color: #5f5f5f;
  border-color: #5f5f5f;
}
.btn-outline-darkv2:not(:disabled):not(.disabled):active:focus, .btn-outline-darkv2:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-darkv2.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(95, 95, 95, 0.5);
}

.btn-outline-darkv3 {
  color: #b2b2b2;
  border-color: #b2b2b2;
}
.btn-outline-darkv3:hover {
  color: #212529;
  background-color: #b2b2b2;
  border-color: #b2b2b2;
}
.btn-outline-darkv3:focus, .btn-outline-darkv3.focus {
  box-shadow: 0 0 0 0 rgba(178, 178, 178, 0.5);
}
.btn-outline-darkv3.disabled, .btn-outline-darkv3:disabled {
  color: #b2b2b2;
  background-color: transparent;
}
.btn-outline-darkv3:not(:disabled):not(.disabled):active, .btn-outline-darkv3:not(:disabled):not(.disabled).active, .show > .btn-outline-darkv3.dropdown-toggle {
  color: #212529;
  background-color: #b2b2b2;
  border-color: #b2b2b2;
}
.btn-outline-darkv3:not(:disabled):not(.disabled):active:focus, .btn-outline-darkv3:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-darkv3.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(178, 178, 178, 0.5);
}

.btn-outline-darkv4 {
  color: #706f6f;
  border-color: #706f6f;
}
.btn-outline-darkv4:hover {
  color: #fff;
  background-color: #706f6f;
  border-color: #706f6f;
}
.btn-outline-darkv4:focus, .btn-outline-darkv4.focus {
  box-shadow: 0 0 0 0 rgba(112, 111, 111, 0.5);
}
.btn-outline-darkv4.disabled, .btn-outline-darkv4:disabled {
  color: #706f6f;
  background-color: transparent;
}
.btn-outline-darkv4:not(:disabled):not(.disabled):active, .btn-outline-darkv4:not(:disabled):not(.disabled).active, .show > .btn-outline-darkv4.dropdown-toggle {
  color: #fff;
  background-color: #706f6f;
  border-color: #706f6f;
}
.btn-outline-darkv4:not(:disabled):not(.disabled):active:focus, .btn-outline-darkv4:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-darkv4.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(112, 111, 111, 0.5);
}

.btn-outline-black {
  color: #000;
  border-color: #000;
}
.btn-outline-black:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.btn-outline-black:focus, .btn-outline-black.focus {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.btn-outline-black.disabled, .btn-outline-black:disabled {
  color: #000;
  background-color: transparent;
}
.btn-outline-black:not(:disabled):not(.disabled):active, .btn-outline-black:not(:disabled):not(.disabled).active, .show > .btn-outline-black.dropdown-toggle {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.btn-outline-black:not(:disabled):not(.disabled):active:focus, .btn-outline-black:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-black.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}

.btn-outline-color01 {
  color: #21B558;
  border-color: #21B558;
}
.btn-outline-color01:hover {
  color: #212529;
  background-color: #21B558;
  border-color: #21B558;
}
.btn-outline-color01:focus, .btn-outline-color01.focus {
  box-shadow: 0 0 0 0 rgba(33, 181, 88, 0.5);
}
.btn-outline-color01.disabled, .btn-outline-color01:disabled {
  color: #21B558;
  background-color: transparent;
}
.btn-outline-color01:not(:disabled):not(.disabled):active, .btn-outline-color01:not(:disabled):not(.disabled).active, .show > .btn-outline-color01.dropdown-toggle {
  color: #212529;
  background-color: #21B558;
  border-color: #21B558;
}
.btn-outline-color01:not(:disabled):not(.disabled):active:focus, .btn-outline-color01:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-color01.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(33, 181, 88, 0.5);
}

.btn-outline-color02 {
  color: #e53325;
  border-color: #e53325;
}
.btn-outline-color02:hover {
  color: #fff;
  background-color: #e53325;
  border-color: #e53325;
}
.btn-outline-color02:focus, .btn-outline-color02.focus {
  box-shadow: 0 0 0 0 rgba(229, 51, 37, 0.5);
}
.btn-outline-color02.disabled, .btn-outline-color02:disabled {
  color: #e53325;
  background-color: transparent;
}
.btn-outline-color02:not(:disabled):not(.disabled):active, .btn-outline-color02:not(:disabled):not(.disabled).active, .show > .btn-outline-color02.dropdown-toggle {
  color: #fff;
  background-color: #e53325;
  border-color: #e53325;
}
.btn-outline-color02:not(:disabled):not(.disabled):active:focus, .btn-outline-color02:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-color02.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(229, 51, 37, 0.5);
}

.btn-outline-color03 {
  color: #FABE4B;
  border-color: #FABE4B;
}
.btn-outline-color03:hover {
  color: #212529;
  background-color: #FABE4B;
  border-color: #FABE4B;
}
.btn-outline-color03:focus, .btn-outline-color03.focus {
  box-shadow: 0 0 0 0 rgba(250, 190, 75, 0.5);
}
.btn-outline-color03.disabled, .btn-outline-color03:disabled {
  color: #FABE4B;
  background-color: transparent;
}
.btn-outline-color03:not(:disabled):not(.disabled):active, .btn-outline-color03:not(:disabled):not(.disabled).active, .show > .btn-outline-color03.dropdown-toggle {
  color: #212529;
  background-color: #FABE4B;
  border-color: #FABE4B;
}
.btn-outline-color03:not(:disabled):not(.disabled):active:focus, .btn-outline-color03:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-color03.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(250, 190, 75, 0.5);
}

.btn-outline-color04 {
  color: #0aa5df;
  border-color: #0aa5df;
}
.btn-outline-color04:hover {
  color: #212529;
  background-color: #0aa5df;
  border-color: #0aa5df;
}
.btn-outline-color04:focus, .btn-outline-color04.focus {
  box-shadow: 0 0 0 0 rgba(10, 165, 223, 0.5);
}
.btn-outline-color04.disabled, .btn-outline-color04:disabled {
  color: #0aa5df;
  background-color: transparent;
}
.btn-outline-color04:not(:disabled):not(.disabled):active, .btn-outline-color04:not(:disabled):not(.disabled).active, .show > .btn-outline-color04.dropdown-toggle {
  color: #212529;
  background-color: #0aa5df;
  border-color: #0aa5df;
}
.btn-outline-color04:not(:disabled):not(.disabled):active:focus, .btn-outline-color04:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-color04.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(10, 165, 223, 0.5);
}

.btn-outline-color05 {
  color: #C173FE;
  border-color: #C173FE;
}
.btn-outline-color05:hover {
  color: #212529;
  background-color: #C173FE;
  border-color: #C173FE;
}
.btn-outline-color05:focus, .btn-outline-color05.focus {
  box-shadow: 0 0 0 0 rgba(193, 115, 254, 0.5);
}
.btn-outline-color05.disabled, .btn-outline-color05:disabled {
  color: #C173FE;
  background-color: transparent;
}
.btn-outline-color05:not(:disabled):not(.disabled):active, .btn-outline-color05:not(:disabled):not(.disabled).active, .show > .btn-outline-color05.dropdown-toggle {
  color: #212529;
  background-color: #C173FE;
  border-color: #C173FE;
}
.btn-outline-color05:not(:disabled):not(.disabled):active:focus, .btn-outline-color05:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-color05.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(193, 115, 254, 0.5);
}

.btn-outline-color06 {
  color: #FB8BE9;
  border-color: #FB8BE9;
}
.btn-outline-color06:hover {
  color: #212529;
  background-color: #FB8BE9;
  border-color: #FB8BE9;
}
.btn-outline-color06:focus, .btn-outline-color06.focus {
  box-shadow: 0 0 0 0 rgba(251, 139, 233, 0.5);
}
.btn-outline-color06.disabled, .btn-outline-color06:disabled {
  color: #FB8BE9;
  background-color: transparent;
}
.btn-outline-color06:not(:disabled):not(.disabled):active, .btn-outline-color06:not(:disabled):not(.disabled).active, .show > .btn-outline-color06.dropdown-toggle {
  color: #212529;
  background-color: #FB8BE9;
  border-color: #FB8BE9;
}
.btn-outline-color06:not(:disabled):not(.disabled):active:focus, .btn-outline-color06:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-color06.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(251, 139, 233, 0.5);
}

.btn-outline-color07 {
  color: #BDE5EB;
  border-color: #BDE5EB;
}
.btn-outline-color07:hover {
  color: #212529;
  background-color: #BDE5EB;
  border-color: #BDE5EB;
}
.btn-outline-color07:focus, .btn-outline-color07.focus {
  box-shadow: 0 0 0 0 rgba(189, 229, 235, 0.5);
}
.btn-outline-color07.disabled, .btn-outline-color07:disabled {
  color: #BDE5EB;
  background-color: transparent;
}
.btn-outline-color07:not(:disabled):not(.disabled):active, .btn-outline-color07:not(:disabled):not(.disabled).active, .show > .btn-outline-color07.dropdown-toggle {
  color: #212529;
  background-color: #BDE5EB;
  border-color: #BDE5EB;
}
.btn-outline-color07:not(:disabled):not(.disabled):active:focus, .btn-outline-color07:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-color07.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(189, 229, 235, 0.5);
}

.btn-outline-color08 {
  color: #1F68AC;
  border-color: #1F68AC;
}
.btn-outline-color08:hover {
  color: #fff;
  background-color: #1F68AC;
  border-color: #1F68AC;
}
.btn-outline-color08:focus, .btn-outline-color08.focus {
  box-shadow: 0 0 0 0 rgba(31, 104, 172, 0.5);
}
.btn-outline-color08.disabled, .btn-outline-color08:disabled {
  color: #1F68AC;
  background-color: transparent;
}
.btn-outline-color08:not(:disabled):not(.disabled):active, .btn-outline-color08:not(:disabled):not(.disabled).active, .show > .btn-outline-color08.dropdown-toggle {
  color: #fff;
  background-color: #1F68AC;
  border-color: #1F68AC;
}
.btn-outline-color08:not(:disabled):not(.disabled):active:focus, .btn-outline-color08:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-color08.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(31, 104, 172, 0.5);
}

.btn-outline-color09 {
  color: #2DC9A3;
  border-color: #2DC9A3;
}
.btn-outline-color09:hover {
  color: #212529;
  background-color: #2DC9A3;
  border-color: #2DC9A3;
}
.btn-outline-color09:focus, .btn-outline-color09.focus {
  box-shadow: 0 0 0 0 rgba(45, 201, 163, 0.5);
}
.btn-outline-color09.disabled, .btn-outline-color09:disabled {
  color: #2DC9A3;
  background-color: transparent;
}
.btn-outline-color09:not(:disabled):not(.disabled):active, .btn-outline-color09:not(:disabled):not(.disabled).active, .show > .btn-outline-color09.dropdown-toggle {
  color: #212529;
  background-color: #2DC9A3;
  border-color: #2DC9A3;
}
.btn-outline-color09:not(:disabled):not(.disabled):active:focus, .btn-outline-color09:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-color09.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(45, 201, 163, 0.5);
}

.btn-outline-color10 {
  color: #CE3838;
  border-color: #CE3838;
}
.btn-outline-color10:hover {
  color: #fff;
  background-color: #CE3838;
  border-color: #CE3838;
}
.btn-outline-color10:focus, .btn-outline-color10.focus {
  box-shadow: 0 0 0 0 rgba(206, 56, 56, 0.5);
}
.btn-outline-color10.disabled, .btn-outline-color10:disabled {
  color: #CE3838;
  background-color: transparent;
}
.btn-outline-color10:not(:disabled):not(.disabled):active, .btn-outline-color10:not(:disabled):not(.disabled).active, .show > .btn-outline-color10.dropdown-toggle {
  color: #fff;
  background-color: #CE3838;
  border-color: #CE3838;
}
.btn-outline-color10:not(:disabled):not(.disabled):active:focus, .btn-outline-color10:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-color10.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(206, 56, 56, 0.5);
}

.btn-outline-color11 {
  color: #EE9329;
  border-color: #EE9329;
}
.btn-outline-color11:hover {
  color: #212529;
  background-color: #EE9329;
  border-color: #EE9329;
}
.btn-outline-color11:focus, .btn-outline-color11.focus {
  box-shadow: 0 0 0 0 rgba(238, 147, 41, 0.5);
}
.btn-outline-color11.disabled, .btn-outline-color11:disabled {
  color: #EE9329;
  background-color: transparent;
}
.btn-outline-color11:not(:disabled):not(.disabled):active, .btn-outline-color11:not(:disabled):not(.disabled).active, .show > .btn-outline-color11.dropdown-toggle {
  color: #212529;
  background-color: #EE9329;
  border-color: #EE9329;
}
.btn-outline-color11:not(:disabled):not(.disabled):active:focus, .btn-outline-color11:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-color11.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(238, 147, 41, 0.5);
}

.btn-outline-color12 {
  color: #5EC2CF;
  border-color: #5EC2CF;
}
.btn-outline-color12:hover {
  color: #212529;
  background-color: #5EC2CF;
  border-color: #5EC2CF;
}
.btn-outline-color12:focus, .btn-outline-color12.focus {
  box-shadow: 0 0 0 0 rgba(94, 194, 207, 0.5);
}
.btn-outline-color12.disabled, .btn-outline-color12:disabled {
  color: #5EC2CF;
  background-color: transparent;
}
.btn-outline-color12:not(:disabled):not(.disabled):active, .btn-outline-color12:not(:disabled):not(.disabled).active, .show > .btn-outline-color12.dropdown-toggle {
  color: #212529;
  background-color: #5EC2CF;
  border-color: #5EC2CF;
}
.btn-outline-color12:not(:disabled):not(.disabled):active:focus, .btn-outline-color12:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-color12.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(94, 194, 207, 0.5);
}

.btn-outline-color13 {
  color: #FF2B78;
  border-color: #FF2B78;
}
.btn-outline-color13:hover {
  color: #fff;
  background-color: #FF2B78;
  border-color: #FF2B78;
}
.btn-outline-color13:focus, .btn-outline-color13.focus {
  box-shadow: 0 0 0 0 rgba(255, 43, 120, 0.5);
}
.btn-outline-color13.disabled, .btn-outline-color13:disabled {
  color: #FF2B78;
  background-color: transparent;
}
.btn-outline-color13:not(:disabled):not(.disabled):active, .btn-outline-color13:not(:disabled):not(.disabled).active, .show > .btn-outline-color13.dropdown-toggle {
  color: #fff;
  background-color: #FF2B78;
  border-color: #FF2B78;
}
.btn-outline-color13:not(:disabled):not(.disabled):active:focus, .btn-outline-color13:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-color13.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(255, 43, 120, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #fde200;
  text-decoration: none;
}
.btn-link:hover {
  color: #b19e00;
  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: 0.5rem 1rem;
  font-size: 2rem;
  line-height: 1.5;
  border-radius: 0.5rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.8rem 1.6rem;
  font-size: 1.3rem;
  line-height: 1.7rem;
  border-radius: 3rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.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 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.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: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1.6rem;
  color: #000;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
}

.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: 1600px) {
  .dropdown-menu-xxl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1920px) {
  .dropdown-menu-xxxl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxxl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #fde200;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 1.4rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.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,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  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: -2px;
}
.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: 1.35rem;
  padding-left: 1.35rem;
}
.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: 1.2rem;
  padding-left: 1.2rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.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: -2px;
}
.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: -2px;
}
.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: -2px;
}

.input-group-prepend {
  margin-right: -2px;
}

.input-group-append {
  margin-left: -2px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.2rem;
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 2px solid #ffffff;
  border-radius: 0.5rem;
}
.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.5em + 1rem + 4px);
}

.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: 0.5rem 1rem;
  font-size: 2rem;
  line-height: 1.5;
  border-radius: 0.5rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 4px);
}

.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: 0.25rem 0.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
  border-radius: 0.5rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 2.2rem;
}

.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: 2.4rem;
  padding-left: 3.2rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 2.2rem;
  height: 2.3rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #000;
  border-color: #fde200;
  background-color: #fde200;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0 rgba(253, 226, 0, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #fff17e;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #fff7b1;
  border-color: #fff7b1;
}
.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: #c6c6c6;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.1rem;
  left: -3.2rem;
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  pointer-events: none;
  content: "";
  background-color: #efefef;
  border: 2px solid #fff;
}
.custom-control-label::after {
  position: absolute;
  top: 0.1rem;
  left: -3.2rem;
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  content: "";
  background: 50%/50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.5rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #fde200;
  background-color: #fde200;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23000' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(253, 226, 0, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(253, 226, 0, 0.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='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(253, 226, 0, 0.5);
}

.custom-switch {
  padding-left: 4.85rem;
}
.custom-switch .custom-control-label::before {
  left: -4.85rem;
  width: 3.85rem;
  pointer-events: all;
  border-radius: 1.1rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.1rem + 4px);
  left: calc(-4.85rem + 4px);
  width: calc(2.2rem - 8px);
  height: calc(2.2rem - 8px);
  background-color: #fff;
  border-radius: 1.1rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.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: #efefef;
  transform: translateX(1.65rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(253, 226, 0, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 1.4rem + 4px);
  padding: 0.7rem 2.2rem 0.7rem 1.2rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  vertical-align: middle;
  background: #efefef url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1.2rem center/8px 10px no-repeat;
  border: 2px solid #ffffff;
  border-radius: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: #fff17e;
  outline: 0;
  box-shadow: 0 0 0 0 rgba(253, 226, 0, 0.25);
}
.custom-select:focus::-ms-value {
  color: #000;
  background-color: #efefef;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 1.2rem;
  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 #000;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 4px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 1.4rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 4px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 2rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 1.4rem + 4px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 1.4rem + 4px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #fff17e;
  box-shadow: 0 0 0 0 rgba(253, 226, 0, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #c6c6c6;
}
.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.5em + 1.4rem + 4px);
  padding: 0.7rem 1.2rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  background-color: #efefef;
  border: 2px solid #ffffff;
  border-radius: 0.5rem;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 1.4rem);
  padding: 0.7rem 1.2rem;
  line-height: 1.5;
  color: #000;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.5rem 0.5rem 0;
}

.custom-range {
  width: 100%;
  height: 1rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-range:focus {
  outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0 rgba(253, 226, 0, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0 rgba(253, 226, 0, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0 rgba(253, 226, 0, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #fde200;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #fff7b1;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.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: #fde200;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #fff7b1;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.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: 0;
  margin-left: 0;
  background-color: #fde200;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #fff7b1;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.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 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.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: 0.5rem 1rem;
}
.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: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.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 .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.5rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #fde200;
}

.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 {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-xl,
.navbar .container-xxxl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  margin-right: 1rem;
  font-size: 2rem;
  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 {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 2rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 3rem;
}
.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-xl,
  .navbar-expand-sm > .container-xxxl {
    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 {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-xl,
  .navbar-expand-sm > .container-xxxl {
    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-xl,
  .navbar-expand-md > .container-xxxl {
    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 {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-xl,
  .navbar-expand-md > .container-xxxl {
    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-xl,
  .navbar-expand-lg > .container-xxxl {
    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 {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-xl,
  .navbar-expand-lg > .container-xxxl {
    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-xl,
  .navbar-expand-xl > .container-xxxl {
    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 {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-xl,
  .navbar-expand-xl > .container-xxxl {
    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: 1599.98px) {
  .navbar-expand-xxl > .container,
  .navbar-expand-xxl > .container-fluid,
  .navbar-expand-xxl > .container-xl,
  .navbar-expand-xxl > .container-xxxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1600px) {
  .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 {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl > .container,
  .navbar-expand-xxl > .container-fluid,
  .navbar-expand-xxl > .container-xl,
  .navbar-expand-xxl > .container-xxxl {
    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-xxxl > .container,
  .navbar-expand-xxxl > .container-fluid,
  .navbar-expand-xxxl > .container-xl,
  .navbar-expand-xxxl > .container-xxxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1920px) {
  .navbar-expand-xxxl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxxl > .container,
  .navbar-expand-xxxl > .container-fluid,
  .navbar-expand-xxxl > .container-xl,
  .navbar-expand-xxxl > .container-xxxl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xxxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxxl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-xl,
.navbar-expand > .container-xxxl {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-xl,
.navbar-expand > .container-xxxl {
  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, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 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, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.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: #e5e5e5;
  background-clip: border-box;
  border: 0 solid #e5e5e5;
  border-radius: 2.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: subtract(2.25rem, 0);
  border-top-right-radius: subtract(2.25rem, 0);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: subtract(2.25rem, 0);
  border-bottom-left-radius: subtract(2.25rem, 0);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 3rem;
}

.card-title {
  margin-bottom: 2rem;
}

.card-subtitle {
  margin-top: -1rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 3rem;
}

.card-header {
  padding: 2rem 3rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 0 solid #e5e5e5;
}
.card-header:first-child {
  border-radius: subtract(2.25rem, 0) subtract(2.25rem, 0) 0 0;
}

.card-footer {
  padding: 2rem 3rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 0 solid #e5e5e5;
}
.card-footer:last-child {
  border-radius: 0 0 subtract(2.25rem, 0) subtract(2.25rem, 0);
}

.card-header-tabs {
  margin-right: -1.5rem;
  margin-bottom: -2rem;
  margin-left: -1.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: subtract(2.25rem, 0);
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: subtract(2.25rem, 0);
  border-top-right-radius: subtract(2.25rem, 0);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: subtract(2.25rem, 0);
  border-bottom-left-radius: subtract(2.25rem, 0);
}

.card-deck .card {
  margin-bottom: 1.5rem;
}
@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 1.5rem;
    margin-bottom: 0;
    margin-left: 1.5rem;
  }
}

.card-group > .card {
  margin-bottom: 1.5rem;
}
@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: 2rem;
}
@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         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: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.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 {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.5rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #000;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #000;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0 rgba(253, 226, 0, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #000;
  background-color: #fde200;
  border-color: #fde200;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 2rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.3em 0.6em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 50px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.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: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #212529;
  background-color: #fde200;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #212529;
  background-color: #cab400;
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(253, 226, 0, 0.5);
}

.badge-secondary {
  color: #212529;
  background-color: #DBDBDB;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #212529;
  background-color: #c2c2c2;
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(219, 219, 219, 0.5);
}

.badge-success {
  color: #212529;
  background-color: #45c61e;
}
a.badge-success:hover, a.badge-success:focus {
  color: #212529;
  background-color: #369a17;
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(69, 198, 30, 0.5);
}

.badge-info {
  color: #212529;
  background-color: #D6EBFB;
}
a.badge-info:hover, a.badge-info:focus {
  color: #212529;
  background-color: #a8d4f6;
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(214, 235, 251, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #FABE4B;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #f9ac19;
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(250, 190, 75, 0.5);
}

.badge-danger {
  color: #212529;
  background-color: #df5a4c;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #212529;
  background-color: #d23626;
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(223, 90, 76, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #ffffff;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #e6e6e6;
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
}

.badge-dark {
  color: #212529;
  background-color: #999999;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #212529;
  background-color: gray;
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(153, 153, 153, 0.5);
}

.badge-lightv2 {
  color: #212529;
  background-color: #ededed;
}
a.badge-lightv2:hover, a.badge-lightv2:focus {
  color: #212529;
  background-color: #d4d4d4;
}
a.badge-lightv2:focus, a.badge-lightv2.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(237, 237, 237, 0.5);
}

.badge-lighter {
  color: #212529;
  background-color: #f0f0f0;
}
a.badge-lighter:hover, a.badge-lighter:focus {
  color: #212529;
  background-color: #d7d7d7;
}
a.badge-lighter:focus, a.badge-lighter.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(240, 240, 240, 0.5);
}

.badge-darkv2 {
  color: #fff;
  background-color: #5f5f5f;
}
a.badge-darkv2:hover, a.badge-darkv2:focus {
  color: #fff;
  background-color: #464646;
}
a.badge-darkv2:focus, a.badge-darkv2.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(95, 95, 95, 0.5);
}

.badge-darkv3 {
  color: #212529;
  background-color: #b2b2b2;
}
a.badge-darkv3:hover, a.badge-darkv3:focus {
  color: #212529;
  background-color: #999999;
}
a.badge-darkv3:focus, a.badge-darkv3.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(178, 178, 178, 0.5);
}

.badge-darkv4 {
  color: #fff;
  background-color: #706f6f;
}
a.badge-darkv4:hover, a.badge-darkv4:focus {
  color: #fff;
  background-color: #565656;
}
a.badge-darkv4:focus, a.badge-darkv4.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(112, 111, 111, 0.5);
}

.badge-black {
  color: #fff;
  background-color: #000;
}
a.badge-black:hover, a.badge-black:focus {
  color: #fff;
  background-color: black;
}
a.badge-black:focus, a.badge-black.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}

.badge-color01 {
  color: #212529;
  background-color: #21B558;
}
a.badge-color01:hover, a.badge-color01:focus {
  color: #212529;
  background-color: #198a43;
}
a.badge-color01:focus, a.badge-color01.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(33, 181, 88, 0.5);
}

.badge-color02 {
  color: #fff;
  background-color: #e53325;
}
a.badge-color02:hover, a.badge-color02:focus {
  color: #fff;
  background-color: #c02317;
}
a.badge-color02:focus, a.badge-color02.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(229, 51, 37, 0.5);
}

.badge-color03 {
  color: #212529;
  background-color: #FABE4B;
}
a.badge-color03:hover, a.badge-color03:focus {
  color: #212529;
  background-color: #f9ac19;
}
a.badge-color03:focus, a.badge-color03.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(250, 190, 75, 0.5);
}

.badge-color04 {
  color: #212529;
  background-color: #0aa5df;
}
a.badge-color04:hover, a.badge-color04:focus {
  color: #212529;
  background-color: #0881ae;
}
a.badge-color04:focus, a.badge-color04.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(10, 165, 223, 0.5);
}

.badge-color05 {
  color: #212529;
  background-color: #C173FE;
}
a.badge-color05:hover, a.badge-color05:focus {
  color: #212529;
  background-color: #ab40fe;
}
a.badge-color05:focus, a.badge-color05.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(193, 115, 254, 0.5);
}

.badge-color06 {
  color: #212529;
  background-color: #FB8BE9;
}
a.badge-color06:hover, a.badge-color06:focus {
  color: #212529;
  background-color: #f95ae0;
}
a.badge-color06:focus, a.badge-color06.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(251, 139, 233, 0.5);
}

.badge-color07 {
  color: #212529;
  background-color: #BDE5EB;
}
a.badge-color07:hover, a.badge-color07:focus {
  color: #212529;
  background-color: #96d6df;
}
a.badge-color07:focus, a.badge-color07.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(189, 229, 235, 0.5);
}

.badge-color08 {
  color: #fff;
  background-color: #1F68AC;
}
a.badge-color08:hover, a.badge-color08:focus {
  color: #fff;
  background-color: #174e81;
}
a.badge-color08:focus, a.badge-color08.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(31, 104, 172, 0.5);
}

.badge-color09 {
  color: #212529;
  background-color: #2DC9A3;
}
a.badge-color09:hover, a.badge-color09:focus {
  color: #212529;
  background-color: #249f81;
}
a.badge-color09:focus, a.badge-color09.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(45, 201, 163, 0.5);
}

.badge-color10 {
  color: #fff;
  background-color: #CE3838;
}
a.badge-color10:hover, a.badge-color10:focus {
  color: #fff;
  background-color: #a92a2a;
}
a.badge-color10:focus, a.badge-color10.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(206, 56, 56, 0.5);
}

.badge-color11 {
  color: #212529;
  background-color: #EE9329;
}
a.badge-color11:hover, a.badge-color11:focus {
  color: #212529;
  background-color: #d37911;
}
a.badge-color11:focus, a.badge-color11.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(238, 147, 41, 0.5);
}

.badge-color12 {
  color: #212529;
  background-color: #5EC2CF;
}
a.badge-color12:hover, a.badge-color12:focus {
  color: #212529;
  background-color: #39b1c1;
}
a.badge-color12:focus, a.badge-color12.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(94, 194, 207, 0.5);
}

.badge-color13 {
  color: #fff;
  background-color: #FF2B78;
}
a.badge-color13:hover, a.badge-color13:focus {
  color: #fff;
  background-color: #f7005a;
}
a.badge-color13:focus, a.badge-color13.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(255, 43, 120, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.5rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 1.2rem 2rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 6.4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.2rem 2rem;
  color: inherit;
}

.alert-primary {
  color: #847600;
  background-color: #fff9cc;
  border-color: #fef7b8;
}
.alert-primary hr {
  border-top-color: #fef49f;
}
.alert-primary .alert-link {
  color: #514800;
}

.alert-secondary {
  color: #727272;
  background-color: #f8f8f8;
  border-color: whitesmoke;
}
.alert-secondary hr {
  border-top-color: #e8e8e8;
}
.alert-secondary .alert-link {
  color: #595959;
}

.alert-success {
  color: #246710;
  background-color: #daf4d2;
  border-color: #cbefc0;
}
.alert-success hr {
  border-top-color: #baeaac;
}
.alert-success .alert-link {
  color: #153b09;
}

.alert-info {
  color: #6f7a83;
  background-color: #f7fbfe;
  border-color: #f4f9fe;
}
.alert-info hr {
  border-top-color: #ddecfc;
}
.alert-info .alert-link {
  color: #586067;
}

.alert-warning {
  color: #826327;
  background-color: #fef2db;
  border-color: #feedcd;
}
.alert-warning hr {
  border-top-color: #fee4b4;
}
.alert-warning .alert-link {
  color: #5b451b;
}

.alert-danger {
  color: #742f28;
  background-color: #f9dedb;
  border-color: #f6d1cd;
}
.alert-danger hr {
  border-top-color: #f2bdb7;
}
.alert-danger .alert-link {
  color: #4e201b;
}

.alert-light {
  color: #858585;
  background-color: white;
  border-color: white;
}
.alert-light hr {
  border-top-color: #f2f2f2;
}
.alert-light .alert-link {
  color: #6c6c6c;
}

.alert-dark {
  color: #505050;
  background-color: #ebebeb;
  border-color: #e2e2e2;
}
.alert-dark hr {
  border-top-color: #d5d5d5;
}
.alert-dark .alert-link {
  color: #373737;
}

.alert-lightv2 {
  color: #7b7b7b;
  background-color: #fbfbfb;
  border-color: #fafafa;
}
.alert-lightv2 hr {
  border-top-color: #ededed;
}
.alert-lightv2 .alert-link {
  color: #626262;
}

.alert-lighter {
  color: #7d7d7d;
  background-color: #fcfcfc;
  border-color: #fbfbfb;
}
.alert-lighter hr {
  border-top-color: #eeeeee;
}
.alert-lighter .alert-link {
  color: #646464;
}

.alert-darkv2 {
  color: #313131;
  background-color: #dfdfdf;
  border-color: #d2d2d2;
}
.alert-darkv2 hr {
  border-top-color: #c5c5c5;
}
.alert-darkv2 .alert-link {
  color: #181818;
}

.alert-darkv3 {
  color: #5d5d5d;
  background-color: #f0f0f0;
  border-color: #e9e9e9;
}
.alert-darkv3 hr {
  border-top-color: gainsboro;
}
.alert-darkv3 .alert-link {
  color: #444444;
}

.alert-darkv4 {
  color: #3a3a3a;
  background-color: #e2e2e2;
  border-color: #d7d7d7;
}
.alert-darkv4 hr {
  border-top-color: #cacaca;
}
.alert-darkv4 .alert-link {
  color: #212121;
}

.alert-black {
  color: black;
  background-color: #cccccc;
  border-color: #b8b8b8;
}
.alert-black hr {
  border-top-color: #ababab;
}
.alert-black .alert-link {
  color: black;
}

.alert-color01 {
  color: #115e2e;
  background-color: #d3f0de;
  border-color: #c1ead0;
}
.alert-color01 hr {
  border-top-color: #aee4c2;
}
.alert-color01 .alert-link {
  color: #093319;
}

.alert-color02 {
  color: #771b13;
  background-color: #fad6d3;
  border-color: #f8c6c2;
}
.alert-color02 hr {
  border-top-color: #f5b1ab;
}
.alert-color02 .alert-link {
  color: #4b110c;
}

.alert-color03 {
  color: #826327;
  background-color: #fef2db;
  border-color: #feedcd;
}
.alert-color03 hr {
  border-top-color: #fee4b4;
}
.alert-color03 .alert-link {
  color: #5b451b;
}

.alert-color04 {
  color: #055674;
  background-color: #ceedf9;
  border-color: #bae6f6;
}
.alert-color04 hr {
  border-top-color: #a3def3;
}
.alert-color04 .alert-link {
  color: #033243;
}

.alert-color05 {
  color: #643c84;
  background-color: #f3e3ff;
  border-color: #eed8ff;
}
.alert-color05 hr {
  border-top-color: #e3bfff;
}
.alert-color05 .alert-link {
  color: #492c61;
}

.alert-color06 {
  color: #834879;
  background-color: #fee8fb;
  border-color: #fedff9;
}
.alert-color06 hr {
  border-top-color: #fdc6f4;
}
.alert-color06 .alert-link {
  color: #62365b;
}

.alert-color07 {
  color: #62777a;
  background-color: #f2fafb;
  border-color: #edf8f9;
}
.alert-color07 hr {
  border-top-color: #daf1f3;
}
.alert-color07 .alert-link {
  color: #4b5b5e;
}

.alert-color08 {
  color: #103659;
  background-color: #d2e1ee;
  border-color: #c0d5e8;
}
.alert-color08 hr {
  border-top-color: #adc9e1;
}
.alert-color08 .alert-link {
  color: #081c2e;
}

.alert-color09 {
  color: #176955;
  background-color: #d5f4ed;
  border-color: #c4f0e5;
}
.alert-color09 hr {
  border-top-color: #b0ebdc;
}
.alert-color09 .alert-link {
  color: #0e3f33;
}

.alert-color10 {
  color: #6b1d1d;
  background-color: #f5d7d7;
  border-color: #f1c7c7;
}
.alert-color10 hr {
  border-top-color: #ecb3b3;
}
.alert-color10 .alert-link {
  color: #431212;
}

.alert-color11 {
  color: #7c4c15;
  background-color: #fce9d4;
  border-color: #fae1c3;
}
.alert-color11 hr {
  border-top-color: #f8d5ab;
}
.alert-color11 .alert-link {
  color: #50310e;
}

.alert-color12 {
  color: #31656c;
  background-color: #dff3f5;
  border-color: #d2eef2;
}
.alert-color12 hr {
  border-top-color: #bee7ec;
}
.alert-color12 .alert-link {
  color: #214449;
}

.alert-color13 {
  color: #85163e;
  background-color: #ffd5e4;
  border-color: #ffc4d9;
}
.alert-color13 hr {
  border-top-color: #ffabc9;
}
.alert-color13 .alert-link {
  color: #590f2a;
}

@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: 1.2rem;
  background-color: #e9ecef;
  border-radius: 0.5rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #fde200;
  transition: width 0.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: 0.5rem;
}

.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: #000;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 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 {
  z-index: 2;
  color: #fff;
  background-color: #fde200;
  border-color: #fde200;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  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: 0.5rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  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 {
  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: 0.5rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    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 {
    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: 0.5rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    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 {
    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: 0.5rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    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 {
    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: 0.5rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    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 {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1600px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    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 {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1920px) {
  .list-group-horizontal-xxxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item + .list-group-item.active {
    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: #847600;
  background-color: #fef7b8;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #847600;
  background-color: #fef49f;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #847600;
  border-color: #847600;
}

.list-group-item-secondary {
  color: #727272;
  background-color: whitesmoke;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #727272;
  background-color: #e8e8e8;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #727272;
  border-color: #727272;
}

.list-group-item-success {
  color: #246710;
  background-color: #cbefc0;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #246710;
  background-color: #baeaac;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #246710;
  border-color: #246710;
}

.list-group-item-info {
  color: #6f7a83;
  background-color: #f4f9fe;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #6f7a83;
  background-color: #ddecfc;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #6f7a83;
  border-color: #6f7a83;
}

.list-group-item-warning {
  color: #826327;
  background-color: #feedcd;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #826327;
  background-color: #fee4b4;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #826327;
  border-color: #826327;
}

.list-group-item-danger {
  color: #742f28;
  background-color: #f6d1cd;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #742f28;
  background-color: #f2bdb7;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #742f28;
  border-color: #742f28;
}

.list-group-item-light {
  color: #858585;
  background-color: white;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #858585;
  background-color: #f2f2f2;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #858585;
  border-color: #858585;
}

.list-group-item-dark {
  color: #505050;
  background-color: #e2e2e2;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #505050;
  background-color: #d5d5d5;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #505050;
  border-color: #505050;
}

.list-group-item-lightv2 {
  color: #7b7b7b;
  background-color: #fafafa;
}
.list-group-item-lightv2.list-group-item-action:hover, .list-group-item-lightv2.list-group-item-action:focus {
  color: #7b7b7b;
  background-color: #ededed;
}
.list-group-item-lightv2.list-group-item-action.active {
  color: #fff;
  background-color: #7b7b7b;
  border-color: #7b7b7b;
}

.list-group-item-lighter {
  color: #7d7d7d;
  background-color: #fbfbfb;
}
.list-group-item-lighter.list-group-item-action:hover, .list-group-item-lighter.list-group-item-action:focus {
  color: #7d7d7d;
  background-color: #eeeeee;
}
.list-group-item-lighter.list-group-item-action.active {
  color: #fff;
  background-color: #7d7d7d;
  border-color: #7d7d7d;
}

.list-group-item-darkv2 {
  color: #313131;
  background-color: #d2d2d2;
}
.list-group-item-darkv2.list-group-item-action:hover, .list-group-item-darkv2.list-group-item-action:focus {
  color: #313131;
  background-color: #c5c5c5;
}
.list-group-item-darkv2.list-group-item-action.active {
  color: #fff;
  background-color: #313131;
  border-color: #313131;
}

.list-group-item-darkv3 {
  color: #5d5d5d;
  background-color: #e9e9e9;
}
.list-group-item-darkv3.list-group-item-action:hover, .list-group-item-darkv3.list-group-item-action:focus {
  color: #5d5d5d;
  background-color: gainsboro;
}
.list-group-item-darkv3.list-group-item-action.active {
  color: #fff;
  background-color: #5d5d5d;
  border-color: #5d5d5d;
}

.list-group-item-darkv4 {
  color: #3a3a3a;
  background-color: #d7d7d7;
}
.list-group-item-darkv4.list-group-item-action:hover, .list-group-item-darkv4.list-group-item-action:focus {
  color: #3a3a3a;
  background-color: #cacaca;
}
.list-group-item-darkv4.list-group-item-action.active {
  color: #fff;
  background-color: #3a3a3a;
  border-color: #3a3a3a;
}

.list-group-item-black {
  color: black;
  background-color: #b8b8b8;
}
.list-group-item-black.list-group-item-action:hover, .list-group-item-black.list-group-item-action:focus {
  color: black;
  background-color: #ababab;
}
.list-group-item-black.list-group-item-action.active {
  color: #fff;
  background-color: black;
  border-color: black;
}

.list-group-item-color01 {
  color: #115e2e;
  background-color: #c1ead0;
}
.list-group-item-color01.list-group-item-action:hover, .list-group-item-color01.list-group-item-action:focus {
  color: #115e2e;
  background-color: #aee4c2;
}
.list-group-item-color01.list-group-item-action.active {
  color: #fff;
  background-color: #115e2e;
  border-color: #115e2e;
}

.list-group-item-color02 {
  color: #771b13;
  background-color: #f8c6c2;
}
.list-group-item-color02.list-group-item-action:hover, .list-group-item-color02.list-group-item-action:focus {
  color: #771b13;
  background-color: #f5b1ab;
}
.list-group-item-color02.list-group-item-action.active {
  color: #fff;
  background-color: #771b13;
  border-color: #771b13;
}

.list-group-item-color03 {
  color: #826327;
  background-color: #feedcd;
}
.list-group-item-color03.list-group-item-action:hover, .list-group-item-color03.list-group-item-action:focus {
  color: #826327;
  background-color: #fee4b4;
}
.list-group-item-color03.list-group-item-action.active {
  color: #fff;
  background-color: #826327;
  border-color: #826327;
}

.list-group-item-color04 {
  color: #055674;
  background-color: #bae6f6;
}
.list-group-item-color04.list-group-item-action:hover, .list-group-item-color04.list-group-item-action:focus {
  color: #055674;
  background-color: #a3def3;
}
.list-group-item-color04.list-group-item-action.active {
  color: #fff;
  background-color: #055674;
  border-color: #055674;
}

.list-group-item-color05 {
  color: #643c84;
  background-color: #eed8ff;
}
.list-group-item-color05.list-group-item-action:hover, .list-group-item-color05.list-group-item-action:focus {
  color: #643c84;
  background-color: #e3bfff;
}
.list-group-item-color05.list-group-item-action.active {
  color: #fff;
  background-color: #643c84;
  border-color: #643c84;
}

.list-group-item-color06 {
  color: #834879;
  background-color: #fedff9;
}
.list-group-item-color06.list-group-item-action:hover, .list-group-item-color06.list-group-item-action:focus {
  color: #834879;
  background-color: #fdc6f4;
}
.list-group-item-color06.list-group-item-action.active {
  color: #fff;
  background-color: #834879;
  border-color: #834879;
}

.list-group-item-color07 {
  color: #62777a;
  background-color: #edf8f9;
}
.list-group-item-color07.list-group-item-action:hover, .list-group-item-color07.list-group-item-action:focus {
  color: #62777a;
  background-color: #daf1f3;
}
.list-group-item-color07.list-group-item-action.active {
  color: #fff;
  background-color: #62777a;
  border-color: #62777a;
}

.list-group-item-color08 {
  color: #103659;
  background-color: #c0d5e8;
}
.list-group-item-color08.list-group-item-action:hover, .list-group-item-color08.list-group-item-action:focus {
  color: #103659;
  background-color: #adc9e1;
}
.list-group-item-color08.list-group-item-action.active {
  color: #fff;
  background-color: #103659;
  border-color: #103659;
}

.list-group-item-color09 {
  color: #176955;
  background-color: #c4f0e5;
}
.list-group-item-color09.list-group-item-action:hover, .list-group-item-color09.list-group-item-action:focus {
  color: #176955;
  background-color: #b0ebdc;
}
.list-group-item-color09.list-group-item-action.active {
  color: #fff;
  background-color: #176955;
  border-color: #176955;
}

.list-group-item-color10 {
  color: #6b1d1d;
  background-color: #f1c7c7;
}
.list-group-item-color10.list-group-item-action:hover, .list-group-item-color10.list-group-item-action:focus {
  color: #6b1d1d;
  background-color: #ecb3b3;
}
.list-group-item-color10.list-group-item-action.active {
  color: #fff;
  background-color: #6b1d1d;
  border-color: #6b1d1d;
}

.list-group-item-color11 {
  color: #7c4c15;
  background-color: #fae1c3;
}
.list-group-item-color11.list-group-item-action:hover, .list-group-item-color11.list-group-item-action:focus {
  color: #7c4c15;
  background-color: #f8d5ab;
}
.list-group-item-color11.list-group-item-action.active {
  color: #fff;
  background-color: #7c4c15;
  border-color: #7c4c15;
}

.list-group-item-color12 {
  color: #31656c;
  background-color: #d2eef2;
}
.list-group-item-color12.list-group-item-action:hover, .list-group-item-color12.list-group-item-action:focus {
  color: #31656c;
  background-color: #bee7ec;
}
.list-group-item-color12.list-group-item-action.active {
  color: #fff;
  background-color: #31656c;
  border-color: #31656c;
}

.list-group-item-color13 {
  color: #85163e;
  background-color: #ffc4d9;
}
.list-group-item-color13.list-group-item-action:hover, .list-group-item-color13.list-group-item-action:focus {
  color: #85163e;
  background-color: #ffabc9;
}
.list-group-item-color13.list-group-item-action.active {
  color: #fff;
  background-color: #85163e;
  border-color: #85163e;
}

.close {
  float: right;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  flex-basis: 35rem;
  max-width: 35rem;
  font-size: 1.3rem;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.5rem;
}
.toast:not(:last-child) {
  margin-bottom: 2rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  color: rgb(0, 0, 0);
  background-color: var(--primary);
  background-clip: padding-box;
  border-bottom: 0 solid rgba(0, 0, 0, 0);
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.toast-body {
  padding: 2rem;
}

.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: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.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: -moz-min-content;
  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, 0.2);
  border-radius: 2.25rem;
  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: 0.6;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #C1C0C0;
  border-top-left-radius: calc(2.25rem - 1px);
  border-top-right-radius: calc(2.25rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.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: 0.75rem;
  border-top: 1px solid #C1C0C0;
  border-bottom-right-radius: calc(2.25rem - 1px);
  border-bottom-left-radius: calc(2.25rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 80rem;
    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: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 40rem;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 102rem;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 132rem;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "hellix-regular";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 1.2rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .tooltip.b-tooltip-color13.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=top], .tooltip.b-tooltip-lightv2.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: 0.4rem 0;
}
.bs-tooltip-top .arrow, .tooltip.b-tooltip-color13.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=top] .arrow, .tooltip.b-tooltip-lightv2.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-color13.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.b-tooltip-lightv2.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: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .tooltip.b-tooltip-color13.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=right], .tooltip.b-tooltip-lightv2.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 0.4rem;
}
.bs-tooltip-right .arrow, .tooltip.b-tooltip-color13.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=right] .arrow, .tooltip.b-tooltip-lightv2.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: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-color13.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.b-tooltip-lightv2.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: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .tooltip.b-tooltip-color13.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=bottom], .tooltip.b-tooltip-lightv2.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: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .tooltip.b-tooltip-color13.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=bottom] .arrow, .tooltip.b-tooltip-lightv2.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-color13.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.b-tooltip-lightv2.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 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .tooltip.b-tooltip-color13.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=left], .tooltip.b-tooltip-lightv2.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 0.4rem;
}
.bs-tooltip-left .arrow, .tooltip.b-tooltip-color13.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=left] .arrow, .tooltip.b-tooltip-lightv2.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: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-color13.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.b-tooltip-lightv2.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: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.35rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 40rem;
  font-family: "hellix-regular";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 1.3rem;
  word-wrap: break-word;
  background-color: #000;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.5rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.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: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #000;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.5rem 0;
}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #000;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.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 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #000;
}
.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 black;
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.5rem 0;
}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #000;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1.6rem;
  color: #fff;
  background-color: black;
  border-bottom: 1px solid black;
  border-top-left-radius: calc(0.5rem - 1px);
  border-top-right-radius: calc(0.5rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1.5rem 2rem;
  color: #fff;
}

.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 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.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 .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    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: 0.5;
  transition: opacity 0.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: 0.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='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%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: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  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: 0.25em solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.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: 0.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: #fde200 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #cab400 !important;
}

.bg-secondary {
  background-color: #DBDBDB !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #c2c2c2 !important;
}

.bg-success {
  background-color: #45c61e !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #369a17 !important;
}

.bg-info {
  background-color: #D6EBFB !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #a8d4f6 !important;
}

.bg-warning {
  background-color: #FABE4B !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #f9ac19 !important;
}

.bg-danger {
  background-color: #df5a4c !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #d23626 !important;
}

.bg-light {
  background-color: #ffffff !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #e6e6e6 !important;
}

.bg-dark {
  background-color: #999999 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: gray !important;
}

.bg-lightv2 {
  background-color: #ededed !important;
}

a.bg-lightv2:hover, a.bg-lightv2:focus,
button.bg-lightv2:hover,
button.bg-lightv2:focus {
  background-color: #d4d4d4 !important;
}

.bg-lighter {
  background-color: #f0f0f0 !important;
}

a.bg-lighter:hover, a.bg-lighter:focus,
button.bg-lighter:hover,
button.bg-lighter:focus {
  background-color: #d7d7d7 !important;
}

.bg-darkv2 {
  background-color: #5f5f5f !important;
}

a.bg-darkv2:hover, a.bg-darkv2:focus,
button.bg-darkv2:hover,
button.bg-darkv2:focus {
  background-color: #464646 !important;
}

.bg-darkv3 {
  background-color: #b2b2b2 !important;
}

a.bg-darkv3:hover, a.bg-darkv3:focus,
button.bg-darkv3:hover,
button.bg-darkv3:focus {
  background-color: #999999 !important;
}

.bg-darkv4 {
  background-color: #706f6f !important;
}

a.bg-darkv4:hover, a.bg-darkv4:focus,
button.bg-darkv4:hover,
button.bg-darkv4:focus {
  background-color: #565656 !important;
}

.bg-black {
  background-color: #000 !important;
}

a.bg-black:hover, a.bg-black:focus,
button.bg-black:hover,
button.bg-black:focus {
  background-color: black !important;
}

.bg-color01 {
  background-color: #21B558 !important;
}

a.bg-color01:hover, a.bg-color01:focus,
button.bg-color01:hover,
button.bg-color01:focus {
  background-color: #198a43 !important;
}

.bg-color02 {
  background-color: #e53325 !important;
}

a.bg-color02:hover, a.bg-color02:focus,
button.bg-color02:hover,
button.bg-color02:focus {
  background-color: #c02317 !important;
}

.bg-color03 {
  background-color: #FABE4B !important;
}

a.bg-color03:hover, a.bg-color03:focus,
button.bg-color03:hover,
button.bg-color03:focus {
  background-color: #f9ac19 !important;
}

.bg-color04 {
  background-color: #0aa5df !important;
}

a.bg-color04:hover, a.bg-color04:focus,
button.bg-color04:hover,
button.bg-color04:focus {
  background-color: #0881ae !important;
}

.bg-color05 {
  background-color: #C173FE !important;
}

a.bg-color05:hover, a.bg-color05:focus,
button.bg-color05:hover,
button.bg-color05:focus {
  background-color: #ab40fe !important;
}

.bg-color06 {
  background-color: #FB8BE9 !important;
}

a.bg-color06:hover, a.bg-color06:focus,
button.bg-color06:hover,
button.bg-color06:focus {
  background-color: #f95ae0 !important;
}

.bg-color07 {
  background-color: #BDE5EB !important;
}

a.bg-color07:hover, a.bg-color07:focus,
button.bg-color07:hover,
button.bg-color07:focus {
  background-color: #96d6df !important;
}

.bg-color08 {
  background-color: #1F68AC !important;
}

a.bg-color08:hover, a.bg-color08:focus,
button.bg-color08:hover,
button.bg-color08:focus {
  background-color: #174e81 !important;
}

.bg-color09 {
  background-color: #2DC9A3 !important;
}

a.bg-color09:hover, a.bg-color09:focus,
button.bg-color09:hover,
button.bg-color09:focus {
  background-color: #249f81 !important;
}

.bg-color10 {
  background-color: #CE3838 !important;
}

a.bg-color10:hover, a.bg-color10:focus,
button.bg-color10:hover,
button.bg-color10:focus {
  background-color: #a92a2a !important;
}

.bg-color11 {
  background-color: #EE9329 !important;
}

a.bg-color11:hover, a.bg-color11:focus,
button.bg-color11:hover,
button.bg-color11:focus {
  background-color: #d37911 !important;
}

.bg-color12 {
  background-color: #5EC2CF !important;
}

a.bg-color12:hover, a.bg-color12:focus,
button.bg-color12:hover,
button.bg-color12:focus {
  background-color: #39b1c1 !important;
}

.bg-color13 {
  background-color: #FF2B78 !important;
}

a.bg-color13:hover, a.bg-color13:focus,
button.bg-color13:hover,
button.bg-color13:focus {
  background-color: #f7005a !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #C1C0C0 !important;
}

.border-top {
  border-top: 1px solid #C1C0C0 !important;
}

.border-right {
  border-right: 1px solid #C1C0C0 !important;
}

.border-bottom {
  border-bottom: 1px solid #C1C0C0 !important;
}

.border-left {
  border-left: 1px solid #C1C0C0 !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: #fde200 !important;
}

.border-secondary {
  border-color: #DBDBDB !important;
}

.border-success {
  border-color: #45c61e !important;
}

.border-info {
  border-color: #D6EBFB !important;
}

.border-warning {
  border-color: #FABE4B !important;
}

.border-danger {
  border-color: #df5a4c !important;
}

.border-light {
  border-color: #ffffff !important;
}

.border-dark {
  border-color: #999999 !important;
}

.border-lightv2 {
  border-color: #ededed !important;
}

.border-lighter {
  border-color: #f0f0f0 !important;
}

.border-darkv2 {
  border-color: #5f5f5f !important;
}

.border-darkv3 {
  border-color: #b2b2b2 !important;
}

.border-darkv4 {
  border-color: #706f6f !important;
}

.border-black {
  border-color: #000 !important;
}

.border-color01 {
  border-color: #21B558 !important;
}

.border-color02 {
  border-color: #e53325 !important;
}

.border-color03 {
  border-color: #FABE4B !important;
}

.border-color04 {
  border-color: #0aa5df !important;
}

.border-color05 {
  border-color: #C173FE !important;
}

.border-color06 {
  border-color: #FB8BE9 !important;
}

.border-color07 {
  border-color: #BDE5EB !important;
}

.border-color08 {
  border-color: #1F68AC !important;
}

.border-color09 {
  border-color: #2DC9A3 !important;
}

.border-color10 {
  border-color: #CE3838 !important;
}

.border-color11 {
  border-color: #EE9329 !important;
}

.border-color12 {
  border-color: #5EC2CF !important;
}

.border-color13 {
  border-color: #FF2B78 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.5rem !important;
}

.rounded {
  border-radius: 0.5rem !important;
}

.rounded-top {
  border-top-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
}

.rounded-right {
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}

.rounded-left {
  border-top-left-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}

.rounded-lg {
  border-radius: 0.5rem !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: 1600px) {
  .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-xxxl-none {
    display: none !important;
  }
  .d-xxxl-inline {
    display: inline !important;
  }
  .d-xxxl-inline-block {
    display: inline-block !important;
  }
  .d-xxxl-block {
    display: block !important;
  }
  .d-xxxl-table {
    display: table !important;
  }
  .d-xxxl-table-row {
    display: table-row !important;
  }
  .d-xxxl-table-cell {
    display: table-cell !important;
  }
  .d-xxxl-flex {
    display: flex !important;
  }
  .d-xxxl-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%;
}

.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: 1600px) {
  .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-xxxl-row {
    flex-direction: row !important;
  }
  .flex-xxxl-column {
    flex-direction: column !important;
  }
  .flex-xxxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xxxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xxxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxxl-center {
    justify-content: center !important;
  }
  .justify-content-xxxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxxl-around {
    justify-content: space-around !important;
  }
  .align-items-xxxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxxl-center {
    align-items: center !important;
  }
  .align-items-xxxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxxl-center {
    align-content: center !important;
  }
  .align-content-xxxl-between {
    align-content: space-between !important;
  }
  .align-content-xxxl-around {
    align-content: space-around !important;
  }
  .align-content-xxxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxxl-auto {
    align-self: auto !important;
  }
  .align-self-xxxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxxl-center {
    align-self: center !important;
  }
  .align-self-xxxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxxl-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: 1600px) {
  .float-xxl-left {
    float: left !important;
  }
  .float-xxl-right {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
}
@media (min-width: 1920px) {
  .float-xxxl-left {
    float: left !important;
  }
  .float-xxxl-right {
    float: right !important;
  }
  .float-xxxl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          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 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 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: 0.1rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.1rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.1rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.1rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.1rem !important;
}

.m-2 {
  margin: 0.2rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.2rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.2rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.2rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.2rem !important;
}

.m-3 {
  margin: 0.3rem !important;
}

.mt-3,
.my-3 {
  margin-top: 0.3rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 0.3rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 0.3rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 0.3rem !important;
}

.m-4 {
  margin: 0.4rem !important;
}

.mt-4,
.my-4 {
  margin-top: 0.4rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 0.4rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 0.4rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 0.4rem !important;
}

.m-5 {
  margin: 0.5rem !important;
}

.mt-5,
.my-5 {
  margin-top: 0.5rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 0.5rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 0.5rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 0.5rem !important;
}

.m-6 {
  margin: 0.6rem !important;
}

.mt-6,
.my-6 {
  margin-top: 0.6rem !important;
}

.mr-6,
.mx-6 {
  margin-right: 0.6rem !important;
}

.mb-6,
.my-6 {
  margin-bottom: 0.6rem !important;
}

.ml-6,
.mx-6 {
  margin-left: 0.6rem !important;
}

.m-7 {
  margin: 0.7rem !important;
}

.mt-7,
.my-7 {
  margin-top: 0.7rem !important;
}

.mr-7,
.mx-7 {
  margin-right: 0.7rem !important;
}

.mb-7,
.my-7 {
  margin-bottom: 0.7rem !important;
}

.ml-7,
.mx-7 {
  margin-left: 0.7rem !important;
}

.m-8 {
  margin: 0.8rem !important;
}

.mt-8,
.my-8 {
  margin-top: 0.8rem !important;
}

.mr-8,
.mx-8 {
  margin-right: 0.8rem !important;
}

.mb-8,
.my-8 {
  margin-bottom: 0.8rem !important;
}

.ml-8,
.mx-8 {
  margin-left: 0.8rem !important;
}

.m-9 {
  margin: 0.9rem !important;
}

.mt-9,
.my-9 {
  margin-top: 0.9rem !important;
}

.mr-9,
.mx-9 {
  margin-right: 0.9rem !important;
}

.mb-9,
.my-9 {
  margin-bottom: 0.9rem !important;
}

.ml-9,
.mx-9 {
  margin-left: 0.9rem !important;
}

.m-10 {
  margin: 1rem !important;
}

.mt-10,
.my-10 {
  margin-top: 1rem !important;
}

.mr-10,
.mx-10 {
  margin-right: 1rem !important;
}

.mb-10,
.my-10 {
  margin-bottom: 1rem !important;
}

.ml-10,
.mx-10 {
  margin-left: 1rem !important;
}

.m-11 {
  margin: 1.1rem !important;
}

.mt-11,
.my-11 {
  margin-top: 1.1rem !important;
}

.mr-11,
.mx-11 {
  margin-right: 1.1rem !important;
}

.mb-11,
.my-11 {
  margin-bottom: 1.1rem !important;
}

.ml-11,
.mx-11 {
  margin-left: 1.1rem !important;
}

.m-12 {
  margin: 1.2rem !important;
}

.mt-12,
.my-12 {
  margin-top: 1.2rem !important;
}

.mr-12,
.mx-12 {
  margin-right: 1.2rem !important;
}

.mb-12,
.my-12 {
  margin-bottom: 1.2rem !important;
}

.ml-12,
.mx-12 {
  margin-left: 1.2rem !important;
}

.m-13 {
  margin: 1.3rem !important;
}

.mt-13,
.my-13 {
  margin-top: 1.3rem !important;
}

.mr-13,
.mx-13 {
  margin-right: 1.3rem !important;
}

.mb-13,
.my-13 {
  margin-bottom: 1.3rem !important;
}

.ml-13,
.mx-13 {
  margin-left: 1.3rem !important;
}

.m-14 {
  margin: 1.4rem !important;
}

.mt-14,
.my-14 {
  margin-top: 1.4rem !important;
}

.mr-14,
.mx-14 {
  margin-right: 1.4rem !important;
}

.mb-14,
.my-14 {
  margin-bottom: 1.4rem !important;
}

.ml-14,
.mx-14 {
  margin-left: 1.4rem !important;
}

.m-15 {
  margin: 1.5rem !important;
}

.mt-15,
.my-15 {
  margin-top: 1.5rem !important;
}

.mr-15,
.mx-15 {
  margin-right: 1.5rem !important;
}

.mb-15,
.my-15 {
  margin-bottom: 1.5rem !important;
}

.ml-15,
.mx-15 {
  margin-left: 1.5rem !important;
}

.m-16 {
  margin: 1.6rem !important;
}

.mt-16,
.my-16 {
  margin-top: 1.6rem !important;
}

.mr-16,
.mx-16 {
  margin-right: 1.6rem !important;
}

.mb-16,
.my-16 {
  margin-bottom: 1.6rem !important;
}

.ml-16,
.mx-16 {
  margin-left: 1.6rem !important;
}

.m-17 {
  margin: 1.7rem !important;
}

.mt-17,
.my-17 {
  margin-top: 1.7rem !important;
}

.mr-17,
.mx-17 {
  margin-right: 1.7rem !important;
}

.mb-17,
.my-17 {
  margin-bottom: 1.7rem !important;
}

.ml-17,
.mx-17 {
  margin-left: 1.7rem !important;
}

.m-18 {
  margin: 1.8rem !important;
}

.mt-18,
.my-18 {
  margin-top: 1.8rem !important;
}

.mr-18,
.mx-18 {
  margin-right: 1.8rem !important;
}

.mb-18,
.my-18 {
  margin-bottom: 1.8rem !important;
}

.ml-18,
.mx-18 {
  margin-left: 1.8rem !important;
}

.m-19 {
  margin: 1.9rem !important;
}

.mt-19,
.my-19 {
  margin-top: 1.9rem !important;
}

.mr-19,
.mx-19 {
  margin-right: 1.9rem !important;
}

.mb-19,
.my-19 {
  margin-bottom: 1.9rem !important;
}

.ml-19,
.mx-19 {
  margin-left: 1.9rem !important;
}

.m-20 {
  margin: 2rem !important;
}

.mt-20,
.my-20 {
  margin-top: 2rem !important;
}

.mr-20,
.mx-20 {
  margin-right: 2rem !important;
}

.mb-20,
.my-20 {
  margin-bottom: 2rem !important;
}

.ml-20,
.mx-20 {
  margin-left: 2rem !important;
}

.m-25 {
  margin: 2.5rem !important;
}

.mt-25,
.my-25 {
  margin-top: 2.5rem !important;
}

.mr-25,
.mx-25 {
  margin-right: 2.5rem !important;
}

.mb-25,
.my-25 {
  margin-bottom: 2.5rem !important;
}

.ml-25,
.mx-25 {
  margin-left: 2.5rem !important;
}

.m-30 {
  margin: 3rem !important;
}

.mt-30,
.my-30 {
  margin-top: 3rem !important;
}

.mr-30,
.mx-30 {
  margin-right: 3rem !important;
}

.mb-30,
.my-30 {
  margin-bottom: 3rem !important;
}

.ml-30,
.mx-30 {
  margin-left: 3rem !important;
}

.m-35 {
  margin: 3.5rem !important;
}

.mt-35,
.my-35 {
  margin-top: 3.5rem !important;
}

.mr-35,
.mx-35 {
  margin-right: 3.5rem !important;
}

.mb-35,
.my-35 {
  margin-bottom: 3.5rem !important;
}

.ml-35,
.mx-35 {
  margin-left: 3.5rem !important;
}

.m-40 {
  margin: 4rem !important;
}

.mt-40,
.my-40 {
  margin-top: 4rem !important;
}

.mr-40,
.mx-40 {
  margin-right: 4rem !important;
}

.mb-40,
.my-40 {
  margin-bottom: 4rem !important;
}

.ml-40,
.mx-40 {
  margin-left: 4rem !important;
}

.m-45 {
  margin: 4.5rem !important;
}

.mt-45,
.my-45 {
  margin-top: 4.5rem !important;
}

.mr-45,
.mx-45 {
  margin-right: 4.5rem !important;
}

.mb-45,
.my-45 {
  margin-bottom: 4.5rem !important;
}

.ml-45,
.mx-45 {
  margin-left: 4.5rem !important;
}

.m-50 {
  margin: 5rem !important;
}

.mt-50,
.my-50 {
  margin-top: 5rem !important;
}

.mr-50,
.mx-50 {
  margin-right: 5rem !important;
}

.mb-50,
.my-50 {
  margin-bottom: 5rem !important;
}

.ml-50,
.mx-50 {
  margin-left: 5rem !important;
}

.m-55 {
  margin: 5.5rem !important;
}

.mt-55,
.my-55 {
  margin-top: 5.5rem !important;
}

.mr-55,
.mx-55 {
  margin-right: 5.5rem !important;
}

.mb-55,
.my-55 {
  margin-bottom: 5.5rem !important;
}

.ml-55,
.mx-55 {
  margin-left: 5.5rem !important;
}

.m-60 {
  margin: 6rem !important;
}

.mt-60,
.my-60 {
  margin-top: 6rem !important;
}

.mr-60,
.mx-60 {
  margin-right: 6rem !important;
}

.mb-60,
.my-60 {
  margin-bottom: 6rem !important;
}

.ml-60,
.mx-60 {
  margin-left: 6rem !important;
}

.m-65 {
  margin: 6.5rem !important;
}

.mt-65,
.my-65 {
  margin-top: 6.5rem !important;
}

.mr-65,
.mx-65 {
  margin-right: 6.5rem !important;
}

.mb-65,
.my-65 {
  margin-bottom: 6.5rem !important;
}

.ml-65,
.mx-65 {
  margin-left: 6.5rem !important;
}

.m-70 {
  margin: 7rem !important;
}

.mt-70,
.my-70 {
  margin-top: 7rem !important;
}

.mr-70,
.mx-70 {
  margin-right: 7rem !important;
}

.mb-70,
.my-70 {
  margin-bottom: 7rem !important;
}

.ml-70,
.mx-70 {
  margin-left: 7rem !important;
}

.m-75 {
  margin: 7.5rem !important;
}

.mt-75,
.my-75 {
  margin-top: 7.5rem !important;
}

.mr-75,
.mx-75 {
  margin-right: 7.5rem !important;
}

.mb-75,
.my-75 {
  margin-bottom: 7.5rem !important;
}

.ml-75,
.mx-75 {
  margin-left: 7.5rem !important;
}

.m-80 {
  margin: 8rem !important;
}

.mt-80,
.my-80 {
  margin-top: 8rem !important;
}

.mr-80,
.mx-80 {
  margin-right: 8rem !important;
}

.mb-80,
.my-80 {
  margin-bottom: 8rem !important;
}

.ml-80,
.mx-80 {
  margin-left: 8rem !important;
}

.m-85 {
  margin: 8.5rem !important;
}

.mt-85,
.my-85 {
  margin-top: 8.5rem !important;
}

.mr-85,
.mx-85 {
  margin-right: 8.5rem !important;
}

.mb-85,
.my-85 {
  margin-bottom: 8.5rem !important;
}

.ml-85,
.mx-85 {
  margin-left: 8.5rem !important;
}

.m-90 {
  margin: 9rem !important;
}

.mt-90,
.my-90 {
  margin-top: 9rem !important;
}

.mr-90,
.mx-90 {
  margin-right: 9rem !important;
}

.mb-90,
.my-90 {
  margin-bottom: 9rem !important;
}

.ml-90,
.mx-90 {
  margin-left: 9rem !important;
}

.m-95 {
  margin: 9.5rem !important;
}

.mt-95,
.my-95 {
  margin-top: 9.5rem !important;
}

.mr-95,
.mx-95 {
  margin-right: 9.5rem !important;
}

.mb-95,
.my-95 {
  margin-bottom: 9.5rem !important;
}

.ml-95,
.mx-95 {
  margin-left: 9.5rem !important;
}

.m-100 {
  margin: 10rem !important;
}

.mt-100,
.my-100 {
  margin-top: 10rem !important;
}

.mr-100,
.mx-100 {
  margin-right: 10rem !important;
}

.mb-100,
.my-100 {
  margin-bottom: 10rem !important;
}

.ml-100,
.mx-100 {
  margin-left: 10rem !important;
}

.m-130 {
  margin: 13rem !important;
}

.mt-130,
.my-130 {
  margin-top: 13rem !important;
}

.mr-130,
.mx-130 {
  margin-right: 13rem !important;
}

.mb-130,
.my-130 {
  margin-bottom: 13rem !important;
}

.ml-130,
.mx-130 {
  margin-left: 13rem !important;
}

.m-140 {
  margin: 14rem !important;
}

.mt-140,
.my-140 {
  margin-top: 14rem !important;
}

.mr-140,
.mx-140 {
  margin-right: 14rem !important;
}

.mb-140,
.my-140 {
  margin-bottom: 14rem !important;
}

.ml-140,
.mx-140 {
  margin-left: 14rem !important;
}

.m-150 {
  margin: 15rem !important;
}

.mt-150,
.my-150 {
  margin-top: 15rem !important;
}

.mr-150,
.mx-150 {
  margin-right: 15rem !important;
}

.mb-150,
.my-150 {
  margin-bottom: 15rem !important;
}

.ml-150,
.mx-150 {
  margin-left: 15rem !important;
}

.m-200 {
  margin: 20rem !important;
}

.mt-200,
.my-200 {
  margin-top: 20rem !important;
}

.mr-200,
.mx-200 {
  margin-right: 20rem !important;
}

.mb-200,
.my-200 {
  margin-bottom: 20rem !important;
}

.ml-200,
.mx-200 {
  margin-left: 20rem !important;
}

.m-250 {
  margin: 25rem !important;
}

.mt-250,
.my-250 {
  margin-top: 25rem !important;
}

.mr-250,
.mx-250 {
  margin-right: 25rem !important;
}

.mb-250,
.my-250 {
  margin-bottom: 25rem !important;
}

.ml-250,
.mx-250 {
  margin-left: 25rem !important;
}

.m-300 {
  margin: 30rem !important;
}

.mt-300,
.my-300 {
  margin-top: 30rem !important;
}

.mr-300,
.mx-300 {
  margin-right: 30rem !important;
}

.mb-300,
.my-300 {
  margin-bottom: 30rem !important;
}

.ml-300,
.mx-300 {
  margin-left: 30rem !important;
}

.m-400 {
  margin: 40rem !important;
}

.mt-400,
.my-400 {
  margin-top: 40rem !important;
}

.mr-400,
.mx-400 {
  margin-right: 40rem !important;
}

.mb-400,
.my-400 {
  margin-bottom: 40rem !important;
}

.ml-400,
.mx-400 {
  margin-left: 40rem !important;
}

.m-410 {
  margin: 41rem !important;
}

.mt-410,
.my-410 {
  margin-top: 41rem !important;
}

.mr-410,
.mx-410 {
  margin-right: 41rem !important;
}

.mb-410,
.my-410 {
  margin-bottom: 41rem !important;
}

.ml-410,
.mx-410 {
  margin-left: 41rem !important;
}

.m-450 {
  margin: 45rem !important;
}

.mt-450,
.my-450 {
  margin-top: 45rem !important;
}

.mr-450,
.mx-450 {
  margin-right: 45rem !important;
}

.mb-450,
.my-450 {
  margin-bottom: 45rem !important;
}

.ml-450,
.mx-450 {
  margin-left: 45rem !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: 0.1rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.1rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.1rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.1rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.1rem !important;
}

.p-2 {
  padding: 0.2rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.2rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.2rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.2rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.2rem !important;
}

.p-3 {
  padding: 0.3rem !important;
}

.pt-3,
.py-3 {
  padding-top: 0.3rem !important;
}

.pr-3,
.px-3 {
  padding-right: 0.3rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 0.3rem !important;
}

.pl-3,
.px-3 {
  padding-left: 0.3rem !important;
}

.p-4 {
  padding: 0.4rem !important;
}

.pt-4,
.py-4 {
  padding-top: 0.4rem !important;
}

.pr-4,
.px-4 {
  padding-right: 0.4rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 0.4rem !important;
}

.pl-4,
.px-4 {
  padding-left: 0.4rem !important;
}

.p-5 {
  padding: 0.5rem !important;
}

.pt-5,
.py-5 {
  padding-top: 0.5rem !important;
}

.pr-5,
.px-5 {
  padding-right: 0.5rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 0.5rem !important;
}

.pl-5,
.px-5 {
  padding-left: 0.5rem !important;
}

.p-6 {
  padding: 0.6rem !important;
}

.pt-6,
.py-6 {
  padding-top: 0.6rem !important;
}

.pr-6,
.px-6 {
  padding-right: 0.6rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 0.6rem !important;
}

.pl-6,
.px-6 {
  padding-left: 0.6rem !important;
}

.p-7 {
  padding: 0.7rem !important;
}

.pt-7,
.py-7 {
  padding-top: 0.7rem !important;
}

.pr-7,
.px-7 {
  padding-right: 0.7rem !important;
}

.pb-7,
.py-7 {
  padding-bottom: 0.7rem !important;
}

.pl-7,
.px-7 {
  padding-left: 0.7rem !important;
}

.p-8 {
  padding: 0.8rem !important;
}

.pt-8,
.py-8 {
  padding-top: 0.8rem !important;
}

.pr-8,
.px-8 {
  padding-right: 0.8rem !important;
}

.pb-8,
.py-8 {
  padding-bottom: 0.8rem !important;
}

.pl-8,
.px-8 {
  padding-left: 0.8rem !important;
}

.p-9 {
  padding: 0.9rem !important;
}

.pt-9,
.py-9 {
  padding-top: 0.9rem !important;
}

.pr-9,
.px-9 {
  padding-right: 0.9rem !important;
}

.pb-9,
.py-9 {
  padding-bottom: 0.9rem !important;
}

.pl-9,
.px-9 {
  padding-left: 0.9rem !important;
}

.p-10 {
  padding: 1rem !important;
}

.pt-10,
.py-10 {
  padding-top: 1rem !important;
}

.pr-10,
.px-10 {
  padding-right: 1rem !important;
}

.pb-10,
.py-10 {
  padding-bottom: 1rem !important;
}

.pl-10,
.px-10 {
  padding-left: 1rem !important;
}

.p-11 {
  padding: 1.1rem !important;
}

.pt-11,
.py-11 {
  padding-top: 1.1rem !important;
}

.pr-11,
.px-11 {
  padding-right: 1.1rem !important;
}

.pb-11,
.py-11 {
  padding-bottom: 1.1rem !important;
}

.pl-11,
.px-11 {
  padding-left: 1.1rem !important;
}

.p-12 {
  padding: 1.2rem !important;
}

.pt-12,
.py-12 {
  padding-top: 1.2rem !important;
}

.pr-12,
.px-12 {
  padding-right: 1.2rem !important;
}

.pb-12,
.py-12 {
  padding-bottom: 1.2rem !important;
}

.pl-12,
.px-12 {
  padding-left: 1.2rem !important;
}

.p-13 {
  padding: 1.3rem !important;
}

.pt-13,
.py-13 {
  padding-top: 1.3rem !important;
}

.pr-13,
.px-13 {
  padding-right: 1.3rem !important;
}

.pb-13,
.py-13 {
  padding-bottom: 1.3rem !important;
}

.pl-13,
.px-13 {
  padding-left: 1.3rem !important;
}

.p-14 {
  padding: 1.4rem !important;
}

.pt-14,
.py-14 {
  padding-top: 1.4rem !important;
}

.pr-14,
.px-14 {
  padding-right: 1.4rem !important;
}

.pb-14,
.py-14 {
  padding-bottom: 1.4rem !important;
}

.pl-14,
.px-14 {
  padding-left: 1.4rem !important;
}

.p-15 {
  padding: 1.5rem !important;
}

.pt-15,
.py-15 {
  padding-top: 1.5rem !important;
}

.pr-15,
.px-15 {
  padding-right: 1.5rem !important;
}

.pb-15,
.py-15 {
  padding-bottom: 1.5rem !important;
}

.pl-15,
.px-15 {
  padding-left: 1.5rem !important;
}

.p-16 {
  padding: 1.6rem !important;
}

.pt-16,
.py-16 {
  padding-top: 1.6rem !important;
}

.pr-16,
.px-16 {
  padding-right: 1.6rem !important;
}

.pb-16,
.py-16 {
  padding-bottom: 1.6rem !important;
}

.pl-16,
.px-16 {
  padding-left: 1.6rem !important;
}

.p-17 {
  padding: 1.7rem !important;
}

.pt-17,
.py-17 {
  padding-top: 1.7rem !important;
}

.pr-17,
.px-17 {
  padding-right: 1.7rem !important;
}

.pb-17,
.py-17 {
  padding-bottom: 1.7rem !important;
}

.pl-17,
.px-17 {
  padding-left: 1.7rem !important;
}

.p-18 {
  padding: 1.8rem !important;
}

.pt-18,
.py-18 {
  padding-top: 1.8rem !important;
}

.pr-18,
.px-18 {
  padding-right: 1.8rem !important;
}

.pb-18,
.py-18 {
  padding-bottom: 1.8rem !important;
}

.pl-18,
.px-18 {
  padding-left: 1.8rem !important;
}

.p-19 {
  padding: 1.9rem !important;
}

.pt-19,
.py-19 {
  padding-top: 1.9rem !important;
}

.pr-19,
.px-19 {
  padding-right: 1.9rem !important;
}

.pb-19,
.py-19 {
  padding-bottom: 1.9rem !important;
}

.pl-19,
.px-19 {
  padding-left: 1.9rem !important;
}

.p-20 {
  padding: 2rem !important;
}

.pt-20,
.py-20 {
  padding-top: 2rem !important;
}

.pr-20,
.px-20 {
  padding-right: 2rem !important;
}

.pb-20,
.py-20 {
  padding-bottom: 2rem !important;
}

.pl-20,
.px-20 {
  padding-left: 2rem !important;
}

.p-25 {
  padding: 2.5rem !important;
}

.pt-25,
.py-25 {
  padding-top: 2.5rem !important;
}

.pr-25,
.px-25 {
  padding-right: 2.5rem !important;
}

.pb-25,
.py-25 {
  padding-bottom: 2.5rem !important;
}

.pl-25,
.px-25 {
  padding-left: 2.5rem !important;
}

.p-30 {
  padding: 3rem !important;
}

.pt-30,
.py-30 {
  padding-top: 3rem !important;
}

.pr-30,
.px-30 {
  padding-right: 3rem !important;
}

.pb-30,
.py-30 {
  padding-bottom: 3rem !important;
}

.pl-30,
.px-30 {
  padding-left: 3rem !important;
}

.p-35 {
  padding: 3.5rem !important;
}

.pt-35,
.py-35 {
  padding-top: 3.5rem !important;
}

.pr-35,
.px-35 {
  padding-right: 3.5rem !important;
}

.pb-35,
.py-35 {
  padding-bottom: 3.5rem !important;
}

.pl-35,
.px-35 {
  padding-left: 3.5rem !important;
}

.p-40 {
  padding: 4rem !important;
}

.pt-40,
.py-40 {
  padding-top: 4rem !important;
}

.pr-40,
.px-40 {
  padding-right: 4rem !important;
}

.pb-40,
.py-40 {
  padding-bottom: 4rem !important;
}

.pl-40,
.px-40 {
  padding-left: 4rem !important;
}

.p-45 {
  padding: 4.5rem !important;
}

.pt-45,
.py-45 {
  padding-top: 4.5rem !important;
}

.pr-45,
.px-45 {
  padding-right: 4.5rem !important;
}

.pb-45,
.py-45 {
  padding-bottom: 4.5rem !important;
}

.pl-45,
.px-45 {
  padding-left: 4.5rem !important;
}

.p-50 {
  padding: 5rem !important;
}

.pt-50,
.py-50 {
  padding-top: 5rem !important;
}

.pr-50,
.px-50 {
  padding-right: 5rem !important;
}

.pb-50,
.py-50 {
  padding-bottom: 5rem !important;
}

.pl-50,
.px-50 {
  padding-left: 5rem !important;
}

.p-55 {
  padding: 5.5rem !important;
}

.pt-55,
.py-55 {
  padding-top: 5.5rem !important;
}

.pr-55,
.px-55 {
  padding-right: 5.5rem !important;
}

.pb-55,
.py-55 {
  padding-bottom: 5.5rem !important;
}

.pl-55,
.px-55 {
  padding-left: 5.5rem !important;
}

.p-60 {
  padding: 6rem !important;
}

.pt-60,
.py-60 {
  padding-top: 6rem !important;
}

.pr-60,
.px-60 {
  padding-right: 6rem !important;
}

.pb-60,
.py-60 {
  padding-bottom: 6rem !important;
}

.pl-60,
.px-60 {
  padding-left: 6rem !important;
}

.p-65 {
  padding: 6.5rem !important;
}

.pt-65,
.py-65 {
  padding-top: 6.5rem !important;
}

.pr-65,
.px-65 {
  padding-right: 6.5rem !important;
}

.pb-65,
.py-65 {
  padding-bottom: 6.5rem !important;
}

.pl-65,
.px-65 {
  padding-left: 6.5rem !important;
}

.p-70 {
  padding: 7rem !important;
}

.pt-70,
.py-70 {
  padding-top: 7rem !important;
}

.pr-70,
.px-70 {
  padding-right: 7rem !important;
}

.pb-70,
.py-70 {
  padding-bottom: 7rem !important;
}

.pl-70,
.px-70 {
  padding-left: 7rem !important;
}

.p-75 {
  padding: 7.5rem !important;
}

.pt-75,
.py-75 {
  padding-top: 7.5rem !important;
}

.pr-75,
.px-75 {
  padding-right: 7.5rem !important;
}

.pb-75,
.py-75 {
  padding-bottom: 7.5rem !important;
}

.pl-75,
.px-75 {
  padding-left: 7.5rem !important;
}

.p-80 {
  padding: 8rem !important;
}

.pt-80,
.py-80 {
  padding-top: 8rem !important;
}

.pr-80,
.px-80 {
  padding-right: 8rem !important;
}

.pb-80,
.py-80 {
  padding-bottom: 8rem !important;
}

.pl-80,
.px-80 {
  padding-left: 8rem !important;
}

.p-85 {
  padding: 8.5rem !important;
}

.pt-85,
.py-85 {
  padding-top: 8.5rem !important;
}

.pr-85,
.px-85 {
  padding-right: 8.5rem !important;
}

.pb-85,
.py-85 {
  padding-bottom: 8.5rem !important;
}

.pl-85,
.px-85 {
  padding-left: 8.5rem !important;
}

.p-90 {
  padding: 9rem !important;
}

.pt-90,
.py-90 {
  padding-top: 9rem !important;
}

.pr-90,
.px-90 {
  padding-right: 9rem !important;
}

.pb-90,
.py-90 {
  padding-bottom: 9rem !important;
}

.pl-90,
.px-90 {
  padding-left: 9rem !important;
}

.p-95 {
  padding: 9.5rem !important;
}

.pt-95,
.py-95 {
  padding-top: 9.5rem !important;
}

.pr-95,
.px-95 {
  padding-right: 9.5rem !important;
}

.pb-95,
.py-95 {
  padding-bottom: 9.5rem !important;
}

.pl-95,
.px-95 {
  padding-left: 9.5rem !important;
}

.p-100 {
  padding: 10rem !important;
}

.pt-100,
.py-100 {
  padding-top: 10rem !important;
}

.pr-100,
.px-100 {
  padding-right: 10rem !important;
}

.pb-100,
.py-100 {
  padding-bottom: 10rem !important;
}

.pl-100,
.px-100 {
  padding-left: 10rem !important;
}

.p-130 {
  padding: 13rem !important;
}

.pt-130,
.py-130 {
  padding-top: 13rem !important;
}

.pr-130,
.px-130 {
  padding-right: 13rem !important;
}

.pb-130,
.py-130 {
  padding-bottom: 13rem !important;
}

.pl-130,
.px-130 {
  padding-left: 13rem !important;
}

.p-140 {
  padding: 14rem !important;
}

.pt-140,
.py-140 {
  padding-top: 14rem !important;
}

.pr-140,
.px-140 {
  padding-right: 14rem !important;
}

.pb-140,
.py-140 {
  padding-bottom: 14rem !important;
}

.pl-140,
.px-140 {
  padding-left: 14rem !important;
}

.p-150 {
  padding: 15rem !important;
}

.pt-150,
.py-150 {
  padding-top: 15rem !important;
}

.pr-150,
.px-150 {
  padding-right: 15rem !important;
}

.pb-150,
.py-150 {
  padding-bottom: 15rem !important;
}

.pl-150,
.px-150 {
  padding-left: 15rem !important;
}

.p-200 {
  padding: 20rem !important;
}

.pt-200,
.py-200 {
  padding-top: 20rem !important;
}

.pr-200,
.px-200 {
  padding-right: 20rem !important;
}

.pb-200,
.py-200 {
  padding-bottom: 20rem !important;
}

.pl-200,
.px-200 {
  padding-left: 20rem !important;
}

.p-250 {
  padding: 25rem !important;
}

.pt-250,
.py-250 {
  padding-top: 25rem !important;
}

.pr-250,
.px-250 {
  padding-right: 25rem !important;
}

.pb-250,
.py-250 {
  padding-bottom: 25rem !important;
}

.pl-250,
.px-250 {
  padding-left: 25rem !important;
}

.p-300 {
  padding: 30rem !important;
}

.pt-300,
.py-300 {
  padding-top: 30rem !important;
}

.pr-300,
.px-300 {
  padding-right: 30rem !important;
}

.pb-300,
.py-300 {
  padding-bottom: 30rem !important;
}

.pl-300,
.px-300 {
  padding-left: 30rem !important;
}

.p-400 {
  padding: 40rem !important;
}

.pt-400,
.py-400 {
  padding-top: 40rem !important;
}

.pr-400,
.px-400 {
  padding-right: 40rem !important;
}

.pb-400,
.py-400 {
  padding-bottom: 40rem !important;
}

.pl-400,
.px-400 {
  padding-left: 40rem !important;
}

.p-410 {
  padding: 41rem !important;
}

.pt-410,
.py-410 {
  padding-top: 41rem !important;
}

.pr-410,
.px-410 {
  padding-right: 41rem !important;
}

.pb-410,
.py-410 {
  padding-bottom: 41rem !important;
}

.pl-410,
.px-410 {
  padding-left: 41rem !important;
}

.p-450 {
  padding: 45rem !important;
}

.pt-450,
.py-450 {
  padding-top: 45rem !important;
}

.pr-450,
.px-450 {
  padding-right: 45rem !important;
}

.pb-450,
.py-450 {
  padding-bottom: 45rem !important;
}

.pl-450,
.px-450 {
  padding-left: 45rem !important;
}

.m-n1 {
  margin: -0.1rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.1rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.1rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.1rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.1rem !important;
}

.m-n2 {
  margin: -0.2rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.2rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.2rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.2rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.2rem !important;
}

.m-n3 {
  margin: -0.3rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -0.3rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -0.3rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -0.3rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -0.3rem !important;
}

.m-n4 {
  margin: -0.4rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -0.4rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -0.4rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -0.4rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -0.4rem !important;
}

.m-n5 {
  margin: -0.5rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -0.5rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -0.5rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -0.5rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -0.5rem !important;
}

.m-n6 {
  margin: -0.6rem !important;
}

.mt-n6,
.my-n6 {
  margin-top: -0.6rem !important;
}

.mr-n6,
.mx-n6 {
  margin-right: -0.6rem !important;
}

.mb-n6,
.my-n6 {
  margin-bottom: -0.6rem !important;
}

.ml-n6,
.mx-n6 {
  margin-left: -0.6rem !important;
}

.m-n7 {
  margin: -0.7rem !important;
}

.mt-n7,
.my-n7 {
  margin-top: -0.7rem !important;
}

.mr-n7,
.mx-n7 {
  margin-right: -0.7rem !important;
}

.mb-n7,
.my-n7 {
  margin-bottom: -0.7rem !important;
}

.ml-n7,
.mx-n7 {
  margin-left: -0.7rem !important;
}

.m-n8 {
  margin: -0.8rem !important;
}

.mt-n8,
.my-n8 {
  margin-top: -0.8rem !important;
}

.mr-n8,
.mx-n8 {
  margin-right: -0.8rem !important;
}

.mb-n8,
.my-n8 {
  margin-bottom: -0.8rem !important;
}

.ml-n8,
.mx-n8 {
  margin-left: -0.8rem !important;
}

.m-n9 {
  margin: -0.9rem !important;
}

.mt-n9,
.my-n9 {
  margin-top: -0.9rem !important;
}

.mr-n9,
.mx-n9 {
  margin-right: -0.9rem !important;
}

.mb-n9,
.my-n9 {
  margin-bottom: -0.9rem !important;
}

.ml-n9,
.mx-n9 {
  margin-left: -0.9rem !important;
}

.m-n10 {
  margin: -1rem !important;
}

.mt-n10,
.my-n10 {
  margin-top: -1rem !important;
}

.mr-n10,
.mx-n10 {
  margin-right: -1rem !important;
}

.mb-n10,
.my-n10 {
  margin-bottom: -1rem !important;
}

.ml-n10,
.mx-n10 {
  margin-left: -1rem !important;
}

.m-n11 {
  margin: -1.1rem !important;
}

.mt-n11,
.my-n11 {
  margin-top: -1.1rem !important;
}

.mr-n11,
.mx-n11 {
  margin-right: -1.1rem !important;
}

.mb-n11,
.my-n11 {
  margin-bottom: -1.1rem !important;
}

.ml-n11,
.mx-n11 {
  margin-left: -1.1rem !important;
}

.m-n12 {
  margin: -1.2rem !important;
}

.mt-n12,
.my-n12 {
  margin-top: -1.2rem !important;
}

.mr-n12,
.mx-n12 {
  margin-right: -1.2rem !important;
}

.mb-n12,
.my-n12 {
  margin-bottom: -1.2rem !important;
}

.ml-n12,
.mx-n12 {
  margin-left: -1.2rem !important;
}

.m-n13 {
  margin: -1.3rem !important;
}

.mt-n13,
.my-n13 {
  margin-top: -1.3rem !important;
}

.mr-n13,
.mx-n13 {
  margin-right: -1.3rem !important;
}

.mb-n13,
.my-n13 {
  margin-bottom: -1.3rem !important;
}

.ml-n13,
.mx-n13 {
  margin-left: -1.3rem !important;
}

.m-n14 {
  margin: -1.4rem !important;
}

.mt-n14,
.my-n14 {
  margin-top: -1.4rem !important;
}

.mr-n14,
.mx-n14 {
  margin-right: -1.4rem !important;
}

.mb-n14,
.my-n14 {
  margin-bottom: -1.4rem !important;
}

.ml-n14,
.mx-n14 {
  margin-left: -1.4rem !important;
}

.m-n15 {
  margin: -1.5rem !important;
}

.mt-n15,
.my-n15 {
  margin-top: -1.5rem !important;
}

.mr-n15,
.mx-n15 {
  margin-right: -1.5rem !important;
}

.mb-n15,
.my-n15 {
  margin-bottom: -1.5rem !important;
}

.ml-n15,
.mx-n15 {
  margin-left: -1.5rem !important;
}

.m-n16 {
  margin: -1.6rem !important;
}

.mt-n16,
.my-n16 {
  margin-top: -1.6rem !important;
}

.mr-n16,
.mx-n16 {
  margin-right: -1.6rem !important;
}

.mb-n16,
.my-n16 {
  margin-bottom: -1.6rem !important;
}

.ml-n16,
.mx-n16 {
  margin-left: -1.6rem !important;
}

.m-n17 {
  margin: -1.7rem !important;
}

.mt-n17,
.my-n17 {
  margin-top: -1.7rem !important;
}

.mr-n17,
.mx-n17 {
  margin-right: -1.7rem !important;
}

.mb-n17,
.my-n17 {
  margin-bottom: -1.7rem !important;
}

.ml-n17,
.mx-n17 {
  margin-left: -1.7rem !important;
}

.m-n18 {
  margin: -1.8rem !important;
}

.mt-n18,
.my-n18 {
  margin-top: -1.8rem !important;
}

.mr-n18,
.mx-n18 {
  margin-right: -1.8rem !important;
}

.mb-n18,
.my-n18 {
  margin-bottom: -1.8rem !important;
}

.ml-n18,
.mx-n18 {
  margin-left: -1.8rem !important;
}

.m-n19 {
  margin: -1.9rem !important;
}

.mt-n19,
.my-n19 {
  margin-top: -1.9rem !important;
}

.mr-n19,
.mx-n19 {
  margin-right: -1.9rem !important;
}

.mb-n19,
.my-n19 {
  margin-bottom: -1.9rem !important;
}

.ml-n19,
.mx-n19 {
  margin-left: -1.9rem !important;
}

.m-n20 {
  margin: -2rem !important;
}

.mt-n20,
.my-n20 {
  margin-top: -2rem !important;
}

.mr-n20,
.mx-n20 {
  margin-right: -2rem !important;
}

.mb-n20,
.my-n20 {
  margin-bottom: -2rem !important;
}

.ml-n20,
.mx-n20 {
  margin-left: -2rem !important;
}

.m-n25 {
  margin: -2.5rem !important;
}

.mt-n25,
.my-n25 {
  margin-top: -2.5rem !important;
}

.mr-n25,
.mx-n25 {
  margin-right: -2.5rem !important;
}

.mb-n25,
.my-n25 {
  margin-bottom: -2.5rem !important;
}

.ml-n25,
.mx-n25 {
  margin-left: -2.5rem !important;
}

.m-n30 {
  margin: -3rem !important;
}

.mt-n30,
.my-n30 {
  margin-top: -3rem !important;
}

.mr-n30,
.mx-n30 {
  margin-right: -3rem !important;
}

.mb-n30,
.my-n30 {
  margin-bottom: -3rem !important;
}

.ml-n30,
.mx-n30 {
  margin-left: -3rem !important;
}

.m-n35 {
  margin: -3.5rem !important;
}

.mt-n35,
.my-n35 {
  margin-top: -3.5rem !important;
}

.mr-n35,
.mx-n35 {
  margin-right: -3.5rem !important;
}

.mb-n35,
.my-n35 {
  margin-bottom: -3.5rem !important;
}

.ml-n35,
.mx-n35 {
  margin-left: -3.5rem !important;
}

.m-n40 {
  margin: -4rem !important;
}

.mt-n40,
.my-n40 {
  margin-top: -4rem !important;
}

.mr-n40,
.mx-n40 {
  margin-right: -4rem !important;
}

.mb-n40,
.my-n40 {
  margin-bottom: -4rem !important;
}

.ml-n40,
.mx-n40 {
  margin-left: -4rem !important;
}

.m-n45 {
  margin: -4.5rem !important;
}

.mt-n45,
.my-n45 {
  margin-top: -4.5rem !important;
}

.mr-n45,
.mx-n45 {
  margin-right: -4.5rem !important;
}

.mb-n45,
.my-n45 {
  margin-bottom: -4.5rem !important;
}

.ml-n45,
.mx-n45 {
  margin-left: -4.5rem !important;
}

.m-n50 {
  margin: -5rem !important;
}

.mt-n50,
.my-n50 {
  margin-top: -5rem !important;
}

.mr-n50,
.mx-n50 {
  margin-right: -5rem !important;
}

.mb-n50,
.my-n50 {
  margin-bottom: -5rem !important;
}

.ml-n50,
.mx-n50 {
  margin-left: -5rem !important;
}

.m-n55 {
  margin: -5.5rem !important;
}

.mt-n55,
.my-n55 {
  margin-top: -5.5rem !important;
}

.mr-n55,
.mx-n55 {
  margin-right: -5.5rem !important;
}

.mb-n55,
.my-n55 {
  margin-bottom: -5.5rem !important;
}

.ml-n55,
.mx-n55 {
  margin-left: -5.5rem !important;
}

.m-n60 {
  margin: -6rem !important;
}

.mt-n60,
.my-n60 {
  margin-top: -6rem !important;
}

.mr-n60,
.mx-n60 {
  margin-right: -6rem !important;
}

.mb-n60,
.my-n60 {
  margin-bottom: -6rem !important;
}

.ml-n60,
.mx-n60 {
  margin-left: -6rem !important;
}

.m-n65 {
  margin: -6.5rem !important;
}

.mt-n65,
.my-n65 {
  margin-top: -6.5rem !important;
}

.mr-n65,
.mx-n65 {
  margin-right: -6.5rem !important;
}

.mb-n65,
.my-n65 {
  margin-bottom: -6.5rem !important;
}

.ml-n65,
.mx-n65 {
  margin-left: -6.5rem !important;
}

.m-n70 {
  margin: -7rem !important;
}

.mt-n70,
.my-n70 {
  margin-top: -7rem !important;
}

.mr-n70,
.mx-n70 {
  margin-right: -7rem !important;
}

.mb-n70,
.my-n70 {
  margin-bottom: -7rem !important;
}

.ml-n70,
.mx-n70 {
  margin-left: -7rem !important;
}

.m-n75 {
  margin: -7.5rem !important;
}

.mt-n75,
.my-n75 {
  margin-top: -7.5rem !important;
}

.mr-n75,
.mx-n75 {
  margin-right: -7.5rem !important;
}

.mb-n75,
.my-n75 {
  margin-bottom: -7.5rem !important;
}

.ml-n75,
.mx-n75 {
  margin-left: -7.5rem !important;
}

.m-n80 {
  margin: -8rem !important;
}

.mt-n80,
.my-n80 {
  margin-top: -8rem !important;
}

.mr-n80,
.mx-n80 {
  margin-right: -8rem !important;
}

.mb-n80,
.my-n80 {
  margin-bottom: -8rem !important;
}

.ml-n80,
.mx-n80 {
  margin-left: -8rem !important;
}

.m-n85 {
  margin: -8.5rem !important;
}

.mt-n85,
.my-n85 {
  margin-top: -8.5rem !important;
}

.mr-n85,
.mx-n85 {
  margin-right: -8.5rem !important;
}

.mb-n85,
.my-n85 {
  margin-bottom: -8.5rem !important;
}

.ml-n85,
.mx-n85 {
  margin-left: -8.5rem !important;
}

.m-n90 {
  margin: -9rem !important;
}

.mt-n90,
.my-n90 {
  margin-top: -9rem !important;
}

.mr-n90,
.mx-n90 {
  margin-right: -9rem !important;
}

.mb-n90,
.my-n90 {
  margin-bottom: -9rem !important;
}

.ml-n90,
.mx-n90 {
  margin-left: -9rem !important;
}

.m-n95 {
  margin: -9.5rem !important;
}

.mt-n95,
.my-n95 {
  margin-top: -9.5rem !important;
}

.mr-n95,
.mx-n95 {
  margin-right: -9.5rem !important;
}

.mb-n95,
.my-n95 {
  margin-bottom: -9.5rem !important;
}

.ml-n95,
.mx-n95 {
  margin-left: -9.5rem !important;
}

.m-n100 {
  margin: -10rem !important;
}

.mt-n100,
.my-n100 {
  margin-top: -10rem !important;
}

.mr-n100,
.mx-n100 {
  margin-right: -10rem !important;
}

.mb-n100,
.my-n100 {
  margin-bottom: -10rem !important;
}

.ml-n100,
.mx-n100 {
  margin-left: -10rem !important;
}

.m-n130 {
  margin: -13rem !important;
}

.mt-n130,
.my-n130 {
  margin-top: -13rem !important;
}

.mr-n130,
.mx-n130 {
  margin-right: -13rem !important;
}

.mb-n130,
.my-n130 {
  margin-bottom: -13rem !important;
}

.ml-n130,
.mx-n130 {
  margin-left: -13rem !important;
}

.m-n140 {
  margin: -14rem !important;
}

.mt-n140,
.my-n140 {
  margin-top: -14rem !important;
}

.mr-n140,
.mx-n140 {
  margin-right: -14rem !important;
}

.mb-n140,
.my-n140 {
  margin-bottom: -14rem !important;
}

.ml-n140,
.mx-n140 {
  margin-left: -14rem !important;
}

.m-n150 {
  margin: -15rem !important;
}

.mt-n150,
.my-n150 {
  margin-top: -15rem !important;
}

.mr-n150,
.mx-n150 {
  margin-right: -15rem !important;
}

.mb-n150,
.my-n150 {
  margin-bottom: -15rem !important;
}

.ml-n150,
.mx-n150 {
  margin-left: -15rem !important;
}

.m-n200 {
  margin: -20rem !important;
}

.mt-n200,
.my-n200 {
  margin-top: -20rem !important;
}

.mr-n200,
.mx-n200 {
  margin-right: -20rem !important;
}

.mb-n200,
.my-n200 {
  margin-bottom: -20rem !important;
}

.ml-n200,
.mx-n200 {
  margin-left: -20rem !important;
}

.m-n250 {
  margin: -25rem !important;
}

.mt-n250,
.my-n250 {
  margin-top: -25rem !important;
}

.mr-n250,
.mx-n250 {
  margin-right: -25rem !important;
}

.mb-n250,
.my-n250 {
  margin-bottom: -25rem !important;
}

.ml-n250,
.mx-n250 {
  margin-left: -25rem !important;
}

.m-n300 {
  margin: -30rem !important;
}

.mt-n300,
.my-n300 {
  margin-top: -30rem !important;
}

.mr-n300,
.mx-n300 {
  margin-right: -30rem !important;
}

.mb-n300,
.my-n300 {
  margin-bottom: -30rem !important;
}

.ml-n300,
.mx-n300 {
  margin-left: -30rem !important;
}

.m-n400 {
  margin: -40rem !important;
}

.mt-n400,
.my-n400 {
  margin-top: -40rem !important;
}

.mr-n400,
.mx-n400 {
  margin-right: -40rem !important;
}

.mb-n400,
.my-n400 {
  margin-bottom: -40rem !important;
}

.ml-n400,
.mx-n400 {
  margin-left: -40rem !important;
}

.m-n410 {
  margin: -41rem !important;
}

.mt-n410,
.my-n410 {
  margin-top: -41rem !important;
}

.mr-n410,
.mx-n410 {
  margin-right: -41rem !important;
}

.mb-n410,
.my-n410 {
  margin-bottom: -41rem !important;
}

.ml-n410,
.mx-n410 {
  margin-left: -41rem !important;
}

.m-n450 {
  margin: -45rem !important;
}

.mt-n450,
.my-n450 {
  margin-top: -45rem !important;
}

.mr-n450,
.mx-n450 {
  margin-right: -45rem !important;
}

.mb-n450,
.my-n450 {
  margin-bottom: -45rem !important;
}

.ml-n450,
.mx-n450 {
  margin-left: -45rem !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: 0.1rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.1rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.1rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.1rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.1rem !important;
  }
  .m-sm-2 {
    margin: 0.2rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.2rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.2rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.2rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.2rem !important;
  }
  .m-sm-3 {
    margin: 0.3rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 0.3rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 0.3rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 0.3rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 0.3rem !important;
  }
  .m-sm-4 {
    margin: 0.4rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 0.4rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 0.4rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 0.4rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 0.4rem !important;
  }
  .m-sm-5 {
    margin: 0.5rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 0.5rem !important;
  }
  .m-sm-6 {
    margin: 0.6rem !important;
  }
  .mt-sm-6,
  .my-sm-6 {
    margin-top: 0.6rem !important;
  }
  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 0.6rem !important;
  }
  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 0.6rem !important;
  }
  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 0.6rem !important;
  }
  .m-sm-7 {
    margin: 0.7rem !important;
  }
  .mt-sm-7,
  .my-sm-7 {
    margin-top: 0.7rem !important;
  }
  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 0.7rem !important;
  }
  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 0.7rem !important;
  }
  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 0.7rem !important;
  }
  .m-sm-8 {
    margin: 0.8rem !important;
  }
  .mt-sm-8,
  .my-sm-8 {
    margin-top: 0.8rem !important;
  }
  .mr-sm-8,
  .mx-sm-8 {
    margin-right: 0.8rem !important;
  }
  .mb-sm-8,
  .my-sm-8 {
    margin-bottom: 0.8rem !important;
  }
  .ml-sm-8,
  .mx-sm-8 {
    margin-left: 0.8rem !important;
  }
  .m-sm-9 {
    margin: 0.9rem !important;
  }
  .mt-sm-9,
  .my-sm-9 {
    margin-top: 0.9rem !important;
  }
  .mr-sm-9,
  .mx-sm-9 {
    margin-right: 0.9rem !important;
  }
  .mb-sm-9,
  .my-sm-9 {
    margin-bottom: 0.9rem !important;
  }
  .ml-sm-9,
  .mx-sm-9 {
    margin-left: 0.9rem !important;
  }
  .m-sm-10 {
    margin: 1rem !important;
  }
  .mt-sm-10,
  .my-sm-10 {
    margin-top: 1rem !important;
  }
  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 1rem !important;
  }
  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 1rem !important;
  }
  .m-sm-11 {
    margin: 1.1rem !important;
  }
  .mt-sm-11,
  .my-sm-11 {
    margin-top: 1.1rem !important;
  }
  .mr-sm-11,
  .mx-sm-11 {
    margin-right: 1.1rem !important;
  }
  .mb-sm-11,
  .my-sm-11 {
    margin-bottom: 1.1rem !important;
  }
  .ml-sm-11,
  .mx-sm-11 {
    margin-left: 1.1rem !important;
  }
  .m-sm-12 {
    margin: 1.2rem !important;
  }
  .mt-sm-12,
  .my-sm-12 {
    margin-top: 1.2rem !important;
  }
  .mr-sm-12,
  .mx-sm-12 {
    margin-right: 1.2rem !important;
  }
  .mb-sm-12,
  .my-sm-12 {
    margin-bottom: 1.2rem !important;
  }
  .ml-sm-12,
  .mx-sm-12 {
    margin-left: 1.2rem !important;
  }
  .m-sm-13 {
    margin: 1.3rem !important;
  }
  .mt-sm-13,
  .my-sm-13 {
    margin-top: 1.3rem !important;
  }
  .mr-sm-13,
  .mx-sm-13 {
    margin-right: 1.3rem !important;
  }
  .mb-sm-13,
  .my-sm-13 {
    margin-bottom: 1.3rem !important;
  }
  .ml-sm-13,
  .mx-sm-13 {
    margin-left: 1.3rem !important;
  }
  .m-sm-14 {
    margin: 1.4rem !important;
  }
  .mt-sm-14,
  .my-sm-14 {
    margin-top: 1.4rem !important;
  }
  .mr-sm-14,
  .mx-sm-14 {
    margin-right: 1.4rem !important;
  }
  .mb-sm-14,
  .my-sm-14 {
    margin-bottom: 1.4rem !important;
  }
  .ml-sm-14,
  .mx-sm-14 {
    margin-left: 1.4rem !important;
  }
  .m-sm-15 {
    margin: 1.5rem !important;
  }
  .mt-sm-15,
  .my-sm-15 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-15,
  .mx-sm-15 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-15,
  .my-sm-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-15,
  .mx-sm-15 {
    margin-left: 1.5rem !important;
  }
  .m-sm-16 {
    margin: 1.6rem !important;
  }
  .mt-sm-16,
  .my-sm-16 {
    margin-top: 1.6rem !important;
  }
  .mr-sm-16,
  .mx-sm-16 {
    margin-right: 1.6rem !important;
  }
  .mb-sm-16,
  .my-sm-16 {
    margin-bottom: 1.6rem !important;
  }
  .ml-sm-16,
  .mx-sm-16 {
    margin-left: 1.6rem !important;
  }
  .m-sm-17 {
    margin: 1.7rem !important;
  }
  .mt-sm-17,
  .my-sm-17 {
    margin-top: 1.7rem !important;
  }
  .mr-sm-17,
  .mx-sm-17 {
    margin-right: 1.7rem !important;
  }
  .mb-sm-17,
  .my-sm-17 {
    margin-bottom: 1.7rem !important;
  }
  .ml-sm-17,
  .mx-sm-17 {
    margin-left: 1.7rem !important;
  }
  .m-sm-18 {
    margin: 1.8rem !important;
  }
  .mt-sm-18,
  .my-sm-18 {
    margin-top: 1.8rem !important;
  }
  .mr-sm-18,
  .mx-sm-18 {
    margin-right: 1.8rem !important;
  }
  .mb-sm-18,
  .my-sm-18 {
    margin-bottom: 1.8rem !important;
  }
  .ml-sm-18,
  .mx-sm-18 {
    margin-left: 1.8rem !important;
  }
  .m-sm-19 {
    margin: 1.9rem !important;
  }
  .mt-sm-19,
  .my-sm-19 {
    margin-top: 1.9rem !important;
  }
  .mr-sm-19,
  .mx-sm-19 {
    margin-right: 1.9rem !important;
  }
  .mb-sm-19,
  .my-sm-19 {
    margin-bottom: 1.9rem !important;
  }
  .ml-sm-19,
  .mx-sm-19 {
    margin-left: 1.9rem !important;
  }
  .m-sm-20 {
    margin: 2rem !important;
  }
  .mt-sm-20,
  .my-sm-20 {
    margin-top: 2rem !important;
  }
  .mr-sm-20,
  .mx-sm-20 {
    margin-right: 2rem !important;
  }
  .mb-sm-20,
  .my-sm-20 {
    margin-bottom: 2rem !important;
  }
  .ml-sm-20,
  .mx-sm-20 {
    margin-left: 2rem !important;
  }
  .m-sm-25 {
    margin: 2.5rem !important;
  }
  .mt-sm-25,
  .my-sm-25 {
    margin-top: 2.5rem !important;
  }
  .mr-sm-25,
  .mx-sm-25 {
    margin-right: 2.5rem !important;
  }
  .mb-sm-25,
  .my-sm-25 {
    margin-bottom: 2.5rem !important;
  }
  .ml-sm-25,
  .mx-sm-25 {
    margin-left: 2.5rem !important;
  }
  .m-sm-30 {
    margin: 3rem !important;
  }
  .mt-sm-30,
  .my-sm-30 {
    margin-top: 3rem !important;
  }
  .mr-sm-30,
  .mx-sm-30 {
    margin-right: 3rem !important;
  }
  .mb-sm-30,
  .my-sm-30 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-30,
  .mx-sm-30 {
    margin-left: 3rem !important;
  }
  .m-sm-35 {
    margin: 3.5rem !important;
  }
  .mt-sm-35,
  .my-sm-35 {
    margin-top: 3.5rem !important;
  }
  .mr-sm-35,
  .mx-sm-35 {
    margin-right: 3.5rem !important;
  }
  .mb-sm-35,
  .my-sm-35 {
    margin-bottom: 3.5rem !important;
  }
  .ml-sm-35,
  .mx-sm-35 {
    margin-left: 3.5rem !important;
  }
  .m-sm-40 {
    margin: 4rem !important;
  }
  .mt-sm-40,
  .my-sm-40 {
    margin-top: 4rem !important;
  }
  .mr-sm-40,
  .mx-sm-40 {
    margin-right: 4rem !important;
  }
  .mb-sm-40,
  .my-sm-40 {
    margin-bottom: 4rem !important;
  }
  .ml-sm-40,
  .mx-sm-40 {
    margin-left: 4rem !important;
  }
  .m-sm-45 {
    margin: 4.5rem !important;
  }
  .mt-sm-45,
  .my-sm-45 {
    margin-top: 4.5rem !important;
  }
  .mr-sm-45,
  .mx-sm-45 {
    margin-right: 4.5rem !important;
  }
  .mb-sm-45,
  .my-sm-45 {
    margin-bottom: 4.5rem !important;
  }
  .ml-sm-45,
  .mx-sm-45 {
    margin-left: 4.5rem !important;
  }
  .m-sm-50 {
    margin: 5rem !important;
  }
  .mt-sm-50,
  .my-sm-50 {
    margin-top: 5rem !important;
  }
  .mr-sm-50,
  .mx-sm-50 {
    margin-right: 5rem !important;
  }
  .mb-sm-50,
  .my-sm-50 {
    margin-bottom: 5rem !important;
  }
  .ml-sm-50,
  .mx-sm-50 {
    margin-left: 5rem !important;
  }
  .m-sm-55 {
    margin: 5.5rem !important;
  }
  .mt-sm-55,
  .my-sm-55 {
    margin-top: 5.5rem !important;
  }
  .mr-sm-55,
  .mx-sm-55 {
    margin-right: 5.5rem !important;
  }
  .mb-sm-55,
  .my-sm-55 {
    margin-bottom: 5.5rem !important;
  }
  .ml-sm-55,
  .mx-sm-55 {
    margin-left: 5.5rem !important;
  }
  .m-sm-60 {
    margin: 6rem !important;
  }
  .mt-sm-60,
  .my-sm-60 {
    margin-top: 6rem !important;
  }
  .mr-sm-60,
  .mx-sm-60 {
    margin-right: 6rem !important;
  }
  .mb-sm-60,
  .my-sm-60 {
    margin-bottom: 6rem !important;
  }
  .ml-sm-60,
  .mx-sm-60 {
    margin-left: 6rem !important;
  }
  .m-sm-65 {
    margin: 6.5rem !important;
  }
  .mt-sm-65,
  .my-sm-65 {
    margin-top: 6.5rem !important;
  }
  .mr-sm-65,
  .mx-sm-65 {
    margin-right: 6.5rem !important;
  }
  .mb-sm-65,
  .my-sm-65 {
    margin-bottom: 6.5rem !important;
  }
  .ml-sm-65,
  .mx-sm-65 {
    margin-left: 6.5rem !important;
  }
  .m-sm-70 {
    margin: 7rem !important;
  }
  .mt-sm-70,
  .my-sm-70 {
    margin-top: 7rem !important;
  }
  .mr-sm-70,
  .mx-sm-70 {
    margin-right: 7rem !important;
  }
  .mb-sm-70,
  .my-sm-70 {
    margin-bottom: 7rem !important;
  }
  .ml-sm-70,
  .mx-sm-70 {
    margin-left: 7rem !important;
  }
  .m-sm-75 {
    margin: 7.5rem !important;
  }
  .mt-sm-75,
  .my-sm-75 {
    margin-top: 7.5rem !important;
  }
  .mr-sm-75,
  .mx-sm-75 {
    margin-right: 7.5rem !important;
  }
  .mb-sm-75,
  .my-sm-75 {
    margin-bottom: 7.5rem !important;
  }
  .ml-sm-75,
  .mx-sm-75 {
    margin-left: 7.5rem !important;
  }
  .m-sm-80 {
    margin: 8rem !important;
  }
  .mt-sm-80,
  .my-sm-80 {
    margin-top: 8rem !important;
  }
  .mr-sm-80,
  .mx-sm-80 {
    margin-right: 8rem !important;
  }
  .mb-sm-80,
  .my-sm-80 {
    margin-bottom: 8rem !important;
  }
  .ml-sm-80,
  .mx-sm-80 {
    margin-left: 8rem !important;
  }
  .m-sm-85 {
    margin: 8.5rem !important;
  }
  .mt-sm-85,
  .my-sm-85 {
    margin-top: 8.5rem !important;
  }
  .mr-sm-85,
  .mx-sm-85 {
    margin-right: 8.5rem !important;
  }
  .mb-sm-85,
  .my-sm-85 {
    margin-bottom: 8.5rem !important;
  }
  .ml-sm-85,
  .mx-sm-85 {
    margin-left: 8.5rem !important;
  }
  .m-sm-90 {
    margin: 9rem !important;
  }
  .mt-sm-90,
  .my-sm-90 {
    margin-top: 9rem !important;
  }
  .mr-sm-90,
  .mx-sm-90 {
    margin-right: 9rem !important;
  }
  .mb-sm-90,
  .my-sm-90 {
    margin-bottom: 9rem !important;
  }
  .ml-sm-90,
  .mx-sm-90 {
    margin-left: 9rem !important;
  }
  .m-sm-95 {
    margin: 9.5rem !important;
  }
  .mt-sm-95,
  .my-sm-95 {
    margin-top: 9.5rem !important;
  }
  .mr-sm-95,
  .mx-sm-95 {
    margin-right: 9.5rem !important;
  }
  .mb-sm-95,
  .my-sm-95 {
    margin-bottom: 9.5rem !important;
  }
  .ml-sm-95,
  .mx-sm-95 {
    margin-left: 9.5rem !important;
  }
  .m-sm-100 {
    margin: 10rem !important;
  }
  .mt-sm-100,
  .my-sm-100 {
    margin-top: 10rem !important;
  }
  .mr-sm-100,
  .mx-sm-100 {
    margin-right: 10rem !important;
  }
  .mb-sm-100,
  .my-sm-100 {
    margin-bottom: 10rem !important;
  }
  .ml-sm-100,
  .mx-sm-100 {
    margin-left: 10rem !important;
  }
  .m-sm-130 {
    margin: 13rem !important;
  }
  .mt-sm-130,
  .my-sm-130 {
    margin-top: 13rem !important;
  }
  .mr-sm-130,
  .mx-sm-130 {
    margin-right: 13rem !important;
  }
  .mb-sm-130,
  .my-sm-130 {
    margin-bottom: 13rem !important;
  }
  .ml-sm-130,
  .mx-sm-130 {
    margin-left: 13rem !important;
  }
  .m-sm-140 {
    margin: 14rem !important;
  }
  .mt-sm-140,
  .my-sm-140 {
    margin-top: 14rem !important;
  }
  .mr-sm-140,
  .mx-sm-140 {
    margin-right: 14rem !important;
  }
  .mb-sm-140,
  .my-sm-140 {
    margin-bottom: 14rem !important;
  }
  .ml-sm-140,
  .mx-sm-140 {
    margin-left: 14rem !important;
  }
  .m-sm-150 {
    margin: 15rem !important;
  }
  .mt-sm-150,
  .my-sm-150 {
    margin-top: 15rem !important;
  }
  .mr-sm-150,
  .mx-sm-150 {
    margin-right: 15rem !important;
  }
  .mb-sm-150,
  .my-sm-150 {
    margin-bottom: 15rem !important;
  }
  .ml-sm-150,
  .mx-sm-150 {
    margin-left: 15rem !important;
  }
  .m-sm-200 {
    margin: 20rem !important;
  }
  .mt-sm-200,
  .my-sm-200 {
    margin-top: 20rem !important;
  }
  .mr-sm-200,
  .mx-sm-200 {
    margin-right: 20rem !important;
  }
  .mb-sm-200,
  .my-sm-200 {
    margin-bottom: 20rem !important;
  }
  .ml-sm-200,
  .mx-sm-200 {
    margin-left: 20rem !important;
  }
  .m-sm-250 {
    margin: 25rem !important;
  }
  .mt-sm-250,
  .my-sm-250 {
    margin-top: 25rem !important;
  }
  .mr-sm-250,
  .mx-sm-250 {
    margin-right: 25rem !important;
  }
  .mb-sm-250,
  .my-sm-250 {
    margin-bottom: 25rem !important;
  }
  .ml-sm-250,
  .mx-sm-250 {
    margin-left: 25rem !important;
  }
  .m-sm-300 {
    margin: 30rem !important;
  }
  .mt-sm-300,
  .my-sm-300 {
    margin-top: 30rem !important;
  }
  .mr-sm-300,
  .mx-sm-300 {
    margin-right: 30rem !important;
  }
  .mb-sm-300,
  .my-sm-300 {
    margin-bottom: 30rem !important;
  }
  .ml-sm-300,
  .mx-sm-300 {
    margin-left: 30rem !important;
  }
  .m-sm-400 {
    margin: 40rem !important;
  }
  .mt-sm-400,
  .my-sm-400 {
    margin-top: 40rem !important;
  }
  .mr-sm-400,
  .mx-sm-400 {
    margin-right: 40rem !important;
  }
  .mb-sm-400,
  .my-sm-400 {
    margin-bottom: 40rem !important;
  }
  .ml-sm-400,
  .mx-sm-400 {
    margin-left: 40rem !important;
  }
  .m-sm-410 {
    margin: 41rem !important;
  }
  .mt-sm-410,
  .my-sm-410 {
    margin-top: 41rem !important;
  }
  .mr-sm-410,
  .mx-sm-410 {
    margin-right: 41rem !important;
  }
  .mb-sm-410,
  .my-sm-410 {
    margin-bottom: 41rem !important;
  }
  .ml-sm-410,
  .mx-sm-410 {
    margin-left: 41rem !important;
  }
  .m-sm-450 {
    margin: 45rem !important;
  }
  .mt-sm-450,
  .my-sm-450 {
    margin-top: 45rem !important;
  }
  .mr-sm-450,
  .mx-sm-450 {
    margin-right: 45rem !important;
  }
  .mb-sm-450,
  .my-sm-450 {
    margin-bottom: 45rem !important;
  }
  .ml-sm-450,
  .mx-sm-450 {
    margin-left: 45rem !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: 0.1rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.1rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.1rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.1rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.1rem !important;
  }
  .p-sm-2 {
    padding: 0.2rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.2rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.2rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.2rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.2rem !important;
  }
  .p-sm-3 {
    padding: 0.3rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 0.3rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 0.3rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 0.3rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 0.3rem !important;
  }
  .p-sm-4 {
    padding: 0.4rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 0.4rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 0.4rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 0.4rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 0.4rem !important;
  }
  .p-sm-5 {
    padding: 0.5rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 0.5rem !important;
  }
  .p-sm-6 {
    padding: 0.6rem !important;
  }
  .pt-sm-6,
  .py-sm-6 {
    padding-top: 0.6rem !important;
  }
  .pr-sm-6,
  .px-sm-6 {
    padding-right: 0.6rem !important;
  }
  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 0.6rem !important;
  }
  .pl-sm-6,
  .px-sm-6 {
    padding-left: 0.6rem !important;
  }
  .p-sm-7 {
    padding: 0.7rem !important;
  }
  .pt-sm-7,
  .py-sm-7 {
    padding-top: 0.7rem !important;
  }
  .pr-sm-7,
  .px-sm-7 {
    padding-right: 0.7rem !important;
  }
  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 0.7rem !important;
  }
  .pl-sm-7,
  .px-sm-7 {
    padding-left: 0.7rem !important;
  }
  .p-sm-8 {
    padding: 0.8rem !important;
  }
  .pt-sm-8,
  .py-sm-8 {
    padding-top: 0.8rem !important;
  }
  .pr-sm-8,
  .px-sm-8 {
    padding-right: 0.8rem !important;
  }
  .pb-sm-8,
  .py-sm-8 {
    padding-bottom: 0.8rem !important;
  }
  .pl-sm-8,
  .px-sm-8 {
    padding-left: 0.8rem !important;
  }
  .p-sm-9 {
    padding: 0.9rem !important;
  }
  .pt-sm-9,
  .py-sm-9 {
    padding-top: 0.9rem !important;
  }
  .pr-sm-9,
  .px-sm-9 {
    padding-right: 0.9rem !important;
  }
  .pb-sm-9,
  .py-sm-9 {
    padding-bottom: 0.9rem !important;
  }
  .pl-sm-9,
  .px-sm-9 {
    padding-left: 0.9rem !important;
  }
  .p-sm-10 {
    padding: 1rem !important;
  }
  .pt-sm-10,
  .py-sm-10 {
    padding-top: 1rem !important;
  }
  .pr-sm-10,
  .px-sm-10 {
    padding-right: 1rem !important;
  }
  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-10,
  .px-sm-10 {
    padding-left: 1rem !important;
  }
  .p-sm-11 {
    padding: 1.1rem !important;
  }
  .pt-sm-11,
  .py-sm-11 {
    padding-top: 1.1rem !important;
  }
  .pr-sm-11,
  .px-sm-11 {
    padding-right: 1.1rem !important;
  }
  .pb-sm-11,
  .py-sm-11 {
    padding-bottom: 1.1rem !important;
  }
  .pl-sm-11,
  .px-sm-11 {
    padding-left: 1.1rem !important;
  }
  .p-sm-12 {
    padding: 1.2rem !important;
  }
  .pt-sm-12,
  .py-sm-12 {
    padding-top: 1.2rem !important;
  }
  .pr-sm-12,
  .px-sm-12 {
    padding-right: 1.2rem !important;
  }
  .pb-sm-12,
  .py-sm-12 {
    padding-bottom: 1.2rem !important;
  }
  .pl-sm-12,
  .px-sm-12 {
    padding-left: 1.2rem !important;
  }
  .p-sm-13 {
    padding: 1.3rem !important;
  }
  .pt-sm-13,
  .py-sm-13 {
    padding-top: 1.3rem !important;
  }
  .pr-sm-13,
  .px-sm-13 {
    padding-right: 1.3rem !important;
  }
  .pb-sm-13,
  .py-sm-13 {
    padding-bottom: 1.3rem !important;
  }
  .pl-sm-13,
  .px-sm-13 {
    padding-left: 1.3rem !important;
  }
  .p-sm-14 {
    padding: 1.4rem !important;
  }
  .pt-sm-14,
  .py-sm-14 {
    padding-top: 1.4rem !important;
  }
  .pr-sm-14,
  .px-sm-14 {
    padding-right: 1.4rem !important;
  }
  .pb-sm-14,
  .py-sm-14 {
    padding-bottom: 1.4rem !important;
  }
  .pl-sm-14,
  .px-sm-14 {
    padding-left: 1.4rem !important;
  }
  .p-sm-15 {
    padding: 1.5rem !important;
  }
  .pt-sm-15,
  .py-sm-15 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-15,
  .px-sm-15 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-15,
  .py-sm-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-15,
  .px-sm-15 {
    padding-left: 1.5rem !important;
  }
  .p-sm-16 {
    padding: 1.6rem !important;
  }
  .pt-sm-16,
  .py-sm-16 {
    padding-top: 1.6rem !important;
  }
  .pr-sm-16,
  .px-sm-16 {
    padding-right: 1.6rem !important;
  }
  .pb-sm-16,
  .py-sm-16 {
    padding-bottom: 1.6rem !important;
  }
  .pl-sm-16,
  .px-sm-16 {
    padding-left: 1.6rem !important;
  }
  .p-sm-17 {
    padding: 1.7rem !important;
  }
  .pt-sm-17,
  .py-sm-17 {
    padding-top: 1.7rem !important;
  }
  .pr-sm-17,
  .px-sm-17 {
    padding-right: 1.7rem !important;
  }
  .pb-sm-17,
  .py-sm-17 {
    padding-bottom: 1.7rem !important;
  }
  .pl-sm-17,
  .px-sm-17 {
    padding-left: 1.7rem !important;
  }
  .p-sm-18 {
    padding: 1.8rem !important;
  }
  .pt-sm-18,
  .py-sm-18 {
    padding-top: 1.8rem !important;
  }
  .pr-sm-18,
  .px-sm-18 {
    padding-right: 1.8rem !important;
  }
  .pb-sm-18,
  .py-sm-18 {
    padding-bottom: 1.8rem !important;
  }
  .pl-sm-18,
  .px-sm-18 {
    padding-left: 1.8rem !important;
  }
  .p-sm-19 {
    padding: 1.9rem !important;
  }
  .pt-sm-19,
  .py-sm-19 {
    padding-top: 1.9rem !important;
  }
  .pr-sm-19,
  .px-sm-19 {
    padding-right: 1.9rem !important;
  }
  .pb-sm-19,
  .py-sm-19 {
    padding-bottom: 1.9rem !important;
  }
  .pl-sm-19,
  .px-sm-19 {
    padding-left: 1.9rem !important;
  }
  .p-sm-20 {
    padding: 2rem !important;
  }
  .pt-sm-20,
  .py-sm-20 {
    padding-top: 2rem !important;
  }
  .pr-sm-20,
  .px-sm-20 {
    padding-right: 2rem !important;
  }
  .pb-sm-20,
  .py-sm-20 {
    padding-bottom: 2rem !important;
  }
  .pl-sm-20,
  .px-sm-20 {
    padding-left: 2rem !important;
  }
  .p-sm-25 {
    padding: 2.5rem !important;
  }
  .pt-sm-25,
  .py-sm-25 {
    padding-top: 2.5rem !important;
  }
  .pr-sm-25,
  .px-sm-25 {
    padding-right: 2.5rem !important;
  }
  .pb-sm-25,
  .py-sm-25 {
    padding-bottom: 2.5rem !important;
  }
  .pl-sm-25,
  .px-sm-25 {
    padding-left: 2.5rem !important;
  }
  .p-sm-30 {
    padding: 3rem !important;
  }
  .pt-sm-30,
  .py-sm-30 {
    padding-top: 3rem !important;
  }
  .pr-sm-30,
  .px-sm-30 {
    padding-right: 3rem !important;
  }
  .pb-sm-30,
  .py-sm-30 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-30,
  .px-sm-30 {
    padding-left: 3rem !important;
  }
  .p-sm-35 {
    padding: 3.5rem !important;
  }
  .pt-sm-35,
  .py-sm-35 {
    padding-top: 3.5rem !important;
  }
  .pr-sm-35,
  .px-sm-35 {
    padding-right: 3.5rem !important;
  }
  .pb-sm-35,
  .py-sm-35 {
    padding-bottom: 3.5rem !important;
  }
  .pl-sm-35,
  .px-sm-35 {
    padding-left: 3.5rem !important;
  }
  .p-sm-40 {
    padding: 4rem !important;
  }
  .pt-sm-40,
  .py-sm-40 {
    padding-top: 4rem !important;
  }
  .pr-sm-40,
  .px-sm-40 {
    padding-right: 4rem !important;
  }
  .pb-sm-40,
  .py-sm-40 {
    padding-bottom: 4rem !important;
  }
  .pl-sm-40,
  .px-sm-40 {
    padding-left: 4rem !important;
  }
  .p-sm-45 {
    padding: 4.5rem !important;
  }
  .pt-sm-45,
  .py-sm-45 {
    padding-top: 4.5rem !important;
  }
  .pr-sm-45,
  .px-sm-45 {
    padding-right: 4.5rem !important;
  }
  .pb-sm-45,
  .py-sm-45 {
    padding-bottom: 4.5rem !important;
  }
  .pl-sm-45,
  .px-sm-45 {
    padding-left: 4.5rem !important;
  }
  .p-sm-50 {
    padding: 5rem !important;
  }
  .pt-sm-50,
  .py-sm-50 {
    padding-top: 5rem !important;
  }
  .pr-sm-50,
  .px-sm-50 {
    padding-right: 5rem !important;
  }
  .pb-sm-50,
  .py-sm-50 {
    padding-bottom: 5rem !important;
  }
  .pl-sm-50,
  .px-sm-50 {
    padding-left: 5rem !important;
  }
  .p-sm-55 {
    padding: 5.5rem !important;
  }
  .pt-sm-55,
  .py-sm-55 {
    padding-top: 5.5rem !important;
  }
  .pr-sm-55,
  .px-sm-55 {
    padding-right: 5.5rem !important;
  }
  .pb-sm-55,
  .py-sm-55 {
    padding-bottom: 5.5rem !important;
  }
  .pl-sm-55,
  .px-sm-55 {
    padding-left: 5.5rem !important;
  }
  .p-sm-60 {
    padding: 6rem !important;
  }
  .pt-sm-60,
  .py-sm-60 {
    padding-top: 6rem !important;
  }
  .pr-sm-60,
  .px-sm-60 {
    padding-right: 6rem !important;
  }
  .pb-sm-60,
  .py-sm-60 {
    padding-bottom: 6rem !important;
  }
  .pl-sm-60,
  .px-sm-60 {
    padding-left: 6rem !important;
  }
  .p-sm-65 {
    padding: 6.5rem !important;
  }
  .pt-sm-65,
  .py-sm-65 {
    padding-top: 6.5rem !important;
  }
  .pr-sm-65,
  .px-sm-65 {
    padding-right: 6.5rem !important;
  }
  .pb-sm-65,
  .py-sm-65 {
    padding-bottom: 6.5rem !important;
  }
  .pl-sm-65,
  .px-sm-65 {
    padding-left: 6.5rem !important;
  }
  .p-sm-70 {
    padding: 7rem !important;
  }
  .pt-sm-70,
  .py-sm-70 {
    padding-top: 7rem !important;
  }
  .pr-sm-70,
  .px-sm-70 {
    padding-right: 7rem !important;
  }
  .pb-sm-70,
  .py-sm-70 {
    padding-bottom: 7rem !important;
  }
  .pl-sm-70,
  .px-sm-70 {
    padding-left: 7rem !important;
  }
  .p-sm-75 {
    padding: 7.5rem !important;
  }
  .pt-sm-75,
  .py-sm-75 {
    padding-top: 7.5rem !important;
  }
  .pr-sm-75,
  .px-sm-75 {
    padding-right: 7.5rem !important;
  }
  .pb-sm-75,
  .py-sm-75 {
    padding-bottom: 7.5rem !important;
  }
  .pl-sm-75,
  .px-sm-75 {
    padding-left: 7.5rem !important;
  }
  .p-sm-80 {
    padding: 8rem !important;
  }
  .pt-sm-80,
  .py-sm-80 {
    padding-top: 8rem !important;
  }
  .pr-sm-80,
  .px-sm-80 {
    padding-right: 8rem !important;
  }
  .pb-sm-80,
  .py-sm-80 {
    padding-bottom: 8rem !important;
  }
  .pl-sm-80,
  .px-sm-80 {
    padding-left: 8rem !important;
  }
  .p-sm-85 {
    padding: 8.5rem !important;
  }
  .pt-sm-85,
  .py-sm-85 {
    padding-top: 8.5rem !important;
  }
  .pr-sm-85,
  .px-sm-85 {
    padding-right: 8.5rem !important;
  }
  .pb-sm-85,
  .py-sm-85 {
    padding-bottom: 8.5rem !important;
  }
  .pl-sm-85,
  .px-sm-85 {
    padding-left: 8.5rem !important;
  }
  .p-sm-90 {
    padding: 9rem !important;
  }
  .pt-sm-90,
  .py-sm-90 {
    padding-top: 9rem !important;
  }
  .pr-sm-90,
  .px-sm-90 {
    padding-right: 9rem !important;
  }
  .pb-sm-90,
  .py-sm-90 {
    padding-bottom: 9rem !important;
  }
  .pl-sm-90,
  .px-sm-90 {
    padding-left: 9rem !important;
  }
  .p-sm-95 {
    padding: 9.5rem !important;
  }
  .pt-sm-95,
  .py-sm-95 {
    padding-top: 9.5rem !important;
  }
  .pr-sm-95,
  .px-sm-95 {
    padding-right: 9.5rem !important;
  }
  .pb-sm-95,
  .py-sm-95 {
    padding-bottom: 9.5rem !important;
  }
  .pl-sm-95,
  .px-sm-95 {
    padding-left: 9.5rem !important;
  }
  .p-sm-100 {
    padding: 10rem !important;
  }
  .pt-sm-100,
  .py-sm-100 {
    padding-top: 10rem !important;
  }
  .pr-sm-100,
  .px-sm-100 {
    padding-right: 10rem !important;
  }
  .pb-sm-100,
  .py-sm-100 {
    padding-bottom: 10rem !important;
  }
  .pl-sm-100,
  .px-sm-100 {
    padding-left: 10rem !important;
  }
  .p-sm-130 {
    padding: 13rem !important;
  }
  .pt-sm-130,
  .py-sm-130 {
    padding-top: 13rem !important;
  }
  .pr-sm-130,
  .px-sm-130 {
    padding-right: 13rem !important;
  }
  .pb-sm-130,
  .py-sm-130 {
    padding-bottom: 13rem !important;
  }
  .pl-sm-130,
  .px-sm-130 {
    padding-left: 13rem !important;
  }
  .p-sm-140 {
    padding: 14rem !important;
  }
  .pt-sm-140,
  .py-sm-140 {
    padding-top: 14rem !important;
  }
  .pr-sm-140,
  .px-sm-140 {
    padding-right: 14rem !important;
  }
  .pb-sm-140,
  .py-sm-140 {
    padding-bottom: 14rem !important;
  }
  .pl-sm-140,
  .px-sm-140 {
    padding-left: 14rem !important;
  }
  .p-sm-150 {
    padding: 15rem !important;
  }
  .pt-sm-150,
  .py-sm-150 {
    padding-top: 15rem !important;
  }
  .pr-sm-150,
  .px-sm-150 {
    padding-right: 15rem !important;
  }
  .pb-sm-150,
  .py-sm-150 {
    padding-bottom: 15rem !important;
  }
  .pl-sm-150,
  .px-sm-150 {
    padding-left: 15rem !important;
  }
  .p-sm-200 {
    padding: 20rem !important;
  }
  .pt-sm-200,
  .py-sm-200 {
    padding-top: 20rem !important;
  }
  .pr-sm-200,
  .px-sm-200 {
    padding-right: 20rem !important;
  }
  .pb-sm-200,
  .py-sm-200 {
    padding-bottom: 20rem !important;
  }
  .pl-sm-200,
  .px-sm-200 {
    padding-left: 20rem !important;
  }
  .p-sm-250 {
    padding: 25rem !important;
  }
  .pt-sm-250,
  .py-sm-250 {
    padding-top: 25rem !important;
  }
  .pr-sm-250,
  .px-sm-250 {
    padding-right: 25rem !important;
  }
  .pb-sm-250,
  .py-sm-250 {
    padding-bottom: 25rem !important;
  }
  .pl-sm-250,
  .px-sm-250 {
    padding-left: 25rem !important;
  }
  .p-sm-300 {
    padding: 30rem !important;
  }
  .pt-sm-300,
  .py-sm-300 {
    padding-top: 30rem !important;
  }
  .pr-sm-300,
  .px-sm-300 {
    padding-right: 30rem !important;
  }
  .pb-sm-300,
  .py-sm-300 {
    padding-bottom: 30rem !important;
  }
  .pl-sm-300,
  .px-sm-300 {
    padding-left: 30rem !important;
  }
  .p-sm-400 {
    padding: 40rem !important;
  }
  .pt-sm-400,
  .py-sm-400 {
    padding-top: 40rem !important;
  }
  .pr-sm-400,
  .px-sm-400 {
    padding-right: 40rem !important;
  }
  .pb-sm-400,
  .py-sm-400 {
    padding-bottom: 40rem !important;
  }
  .pl-sm-400,
  .px-sm-400 {
    padding-left: 40rem !important;
  }
  .p-sm-410 {
    padding: 41rem !important;
  }
  .pt-sm-410,
  .py-sm-410 {
    padding-top: 41rem !important;
  }
  .pr-sm-410,
  .px-sm-410 {
    padding-right: 41rem !important;
  }
  .pb-sm-410,
  .py-sm-410 {
    padding-bottom: 41rem !important;
  }
  .pl-sm-410,
  .px-sm-410 {
    padding-left: 41rem !important;
  }
  .p-sm-450 {
    padding: 45rem !important;
  }
  .pt-sm-450,
  .py-sm-450 {
    padding-top: 45rem !important;
  }
  .pr-sm-450,
  .px-sm-450 {
    padding-right: 45rem !important;
  }
  .pb-sm-450,
  .py-sm-450 {
    padding-bottom: 45rem !important;
  }
  .pl-sm-450,
  .px-sm-450 {
    padding-left: 45rem !important;
  }
  .m-sm-n1 {
    margin: -0.1rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.1rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.1rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.1rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.1rem !important;
  }
  .m-sm-n2 {
    margin: -0.2rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.2rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.2rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.2rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.2rem !important;
  }
  .m-sm-n3 {
    margin: -0.3rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -0.3rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -0.3rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -0.3rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -0.3rem !important;
  }
  .m-sm-n4 {
    margin: -0.4rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -0.4rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -0.4rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -0.4rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -0.4rem !important;
  }
  .m-sm-n5 {
    margin: -0.5rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n6 {
    margin: -0.6rem !important;
  }
  .mt-sm-n6,
  .my-sm-n6 {
    margin-top: -0.6rem !important;
  }
  .mr-sm-n6,
  .mx-sm-n6 {
    margin-right: -0.6rem !important;
  }
  .mb-sm-n6,
  .my-sm-n6 {
    margin-bottom: -0.6rem !important;
  }
  .ml-sm-n6,
  .mx-sm-n6 {
    margin-left: -0.6rem !important;
  }
  .m-sm-n7 {
    margin: -0.7rem !important;
  }
  .mt-sm-n7,
  .my-sm-n7 {
    margin-top: -0.7rem !important;
  }
  .mr-sm-n7,
  .mx-sm-n7 {
    margin-right: -0.7rem !important;
  }
  .mb-sm-n7,
  .my-sm-n7 {
    margin-bottom: -0.7rem !important;
  }
  .ml-sm-n7,
  .mx-sm-n7 {
    margin-left: -0.7rem !important;
  }
  .m-sm-n8 {
    margin: -0.8rem !important;
  }
  .mt-sm-n8,
  .my-sm-n8 {
    margin-top: -0.8rem !important;
  }
  .mr-sm-n8,
  .mx-sm-n8 {
    margin-right: -0.8rem !important;
  }
  .mb-sm-n8,
  .my-sm-n8 {
    margin-bottom: -0.8rem !important;
  }
  .ml-sm-n8,
  .mx-sm-n8 {
    margin-left: -0.8rem !important;
  }
  .m-sm-n9 {
    margin: -0.9rem !important;
  }
  .mt-sm-n9,
  .my-sm-n9 {
    margin-top: -0.9rem !important;
  }
  .mr-sm-n9,
  .mx-sm-n9 {
    margin-right: -0.9rem !important;
  }
  .mb-sm-n9,
  .my-sm-n9 {
    margin-bottom: -0.9rem !important;
  }
  .ml-sm-n9,
  .mx-sm-n9 {
    margin-left: -0.9rem !important;
  }
  .m-sm-n10 {
    margin: -1rem !important;
  }
  .mt-sm-n10,
  .my-sm-n10 {
    margin-top: -1rem !important;
  }
  .mr-sm-n10,
  .mx-sm-n10 {
    margin-right: -1rem !important;
  }
  .mb-sm-n10,
  .my-sm-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n10,
  .mx-sm-n10 {
    margin-left: -1rem !important;
  }
  .m-sm-n11 {
    margin: -1.1rem !important;
  }
  .mt-sm-n11,
  .my-sm-n11 {
    margin-top: -1.1rem !important;
  }
  .mr-sm-n11,
  .mx-sm-n11 {
    margin-right: -1.1rem !important;
  }
  .mb-sm-n11,
  .my-sm-n11 {
    margin-bottom: -1.1rem !important;
  }
  .ml-sm-n11,
  .mx-sm-n11 {
    margin-left: -1.1rem !important;
  }
  .m-sm-n12 {
    margin: -1.2rem !important;
  }
  .mt-sm-n12,
  .my-sm-n12 {
    margin-top: -1.2rem !important;
  }
  .mr-sm-n12,
  .mx-sm-n12 {
    margin-right: -1.2rem !important;
  }
  .mb-sm-n12,
  .my-sm-n12 {
    margin-bottom: -1.2rem !important;
  }
  .ml-sm-n12,
  .mx-sm-n12 {
    margin-left: -1.2rem !important;
  }
  .m-sm-n13 {
    margin: -1.3rem !important;
  }
  .mt-sm-n13,
  .my-sm-n13 {
    margin-top: -1.3rem !important;
  }
  .mr-sm-n13,
  .mx-sm-n13 {
    margin-right: -1.3rem !important;
  }
  .mb-sm-n13,
  .my-sm-n13 {
    margin-bottom: -1.3rem !important;
  }
  .ml-sm-n13,
  .mx-sm-n13 {
    margin-left: -1.3rem !important;
  }
  .m-sm-n14 {
    margin: -1.4rem !important;
  }
  .mt-sm-n14,
  .my-sm-n14 {
    margin-top: -1.4rem !important;
  }
  .mr-sm-n14,
  .mx-sm-n14 {
    margin-right: -1.4rem !important;
  }
  .mb-sm-n14,
  .my-sm-n14 {
    margin-bottom: -1.4rem !important;
  }
  .ml-sm-n14,
  .mx-sm-n14 {
    margin-left: -1.4rem !important;
  }
  .m-sm-n15 {
    margin: -1.5rem !important;
  }
  .mt-sm-n15,
  .my-sm-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n15,
  .mx-sm-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n15,
  .my-sm-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n15,
  .mx-sm-n15 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n16 {
    margin: -1.6rem !important;
  }
  .mt-sm-n16,
  .my-sm-n16 {
    margin-top: -1.6rem !important;
  }
  .mr-sm-n16,
  .mx-sm-n16 {
    margin-right: -1.6rem !important;
  }
  .mb-sm-n16,
  .my-sm-n16 {
    margin-bottom: -1.6rem !important;
  }
  .ml-sm-n16,
  .mx-sm-n16 {
    margin-left: -1.6rem !important;
  }
  .m-sm-n17 {
    margin: -1.7rem !important;
  }
  .mt-sm-n17,
  .my-sm-n17 {
    margin-top: -1.7rem !important;
  }
  .mr-sm-n17,
  .mx-sm-n17 {
    margin-right: -1.7rem !important;
  }
  .mb-sm-n17,
  .my-sm-n17 {
    margin-bottom: -1.7rem !important;
  }
  .ml-sm-n17,
  .mx-sm-n17 {
    margin-left: -1.7rem !important;
  }
  .m-sm-n18 {
    margin: -1.8rem !important;
  }
  .mt-sm-n18,
  .my-sm-n18 {
    margin-top: -1.8rem !important;
  }
  .mr-sm-n18,
  .mx-sm-n18 {
    margin-right: -1.8rem !important;
  }
  .mb-sm-n18,
  .my-sm-n18 {
    margin-bottom: -1.8rem !important;
  }
  .ml-sm-n18,
  .mx-sm-n18 {
    margin-left: -1.8rem !important;
  }
  .m-sm-n19 {
    margin: -1.9rem !important;
  }
  .mt-sm-n19,
  .my-sm-n19 {
    margin-top: -1.9rem !important;
  }
  .mr-sm-n19,
  .mx-sm-n19 {
    margin-right: -1.9rem !important;
  }
  .mb-sm-n19,
  .my-sm-n19 {
    margin-bottom: -1.9rem !important;
  }
  .ml-sm-n19,
  .mx-sm-n19 {
    margin-left: -1.9rem !important;
  }
  .m-sm-n20 {
    margin: -2rem !important;
  }
  .mt-sm-n20,
  .my-sm-n20 {
    margin-top: -2rem !important;
  }
  .mr-sm-n20,
  .mx-sm-n20 {
    margin-right: -2rem !important;
  }
  .mb-sm-n20,
  .my-sm-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-sm-n20,
  .mx-sm-n20 {
    margin-left: -2rem !important;
  }
  .m-sm-n25 {
    margin: -2.5rem !important;
  }
  .mt-sm-n25,
  .my-sm-n25 {
    margin-top: -2.5rem !important;
  }
  .mr-sm-n25,
  .mx-sm-n25 {
    margin-right: -2.5rem !important;
  }
  .mb-sm-n25,
  .my-sm-n25 {
    margin-bottom: -2.5rem !important;
  }
  .ml-sm-n25,
  .mx-sm-n25 {
    margin-left: -2.5rem !important;
  }
  .m-sm-n30 {
    margin: -3rem !important;
  }
  .mt-sm-n30,
  .my-sm-n30 {
    margin-top: -3rem !important;
  }
  .mr-sm-n30,
  .mx-sm-n30 {
    margin-right: -3rem !important;
  }
  .mb-sm-n30,
  .my-sm-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n30,
  .mx-sm-n30 {
    margin-left: -3rem !important;
  }
  .m-sm-n35 {
    margin: -3.5rem !important;
  }
  .mt-sm-n35,
  .my-sm-n35 {
    margin-top: -3.5rem !important;
  }
  .mr-sm-n35,
  .mx-sm-n35 {
    margin-right: -3.5rem !important;
  }
  .mb-sm-n35,
  .my-sm-n35 {
    margin-bottom: -3.5rem !important;
  }
  .ml-sm-n35,
  .mx-sm-n35 {
    margin-left: -3.5rem !important;
  }
  .m-sm-n40 {
    margin: -4rem !important;
  }
  .mt-sm-n40,
  .my-sm-n40 {
    margin-top: -4rem !important;
  }
  .mr-sm-n40,
  .mx-sm-n40 {
    margin-right: -4rem !important;
  }
  .mb-sm-n40,
  .my-sm-n40 {
    margin-bottom: -4rem !important;
  }
  .ml-sm-n40,
  .mx-sm-n40 {
    margin-left: -4rem !important;
  }
  .m-sm-n45 {
    margin: -4.5rem !important;
  }
  .mt-sm-n45,
  .my-sm-n45 {
    margin-top: -4.5rem !important;
  }
  .mr-sm-n45,
  .mx-sm-n45 {
    margin-right: -4.5rem !important;
  }
  .mb-sm-n45,
  .my-sm-n45 {
    margin-bottom: -4.5rem !important;
  }
  .ml-sm-n45,
  .mx-sm-n45 {
    margin-left: -4.5rem !important;
  }
  .m-sm-n50 {
    margin: -5rem !important;
  }
  .mt-sm-n50,
  .my-sm-n50 {
    margin-top: -5rem !important;
  }
  .mr-sm-n50,
  .mx-sm-n50 {
    margin-right: -5rem !important;
  }
  .mb-sm-n50,
  .my-sm-n50 {
    margin-bottom: -5rem !important;
  }
  .ml-sm-n50,
  .mx-sm-n50 {
    margin-left: -5rem !important;
  }
  .m-sm-n55 {
    margin: -5.5rem !important;
  }
  .mt-sm-n55,
  .my-sm-n55 {
    margin-top: -5.5rem !important;
  }
  .mr-sm-n55,
  .mx-sm-n55 {
    margin-right: -5.5rem !important;
  }
  .mb-sm-n55,
  .my-sm-n55 {
    margin-bottom: -5.5rem !important;
  }
  .ml-sm-n55,
  .mx-sm-n55 {
    margin-left: -5.5rem !important;
  }
  .m-sm-n60 {
    margin: -6rem !important;
  }
  .mt-sm-n60,
  .my-sm-n60 {
    margin-top: -6rem !important;
  }
  .mr-sm-n60,
  .mx-sm-n60 {
    margin-right: -6rem !important;
  }
  .mb-sm-n60,
  .my-sm-n60 {
    margin-bottom: -6rem !important;
  }
  .ml-sm-n60,
  .mx-sm-n60 {
    margin-left: -6rem !important;
  }
  .m-sm-n65 {
    margin: -6.5rem !important;
  }
  .mt-sm-n65,
  .my-sm-n65 {
    margin-top: -6.5rem !important;
  }
  .mr-sm-n65,
  .mx-sm-n65 {
    margin-right: -6.5rem !important;
  }
  .mb-sm-n65,
  .my-sm-n65 {
    margin-bottom: -6.5rem !important;
  }
  .ml-sm-n65,
  .mx-sm-n65 {
    margin-left: -6.5rem !important;
  }
  .m-sm-n70 {
    margin: -7rem !important;
  }
  .mt-sm-n70,
  .my-sm-n70 {
    margin-top: -7rem !important;
  }
  .mr-sm-n70,
  .mx-sm-n70 {
    margin-right: -7rem !important;
  }
  .mb-sm-n70,
  .my-sm-n70 {
    margin-bottom: -7rem !important;
  }
  .ml-sm-n70,
  .mx-sm-n70 {
    margin-left: -7rem !important;
  }
  .m-sm-n75 {
    margin: -7.5rem !important;
  }
  .mt-sm-n75,
  .my-sm-n75 {
    margin-top: -7.5rem !important;
  }
  .mr-sm-n75,
  .mx-sm-n75 {
    margin-right: -7.5rem !important;
  }
  .mb-sm-n75,
  .my-sm-n75 {
    margin-bottom: -7.5rem !important;
  }
  .ml-sm-n75,
  .mx-sm-n75 {
    margin-left: -7.5rem !important;
  }
  .m-sm-n80 {
    margin: -8rem !important;
  }
  .mt-sm-n80,
  .my-sm-n80 {
    margin-top: -8rem !important;
  }
  .mr-sm-n80,
  .mx-sm-n80 {
    margin-right: -8rem !important;
  }
  .mb-sm-n80,
  .my-sm-n80 {
    margin-bottom: -8rem !important;
  }
  .ml-sm-n80,
  .mx-sm-n80 {
    margin-left: -8rem !important;
  }
  .m-sm-n85 {
    margin: -8.5rem !important;
  }
  .mt-sm-n85,
  .my-sm-n85 {
    margin-top: -8.5rem !important;
  }
  .mr-sm-n85,
  .mx-sm-n85 {
    margin-right: -8.5rem !important;
  }
  .mb-sm-n85,
  .my-sm-n85 {
    margin-bottom: -8.5rem !important;
  }
  .ml-sm-n85,
  .mx-sm-n85 {
    margin-left: -8.5rem !important;
  }
  .m-sm-n90 {
    margin: -9rem !important;
  }
  .mt-sm-n90,
  .my-sm-n90 {
    margin-top: -9rem !important;
  }
  .mr-sm-n90,
  .mx-sm-n90 {
    margin-right: -9rem !important;
  }
  .mb-sm-n90,
  .my-sm-n90 {
    margin-bottom: -9rem !important;
  }
  .ml-sm-n90,
  .mx-sm-n90 {
    margin-left: -9rem !important;
  }
  .m-sm-n95 {
    margin: -9.5rem !important;
  }
  .mt-sm-n95,
  .my-sm-n95 {
    margin-top: -9.5rem !important;
  }
  .mr-sm-n95,
  .mx-sm-n95 {
    margin-right: -9.5rem !important;
  }
  .mb-sm-n95,
  .my-sm-n95 {
    margin-bottom: -9.5rem !important;
  }
  .ml-sm-n95,
  .mx-sm-n95 {
    margin-left: -9.5rem !important;
  }
  .m-sm-n100 {
    margin: -10rem !important;
  }
  .mt-sm-n100,
  .my-sm-n100 {
    margin-top: -10rem !important;
  }
  .mr-sm-n100,
  .mx-sm-n100 {
    margin-right: -10rem !important;
  }
  .mb-sm-n100,
  .my-sm-n100 {
    margin-bottom: -10rem !important;
  }
  .ml-sm-n100,
  .mx-sm-n100 {
    margin-left: -10rem !important;
  }
  .m-sm-n130 {
    margin: -13rem !important;
  }
  .mt-sm-n130,
  .my-sm-n130 {
    margin-top: -13rem !important;
  }
  .mr-sm-n130,
  .mx-sm-n130 {
    margin-right: -13rem !important;
  }
  .mb-sm-n130,
  .my-sm-n130 {
    margin-bottom: -13rem !important;
  }
  .ml-sm-n130,
  .mx-sm-n130 {
    margin-left: -13rem !important;
  }
  .m-sm-n140 {
    margin: -14rem !important;
  }
  .mt-sm-n140,
  .my-sm-n140 {
    margin-top: -14rem !important;
  }
  .mr-sm-n140,
  .mx-sm-n140 {
    margin-right: -14rem !important;
  }
  .mb-sm-n140,
  .my-sm-n140 {
    margin-bottom: -14rem !important;
  }
  .ml-sm-n140,
  .mx-sm-n140 {
    margin-left: -14rem !important;
  }
  .m-sm-n150 {
    margin: -15rem !important;
  }
  .mt-sm-n150,
  .my-sm-n150 {
    margin-top: -15rem !important;
  }
  .mr-sm-n150,
  .mx-sm-n150 {
    margin-right: -15rem !important;
  }
  .mb-sm-n150,
  .my-sm-n150 {
    margin-bottom: -15rem !important;
  }
  .ml-sm-n150,
  .mx-sm-n150 {
    margin-left: -15rem !important;
  }
  .m-sm-n200 {
    margin: -20rem !important;
  }
  .mt-sm-n200,
  .my-sm-n200 {
    margin-top: -20rem !important;
  }
  .mr-sm-n200,
  .mx-sm-n200 {
    margin-right: -20rem !important;
  }
  .mb-sm-n200,
  .my-sm-n200 {
    margin-bottom: -20rem !important;
  }
  .ml-sm-n200,
  .mx-sm-n200 {
    margin-left: -20rem !important;
  }
  .m-sm-n250 {
    margin: -25rem !important;
  }
  .mt-sm-n250,
  .my-sm-n250 {
    margin-top: -25rem !important;
  }
  .mr-sm-n250,
  .mx-sm-n250 {
    margin-right: -25rem !important;
  }
  .mb-sm-n250,
  .my-sm-n250 {
    margin-bottom: -25rem !important;
  }
  .ml-sm-n250,
  .mx-sm-n250 {
    margin-left: -25rem !important;
  }
  .m-sm-n300 {
    margin: -30rem !important;
  }
  .mt-sm-n300,
  .my-sm-n300 {
    margin-top: -30rem !important;
  }
  .mr-sm-n300,
  .mx-sm-n300 {
    margin-right: -30rem !important;
  }
  .mb-sm-n300,
  .my-sm-n300 {
    margin-bottom: -30rem !important;
  }
  .ml-sm-n300,
  .mx-sm-n300 {
    margin-left: -30rem !important;
  }
  .m-sm-n400 {
    margin: -40rem !important;
  }
  .mt-sm-n400,
  .my-sm-n400 {
    margin-top: -40rem !important;
  }
  .mr-sm-n400,
  .mx-sm-n400 {
    margin-right: -40rem !important;
  }
  .mb-sm-n400,
  .my-sm-n400 {
    margin-bottom: -40rem !important;
  }
  .ml-sm-n400,
  .mx-sm-n400 {
    margin-left: -40rem !important;
  }
  .m-sm-n410 {
    margin: -41rem !important;
  }
  .mt-sm-n410,
  .my-sm-n410 {
    margin-top: -41rem !important;
  }
  .mr-sm-n410,
  .mx-sm-n410 {
    margin-right: -41rem !important;
  }
  .mb-sm-n410,
  .my-sm-n410 {
    margin-bottom: -41rem !important;
  }
  .ml-sm-n410,
  .mx-sm-n410 {
    margin-left: -41rem !important;
  }
  .m-sm-n450 {
    margin: -45rem !important;
  }
  .mt-sm-n450,
  .my-sm-n450 {
    margin-top: -45rem !important;
  }
  .mr-sm-n450,
  .mx-sm-n450 {
    margin-right: -45rem !important;
  }
  .mb-sm-n450,
  .my-sm-n450 {
    margin-bottom: -45rem !important;
  }
  .ml-sm-n450,
  .mx-sm-n450 {
    margin-left: -45rem !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: 0.1rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.1rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.1rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.1rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.1rem !important;
  }
  .m-md-2 {
    margin: 0.2rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.2rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.2rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.2rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.2rem !important;
  }
  .m-md-3 {
    margin: 0.3rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 0.3rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 0.3rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 0.3rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 0.3rem !important;
  }
  .m-md-4 {
    margin: 0.4rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 0.4rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 0.4rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 0.4rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 0.4rem !important;
  }
  .m-md-5 {
    margin: 0.5rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 0.5rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 0.5rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 0.5rem !important;
  }
  .m-md-6 {
    margin: 0.6rem !important;
  }
  .mt-md-6,
  .my-md-6 {
    margin-top: 0.6rem !important;
  }
  .mr-md-6,
  .mx-md-6 {
    margin-right: 0.6rem !important;
  }
  .mb-md-6,
  .my-md-6 {
    margin-bottom: 0.6rem !important;
  }
  .ml-md-6,
  .mx-md-6 {
    margin-left: 0.6rem !important;
  }
  .m-md-7 {
    margin: 0.7rem !important;
  }
  .mt-md-7,
  .my-md-7 {
    margin-top: 0.7rem !important;
  }
  .mr-md-7,
  .mx-md-7 {
    margin-right: 0.7rem !important;
  }
  .mb-md-7,
  .my-md-7 {
    margin-bottom: 0.7rem !important;
  }
  .ml-md-7,
  .mx-md-7 {
    margin-left: 0.7rem !important;
  }
  .m-md-8 {
    margin: 0.8rem !important;
  }
  .mt-md-8,
  .my-md-8 {
    margin-top: 0.8rem !important;
  }
  .mr-md-8,
  .mx-md-8 {
    margin-right: 0.8rem !important;
  }
  .mb-md-8,
  .my-md-8 {
    margin-bottom: 0.8rem !important;
  }
  .ml-md-8,
  .mx-md-8 {
    margin-left: 0.8rem !important;
  }
  .m-md-9 {
    margin: 0.9rem !important;
  }
  .mt-md-9,
  .my-md-9 {
    margin-top: 0.9rem !important;
  }
  .mr-md-9,
  .mx-md-9 {
    margin-right: 0.9rem !important;
  }
  .mb-md-9,
  .my-md-9 {
    margin-bottom: 0.9rem !important;
  }
  .ml-md-9,
  .mx-md-9 {
    margin-left: 0.9rem !important;
  }
  .m-md-10 {
    margin: 1rem !important;
  }
  .mt-md-10,
  .my-md-10 {
    margin-top: 1rem !important;
  }
  .mr-md-10,
  .mx-md-10 {
    margin-right: 1rem !important;
  }
  .mb-md-10,
  .my-md-10 {
    margin-bottom: 1rem !important;
  }
  .ml-md-10,
  .mx-md-10 {
    margin-left: 1rem !important;
  }
  .m-md-11 {
    margin: 1.1rem !important;
  }
  .mt-md-11,
  .my-md-11 {
    margin-top: 1.1rem !important;
  }
  .mr-md-11,
  .mx-md-11 {
    margin-right: 1.1rem !important;
  }
  .mb-md-11,
  .my-md-11 {
    margin-bottom: 1.1rem !important;
  }
  .ml-md-11,
  .mx-md-11 {
    margin-left: 1.1rem !important;
  }
  .m-md-12 {
    margin: 1.2rem !important;
  }
  .mt-md-12,
  .my-md-12 {
    margin-top: 1.2rem !important;
  }
  .mr-md-12,
  .mx-md-12 {
    margin-right: 1.2rem !important;
  }
  .mb-md-12,
  .my-md-12 {
    margin-bottom: 1.2rem !important;
  }
  .ml-md-12,
  .mx-md-12 {
    margin-left: 1.2rem !important;
  }
  .m-md-13 {
    margin: 1.3rem !important;
  }
  .mt-md-13,
  .my-md-13 {
    margin-top: 1.3rem !important;
  }
  .mr-md-13,
  .mx-md-13 {
    margin-right: 1.3rem !important;
  }
  .mb-md-13,
  .my-md-13 {
    margin-bottom: 1.3rem !important;
  }
  .ml-md-13,
  .mx-md-13 {
    margin-left: 1.3rem !important;
  }
  .m-md-14 {
    margin: 1.4rem !important;
  }
  .mt-md-14,
  .my-md-14 {
    margin-top: 1.4rem !important;
  }
  .mr-md-14,
  .mx-md-14 {
    margin-right: 1.4rem !important;
  }
  .mb-md-14,
  .my-md-14 {
    margin-bottom: 1.4rem !important;
  }
  .ml-md-14,
  .mx-md-14 {
    margin-left: 1.4rem !important;
  }
  .m-md-15 {
    margin: 1.5rem !important;
  }
  .mt-md-15,
  .my-md-15 {
    margin-top: 1.5rem !important;
  }
  .mr-md-15,
  .mx-md-15 {
    margin-right: 1.5rem !important;
  }
  .mb-md-15,
  .my-md-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-15,
  .mx-md-15 {
    margin-left: 1.5rem !important;
  }
  .m-md-16 {
    margin: 1.6rem !important;
  }
  .mt-md-16,
  .my-md-16 {
    margin-top: 1.6rem !important;
  }
  .mr-md-16,
  .mx-md-16 {
    margin-right: 1.6rem !important;
  }
  .mb-md-16,
  .my-md-16 {
    margin-bottom: 1.6rem !important;
  }
  .ml-md-16,
  .mx-md-16 {
    margin-left: 1.6rem !important;
  }
  .m-md-17 {
    margin: 1.7rem !important;
  }
  .mt-md-17,
  .my-md-17 {
    margin-top: 1.7rem !important;
  }
  .mr-md-17,
  .mx-md-17 {
    margin-right: 1.7rem !important;
  }
  .mb-md-17,
  .my-md-17 {
    margin-bottom: 1.7rem !important;
  }
  .ml-md-17,
  .mx-md-17 {
    margin-left: 1.7rem !important;
  }
  .m-md-18 {
    margin: 1.8rem !important;
  }
  .mt-md-18,
  .my-md-18 {
    margin-top: 1.8rem !important;
  }
  .mr-md-18,
  .mx-md-18 {
    margin-right: 1.8rem !important;
  }
  .mb-md-18,
  .my-md-18 {
    margin-bottom: 1.8rem !important;
  }
  .ml-md-18,
  .mx-md-18 {
    margin-left: 1.8rem !important;
  }
  .m-md-19 {
    margin: 1.9rem !important;
  }
  .mt-md-19,
  .my-md-19 {
    margin-top: 1.9rem !important;
  }
  .mr-md-19,
  .mx-md-19 {
    margin-right: 1.9rem !important;
  }
  .mb-md-19,
  .my-md-19 {
    margin-bottom: 1.9rem !important;
  }
  .ml-md-19,
  .mx-md-19 {
    margin-left: 1.9rem !important;
  }
  .m-md-20 {
    margin: 2rem !important;
  }
  .mt-md-20,
  .my-md-20 {
    margin-top: 2rem !important;
  }
  .mr-md-20,
  .mx-md-20 {
    margin-right: 2rem !important;
  }
  .mb-md-20,
  .my-md-20 {
    margin-bottom: 2rem !important;
  }
  .ml-md-20,
  .mx-md-20 {
    margin-left: 2rem !important;
  }
  .m-md-25 {
    margin: 2.5rem !important;
  }
  .mt-md-25,
  .my-md-25 {
    margin-top: 2.5rem !important;
  }
  .mr-md-25,
  .mx-md-25 {
    margin-right: 2.5rem !important;
  }
  .mb-md-25,
  .my-md-25 {
    margin-bottom: 2.5rem !important;
  }
  .ml-md-25,
  .mx-md-25 {
    margin-left: 2.5rem !important;
  }
  .m-md-30 {
    margin: 3rem !important;
  }
  .mt-md-30,
  .my-md-30 {
    margin-top: 3rem !important;
  }
  .mr-md-30,
  .mx-md-30 {
    margin-right: 3rem !important;
  }
  .mb-md-30,
  .my-md-30 {
    margin-bottom: 3rem !important;
  }
  .ml-md-30,
  .mx-md-30 {
    margin-left: 3rem !important;
  }
  .m-md-35 {
    margin: 3.5rem !important;
  }
  .mt-md-35,
  .my-md-35 {
    margin-top: 3.5rem !important;
  }
  .mr-md-35,
  .mx-md-35 {
    margin-right: 3.5rem !important;
  }
  .mb-md-35,
  .my-md-35 {
    margin-bottom: 3.5rem !important;
  }
  .ml-md-35,
  .mx-md-35 {
    margin-left: 3.5rem !important;
  }
  .m-md-40 {
    margin: 4rem !important;
  }
  .mt-md-40,
  .my-md-40 {
    margin-top: 4rem !important;
  }
  .mr-md-40,
  .mx-md-40 {
    margin-right: 4rem !important;
  }
  .mb-md-40,
  .my-md-40 {
    margin-bottom: 4rem !important;
  }
  .ml-md-40,
  .mx-md-40 {
    margin-left: 4rem !important;
  }
  .m-md-45 {
    margin: 4.5rem !important;
  }
  .mt-md-45,
  .my-md-45 {
    margin-top: 4.5rem !important;
  }
  .mr-md-45,
  .mx-md-45 {
    margin-right: 4.5rem !important;
  }
  .mb-md-45,
  .my-md-45 {
    margin-bottom: 4.5rem !important;
  }
  .ml-md-45,
  .mx-md-45 {
    margin-left: 4.5rem !important;
  }
  .m-md-50 {
    margin: 5rem !important;
  }
  .mt-md-50,
  .my-md-50 {
    margin-top: 5rem !important;
  }
  .mr-md-50,
  .mx-md-50 {
    margin-right: 5rem !important;
  }
  .mb-md-50,
  .my-md-50 {
    margin-bottom: 5rem !important;
  }
  .ml-md-50,
  .mx-md-50 {
    margin-left: 5rem !important;
  }
  .m-md-55 {
    margin: 5.5rem !important;
  }
  .mt-md-55,
  .my-md-55 {
    margin-top: 5.5rem !important;
  }
  .mr-md-55,
  .mx-md-55 {
    margin-right: 5.5rem !important;
  }
  .mb-md-55,
  .my-md-55 {
    margin-bottom: 5.5rem !important;
  }
  .ml-md-55,
  .mx-md-55 {
    margin-left: 5.5rem !important;
  }
  .m-md-60 {
    margin: 6rem !important;
  }
  .mt-md-60,
  .my-md-60 {
    margin-top: 6rem !important;
  }
  .mr-md-60,
  .mx-md-60 {
    margin-right: 6rem !important;
  }
  .mb-md-60,
  .my-md-60 {
    margin-bottom: 6rem !important;
  }
  .ml-md-60,
  .mx-md-60 {
    margin-left: 6rem !important;
  }
  .m-md-65 {
    margin: 6.5rem !important;
  }
  .mt-md-65,
  .my-md-65 {
    margin-top: 6.5rem !important;
  }
  .mr-md-65,
  .mx-md-65 {
    margin-right: 6.5rem !important;
  }
  .mb-md-65,
  .my-md-65 {
    margin-bottom: 6.5rem !important;
  }
  .ml-md-65,
  .mx-md-65 {
    margin-left: 6.5rem !important;
  }
  .m-md-70 {
    margin: 7rem !important;
  }
  .mt-md-70,
  .my-md-70 {
    margin-top: 7rem !important;
  }
  .mr-md-70,
  .mx-md-70 {
    margin-right: 7rem !important;
  }
  .mb-md-70,
  .my-md-70 {
    margin-bottom: 7rem !important;
  }
  .ml-md-70,
  .mx-md-70 {
    margin-left: 7rem !important;
  }
  .m-md-75 {
    margin: 7.5rem !important;
  }
  .mt-md-75,
  .my-md-75 {
    margin-top: 7.5rem !important;
  }
  .mr-md-75,
  .mx-md-75 {
    margin-right: 7.5rem !important;
  }
  .mb-md-75,
  .my-md-75 {
    margin-bottom: 7.5rem !important;
  }
  .ml-md-75,
  .mx-md-75 {
    margin-left: 7.5rem !important;
  }
  .m-md-80 {
    margin: 8rem !important;
  }
  .mt-md-80,
  .my-md-80 {
    margin-top: 8rem !important;
  }
  .mr-md-80,
  .mx-md-80 {
    margin-right: 8rem !important;
  }
  .mb-md-80,
  .my-md-80 {
    margin-bottom: 8rem !important;
  }
  .ml-md-80,
  .mx-md-80 {
    margin-left: 8rem !important;
  }
  .m-md-85 {
    margin: 8.5rem !important;
  }
  .mt-md-85,
  .my-md-85 {
    margin-top: 8.5rem !important;
  }
  .mr-md-85,
  .mx-md-85 {
    margin-right: 8.5rem !important;
  }
  .mb-md-85,
  .my-md-85 {
    margin-bottom: 8.5rem !important;
  }
  .ml-md-85,
  .mx-md-85 {
    margin-left: 8.5rem !important;
  }
  .m-md-90 {
    margin: 9rem !important;
  }
  .mt-md-90,
  .my-md-90 {
    margin-top: 9rem !important;
  }
  .mr-md-90,
  .mx-md-90 {
    margin-right: 9rem !important;
  }
  .mb-md-90,
  .my-md-90 {
    margin-bottom: 9rem !important;
  }
  .ml-md-90,
  .mx-md-90 {
    margin-left: 9rem !important;
  }
  .m-md-95 {
    margin: 9.5rem !important;
  }
  .mt-md-95,
  .my-md-95 {
    margin-top: 9.5rem !important;
  }
  .mr-md-95,
  .mx-md-95 {
    margin-right: 9.5rem !important;
  }
  .mb-md-95,
  .my-md-95 {
    margin-bottom: 9.5rem !important;
  }
  .ml-md-95,
  .mx-md-95 {
    margin-left: 9.5rem !important;
  }
  .m-md-100 {
    margin: 10rem !important;
  }
  .mt-md-100,
  .my-md-100 {
    margin-top: 10rem !important;
  }
  .mr-md-100,
  .mx-md-100 {
    margin-right: 10rem !important;
  }
  .mb-md-100,
  .my-md-100 {
    margin-bottom: 10rem !important;
  }
  .ml-md-100,
  .mx-md-100 {
    margin-left: 10rem !important;
  }
  .m-md-130 {
    margin: 13rem !important;
  }
  .mt-md-130,
  .my-md-130 {
    margin-top: 13rem !important;
  }
  .mr-md-130,
  .mx-md-130 {
    margin-right: 13rem !important;
  }
  .mb-md-130,
  .my-md-130 {
    margin-bottom: 13rem !important;
  }
  .ml-md-130,
  .mx-md-130 {
    margin-left: 13rem !important;
  }
  .m-md-140 {
    margin: 14rem !important;
  }
  .mt-md-140,
  .my-md-140 {
    margin-top: 14rem !important;
  }
  .mr-md-140,
  .mx-md-140 {
    margin-right: 14rem !important;
  }
  .mb-md-140,
  .my-md-140 {
    margin-bottom: 14rem !important;
  }
  .ml-md-140,
  .mx-md-140 {
    margin-left: 14rem !important;
  }
  .m-md-150 {
    margin: 15rem !important;
  }
  .mt-md-150,
  .my-md-150 {
    margin-top: 15rem !important;
  }
  .mr-md-150,
  .mx-md-150 {
    margin-right: 15rem !important;
  }
  .mb-md-150,
  .my-md-150 {
    margin-bottom: 15rem !important;
  }
  .ml-md-150,
  .mx-md-150 {
    margin-left: 15rem !important;
  }
  .m-md-200 {
    margin: 20rem !important;
  }
  .mt-md-200,
  .my-md-200 {
    margin-top: 20rem !important;
  }
  .mr-md-200,
  .mx-md-200 {
    margin-right: 20rem !important;
  }
  .mb-md-200,
  .my-md-200 {
    margin-bottom: 20rem !important;
  }
  .ml-md-200,
  .mx-md-200 {
    margin-left: 20rem !important;
  }
  .m-md-250 {
    margin: 25rem !important;
  }
  .mt-md-250,
  .my-md-250 {
    margin-top: 25rem !important;
  }
  .mr-md-250,
  .mx-md-250 {
    margin-right: 25rem !important;
  }
  .mb-md-250,
  .my-md-250 {
    margin-bottom: 25rem !important;
  }
  .ml-md-250,
  .mx-md-250 {
    margin-left: 25rem !important;
  }
  .m-md-300 {
    margin: 30rem !important;
  }
  .mt-md-300,
  .my-md-300 {
    margin-top: 30rem !important;
  }
  .mr-md-300,
  .mx-md-300 {
    margin-right: 30rem !important;
  }
  .mb-md-300,
  .my-md-300 {
    margin-bottom: 30rem !important;
  }
  .ml-md-300,
  .mx-md-300 {
    margin-left: 30rem !important;
  }
  .m-md-400 {
    margin: 40rem !important;
  }
  .mt-md-400,
  .my-md-400 {
    margin-top: 40rem !important;
  }
  .mr-md-400,
  .mx-md-400 {
    margin-right: 40rem !important;
  }
  .mb-md-400,
  .my-md-400 {
    margin-bottom: 40rem !important;
  }
  .ml-md-400,
  .mx-md-400 {
    margin-left: 40rem !important;
  }
  .m-md-410 {
    margin: 41rem !important;
  }
  .mt-md-410,
  .my-md-410 {
    margin-top: 41rem !important;
  }
  .mr-md-410,
  .mx-md-410 {
    margin-right: 41rem !important;
  }
  .mb-md-410,
  .my-md-410 {
    margin-bottom: 41rem !important;
  }
  .ml-md-410,
  .mx-md-410 {
    margin-left: 41rem !important;
  }
  .m-md-450 {
    margin: 45rem !important;
  }
  .mt-md-450,
  .my-md-450 {
    margin-top: 45rem !important;
  }
  .mr-md-450,
  .mx-md-450 {
    margin-right: 45rem !important;
  }
  .mb-md-450,
  .my-md-450 {
    margin-bottom: 45rem !important;
  }
  .ml-md-450,
  .mx-md-450 {
    margin-left: 45rem !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: 0.1rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.1rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.1rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.1rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.1rem !important;
  }
  .p-md-2 {
    padding: 0.2rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.2rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.2rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.2rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.2rem !important;
  }
  .p-md-3 {
    padding: 0.3rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 0.3rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 0.3rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 0.3rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 0.3rem !important;
  }
  .p-md-4 {
    padding: 0.4rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 0.4rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 0.4rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 0.4rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 0.4rem !important;
  }
  .p-md-5 {
    padding: 0.5rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 0.5rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 0.5rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 0.5rem !important;
  }
  .p-md-6 {
    padding: 0.6rem !important;
  }
  .pt-md-6,
  .py-md-6 {
    padding-top: 0.6rem !important;
  }
  .pr-md-6,
  .px-md-6 {
    padding-right: 0.6rem !important;
  }
  .pb-md-6,
  .py-md-6 {
    padding-bottom: 0.6rem !important;
  }
  .pl-md-6,
  .px-md-6 {
    padding-left: 0.6rem !important;
  }
  .p-md-7 {
    padding: 0.7rem !important;
  }
  .pt-md-7,
  .py-md-7 {
    padding-top: 0.7rem !important;
  }
  .pr-md-7,
  .px-md-7 {
    padding-right: 0.7rem !important;
  }
  .pb-md-7,
  .py-md-7 {
    padding-bottom: 0.7rem !important;
  }
  .pl-md-7,
  .px-md-7 {
    padding-left: 0.7rem !important;
  }
  .p-md-8 {
    padding: 0.8rem !important;
  }
  .pt-md-8,
  .py-md-8 {
    padding-top: 0.8rem !important;
  }
  .pr-md-8,
  .px-md-8 {
    padding-right: 0.8rem !important;
  }
  .pb-md-8,
  .py-md-8 {
    padding-bottom: 0.8rem !important;
  }
  .pl-md-8,
  .px-md-8 {
    padding-left: 0.8rem !important;
  }
  .p-md-9 {
    padding: 0.9rem !important;
  }
  .pt-md-9,
  .py-md-9 {
    padding-top: 0.9rem !important;
  }
  .pr-md-9,
  .px-md-9 {
    padding-right: 0.9rem !important;
  }
  .pb-md-9,
  .py-md-9 {
    padding-bottom: 0.9rem !important;
  }
  .pl-md-9,
  .px-md-9 {
    padding-left: 0.9rem !important;
  }
  .p-md-10 {
    padding: 1rem !important;
  }
  .pt-md-10,
  .py-md-10 {
    padding-top: 1rem !important;
  }
  .pr-md-10,
  .px-md-10 {
    padding-right: 1rem !important;
  }
  .pb-md-10,
  .py-md-10 {
    padding-bottom: 1rem !important;
  }
  .pl-md-10,
  .px-md-10 {
    padding-left: 1rem !important;
  }
  .p-md-11 {
    padding: 1.1rem !important;
  }
  .pt-md-11,
  .py-md-11 {
    padding-top: 1.1rem !important;
  }
  .pr-md-11,
  .px-md-11 {
    padding-right: 1.1rem !important;
  }
  .pb-md-11,
  .py-md-11 {
    padding-bottom: 1.1rem !important;
  }
  .pl-md-11,
  .px-md-11 {
    padding-left: 1.1rem !important;
  }
  .p-md-12 {
    padding: 1.2rem !important;
  }
  .pt-md-12,
  .py-md-12 {
    padding-top: 1.2rem !important;
  }
  .pr-md-12,
  .px-md-12 {
    padding-right: 1.2rem !important;
  }
  .pb-md-12,
  .py-md-12 {
    padding-bottom: 1.2rem !important;
  }
  .pl-md-12,
  .px-md-12 {
    padding-left: 1.2rem !important;
  }
  .p-md-13 {
    padding: 1.3rem !important;
  }
  .pt-md-13,
  .py-md-13 {
    padding-top: 1.3rem !important;
  }
  .pr-md-13,
  .px-md-13 {
    padding-right: 1.3rem !important;
  }
  .pb-md-13,
  .py-md-13 {
    padding-bottom: 1.3rem !important;
  }
  .pl-md-13,
  .px-md-13 {
    padding-left: 1.3rem !important;
  }
  .p-md-14 {
    padding: 1.4rem !important;
  }
  .pt-md-14,
  .py-md-14 {
    padding-top: 1.4rem !important;
  }
  .pr-md-14,
  .px-md-14 {
    padding-right: 1.4rem !important;
  }
  .pb-md-14,
  .py-md-14 {
    padding-bottom: 1.4rem !important;
  }
  .pl-md-14,
  .px-md-14 {
    padding-left: 1.4rem !important;
  }
  .p-md-15 {
    padding: 1.5rem !important;
  }
  .pt-md-15,
  .py-md-15 {
    padding-top: 1.5rem !important;
  }
  .pr-md-15,
  .px-md-15 {
    padding-right: 1.5rem !important;
  }
  .pb-md-15,
  .py-md-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-15,
  .px-md-15 {
    padding-left: 1.5rem !important;
  }
  .p-md-16 {
    padding: 1.6rem !important;
  }
  .pt-md-16,
  .py-md-16 {
    padding-top: 1.6rem !important;
  }
  .pr-md-16,
  .px-md-16 {
    padding-right: 1.6rem !important;
  }
  .pb-md-16,
  .py-md-16 {
    padding-bottom: 1.6rem !important;
  }
  .pl-md-16,
  .px-md-16 {
    padding-left: 1.6rem !important;
  }
  .p-md-17 {
    padding: 1.7rem !important;
  }
  .pt-md-17,
  .py-md-17 {
    padding-top: 1.7rem !important;
  }
  .pr-md-17,
  .px-md-17 {
    padding-right: 1.7rem !important;
  }
  .pb-md-17,
  .py-md-17 {
    padding-bottom: 1.7rem !important;
  }
  .pl-md-17,
  .px-md-17 {
    padding-left: 1.7rem !important;
  }
  .p-md-18 {
    padding: 1.8rem !important;
  }
  .pt-md-18,
  .py-md-18 {
    padding-top: 1.8rem !important;
  }
  .pr-md-18,
  .px-md-18 {
    padding-right: 1.8rem !important;
  }
  .pb-md-18,
  .py-md-18 {
    padding-bottom: 1.8rem !important;
  }
  .pl-md-18,
  .px-md-18 {
    padding-left: 1.8rem !important;
  }
  .p-md-19 {
    padding: 1.9rem !important;
  }
  .pt-md-19,
  .py-md-19 {
    padding-top: 1.9rem !important;
  }
  .pr-md-19,
  .px-md-19 {
    padding-right: 1.9rem !important;
  }
  .pb-md-19,
  .py-md-19 {
    padding-bottom: 1.9rem !important;
  }
  .pl-md-19,
  .px-md-19 {
    padding-left: 1.9rem !important;
  }
  .p-md-20 {
    padding: 2rem !important;
  }
  .pt-md-20,
  .py-md-20 {
    padding-top: 2rem !important;
  }
  .pr-md-20,
  .px-md-20 {
    padding-right: 2rem !important;
  }
  .pb-md-20,
  .py-md-20 {
    padding-bottom: 2rem !important;
  }
  .pl-md-20,
  .px-md-20 {
    padding-left: 2rem !important;
  }
  .p-md-25 {
    padding: 2.5rem !important;
  }
  .pt-md-25,
  .py-md-25 {
    padding-top: 2.5rem !important;
  }
  .pr-md-25,
  .px-md-25 {
    padding-right: 2.5rem !important;
  }
  .pb-md-25,
  .py-md-25 {
    padding-bottom: 2.5rem !important;
  }
  .pl-md-25,
  .px-md-25 {
    padding-left: 2.5rem !important;
  }
  .p-md-30 {
    padding: 3rem !important;
  }
  .pt-md-30,
  .py-md-30 {
    padding-top: 3rem !important;
  }
  .pr-md-30,
  .px-md-30 {
    padding-right: 3rem !important;
  }
  .pb-md-30,
  .py-md-30 {
    padding-bottom: 3rem !important;
  }
  .pl-md-30,
  .px-md-30 {
    padding-left: 3rem !important;
  }
  .p-md-35 {
    padding: 3.5rem !important;
  }
  .pt-md-35,
  .py-md-35 {
    padding-top: 3.5rem !important;
  }
  .pr-md-35,
  .px-md-35 {
    padding-right: 3.5rem !important;
  }
  .pb-md-35,
  .py-md-35 {
    padding-bottom: 3.5rem !important;
  }
  .pl-md-35,
  .px-md-35 {
    padding-left: 3.5rem !important;
  }
  .p-md-40 {
    padding: 4rem !important;
  }
  .pt-md-40,
  .py-md-40 {
    padding-top: 4rem !important;
  }
  .pr-md-40,
  .px-md-40 {
    padding-right: 4rem !important;
  }
  .pb-md-40,
  .py-md-40 {
    padding-bottom: 4rem !important;
  }
  .pl-md-40,
  .px-md-40 {
    padding-left: 4rem !important;
  }
  .p-md-45 {
    padding: 4.5rem !important;
  }
  .pt-md-45,
  .py-md-45 {
    padding-top: 4.5rem !important;
  }
  .pr-md-45,
  .px-md-45 {
    padding-right: 4.5rem !important;
  }
  .pb-md-45,
  .py-md-45 {
    padding-bottom: 4.5rem !important;
  }
  .pl-md-45,
  .px-md-45 {
    padding-left: 4.5rem !important;
  }
  .p-md-50 {
    padding: 5rem !important;
  }
  .pt-md-50,
  .py-md-50 {
    padding-top: 5rem !important;
  }
  .pr-md-50,
  .px-md-50 {
    padding-right: 5rem !important;
  }
  .pb-md-50,
  .py-md-50 {
    padding-bottom: 5rem !important;
  }
  .pl-md-50,
  .px-md-50 {
    padding-left: 5rem !important;
  }
  .p-md-55 {
    padding: 5.5rem !important;
  }
  .pt-md-55,
  .py-md-55 {
    padding-top: 5.5rem !important;
  }
  .pr-md-55,
  .px-md-55 {
    padding-right: 5.5rem !important;
  }
  .pb-md-55,
  .py-md-55 {
    padding-bottom: 5.5rem !important;
  }
  .pl-md-55,
  .px-md-55 {
    padding-left: 5.5rem !important;
  }
  .p-md-60 {
    padding: 6rem !important;
  }
  .pt-md-60,
  .py-md-60 {
    padding-top: 6rem !important;
  }
  .pr-md-60,
  .px-md-60 {
    padding-right: 6rem !important;
  }
  .pb-md-60,
  .py-md-60 {
    padding-bottom: 6rem !important;
  }
  .pl-md-60,
  .px-md-60 {
    padding-left: 6rem !important;
  }
  .p-md-65 {
    padding: 6.5rem !important;
  }
  .pt-md-65,
  .py-md-65 {
    padding-top: 6.5rem !important;
  }
  .pr-md-65,
  .px-md-65 {
    padding-right: 6.5rem !important;
  }
  .pb-md-65,
  .py-md-65 {
    padding-bottom: 6.5rem !important;
  }
  .pl-md-65,
  .px-md-65 {
    padding-left: 6.5rem !important;
  }
  .p-md-70 {
    padding: 7rem !important;
  }
  .pt-md-70,
  .py-md-70 {
    padding-top: 7rem !important;
  }
  .pr-md-70,
  .px-md-70 {
    padding-right: 7rem !important;
  }
  .pb-md-70,
  .py-md-70 {
    padding-bottom: 7rem !important;
  }
  .pl-md-70,
  .px-md-70 {
    padding-left: 7rem !important;
  }
  .p-md-75 {
    padding: 7.5rem !important;
  }
  .pt-md-75,
  .py-md-75 {
    padding-top: 7.5rem !important;
  }
  .pr-md-75,
  .px-md-75 {
    padding-right: 7.5rem !important;
  }
  .pb-md-75,
  .py-md-75 {
    padding-bottom: 7.5rem !important;
  }
  .pl-md-75,
  .px-md-75 {
    padding-left: 7.5rem !important;
  }
  .p-md-80 {
    padding: 8rem !important;
  }
  .pt-md-80,
  .py-md-80 {
    padding-top: 8rem !important;
  }
  .pr-md-80,
  .px-md-80 {
    padding-right: 8rem !important;
  }
  .pb-md-80,
  .py-md-80 {
    padding-bottom: 8rem !important;
  }
  .pl-md-80,
  .px-md-80 {
    padding-left: 8rem !important;
  }
  .p-md-85 {
    padding: 8.5rem !important;
  }
  .pt-md-85,
  .py-md-85 {
    padding-top: 8.5rem !important;
  }
  .pr-md-85,
  .px-md-85 {
    padding-right: 8.5rem !important;
  }
  .pb-md-85,
  .py-md-85 {
    padding-bottom: 8.5rem !important;
  }
  .pl-md-85,
  .px-md-85 {
    padding-left: 8.5rem !important;
  }
  .p-md-90 {
    padding: 9rem !important;
  }
  .pt-md-90,
  .py-md-90 {
    padding-top: 9rem !important;
  }
  .pr-md-90,
  .px-md-90 {
    padding-right: 9rem !important;
  }
  .pb-md-90,
  .py-md-90 {
    padding-bottom: 9rem !important;
  }
  .pl-md-90,
  .px-md-90 {
    padding-left: 9rem !important;
  }
  .p-md-95 {
    padding: 9.5rem !important;
  }
  .pt-md-95,
  .py-md-95 {
    padding-top: 9.5rem !important;
  }
  .pr-md-95,
  .px-md-95 {
    padding-right: 9.5rem !important;
  }
  .pb-md-95,
  .py-md-95 {
    padding-bottom: 9.5rem !important;
  }
  .pl-md-95,
  .px-md-95 {
    padding-left: 9.5rem !important;
  }
  .p-md-100 {
    padding: 10rem !important;
  }
  .pt-md-100,
  .py-md-100 {
    padding-top: 10rem !important;
  }
  .pr-md-100,
  .px-md-100 {
    padding-right: 10rem !important;
  }
  .pb-md-100,
  .py-md-100 {
    padding-bottom: 10rem !important;
  }
  .pl-md-100,
  .px-md-100 {
    padding-left: 10rem !important;
  }
  .p-md-130 {
    padding: 13rem !important;
  }
  .pt-md-130,
  .py-md-130 {
    padding-top: 13rem !important;
  }
  .pr-md-130,
  .px-md-130 {
    padding-right: 13rem !important;
  }
  .pb-md-130,
  .py-md-130 {
    padding-bottom: 13rem !important;
  }
  .pl-md-130,
  .px-md-130 {
    padding-left: 13rem !important;
  }
  .p-md-140 {
    padding: 14rem !important;
  }
  .pt-md-140,
  .py-md-140 {
    padding-top: 14rem !important;
  }
  .pr-md-140,
  .px-md-140 {
    padding-right: 14rem !important;
  }
  .pb-md-140,
  .py-md-140 {
    padding-bottom: 14rem !important;
  }
  .pl-md-140,
  .px-md-140 {
    padding-left: 14rem !important;
  }
  .p-md-150 {
    padding: 15rem !important;
  }
  .pt-md-150,
  .py-md-150 {
    padding-top: 15rem !important;
  }
  .pr-md-150,
  .px-md-150 {
    padding-right: 15rem !important;
  }
  .pb-md-150,
  .py-md-150 {
    padding-bottom: 15rem !important;
  }
  .pl-md-150,
  .px-md-150 {
    padding-left: 15rem !important;
  }
  .p-md-200 {
    padding: 20rem !important;
  }
  .pt-md-200,
  .py-md-200 {
    padding-top: 20rem !important;
  }
  .pr-md-200,
  .px-md-200 {
    padding-right: 20rem !important;
  }
  .pb-md-200,
  .py-md-200 {
    padding-bottom: 20rem !important;
  }
  .pl-md-200,
  .px-md-200 {
    padding-left: 20rem !important;
  }
  .p-md-250 {
    padding: 25rem !important;
  }
  .pt-md-250,
  .py-md-250 {
    padding-top: 25rem !important;
  }
  .pr-md-250,
  .px-md-250 {
    padding-right: 25rem !important;
  }
  .pb-md-250,
  .py-md-250 {
    padding-bottom: 25rem !important;
  }
  .pl-md-250,
  .px-md-250 {
    padding-left: 25rem !important;
  }
  .p-md-300 {
    padding: 30rem !important;
  }
  .pt-md-300,
  .py-md-300 {
    padding-top: 30rem !important;
  }
  .pr-md-300,
  .px-md-300 {
    padding-right: 30rem !important;
  }
  .pb-md-300,
  .py-md-300 {
    padding-bottom: 30rem !important;
  }
  .pl-md-300,
  .px-md-300 {
    padding-left: 30rem !important;
  }
  .p-md-400 {
    padding: 40rem !important;
  }
  .pt-md-400,
  .py-md-400 {
    padding-top: 40rem !important;
  }
  .pr-md-400,
  .px-md-400 {
    padding-right: 40rem !important;
  }
  .pb-md-400,
  .py-md-400 {
    padding-bottom: 40rem !important;
  }
  .pl-md-400,
  .px-md-400 {
    padding-left: 40rem !important;
  }
  .p-md-410 {
    padding: 41rem !important;
  }
  .pt-md-410,
  .py-md-410 {
    padding-top: 41rem !important;
  }
  .pr-md-410,
  .px-md-410 {
    padding-right: 41rem !important;
  }
  .pb-md-410,
  .py-md-410 {
    padding-bottom: 41rem !important;
  }
  .pl-md-410,
  .px-md-410 {
    padding-left: 41rem !important;
  }
  .p-md-450 {
    padding: 45rem !important;
  }
  .pt-md-450,
  .py-md-450 {
    padding-top: 45rem !important;
  }
  .pr-md-450,
  .px-md-450 {
    padding-right: 45rem !important;
  }
  .pb-md-450,
  .py-md-450 {
    padding-bottom: 45rem !important;
  }
  .pl-md-450,
  .px-md-450 {
    padding-left: 45rem !important;
  }
  .m-md-n1 {
    margin: -0.1rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.1rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.1rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.1rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.1rem !important;
  }
  .m-md-n2 {
    margin: -0.2rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.2rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.2rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.2rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.2rem !important;
  }
  .m-md-n3 {
    margin: -0.3rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -0.3rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -0.3rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -0.3rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -0.3rem !important;
  }
  .m-md-n4 {
    margin: -0.4rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -0.4rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -0.4rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -0.4rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -0.4rem !important;
  }
  .m-md-n5 {
    margin: -0.5rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -0.5rem !important;
  }
  .m-md-n6 {
    margin: -0.6rem !important;
  }
  .mt-md-n6,
  .my-md-n6 {
    margin-top: -0.6rem !important;
  }
  .mr-md-n6,
  .mx-md-n6 {
    margin-right: -0.6rem !important;
  }
  .mb-md-n6,
  .my-md-n6 {
    margin-bottom: -0.6rem !important;
  }
  .ml-md-n6,
  .mx-md-n6 {
    margin-left: -0.6rem !important;
  }
  .m-md-n7 {
    margin: -0.7rem !important;
  }
  .mt-md-n7,
  .my-md-n7 {
    margin-top: -0.7rem !important;
  }
  .mr-md-n7,
  .mx-md-n7 {
    margin-right: -0.7rem !important;
  }
  .mb-md-n7,
  .my-md-n7 {
    margin-bottom: -0.7rem !important;
  }
  .ml-md-n7,
  .mx-md-n7 {
    margin-left: -0.7rem !important;
  }
  .m-md-n8 {
    margin: -0.8rem !important;
  }
  .mt-md-n8,
  .my-md-n8 {
    margin-top: -0.8rem !important;
  }
  .mr-md-n8,
  .mx-md-n8 {
    margin-right: -0.8rem !important;
  }
  .mb-md-n8,
  .my-md-n8 {
    margin-bottom: -0.8rem !important;
  }
  .ml-md-n8,
  .mx-md-n8 {
    margin-left: -0.8rem !important;
  }
  .m-md-n9 {
    margin: -0.9rem !important;
  }
  .mt-md-n9,
  .my-md-n9 {
    margin-top: -0.9rem !important;
  }
  .mr-md-n9,
  .mx-md-n9 {
    margin-right: -0.9rem !important;
  }
  .mb-md-n9,
  .my-md-n9 {
    margin-bottom: -0.9rem !important;
  }
  .ml-md-n9,
  .mx-md-n9 {
    margin-left: -0.9rem !important;
  }
  .m-md-n10 {
    margin: -1rem !important;
  }
  .mt-md-n10,
  .my-md-n10 {
    margin-top: -1rem !important;
  }
  .mr-md-n10,
  .mx-md-n10 {
    margin-right: -1rem !important;
  }
  .mb-md-n10,
  .my-md-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n10,
  .mx-md-n10 {
    margin-left: -1rem !important;
  }
  .m-md-n11 {
    margin: -1.1rem !important;
  }
  .mt-md-n11,
  .my-md-n11 {
    margin-top: -1.1rem !important;
  }
  .mr-md-n11,
  .mx-md-n11 {
    margin-right: -1.1rem !important;
  }
  .mb-md-n11,
  .my-md-n11 {
    margin-bottom: -1.1rem !important;
  }
  .ml-md-n11,
  .mx-md-n11 {
    margin-left: -1.1rem !important;
  }
  .m-md-n12 {
    margin: -1.2rem !important;
  }
  .mt-md-n12,
  .my-md-n12 {
    margin-top: -1.2rem !important;
  }
  .mr-md-n12,
  .mx-md-n12 {
    margin-right: -1.2rem !important;
  }
  .mb-md-n12,
  .my-md-n12 {
    margin-bottom: -1.2rem !important;
  }
  .ml-md-n12,
  .mx-md-n12 {
    margin-left: -1.2rem !important;
  }
  .m-md-n13 {
    margin: -1.3rem !important;
  }
  .mt-md-n13,
  .my-md-n13 {
    margin-top: -1.3rem !important;
  }
  .mr-md-n13,
  .mx-md-n13 {
    margin-right: -1.3rem !important;
  }
  .mb-md-n13,
  .my-md-n13 {
    margin-bottom: -1.3rem !important;
  }
  .ml-md-n13,
  .mx-md-n13 {
    margin-left: -1.3rem !important;
  }
  .m-md-n14 {
    margin: -1.4rem !important;
  }
  .mt-md-n14,
  .my-md-n14 {
    margin-top: -1.4rem !important;
  }
  .mr-md-n14,
  .mx-md-n14 {
    margin-right: -1.4rem !important;
  }
  .mb-md-n14,
  .my-md-n14 {
    margin-bottom: -1.4rem !important;
  }
  .ml-md-n14,
  .mx-md-n14 {
    margin-left: -1.4rem !important;
  }
  .m-md-n15 {
    margin: -1.5rem !important;
  }
  .mt-md-n15,
  .my-md-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n15,
  .mx-md-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n15,
  .my-md-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n15,
  .mx-md-n15 {
    margin-left: -1.5rem !important;
  }
  .m-md-n16 {
    margin: -1.6rem !important;
  }
  .mt-md-n16,
  .my-md-n16 {
    margin-top: -1.6rem !important;
  }
  .mr-md-n16,
  .mx-md-n16 {
    margin-right: -1.6rem !important;
  }
  .mb-md-n16,
  .my-md-n16 {
    margin-bottom: -1.6rem !important;
  }
  .ml-md-n16,
  .mx-md-n16 {
    margin-left: -1.6rem !important;
  }
  .m-md-n17 {
    margin: -1.7rem !important;
  }
  .mt-md-n17,
  .my-md-n17 {
    margin-top: -1.7rem !important;
  }
  .mr-md-n17,
  .mx-md-n17 {
    margin-right: -1.7rem !important;
  }
  .mb-md-n17,
  .my-md-n17 {
    margin-bottom: -1.7rem !important;
  }
  .ml-md-n17,
  .mx-md-n17 {
    margin-left: -1.7rem !important;
  }
  .m-md-n18 {
    margin: -1.8rem !important;
  }
  .mt-md-n18,
  .my-md-n18 {
    margin-top: -1.8rem !important;
  }
  .mr-md-n18,
  .mx-md-n18 {
    margin-right: -1.8rem !important;
  }
  .mb-md-n18,
  .my-md-n18 {
    margin-bottom: -1.8rem !important;
  }
  .ml-md-n18,
  .mx-md-n18 {
    margin-left: -1.8rem !important;
  }
  .m-md-n19 {
    margin: -1.9rem !important;
  }
  .mt-md-n19,
  .my-md-n19 {
    margin-top: -1.9rem !important;
  }
  .mr-md-n19,
  .mx-md-n19 {
    margin-right: -1.9rem !important;
  }
  .mb-md-n19,
  .my-md-n19 {
    margin-bottom: -1.9rem !important;
  }
  .ml-md-n19,
  .mx-md-n19 {
    margin-left: -1.9rem !important;
  }
  .m-md-n20 {
    margin: -2rem !important;
  }
  .mt-md-n20,
  .my-md-n20 {
    margin-top: -2rem !important;
  }
  .mr-md-n20,
  .mx-md-n20 {
    margin-right: -2rem !important;
  }
  .mb-md-n20,
  .my-md-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-md-n20,
  .mx-md-n20 {
    margin-left: -2rem !important;
  }
  .m-md-n25 {
    margin: -2.5rem !important;
  }
  .mt-md-n25,
  .my-md-n25 {
    margin-top: -2.5rem !important;
  }
  .mr-md-n25,
  .mx-md-n25 {
    margin-right: -2.5rem !important;
  }
  .mb-md-n25,
  .my-md-n25 {
    margin-bottom: -2.5rem !important;
  }
  .ml-md-n25,
  .mx-md-n25 {
    margin-left: -2.5rem !important;
  }
  .m-md-n30 {
    margin: -3rem !important;
  }
  .mt-md-n30,
  .my-md-n30 {
    margin-top: -3rem !important;
  }
  .mr-md-n30,
  .mx-md-n30 {
    margin-right: -3rem !important;
  }
  .mb-md-n30,
  .my-md-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n30,
  .mx-md-n30 {
    margin-left: -3rem !important;
  }
  .m-md-n35 {
    margin: -3.5rem !important;
  }
  .mt-md-n35,
  .my-md-n35 {
    margin-top: -3.5rem !important;
  }
  .mr-md-n35,
  .mx-md-n35 {
    margin-right: -3.5rem !important;
  }
  .mb-md-n35,
  .my-md-n35 {
    margin-bottom: -3.5rem !important;
  }
  .ml-md-n35,
  .mx-md-n35 {
    margin-left: -3.5rem !important;
  }
  .m-md-n40 {
    margin: -4rem !important;
  }
  .mt-md-n40,
  .my-md-n40 {
    margin-top: -4rem !important;
  }
  .mr-md-n40,
  .mx-md-n40 {
    margin-right: -4rem !important;
  }
  .mb-md-n40,
  .my-md-n40 {
    margin-bottom: -4rem !important;
  }
  .ml-md-n40,
  .mx-md-n40 {
    margin-left: -4rem !important;
  }
  .m-md-n45 {
    margin: -4.5rem !important;
  }
  .mt-md-n45,
  .my-md-n45 {
    margin-top: -4.5rem !important;
  }
  .mr-md-n45,
  .mx-md-n45 {
    margin-right: -4.5rem !important;
  }
  .mb-md-n45,
  .my-md-n45 {
    margin-bottom: -4.5rem !important;
  }
  .ml-md-n45,
  .mx-md-n45 {
    margin-left: -4.5rem !important;
  }
  .m-md-n50 {
    margin: -5rem !important;
  }
  .mt-md-n50,
  .my-md-n50 {
    margin-top: -5rem !important;
  }
  .mr-md-n50,
  .mx-md-n50 {
    margin-right: -5rem !important;
  }
  .mb-md-n50,
  .my-md-n50 {
    margin-bottom: -5rem !important;
  }
  .ml-md-n50,
  .mx-md-n50 {
    margin-left: -5rem !important;
  }
  .m-md-n55 {
    margin: -5.5rem !important;
  }
  .mt-md-n55,
  .my-md-n55 {
    margin-top: -5.5rem !important;
  }
  .mr-md-n55,
  .mx-md-n55 {
    margin-right: -5.5rem !important;
  }
  .mb-md-n55,
  .my-md-n55 {
    margin-bottom: -5.5rem !important;
  }
  .ml-md-n55,
  .mx-md-n55 {
    margin-left: -5.5rem !important;
  }
  .m-md-n60 {
    margin: -6rem !important;
  }
  .mt-md-n60,
  .my-md-n60 {
    margin-top: -6rem !important;
  }
  .mr-md-n60,
  .mx-md-n60 {
    margin-right: -6rem !important;
  }
  .mb-md-n60,
  .my-md-n60 {
    margin-bottom: -6rem !important;
  }
  .ml-md-n60,
  .mx-md-n60 {
    margin-left: -6rem !important;
  }
  .m-md-n65 {
    margin: -6.5rem !important;
  }
  .mt-md-n65,
  .my-md-n65 {
    margin-top: -6.5rem !important;
  }
  .mr-md-n65,
  .mx-md-n65 {
    margin-right: -6.5rem !important;
  }
  .mb-md-n65,
  .my-md-n65 {
    margin-bottom: -6.5rem !important;
  }
  .ml-md-n65,
  .mx-md-n65 {
    margin-left: -6.5rem !important;
  }
  .m-md-n70 {
    margin: -7rem !important;
  }
  .mt-md-n70,
  .my-md-n70 {
    margin-top: -7rem !important;
  }
  .mr-md-n70,
  .mx-md-n70 {
    margin-right: -7rem !important;
  }
  .mb-md-n70,
  .my-md-n70 {
    margin-bottom: -7rem !important;
  }
  .ml-md-n70,
  .mx-md-n70 {
    margin-left: -7rem !important;
  }
  .m-md-n75 {
    margin: -7.5rem !important;
  }
  .mt-md-n75,
  .my-md-n75 {
    margin-top: -7.5rem !important;
  }
  .mr-md-n75,
  .mx-md-n75 {
    margin-right: -7.5rem !important;
  }
  .mb-md-n75,
  .my-md-n75 {
    margin-bottom: -7.5rem !important;
  }
  .ml-md-n75,
  .mx-md-n75 {
    margin-left: -7.5rem !important;
  }
  .m-md-n80 {
    margin: -8rem !important;
  }
  .mt-md-n80,
  .my-md-n80 {
    margin-top: -8rem !important;
  }
  .mr-md-n80,
  .mx-md-n80 {
    margin-right: -8rem !important;
  }
  .mb-md-n80,
  .my-md-n80 {
    margin-bottom: -8rem !important;
  }
  .ml-md-n80,
  .mx-md-n80 {
    margin-left: -8rem !important;
  }
  .m-md-n85 {
    margin: -8.5rem !important;
  }
  .mt-md-n85,
  .my-md-n85 {
    margin-top: -8.5rem !important;
  }
  .mr-md-n85,
  .mx-md-n85 {
    margin-right: -8.5rem !important;
  }
  .mb-md-n85,
  .my-md-n85 {
    margin-bottom: -8.5rem !important;
  }
  .ml-md-n85,
  .mx-md-n85 {
    margin-left: -8.5rem !important;
  }
  .m-md-n90 {
    margin: -9rem !important;
  }
  .mt-md-n90,
  .my-md-n90 {
    margin-top: -9rem !important;
  }
  .mr-md-n90,
  .mx-md-n90 {
    margin-right: -9rem !important;
  }
  .mb-md-n90,
  .my-md-n90 {
    margin-bottom: -9rem !important;
  }
  .ml-md-n90,
  .mx-md-n90 {
    margin-left: -9rem !important;
  }
  .m-md-n95 {
    margin: -9.5rem !important;
  }
  .mt-md-n95,
  .my-md-n95 {
    margin-top: -9.5rem !important;
  }
  .mr-md-n95,
  .mx-md-n95 {
    margin-right: -9.5rem !important;
  }
  .mb-md-n95,
  .my-md-n95 {
    margin-bottom: -9.5rem !important;
  }
  .ml-md-n95,
  .mx-md-n95 {
    margin-left: -9.5rem !important;
  }
  .m-md-n100 {
    margin: -10rem !important;
  }
  .mt-md-n100,
  .my-md-n100 {
    margin-top: -10rem !important;
  }
  .mr-md-n100,
  .mx-md-n100 {
    margin-right: -10rem !important;
  }
  .mb-md-n100,
  .my-md-n100 {
    margin-bottom: -10rem !important;
  }
  .ml-md-n100,
  .mx-md-n100 {
    margin-left: -10rem !important;
  }
  .m-md-n130 {
    margin: -13rem !important;
  }
  .mt-md-n130,
  .my-md-n130 {
    margin-top: -13rem !important;
  }
  .mr-md-n130,
  .mx-md-n130 {
    margin-right: -13rem !important;
  }
  .mb-md-n130,
  .my-md-n130 {
    margin-bottom: -13rem !important;
  }
  .ml-md-n130,
  .mx-md-n130 {
    margin-left: -13rem !important;
  }
  .m-md-n140 {
    margin: -14rem !important;
  }
  .mt-md-n140,
  .my-md-n140 {
    margin-top: -14rem !important;
  }
  .mr-md-n140,
  .mx-md-n140 {
    margin-right: -14rem !important;
  }
  .mb-md-n140,
  .my-md-n140 {
    margin-bottom: -14rem !important;
  }
  .ml-md-n140,
  .mx-md-n140 {
    margin-left: -14rem !important;
  }
  .m-md-n150 {
    margin: -15rem !important;
  }
  .mt-md-n150,
  .my-md-n150 {
    margin-top: -15rem !important;
  }
  .mr-md-n150,
  .mx-md-n150 {
    margin-right: -15rem !important;
  }
  .mb-md-n150,
  .my-md-n150 {
    margin-bottom: -15rem !important;
  }
  .ml-md-n150,
  .mx-md-n150 {
    margin-left: -15rem !important;
  }
  .m-md-n200 {
    margin: -20rem !important;
  }
  .mt-md-n200,
  .my-md-n200 {
    margin-top: -20rem !important;
  }
  .mr-md-n200,
  .mx-md-n200 {
    margin-right: -20rem !important;
  }
  .mb-md-n200,
  .my-md-n200 {
    margin-bottom: -20rem !important;
  }
  .ml-md-n200,
  .mx-md-n200 {
    margin-left: -20rem !important;
  }
  .m-md-n250 {
    margin: -25rem !important;
  }
  .mt-md-n250,
  .my-md-n250 {
    margin-top: -25rem !important;
  }
  .mr-md-n250,
  .mx-md-n250 {
    margin-right: -25rem !important;
  }
  .mb-md-n250,
  .my-md-n250 {
    margin-bottom: -25rem !important;
  }
  .ml-md-n250,
  .mx-md-n250 {
    margin-left: -25rem !important;
  }
  .m-md-n300 {
    margin: -30rem !important;
  }
  .mt-md-n300,
  .my-md-n300 {
    margin-top: -30rem !important;
  }
  .mr-md-n300,
  .mx-md-n300 {
    margin-right: -30rem !important;
  }
  .mb-md-n300,
  .my-md-n300 {
    margin-bottom: -30rem !important;
  }
  .ml-md-n300,
  .mx-md-n300 {
    margin-left: -30rem !important;
  }
  .m-md-n400 {
    margin: -40rem !important;
  }
  .mt-md-n400,
  .my-md-n400 {
    margin-top: -40rem !important;
  }
  .mr-md-n400,
  .mx-md-n400 {
    margin-right: -40rem !important;
  }
  .mb-md-n400,
  .my-md-n400 {
    margin-bottom: -40rem !important;
  }
  .ml-md-n400,
  .mx-md-n400 {
    margin-left: -40rem !important;
  }
  .m-md-n410 {
    margin: -41rem !important;
  }
  .mt-md-n410,
  .my-md-n410 {
    margin-top: -41rem !important;
  }
  .mr-md-n410,
  .mx-md-n410 {
    margin-right: -41rem !important;
  }
  .mb-md-n410,
  .my-md-n410 {
    margin-bottom: -41rem !important;
  }
  .ml-md-n410,
  .mx-md-n410 {
    margin-left: -41rem !important;
  }
  .m-md-n450 {
    margin: -45rem !important;
  }
  .mt-md-n450,
  .my-md-n450 {
    margin-top: -45rem !important;
  }
  .mr-md-n450,
  .mx-md-n450 {
    margin-right: -45rem !important;
  }
  .mb-md-n450,
  .my-md-n450 {
    margin-bottom: -45rem !important;
  }
  .ml-md-n450,
  .mx-md-n450 {
    margin-left: -45rem !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: 0.1rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.1rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.1rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.1rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.1rem !important;
  }
  .m-lg-2 {
    margin: 0.2rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.2rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.2rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.2rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.2rem !important;
  }
  .m-lg-3 {
    margin: 0.3rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 0.3rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 0.3rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 0.3rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 0.3rem !important;
  }
  .m-lg-4 {
    margin: 0.4rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 0.4rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 0.4rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 0.4rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 0.4rem !important;
  }
  .m-lg-5 {
    margin: 0.5rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 0.5rem !important;
  }
  .m-lg-6 {
    margin: 0.6rem !important;
  }
  .mt-lg-6,
  .my-lg-6 {
    margin-top: 0.6rem !important;
  }
  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 0.6rem !important;
  }
  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 0.6rem !important;
  }
  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 0.6rem !important;
  }
  .m-lg-7 {
    margin: 0.7rem !important;
  }
  .mt-lg-7,
  .my-lg-7 {
    margin-top: 0.7rem !important;
  }
  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 0.7rem !important;
  }
  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 0.7rem !important;
  }
  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 0.7rem !important;
  }
  .m-lg-8 {
    margin: 0.8rem !important;
  }
  .mt-lg-8,
  .my-lg-8 {
    margin-top: 0.8rem !important;
  }
  .mr-lg-8,
  .mx-lg-8 {
    margin-right: 0.8rem !important;
  }
  .mb-lg-8,
  .my-lg-8 {
    margin-bottom: 0.8rem !important;
  }
  .ml-lg-8,
  .mx-lg-8 {
    margin-left: 0.8rem !important;
  }
  .m-lg-9 {
    margin: 0.9rem !important;
  }
  .mt-lg-9,
  .my-lg-9 {
    margin-top: 0.9rem !important;
  }
  .mr-lg-9,
  .mx-lg-9 {
    margin-right: 0.9rem !important;
  }
  .mb-lg-9,
  .my-lg-9 {
    margin-bottom: 0.9rem !important;
  }
  .ml-lg-9,
  .mx-lg-9 {
    margin-left: 0.9rem !important;
  }
  .m-lg-10 {
    margin: 1rem !important;
  }
  .mt-lg-10,
  .my-lg-10 {
    margin-top: 1rem !important;
  }
  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 1rem !important;
  }
  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 1rem !important;
  }
  .m-lg-11 {
    margin: 1.1rem !important;
  }
  .mt-lg-11,
  .my-lg-11 {
    margin-top: 1.1rem !important;
  }
  .mr-lg-11,
  .mx-lg-11 {
    margin-right: 1.1rem !important;
  }
  .mb-lg-11,
  .my-lg-11 {
    margin-bottom: 1.1rem !important;
  }
  .ml-lg-11,
  .mx-lg-11 {
    margin-left: 1.1rem !important;
  }
  .m-lg-12 {
    margin: 1.2rem !important;
  }
  .mt-lg-12,
  .my-lg-12 {
    margin-top: 1.2rem !important;
  }
  .mr-lg-12,
  .mx-lg-12 {
    margin-right: 1.2rem !important;
  }
  .mb-lg-12,
  .my-lg-12 {
    margin-bottom: 1.2rem !important;
  }
  .ml-lg-12,
  .mx-lg-12 {
    margin-left: 1.2rem !important;
  }
  .m-lg-13 {
    margin: 1.3rem !important;
  }
  .mt-lg-13,
  .my-lg-13 {
    margin-top: 1.3rem !important;
  }
  .mr-lg-13,
  .mx-lg-13 {
    margin-right: 1.3rem !important;
  }
  .mb-lg-13,
  .my-lg-13 {
    margin-bottom: 1.3rem !important;
  }
  .ml-lg-13,
  .mx-lg-13 {
    margin-left: 1.3rem !important;
  }
  .m-lg-14 {
    margin: 1.4rem !important;
  }
  .mt-lg-14,
  .my-lg-14 {
    margin-top: 1.4rem !important;
  }
  .mr-lg-14,
  .mx-lg-14 {
    margin-right: 1.4rem !important;
  }
  .mb-lg-14,
  .my-lg-14 {
    margin-bottom: 1.4rem !important;
  }
  .ml-lg-14,
  .mx-lg-14 {
    margin-left: 1.4rem !important;
  }
  .m-lg-15 {
    margin: 1.5rem !important;
  }
  .mt-lg-15,
  .my-lg-15 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-15,
  .mx-lg-15 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-15,
  .my-lg-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-15,
  .mx-lg-15 {
    margin-left: 1.5rem !important;
  }
  .m-lg-16 {
    margin: 1.6rem !important;
  }
  .mt-lg-16,
  .my-lg-16 {
    margin-top: 1.6rem !important;
  }
  .mr-lg-16,
  .mx-lg-16 {
    margin-right: 1.6rem !important;
  }
  .mb-lg-16,
  .my-lg-16 {
    margin-bottom: 1.6rem !important;
  }
  .ml-lg-16,
  .mx-lg-16 {
    margin-left: 1.6rem !important;
  }
  .m-lg-17 {
    margin: 1.7rem !important;
  }
  .mt-lg-17,
  .my-lg-17 {
    margin-top: 1.7rem !important;
  }
  .mr-lg-17,
  .mx-lg-17 {
    margin-right: 1.7rem !important;
  }
  .mb-lg-17,
  .my-lg-17 {
    margin-bottom: 1.7rem !important;
  }
  .ml-lg-17,
  .mx-lg-17 {
    margin-left: 1.7rem !important;
  }
  .m-lg-18 {
    margin: 1.8rem !important;
  }
  .mt-lg-18,
  .my-lg-18 {
    margin-top: 1.8rem !important;
  }
  .mr-lg-18,
  .mx-lg-18 {
    margin-right: 1.8rem !important;
  }
  .mb-lg-18,
  .my-lg-18 {
    margin-bottom: 1.8rem !important;
  }
  .ml-lg-18,
  .mx-lg-18 {
    margin-left: 1.8rem !important;
  }
  .m-lg-19 {
    margin: 1.9rem !important;
  }
  .mt-lg-19,
  .my-lg-19 {
    margin-top: 1.9rem !important;
  }
  .mr-lg-19,
  .mx-lg-19 {
    margin-right: 1.9rem !important;
  }
  .mb-lg-19,
  .my-lg-19 {
    margin-bottom: 1.9rem !important;
  }
  .ml-lg-19,
  .mx-lg-19 {
    margin-left: 1.9rem !important;
  }
  .m-lg-20 {
    margin: 2rem !important;
  }
  .mt-lg-20,
  .my-lg-20 {
    margin-top: 2rem !important;
  }
  .mr-lg-20,
  .mx-lg-20 {
    margin-right: 2rem !important;
  }
  .mb-lg-20,
  .my-lg-20 {
    margin-bottom: 2rem !important;
  }
  .ml-lg-20,
  .mx-lg-20 {
    margin-left: 2rem !important;
  }
  .m-lg-25 {
    margin: 2.5rem !important;
  }
  .mt-lg-25,
  .my-lg-25 {
    margin-top: 2.5rem !important;
  }
  .mr-lg-25,
  .mx-lg-25 {
    margin-right: 2.5rem !important;
  }
  .mb-lg-25,
  .my-lg-25 {
    margin-bottom: 2.5rem !important;
  }
  .ml-lg-25,
  .mx-lg-25 {
    margin-left: 2.5rem !important;
  }
  .m-lg-30 {
    margin: 3rem !important;
  }
  .mt-lg-30,
  .my-lg-30 {
    margin-top: 3rem !important;
  }
  .mr-lg-30,
  .mx-lg-30 {
    margin-right: 3rem !important;
  }
  .mb-lg-30,
  .my-lg-30 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-30,
  .mx-lg-30 {
    margin-left: 3rem !important;
  }
  .m-lg-35 {
    margin: 3.5rem !important;
  }
  .mt-lg-35,
  .my-lg-35 {
    margin-top: 3.5rem !important;
  }
  .mr-lg-35,
  .mx-lg-35 {
    margin-right: 3.5rem !important;
  }
  .mb-lg-35,
  .my-lg-35 {
    margin-bottom: 3.5rem !important;
  }
  .ml-lg-35,
  .mx-lg-35 {
    margin-left: 3.5rem !important;
  }
  .m-lg-40 {
    margin: 4rem !important;
  }
  .mt-lg-40,
  .my-lg-40 {
    margin-top: 4rem !important;
  }
  .mr-lg-40,
  .mx-lg-40 {
    margin-right: 4rem !important;
  }
  .mb-lg-40,
  .my-lg-40 {
    margin-bottom: 4rem !important;
  }
  .ml-lg-40,
  .mx-lg-40 {
    margin-left: 4rem !important;
  }
  .m-lg-45 {
    margin: 4.5rem !important;
  }
  .mt-lg-45,
  .my-lg-45 {
    margin-top: 4.5rem !important;
  }
  .mr-lg-45,
  .mx-lg-45 {
    margin-right: 4.5rem !important;
  }
  .mb-lg-45,
  .my-lg-45 {
    margin-bottom: 4.5rem !important;
  }
  .ml-lg-45,
  .mx-lg-45 {
    margin-left: 4.5rem !important;
  }
  .m-lg-50 {
    margin: 5rem !important;
  }
  .mt-lg-50,
  .my-lg-50 {
    margin-top: 5rem !important;
  }
  .mr-lg-50,
  .mx-lg-50 {
    margin-right: 5rem !important;
  }
  .mb-lg-50,
  .my-lg-50 {
    margin-bottom: 5rem !important;
  }
  .ml-lg-50,
  .mx-lg-50 {
    margin-left: 5rem !important;
  }
  .m-lg-55 {
    margin: 5.5rem !important;
  }
  .mt-lg-55,
  .my-lg-55 {
    margin-top: 5.5rem !important;
  }
  .mr-lg-55,
  .mx-lg-55 {
    margin-right: 5.5rem !important;
  }
  .mb-lg-55,
  .my-lg-55 {
    margin-bottom: 5.5rem !important;
  }
  .ml-lg-55,
  .mx-lg-55 {
    margin-left: 5.5rem !important;
  }
  .m-lg-60 {
    margin: 6rem !important;
  }
  .mt-lg-60,
  .my-lg-60 {
    margin-top: 6rem !important;
  }
  .mr-lg-60,
  .mx-lg-60 {
    margin-right: 6rem !important;
  }
  .mb-lg-60,
  .my-lg-60 {
    margin-bottom: 6rem !important;
  }
  .ml-lg-60,
  .mx-lg-60 {
    margin-left: 6rem !important;
  }
  .m-lg-65 {
    margin: 6.5rem !important;
  }
  .mt-lg-65,
  .my-lg-65 {
    margin-top: 6.5rem !important;
  }
  .mr-lg-65,
  .mx-lg-65 {
    margin-right: 6.5rem !important;
  }
  .mb-lg-65,
  .my-lg-65 {
    margin-bottom: 6.5rem !important;
  }
  .ml-lg-65,
  .mx-lg-65 {
    margin-left: 6.5rem !important;
  }
  .m-lg-70 {
    margin: 7rem !important;
  }
  .mt-lg-70,
  .my-lg-70 {
    margin-top: 7rem !important;
  }
  .mr-lg-70,
  .mx-lg-70 {
    margin-right: 7rem !important;
  }
  .mb-lg-70,
  .my-lg-70 {
    margin-bottom: 7rem !important;
  }
  .ml-lg-70,
  .mx-lg-70 {
    margin-left: 7rem !important;
  }
  .m-lg-75 {
    margin: 7.5rem !important;
  }
  .mt-lg-75,
  .my-lg-75 {
    margin-top: 7.5rem !important;
  }
  .mr-lg-75,
  .mx-lg-75 {
    margin-right: 7.5rem !important;
  }
  .mb-lg-75,
  .my-lg-75 {
    margin-bottom: 7.5rem !important;
  }
  .ml-lg-75,
  .mx-lg-75 {
    margin-left: 7.5rem !important;
  }
  .m-lg-80 {
    margin: 8rem !important;
  }
  .mt-lg-80,
  .my-lg-80 {
    margin-top: 8rem !important;
  }
  .mr-lg-80,
  .mx-lg-80 {
    margin-right: 8rem !important;
  }
  .mb-lg-80,
  .my-lg-80 {
    margin-bottom: 8rem !important;
  }
  .ml-lg-80,
  .mx-lg-80 {
    margin-left: 8rem !important;
  }
  .m-lg-85 {
    margin: 8.5rem !important;
  }
  .mt-lg-85,
  .my-lg-85 {
    margin-top: 8.5rem !important;
  }
  .mr-lg-85,
  .mx-lg-85 {
    margin-right: 8.5rem !important;
  }
  .mb-lg-85,
  .my-lg-85 {
    margin-bottom: 8.5rem !important;
  }
  .ml-lg-85,
  .mx-lg-85 {
    margin-left: 8.5rem !important;
  }
  .m-lg-90 {
    margin: 9rem !important;
  }
  .mt-lg-90,
  .my-lg-90 {
    margin-top: 9rem !important;
  }
  .mr-lg-90,
  .mx-lg-90 {
    margin-right: 9rem !important;
  }
  .mb-lg-90,
  .my-lg-90 {
    margin-bottom: 9rem !important;
  }
  .ml-lg-90,
  .mx-lg-90 {
    margin-left: 9rem !important;
  }
  .m-lg-95 {
    margin: 9.5rem !important;
  }
  .mt-lg-95,
  .my-lg-95 {
    margin-top: 9.5rem !important;
  }
  .mr-lg-95,
  .mx-lg-95 {
    margin-right: 9.5rem !important;
  }
  .mb-lg-95,
  .my-lg-95 {
    margin-bottom: 9.5rem !important;
  }
  .ml-lg-95,
  .mx-lg-95 {
    margin-left: 9.5rem !important;
  }
  .m-lg-100 {
    margin: 10rem !important;
  }
  .mt-lg-100,
  .my-lg-100 {
    margin-top: 10rem !important;
  }
  .mr-lg-100,
  .mx-lg-100 {
    margin-right: 10rem !important;
  }
  .mb-lg-100,
  .my-lg-100 {
    margin-bottom: 10rem !important;
  }
  .ml-lg-100,
  .mx-lg-100 {
    margin-left: 10rem !important;
  }
  .m-lg-130 {
    margin: 13rem !important;
  }
  .mt-lg-130,
  .my-lg-130 {
    margin-top: 13rem !important;
  }
  .mr-lg-130,
  .mx-lg-130 {
    margin-right: 13rem !important;
  }
  .mb-lg-130,
  .my-lg-130 {
    margin-bottom: 13rem !important;
  }
  .ml-lg-130,
  .mx-lg-130 {
    margin-left: 13rem !important;
  }
  .m-lg-140 {
    margin: 14rem !important;
  }
  .mt-lg-140,
  .my-lg-140 {
    margin-top: 14rem !important;
  }
  .mr-lg-140,
  .mx-lg-140 {
    margin-right: 14rem !important;
  }
  .mb-lg-140,
  .my-lg-140 {
    margin-bottom: 14rem !important;
  }
  .ml-lg-140,
  .mx-lg-140 {
    margin-left: 14rem !important;
  }
  .m-lg-150 {
    margin: 15rem !important;
  }
  .mt-lg-150,
  .my-lg-150 {
    margin-top: 15rem !important;
  }
  .mr-lg-150,
  .mx-lg-150 {
    margin-right: 15rem !important;
  }
  .mb-lg-150,
  .my-lg-150 {
    margin-bottom: 15rem !important;
  }
  .ml-lg-150,
  .mx-lg-150 {
    margin-left: 15rem !important;
  }
  .m-lg-200 {
    margin: 20rem !important;
  }
  .mt-lg-200,
  .my-lg-200 {
    margin-top: 20rem !important;
  }
  .mr-lg-200,
  .mx-lg-200 {
    margin-right: 20rem !important;
  }
  .mb-lg-200,
  .my-lg-200 {
    margin-bottom: 20rem !important;
  }
  .ml-lg-200,
  .mx-lg-200 {
    margin-left: 20rem !important;
  }
  .m-lg-250 {
    margin: 25rem !important;
  }
  .mt-lg-250,
  .my-lg-250 {
    margin-top: 25rem !important;
  }
  .mr-lg-250,
  .mx-lg-250 {
    margin-right: 25rem !important;
  }
  .mb-lg-250,
  .my-lg-250 {
    margin-bottom: 25rem !important;
  }
  .ml-lg-250,
  .mx-lg-250 {
    margin-left: 25rem !important;
  }
  .m-lg-300 {
    margin: 30rem !important;
  }
  .mt-lg-300,
  .my-lg-300 {
    margin-top: 30rem !important;
  }
  .mr-lg-300,
  .mx-lg-300 {
    margin-right: 30rem !important;
  }
  .mb-lg-300,
  .my-lg-300 {
    margin-bottom: 30rem !important;
  }
  .ml-lg-300,
  .mx-lg-300 {
    margin-left: 30rem !important;
  }
  .m-lg-400 {
    margin: 40rem !important;
  }
  .mt-lg-400,
  .my-lg-400 {
    margin-top: 40rem !important;
  }
  .mr-lg-400,
  .mx-lg-400 {
    margin-right: 40rem !important;
  }
  .mb-lg-400,
  .my-lg-400 {
    margin-bottom: 40rem !important;
  }
  .ml-lg-400,
  .mx-lg-400 {
    margin-left: 40rem !important;
  }
  .m-lg-410 {
    margin: 41rem !important;
  }
  .mt-lg-410,
  .my-lg-410 {
    margin-top: 41rem !important;
  }
  .mr-lg-410,
  .mx-lg-410 {
    margin-right: 41rem !important;
  }
  .mb-lg-410,
  .my-lg-410 {
    margin-bottom: 41rem !important;
  }
  .ml-lg-410,
  .mx-lg-410 {
    margin-left: 41rem !important;
  }
  .m-lg-450 {
    margin: 45rem !important;
  }
  .mt-lg-450,
  .my-lg-450 {
    margin-top: 45rem !important;
  }
  .mr-lg-450,
  .mx-lg-450 {
    margin-right: 45rem !important;
  }
  .mb-lg-450,
  .my-lg-450 {
    margin-bottom: 45rem !important;
  }
  .ml-lg-450,
  .mx-lg-450 {
    margin-left: 45rem !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: 0.1rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.1rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.1rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.1rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.1rem !important;
  }
  .p-lg-2 {
    padding: 0.2rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.2rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.2rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.2rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.2rem !important;
  }
  .p-lg-3 {
    padding: 0.3rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 0.3rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 0.3rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 0.3rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 0.3rem !important;
  }
  .p-lg-4 {
    padding: 0.4rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 0.4rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 0.4rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 0.4rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 0.4rem !important;
  }
  .p-lg-5 {
    padding: 0.5rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 0.5rem !important;
  }
  .p-lg-6 {
    padding: 0.6rem !important;
  }
  .pt-lg-6,
  .py-lg-6 {
    padding-top: 0.6rem !important;
  }
  .pr-lg-6,
  .px-lg-6 {
    padding-right: 0.6rem !important;
  }
  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 0.6rem !important;
  }
  .pl-lg-6,
  .px-lg-6 {
    padding-left: 0.6rem !important;
  }
  .p-lg-7 {
    padding: 0.7rem !important;
  }
  .pt-lg-7,
  .py-lg-7 {
    padding-top: 0.7rem !important;
  }
  .pr-lg-7,
  .px-lg-7 {
    padding-right: 0.7rem !important;
  }
  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 0.7rem !important;
  }
  .pl-lg-7,
  .px-lg-7 {
    padding-left: 0.7rem !important;
  }
  .p-lg-8 {
    padding: 0.8rem !important;
  }
  .pt-lg-8,
  .py-lg-8 {
    padding-top: 0.8rem !important;
  }
  .pr-lg-8,
  .px-lg-8 {
    padding-right: 0.8rem !important;
  }
  .pb-lg-8,
  .py-lg-8 {
    padding-bottom: 0.8rem !important;
  }
  .pl-lg-8,
  .px-lg-8 {
    padding-left: 0.8rem !important;
  }
  .p-lg-9 {
    padding: 0.9rem !important;
  }
  .pt-lg-9,
  .py-lg-9 {
    padding-top: 0.9rem !important;
  }
  .pr-lg-9,
  .px-lg-9 {
    padding-right: 0.9rem !important;
  }
  .pb-lg-9,
  .py-lg-9 {
    padding-bottom: 0.9rem !important;
  }
  .pl-lg-9,
  .px-lg-9 {
    padding-left: 0.9rem !important;
  }
  .p-lg-10 {
    padding: 1rem !important;
  }
  .pt-lg-10,
  .py-lg-10 {
    padding-top: 1rem !important;
  }
  .pr-lg-10,
  .px-lg-10 {
    padding-right: 1rem !important;
  }
  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-10,
  .px-lg-10 {
    padding-left: 1rem !important;
  }
  .p-lg-11 {
    padding: 1.1rem !important;
  }
  .pt-lg-11,
  .py-lg-11 {
    padding-top: 1.1rem !important;
  }
  .pr-lg-11,
  .px-lg-11 {
    padding-right: 1.1rem !important;
  }
  .pb-lg-11,
  .py-lg-11 {
    padding-bottom: 1.1rem !important;
  }
  .pl-lg-11,
  .px-lg-11 {
    padding-left: 1.1rem !important;
  }
  .p-lg-12 {
    padding: 1.2rem !important;
  }
  .pt-lg-12,
  .py-lg-12 {
    padding-top: 1.2rem !important;
  }
  .pr-lg-12,
  .px-lg-12 {
    padding-right: 1.2rem !important;
  }
  .pb-lg-12,
  .py-lg-12 {
    padding-bottom: 1.2rem !important;
  }
  .pl-lg-12,
  .px-lg-12 {
    padding-left: 1.2rem !important;
  }
  .p-lg-13 {
    padding: 1.3rem !important;
  }
  .pt-lg-13,
  .py-lg-13 {
    padding-top: 1.3rem !important;
  }
  .pr-lg-13,
  .px-lg-13 {
    padding-right: 1.3rem !important;
  }
  .pb-lg-13,
  .py-lg-13 {
    padding-bottom: 1.3rem !important;
  }
  .pl-lg-13,
  .px-lg-13 {
    padding-left: 1.3rem !important;
  }
  .p-lg-14 {
    padding: 1.4rem !important;
  }
  .pt-lg-14,
  .py-lg-14 {
    padding-top: 1.4rem !important;
  }
  .pr-lg-14,
  .px-lg-14 {
    padding-right: 1.4rem !important;
  }
  .pb-lg-14,
  .py-lg-14 {
    padding-bottom: 1.4rem !important;
  }
  .pl-lg-14,
  .px-lg-14 {
    padding-left: 1.4rem !important;
  }
  .p-lg-15 {
    padding: 1.5rem !important;
  }
  .pt-lg-15,
  .py-lg-15 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-15,
  .px-lg-15 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-15,
  .py-lg-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-15,
  .px-lg-15 {
    padding-left: 1.5rem !important;
  }
  .p-lg-16 {
    padding: 1.6rem !important;
  }
  .pt-lg-16,
  .py-lg-16 {
    padding-top: 1.6rem !important;
  }
  .pr-lg-16,
  .px-lg-16 {
    padding-right: 1.6rem !important;
  }
  .pb-lg-16,
  .py-lg-16 {
    padding-bottom: 1.6rem !important;
  }
  .pl-lg-16,
  .px-lg-16 {
    padding-left: 1.6rem !important;
  }
  .p-lg-17 {
    padding: 1.7rem !important;
  }
  .pt-lg-17,
  .py-lg-17 {
    padding-top: 1.7rem !important;
  }
  .pr-lg-17,
  .px-lg-17 {
    padding-right: 1.7rem !important;
  }
  .pb-lg-17,
  .py-lg-17 {
    padding-bottom: 1.7rem !important;
  }
  .pl-lg-17,
  .px-lg-17 {
    padding-left: 1.7rem !important;
  }
  .p-lg-18 {
    padding: 1.8rem !important;
  }
  .pt-lg-18,
  .py-lg-18 {
    padding-top: 1.8rem !important;
  }
  .pr-lg-18,
  .px-lg-18 {
    padding-right: 1.8rem !important;
  }
  .pb-lg-18,
  .py-lg-18 {
    padding-bottom: 1.8rem !important;
  }
  .pl-lg-18,
  .px-lg-18 {
    padding-left: 1.8rem !important;
  }
  .p-lg-19 {
    padding: 1.9rem !important;
  }
  .pt-lg-19,
  .py-lg-19 {
    padding-top: 1.9rem !important;
  }
  .pr-lg-19,
  .px-lg-19 {
    padding-right: 1.9rem !important;
  }
  .pb-lg-19,
  .py-lg-19 {
    padding-bottom: 1.9rem !important;
  }
  .pl-lg-19,
  .px-lg-19 {
    padding-left: 1.9rem !important;
  }
  .p-lg-20 {
    padding: 2rem !important;
  }
  .pt-lg-20,
  .py-lg-20 {
    padding-top: 2rem !important;
  }
  .pr-lg-20,
  .px-lg-20 {
    padding-right: 2rem !important;
  }
  .pb-lg-20,
  .py-lg-20 {
    padding-bottom: 2rem !important;
  }
  .pl-lg-20,
  .px-lg-20 {
    padding-left: 2rem !important;
  }
  .p-lg-25 {
    padding: 2.5rem !important;
  }
  .pt-lg-25,
  .py-lg-25 {
    padding-top: 2.5rem !important;
  }
  .pr-lg-25,
  .px-lg-25 {
    padding-right: 2.5rem !important;
  }
  .pb-lg-25,
  .py-lg-25 {
    padding-bottom: 2.5rem !important;
  }
  .pl-lg-25,
  .px-lg-25 {
    padding-left: 2.5rem !important;
  }
  .p-lg-30 {
    padding: 3rem !important;
  }
  .pt-lg-30,
  .py-lg-30 {
    padding-top: 3rem !important;
  }
  .pr-lg-30,
  .px-lg-30 {
    padding-right: 3rem !important;
  }
  .pb-lg-30,
  .py-lg-30 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-30,
  .px-lg-30 {
    padding-left: 3rem !important;
  }
  .p-lg-35 {
    padding: 3.5rem !important;
  }
  .pt-lg-35,
  .py-lg-35 {
    padding-top: 3.5rem !important;
  }
  .pr-lg-35,
  .px-lg-35 {
    padding-right: 3.5rem !important;
  }
  .pb-lg-35,
  .py-lg-35 {
    padding-bottom: 3.5rem !important;
  }
  .pl-lg-35,
  .px-lg-35 {
    padding-left: 3.5rem !important;
  }
  .p-lg-40 {
    padding: 4rem !important;
  }
  .pt-lg-40,
  .py-lg-40 {
    padding-top: 4rem !important;
  }
  .pr-lg-40,
  .px-lg-40 {
    padding-right: 4rem !important;
  }
  .pb-lg-40,
  .py-lg-40 {
    padding-bottom: 4rem !important;
  }
  .pl-lg-40,
  .px-lg-40 {
    padding-left: 4rem !important;
  }
  .p-lg-45 {
    padding: 4.5rem !important;
  }
  .pt-lg-45,
  .py-lg-45 {
    padding-top: 4.5rem !important;
  }
  .pr-lg-45,
  .px-lg-45 {
    padding-right: 4.5rem !important;
  }
  .pb-lg-45,
  .py-lg-45 {
    padding-bottom: 4.5rem !important;
  }
  .pl-lg-45,
  .px-lg-45 {
    padding-left: 4.5rem !important;
  }
  .p-lg-50 {
    padding: 5rem !important;
  }
  .pt-lg-50,
  .py-lg-50 {
    padding-top: 5rem !important;
  }
  .pr-lg-50,
  .px-lg-50 {
    padding-right: 5rem !important;
  }
  .pb-lg-50,
  .py-lg-50 {
    padding-bottom: 5rem !important;
  }
  .pl-lg-50,
  .px-lg-50 {
    padding-left: 5rem !important;
  }
  .p-lg-55 {
    padding: 5.5rem !important;
  }
  .pt-lg-55,
  .py-lg-55 {
    padding-top: 5.5rem !important;
  }
  .pr-lg-55,
  .px-lg-55 {
    padding-right: 5.5rem !important;
  }
  .pb-lg-55,
  .py-lg-55 {
    padding-bottom: 5.5rem !important;
  }
  .pl-lg-55,
  .px-lg-55 {
    padding-left: 5.5rem !important;
  }
  .p-lg-60 {
    padding: 6rem !important;
  }
  .pt-lg-60,
  .py-lg-60 {
    padding-top: 6rem !important;
  }
  .pr-lg-60,
  .px-lg-60 {
    padding-right: 6rem !important;
  }
  .pb-lg-60,
  .py-lg-60 {
    padding-bottom: 6rem !important;
  }
  .pl-lg-60,
  .px-lg-60 {
    padding-left: 6rem !important;
  }
  .p-lg-65 {
    padding: 6.5rem !important;
  }
  .pt-lg-65,
  .py-lg-65 {
    padding-top: 6.5rem !important;
  }
  .pr-lg-65,
  .px-lg-65 {
    padding-right: 6.5rem !important;
  }
  .pb-lg-65,
  .py-lg-65 {
    padding-bottom: 6.5rem !important;
  }
  .pl-lg-65,
  .px-lg-65 {
    padding-left: 6.5rem !important;
  }
  .p-lg-70 {
    padding: 7rem !important;
  }
  .pt-lg-70,
  .py-lg-70 {
    padding-top: 7rem !important;
  }
  .pr-lg-70,
  .px-lg-70 {
    padding-right: 7rem !important;
  }
  .pb-lg-70,
  .py-lg-70 {
    padding-bottom: 7rem !important;
  }
  .pl-lg-70,
  .px-lg-70 {
    padding-left: 7rem !important;
  }
  .p-lg-75 {
    padding: 7.5rem !important;
  }
  .pt-lg-75,
  .py-lg-75 {
    padding-top: 7.5rem !important;
  }
  .pr-lg-75,
  .px-lg-75 {
    padding-right: 7.5rem !important;
  }
  .pb-lg-75,
  .py-lg-75 {
    padding-bottom: 7.5rem !important;
  }
  .pl-lg-75,
  .px-lg-75 {
    padding-left: 7.5rem !important;
  }
  .p-lg-80 {
    padding: 8rem !important;
  }
  .pt-lg-80,
  .py-lg-80 {
    padding-top: 8rem !important;
  }
  .pr-lg-80,
  .px-lg-80 {
    padding-right: 8rem !important;
  }
  .pb-lg-80,
  .py-lg-80 {
    padding-bottom: 8rem !important;
  }
  .pl-lg-80,
  .px-lg-80 {
    padding-left: 8rem !important;
  }
  .p-lg-85 {
    padding: 8.5rem !important;
  }
  .pt-lg-85,
  .py-lg-85 {
    padding-top: 8.5rem !important;
  }
  .pr-lg-85,
  .px-lg-85 {
    padding-right: 8.5rem !important;
  }
  .pb-lg-85,
  .py-lg-85 {
    padding-bottom: 8.5rem !important;
  }
  .pl-lg-85,
  .px-lg-85 {
    padding-left: 8.5rem !important;
  }
  .p-lg-90 {
    padding: 9rem !important;
  }
  .pt-lg-90,
  .py-lg-90 {
    padding-top: 9rem !important;
  }
  .pr-lg-90,
  .px-lg-90 {
    padding-right: 9rem !important;
  }
  .pb-lg-90,
  .py-lg-90 {
    padding-bottom: 9rem !important;
  }
  .pl-lg-90,
  .px-lg-90 {
    padding-left: 9rem !important;
  }
  .p-lg-95 {
    padding: 9.5rem !important;
  }
  .pt-lg-95,
  .py-lg-95 {
    padding-top: 9.5rem !important;
  }
  .pr-lg-95,
  .px-lg-95 {
    padding-right: 9.5rem !important;
  }
  .pb-lg-95,
  .py-lg-95 {
    padding-bottom: 9.5rem !important;
  }
  .pl-lg-95,
  .px-lg-95 {
    padding-left: 9.5rem !important;
  }
  .p-lg-100 {
    padding: 10rem !important;
  }
  .pt-lg-100,
  .py-lg-100 {
    padding-top: 10rem !important;
  }
  .pr-lg-100,
  .px-lg-100 {
    padding-right: 10rem !important;
  }
  .pb-lg-100,
  .py-lg-100 {
    padding-bottom: 10rem !important;
  }
  .pl-lg-100,
  .px-lg-100 {
    padding-left: 10rem !important;
  }
  .p-lg-130 {
    padding: 13rem !important;
  }
  .pt-lg-130,
  .py-lg-130 {
    padding-top: 13rem !important;
  }
  .pr-lg-130,
  .px-lg-130 {
    padding-right: 13rem !important;
  }
  .pb-lg-130,
  .py-lg-130 {
    padding-bottom: 13rem !important;
  }
  .pl-lg-130,
  .px-lg-130 {
    padding-left: 13rem !important;
  }
  .p-lg-140 {
    padding: 14rem !important;
  }
  .pt-lg-140,
  .py-lg-140 {
    padding-top: 14rem !important;
  }
  .pr-lg-140,
  .px-lg-140 {
    padding-right: 14rem !important;
  }
  .pb-lg-140,
  .py-lg-140 {
    padding-bottom: 14rem !important;
  }
  .pl-lg-140,
  .px-lg-140 {
    padding-left: 14rem !important;
  }
  .p-lg-150 {
    padding: 15rem !important;
  }
  .pt-lg-150,
  .py-lg-150 {
    padding-top: 15rem !important;
  }
  .pr-lg-150,
  .px-lg-150 {
    padding-right: 15rem !important;
  }
  .pb-lg-150,
  .py-lg-150 {
    padding-bottom: 15rem !important;
  }
  .pl-lg-150,
  .px-lg-150 {
    padding-left: 15rem !important;
  }
  .p-lg-200 {
    padding: 20rem !important;
  }
  .pt-lg-200,
  .py-lg-200 {
    padding-top: 20rem !important;
  }
  .pr-lg-200,
  .px-lg-200 {
    padding-right: 20rem !important;
  }
  .pb-lg-200,
  .py-lg-200 {
    padding-bottom: 20rem !important;
  }
  .pl-lg-200,
  .px-lg-200 {
    padding-left: 20rem !important;
  }
  .p-lg-250 {
    padding: 25rem !important;
  }
  .pt-lg-250,
  .py-lg-250 {
    padding-top: 25rem !important;
  }
  .pr-lg-250,
  .px-lg-250 {
    padding-right: 25rem !important;
  }
  .pb-lg-250,
  .py-lg-250 {
    padding-bottom: 25rem !important;
  }
  .pl-lg-250,
  .px-lg-250 {
    padding-left: 25rem !important;
  }
  .p-lg-300 {
    padding: 30rem !important;
  }
  .pt-lg-300,
  .py-lg-300 {
    padding-top: 30rem !important;
  }
  .pr-lg-300,
  .px-lg-300 {
    padding-right: 30rem !important;
  }
  .pb-lg-300,
  .py-lg-300 {
    padding-bottom: 30rem !important;
  }
  .pl-lg-300,
  .px-lg-300 {
    padding-left: 30rem !important;
  }
  .p-lg-400 {
    padding: 40rem !important;
  }
  .pt-lg-400,
  .py-lg-400 {
    padding-top: 40rem !important;
  }
  .pr-lg-400,
  .px-lg-400 {
    padding-right: 40rem !important;
  }
  .pb-lg-400,
  .py-lg-400 {
    padding-bottom: 40rem !important;
  }
  .pl-lg-400,
  .px-lg-400 {
    padding-left: 40rem !important;
  }
  .p-lg-410 {
    padding: 41rem !important;
  }
  .pt-lg-410,
  .py-lg-410 {
    padding-top: 41rem !important;
  }
  .pr-lg-410,
  .px-lg-410 {
    padding-right: 41rem !important;
  }
  .pb-lg-410,
  .py-lg-410 {
    padding-bottom: 41rem !important;
  }
  .pl-lg-410,
  .px-lg-410 {
    padding-left: 41rem !important;
  }
  .p-lg-450 {
    padding: 45rem !important;
  }
  .pt-lg-450,
  .py-lg-450 {
    padding-top: 45rem !important;
  }
  .pr-lg-450,
  .px-lg-450 {
    padding-right: 45rem !important;
  }
  .pb-lg-450,
  .py-lg-450 {
    padding-bottom: 45rem !important;
  }
  .pl-lg-450,
  .px-lg-450 {
    padding-left: 45rem !important;
  }
  .m-lg-n1 {
    margin: -0.1rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.1rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.1rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.1rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.1rem !important;
  }
  .m-lg-n2 {
    margin: -0.2rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.2rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.2rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.2rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.2rem !important;
  }
  .m-lg-n3 {
    margin: -0.3rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -0.3rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -0.3rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -0.3rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -0.3rem !important;
  }
  .m-lg-n4 {
    margin: -0.4rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -0.4rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -0.4rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -0.4rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -0.4rem !important;
  }
  .m-lg-n5 {
    margin: -0.5rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n6 {
    margin: -0.6rem !important;
  }
  .mt-lg-n6,
  .my-lg-n6 {
    margin-top: -0.6rem !important;
  }
  .mr-lg-n6,
  .mx-lg-n6 {
    margin-right: -0.6rem !important;
  }
  .mb-lg-n6,
  .my-lg-n6 {
    margin-bottom: -0.6rem !important;
  }
  .ml-lg-n6,
  .mx-lg-n6 {
    margin-left: -0.6rem !important;
  }
  .m-lg-n7 {
    margin: -0.7rem !important;
  }
  .mt-lg-n7,
  .my-lg-n7 {
    margin-top: -0.7rem !important;
  }
  .mr-lg-n7,
  .mx-lg-n7 {
    margin-right: -0.7rem !important;
  }
  .mb-lg-n7,
  .my-lg-n7 {
    margin-bottom: -0.7rem !important;
  }
  .ml-lg-n7,
  .mx-lg-n7 {
    margin-left: -0.7rem !important;
  }
  .m-lg-n8 {
    margin: -0.8rem !important;
  }
  .mt-lg-n8,
  .my-lg-n8 {
    margin-top: -0.8rem !important;
  }
  .mr-lg-n8,
  .mx-lg-n8 {
    margin-right: -0.8rem !important;
  }
  .mb-lg-n8,
  .my-lg-n8 {
    margin-bottom: -0.8rem !important;
  }
  .ml-lg-n8,
  .mx-lg-n8 {
    margin-left: -0.8rem !important;
  }
  .m-lg-n9 {
    margin: -0.9rem !important;
  }
  .mt-lg-n9,
  .my-lg-n9 {
    margin-top: -0.9rem !important;
  }
  .mr-lg-n9,
  .mx-lg-n9 {
    margin-right: -0.9rem !important;
  }
  .mb-lg-n9,
  .my-lg-n9 {
    margin-bottom: -0.9rem !important;
  }
  .ml-lg-n9,
  .mx-lg-n9 {
    margin-left: -0.9rem !important;
  }
  .m-lg-n10 {
    margin: -1rem !important;
  }
  .mt-lg-n10,
  .my-lg-n10 {
    margin-top: -1rem !important;
  }
  .mr-lg-n10,
  .mx-lg-n10 {
    margin-right: -1rem !important;
  }
  .mb-lg-n10,
  .my-lg-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n10,
  .mx-lg-n10 {
    margin-left: -1rem !important;
  }
  .m-lg-n11 {
    margin: -1.1rem !important;
  }
  .mt-lg-n11,
  .my-lg-n11 {
    margin-top: -1.1rem !important;
  }
  .mr-lg-n11,
  .mx-lg-n11 {
    margin-right: -1.1rem !important;
  }
  .mb-lg-n11,
  .my-lg-n11 {
    margin-bottom: -1.1rem !important;
  }
  .ml-lg-n11,
  .mx-lg-n11 {
    margin-left: -1.1rem !important;
  }
  .m-lg-n12 {
    margin: -1.2rem !important;
  }
  .mt-lg-n12,
  .my-lg-n12 {
    margin-top: -1.2rem !important;
  }
  .mr-lg-n12,
  .mx-lg-n12 {
    margin-right: -1.2rem !important;
  }
  .mb-lg-n12,
  .my-lg-n12 {
    margin-bottom: -1.2rem !important;
  }
  .ml-lg-n12,
  .mx-lg-n12 {
    margin-left: -1.2rem !important;
  }
  .m-lg-n13 {
    margin: -1.3rem !important;
  }
  .mt-lg-n13,
  .my-lg-n13 {
    margin-top: -1.3rem !important;
  }
  .mr-lg-n13,
  .mx-lg-n13 {
    margin-right: -1.3rem !important;
  }
  .mb-lg-n13,
  .my-lg-n13 {
    margin-bottom: -1.3rem !important;
  }
  .ml-lg-n13,
  .mx-lg-n13 {
    margin-left: -1.3rem !important;
  }
  .m-lg-n14 {
    margin: -1.4rem !important;
  }
  .mt-lg-n14,
  .my-lg-n14 {
    margin-top: -1.4rem !important;
  }
  .mr-lg-n14,
  .mx-lg-n14 {
    margin-right: -1.4rem !important;
  }
  .mb-lg-n14,
  .my-lg-n14 {
    margin-bottom: -1.4rem !important;
  }
  .ml-lg-n14,
  .mx-lg-n14 {
    margin-left: -1.4rem !important;
  }
  .m-lg-n15 {
    margin: -1.5rem !important;
  }
  .mt-lg-n15,
  .my-lg-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n15,
  .mx-lg-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n15,
  .my-lg-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n15,
  .mx-lg-n15 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n16 {
    margin: -1.6rem !important;
  }
  .mt-lg-n16,
  .my-lg-n16 {
    margin-top: -1.6rem !important;
  }
  .mr-lg-n16,
  .mx-lg-n16 {
    margin-right: -1.6rem !important;
  }
  .mb-lg-n16,
  .my-lg-n16 {
    margin-bottom: -1.6rem !important;
  }
  .ml-lg-n16,
  .mx-lg-n16 {
    margin-left: -1.6rem !important;
  }
  .m-lg-n17 {
    margin: -1.7rem !important;
  }
  .mt-lg-n17,
  .my-lg-n17 {
    margin-top: -1.7rem !important;
  }
  .mr-lg-n17,
  .mx-lg-n17 {
    margin-right: -1.7rem !important;
  }
  .mb-lg-n17,
  .my-lg-n17 {
    margin-bottom: -1.7rem !important;
  }
  .ml-lg-n17,
  .mx-lg-n17 {
    margin-left: -1.7rem !important;
  }
  .m-lg-n18 {
    margin: -1.8rem !important;
  }
  .mt-lg-n18,
  .my-lg-n18 {
    margin-top: -1.8rem !important;
  }
  .mr-lg-n18,
  .mx-lg-n18 {
    margin-right: -1.8rem !important;
  }
  .mb-lg-n18,
  .my-lg-n18 {
    margin-bottom: -1.8rem !important;
  }
  .ml-lg-n18,
  .mx-lg-n18 {
    margin-left: -1.8rem !important;
  }
  .m-lg-n19 {
    margin: -1.9rem !important;
  }
  .mt-lg-n19,
  .my-lg-n19 {
    margin-top: -1.9rem !important;
  }
  .mr-lg-n19,
  .mx-lg-n19 {
    margin-right: -1.9rem !important;
  }
  .mb-lg-n19,
  .my-lg-n19 {
    margin-bottom: -1.9rem !important;
  }
  .ml-lg-n19,
  .mx-lg-n19 {
    margin-left: -1.9rem !important;
  }
  .m-lg-n20 {
    margin: -2rem !important;
  }
  .mt-lg-n20,
  .my-lg-n20 {
    margin-top: -2rem !important;
  }
  .mr-lg-n20,
  .mx-lg-n20 {
    margin-right: -2rem !important;
  }
  .mb-lg-n20,
  .my-lg-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-lg-n20,
  .mx-lg-n20 {
    margin-left: -2rem !important;
  }
  .m-lg-n25 {
    margin: -2.5rem !important;
  }
  .mt-lg-n25,
  .my-lg-n25 {
    margin-top: -2.5rem !important;
  }
  .mr-lg-n25,
  .mx-lg-n25 {
    margin-right: -2.5rem !important;
  }
  .mb-lg-n25,
  .my-lg-n25 {
    margin-bottom: -2.5rem !important;
  }
  .ml-lg-n25,
  .mx-lg-n25 {
    margin-left: -2.5rem !important;
  }
  .m-lg-n30 {
    margin: -3rem !important;
  }
  .mt-lg-n30,
  .my-lg-n30 {
    margin-top: -3rem !important;
  }
  .mr-lg-n30,
  .mx-lg-n30 {
    margin-right: -3rem !important;
  }
  .mb-lg-n30,
  .my-lg-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n30,
  .mx-lg-n30 {
    margin-left: -3rem !important;
  }
  .m-lg-n35 {
    margin: -3.5rem !important;
  }
  .mt-lg-n35,
  .my-lg-n35 {
    margin-top: -3.5rem !important;
  }
  .mr-lg-n35,
  .mx-lg-n35 {
    margin-right: -3.5rem !important;
  }
  .mb-lg-n35,
  .my-lg-n35 {
    margin-bottom: -3.5rem !important;
  }
  .ml-lg-n35,
  .mx-lg-n35 {
    margin-left: -3.5rem !important;
  }
  .m-lg-n40 {
    margin: -4rem !important;
  }
  .mt-lg-n40,
  .my-lg-n40 {
    margin-top: -4rem !important;
  }
  .mr-lg-n40,
  .mx-lg-n40 {
    margin-right: -4rem !important;
  }
  .mb-lg-n40,
  .my-lg-n40 {
    margin-bottom: -4rem !important;
  }
  .ml-lg-n40,
  .mx-lg-n40 {
    margin-left: -4rem !important;
  }
  .m-lg-n45 {
    margin: -4.5rem !important;
  }
  .mt-lg-n45,
  .my-lg-n45 {
    margin-top: -4.5rem !important;
  }
  .mr-lg-n45,
  .mx-lg-n45 {
    margin-right: -4.5rem !important;
  }
  .mb-lg-n45,
  .my-lg-n45 {
    margin-bottom: -4.5rem !important;
  }
  .ml-lg-n45,
  .mx-lg-n45 {
    margin-left: -4.5rem !important;
  }
  .m-lg-n50 {
    margin: -5rem !important;
  }
  .mt-lg-n50,
  .my-lg-n50 {
    margin-top: -5rem !important;
  }
  .mr-lg-n50,
  .mx-lg-n50 {
    margin-right: -5rem !important;
  }
  .mb-lg-n50,
  .my-lg-n50 {
    margin-bottom: -5rem !important;
  }
  .ml-lg-n50,
  .mx-lg-n50 {
    margin-left: -5rem !important;
  }
  .m-lg-n55 {
    margin: -5.5rem !important;
  }
  .mt-lg-n55,
  .my-lg-n55 {
    margin-top: -5.5rem !important;
  }
  .mr-lg-n55,
  .mx-lg-n55 {
    margin-right: -5.5rem !important;
  }
  .mb-lg-n55,
  .my-lg-n55 {
    margin-bottom: -5.5rem !important;
  }
  .ml-lg-n55,
  .mx-lg-n55 {
    margin-left: -5.5rem !important;
  }
  .m-lg-n60 {
    margin: -6rem !important;
  }
  .mt-lg-n60,
  .my-lg-n60 {
    margin-top: -6rem !important;
  }
  .mr-lg-n60,
  .mx-lg-n60 {
    margin-right: -6rem !important;
  }
  .mb-lg-n60,
  .my-lg-n60 {
    margin-bottom: -6rem !important;
  }
  .ml-lg-n60,
  .mx-lg-n60 {
    margin-left: -6rem !important;
  }
  .m-lg-n65 {
    margin: -6.5rem !important;
  }
  .mt-lg-n65,
  .my-lg-n65 {
    margin-top: -6.5rem !important;
  }
  .mr-lg-n65,
  .mx-lg-n65 {
    margin-right: -6.5rem !important;
  }
  .mb-lg-n65,
  .my-lg-n65 {
    margin-bottom: -6.5rem !important;
  }
  .ml-lg-n65,
  .mx-lg-n65 {
    margin-left: -6.5rem !important;
  }
  .m-lg-n70 {
    margin: -7rem !important;
  }
  .mt-lg-n70,
  .my-lg-n70 {
    margin-top: -7rem !important;
  }
  .mr-lg-n70,
  .mx-lg-n70 {
    margin-right: -7rem !important;
  }
  .mb-lg-n70,
  .my-lg-n70 {
    margin-bottom: -7rem !important;
  }
  .ml-lg-n70,
  .mx-lg-n70 {
    margin-left: -7rem !important;
  }
  .m-lg-n75 {
    margin: -7.5rem !important;
  }
  .mt-lg-n75,
  .my-lg-n75 {
    margin-top: -7.5rem !important;
  }
  .mr-lg-n75,
  .mx-lg-n75 {
    margin-right: -7.5rem !important;
  }
  .mb-lg-n75,
  .my-lg-n75 {
    margin-bottom: -7.5rem !important;
  }
  .ml-lg-n75,
  .mx-lg-n75 {
    margin-left: -7.5rem !important;
  }
  .m-lg-n80 {
    margin: -8rem !important;
  }
  .mt-lg-n80,
  .my-lg-n80 {
    margin-top: -8rem !important;
  }
  .mr-lg-n80,
  .mx-lg-n80 {
    margin-right: -8rem !important;
  }
  .mb-lg-n80,
  .my-lg-n80 {
    margin-bottom: -8rem !important;
  }
  .ml-lg-n80,
  .mx-lg-n80 {
    margin-left: -8rem !important;
  }
  .m-lg-n85 {
    margin: -8.5rem !important;
  }
  .mt-lg-n85,
  .my-lg-n85 {
    margin-top: -8.5rem !important;
  }
  .mr-lg-n85,
  .mx-lg-n85 {
    margin-right: -8.5rem !important;
  }
  .mb-lg-n85,
  .my-lg-n85 {
    margin-bottom: -8.5rem !important;
  }
  .ml-lg-n85,
  .mx-lg-n85 {
    margin-left: -8.5rem !important;
  }
  .m-lg-n90 {
    margin: -9rem !important;
  }
  .mt-lg-n90,
  .my-lg-n90 {
    margin-top: -9rem !important;
  }
  .mr-lg-n90,
  .mx-lg-n90 {
    margin-right: -9rem !important;
  }
  .mb-lg-n90,
  .my-lg-n90 {
    margin-bottom: -9rem !important;
  }
  .ml-lg-n90,
  .mx-lg-n90 {
    margin-left: -9rem !important;
  }
  .m-lg-n95 {
    margin: -9.5rem !important;
  }
  .mt-lg-n95,
  .my-lg-n95 {
    margin-top: -9.5rem !important;
  }
  .mr-lg-n95,
  .mx-lg-n95 {
    margin-right: -9.5rem !important;
  }
  .mb-lg-n95,
  .my-lg-n95 {
    margin-bottom: -9.5rem !important;
  }
  .ml-lg-n95,
  .mx-lg-n95 {
    margin-left: -9.5rem !important;
  }
  .m-lg-n100 {
    margin: -10rem !important;
  }
  .mt-lg-n100,
  .my-lg-n100 {
    margin-top: -10rem !important;
  }
  .mr-lg-n100,
  .mx-lg-n100 {
    margin-right: -10rem !important;
  }
  .mb-lg-n100,
  .my-lg-n100 {
    margin-bottom: -10rem !important;
  }
  .ml-lg-n100,
  .mx-lg-n100 {
    margin-left: -10rem !important;
  }
  .m-lg-n130 {
    margin: -13rem !important;
  }
  .mt-lg-n130,
  .my-lg-n130 {
    margin-top: -13rem !important;
  }
  .mr-lg-n130,
  .mx-lg-n130 {
    margin-right: -13rem !important;
  }
  .mb-lg-n130,
  .my-lg-n130 {
    margin-bottom: -13rem !important;
  }
  .ml-lg-n130,
  .mx-lg-n130 {
    margin-left: -13rem !important;
  }
  .m-lg-n140 {
    margin: -14rem !important;
  }
  .mt-lg-n140,
  .my-lg-n140 {
    margin-top: -14rem !important;
  }
  .mr-lg-n140,
  .mx-lg-n140 {
    margin-right: -14rem !important;
  }
  .mb-lg-n140,
  .my-lg-n140 {
    margin-bottom: -14rem !important;
  }
  .ml-lg-n140,
  .mx-lg-n140 {
    margin-left: -14rem !important;
  }
  .m-lg-n150 {
    margin: -15rem !important;
  }
  .mt-lg-n150,
  .my-lg-n150 {
    margin-top: -15rem !important;
  }
  .mr-lg-n150,
  .mx-lg-n150 {
    margin-right: -15rem !important;
  }
  .mb-lg-n150,
  .my-lg-n150 {
    margin-bottom: -15rem !important;
  }
  .ml-lg-n150,
  .mx-lg-n150 {
    margin-left: -15rem !important;
  }
  .m-lg-n200 {
    margin: -20rem !important;
  }
  .mt-lg-n200,
  .my-lg-n200 {
    margin-top: -20rem !important;
  }
  .mr-lg-n200,
  .mx-lg-n200 {
    margin-right: -20rem !important;
  }
  .mb-lg-n200,
  .my-lg-n200 {
    margin-bottom: -20rem !important;
  }
  .ml-lg-n200,
  .mx-lg-n200 {
    margin-left: -20rem !important;
  }
  .m-lg-n250 {
    margin: -25rem !important;
  }
  .mt-lg-n250,
  .my-lg-n250 {
    margin-top: -25rem !important;
  }
  .mr-lg-n250,
  .mx-lg-n250 {
    margin-right: -25rem !important;
  }
  .mb-lg-n250,
  .my-lg-n250 {
    margin-bottom: -25rem !important;
  }
  .ml-lg-n250,
  .mx-lg-n250 {
    margin-left: -25rem !important;
  }
  .m-lg-n300 {
    margin: -30rem !important;
  }
  .mt-lg-n300,
  .my-lg-n300 {
    margin-top: -30rem !important;
  }
  .mr-lg-n300,
  .mx-lg-n300 {
    margin-right: -30rem !important;
  }
  .mb-lg-n300,
  .my-lg-n300 {
    margin-bottom: -30rem !important;
  }
  .ml-lg-n300,
  .mx-lg-n300 {
    margin-left: -30rem !important;
  }
  .m-lg-n400 {
    margin: -40rem !important;
  }
  .mt-lg-n400,
  .my-lg-n400 {
    margin-top: -40rem !important;
  }
  .mr-lg-n400,
  .mx-lg-n400 {
    margin-right: -40rem !important;
  }
  .mb-lg-n400,
  .my-lg-n400 {
    margin-bottom: -40rem !important;
  }
  .ml-lg-n400,
  .mx-lg-n400 {
    margin-left: -40rem !important;
  }
  .m-lg-n410 {
    margin: -41rem !important;
  }
  .mt-lg-n410,
  .my-lg-n410 {
    margin-top: -41rem !important;
  }
  .mr-lg-n410,
  .mx-lg-n410 {
    margin-right: -41rem !important;
  }
  .mb-lg-n410,
  .my-lg-n410 {
    margin-bottom: -41rem !important;
  }
  .ml-lg-n410,
  .mx-lg-n410 {
    margin-left: -41rem !important;
  }
  .m-lg-n450 {
    margin: -45rem !important;
  }
  .mt-lg-n450,
  .my-lg-n450 {
    margin-top: -45rem !important;
  }
  .mr-lg-n450,
  .mx-lg-n450 {
    margin-right: -45rem !important;
  }
  .mb-lg-n450,
  .my-lg-n450 {
    margin-bottom: -45rem !important;
  }
  .ml-lg-n450,
  .mx-lg-n450 {
    margin-left: -45rem !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: 0.1rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.1rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.1rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.1rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.1rem !important;
  }
  .m-xl-2 {
    margin: 0.2rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.2rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.2rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.2rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.2rem !important;
  }
  .m-xl-3 {
    margin: 0.3rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 0.3rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 0.3rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 0.3rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 0.3rem !important;
  }
  .m-xl-4 {
    margin: 0.4rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 0.4rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 0.4rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 0.4rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 0.4rem !important;
  }
  .m-xl-5 {
    margin: 0.5rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 0.5rem !important;
  }
  .m-xl-6 {
    margin: 0.6rem !important;
  }
  .mt-xl-6,
  .my-xl-6 {
    margin-top: 0.6rem !important;
  }
  .mr-xl-6,
  .mx-xl-6 {
    margin-right: 0.6rem !important;
  }
  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 0.6rem !important;
  }
  .ml-xl-6,
  .mx-xl-6 {
    margin-left: 0.6rem !important;
  }
  .m-xl-7 {
    margin: 0.7rem !important;
  }
  .mt-xl-7,
  .my-xl-7 {
    margin-top: 0.7rem !important;
  }
  .mr-xl-7,
  .mx-xl-7 {
    margin-right: 0.7rem !important;
  }
  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 0.7rem !important;
  }
  .ml-xl-7,
  .mx-xl-7 {
    margin-left: 0.7rem !important;
  }
  .m-xl-8 {
    margin: 0.8rem !important;
  }
  .mt-xl-8,
  .my-xl-8 {
    margin-top: 0.8rem !important;
  }
  .mr-xl-8,
  .mx-xl-8 {
    margin-right: 0.8rem !important;
  }
  .mb-xl-8,
  .my-xl-8 {
    margin-bottom: 0.8rem !important;
  }
  .ml-xl-8,
  .mx-xl-8 {
    margin-left: 0.8rem !important;
  }
  .m-xl-9 {
    margin: 0.9rem !important;
  }
  .mt-xl-9,
  .my-xl-9 {
    margin-top: 0.9rem !important;
  }
  .mr-xl-9,
  .mx-xl-9 {
    margin-right: 0.9rem !important;
  }
  .mb-xl-9,
  .my-xl-9 {
    margin-bottom: 0.9rem !important;
  }
  .ml-xl-9,
  .mx-xl-9 {
    margin-left: 0.9rem !important;
  }
  .m-xl-10 {
    margin: 1rem !important;
  }
  .mt-xl-10,
  .my-xl-10 {
    margin-top: 1rem !important;
  }
  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 1rem !important;
  }
  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 1rem !important;
  }
  .m-xl-11 {
    margin: 1.1rem !important;
  }
  .mt-xl-11,
  .my-xl-11 {
    margin-top: 1.1rem !important;
  }
  .mr-xl-11,
  .mx-xl-11 {
    margin-right: 1.1rem !important;
  }
  .mb-xl-11,
  .my-xl-11 {
    margin-bottom: 1.1rem !important;
  }
  .ml-xl-11,
  .mx-xl-11 {
    margin-left: 1.1rem !important;
  }
  .m-xl-12 {
    margin: 1.2rem !important;
  }
  .mt-xl-12,
  .my-xl-12 {
    margin-top: 1.2rem !important;
  }
  .mr-xl-12,
  .mx-xl-12 {
    margin-right: 1.2rem !important;
  }
  .mb-xl-12,
  .my-xl-12 {
    margin-bottom: 1.2rem !important;
  }
  .ml-xl-12,
  .mx-xl-12 {
    margin-left: 1.2rem !important;
  }
  .m-xl-13 {
    margin: 1.3rem !important;
  }
  .mt-xl-13,
  .my-xl-13 {
    margin-top: 1.3rem !important;
  }
  .mr-xl-13,
  .mx-xl-13 {
    margin-right: 1.3rem !important;
  }
  .mb-xl-13,
  .my-xl-13 {
    margin-bottom: 1.3rem !important;
  }
  .ml-xl-13,
  .mx-xl-13 {
    margin-left: 1.3rem !important;
  }
  .m-xl-14 {
    margin: 1.4rem !important;
  }
  .mt-xl-14,
  .my-xl-14 {
    margin-top: 1.4rem !important;
  }
  .mr-xl-14,
  .mx-xl-14 {
    margin-right: 1.4rem !important;
  }
  .mb-xl-14,
  .my-xl-14 {
    margin-bottom: 1.4rem !important;
  }
  .ml-xl-14,
  .mx-xl-14 {
    margin-left: 1.4rem !important;
  }
  .m-xl-15 {
    margin: 1.5rem !important;
  }
  .mt-xl-15,
  .my-xl-15 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-15,
  .mx-xl-15 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-15,
  .my-xl-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-15,
  .mx-xl-15 {
    margin-left: 1.5rem !important;
  }
  .m-xl-16 {
    margin: 1.6rem !important;
  }
  .mt-xl-16,
  .my-xl-16 {
    margin-top: 1.6rem !important;
  }
  .mr-xl-16,
  .mx-xl-16 {
    margin-right: 1.6rem !important;
  }
  .mb-xl-16,
  .my-xl-16 {
    margin-bottom: 1.6rem !important;
  }
  .ml-xl-16,
  .mx-xl-16 {
    margin-left: 1.6rem !important;
  }
  .m-xl-17 {
    margin: 1.7rem !important;
  }
  .mt-xl-17,
  .my-xl-17 {
    margin-top: 1.7rem !important;
  }
  .mr-xl-17,
  .mx-xl-17 {
    margin-right: 1.7rem !important;
  }
  .mb-xl-17,
  .my-xl-17 {
    margin-bottom: 1.7rem !important;
  }
  .ml-xl-17,
  .mx-xl-17 {
    margin-left: 1.7rem !important;
  }
  .m-xl-18 {
    margin: 1.8rem !important;
  }
  .mt-xl-18,
  .my-xl-18 {
    margin-top: 1.8rem !important;
  }
  .mr-xl-18,
  .mx-xl-18 {
    margin-right: 1.8rem !important;
  }
  .mb-xl-18,
  .my-xl-18 {
    margin-bottom: 1.8rem !important;
  }
  .ml-xl-18,
  .mx-xl-18 {
    margin-left: 1.8rem !important;
  }
  .m-xl-19 {
    margin: 1.9rem !important;
  }
  .mt-xl-19,
  .my-xl-19 {
    margin-top: 1.9rem !important;
  }
  .mr-xl-19,
  .mx-xl-19 {
    margin-right: 1.9rem !important;
  }
  .mb-xl-19,
  .my-xl-19 {
    margin-bottom: 1.9rem !important;
  }
  .ml-xl-19,
  .mx-xl-19 {
    margin-left: 1.9rem !important;
  }
  .m-xl-20 {
    margin: 2rem !important;
  }
  .mt-xl-20,
  .my-xl-20 {
    margin-top: 2rem !important;
  }
  .mr-xl-20,
  .mx-xl-20 {
    margin-right: 2rem !important;
  }
  .mb-xl-20,
  .my-xl-20 {
    margin-bottom: 2rem !important;
  }
  .ml-xl-20,
  .mx-xl-20 {
    margin-left: 2rem !important;
  }
  .m-xl-25 {
    margin: 2.5rem !important;
  }
  .mt-xl-25,
  .my-xl-25 {
    margin-top: 2.5rem !important;
  }
  .mr-xl-25,
  .mx-xl-25 {
    margin-right: 2.5rem !important;
  }
  .mb-xl-25,
  .my-xl-25 {
    margin-bottom: 2.5rem !important;
  }
  .ml-xl-25,
  .mx-xl-25 {
    margin-left: 2.5rem !important;
  }
  .m-xl-30 {
    margin: 3rem !important;
  }
  .mt-xl-30,
  .my-xl-30 {
    margin-top: 3rem !important;
  }
  .mr-xl-30,
  .mx-xl-30 {
    margin-right: 3rem !important;
  }
  .mb-xl-30,
  .my-xl-30 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-30,
  .mx-xl-30 {
    margin-left: 3rem !important;
  }
  .m-xl-35 {
    margin: 3.5rem !important;
  }
  .mt-xl-35,
  .my-xl-35 {
    margin-top: 3.5rem !important;
  }
  .mr-xl-35,
  .mx-xl-35 {
    margin-right: 3.5rem !important;
  }
  .mb-xl-35,
  .my-xl-35 {
    margin-bottom: 3.5rem !important;
  }
  .ml-xl-35,
  .mx-xl-35 {
    margin-left: 3.5rem !important;
  }
  .m-xl-40 {
    margin: 4rem !important;
  }
  .mt-xl-40,
  .my-xl-40 {
    margin-top: 4rem !important;
  }
  .mr-xl-40,
  .mx-xl-40 {
    margin-right: 4rem !important;
  }
  .mb-xl-40,
  .my-xl-40 {
    margin-bottom: 4rem !important;
  }
  .ml-xl-40,
  .mx-xl-40 {
    margin-left: 4rem !important;
  }
  .m-xl-45 {
    margin: 4.5rem !important;
  }
  .mt-xl-45,
  .my-xl-45 {
    margin-top: 4.5rem !important;
  }
  .mr-xl-45,
  .mx-xl-45 {
    margin-right: 4.5rem !important;
  }
  .mb-xl-45,
  .my-xl-45 {
    margin-bottom: 4.5rem !important;
  }
  .ml-xl-45,
  .mx-xl-45 {
    margin-left: 4.5rem !important;
  }
  .m-xl-50 {
    margin: 5rem !important;
  }
  .mt-xl-50,
  .my-xl-50 {
    margin-top: 5rem !important;
  }
  .mr-xl-50,
  .mx-xl-50 {
    margin-right: 5rem !important;
  }
  .mb-xl-50,
  .my-xl-50 {
    margin-bottom: 5rem !important;
  }
  .ml-xl-50,
  .mx-xl-50 {
    margin-left: 5rem !important;
  }
  .m-xl-55 {
    margin: 5.5rem !important;
  }
  .mt-xl-55,
  .my-xl-55 {
    margin-top: 5.5rem !important;
  }
  .mr-xl-55,
  .mx-xl-55 {
    margin-right: 5.5rem !important;
  }
  .mb-xl-55,
  .my-xl-55 {
    margin-bottom: 5.5rem !important;
  }
  .ml-xl-55,
  .mx-xl-55 {
    margin-left: 5.5rem !important;
  }
  .m-xl-60 {
    margin: 6rem !important;
  }
  .mt-xl-60,
  .my-xl-60 {
    margin-top: 6rem !important;
  }
  .mr-xl-60,
  .mx-xl-60 {
    margin-right: 6rem !important;
  }
  .mb-xl-60,
  .my-xl-60 {
    margin-bottom: 6rem !important;
  }
  .ml-xl-60,
  .mx-xl-60 {
    margin-left: 6rem !important;
  }
  .m-xl-65 {
    margin: 6.5rem !important;
  }
  .mt-xl-65,
  .my-xl-65 {
    margin-top: 6.5rem !important;
  }
  .mr-xl-65,
  .mx-xl-65 {
    margin-right: 6.5rem !important;
  }
  .mb-xl-65,
  .my-xl-65 {
    margin-bottom: 6.5rem !important;
  }
  .ml-xl-65,
  .mx-xl-65 {
    margin-left: 6.5rem !important;
  }
  .m-xl-70 {
    margin: 7rem !important;
  }
  .mt-xl-70,
  .my-xl-70 {
    margin-top: 7rem !important;
  }
  .mr-xl-70,
  .mx-xl-70 {
    margin-right: 7rem !important;
  }
  .mb-xl-70,
  .my-xl-70 {
    margin-bottom: 7rem !important;
  }
  .ml-xl-70,
  .mx-xl-70 {
    margin-left: 7rem !important;
  }
  .m-xl-75 {
    margin: 7.5rem !important;
  }
  .mt-xl-75,
  .my-xl-75 {
    margin-top: 7.5rem !important;
  }
  .mr-xl-75,
  .mx-xl-75 {
    margin-right: 7.5rem !important;
  }
  .mb-xl-75,
  .my-xl-75 {
    margin-bottom: 7.5rem !important;
  }
  .ml-xl-75,
  .mx-xl-75 {
    margin-left: 7.5rem !important;
  }
  .m-xl-80 {
    margin: 8rem !important;
  }
  .mt-xl-80,
  .my-xl-80 {
    margin-top: 8rem !important;
  }
  .mr-xl-80,
  .mx-xl-80 {
    margin-right: 8rem !important;
  }
  .mb-xl-80,
  .my-xl-80 {
    margin-bottom: 8rem !important;
  }
  .ml-xl-80,
  .mx-xl-80 {
    margin-left: 8rem !important;
  }
  .m-xl-85 {
    margin: 8.5rem !important;
  }
  .mt-xl-85,
  .my-xl-85 {
    margin-top: 8.5rem !important;
  }
  .mr-xl-85,
  .mx-xl-85 {
    margin-right: 8.5rem !important;
  }
  .mb-xl-85,
  .my-xl-85 {
    margin-bottom: 8.5rem !important;
  }
  .ml-xl-85,
  .mx-xl-85 {
    margin-left: 8.5rem !important;
  }
  .m-xl-90 {
    margin: 9rem !important;
  }
  .mt-xl-90,
  .my-xl-90 {
    margin-top: 9rem !important;
  }
  .mr-xl-90,
  .mx-xl-90 {
    margin-right: 9rem !important;
  }
  .mb-xl-90,
  .my-xl-90 {
    margin-bottom: 9rem !important;
  }
  .ml-xl-90,
  .mx-xl-90 {
    margin-left: 9rem !important;
  }
  .m-xl-95 {
    margin: 9.5rem !important;
  }
  .mt-xl-95,
  .my-xl-95 {
    margin-top: 9.5rem !important;
  }
  .mr-xl-95,
  .mx-xl-95 {
    margin-right: 9.5rem !important;
  }
  .mb-xl-95,
  .my-xl-95 {
    margin-bottom: 9.5rem !important;
  }
  .ml-xl-95,
  .mx-xl-95 {
    margin-left: 9.5rem !important;
  }
  .m-xl-100 {
    margin: 10rem !important;
  }
  .mt-xl-100,
  .my-xl-100 {
    margin-top: 10rem !important;
  }
  .mr-xl-100,
  .mx-xl-100 {
    margin-right: 10rem !important;
  }
  .mb-xl-100,
  .my-xl-100 {
    margin-bottom: 10rem !important;
  }
  .ml-xl-100,
  .mx-xl-100 {
    margin-left: 10rem !important;
  }
  .m-xl-130 {
    margin: 13rem !important;
  }
  .mt-xl-130,
  .my-xl-130 {
    margin-top: 13rem !important;
  }
  .mr-xl-130,
  .mx-xl-130 {
    margin-right: 13rem !important;
  }
  .mb-xl-130,
  .my-xl-130 {
    margin-bottom: 13rem !important;
  }
  .ml-xl-130,
  .mx-xl-130 {
    margin-left: 13rem !important;
  }
  .m-xl-140 {
    margin: 14rem !important;
  }
  .mt-xl-140,
  .my-xl-140 {
    margin-top: 14rem !important;
  }
  .mr-xl-140,
  .mx-xl-140 {
    margin-right: 14rem !important;
  }
  .mb-xl-140,
  .my-xl-140 {
    margin-bottom: 14rem !important;
  }
  .ml-xl-140,
  .mx-xl-140 {
    margin-left: 14rem !important;
  }
  .m-xl-150 {
    margin: 15rem !important;
  }
  .mt-xl-150,
  .my-xl-150 {
    margin-top: 15rem !important;
  }
  .mr-xl-150,
  .mx-xl-150 {
    margin-right: 15rem !important;
  }
  .mb-xl-150,
  .my-xl-150 {
    margin-bottom: 15rem !important;
  }
  .ml-xl-150,
  .mx-xl-150 {
    margin-left: 15rem !important;
  }
  .m-xl-200 {
    margin: 20rem !important;
  }
  .mt-xl-200,
  .my-xl-200 {
    margin-top: 20rem !important;
  }
  .mr-xl-200,
  .mx-xl-200 {
    margin-right: 20rem !important;
  }
  .mb-xl-200,
  .my-xl-200 {
    margin-bottom: 20rem !important;
  }
  .ml-xl-200,
  .mx-xl-200 {
    margin-left: 20rem !important;
  }
  .m-xl-250 {
    margin: 25rem !important;
  }
  .mt-xl-250,
  .my-xl-250 {
    margin-top: 25rem !important;
  }
  .mr-xl-250,
  .mx-xl-250 {
    margin-right: 25rem !important;
  }
  .mb-xl-250,
  .my-xl-250 {
    margin-bottom: 25rem !important;
  }
  .ml-xl-250,
  .mx-xl-250 {
    margin-left: 25rem !important;
  }
  .m-xl-300 {
    margin: 30rem !important;
  }
  .mt-xl-300,
  .my-xl-300 {
    margin-top: 30rem !important;
  }
  .mr-xl-300,
  .mx-xl-300 {
    margin-right: 30rem !important;
  }
  .mb-xl-300,
  .my-xl-300 {
    margin-bottom: 30rem !important;
  }
  .ml-xl-300,
  .mx-xl-300 {
    margin-left: 30rem !important;
  }
  .m-xl-400 {
    margin: 40rem !important;
  }
  .mt-xl-400,
  .my-xl-400 {
    margin-top: 40rem !important;
  }
  .mr-xl-400,
  .mx-xl-400 {
    margin-right: 40rem !important;
  }
  .mb-xl-400,
  .my-xl-400 {
    margin-bottom: 40rem !important;
  }
  .ml-xl-400,
  .mx-xl-400 {
    margin-left: 40rem !important;
  }
  .m-xl-410 {
    margin: 41rem !important;
  }
  .mt-xl-410,
  .my-xl-410 {
    margin-top: 41rem !important;
  }
  .mr-xl-410,
  .mx-xl-410 {
    margin-right: 41rem !important;
  }
  .mb-xl-410,
  .my-xl-410 {
    margin-bottom: 41rem !important;
  }
  .ml-xl-410,
  .mx-xl-410 {
    margin-left: 41rem !important;
  }
  .m-xl-450 {
    margin: 45rem !important;
  }
  .mt-xl-450,
  .my-xl-450 {
    margin-top: 45rem !important;
  }
  .mr-xl-450,
  .mx-xl-450 {
    margin-right: 45rem !important;
  }
  .mb-xl-450,
  .my-xl-450 {
    margin-bottom: 45rem !important;
  }
  .ml-xl-450,
  .mx-xl-450 {
    margin-left: 45rem !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: 0.1rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.1rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.1rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.1rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.1rem !important;
  }
  .p-xl-2 {
    padding: 0.2rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.2rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.2rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.2rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.2rem !important;
  }
  .p-xl-3 {
    padding: 0.3rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 0.3rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 0.3rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 0.3rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 0.3rem !important;
  }
  .p-xl-4 {
    padding: 0.4rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 0.4rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 0.4rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 0.4rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 0.4rem !important;
  }
  .p-xl-5 {
    padding: 0.5rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 0.5rem !important;
  }
  .p-xl-6 {
    padding: 0.6rem !important;
  }
  .pt-xl-6,
  .py-xl-6 {
    padding-top: 0.6rem !important;
  }
  .pr-xl-6,
  .px-xl-6 {
    padding-right: 0.6rem !important;
  }
  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 0.6rem !important;
  }
  .pl-xl-6,
  .px-xl-6 {
    padding-left: 0.6rem !important;
  }
  .p-xl-7 {
    padding: 0.7rem !important;
  }
  .pt-xl-7,
  .py-xl-7 {
    padding-top: 0.7rem !important;
  }
  .pr-xl-7,
  .px-xl-7 {
    padding-right: 0.7rem !important;
  }
  .pb-xl-7,
  .py-xl-7 {
    padding-bottom: 0.7rem !important;
  }
  .pl-xl-7,
  .px-xl-7 {
    padding-left: 0.7rem !important;
  }
  .p-xl-8 {
    padding: 0.8rem !important;
  }
  .pt-xl-8,
  .py-xl-8 {
    padding-top: 0.8rem !important;
  }
  .pr-xl-8,
  .px-xl-8 {
    padding-right: 0.8rem !important;
  }
  .pb-xl-8,
  .py-xl-8 {
    padding-bottom: 0.8rem !important;
  }
  .pl-xl-8,
  .px-xl-8 {
    padding-left: 0.8rem !important;
  }
  .p-xl-9 {
    padding: 0.9rem !important;
  }
  .pt-xl-9,
  .py-xl-9 {
    padding-top: 0.9rem !important;
  }
  .pr-xl-9,
  .px-xl-9 {
    padding-right: 0.9rem !important;
  }
  .pb-xl-9,
  .py-xl-9 {
    padding-bottom: 0.9rem !important;
  }
  .pl-xl-9,
  .px-xl-9 {
    padding-left: 0.9rem !important;
  }
  .p-xl-10 {
    padding: 1rem !important;
  }
  .pt-xl-10,
  .py-xl-10 {
    padding-top: 1rem !important;
  }
  .pr-xl-10,
  .px-xl-10 {
    padding-right: 1rem !important;
  }
  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-10,
  .px-xl-10 {
    padding-left: 1rem !important;
  }
  .p-xl-11 {
    padding: 1.1rem !important;
  }
  .pt-xl-11,
  .py-xl-11 {
    padding-top: 1.1rem !important;
  }
  .pr-xl-11,
  .px-xl-11 {
    padding-right: 1.1rem !important;
  }
  .pb-xl-11,
  .py-xl-11 {
    padding-bottom: 1.1rem !important;
  }
  .pl-xl-11,
  .px-xl-11 {
    padding-left: 1.1rem !important;
  }
  .p-xl-12 {
    padding: 1.2rem !important;
  }
  .pt-xl-12,
  .py-xl-12 {
    padding-top: 1.2rem !important;
  }
  .pr-xl-12,
  .px-xl-12 {
    padding-right: 1.2rem !important;
  }
  .pb-xl-12,
  .py-xl-12 {
    padding-bottom: 1.2rem !important;
  }
  .pl-xl-12,
  .px-xl-12 {
    padding-left: 1.2rem !important;
  }
  .p-xl-13 {
    padding: 1.3rem !important;
  }
  .pt-xl-13,
  .py-xl-13 {
    padding-top: 1.3rem !important;
  }
  .pr-xl-13,
  .px-xl-13 {
    padding-right: 1.3rem !important;
  }
  .pb-xl-13,
  .py-xl-13 {
    padding-bottom: 1.3rem !important;
  }
  .pl-xl-13,
  .px-xl-13 {
    padding-left: 1.3rem !important;
  }
  .p-xl-14 {
    padding: 1.4rem !important;
  }
  .pt-xl-14,
  .py-xl-14 {
    padding-top: 1.4rem !important;
  }
  .pr-xl-14,
  .px-xl-14 {
    padding-right: 1.4rem !important;
  }
  .pb-xl-14,
  .py-xl-14 {
    padding-bottom: 1.4rem !important;
  }
  .pl-xl-14,
  .px-xl-14 {
    padding-left: 1.4rem !important;
  }
  .p-xl-15 {
    padding: 1.5rem !important;
  }
  .pt-xl-15,
  .py-xl-15 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-15,
  .px-xl-15 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-15,
  .py-xl-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-15,
  .px-xl-15 {
    padding-left: 1.5rem !important;
  }
  .p-xl-16 {
    padding: 1.6rem !important;
  }
  .pt-xl-16,
  .py-xl-16 {
    padding-top: 1.6rem !important;
  }
  .pr-xl-16,
  .px-xl-16 {
    padding-right: 1.6rem !important;
  }
  .pb-xl-16,
  .py-xl-16 {
    padding-bottom: 1.6rem !important;
  }
  .pl-xl-16,
  .px-xl-16 {
    padding-left: 1.6rem !important;
  }
  .p-xl-17 {
    padding: 1.7rem !important;
  }
  .pt-xl-17,
  .py-xl-17 {
    padding-top: 1.7rem !important;
  }
  .pr-xl-17,
  .px-xl-17 {
    padding-right: 1.7rem !important;
  }
  .pb-xl-17,
  .py-xl-17 {
    padding-bottom: 1.7rem !important;
  }
  .pl-xl-17,
  .px-xl-17 {
    padding-left: 1.7rem !important;
  }
  .p-xl-18 {
    padding: 1.8rem !important;
  }
  .pt-xl-18,
  .py-xl-18 {
    padding-top: 1.8rem !important;
  }
  .pr-xl-18,
  .px-xl-18 {
    padding-right: 1.8rem !important;
  }
  .pb-xl-18,
  .py-xl-18 {
    padding-bottom: 1.8rem !important;
  }
  .pl-xl-18,
  .px-xl-18 {
    padding-left: 1.8rem !important;
  }
  .p-xl-19 {
    padding: 1.9rem !important;
  }
  .pt-xl-19,
  .py-xl-19 {
    padding-top: 1.9rem !important;
  }
  .pr-xl-19,
  .px-xl-19 {
    padding-right: 1.9rem !important;
  }
  .pb-xl-19,
  .py-xl-19 {
    padding-bottom: 1.9rem !important;
  }
  .pl-xl-19,
  .px-xl-19 {
    padding-left: 1.9rem !important;
  }
  .p-xl-20 {
    padding: 2rem !important;
  }
  .pt-xl-20,
  .py-xl-20 {
    padding-top: 2rem !important;
  }
  .pr-xl-20,
  .px-xl-20 {
    padding-right: 2rem !important;
  }
  .pb-xl-20,
  .py-xl-20 {
    padding-bottom: 2rem !important;
  }
  .pl-xl-20,
  .px-xl-20 {
    padding-left: 2rem !important;
  }
  .p-xl-25 {
    padding: 2.5rem !important;
  }
  .pt-xl-25,
  .py-xl-25 {
    padding-top: 2.5rem !important;
  }
  .pr-xl-25,
  .px-xl-25 {
    padding-right: 2.5rem !important;
  }
  .pb-xl-25,
  .py-xl-25 {
    padding-bottom: 2.5rem !important;
  }
  .pl-xl-25,
  .px-xl-25 {
    padding-left: 2.5rem !important;
  }
  .p-xl-30 {
    padding: 3rem !important;
  }
  .pt-xl-30,
  .py-xl-30 {
    padding-top: 3rem !important;
  }
  .pr-xl-30,
  .px-xl-30 {
    padding-right: 3rem !important;
  }
  .pb-xl-30,
  .py-xl-30 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-30,
  .px-xl-30 {
    padding-left: 3rem !important;
  }
  .p-xl-35 {
    padding: 3.5rem !important;
  }
  .pt-xl-35,
  .py-xl-35 {
    padding-top: 3.5rem !important;
  }
  .pr-xl-35,
  .px-xl-35 {
    padding-right: 3.5rem !important;
  }
  .pb-xl-35,
  .py-xl-35 {
    padding-bottom: 3.5rem !important;
  }
  .pl-xl-35,
  .px-xl-35 {
    padding-left: 3.5rem !important;
  }
  .p-xl-40 {
    padding: 4rem !important;
  }
  .pt-xl-40,
  .py-xl-40 {
    padding-top: 4rem !important;
  }
  .pr-xl-40,
  .px-xl-40 {
    padding-right: 4rem !important;
  }
  .pb-xl-40,
  .py-xl-40 {
    padding-bottom: 4rem !important;
  }
  .pl-xl-40,
  .px-xl-40 {
    padding-left: 4rem !important;
  }
  .p-xl-45 {
    padding: 4.5rem !important;
  }
  .pt-xl-45,
  .py-xl-45 {
    padding-top: 4.5rem !important;
  }
  .pr-xl-45,
  .px-xl-45 {
    padding-right: 4.5rem !important;
  }
  .pb-xl-45,
  .py-xl-45 {
    padding-bottom: 4.5rem !important;
  }
  .pl-xl-45,
  .px-xl-45 {
    padding-left: 4.5rem !important;
  }
  .p-xl-50 {
    padding: 5rem !important;
  }
  .pt-xl-50,
  .py-xl-50 {
    padding-top: 5rem !important;
  }
  .pr-xl-50,
  .px-xl-50 {
    padding-right: 5rem !important;
  }
  .pb-xl-50,
  .py-xl-50 {
    padding-bottom: 5rem !important;
  }
  .pl-xl-50,
  .px-xl-50 {
    padding-left: 5rem !important;
  }
  .p-xl-55 {
    padding: 5.5rem !important;
  }
  .pt-xl-55,
  .py-xl-55 {
    padding-top: 5.5rem !important;
  }
  .pr-xl-55,
  .px-xl-55 {
    padding-right: 5.5rem !important;
  }
  .pb-xl-55,
  .py-xl-55 {
    padding-bottom: 5.5rem !important;
  }
  .pl-xl-55,
  .px-xl-55 {
    padding-left: 5.5rem !important;
  }
  .p-xl-60 {
    padding: 6rem !important;
  }
  .pt-xl-60,
  .py-xl-60 {
    padding-top: 6rem !important;
  }
  .pr-xl-60,
  .px-xl-60 {
    padding-right: 6rem !important;
  }
  .pb-xl-60,
  .py-xl-60 {
    padding-bottom: 6rem !important;
  }
  .pl-xl-60,
  .px-xl-60 {
    padding-left: 6rem !important;
  }
  .p-xl-65 {
    padding: 6.5rem !important;
  }
  .pt-xl-65,
  .py-xl-65 {
    padding-top: 6.5rem !important;
  }
  .pr-xl-65,
  .px-xl-65 {
    padding-right: 6.5rem !important;
  }
  .pb-xl-65,
  .py-xl-65 {
    padding-bottom: 6.5rem !important;
  }
  .pl-xl-65,
  .px-xl-65 {
    padding-left: 6.5rem !important;
  }
  .p-xl-70 {
    padding: 7rem !important;
  }
  .pt-xl-70,
  .py-xl-70 {
    padding-top: 7rem !important;
  }
  .pr-xl-70,
  .px-xl-70 {
    padding-right: 7rem !important;
  }
  .pb-xl-70,
  .py-xl-70 {
    padding-bottom: 7rem !important;
  }
  .pl-xl-70,
  .px-xl-70 {
    padding-left: 7rem !important;
  }
  .p-xl-75 {
    padding: 7.5rem !important;
  }
  .pt-xl-75,
  .py-xl-75 {
    padding-top: 7.5rem !important;
  }
  .pr-xl-75,
  .px-xl-75 {
    padding-right: 7.5rem !important;
  }
  .pb-xl-75,
  .py-xl-75 {
    padding-bottom: 7.5rem !important;
  }
  .pl-xl-75,
  .px-xl-75 {
    padding-left: 7.5rem !important;
  }
  .p-xl-80 {
    padding: 8rem !important;
  }
  .pt-xl-80,
  .py-xl-80 {
    padding-top: 8rem !important;
  }
  .pr-xl-80,
  .px-xl-80 {
    padding-right: 8rem !important;
  }
  .pb-xl-80,
  .py-xl-80 {
    padding-bottom: 8rem !important;
  }
  .pl-xl-80,
  .px-xl-80 {
    padding-left: 8rem !important;
  }
  .p-xl-85 {
    padding: 8.5rem !important;
  }
  .pt-xl-85,
  .py-xl-85 {
    padding-top: 8.5rem !important;
  }
  .pr-xl-85,
  .px-xl-85 {
    padding-right: 8.5rem !important;
  }
  .pb-xl-85,
  .py-xl-85 {
    padding-bottom: 8.5rem !important;
  }
  .pl-xl-85,
  .px-xl-85 {
    padding-left: 8.5rem !important;
  }
  .p-xl-90 {
    padding: 9rem !important;
  }
  .pt-xl-90,
  .py-xl-90 {
    padding-top: 9rem !important;
  }
  .pr-xl-90,
  .px-xl-90 {
    padding-right: 9rem !important;
  }
  .pb-xl-90,
  .py-xl-90 {
    padding-bottom: 9rem !important;
  }
  .pl-xl-90,
  .px-xl-90 {
    padding-left: 9rem !important;
  }
  .p-xl-95 {
    padding: 9.5rem !important;
  }
  .pt-xl-95,
  .py-xl-95 {
    padding-top: 9.5rem !important;
  }
  .pr-xl-95,
  .px-xl-95 {
    padding-right: 9.5rem !important;
  }
  .pb-xl-95,
  .py-xl-95 {
    padding-bottom: 9.5rem !important;
  }
  .pl-xl-95,
  .px-xl-95 {
    padding-left: 9.5rem !important;
  }
  .p-xl-100 {
    padding: 10rem !important;
  }
  .pt-xl-100,
  .py-xl-100 {
    padding-top: 10rem !important;
  }
  .pr-xl-100,
  .px-xl-100 {
    padding-right: 10rem !important;
  }
  .pb-xl-100,
  .py-xl-100 {
    padding-bottom: 10rem !important;
  }
  .pl-xl-100,
  .px-xl-100 {
    padding-left: 10rem !important;
  }
  .p-xl-130 {
    padding: 13rem !important;
  }
  .pt-xl-130,
  .py-xl-130 {
    padding-top: 13rem !important;
  }
  .pr-xl-130,
  .px-xl-130 {
    padding-right: 13rem !important;
  }
  .pb-xl-130,
  .py-xl-130 {
    padding-bottom: 13rem !important;
  }
  .pl-xl-130,
  .px-xl-130 {
    padding-left: 13rem !important;
  }
  .p-xl-140 {
    padding: 14rem !important;
  }
  .pt-xl-140,
  .py-xl-140 {
    padding-top: 14rem !important;
  }
  .pr-xl-140,
  .px-xl-140 {
    padding-right: 14rem !important;
  }
  .pb-xl-140,
  .py-xl-140 {
    padding-bottom: 14rem !important;
  }
  .pl-xl-140,
  .px-xl-140 {
    padding-left: 14rem !important;
  }
  .p-xl-150 {
    padding: 15rem !important;
  }
  .pt-xl-150,
  .py-xl-150 {
    padding-top: 15rem !important;
  }
  .pr-xl-150,
  .px-xl-150 {
    padding-right: 15rem !important;
  }
  .pb-xl-150,
  .py-xl-150 {
    padding-bottom: 15rem !important;
  }
  .pl-xl-150,
  .px-xl-150 {
    padding-left: 15rem !important;
  }
  .p-xl-200 {
    padding: 20rem !important;
  }
  .pt-xl-200,
  .py-xl-200 {
    padding-top: 20rem !important;
  }
  .pr-xl-200,
  .px-xl-200 {
    padding-right: 20rem !important;
  }
  .pb-xl-200,
  .py-xl-200 {
    padding-bottom: 20rem !important;
  }
  .pl-xl-200,
  .px-xl-200 {
    padding-left: 20rem !important;
  }
  .p-xl-250 {
    padding: 25rem !important;
  }
  .pt-xl-250,
  .py-xl-250 {
    padding-top: 25rem !important;
  }
  .pr-xl-250,
  .px-xl-250 {
    padding-right: 25rem !important;
  }
  .pb-xl-250,
  .py-xl-250 {
    padding-bottom: 25rem !important;
  }
  .pl-xl-250,
  .px-xl-250 {
    padding-left: 25rem !important;
  }
  .p-xl-300 {
    padding: 30rem !important;
  }
  .pt-xl-300,
  .py-xl-300 {
    padding-top: 30rem !important;
  }
  .pr-xl-300,
  .px-xl-300 {
    padding-right: 30rem !important;
  }
  .pb-xl-300,
  .py-xl-300 {
    padding-bottom: 30rem !important;
  }
  .pl-xl-300,
  .px-xl-300 {
    padding-left: 30rem !important;
  }
  .p-xl-400 {
    padding: 40rem !important;
  }
  .pt-xl-400,
  .py-xl-400 {
    padding-top: 40rem !important;
  }
  .pr-xl-400,
  .px-xl-400 {
    padding-right: 40rem !important;
  }
  .pb-xl-400,
  .py-xl-400 {
    padding-bottom: 40rem !important;
  }
  .pl-xl-400,
  .px-xl-400 {
    padding-left: 40rem !important;
  }
  .p-xl-410 {
    padding: 41rem !important;
  }
  .pt-xl-410,
  .py-xl-410 {
    padding-top: 41rem !important;
  }
  .pr-xl-410,
  .px-xl-410 {
    padding-right: 41rem !important;
  }
  .pb-xl-410,
  .py-xl-410 {
    padding-bottom: 41rem !important;
  }
  .pl-xl-410,
  .px-xl-410 {
    padding-left: 41rem !important;
  }
  .p-xl-450 {
    padding: 45rem !important;
  }
  .pt-xl-450,
  .py-xl-450 {
    padding-top: 45rem !important;
  }
  .pr-xl-450,
  .px-xl-450 {
    padding-right: 45rem !important;
  }
  .pb-xl-450,
  .py-xl-450 {
    padding-bottom: 45rem !important;
  }
  .pl-xl-450,
  .px-xl-450 {
    padding-left: 45rem !important;
  }
  .m-xl-n1 {
    margin: -0.1rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.1rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.1rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.1rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.1rem !important;
  }
  .m-xl-n2 {
    margin: -0.2rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.2rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.2rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.2rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.2rem !important;
  }
  .m-xl-n3 {
    margin: -0.3rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -0.3rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -0.3rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -0.3rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -0.3rem !important;
  }
  .m-xl-n4 {
    margin: -0.4rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -0.4rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -0.4rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -0.4rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -0.4rem !important;
  }
  .m-xl-n5 {
    margin: -0.5rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n6 {
    margin: -0.6rem !important;
  }
  .mt-xl-n6,
  .my-xl-n6 {
    margin-top: -0.6rem !important;
  }
  .mr-xl-n6,
  .mx-xl-n6 {
    margin-right: -0.6rem !important;
  }
  .mb-xl-n6,
  .my-xl-n6 {
    margin-bottom: -0.6rem !important;
  }
  .ml-xl-n6,
  .mx-xl-n6 {
    margin-left: -0.6rem !important;
  }
  .m-xl-n7 {
    margin: -0.7rem !important;
  }
  .mt-xl-n7,
  .my-xl-n7 {
    margin-top: -0.7rem !important;
  }
  .mr-xl-n7,
  .mx-xl-n7 {
    margin-right: -0.7rem !important;
  }
  .mb-xl-n7,
  .my-xl-n7 {
    margin-bottom: -0.7rem !important;
  }
  .ml-xl-n7,
  .mx-xl-n7 {
    margin-left: -0.7rem !important;
  }
  .m-xl-n8 {
    margin: -0.8rem !important;
  }
  .mt-xl-n8,
  .my-xl-n8 {
    margin-top: -0.8rem !important;
  }
  .mr-xl-n8,
  .mx-xl-n8 {
    margin-right: -0.8rem !important;
  }
  .mb-xl-n8,
  .my-xl-n8 {
    margin-bottom: -0.8rem !important;
  }
  .ml-xl-n8,
  .mx-xl-n8 {
    margin-left: -0.8rem !important;
  }
  .m-xl-n9 {
    margin: -0.9rem !important;
  }
  .mt-xl-n9,
  .my-xl-n9 {
    margin-top: -0.9rem !important;
  }
  .mr-xl-n9,
  .mx-xl-n9 {
    margin-right: -0.9rem !important;
  }
  .mb-xl-n9,
  .my-xl-n9 {
    margin-bottom: -0.9rem !important;
  }
  .ml-xl-n9,
  .mx-xl-n9 {
    margin-left: -0.9rem !important;
  }
  .m-xl-n10 {
    margin: -1rem !important;
  }
  .mt-xl-n10,
  .my-xl-n10 {
    margin-top: -1rem !important;
  }
  .mr-xl-n10,
  .mx-xl-n10 {
    margin-right: -1rem !important;
  }
  .mb-xl-n10,
  .my-xl-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n10,
  .mx-xl-n10 {
    margin-left: -1rem !important;
  }
  .m-xl-n11 {
    margin: -1.1rem !important;
  }
  .mt-xl-n11,
  .my-xl-n11 {
    margin-top: -1.1rem !important;
  }
  .mr-xl-n11,
  .mx-xl-n11 {
    margin-right: -1.1rem !important;
  }
  .mb-xl-n11,
  .my-xl-n11 {
    margin-bottom: -1.1rem !important;
  }
  .ml-xl-n11,
  .mx-xl-n11 {
    margin-left: -1.1rem !important;
  }
  .m-xl-n12 {
    margin: -1.2rem !important;
  }
  .mt-xl-n12,
  .my-xl-n12 {
    margin-top: -1.2rem !important;
  }
  .mr-xl-n12,
  .mx-xl-n12 {
    margin-right: -1.2rem !important;
  }
  .mb-xl-n12,
  .my-xl-n12 {
    margin-bottom: -1.2rem !important;
  }
  .ml-xl-n12,
  .mx-xl-n12 {
    margin-left: -1.2rem !important;
  }
  .m-xl-n13 {
    margin: -1.3rem !important;
  }
  .mt-xl-n13,
  .my-xl-n13 {
    margin-top: -1.3rem !important;
  }
  .mr-xl-n13,
  .mx-xl-n13 {
    margin-right: -1.3rem !important;
  }
  .mb-xl-n13,
  .my-xl-n13 {
    margin-bottom: -1.3rem !important;
  }
  .ml-xl-n13,
  .mx-xl-n13 {
    margin-left: -1.3rem !important;
  }
  .m-xl-n14 {
    margin: -1.4rem !important;
  }
  .mt-xl-n14,
  .my-xl-n14 {
    margin-top: -1.4rem !important;
  }
  .mr-xl-n14,
  .mx-xl-n14 {
    margin-right: -1.4rem !important;
  }
  .mb-xl-n14,
  .my-xl-n14 {
    margin-bottom: -1.4rem !important;
  }
  .ml-xl-n14,
  .mx-xl-n14 {
    margin-left: -1.4rem !important;
  }
  .m-xl-n15 {
    margin: -1.5rem !important;
  }
  .mt-xl-n15,
  .my-xl-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n15,
  .mx-xl-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n15,
  .my-xl-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n15,
  .mx-xl-n15 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n16 {
    margin: -1.6rem !important;
  }
  .mt-xl-n16,
  .my-xl-n16 {
    margin-top: -1.6rem !important;
  }
  .mr-xl-n16,
  .mx-xl-n16 {
    margin-right: -1.6rem !important;
  }
  .mb-xl-n16,
  .my-xl-n16 {
    margin-bottom: -1.6rem !important;
  }
  .ml-xl-n16,
  .mx-xl-n16 {
    margin-left: -1.6rem !important;
  }
  .m-xl-n17 {
    margin: -1.7rem !important;
  }
  .mt-xl-n17,
  .my-xl-n17 {
    margin-top: -1.7rem !important;
  }
  .mr-xl-n17,
  .mx-xl-n17 {
    margin-right: -1.7rem !important;
  }
  .mb-xl-n17,
  .my-xl-n17 {
    margin-bottom: -1.7rem !important;
  }
  .ml-xl-n17,
  .mx-xl-n17 {
    margin-left: -1.7rem !important;
  }
  .m-xl-n18 {
    margin: -1.8rem !important;
  }
  .mt-xl-n18,
  .my-xl-n18 {
    margin-top: -1.8rem !important;
  }
  .mr-xl-n18,
  .mx-xl-n18 {
    margin-right: -1.8rem !important;
  }
  .mb-xl-n18,
  .my-xl-n18 {
    margin-bottom: -1.8rem !important;
  }
  .ml-xl-n18,
  .mx-xl-n18 {
    margin-left: -1.8rem !important;
  }
  .m-xl-n19 {
    margin: -1.9rem !important;
  }
  .mt-xl-n19,
  .my-xl-n19 {
    margin-top: -1.9rem !important;
  }
  .mr-xl-n19,
  .mx-xl-n19 {
    margin-right: -1.9rem !important;
  }
  .mb-xl-n19,
  .my-xl-n19 {
    margin-bottom: -1.9rem !important;
  }
  .ml-xl-n19,
  .mx-xl-n19 {
    margin-left: -1.9rem !important;
  }
  .m-xl-n20 {
    margin: -2rem !important;
  }
  .mt-xl-n20,
  .my-xl-n20 {
    margin-top: -2rem !important;
  }
  .mr-xl-n20,
  .mx-xl-n20 {
    margin-right: -2rem !important;
  }
  .mb-xl-n20,
  .my-xl-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-xl-n20,
  .mx-xl-n20 {
    margin-left: -2rem !important;
  }
  .m-xl-n25 {
    margin: -2.5rem !important;
  }
  .mt-xl-n25,
  .my-xl-n25 {
    margin-top: -2.5rem !important;
  }
  .mr-xl-n25,
  .mx-xl-n25 {
    margin-right: -2.5rem !important;
  }
  .mb-xl-n25,
  .my-xl-n25 {
    margin-bottom: -2.5rem !important;
  }
  .ml-xl-n25,
  .mx-xl-n25 {
    margin-left: -2.5rem !important;
  }
  .m-xl-n30 {
    margin: -3rem !important;
  }
  .mt-xl-n30,
  .my-xl-n30 {
    margin-top: -3rem !important;
  }
  .mr-xl-n30,
  .mx-xl-n30 {
    margin-right: -3rem !important;
  }
  .mb-xl-n30,
  .my-xl-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n30,
  .mx-xl-n30 {
    margin-left: -3rem !important;
  }
  .m-xl-n35 {
    margin: -3.5rem !important;
  }
  .mt-xl-n35,
  .my-xl-n35 {
    margin-top: -3.5rem !important;
  }
  .mr-xl-n35,
  .mx-xl-n35 {
    margin-right: -3.5rem !important;
  }
  .mb-xl-n35,
  .my-xl-n35 {
    margin-bottom: -3.5rem !important;
  }
  .ml-xl-n35,
  .mx-xl-n35 {
    margin-left: -3.5rem !important;
  }
  .m-xl-n40 {
    margin: -4rem !important;
  }
  .mt-xl-n40,
  .my-xl-n40 {
    margin-top: -4rem !important;
  }
  .mr-xl-n40,
  .mx-xl-n40 {
    margin-right: -4rem !important;
  }
  .mb-xl-n40,
  .my-xl-n40 {
    margin-bottom: -4rem !important;
  }
  .ml-xl-n40,
  .mx-xl-n40 {
    margin-left: -4rem !important;
  }
  .m-xl-n45 {
    margin: -4.5rem !important;
  }
  .mt-xl-n45,
  .my-xl-n45 {
    margin-top: -4.5rem !important;
  }
  .mr-xl-n45,
  .mx-xl-n45 {
    margin-right: -4.5rem !important;
  }
  .mb-xl-n45,
  .my-xl-n45 {
    margin-bottom: -4.5rem !important;
  }
  .ml-xl-n45,
  .mx-xl-n45 {
    margin-left: -4.5rem !important;
  }
  .m-xl-n50 {
    margin: -5rem !important;
  }
  .mt-xl-n50,
  .my-xl-n50 {
    margin-top: -5rem !important;
  }
  .mr-xl-n50,
  .mx-xl-n50 {
    margin-right: -5rem !important;
  }
  .mb-xl-n50,
  .my-xl-n50 {
    margin-bottom: -5rem !important;
  }
  .ml-xl-n50,
  .mx-xl-n50 {
    margin-left: -5rem !important;
  }
  .m-xl-n55 {
    margin: -5.5rem !important;
  }
  .mt-xl-n55,
  .my-xl-n55 {
    margin-top: -5.5rem !important;
  }
  .mr-xl-n55,
  .mx-xl-n55 {
    margin-right: -5.5rem !important;
  }
  .mb-xl-n55,
  .my-xl-n55 {
    margin-bottom: -5.5rem !important;
  }
  .ml-xl-n55,
  .mx-xl-n55 {
    margin-left: -5.5rem !important;
  }
  .m-xl-n60 {
    margin: -6rem !important;
  }
  .mt-xl-n60,
  .my-xl-n60 {
    margin-top: -6rem !important;
  }
  .mr-xl-n60,
  .mx-xl-n60 {
    margin-right: -6rem !important;
  }
  .mb-xl-n60,
  .my-xl-n60 {
    margin-bottom: -6rem !important;
  }
  .ml-xl-n60,
  .mx-xl-n60 {
    margin-left: -6rem !important;
  }
  .m-xl-n65 {
    margin: -6.5rem !important;
  }
  .mt-xl-n65,
  .my-xl-n65 {
    margin-top: -6.5rem !important;
  }
  .mr-xl-n65,
  .mx-xl-n65 {
    margin-right: -6.5rem !important;
  }
  .mb-xl-n65,
  .my-xl-n65 {
    margin-bottom: -6.5rem !important;
  }
  .ml-xl-n65,
  .mx-xl-n65 {
    margin-left: -6.5rem !important;
  }
  .m-xl-n70 {
    margin: -7rem !important;
  }
  .mt-xl-n70,
  .my-xl-n70 {
    margin-top: -7rem !important;
  }
  .mr-xl-n70,
  .mx-xl-n70 {
    margin-right: -7rem !important;
  }
  .mb-xl-n70,
  .my-xl-n70 {
    margin-bottom: -7rem !important;
  }
  .ml-xl-n70,
  .mx-xl-n70 {
    margin-left: -7rem !important;
  }
  .m-xl-n75 {
    margin: -7.5rem !important;
  }
  .mt-xl-n75,
  .my-xl-n75 {
    margin-top: -7.5rem !important;
  }
  .mr-xl-n75,
  .mx-xl-n75 {
    margin-right: -7.5rem !important;
  }
  .mb-xl-n75,
  .my-xl-n75 {
    margin-bottom: -7.5rem !important;
  }
  .ml-xl-n75,
  .mx-xl-n75 {
    margin-left: -7.5rem !important;
  }
  .m-xl-n80 {
    margin: -8rem !important;
  }
  .mt-xl-n80,
  .my-xl-n80 {
    margin-top: -8rem !important;
  }
  .mr-xl-n80,
  .mx-xl-n80 {
    margin-right: -8rem !important;
  }
  .mb-xl-n80,
  .my-xl-n80 {
    margin-bottom: -8rem !important;
  }
  .ml-xl-n80,
  .mx-xl-n80 {
    margin-left: -8rem !important;
  }
  .m-xl-n85 {
    margin: -8.5rem !important;
  }
  .mt-xl-n85,
  .my-xl-n85 {
    margin-top: -8.5rem !important;
  }
  .mr-xl-n85,
  .mx-xl-n85 {
    margin-right: -8.5rem !important;
  }
  .mb-xl-n85,
  .my-xl-n85 {
    margin-bottom: -8.5rem !important;
  }
  .ml-xl-n85,
  .mx-xl-n85 {
    margin-left: -8.5rem !important;
  }
  .m-xl-n90 {
    margin: -9rem !important;
  }
  .mt-xl-n90,
  .my-xl-n90 {
    margin-top: -9rem !important;
  }
  .mr-xl-n90,
  .mx-xl-n90 {
    margin-right: -9rem !important;
  }
  .mb-xl-n90,
  .my-xl-n90 {
    margin-bottom: -9rem !important;
  }
  .ml-xl-n90,
  .mx-xl-n90 {
    margin-left: -9rem !important;
  }
  .m-xl-n95 {
    margin: -9.5rem !important;
  }
  .mt-xl-n95,
  .my-xl-n95 {
    margin-top: -9.5rem !important;
  }
  .mr-xl-n95,
  .mx-xl-n95 {
    margin-right: -9.5rem !important;
  }
  .mb-xl-n95,
  .my-xl-n95 {
    margin-bottom: -9.5rem !important;
  }
  .ml-xl-n95,
  .mx-xl-n95 {
    margin-left: -9.5rem !important;
  }
  .m-xl-n100 {
    margin: -10rem !important;
  }
  .mt-xl-n100,
  .my-xl-n100 {
    margin-top: -10rem !important;
  }
  .mr-xl-n100,
  .mx-xl-n100 {
    margin-right: -10rem !important;
  }
  .mb-xl-n100,
  .my-xl-n100 {
    margin-bottom: -10rem !important;
  }
  .ml-xl-n100,
  .mx-xl-n100 {
    margin-left: -10rem !important;
  }
  .m-xl-n130 {
    margin: -13rem !important;
  }
  .mt-xl-n130,
  .my-xl-n130 {
    margin-top: -13rem !important;
  }
  .mr-xl-n130,
  .mx-xl-n130 {
    margin-right: -13rem !important;
  }
  .mb-xl-n130,
  .my-xl-n130 {
    margin-bottom: -13rem !important;
  }
  .ml-xl-n130,
  .mx-xl-n130 {
    margin-left: -13rem !important;
  }
  .m-xl-n140 {
    margin: -14rem !important;
  }
  .mt-xl-n140,
  .my-xl-n140 {
    margin-top: -14rem !important;
  }
  .mr-xl-n140,
  .mx-xl-n140 {
    margin-right: -14rem !important;
  }
  .mb-xl-n140,
  .my-xl-n140 {
    margin-bottom: -14rem !important;
  }
  .ml-xl-n140,
  .mx-xl-n140 {
    margin-left: -14rem !important;
  }
  .m-xl-n150 {
    margin: -15rem !important;
  }
  .mt-xl-n150,
  .my-xl-n150 {
    margin-top: -15rem !important;
  }
  .mr-xl-n150,
  .mx-xl-n150 {
    margin-right: -15rem !important;
  }
  .mb-xl-n150,
  .my-xl-n150 {
    margin-bottom: -15rem !important;
  }
  .ml-xl-n150,
  .mx-xl-n150 {
    margin-left: -15rem !important;
  }
  .m-xl-n200 {
    margin: -20rem !important;
  }
  .mt-xl-n200,
  .my-xl-n200 {
    margin-top: -20rem !important;
  }
  .mr-xl-n200,
  .mx-xl-n200 {
    margin-right: -20rem !important;
  }
  .mb-xl-n200,
  .my-xl-n200 {
    margin-bottom: -20rem !important;
  }
  .ml-xl-n200,
  .mx-xl-n200 {
    margin-left: -20rem !important;
  }
  .m-xl-n250 {
    margin: -25rem !important;
  }
  .mt-xl-n250,
  .my-xl-n250 {
    margin-top: -25rem !important;
  }
  .mr-xl-n250,
  .mx-xl-n250 {
    margin-right: -25rem !important;
  }
  .mb-xl-n250,
  .my-xl-n250 {
    margin-bottom: -25rem !important;
  }
  .ml-xl-n250,
  .mx-xl-n250 {
    margin-left: -25rem !important;
  }
  .m-xl-n300 {
    margin: -30rem !important;
  }
  .mt-xl-n300,
  .my-xl-n300 {
    margin-top: -30rem !important;
  }
  .mr-xl-n300,
  .mx-xl-n300 {
    margin-right: -30rem !important;
  }
  .mb-xl-n300,
  .my-xl-n300 {
    margin-bottom: -30rem !important;
  }
  .ml-xl-n300,
  .mx-xl-n300 {
    margin-left: -30rem !important;
  }
  .m-xl-n400 {
    margin: -40rem !important;
  }
  .mt-xl-n400,
  .my-xl-n400 {
    margin-top: -40rem !important;
  }
  .mr-xl-n400,
  .mx-xl-n400 {
    margin-right: -40rem !important;
  }
  .mb-xl-n400,
  .my-xl-n400 {
    margin-bottom: -40rem !important;
  }
  .ml-xl-n400,
  .mx-xl-n400 {
    margin-left: -40rem !important;
  }
  .m-xl-n410 {
    margin: -41rem !important;
  }
  .mt-xl-n410,
  .my-xl-n410 {
    margin-top: -41rem !important;
  }
  .mr-xl-n410,
  .mx-xl-n410 {
    margin-right: -41rem !important;
  }
  .mb-xl-n410,
  .my-xl-n410 {
    margin-bottom: -41rem !important;
  }
  .ml-xl-n410,
  .mx-xl-n410 {
    margin-left: -41rem !important;
  }
  .m-xl-n450 {
    margin: -45rem !important;
  }
  .mt-xl-n450,
  .my-xl-n450 {
    margin-top: -45rem !important;
  }
  .mr-xl-n450,
  .mx-xl-n450 {
    margin-right: -45rem !important;
  }
  .mb-xl-n450,
  .my-xl-n450 {
    margin-bottom: -45rem !important;
  }
  .ml-xl-n450,
  .mx-xl-n450 {
    margin-left: -45rem !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: 1600px) {
  .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: 0.1rem !important;
  }
  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: 0.1rem !important;
  }
  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: 0.1rem !important;
  }
  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: 0.1rem !important;
  }
  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: 0.1rem !important;
  }
  .m-xxl-2 {
    margin: 0.2rem !important;
  }
  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: 0.2rem !important;
  }
  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: 0.2rem !important;
  }
  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: 0.2rem !important;
  }
  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: 0.2rem !important;
  }
  .m-xxl-3 {
    margin: 0.3rem !important;
  }
  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 0.3rem !important;
  }
  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 0.3rem !important;
  }
  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 0.3rem !important;
  }
  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 0.3rem !important;
  }
  .m-xxl-4 {
    margin: 0.4rem !important;
  }
  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 0.4rem !important;
  }
  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 0.4rem !important;
  }
  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 0.4rem !important;
  }
  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 0.4rem !important;
  }
  .m-xxl-5 {
    margin: 0.5rem !important;
  }
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 0.5rem !important;
  }
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 0.5rem !important;
  }
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 0.5rem !important;
  }
  .m-xxl-6 {
    margin: 0.6rem !important;
  }
  .mt-xxl-6,
  .my-xxl-6 {
    margin-top: 0.6rem !important;
  }
  .mr-xxl-6,
  .mx-xxl-6 {
    margin-right: 0.6rem !important;
  }
  .mb-xxl-6,
  .my-xxl-6 {
    margin-bottom: 0.6rem !important;
  }
  .ml-xxl-6,
  .mx-xxl-6 {
    margin-left: 0.6rem !important;
  }
  .m-xxl-7 {
    margin: 0.7rem !important;
  }
  .mt-xxl-7,
  .my-xxl-7 {
    margin-top: 0.7rem !important;
  }
  .mr-xxl-7,
  .mx-xxl-7 {
    margin-right: 0.7rem !important;
  }
  .mb-xxl-7,
  .my-xxl-7 {
    margin-bottom: 0.7rem !important;
  }
  .ml-xxl-7,
  .mx-xxl-7 {
    margin-left: 0.7rem !important;
  }
  .m-xxl-8 {
    margin: 0.8rem !important;
  }
  .mt-xxl-8,
  .my-xxl-8 {
    margin-top: 0.8rem !important;
  }
  .mr-xxl-8,
  .mx-xxl-8 {
    margin-right: 0.8rem !important;
  }
  .mb-xxl-8,
  .my-xxl-8 {
    margin-bottom: 0.8rem !important;
  }
  .ml-xxl-8,
  .mx-xxl-8 {
    margin-left: 0.8rem !important;
  }
  .m-xxl-9 {
    margin: 0.9rem !important;
  }
  .mt-xxl-9,
  .my-xxl-9 {
    margin-top: 0.9rem !important;
  }
  .mr-xxl-9,
  .mx-xxl-9 {
    margin-right: 0.9rem !important;
  }
  .mb-xxl-9,
  .my-xxl-9 {
    margin-bottom: 0.9rem !important;
  }
  .ml-xxl-9,
  .mx-xxl-9 {
    margin-left: 0.9rem !important;
  }
  .m-xxl-10 {
    margin: 1rem !important;
  }
  .mt-xxl-10,
  .my-xxl-10 {
    margin-top: 1rem !important;
  }
  .mr-xxl-10,
  .mx-xxl-10 {
    margin-right: 1rem !important;
  }
  .mb-xxl-10,
  .my-xxl-10 {
    margin-bottom: 1rem !important;
  }
  .ml-xxl-10,
  .mx-xxl-10 {
    margin-left: 1rem !important;
  }
  .m-xxl-11 {
    margin: 1.1rem !important;
  }
  .mt-xxl-11,
  .my-xxl-11 {
    margin-top: 1.1rem !important;
  }
  .mr-xxl-11,
  .mx-xxl-11 {
    margin-right: 1.1rem !important;
  }
  .mb-xxl-11,
  .my-xxl-11 {
    margin-bottom: 1.1rem !important;
  }
  .ml-xxl-11,
  .mx-xxl-11 {
    margin-left: 1.1rem !important;
  }
  .m-xxl-12 {
    margin: 1.2rem !important;
  }
  .mt-xxl-12,
  .my-xxl-12 {
    margin-top: 1.2rem !important;
  }
  .mr-xxl-12,
  .mx-xxl-12 {
    margin-right: 1.2rem !important;
  }
  .mb-xxl-12,
  .my-xxl-12 {
    margin-bottom: 1.2rem !important;
  }
  .ml-xxl-12,
  .mx-xxl-12 {
    margin-left: 1.2rem !important;
  }
  .m-xxl-13 {
    margin: 1.3rem !important;
  }
  .mt-xxl-13,
  .my-xxl-13 {
    margin-top: 1.3rem !important;
  }
  .mr-xxl-13,
  .mx-xxl-13 {
    margin-right: 1.3rem !important;
  }
  .mb-xxl-13,
  .my-xxl-13 {
    margin-bottom: 1.3rem !important;
  }
  .ml-xxl-13,
  .mx-xxl-13 {
    margin-left: 1.3rem !important;
  }
  .m-xxl-14 {
    margin: 1.4rem !important;
  }
  .mt-xxl-14,
  .my-xxl-14 {
    margin-top: 1.4rem !important;
  }
  .mr-xxl-14,
  .mx-xxl-14 {
    margin-right: 1.4rem !important;
  }
  .mb-xxl-14,
  .my-xxl-14 {
    margin-bottom: 1.4rem !important;
  }
  .ml-xxl-14,
  .mx-xxl-14 {
    margin-left: 1.4rem !important;
  }
  .m-xxl-15 {
    margin: 1.5rem !important;
  }
  .mt-xxl-15,
  .my-xxl-15 {
    margin-top: 1.5rem !important;
  }
  .mr-xxl-15,
  .mx-xxl-15 {
    margin-right: 1.5rem !important;
  }
  .mb-xxl-15,
  .my-xxl-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxl-15,
  .mx-xxl-15 {
    margin-left: 1.5rem !important;
  }
  .m-xxl-16 {
    margin: 1.6rem !important;
  }
  .mt-xxl-16,
  .my-xxl-16 {
    margin-top: 1.6rem !important;
  }
  .mr-xxl-16,
  .mx-xxl-16 {
    margin-right: 1.6rem !important;
  }
  .mb-xxl-16,
  .my-xxl-16 {
    margin-bottom: 1.6rem !important;
  }
  .ml-xxl-16,
  .mx-xxl-16 {
    margin-left: 1.6rem !important;
  }
  .m-xxl-17 {
    margin: 1.7rem !important;
  }
  .mt-xxl-17,
  .my-xxl-17 {
    margin-top: 1.7rem !important;
  }
  .mr-xxl-17,
  .mx-xxl-17 {
    margin-right: 1.7rem !important;
  }
  .mb-xxl-17,
  .my-xxl-17 {
    margin-bottom: 1.7rem !important;
  }
  .ml-xxl-17,
  .mx-xxl-17 {
    margin-left: 1.7rem !important;
  }
  .m-xxl-18 {
    margin: 1.8rem !important;
  }
  .mt-xxl-18,
  .my-xxl-18 {
    margin-top: 1.8rem !important;
  }
  .mr-xxl-18,
  .mx-xxl-18 {
    margin-right: 1.8rem !important;
  }
  .mb-xxl-18,
  .my-xxl-18 {
    margin-bottom: 1.8rem !important;
  }
  .ml-xxl-18,
  .mx-xxl-18 {
    margin-left: 1.8rem !important;
  }
  .m-xxl-19 {
    margin: 1.9rem !important;
  }
  .mt-xxl-19,
  .my-xxl-19 {
    margin-top: 1.9rem !important;
  }
  .mr-xxl-19,
  .mx-xxl-19 {
    margin-right: 1.9rem !important;
  }
  .mb-xxl-19,
  .my-xxl-19 {
    margin-bottom: 1.9rem !important;
  }
  .ml-xxl-19,
  .mx-xxl-19 {
    margin-left: 1.9rem !important;
  }
  .m-xxl-20 {
    margin: 2rem !important;
  }
  .mt-xxl-20,
  .my-xxl-20 {
    margin-top: 2rem !important;
  }
  .mr-xxl-20,
  .mx-xxl-20 {
    margin-right: 2rem !important;
  }
  .mb-xxl-20,
  .my-xxl-20 {
    margin-bottom: 2rem !important;
  }
  .ml-xxl-20,
  .mx-xxl-20 {
    margin-left: 2rem !important;
  }
  .m-xxl-25 {
    margin: 2.5rem !important;
  }
  .mt-xxl-25,
  .my-xxl-25 {
    margin-top: 2.5rem !important;
  }
  .mr-xxl-25,
  .mx-xxl-25 {
    margin-right: 2.5rem !important;
  }
  .mb-xxl-25,
  .my-xxl-25 {
    margin-bottom: 2.5rem !important;
  }
  .ml-xxl-25,
  .mx-xxl-25 {
    margin-left: 2.5rem !important;
  }
  .m-xxl-30 {
    margin: 3rem !important;
  }
  .mt-xxl-30,
  .my-xxl-30 {
    margin-top: 3rem !important;
  }
  .mr-xxl-30,
  .mx-xxl-30 {
    margin-right: 3rem !important;
  }
  .mb-xxl-30,
  .my-xxl-30 {
    margin-bottom: 3rem !important;
  }
  .ml-xxl-30,
  .mx-xxl-30 {
    margin-left: 3rem !important;
  }
  .m-xxl-35 {
    margin: 3.5rem !important;
  }
  .mt-xxl-35,
  .my-xxl-35 {
    margin-top: 3.5rem !important;
  }
  .mr-xxl-35,
  .mx-xxl-35 {
    margin-right: 3.5rem !important;
  }
  .mb-xxl-35,
  .my-xxl-35 {
    margin-bottom: 3.5rem !important;
  }
  .ml-xxl-35,
  .mx-xxl-35 {
    margin-left: 3.5rem !important;
  }
  .m-xxl-40 {
    margin: 4rem !important;
  }
  .mt-xxl-40,
  .my-xxl-40 {
    margin-top: 4rem !important;
  }
  .mr-xxl-40,
  .mx-xxl-40 {
    margin-right: 4rem !important;
  }
  .mb-xxl-40,
  .my-xxl-40 {
    margin-bottom: 4rem !important;
  }
  .ml-xxl-40,
  .mx-xxl-40 {
    margin-left: 4rem !important;
  }
  .m-xxl-45 {
    margin: 4.5rem !important;
  }
  .mt-xxl-45,
  .my-xxl-45 {
    margin-top: 4.5rem !important;
  }
  .mr-xxl-45,
  .mx-xxl-45 {
    margin-right: 4.5rem !important;
  }
  .mb-xxl-45,
  .my-xxl-45 {
    margin-bottom: 4.5rem !important;
  }
  .ml-xxl-45,
  .mx-xxl-45 {
    margin-left: 4.5rem !important;
  }
  .m-xxl-50 {
    margin: 5rem !important;
  }
  .mt-xxl-50,
  .my-xxl-50 {
    margin-top: 5rem !important;
  }
  .mr-xxl-50,
  .mx-xxl-50 {
    margin-right: 5rem !important;
  }
  .mb-xxl-50,
  .my-xxl-50 {
    margin-bottom: 5rem !important;
  }
  .ml-xxl-50,
  .mx-xxl-50 {
    margin-left: 5rem !important;
  }
  .m-xxl-55 {
    margin: 5.5rem !important;
  }
  .mt-xxl-55,
  .my-xxl-55 {
    margin-top: 5.5rem !important;
  }
  .mr-xxl-55,
  .mx-xxl-55 {
    margin-right: 5.5rem !important;
  }
  .mb-xxl-55,
  .my-xxl-55 {
    margin-bottom: 5.5rem !important;
  }
  .ml-xxl-55,
  .mx-xxl-55 {
    margin-left: 5.5rem !important;
  }
  .m-xxl-60 {
    margin: 6rem !important;
  }
  .mt-xxl-60,
  .my-xxl-60 {
    margin-top: 6rem !important;
  }
  .mr-xxl-60,
  .mx-xxl-60 {
    margin-right: 6rem !important;
  }
  .mb-xxl-60,
  .my-xxl-60 {
    margin-bottom: 6rem !important;
  }
  .ml-xxl-60,
  .mx-xxl-60 {
    margin-left: 6rem !important;
  }
  .m-xxl-65 {
    margin: 6.5rem !important;
  }
  .mt-xxl-65,
  .my-xxl-65 {
    margin-top: 6.5rem !important;
  }
  .mr-xxl-65,
  .mx-xxl-65 {
    margin-right: 6.5rem !important;
  }
  .mb-xxl-65,
  .my-xxl-65 {
    margin-bottom: 6.5rem !important;
  }
  .ml-xxl-65,
  .mx-xxl-65 {
    margin-left: 6.5rem !important;
  }
  .m-xxl-70 {
    margin: 7rem !important;
  }
  .mt-xxl-70,
  .my-xxl-70 {
    margin-top: 7rem !important;
  }
  .mr-xxl-70,
  .mx-xxl-70 {
    margin-right: 7rem !important;
  }
  .mb-xxl-70,
  .my-xxl-70 {
    margin-bottom: 7rem !important;
  }
  .ml-xxl-70,
  .mx-xxl-70 {
    margin-left: 7rem !important;
  }
  .m-xxl-75 {
    margin: 7.5rem !important;
  }
  .mt-xxl-75,
  .my-xxl-75 {
    margin-top: 7.5rem !important;
  }
  .mr-xxl-75,
  .mx-xxl-75 {
    margin-right: 7.5rem !important;
  }
  .mb-xxl-75,
  .my-xxl-75 {
    margin-bottom: 7.5rem !important;
  }
  .ml-xxl-75,
  .mx-xxl-75 {
    margin-left: 7.5rem !important;
  }
  .m-xxl-80 {
    margin: 8rem !important;
  }
  .mt-xxl-80,
  .my-xxl-80 {
    margin-top: 8rem !important;
  }
  .mr-xxl-80,
  .mx-xxl-80 {
    margin-right: 8rem !important;
  }
  .mb-xxl-80,
  .my-xxl-80 {
    margin-bottom: 8rem !important;
  }
  .ml-xxl-80,
  .mx-xxl-80 {
    margin-left: 8rem !important;
  }
  .m-xxl-85 {
    margin: 8.5rem !important;
  }
  .mt-xxl-85,
  .my-xxl-85 {
    margin-top: 8.5rem !important;
  }
  .mr-xxl-85,
  .mx-xxl-85 {
    margin-right: 8.5rem !important;
  }
  .mb-xxl-85,
  .my-xxl-85 {
    margin-bottom: 8.5rem !important;
  }
  .ml-xxl-85,
  .mx-xxl-85 {
    margin-left: 8.5rem !important;
  }
  .m-xxl-90 {
    margin: 9rem !important;
  }
  .mt-xxl-90,
  .my-xxl-90 {
    margin-top: 9rem !important;
  }
  .mr-xxl-90,
  .mx-xxl-90 {
    margin-right: 9rem !important;
  }
  .mb-xxl-90,
  .my-xxl-90 {
    margin-bottom: 9rem !important;
  }
  .ml-xxl-90,
  .mx-xxl-90 {
    margin-left: 9rem !important;
  }
  .m-xxl-95 {
    margin: 9.5rem !important;
  }
  .mt-xxl-95,
  .my-xxl-95 {
    margin-top: 9.5rem !important;
  }
  .mr-xxl-95,
  .mx-xxl-95 {
    margin-right: 9.5rem !important;
  }
  .mb-xxl-95,
  .my-xxl-95 {
    margin-bottom: 9.5rem !important;
  }
  .ml-xxl-95,
  .mx-xxl-95 {
    margin-left: 9.5rem !important;
  }
  .m-xxl-100 {
    margin: 10rem !important;
  }
  .mt-xxl-100,
  .my-xxl-100 {
    margin-top: 10rem !important;
  }
  .mr-xxl-100,
  .mx-xxl-100 {
    margin-right: 10rem !important;
  }
  .mb-xxl-100,
  .my-xxl-100 {
    margin-bottom: 10rem !important;
  }
  .ml-xxl-100,
  .mx-xxl-100 {
    margin-left: 10rem !important;
  }
  .m-xxl-130 {
    margin: 13rem !important;
  }
  .mt-xxl-130,
  .my-xxl-130 {
    margin-top: 13rem !important;
  }
  .mr-xxl-130,
  .mx-xxl-130 {
    margin-right: 13rem !important;
  }
  .mb-xxl-130,
  .my-xxl-130 {
    margin-bottom: 13rem !important;
  }
  .ml-xxl-130,
  .mx-xxl-130 {
    margin-left: 13rem !important;
  }
  .m-xxl-140 {
    margin: 14rem !important;
  }
  .mt-xxl-140,
  .my-xxl-140 {
    margin-top: 14rem !important;
  }
  .mr-xxl-140,
  .mx-xxl-140 {
    margin-right: 14rem !important;
  }
  .mb-xxl-140,
  .my-xxl-140 {
    margin-bottom: 14rem !important;
  }
  .ml-xxl-140,
  .mx-xxl-140 {
    margin-left: 14rem !important;
  }
  .m-xxl-150 {
    margin: 15rem !important;
  }
  .mt-xxl-150,
  .my-xxl-150 {
    margin-top: 15rem !important;
  }
  .mr-xxl-150,
  .mx-xxl-150 {
    margin-right: 15rem !important;
  }
  .mb-xxl-150,
  .my-xxl-150 {
    margin-bottom: 15rem !important;
  }
  .ml-xxl-150,
  .mx-xxl-150 {
    margin-left: 15rem !important;
  }
  .m-xxl-200 {
    margin: 20rem !important;
  }
  .mt-xxl-200,
  .my-xxl-200 {
    margin-top: 20rem !important;
  }
  .mr-xxl-200,
  .mx-xxl-200 {
    margin-right: 20rem !important;
  }
  .mb-xxl-200,
  .my-xxl-200 {
    margin-bottom: 20rem !important;
  }
  .ml-xxl-200,
  .mx-xxl-200 {
    margin-left: 20rem !important;
  }
  .m-xxl-250 {
    margin: 25rem !important;
  }
  .mt-xxl-250,
  .my-xxl-250 {
    margin-top: 25rem !important;
  }
  .mr-xxl-250,
  .mx-xxl-250 {
    margin-right: 25rem !important;
  }
  .mb-xxl-250,
  .my-xxl-250 {
    margin-bottom: 25rem !important;
  }
  .ml-xxl-250,
  .mx-xxl-250 {
    margin-left: 25rem !important;
  }
  .m-xxl-300 {
    margin: 30rem !important;
  }
  .mt-xxl-300,
  .my-xxl-300 {
    margin-top: 30rem !important;
  }
  .mr-xxl-300,
  .mx-xxl-300 {
    margin-right: 30rem !important;
  }
  .mb-xxl-300,
  .my-xxl-300 {
    margin-bottom: 30rem !important;
  }
  .ml-xxl-300,
  .mx-xxl-300 {
    margin-left: 30rem !important;
  }
  .m-xxl-400 {
    margin: 40rem !important;
  }
  .mt-xxl-400,
  .my-xxl-400 {
    margin-top: 40rem !important;
  }
  .mr-xxl-400,
  .mx-xxl-400 {
    margin-right: 40rem !important;
  }
  .mb-xxl-400,
  .my-xxl-400 {
    margin-bottom: 40rem !important;
  }
  .ml-xxl-400,
  .mx-xxl-400 {
    margin-left: 40rem !important;
  }
  .m-xxl-410 {
    margin: 41rem !important;
  }
  .mt-xxl-410,
  .my-xxl-410 {
    margin-top: 41rem !important;
  }
  .mr-xxl-410,
  .mx-xxl-410 {
    margin-right: 41rem !important;
  }
  .mb-xxl-410,
  .my-xxl-410 {
    margin-bottom: 41rem !important;
  }
  .ml-xxl-410,
  .mx-xxl-410 {
    margin-left: 41rem !important;
  }
  .m-xxl-450 {
    margin: 45rem !important;
  }
  .mt-xxl-450,
  .my-xxl-450 {
    margin-top: 45rem !important;
  }
  .mr-xxl-450,
  .mx-xxl-450 {
    margin-right: 45rem !important;
  }
  .mb-xxl-450,
  .my-xxl-450 {
    margin-bottom: 45rem !important;
  }
  .ml-xxl-450,
  .mx-xxl-450 {
    margin-left: 45rem !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: 0.1rem !important;
  }
  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: 0.1rem !important;
  }
  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: 0.1rem !important;
  }
  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: 0.1rem !important;
  }
  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: 0.1rem !important;
  }
  .p-xxl-2 {
    padding: 0.2rem !important;
  }
  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: 0.2rem !important;
  }
  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: 0.2rem !important;
  }
  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: 0.2rem !important;
  }
  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: 0.2rem !important;
  }
  .p-xxl-3 {
    padding: 0.3rem !important;
  }
  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 0.3rem !important;
  }
  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 0.3rem !important;
  }
  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 0.3rem !important;
  }
  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 0.3rem !important;
  }
  .p-xxl-4 {
    padding: 0.4rem !important;
  }
  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 0.4rem !important;
  }
  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 0.4rem !important;
  }
  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 0.4rem !important;
  }
  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 0.4rem !important;
  }
  .p-xxl-5 {
    padding: 0.5rem !important;
  }
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 0.5rem !important;
  }
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 0.5rem !important;
  }
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 0.5rem !important;
  }
  .p-xxl-6 {
    padding: 0.6rem !important;
  }
  .pt-xxl-6,
  .py-xxl-6 {
    padding-top: 0.6rem !important;
  }
  .pr-xxl-6,
  .px-xxl-6 {
    padding-right: 0.6rem !important;
  }
  .pb-xxl-6,
  .py-xxl-6 {
    padding-bottom: 0.6rem !important;
  }
  .pl-xxl-6,
  .px-xxl-6 {
    padding-left: 0.6rem !important;
  }
  .p-xxl-7 {
    padding: 0.7rem !important;
  }
  .pt-xxl-7,
  .py-xxl-7 {
    padding-top: 0.7rem !important;
  }
  .pr-xxl-7,
  .px-xxl-7 {
    padding-right: 0.7rem !important;
  }
  .pb-xxl-7,
  .py-xxl-7 {
    padding-bottom: 0.7rem !important;
  }
  .pl-xxl-7,
  .px-xxl-7 {
    padding-left: 0.7rem !important;
  }
  .p-xxl-8 {
    padding: 0.8rem !important;
  }
  .pt-xxl-8,
  .py-xxl-8 {
    padding-top: 0.8rem !important;
  }
  .pr-xxl-8,
  .px-xxl-8 {
    padding-right: 0.8rem !important;
  }
  .pb-xxl-8,
  .py-xxl-8 {
    padding-bottom: 0.8rem !important;
  }
  .pl-xxl-8,
  .px-xxl-8 {
    padding-left: 0.8rem !important;
  }
  .p-xxl-9 {
    padding: 0.9rem !important;
  }
  .pt-xxl-9,
  .py-xxl-9 {
    padding-top: 0.9rem !important;
  }
  .pr-xxl-9,
  .px-xxl-9 {
    padding-right: 0.9rem !important;
  }
  .pb-xxl-9,
  .py-xxl-9 {
    padding-bottom: 0.9rem !important;
  }
  .pl-xxl-9,
  .px-xxl-9 {
    padding-left: 0.9rem !important;
  }
  .p-xxl-10 {
    padding: 1rem !important;
  }
  .pt-xxl-10,
  .py-xxl-10 {
    padding-top: 1rem !important;
  }
  .pr-xxl-10,
  .px-xxl-10 {
    padding-right: 1rem !important;
  }
  .pb-xxl-10,
  .py-xxl-10 {
    padding-bottom: 1rem !important;
  }
  .pl-xxl-10,
  .px-xxl-10 {
    padding-left: 1rem !important;
  }
  .p-xxl-11 {
    padding: 1.1rem !important;
  }
  .pt-xxl-11,
  .py-xxl-11 {
    padding-top: 1.1rem !important;
  }
  .pr-xxl-11,
  .px-xxl-11 {
    padding-right: 1.1rem !important;
  }
  .pb-xxl-11,
  .py-xxl-11 {
    padding-bottom: 1.1rem !important;
  }
  .pl-xxl-11,
  .px-xxl-11 {
    padding-left: 1.1rem !important;
  }
  .p-xxl-12 {
    padding: 1.2rem !important;
  }
  .pt-xxl-12,
  .py-xxl-12 {
    padding-top: 1.2rem !important;
  }
  .pr-xxl-12,
  .px-xxl-12 {
    padding-right: 1.2rem !important;
  }
  .pb-xxl-12,
  .py-xxl-12 {
    padding-bottom: 1.2rem !important;
  }
  .pl-xxl-12,
  .px-xxl-12 {
    padding-left: 1.2rem !important;
  }
  .p-xxl-13 {
    padding: 1.3rem !important;
  }
  .pt-xxl-13,
  .py-xxl-13 {
    padding-top: 1.3rem !important;
  }
  .pr-xxl-13,
  .px-xxl-13 {
    padding-right: 1.3rem !important;
  }
  .pb-xxl-13,
  .py-xxl-13 {
    padding-bottom: 1.3rem !important;
  }
  .pl-xxl-13,
  .px-xxl-13 {
    padding-left: 1.3rem !important;
  }
  .p-xxl-14 {
    padding: 1.4rem !important;
  }
  .pt-xxl-14,
  .py-xxl-14 {
    padding-top: 1.4rem !important;
  }
  .pr-xxl-14,
  .px-xxl-14 {
    padding-right: 1.4rem !important;
  }
  .pb-xxl-14,
  .py-xxl-14 {
    padding-bottom: 1.4rem !important;
  }
  .pl-xxl-14,
  .px-xxl-14 {
    padding-left: 1.4rem !important;
  }
  .p-xxl-15 {
    padding: 1.5rem !important;
  }
  .pt-xxl-15,
  .py-xxl-15 {
    padding-top: 1.5rem !important;
  }
  .pr-xxl-15,
  .px-xxl-15 {
    padding-right: 1.5rem !important;
  }
  .pb-xxl-15,
  .py-xxl-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxl-15,
  .px-xxl-15 {
    padding-left: 1.5rem !important;
  }
  .p-xxl-16 {
    padding: 1.6rem !important;
  }
  .pt-xxl-16,
  .py-xxl-16 {
    padding-top: 1.6rem !important;
  }
  .pr-xxl-16,
  .px-xxl-16 {
    padding-right: 1.6rem !important;
  }
  .pb-xxl-16,
  .py-xxl-16 {
    padding-bottom: 1.6rem !important;
  }
  .pl-xxl-16,
  .px-xxl-16 {
    padding-left: 1.6rem !important;
  }
  .p-xxl-17 {
    padding: 1.7rem !important;
  }
  .pt-xxl-17,
  .py-xxl-17 {
    padding-top: 1.7rem !important;
  }
  .pr-xxl-17,
  .px-xxl-17 {
    padding-right: 1.7rem !important;
  }
  .pb-xxl-17,
  .py-xxl-17 {
    padding-bottom: 1.7rem !important;
  }
  .pl-xxl-17,
  .px-xxl-17 {
    padding-left: 1.7rem !important;
  }
  .p-xxl-18 {
    padding: 1.8rem !important;
  }
  .pt-xxl-18,
  .py-xxl-18 {
    padding-top: 1.8rem !important;
  }
  .pr-xxl-18,
  .px-xxl-18 {
    padding-right: 1.8rem !important;
  }
  .pb-xxl-18,
  .py-xxl-18 {
    padding-bottom: 1.8rem !important;
  }
  .pl-xxl-18,
  .px-xxl-18 {
    padding-left: 1.8rem !important;
  }
  .p-xxl-19 {
    padding: 1.9rem !important;
  }
  .pt-xxl-19,
  .py-xxl-19 {
    padding-top: 1.9rem !important;
  }
  .pr-xxl-19,
  .px-xxl-19 {
    padding-right: 1.9rem !important;
  }
  .pb-xxl-19,
  .py-xxl-19 {
    padding-bottom: 1.9rem !important;
  }
  .pl-xxl-19,
  .px-xxl-19 {
    padding-left: 1.9rem !important;
  }
  .p-xxl-20 {
    padding: 2rem !important;
  }
  .pt-xxl-20,
  .py-xxl-20 {
    padding-top: 2rem !important;
  }
  .pr-xxl-20,
  .px-xxl-20 {
    padding-right: 2rem !important;
  }
  .pb-xxl-20,
  .py-xxl-20 {
    padding-bottom: 2rem !important;
  }
  .pl-xxl-20,
  .px-xxl-20 {
    padding-left: 2rem !important;
  }
  .p-xxl-25 {
    padding: 2.5rem !important;
  }
  .pt-xxl-25,
  .py-xxl-25 {
    padding-top: 2.5rem !important;
  }
  .pr-xxl-25,
  .px-xxl-25 {
    padding-right: 2.5rem !important;
  }
  .pb-xxl-25,
  .py-xxl-25 {
    padding-bottom: 2.5rem !important;
  }
  .pl-xxl-25,
  .px-xxl-25 {
    padding-left: 2.5rem !important;
  }
  .p-xxl-30 {
    padding: 3rem !important;
  }
  .pt-xxl-30,
  .py-xxl-30 {
    padding-top: 3rem !important;
  }
  .pr-xxl-30,
  .px-xxl-30 {
    padding-right: 3rem !important;
  }
  .pb-xxl-30,
  .py-xxl-30 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-30,
  .px-xxl-30 {
    padding-left: 3rem !important;
  }
  .p-xxl-35 {
    padding: 3.5rem !important;
  }
  .pt-xxl-35,
  .py-xxl-35 {
    padding-top: 3.5rem !important;
  }
  .pr-xxl-35,
  .px-xxl-35 {
    padding-right: 3.5rem !important;
  }
  .pb-xxl-35,
  .py-xxl-35 {
    padding-bottom: 3.5rem !important;
  }
  .pl-xxl-35,
  .px-xxl-35 {
    padding-left: 3.5rem !important;
  }
  .p-xxl-40 {
    padding: 4rem !important;
  }
  .pt-xxl-40,
  .py-xxl-40 {
    padding-top: 4rem !important;
  }
  .pr-xxl-40,
  .px-xxl-40 {
    padding-right: 4rem !important;
  }
  .pb-xxl-40,
  .py-xxl-40 {
    padding-bottom: 4rem !important;
  }
  .pl-xxl-40,
  .px-xxl-40 {
    padding-left: 4rem !important;
  }
  .p-xxl-45 {
    padding: 4.5rem !important;
  }
  .pt-xxl-45,
  .py-xxl-45 {
    padding-top: 4.5rem !important;
  }
  .pr-xxl-45,
  .px-xxl-45 {
    padding-right: 4.5rem !important;
  }
  .pb-xxl-45,
  .py-xxl-45 {
    padding-bottom: 4.5rem !important;
  }
  .pl-xxl-45,
  .px-xxl-45 {
    padding-left: 4.5rem !important;
  }
  .p-xxl-50 {
    padding: 5rem !important;
  }
  .pt-xxl-50,
  .py-xxl-50 {
    padding-top: 5rem !important;
  }
  .pr-xxl-50,
  .px-xxl-50 {
    padding-right: 5rem !important;
  }
  .pb-xxl-50,
  .py-xxl-50 {
    padding-bottom: 5rem !important;
  }
  .pl-xxl-50,
  .px-xxl-50 {
    padding-left: 5rem !important;
  }
  .p-xxl-55 {
    padding: 5.5rem !important;
  }
  .pt-xxl-55,
  .py-xxl-55 {
    padding-top: 5.5rem !important;
  }
  .pr-xxl-55,
  .px-xxl-55 {
    padding-right: 5.5rem !important;
  }
  .pb-xxl-55,
  .py-xxl-55 {
    padding-bottom: 5.5rem !important;
  }
  .pl-xxl-55,
  .px-xxl-55 {
    padding-left: 5.5rem !important;
  }
  .p-xxl-60 {
    padding: 6rem !important;
  }
  .pt-xxl-60,
  .py-xxl-60 {
    padding-top: 6rem !important;
  }
  .pr-xxl-60,
  .px-xxl-60 {
    padding-right: 6rem !important;
  }
  .pb-xxl-60,
  .py-xxl-60 {
    padding-bottom: 6rem !important;
  }
  .pl-xxl-60,
  .px-xxl-60 {
    padding-left: 6rem !important;
  }
  .p-xxl-65 {
    padding: 6.5rem !important;
  }
  .pt-xxl-65,
  .py-xxl-65 {
    padding-top: 6.5rem !important;
  }
  .pr-xxl-65,
  .px-xxl-65 {
    padding-right: 6.5rem !important;
  }
  .pb-xxl-65,
  .py-xxl-65 {
    padding-bottom: 6.5rem !important;
  }
  .pl-xxl-65,
  .px-xxl-65 {
    padding-left: 6.5rem !important;
  }
  .p-xxl-70 {
    padding: 7rem !important;
  }
  .pt-xxl-70,
  .py-xxl-70 {
    padding-top: 7rem !important;
  }
  .pr-xxl-70,
  .px-xxl-70 {
    padding-right: 7rem !important;
  }
  .pb-xxl-70,
  .py-xxl-70 {
    padding-bottom: 7rem !important;
  }
  .pl-xxl-70,
  .px-xxl-70 {
    padding-left: 7rem !important;
  }
  .p-xxl-75 {
    padding: 7.5rem !important;
  }
  .pt-xxl-75,
  .py-xxl-75 {
    padding-top: 7.5rem !important;
  }
  .pr-xxl-75,
  .px-xxl-75 {
    padding-right: 7.5rem !important;
  }
  .pb-xxl-75,
  .py-xxl-75 {
    padding-bottom: 7.5rem !important;
  }
  .pl-xxl-75,
  .px-xxl-75 {
    padding-left: 7.5rem !important;
  }
  .p-xxl-80 {
    padding: 8rem !important;
  }
  .pt-xxl-80,
  .py-xxl-80 {
    padding-top: 8rem !important;
  }
  .pr-xxl-80,
  .px-xxl-80 {
    padding-right: 8rem !important;
  }
  .pb-xxl-80,
  .py-xxl-80 {
    padding-bottom: 8rem !important;
  }
  .pl-xxl-80,
  .px-xxl-80 {
    padding-left: 8rem !important;
  }
  .p-xxl-85 {
    padding: 8.5rem !important;
  }
  .pt-xxl-85,
  .py-xxl-85 {
    padding-top: 8.5rem !important;
  }
  .pr-xxl-85,
  .px-xxl-85 {
    padding-right: 8.5rem !important;
  }
  .pb-xxl-85,
  .py-xxl-85 {
    padding-bottom: 8.5rem !important;
  }
  .pl-xxl-85,
  .px-xxl-85 {
    padding-left: 8.5rem !important;
  }
  .p-xxl-90 {
    padding: 9rem !important;
  }
  .pt-xxl-90,
  .py-xxl-90 {
    padding-top: 9rem !important;
  }
  .pr-xxl-90,
  .px-xxl-90 {
    padding-right: 9rem !important;
  }
  .pb-xxl-90,
  .py-xxl-90 {
    padding-bottom: 9rem !important;
  }
  .pl-xxl-90,
  .px-xxl-90 {
    padding-left: 9rem !important;
  }
  .p-xxl-95 {
    padding: 9.5rem !important;
  }
  .pt-xxl-95,
  .py-xxl-95 {
    padding-top: 9.5rem !important;
  }
  .pr-xxl-95,
  .px-xxl-95 {
    padding-right: 9.5rem !important;
  }
  .pb-xxl-95,
  .py-xxl-95 {
    padding-bottom: 9.5rem !important;
  }
  .pl-xxl-95,
  .px-xxl-95 {
    padding-left: 9.5rem !important;
  }
  .p-xxl-100 {
    padding: 10rem !important;
  }
  .pt-xxl-100,
  .py-xxl-100 {
    padding-top: 10rem !important;
  }
  .pr-xxl-100,
  .px-xxl-100 {
    padding-right: 10rem !important;
  }
  .pb-xxl-100,
  .py-xxl-100 {
    padding-bottom: 10rem !important;
  }
  .pl-xxl-100,
  .px-xxl-100 {
    padding-left: 10rem !important;
  }
  .p-xxl-130 {
    padding: 13rem !important;
  }
  .pt-xxl-130,
  .py-xxl-130 {
    padding-top: 13rem !important;
  }
  .pr-xxl-130,
  .px-xxl-130 {
    padding-right: 13rem !important;
  }
  .pb-xxl-130,
  .py-xxl-130 {
    padding-bottom: 13rem !important;
  }
  .pl-xxl-130,
  .px-xxl-130 {
    padding-left: 13rem !important;
  }
  .p-xxl-140 {
    padding: 14rem !important;
  }
  .pt-xxl-140,
  .py-xxl-140 {
    padding-top: 14rem !important;
  }
  .pr-xxl-140,
  .px-xxl-140 {
    padding-right: 14rem !important;
  }
  .pb-xxl-140,
  .py-xxl-140 {
    padding-bottom: 14rem !important;
  }
  .pl-xxl-140,
  .px-xxl-140 {
    padding-left: 14rem !important;
  }
  .p-xxl-150 {
    padding: 15rem !important;
  }
  .pt-xxl-150,
  .py-xxl-150 {
    padding-top: 15rem !important;
  }
  .pr-xxl-150,
  .px-xxl-150 {
    padding-right: 15rem !important;
  }
  .pb-xxl-150,
  .py-xxl-150 {
    padding-bottom: 15rem !important;
  }
  .pl-xxl-150,
  .px-xxl-150 {
    padding-left: 15rem !important;
  }
  .p-xxl-200 {
    padding: 20rem !important;
  }
  .pt-xxl-200,
  .py-xxl-200 {
    padding-top: 20rem !important;
  }
  .pr-xxl-200,
  .px-xxl-200 {
    padding-right: 20rem !important;
  }
  .pb-xxl-200,
  .py-xxl-200 {
    padding-bottom: 20rem !important;
  }
  .pl-xxl-200,
  .px-xxl-200 {
    padding-left: 20rem !important;
  }
  .p-xxl-250 {
    padding: 25rem !important;
  }
  .pt-xxl-250,
  .py-xxl-250 {
    padding-top: 25rem !important;
  }
  .pr-xxl-250,
  .px-xxl-250 {
    padding-right: 25rem !important;
  }
  .pb-xxl-250,
  .py-xxl-250 {
    padding-bottom: 25rem !important;
  }
  .pl-xxl-250,
  .px-xxl-250 {
    padding-left: 25rem !important;
  }
  .p-xxl-300 {
    padding: 30rem !important;
  }
  .pt-xxl-300,
  .py-xxl-300 {
    padding-top: 30rem !important;
  }
  .pr-xxl-300,
  .px-xxl-300 {
    padding-right: 30rem !important;
  }
  .pb-xxl-300,
  .py-xxl-300 {
    padding-bottom: 30rem !important;
  }
  .pl-xxl-300,
  .px-xxl-300 {
    padding-left: 30rem !important;
  }
  .p-xxl-400 {
    padding: 40rem !important;
  }
  .pt-xxl-400,
  .py-xxl-400 {
    padding-top: 40rem !important;
  }
  .pr-xxl-400,
  .px-xxl-400 {
    padding-right: 40rem !important;
  }
  .pb-xxl-400,
  .py-xxl-400 {
    padding-bottom: 40rem !important;
  }
  .pl-xxl-400,
  .px-xxl-400 {
    padding-left: 40rem !important;
  }
  .p-xxl-410 {
    padding: 41rem !important;
  }
  .pt-xxl-410,
  .py-xxl-410 {
    padding-top: 41rem !important;
  }
  .pr-xxl-410,
  .px-xxl-410 {
    padding-right: 41rem !important;
  }
  .pb-xxl-410,
  .py-xxl-410 {
    padding-bottom: 41rem !important;
  }
  .pl-xxl-410,
  .px-xxl-410 {
    padding-left: 41rem !important;
  }
  .p-xxl-450 {
    padding: 45rem !important;
  }
  .pt-xxl-450,
  .py-xxl-450 {
    padding-top: 45rem !important;
  }
  .pr-xxl-450,
  .px-xxl-450 {
    padding-right: 45rem !important;
  }
  .pb-xxl-450,
  .py-xxl-450 {
    padding-bottom: 45rem !important;
  }
  .pl-xxl-450,
  .px-xxl-450 {
    padding-left: 45rem !important;
  }
  .m-xxl-n1 {
    margin: -0.1rem !important;
  }
  .mt-xxl-n1,
  .my-xxl-n1 {
    margin-top: -0.1rem !important;
  }
  .mr-xxl-n1,
  .mx-xxl-n1 {
    margin-right: -0.1rem !important;
  }
  .mb-xxl-n1,
  .my-xxl-n1 {
    margin-bottom: -0.1rem !important;
  }
  .ml-xxl-n1,
  .mx-xxl-n1 {
    margin-left: -0.1rem !important;
  }
  .m-xxl-n2 {
    margin: -0.2rem !important;
  }
  .mt-xxl-n2,
  .my-xxl-n2 {
    margin-top: -0.2rem !important;
  }
  .mr-xxl-n2,
  .mx-xxl-n2 {
    margin-right: -0.2rem !important;
  }
  .mb-xxl-n2,
  .my-xxl-n2 {
    margin-bottom: -0.2rem !important;
  }
  .ml-xxl-n2,
  .mx-xxl-n2 {
    margin-left: -0.2rem !important;
  }
  .m-xxl-n3 {
    margin: -0.3rem !important;
  }
  .mt-xxl-n3,
  .my-xxl-n3 {
    margin-top: -0.3rem !important;
  }
  .mr-xxl-n3,
  .mx-xxl-n3 {
    margin-right: -0.3rem !important;
  }
  .mb-xxl-n3,
  .my-xxl-n3 {
    margin-bottom: -0.3rem !important;
  }
  .ml-xxl-n3,
  .mx-xxl-n3 {
    margin-left: -0.3rem !important;
  }
  .m-xxl-n4 {
    margin: -0.4rem !important;
  }
  .mt-xxl-n4,
  .my-xxl-n4 {
    margin-top: -0.4rem !important;
  }
  .mr-xxl-n4,
  .mx-xxl-n4 {
    margin-right: -0.4rem !important;
  }
  .mb-xxl-n4,
  .my-xxl-n4 {
    margin-bottom: -0.4rem !important;
  }
  .ml-xxl-n4,
  .mx-xxl-n4 {
    margin-left: -0.4rem !important;
  }
  .m-xxl-n5 {
    margin: -0.5rem !important;
  }
  .mt-xxl-n5,
  .my-xxl-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-xxl-n5,
  .mx-xxl-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-xxl-n5,
  .my-xxl-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xxl-n5,
  .mx-xxl-n5 {
    margin-left: -0.5rem !important;
  }
  .m-xxl-n6 {
    margin: -0.6rem !important;
  }
  .mt-xxl-n6,
  .my-xxl-n6 {
    margin-top: -0.6rem !important;
  }
  .mr-xxl-n6,
  .mx-xxl-n6 {
    margin-right: -0.6rem !important;
  }
  .mb-xxl-n6,
  .my-xxl-n6 {
    margin-bottom: -0.6rem !important;
  }
  .ml-xxl-n6,
  .mx-xxl-n6 {
    margin-left: -0.6rem !important;
  }
  .m-xxl-n7 {
    margin: -0.7rem !important;
  }
  .mt-xxl-n7,
  .my-xxl-n7 {
    margin-top: -0.7rem !important;
  }
  .mr-xxl-n7,
  .mx-xxl-n7 {
    margin-right: -0.7rem !important;
  }
  .mb-xxl-n7,
  .my-xxl-n7 {
    margin-bottom: -0.7rem !important;
  }
  .ml-xxl-n7,
  .mx-xxl-n7 {
    margin-left: -0.7rem !important;
  }
  .m-xxl-n8 {
    margin: -0.8rem !important;
  }
  .mt-xxl-n8,
  .my-xxl-n8 {
    margin-top: -0.8rem !important;
  }
  .mr-xxl-n8,
  .mx-xxl-n8 {
    margin-right: -0.8rem !important;
  }
  .mb-xxl-n8,
  .my-xxl-n8 {
    margin-bottom: -0.8rem !important;
  }
  .ml-xxl-n8,
  .mx-xxl-n8 {
    margin-left: -0.8rem !important;
  }
  .m-xxl-n9 {
    margin: -0.9rem !important;
  }
  .mt-xxl-n9,
  .my-xxl-n9 {
    margin-top: -0.9rem !important;
  }
  .mr-xxl-n9,
  .mx-xxl-n9 {
    margin-right: -0.9rem !important;
  }
  .mb-xxl-n9,
  .my-xxl-n9 {
    margin-bottom: -0.9rem !important;
  }
  .ml-xxl-n9,
  .mx-xxl-n9 {
    margin-left: -0.9rem !important;
  }
  .m-xxl-n10 {
    margin: -1rem !important;
  }
  .mt-xxl-n10,
  .my-xxl-n10 {
    margin-top: -1rem !important;
  }
  .mr-xxl-n10,
  .mx-xxl-n10 {
    margin-right: -1rem !important;
  }
  .mb-xxl-n10,
  .my-xxl-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-xxl-n10,
  .mx-xxl-n10 {
    margin-left: -1rem !important;
  }
  .m-xxl-n11 {
    margin: -1.1rem !important;
  }
  .mt-xxl-n11,
  .my-xxl-n11 {
    margin-top: -1.1rem !important;
  }
  .mr-xxl-n11,
  .mx-xxl-n11 {
    margin-right: -1.1rem !important;
  }
  .mb-xxl-n11,
  .my-xxl-n11 {
    margin-bottom: -1.1rem !important;
  }
  .ml-xxl-n11,
  .mx-xxl-n11 {
    margin-left: -1.1rem !important;
  }
  .m-xxl-n12 {
    margin: -1.2rem !important;
  }
  .mt-xxl-n12,
  .my-xxl-n12 {
    margin-top: -1.2rem !important;
  }
  .mr-xxl-n12,
  .mx-xxl-n12 {
    margin-right: -1.2rem !important;
  }
  .mb-xxl-n12,
  .my-xxl-n12 {
    margin-bottom: -1.2rem !important;
  }
  .ml-xxl-n12,
  .mx-xxl-n12 {
    margin-left: -1.2rem !important;
  }
  .m-xxl-n13 {
    margin: -1.3rem !important;
  }
  .mt-xxl-n13,
  .my-xxl-n13 {
    margin-top: -1.3rem !important;
  }
  .mr-xxl-n13,
  .mx-xxl-n13 {
    margin-right: -1.3rem !important;
  }
  .mb-xxl-n13,
  .my-xxl-n13 {
    margin-bottom: -1.3rem !important;
  }
  .ml-xxl-n13,
  .mx-xxl-n13 {
    margin-left: -1.3rem !important;
  }
  .m-xxl-n14 {
    margin: -1.4rem !important;
  }
  .mt-xxl-n14,
  .my-xxl-n14 {
    margin-top: -1.4rem !important;
  }
  .mr-xxl-n14,
  .mx-xxl-n14 {
    margin-right: -1.4rem !important;
  }
  .mb-xxl-n14,
  .my-xxl-n14 {
    margin-bottom: -1.4rem !important;
  }
  .ml-xxl-n14,
  .mx-xxl-n14 {
    margin-left: -1.4rem !important;
  }
  .m-xxl-n15 {
    margin: -1.5rem !important;
  }
  .mt-xxl-n15,
  .my-xxl-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-xxl-n15,
  .mx-xxl-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-xxl-n15,
  .my-xxl-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xxl-n15,
  .mx-xxl-n15 {
    margin-left: -1.5rem !important;
  }
  .m-xxl-n16 {
    margin: -1.6rem !important;
  }
  .mt-xxl-n16,
  .my-xxl-n16 {
    margin-top: -1.6rem !important;
  }
  .mr-xxl-n16,
  .mx-xxl-n16 {
    margin-right: -1.6rem !important;
  }
  .mb-xxl-n16,
  .my-xxl-n16 {
    margin-bottom: -1.6rem !important;
  }
  .ml-xxl-n16,
  .mx-xxl-n16 {
    margin-left: -1.6rem !important;
  }
  .m-xxl-n17 {
    margin: -1.7rem !important;
  }
  .mt-xxl-n17,
  .my-xxl-n17 {
    margin-top: -1.7rem !important;
  }
  .mr-xxl-n17,
  .mx-xxl-n17 {
    margin-right: -1.7rem !important;
  }
  .mb-xxl-n17,
  .my-xxl-n17 {
    margin-bottom: -1.7rem !important;
  }
  .ml-xxl-n17,
  .mx-xxl-n17 {
    margin-left: -1.7rem !important;
  }
  .m-xxl-n18 {
    margin: -1.8rem !important;
  }
  .mt-xxl-n18,
  .my-xxl-n18 {
    margin-top: -1.8rem !important;
  }
  .mr-xxl-n18,
  .mx-xxl-n18 {
    margin-right: -1.8rem !important;
  }
  .mb-xxl-n18,
  .my-xxl-n18 {
    margin-bottom: -1.8rem !important;
  }
  .ml-xxl-n18,
  .mx-xxl-n18 {
    margin-left: -1.8rem !important;
  }
  .m-xxl-n19 {
    margin: -1.9rem !important;
  }
  .mt-xxl-n19,
  .my-xxl-n19 {
    margin-top: -1.9rem !important;
  }
  .mr-xxl-n19,
  .mx-xxl-n19 {
    margin-right: -1.9rem !important;
  }
  .mb-xxl-n19,
  .my-xxl-n19 {
    margin-bottom: -1.9rem !important;
  }
  .ml-xxl-n19,
  .mx-xxl-n19 {
    margin-left: -1.9rem !important;
  }
  .m-xxl-n20 {
    margin: -2rem !important;
  }
  .mt-xxl-n20,
  .my-xxl-n20 {
    margin-top: -2rem !important;
  }
  .mr-xxl-n20,
  .mx-xxl-n20 {
    margin-right: -2rem !important;
  }
  .mb-xxl-n20,
  .my-xxl-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-xxl-n20,
  .mx-xxl-n20 {
    margin-left: -2rem !important;
  }
  .m-xxl-n25 {
    margin: -2.5rem !important;
  }
  .mt-xxl-n25,
  .my-xxl-n25 {
    margin-top: -2.5rem !important;
  }
  .mr-xxl-n25,
  .mx-xxl-n25 {
    margin-right: -2.5rem !important;
  }
  .mb-xxl-n25,
  .my-xxl-n25 {
    margin-bottom: -2.5rem !important;
  }
  .ml-xxl-n25,
  .mx-xxl-n25 {
    margin-left: -2.5rem !important;
  }
  .m-xxl-n30 {
    margin: -3rem !important;
  }
  .mt-xxl-n30,
  .my-xxl-n30 {
    margin-top: -3rem !important;
  }
  .mr-xxl-n30,
  .mx-xxl-n30 {
    margin-right: -3rem !important;
  }
  .mb-xxl-n30,
  .my-xxl-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-xxl-n30,
  .mx-xxl-n30 {
    margin-left: -3rem !important;
  }
  .m-xxl-n35 {
    margin: -3.5rem !important;
  }
  .mt-xxl-n35,
  .my-xxl-n35 {
    margin-top: -3.5rem !important;
  }
  .mr-xxl-n35,
  .mx-xxl-n35 {
    margin-right: -3.5rem !important;
  }
  .mb-xxl-n35,
  .my-xxl-n35 {
    margin-bottom: -3.5rem !important;
  }
  .ml-xxl-n35,
  .mx-xxl-n35 {
    margin-left: -3.5rem !important;
  }
  .m-xxl-n40 {
    margin: -4rem !important;
  }
  .mt-xxl-n40,
  .my-xxl-n40 {
    margin-top: -4rem !important;
  }
  .mr-xxl-n40,
  .mx-xxl-n40 {
    margin-right: -4rem !important;
  }
  .mb-xxl-n40,
  .my-xxl-n40 {
    margin-bottom: -4rem !important;
  }
  .ml-xxl-n40,
  .mx-xxl-n40 {
    margin-left: -4rem !important;
  }
  .m-xxl-n45 {
    margin: -4.5rem !important;
  }
  .mt-xxl-n45,
  .my-xxl-n45 {
    margin-top: -4.5rem !important;
  }
  .mr-xxl-n45,
  .mx-xxl-n45 {
    margin-right: -4.5rem !important;
  }
  .mb-xxl-n45,
  .my-xxl-n45 {
    margin-bottom: -4.5rem !important;
  }
  .ml-xxl-n45,
  .mx-xxl-n45 {
    margin-left: -4.5rem !important;
  }
  .m-xxl-n50 {
    margin: -5rem !important;
  }
  .mt-xxl-n50,
  .my-xxl-n50 {
    margin-top: -5rem !important;
  }
  .mr-xxl-n50,
  .mx-xxl-n50 {
    margin-right: -5rem !important;
  }
  .mb-xxl-n50,
  .my-xxl-n50 {
    margin-bottom: -5rem !important;
  }
  .ml-xxl-n50,
  .mx-xxl-n50 {
    margin-left: -5rem !important;
  }
  .m-xxl-n55 {
    margin: -5.5rem !important;
  }
  .mt-xxl-n55,
  .my-xxl-n55 {
    margin-top: -5.5rem !important;
  }
  .mr-xxl-n55,
  .mx-xxl-n55 {
    margin-right: -5.5rem !important;
  }
  .mb-xxl-n55,
  .my-xxl-n55 {
    margin-bottom: -5.5rem !important;
  }
  .ml-xxl-n55,
  .mx-xxl-n55 {
    margin-left: -5.5rem !important;
  }
  .m-xxl-n60 {
    margin: -6rem !important;
  }
  .mt-xxl-n60,
  .my-xxl-n60 {
    margin-top: -6rem !important;
  }
  .mr-xxl-n60,
  .mx-xxl-n60 {
    margin-right: -6rem !important;
  }
  .mb-xxl-n60,
  .my-xxl-n60 {
    margin-bottom: -6rem !important;
  }
  .ml-xxl-n60,
  .mx-xxl-n60 {
    margin-left: -6rem !important;
  }
  .m-xxl-n65 {
    margin: -6.5rem !important;
  }
  .mt-xxl-n65,
  .my-xxl-n65 {
    margin-top: -6.5rem !important;
  }
  .mr-xxl-n65,
  .mx-xxl-n65 {
    margin-right: -6.5rem !important;
  }
  .mb-xxl-n65,
  .my-xxl-n65 {
    margin-bottom: -6.5rem !important;
  }
  .ml-xxl-n65,
  .mx-xxl-n65 {
    margin-left: -6.5rem !important;
  }
  .m-xxl-n70 {
    margin: -7rem !important;
  }
  .mt-xxl-n70,
  .my-xxl-n70 {
    margin-top: -7rem !important;
  }
  .mr-xxl-n70,
  .mx-xxl-n70 {
    margin-right: -7rem !important;
  }
  .mb-xxl-n70,
  .my-xxl-n70 {
    margin-bottom: -7rem !important;
  }
  .ml-xxl-n70,
  .mx-xxl-n70 {
    margin-left: -7rem !important;
  }
  .m-xxl-n75 {
    margin: -7.5rem !important;
  }
  .mt-xxl-n75,
  .my-xxl-n75 {
    margin-top: -7.5rem !important;
  }
  .mr-xxl-n75,
  .mx-xxl-n75 {
    margin-right: -7.5rem !important;
  }
  .mb-xxl-n75,
  .my-xxl-n75 {
    margin-bottom: -7.5rem !important;
  }
  .ml-xxl-n75,
  .mx-xxl-n75 {
    margin-left: -7.5rem !important;
  }
  .m-xxl-n80 {
    margin: -8rem !important;
  }
  .mt-xxl-n80,
  .my-xxl-n80 {
    margin-top: -8rem !important;
  }
  .mr-xxl-n80,
  .mx-xxl-n80 {
    margin-right: -8rem !important;
  }
  .mb-xxl-n80,
  .my-xxl-n80 {
    margin-bottom: -8rem !important;
  }
  .ml-xxl-n80,
  .mx-xxl-n80 {
    margin-left: -8rem !important;
  }
  .m-xxl-n85 {
    margin: -8.5rem !important;
  }
  .mt-xxl-n85,
  .my-xxl-n85 {
    margin-top: -8.5rem !important;
  }
  .mr-xxl-n85,
  .mx-xxl-n85 {
    margin-right: -8.5rem !important;
  }
  .mb-xxl-n85,
  .my-xxl-n85 {
    margin-bottom: -8.5rem !important;
  }
  .ml-xxl-n85,
  .mx-xxl-n85 {
    margin-left: -8.5rem !important;
  }
  .m-xxl-n90 {
    margin: -9rem !important;
  }
  .mt-xxl-n90,
  .my-xxl-n90 {
    margin-top: -9rem !important;
  }
  .mr-xxl-n90,
  .mx-xxl-n90 {
    margin-right: -9rem !important;
  }
  .mb-xxl-n90,
  .my-xxl-n90 {
    margin-bottom: -9rem !important;
  }
  .ml-xxl-n90,
  .mx-xxl-n90 {
    margin-left: -9rem !important;
  }
  .m-xxl-n95 {
    margin: -9.5rem !important;
  }
  .mt-xxl-n95,
  .my-xxl-n95 {
    margin-top: -9.5rem !important;
  }
  .mr-xxl-n95,
  .mx-xxl-n95 {
    margin-right: -9.5rem !important;
  }
  .mb-xxl-n95,
  .my-xxl-n95 {
    margin-bottom: -9.5rem !important;
  }
  .ml-xxl-n95,
  .mx-xxl-n95 {
    margin-left: -9.5rem !important;
  }
  .m-xxl-n100 {
    margin: -10rem !important;
  }
  .mt-xxl-n100,
  .my-xxl-n100 {
    margin-top: -10rem !important;
  }
  .mr-xxl-n100,
  .mx-xxl-n100 {
    margin-right: -10rem !important;
  }
  .mb-xxl-n100,
  .my-xxl-n100 {
    margin-bottom: -10rem !important;
  }
  .ml-xxl-n100,
  .mx-xxl-n100 {
    margin-left: -10rem !important;
  }
  .m-xxl-n130 {
    margin: -13rem !important;
  }
  .mt-xxl-n130,
  .my-xxl-n130 {
    margin-top: -13rem !important;
  }
  .mr-xxl-n130,
  .mx-xxl-n130 {
    margin-right: -13rem !important;
  }
  .mb-xxl-n130,
  .my-xxl-n130 {
    margin-bottom: -13rem !important;
  }
  .ml-xxl-n130,
  .mx-xxl-n130 {
    margin-left: -13rem !important;
  }
  .m-xxl-n140 {
    margin: -14rem !important;
  }
  .mt-xxl-n140,
  .my-xxl-n140 {
    margin-top: -14rem !important;
  }
  .mr-xxl-n140,
  .mx-xxl-n140 {
    margin-right: -14rem !important;
  }
  .mb-xxl-n140,
  .my-xxl-n140 {
    margin-bottom: -14rem !important;
  }
  .ml-xxl-n140,
  .mx-xxl-n140 {
    margin-left: -14rem !important;
  }
  .m-xxl-n150 {
    margin: -15rem !important;
  }
  .mt-xxl-n150,
  .my-xxl-n150 {
    margin-top: -15rem !important;
  }
  .mr-xxl-n150,
  .mx-xxl-n150 {
    margin-right: -15rem !important;
  }
  .mb-xxl-n150,
  .my-xxl-n150 {
    margin-bottom: -15rem !important;
  }
  .ml-xxl-n150,
  .mx-xxl-n150 {
    margin-left: -15rem !important;
  }
  .m-xxl-n200 {
    margin: -20rem !important;
  }
  .mt-xxl-n200,
  .my-xxl-n200 {
    margin-top: -20rem !important;
  }
  .mr-xxl-n200,
  .mx-xxl-n200 {
    margin-right: -20rem !important;
  }
  .mb-xxl-n200,
  .my-xxl-n200 {
    margin-bottom: -20rem !important;
  }
  .ml-xxl-n200,
  .mx-xxl-n200 {
    margin-left: -20rem !important;
  }
  .m-xxl-n250 {
    margin: -25rem !important;
  }
  .mt-xxl-n250,
  .my-xxl-n250 {
    margin-top: -25rem !important;
  }
  .mr-xxl-n250,
  .mx-xxl-n250 {
    margin-right: -25rem !important;
  }
  .mb-xxl-n250,
  .my-xxl-n250 {
    margin-bottom: -25rem !important;
  }
  .ml-xxl-n250,
  .mx-xxl-n250 {
    margin-left: -25rem !important;
  }
  .m-xxl-n300 {
    margin: -30rem !important;
  }
  .mt-xxl-n300,
  .my-xxl-n300 {
    margin-top: -30rem !important;
  }
  .mr-xxl-n300,
  .mx-xxl-n300 {
    margin-right: -30rem !important;
  }
  .mb-xxl-n300,
  .my-xxl-n300 {
    margin-bottom: -30rem !important;
  }
  .ml-xxl-n300,
  .mx-xxl-n300 {
    margin-left: -30rem !important;
  }
  .m-xxl-n400 {
    margin: -40rem !important;
  }
  .mt-xxl-n400,
  .my-xxl-n400 {
    margin-top: -40rem !important;
  }
  .mr-xxl-n400,
  .mx-xxl-n400 {
    margin-right: -40rem !important;
  }
  .mb-xxl-n400,
  .my-xxl-n400 {
    margin-bottom: -40rem !important;
  }
  .ml-xxl-n400,
  .mx-xxl-n400 {
    margin-left: -40rem !important;
  }
  .m-xxl-n410 {
    margin: -41rem !important;
  }
  .mt-xxl-n410,
  .my-xxl-n410 {
    margin-top: -41rem !important;
  }
  .mr-xxl-n410,
  .mx-xxl-n410 {
    margin-right: -41rem !important;
  }
  .mb-xxl-n410,
  .my-xxl-n410 {
    margin-bottom: -41rem !important;
  }
  .ml-xxl-n410,
  .mx-xxl-n410 {
    margin-left: -41rem !important;
  }
  .m-xxl-n450 {
    margin: -45rem !important;
  }
  .mt-xxl-n450,
  .my-xxl-n450 {
    margin-top: -45rem !important;
  }
  .mr-xxl-n450,
  .mx-xxl-n450 {
    margin-right: -45rem !important;
  }
  .mb-xxl-n450,
  .my-xxl-n450 {
    margin-bottom: -45rem !important;
  }
  .ml-xxl-n450,
  .mx-xxl-n450 {
    margin-left: -45rem !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-xxxl-0 {
    margin: 0 !important;
  }
  .mt-xxxl-0,
  .my-xxxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxxl-0,
  .mx-xxxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxxl-0,
  .my-xxxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxxl-0,
  .mx-xxxl-0 {
    margin-left: 0 !important;
  }
  .m-xxxl-1 {
    margin: 0.1rem !important;
  }
  .mt-xxxl-1,
  .my-xxxl-1 {
    margin-top: 0.1rem !important;
  }
  .mr-xxxl-1,
  .mx-xxxl-1 {
    margin-right: 0.1rem !important;
  }
  .mb-xxxl-1,
  .my-xxxl-1 {
    margin-bottom: 0.1rem !important;
  }
  .ml-xxxl-1,
  .mx-xxxl-1 {
    margin-left: 0.1rem !important;
  }
  .m-xxxl-2 {
    margin: 0.2rem !important;
  }
  .mt-xxxl-2,
  .my-xxxl-2 {
    margin-top: 0.2rem !important;
  }
  .mr-xxxl-2,
  .mx-xxxl-2 {
    margin-right: 0.2rem !important;
  }
  .mb-xxxl-2,
  .my-xxxl-2 {
    margin-bottom: 0.2rem !important;
  }
  .ml-xxxl-2,
  .mx-xxxl-2 {
    margin-left: 0.2rem !important;
  }
  .m-xxxl-3 {
    margin: 0.3rem !important;
  }
  .mt-xxxl-3,
  .my-xxxl-3 {
    margin-top: 0.3rem !important;
  }
  .mr-xxxl-3,
  .mx-xxxl-3 {
    margin-right: 0.3rem !important;
  }
  .mb-xxxl-3,
  .my-xxxl-3 {
    margin-bottom: 0.3rem !important;
  }
  .ml-xxxl-3,
  .mx-xxxl-3 {
    margin-left: 0.3rem !important;
  }
  .m-xxxl-4 {
    margin: 0.4rem !important;
  }
  .mt-xxxl-4,
  .my-xxxl-4 {
    margin-top: 0.4rem !important;
  }
  .mr-xxxl-4,
  .mx-xxxl-4 {
    margin-right: 0.4rem !important;
  }
  .mb-xxxl-4,
  .my-xxxl-4 {
    margin-bottom: 0.4rem !important;
  }
  .ml-xxxl-4,
  .mx-xxxl-4 {
    margin-left: 0.4rem !important;
  }
  .m-xxxl-5 {
    margin: 0.5rem !important;
  }
  .mt-xxxl-5,
  .my-xxxl-5 {
    margin-top: 0.5rem !important;
  }
  .mr-xxxl-5,
  .mx-xxxl-5 {
    margin-right: 0.5rem !important;
  }
  .mb-xxxl-5,
  .my-xxxl-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxxl-5,
  .mx-xxxl-5 {
    margin-left: 0.5rem !important;
  }
  .m-xxxl-6 {
    margin: 0.6rem !important;
  }
  .mt-xxxl-6,
  .my-xxxl-6 {
    margin-top: 0.6rem !important;
  }
  .mr-xxxl-6,
  .mx-xxxl-6 {
    margin-right: 0.6rem !important;
  }
  .mb-xxxl-6,
  .my-xxxl-6 {
    margin-bottom: 0.6rem !important;
  }
  .ml-xxxl-6,
  .mx-xxxl-6 {
    margin-left: 0.6rem !important;
  }
  .m-xxxl-7 {
    margin: 0.7rem !important;
  }
  .mt-xxxl-7,
  .my-xxxl-7 {
    margin-top: 0.7rem !important;
  }
  .mr-xxxl-7,
  .mx-xxxl-7 {
    margin-right: 0.7rem !important;
  }
  .mb-xxxl-7,
  .my-xxxl-7 {
    margin-bottom: 0.7rem !important;
  }
  .ml-xxxl-7,
  .mx-xxxl-7 {
    margin-left: 0.7rem !important;
  }
  .m-xxxl-8 {
    margin: 0.8rem !important;
  }
  .mt-xxxl-8,
  .my-xxxl-8 {
    margin-top: 0.8rem !important;
  }
  .mr-xxxl-8,
  .mx-xxxl-8 {
    margin-right: 0.8rem !important;
  }
  .mb-xxxl-8,
  .my-xxxl-8 {
    margin-bottom: 0.8rem !important;
  }
  .ml-xxxl-8,
  .mx-xxxl-8 {
    margin-left: 0.8rem !important;
  }
  .m-xxxl-9 {
    margin: 0.9rem !important;
  }
  .mt-xxxl-9,
  .my-xxxl-9 {
    margin-top: 0.9rem !important;
  }
  .mr-xxxl-9,
  .mx-xxxl-9 {
    margin-right: 0.9rem !important;
  }
  .mb-xxxl-9,
  .my-xxxl-9 {
    margin-bottom: 0.9rem !important;
  }
  .ml-xxxl-9,
  .mx-xxxl-9 {
    margin-left: 0.9rem !important;
  }
  .m-xxxl-10 {
    margin: 1rem !important;
  }
  .mt-xxxl-10,
  .my-xxxl-10 {
    margin-top: 1rem !important;
  }
  .mr-xxxl-10,
  .mx-xxxl-10 {
    margin-right: 1rem !important;
  }
  .mb-xxxl-10,
  .my-xxxl-10 {
    margin-bottom: 1rem !important;
  }
  .ml-xxxl-10,
  .mx-xxxl-10 {
    margin-left: 1rem !important;
  }
  .m-xxxl-11 {
    margin: 1.1rem !important;
  }
  .mt-xxxl-11,
  .my-xxxl-11 {
    margin-top: 1.1rem !important;
  }
  .mr-xxxl-11,
  .mx-xxxl-11 {
    margin-right: 1.1rem !important;
  }
  .mb-xxxl-11,
  .my-xxxl-11 {
    margin-bottom: 1.1rem !important;
  }
  .ml-xxxl-11,
  .mx-xxxl-11 {
    margin-left: 1.1rem !important;
  }
  .m-xxxl-12 {
    margin: 1.2rem !important;
  }
  .mt-xxxl-12,
  .my-xxxl-12 {
    margin-top: 1.2rem !important;
  }
  .mr-xxxl-12,
  .mx-xxxl-12 {
    margin-right: 1.2rem !important;
  }
  .mb-xxxl-12,
  .my-xxxl-12 {
    margin-bottom: 1.2rem !important;
  }
  .ml-xxxl-12,
  .mx-xxxl-12 {
    margin-left: 1.2rem !important;
  }
  .m-xxxl-13 {
    margin: 1.3rem !important;
  }
  .mt-xxxl-13,
  .my-xxxl-13 {
    margin-top: 1.3rem !important;
  }
  .mr-xxxl-13,
  .mx-xxxl-13 {
    margin-right: 1.3rem !important;
  }
  .mb-xxxl-13,
  .my-xxxl-13 {
    margin-bottom: 1.3rem !important;
  }
  .ml-xxxl-13,
  .mx-xxxl-13 {
    margin-left: 1.3rem !important;
  }
  .m-xxxl-14 {
    margin: 1.4rem !important;
  }
  .mt-xxxl-14,
  .my-xxxl-14 {
    margin-top: 1.4rem !important;
  }
  .mr-xxxl-14,
  .mx-xxxl-14 {
    margin-right: 1.4rem !important;
  }
  .mb-xxxl-14,
  .my-xxxl-14 {
    margin-bottom: 1.4rem !important;
  }
  .ml-xxxl-14,
  .mx-xxxl-14 {
    margin-left: 1.4rem !important;
  }
  .m-xxxl-15 {
    margin: 1.5rem !important;
  }
  .mt-xxxl-15,
  .my-xxxl-15 {
    margin-top: 1.5rem !important;
  }
  .mr-xxxl-15,
  .mx-xxxl-15 {
    margin-right: 1.5rem !important;
  }
  .mb-xxxl-15,
  .my-xxxl-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxxl-15,
  .mx-xxxl-15 {
    margin-left: 1.5rem !important;
  }
  .m-xxxl-16 {
    margin: 1.6rem !important;
  }
  .mt-xxxl-16,
  .my-xxxl-16 {
    margin-top: 1.6rem !important;
  }
  .mr-xxxl-16,
  .mx-xxxl-16 {
    margin-right: 1.6rem !important;
  }
  .mb-xxxl-16,
  .my-xxxl-16 {
    margin-bottom: 1.6rem !important;
  }
  .ml-xxxl-16,
  .mx-xxxl-16 {
    margin-left: 1.6rem !important;
  }
  .m-xxxl-17 {
    margin: 1.7rem !important;
  }
  .mt-xxxl-17,
  .my-xxxl-17 {
    margin-top: 1.7rem !important;
  }
  .mr-xxxl-17,
  .mx-xxxl-17 {
    margin-right: 1.7rem !important;
  }
  .mb-xxxl-17,
  .my-xxxl-17 {
    margin-bottom: 1.7rem !important;
  }
  .ml-xxxl-17,
  .mx-xxxl-17 {
    margin-left: 1.7rem !important;
  }
  .m-xxxl-18 {
    margin: 1.8rem !important;
  }
  .mt-xxxl-18,
  .my-xxxl-18 {
    margin-top: 1.8rem !important;
  }
  .mr-xxxl-18,
  .mx-xxxl-18 {
    margin-right: 1.8rem !important;
  }
  .mb-xxxl-18,
  .my-xxxl-18 {
    margin-bottom: 1.8rem !important;
  }
  .ml-xxxl-18,
  .mx-xxxl-18 {
    margin-left: 1.8rem !important;
  }
  .m-xxxl-19 {
    margin: 1.9rem !important;
  }
  .mt-xxxl-19,
  .my-xxxl-19 {
    margin-top: 1.9rem !important;
  }
  .mr-xxxl-19,
  .mx-xxxl-19 {
    margin-right: 1.9rem !important;
  }
  .mb-xxxl-19,
  .my-xxxl-19 {
    margin-bottom: 1.9rem !important;
  }
  .ml-xxxl-19,
  .mx-xxxl-19 {
    margin-left: 1.9rem !important;
  }
  .m-xxxl-20 {
    margin: 2rem !important;
  }
  .mt-xxxl-20,
  .my-xxxl-20 {
    margin-top: 2rem !important;
  }
  .mr-xxxl-20,
  .mx-xxxl-20 {
    margin-right: 2rem !important;
  }
  .mb-xxxl-20,
  .my-xxxl-20 {
    margin-bottom: 2rem !important;
  }
  .ml-xxxl-20,
  .mx-xxxl-20 {
    margin-left: 2rem !important;
  }
  .m-xxxl-25 {
    margin: 2.5rem !important;
  }
  .mt-xxxl-25,
  .my-xxxl-25 {
    margin-top: 2.5rem !important;
  }
  .mr-xxxl-25,
  .mx-xxxl-25 {
    margin-right: 2.5rem !important;
  }
  .mb-xxxl-25,
  .my-xxxl-25 {
    margin-bottom: 2.5rem !important;
  }
  .ml-xxxl-25,
  .mx-xxxl-25 {
    margin-left: 2.5rem !important;
  }
  .m-xxxl-30 {
    margin: 3rem !important;
  }
  .mt-xxxl-30,
  .my-xxxl-30 {
    margin-top: 3rem !important;
  }
  .mr-xxxl-30,
  .mx-xxxl-30 {
    margin-right: 3rem !important;
  }
  .mb-xxxl-30,
  .my-xxxl-30 {
    margin-bottom: 3rem !important;
  }
  .ml-xxxl-30,
  .mx-xxxl-30 {
    margin-left: 3rem !important;
  }
  .m-xxxl-35 {
    margin: 3.5rem !important;
  }
  .mt-xxxl-35,
  .my-xxxl-35 {
    margin-top: 3.5rem !important;
  }
  .mr-xxxl-35,
  .mx-xxxl-35 {
    margin-right: 3.5rem !important;
  }
  .mb-xxxl-35,
  .my-xxxl-35 {
    margin-bottom: 3.5rem !important;
  }
  .ml-xxxl-35,
  .mx-xxxl-35 {
    margin-left: 3.5rem !important;
  }
  .m-xxxl-40 {
    margin: 4rem !important;
  }
  .mt-xxxl-40,
  .my-xxxl-40 {
    margin-top: 4rem !important;
  }
  .mr-xxxl-40,
  .mx-xxxl-40 {
    margin-right: 4rem !important;
  }
  .mb-xxxl-40,
  .my-xxxl-40 {
    margin-bottom: 4rem !important;
  }
  .ml-xxxl-40,
  .mx-xxxl-40 {
    margin-left: 4rem !important;
  }
  .m-xxxl-45 {
    margin: 4.5rem !important;
  }
  .mt-xxxl-45,
  .my-xxxl-45 {
    margin-top: 4.5rem !important;
  }
  .mr-xxxl-45,
  .mx-xxxl-45 {
    margin-right: 4.5rem !important;
  }
  .mb-xxxl-45,
  .my-xxxl-45 {
    margin-bottom: 4.5rem !important;
  }
  .ml-xxxl-45,
  .mx-xxxl-45 {
    margin-left: 4.5rem !important;
  }
  .m-xxxl-50 {
    margin: 5rem !important;
  }
  .mt-xxxl-50,
  .my-xxxl-50 {
    margin-top: 5rem !important;
  }
  .mr-xxxl-50,
  .mx-xxxl-50 {
    margin-right: 5rem !important;
  }
  .mb-xxxl-50,
  .my-xxxl-50 {
    margin-bottom: 5rem !important;
  }
  .ml-xxxl-50,
  .mx-xxxl-50 {
    margin-left: 5rem !important;
  }
  .m-xxxl-55 {
    margin: 5.5rem !important;
  }
  .mt-xxxl-55,
  .my-xxxl-55 {
    margin-top: 5.5rem !important;
  }
  .mr-xxxl-55,
  .mx-xxxl-55 {
    margin-right: 5.5rem !important;
  }
  .mb-xxxl-55,
  .my-xxxl-55 {
    margin-bottom: 5.5rem !important;
  }
  .ml-xxxl-55,
  .mx-xxxl-55 {
    margin-left: 5.5rem !important;
  }
  .m-xxxl-60 {
    margin: 6rem !important;
  }
  .mt-xxxl-60,
  .my-xxxl-60 {
    margin-top: 6rem !important;
  }
  .mr-xxxl-60,
  .mx-xxxl-60 {
    margin-right: 6rem !important;
  }
  .mb-xxxl-60,
  .my-xxxl-60 {
    margin-bottom: 6rem !important;
  }
  .ml-xxxl-60,
  .mx-xxxl-60 {
    margin-left: 6rem !important;
  }
  .m-xxxl-65 {
    margin: 6.5rem !important;
  }
  .mt-xxxl-65,
  .my-xxxl-65 {
    margin-top: 6.5rem !important;
  }
  .mr-xxxl-65,
  .mx-xxxl-65 {
    margin-right: 6.5rem !important;
  }
  .mb-xxxl-65,
  .my-xxxl-65 {
    margin-bottom: 6.5rem !important;
  }
  .ml-xxxl-65,
  .mx-xxxl-65 {
    margin-left: 6.5rem !important;
  }
  .m-xxxl-70 {
    margin: 7rem !important;
  }
  .mt-xxxl-70,
  .my-xxxl-70 {
    margin-top: 7rem !important;
  }
  .mr-xxxl-70,
  .mx-xxxl-70 {
    margin-right: 7rem !important;
  }
  .mb-xxxl-70,
  .my-xxxl-70 {
    margin-bottom: 7rem !important;
  }
  .ml-xxxl-70,
  .mx-xxxl-70 {
    margin-left: 7rem !important;
  }
  .m-xxxl-75 {
    margin: 7.5rem !important;
  }
  .mt-xxxl-75,
  .my-xxxl-75 {
    margin-top: 7.5rem !important;
  }
  .mr-xxxl-75,
  .mx-xxxl-75 {
    margin-right: 7.5rem !important;
  }
  .mb-xxxl-75,
  .my-xxxl-75 {
    margin-bottom: 7.5rem !important;
  }
  .ml-xxxl-75,
  .mx-xxxl-75 {
    margin-left: 7.5rem !important;
  }
  .m-xxxl-80 {
    margin: 8rem !important;
  }
  .mt-xxxl-80,
  .my-xxxl-80 {
    margin-top: 8rem !important;
  }
  .mr-xxxl-80,
  .mx-xxxl-80 {
    margin-right: 8rem !important;
  }
  .mb-xxxl-80,
  .my-xxxl-80 {
    margin-bottom: 8rem !important;
  }
  .ml-xxxl-80,
  .mx-xxxl-80 {
    margin-left: 8rem !important;
  }
  .m-xxxl-85 {
    margin: 8.5rem !important;
  }
  .mt-xxxl-85,
  .my-xxxl-85 {
    margin-top: 8.5rem !important;
  }
  .mr-xxxl-85,
  .mx-xxxl-85 {
    margin-right: 8.5rem !important;
  }
  .mb-xxxl-85,
  .my-xxxl-85 {
    margin-bottom: 8.5rem !important;
  }
  .ml-xxxl-85,
  .mx-xxxl-85 {
    margin-left: 8.5rem !important;
  }
  .m-xxxl-90 {
    margin: 9rem !important;
  }
  .mt-xxxl-90,
  .my-xxxl-90 {
    margin-top: 9rem !important;
  }
  .mr-xxxl-90,
  .mx-xxxl-90 {
    margin-right: 9rem !important;
  }
  .mb-xxxl-90,
  .my-xxxl-90 {
    margin-bottom: 9rem !important;
  }
  .ml-xxxl-90,
  .mx-xxxl-90 {
    margin-left: 9rem !important;
  }
  .m-xxxl-95 {
    margin: 9.5rem !important;
  }
  .mt-xxxl-95,
  .my-xxxl-95 {
    margin-top: 9.5rem !important;
  }
  .mr-xxxl-95,
  .mx-xxxl-95 {
    margin-right: 9.5rem !important;
  }
  .mb-xxxl-95,
  .my-xxxl-95 {
    margin-bottom: 9.5rem !important;
  }
  .ml-xxxl-95,
  .mx-xxxl-95 {
    margin-left: 9.5rem !important;
  }
  .m-xxxl-100 {
    margin: 10rem !important;
  }
  .mt-xxxl-100,
  .my-xxxl-100 {
    margin-top: 10rem !important;
  }
  .mr-xxxl-100,
  .mx-xxxl-100 {
    margin-right: 10rem !important;
  }
  .mb-xxxl-100,
  .my-xxxl-100 {
    margin-bottom: 10rem !important;
  }
  .ml-xxxl-100,
  .mx-xxxl-100 {
    margin-left: 10rem !important;
  }
  .m-xxxl-130 {
    margin: 13rem !important;
  }
  .mt-xxxl-130,
  .my-xxxl-130 {
    margin-top: 13rem !important;
  }
  .mr-xxxl-130,
  .mx-xxxl-130 {
    margin-right: 13rem !important;
  }
  .mb-xxxl-130,
  .my-xxxl-130 {
    margin-bottom: 13rem !important;
  }
  .ml-xxxl-130,
  .mx-xxxl-130 {
    margin-left: 13rem !important;
  }
  .m-xxxl-140 {
    margin: 14rem !important;
  }
  .mt-xxxl-140,
  .my-xxxl-140 {
    margin-top: 14rem !important;
  }
  .mr-xxxl-140,
  .mx-xxxl-140 {
    margin-right: 14rem !important;
  }
  .mb-xxxl-140,
  .my-xxxl-140 {
    margin-bottom: 14rem !important;
  }
  .ml-xxxl-140,
  .mx-xxxl-140 {
    margin-left: 14rem !important;
  }
  .m-xxxl-150 {
    margin: 15rem !important;
  }
  .mt-xxxl-150,
  .my-xxxl-150 {
    margin-top: 15rem !important;
  }
  .mr-xxxl-150,
  .mx-xxxl-150 {
    margin-right: 15rem !important;
  }
  .mb-xxxl-150,
  .my-xxxl-150 {
    margin-bottom: 15rem !important;
  }
  .ml-xxxl-150,
  .mx-xxxl-150 {
    margin-left: 15rem !important;
  }
  .m-xxxl-200 {
    margin: 20rem !important;
  }
  .mt-xxxl-200,
  .my-xxxl-200 {
    margin-top: 20rem !important;
  }
  .mr-xxxl-200,
  .mx-xxxl-200 {
    margin-right: 20rem !important;
  }
  .mb-xxxl-200,
  .my-xxxl-200 {
    margin-bottom: 20rem !important;
  }
  .ml-xxxl-200,
  .mx-xxxl-200 {
    margin-left: 20rem !important;
  }
  .m-xxxl-250 {
    margin: 25rem !important;
  }
  .mt-xxxl-250,
  .my-xxxl-250 {
    margin-top: 25rem !important;
  }
  .mr-xxxl-250,
  .mx-xxxl-250 {
    margin-right: 25rem !important;
  }
  .mb-xxxl-250,
  .my-xxxl-250 {
    margin-bottom: 25rem !important;
  }
  .ml-xxxl-250,
  .mx-xxxl-250 {
    margin-left: 25rem !important;
  }
  .m-xxxl-300 {
    margin: 30rem !important;
  }
  .mt-xxxl-300,
  .my-xxxl-300 {
    margin-top: 30rem !important;
  }
  .mr-xxxl-300,
  .mx-xxxl-300 {
    margin-right: 30rem !important;
  }
  .mb-xxxl-300,
  .my-xxxl-300 {
    margin-bottom: 30rem !important;
  }
  .ml-xxxl-300,
  .mx-xxxl-300 {
    margin-left: 30rem !important;
  }
  .m-xxxl-400 {
    margin: 40rem !important;
  }
  .mt-xxxl-400,
  .my-xxxl-400 {
    margin-top: 40rem !important;
  }
  .mr-xxxl-400,
  .mx-xxxl-400 {
    margin-right: 40rem !important;
  }
  .mb-xxxl-400,
  .my-xxxl-400 {
    margin-bottom: 40rem !important;
  }
  .ml-xxxl-400,
  .mx-xxxl-400 {
    margin-left: 40rem !important;
  }
  .m-xxxl-410 {
    margin: 41rem !important;
  }
  .mt-xxxl-410,
  .my-xxxl-410 {
    margin-top: 41rem !important;
  }
  .mr-xxxl-410,
  .mx-xxxl-410 {
    margin-right: 41rem !important;
  }
  .mb-xxxl-410,
  .my-xxxl-410 {
    margin-bottom: 41rem !important;
  }
  .ml-xxxl-410,
  .mx-xxxl-410 {
    margin-left: 41rem !important;
  }
  .m-xxxl-450 {
    margin: 45rem !important;
  }
  .mt-xxxl-450,
  .my-xxxl-450 {
    margin-top: 45rem !important;
  }
  .mr-xxxl-450,
  .mx-xxxl-450 {
    margin-right: 45rem !important;
  }
  .mb-xxxl-450,
  .my-xxxl-450 {
    margin-bottom: 45rem !important;
  }
  .ml-xxxl-450,
  .mx-xxxl-450 {
    margin-left: 45rem !important;
  }
  .p-xxxl-0 {
    padding: 0 !important;
  }
  .pt-xxxl-0,
  .py-xxxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxxl-0,
  .px-xxxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxxl-0,
  .py-xxxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxxl-0,
  .px-xxxl-0 {
    padding-left: 0 !important;
  }
  .p-xxxl-1 {
    padding: 0.1rem !important;
  }
  .pt-xxxl-1,
  .py-xxxl-1 {
    padding-top: 0.1rem !important;
  }
  .pr-xxxl-1,
  .px-xxxl-1 {
    padding-right: 0.1rem !important;
  }
  .pb-xxxl-1,
  .py-xxxl-1 {
    padding-bottom: 0.1rem !important;
  }
  .pl-xxxl-1,
  .px-xxxl-1 {
    padding-left: 0.1rem !important;
  }
  .p-xxxl-2 {
    padding: 0.2rem !important;
  }
  .pt-xxxl-2,
  .py-xxxl-2 {
    padding-top: 0.2rem !important;
  }
  .pr-xxxl-2,
  .px-xxxl-2 {
    padding-right: 0.2rem !important;
  }
  .pb-xxxl-2,
  .py-xxxl-2 {
    padding-bottom: 0.2rem !important;
  }
  .pl-xxxl-2,
  .px-xxxl-2 {
    padding-left: 0.2rem !important;
  }
  .p-xxxl-3 {
    padding: 0.3rem !important;
  }
  .pt-xxxl-3,
  .py-xxxl-3 {
    padding-top: 0.3rem !important;
  }
  .pr-xxxl-3,
  .px-xxxl-3 {
    padding-right: 0.3rem !important;
  }
  .pb-xxxl-3,
  .py-xxxl-3 {
    padding-bottom: 0.3rem !important;
  }
  .pl-xxxl-3,
  .px-xxxl-3 {
    padding-left: 0.3rem !important;
  }
  .p-xxxl-4 {
    padding: 0.4rem !important;
  }
  .pt-xxxl-4,
  .py-xxxl-4 {
    padding-top: 0.4rem !important;
  }
  .pr-xxxl-4,
  .px-xxxl-4 {
    padding-right: 0.4rem !important;
  }
  .pb-xxxl-4,
  .py-xxxl-4 {
    padding-bottom: 0.4rem !important;
  }
  .pl-xxxl-4,
  .px-xxxl-4 {
    padding-left: 0.4rem !important;
  }
  .p-xxxl-5 {
    padding: 0.5rem !important;
  }
  .pt-xxxl-5,
  .py-xxxl-5 {
    padding-top: 0.5rem !important;
  }
  .pr-xxxl-5,
  .px-xxxl-5 {
    padding-right: 0.5rem !important;
  }
  .pb-xxxl-5,
  .py-xxxl-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxxl-5,
  .px-xxxl-5 {
    padding-left: 0.5rem !important;
  }
  .p-xxxl-6 {
    padding: 0.6rem !important;
  }
  .pt-xxxl-6,
  .py-xxxl-6 {
    padding-top: 0.6rem !important;
  }
  .pr-xxxl-6,
  .px-xxxl-6 {
    padding-right: 0.6rem !important;
  }
  .pb-xxxl-6,
  .py-xxxl-6 {
    padding-bottom: 0.6rem !important;
  }
  .pl-xxxl-6,
  .px-xxxl-6 {
    padding-left: 0.6rem !important;
  }
  .p-xxxl-7 {
    padding: 0.7rem !important;
  }
  .pt-xxxl-7,
  .py-xxxl-7 {
    padding-top: 0.7rem !important;
  }
  .pr-xxxl-7,
  .px-xxxl-7 {
    padding-right: 0.7rem !important;
  }
  .pb-xxxl-7,
  .py-xxxl-7 {
    padding-bottom: 0.7rem !important;
  }
  .pl-xxxl-7,
  .px-xxxl-7 {
    padding-left: 0.7rem !important;
  }
  .p-xxxl-8 {
    padding: 0.8rem !important;
  }
  .pt-xxxl-8,
  .py-xxxl-8 {
    padding-top: 0.8rem !important;
  }
  .pr-xxxl-8,
  .px-xxxl-8 {
    padding-right: 0.8rem !important;
  }
  .pb-xxxl-8,
  .py-xxxl-8 {
    padding-bottom: 0.8rem !important;
  }
  .pl-xxxl-8,
  .px-xxxl-8 {
    padding-left: 0.8rem !important;
  }
  .p-xxxl-9 {
    padding: 0.9rem !important;
  }
  .pt-xxxl-9,
  .py-xxxl-9 {
    padding-top: 0.9rem !important;
  }
  .pr-xxxl-9,
  .px-xxxl-9 {
    padding-right: 0.9rem !important;
  }
  .pb-xxxl-9,
  .py-xxxl-9 {
    padding-bottom: 0.9rem !important;
  }
  .pl-xxxl-9,
  .px-xxxl-9 {
    padding-left: 0.9rem !important;
  }
  .p-xxxl-10 {
    padding: 1rem !important;
  }
  .pt-xxxl-10,
  .py-xxxl-10 {
    padding-top: 1rem !important;
  }
  .pr-xxxl-10,
  .px-xxxl-10 {
    padding-right: 1rem !important;
  }
  .pb-xxxl-10,
  .py-xxxl-10 {
    padding-bottom: 1rem !important;
  }
  .pl-xxxl-10,
  .px-xxxl-10 {
    padding-left: 1rem !important;
  }
  .p-xxxl-11 {
    padding: 1.1rem !important;
  }
  .pt-xxxl-11,
  .py-xxxl-11 {
    padding-top: 1.1rem !important;
  }
  .pr-xxxl-11,
  .px-xxxl-11 {
    padding-right: 1.1rem !important;
  }
  .pb-xxxl-11,
  .py-xxxl-11 {
    padding-bottom: 1.1rem !important;
  }
  .pl-xxxl-11,
  .px-xxxl-11 {
    padding-left: 1.1rem !important;
  }
  .p-xxxl-12 {
    padding: 1.2rem !important;
  }
  .pt-xxxl-12,
  .py-xxxl-12 {
    padding-top: 1.2rem !important;
  }
  .pr-xxxl-12,
  .px-xxxl-12 {
    padding-right: 1.2rem !important;
  }
  .pb-xxxl-12,
  .py-xxxl-12 {
    padding-bottom: 1.2rem !important;
  }
  .pl-xxxl-12,
  .px-xxxl-12 {
    padding-left: 1.2rem !important;
  }
  .p-xxxl-13 {
    padding: 1.3rem !important;
  }
  .pt-xxxl-13,
  .py-xxxl-13 {
    padding-top: 1.3rem !important;
  }
  .pr-xxxl-13,
  .px-xxxl-13 {
    padding-right: 1.3rem !important;
  }
  .pb-xxxl-13,
  .py-xxxl-13 {
    padding-bottom: 1.3rem !important;
  }
  .pl-xxxl-13,
  .px-xxxl-13 {
    padding-left: 1.3rem !important;
  }
  .p-xxxl-14 {
    padding: 1.4rem !important;
  }
  .pt-xxxl-14,
  .py-xxxl-14 {
    padding-top: 1.4rem !important;
  }
  .pr-xxxl-14,
  .px-xxxl-14 {
    padding-right: 1.4rem !important;
  }
  .pb-xxxl-14,
  .py-xxxl-14 {
    padding-bottom: 1.4rem !important;
  }
  .pl-xxxl-14,
  .px-xxxl-14 {
    padding-left: 1.4rem !important;
  }
  .p-xxxl-15 {
    padding: 1.5rem !important;
  }
  .pt-xxxl-15,
  .py-xxxl-15 {
    padding-top: 1.5rem !important;
  }
  .pr-xxxl-15,
  .px-xxxl-15 {
    padding-right: 1.5rem !important;
  }
  .pb-xxxl-15,
  .py-xxxl-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxxl-15,
  .px-xxxl-15 {
    padding-left: 1.5rem !important;
  }
  .p-xxxl-16 {
    padding: 1.6rem !important;
  }
  .pt-xxxl-16,
  .py-xxxl-16 {
    padding-top: 1.6rem !important;
  }
  .pr-xxxl-16,
  .px-xxxl-16 {
    padding-right: 1.6rem !important;
  }
  .pb-xxxl-16,
  .py-xxxl-16 {
    padding-bottom: 1.6rem !important;
  }
  .pl-xxxl-16,
  .px-xxxl-16 {
    padding-left: 1.6rem !important;
  }
  .p-xxxl-17 {
    padding: 1.7rem !important;
  }
  .pt-xxxl-17,
  .py-xxxl-17 {
    padding-top: 1.7rem !important;
  }
  .pr-xxxl-17,
  .px-xxxl-17 {
    padding-right: 1.7rem !important;
  }
  .pb-xxxl-17,
  .py-xxxl-17 {
    padding-bottom: 1.7rem !important;
  }
  .pl-xxxl-17,
  .px-xxxl-17 {
    padding-left: 1.7rem !important;
  }
  .p-xxxl-18 {
    padding: 1.8rem !important;
  }
  .pt-xxxl-18,
  .py-xxxl-18 {
    padding-top: 1.8rem !important;
  }
  .pr-xxxl-18,
  .px-xxxl-18 {
    padding-right: 1.8rem !important;
  }
  .pb-xxxl-18,
  .py-xxxl-18 {
    padding-bottom: 1.8rem !important;
  }
  .pl-xxxl-18,
  .px-xxxl-18 {
    padding-left: 1.8rem !important;
  }
  .p-xxxl-19 {
    padding: 1.9rem !important;
  }
  .pt-xxxl-19,
  .py-xxxl-19 {
    padding-top: 1.9rem !important;
  }
  .pr-xxxl-19,
  .px-xxxl-19 {
    padding-right: 1.9rem !important;
  }
  .pb-xxxl-19,
  .py-xxxl-19 {
    padding-bottom: 1.9rem !important;
  }
  .pl-xxxl-19,
  .px-xxxl-19 {
    padding-left: 1.9rem !important;
  }
  .p-xxxl-20 {
    padding: 2rem !important;
  }
  .pt-xxxl-20,
  .py-xxxl-20 {
    padding-top: 2rem !important;
  }
  .pr-xxxl-20,
  .px-xxxl-20 {
    padding-right: 2rem !important;
  }
  .pb-xxxl-20,
  .py-xxxl-20 {
    padding-bottom: 2rem !important;
  }
  .pl-xxxl-20,
  .px-xxxl-20 {
    padding-left: 2rem !important;
  }
  .p-xxxl-25 {
    padding: 2.5rem !important;
  }
  .pt-xxxl-25,
  .py-xxxl-25 {
    padding-top: 2.5rem !important;
  }
  .pr-xxxl-25,
  .px-xxxl-25 {
    padding-right: 2.5rem !important;
  }
  .pb-xxxl-25,
  .py-xxxl-25 {
    padding-bottom: 2.5rem !important;
  }
  .pl-xxxl-25,
  .px-xxxl-25 {
    padding-left: 2.5rem !important;
  }
  .p-xxxl-30 {
    padding: 3rem !important;
  }
  .pt-xxxl-30,
  .py-xxxl-30 {
    padding-top: 3rem !important;
  }
  .pr-xxxl-30,
  .px-xxxl-30 {
    padding-right: 3rem !important;
  }
  .pb-xxxl-30,
  .py-xxxl-30 {
    padding-bottom: 3rem !important;
  }
  .pl-xxxl-30,
  .px-xxxl-30 {
    padding-left: 3rem !important;
  }
  .p-xxxl-35 {
    padding: 3.5rem !important;
  }
  .pt-xxxl-35,
  .py-xxxl-35 {
    padding-top: 3.5rem !important;
  }
  .pr-xxxl-35,
  .px-xxxl-35 {
    padding-right: 3.5rem !important;
  }
  .pb-xxxl-35,
  .py-xxxl-35 {
    padding-bottom: 3.5rem !important;
  }
  .pl-xxxl-35,
  .px-xxxl-35 {
    padding-left: 3.5rem !important;
  }
  .p-xxxl-40 {
    padding: 4rem !important;
  }
  .pt-xxxl-40,
  .py-xxxl-40 {
    padding-top: 4rem !important;
  }
  .pr-xxxl-40,
  .px-xxxl-40 {
    padding-right: 4rem !important;
  }
  .pb-xxxl-40,
  .py-xxxl-40 {
    padding-bottom: 4rem !important;
  }
  .pl-xxxl-40,
  .px-xxxl-40 {
    padding-left: 4rem !important;
  }
  .p-xxxl-45 {
    padding: 4.5rem !important;
  }
  .pt-xxxl-45,
  .py-xxxl-45 {
    padding-top: 4.5rem !important;
  }
  .pr-xxxl-45,
  .px-xxxl-45 {
    padding-right: 4.5rem !important;
  }
  .pb-xxxl-45,
  .py-xxxl-45 {
    padding-bottom: 4.5rem !important;
  }
  .pl-xxxl-45,
  .px-xxxl-45 {
    padding-left: 4.5rem !important;
  }
  .p-xxxl-50 {
    padding: 5rem !important;
  }
  .pt-xxxl-50,
  .py-xxxl-50 {
    padding-top: 5rem !important;
  }
  .pr-xxxl-50,
  .px-xxxl-50 {
    padding-right: 5rem !important;
  }
  .pb-xxxl-50,
  .py-xxxl-50 {
    padding-bottom: 5rem !important;
  }
  .pl-xxxl-50,
  .px-xxxl-50 {
    padding-left: 5rem !important;
  }
  .p-xxxl-55 {
    padding: 5.5rem !important;
  }
  .pt-xxxl-55,
  .py-xxxl-55 {
    padding-top: 5.5rem !important;
  }
  .pr-xxxl-55,
  .px-xxxl-55 {
    padding-right: 5.5rem !important;
  }
  .pb-xxxl-55,
  .py-xxxl-55 {
    padding-bottom: 5.5rem !important;
  }
  .pl-xxxl-55,
  .px-xxxl-55 {
    padding-left: 5.5rem !important;
  }
  .p-xxxl-60 {
    padding: 6rem !important;
  }
  .pt-xxxl-60,
  .py-xxxl-60 {
    padding-top: 6rem !important;
  }
  .pr-xxxl-60,
  .px-xxxl-60 {
    padding-right: 6rem !important;
  }
  .pb-xxxl-60,
  .py-xxxl-60 {
    padding-bottom: 6rem !important;
  }
  .pl-xxxl-60,
  .px-xxxl-60 {
    padding-left: 6rem !important;
  }
  .p-xxxl-65 {
    padding: 6.5rem !important;
  }
  .pt-xxxl-65,
  .py-xxxl-65 {
    padding-top: 6.5rem !important;
  }
  .pr-xxxl-65,
  .px-xxxl-65 {
    padding-right: 6.5rem !important;
  }
  .pb-xxxl-65,
  .py-xxxl-65 {
    padding-bottom: 6.5rem !important;
  }
  .pl-xxxl-65,
  .px-xxxl-65 {
    padding-left: 6.5rem !important;
  }
  .p-xxxl-70 {
    padding: 7rem !important;
  }
  .pt-xxxl-70,
  .py-xxxl-70 {
    padding-top: 7rem !important;
  }
  .pr-xxxl-70,
  .px-xxxl-70 {
    padding-right: 7rem !important;
  }
  .pb-xxxl-70,
  .py-xxxl-70 {
    padding-bottom: 7rem !important;
  }
  .pl-xxxl-70,
  .px-xxxl-70 {
    padding-left: 7rem !important;
  }
  .p-xxxl-75 {
    padding: 7.5rem !important;
  }
  .pt-xxxl-75,
  .py-xxxl-75 {
    padding-top: 7.5rem !important;
  }
  .pr-xxxl-75,
  .px-xxxl-75 {
    padding-right: 7.5rem !important;
  }
  .pb-xxxl-75,
  .py-xxxl-75 {
    padding-bottom: 7.5rem !important;
  }
  .pl-xxxl-75,
  .px-xxxl-75 {
    padding-left: 7.5rem !important;
  }
  .p-xxxl-80 {
    padding: 8rem !important;
  }
  .pt-xxxl-80,
  .py-xxxl-80 {
    padding-top: 8rem !important;
  }
  .pr-xxxl-80,
  .px-xxxl-80 {
    padding-right: 8rem !important;
  }
  .pb-xxxl-80,
  .py-xxxl-80 {
    padding-bottom: 8rem !important;
  }
  .pl-xxxl-80,
  .px-xxxl-80 {
    padding-left: 8rem !important;
  }
  .p-xxxl-85 {
    padding: 8.5rem !important;
  }
  .pt-xxxl-85,
  .py-xxxl-85 {
    padding-top: 8.5rem !important;
  }
  .pr-xxxl-85,
  .px-xxxl-85 {
    padding-right: 8.5rem !important;
  }
  .pb-xxxl-85,
  .py-xxxl-85 {
    padding-bottom: 8.5rem !important;
  }
  .pl-xxxl-85,
  .px-xxxl-85 {
    padding-left: 8.5rem !important;
  }
  .p-xxxl-90 {
    padding: 9rem !important;
  }
  .pt-xxxl-90,
  .py-xxxl-90 {
    padding-top: 9rem !important;
  }
  .pr-xxxl-90,
  .px-xxxl-90 {
    padding-right: 9rem !important;
  }
  .pb-xxxl-90,
  .py-xxxl-90 {
    padding-bottom: 9rem !important;
  }
  .pl-xxxl-90,
  .px-xxxl-90 {
    padding-left: 9rem !important;
  }
  .p-xxxl-95 {
    padding: 9.5rem !important;
  }
  .pt-xxxl-95,
  .py-xxxl-95 {
    padding-top: 9.5rem !important;
  }
  .pr-xxxl-95,
  .px-xxxl-95 {
    padding-right: 9.5rem !important;
  }
  .pb-xxxl-95,
  .py-xxxl-95 {
    padding-bottom: 9.5rem !important;
  }
  .pl-xxxl-95,
  .px-xxxl-95 {
    padding-left: 9.5rem !important;
  }
  .p-xxxl-100 {
    padding: 10rem !important;
  }
  .pt-xxxl-100,
  .py-xxxl-100 {
    padding-top: 10rem !important;
  }
  .pr-xxxl-100,
  .px-xxxl-100 {
    padding-right: 10rem !important;
  }
  .pb-xxxl-100,
  .py-xxxl-100 {
    padding-bottom: 10rem !important;
  }
  .pl-xxxl-100,
  .px-xxxl-100 {
    padding-left: 10rem !important;
  }
  .p-xxxl-130 {
    padding: 13rem !important;
  }
  .pt-xxxl-130,
  .py-xxxl-130 {
    padding-top: 13rem !important;
  }
  .pr-xxxl-130,
  .px-xxxl-130 {
    padding-right: 13rem !important;
  }
  .pb-xxxl-130,
  .py-xxxl-130 {
    padding-bottom: 13rem !important;
  }
  .pl-xxxl-130,
  .px-xxxl-130 {
    padding-left: 13rem !important;
  }
  .p-xxxl-140 {
    padding: 14rem !important;
  }
  .pt-xxxl-140,
  .py-xxxl-140 {
    padding-top: 14rem !important;
  }
  .pr-xxxl-140,
  .px-xxxl-140 {
    padding-right: 14rem !important;
  }
  .pb-xxxl-140,
  .py-xxxl-140 {
    padding-bottom: 14rem !important;
  }
  .pl-xxxl-140,
  .px-xxxl-140 {
    padding-left: 14rem !important;
  }
  .p-xxxl-150 {
    padding: 15rem !important;
  }
  .pt-xxxl-150,
  .py-xxxl-150 {
    padding-top: 15rem !important;
  }
  .pr-xxxl-150,
  .px-xxxl-150 {
    padding-right: 15rem !important;
  }
  .pb-xxxl-150,
  .py-xxxl-150 {
    padding-bottom: 15rem !important;
  }
  .pl-xxxl-150,
  .px-xxxl-150 {
    padding-left: 15rem !important;
  }
  .p-xxxl-200 {
    padding: 20rem !important;
  }
  .pt-xxxl-200,
  .py-xxxl-200 {
    padding-top: 20rem !important;
  }
  .pr-xxxl-200,
  .px-xxxl-200 {
    padding-right: 20rem !important;
  }
  .pb-xxxl-200,
  .py-xxxl-200 {
    padding-bottom: 20rem !important;
  }
  .pl-xxxl-200,
  .px-xxxl-200 {
    padding-left: 20rem !important;
  }
  .p-xxxl-250 {
    padding: 25rem !important;
  }
  .pt-xxxl-250,
  .py-xxxl-250 {
    padding-top: 25rem !important;
  }
  .pr-xxxl-250,
  .px-xxxl-250 {
    padding-right: 25rem !important;
  }
  .pb-xxxl-250,
  .py-xxxl-250 {
    padding-bottom: 25rem !important;
  }
  .pl-xxxl-250,
  .px-xxxl-250 {
    padding-left: 25rem !important;
  }
  .p-xxxl-300 {
    padding: 30rem !important;
  }
  .pt-xxxl-300,
  .py-xxxl-300 {
    padding-top: 30rem !important;
  }
  .pr-xxxl-300,
  .px-xxxl-300 {
    padding-right: 30rem !important;
  }
  .pb-xxxl-300,
  .py-xxxl-300 {
    padding-bottom: 30rem !important;
  }
  .pl-xxxl-300,
  .px-xxxl-300 {
    padding-left: 30rem !important;
  }
  .p-xxxl-400 {
    padding: 40rem !important;
  }
  .pt-xxxl-400,
  .py-xxxl-400 {
    padding-top: 40rem !important;
  }
  .pr-xxxl-400,
  .px-xxxl-400 {
    padding-right: 40rem !important;
  }
  .pb-xxxl-400,
  .py-xxxl-400 {
    padding-bottom: 40rem !important;
  }
  .pl-xxxl-400,
  .px-xxxl-400 {
    padding-left: 40rem !important;
  }
  .p-xxxl-410 {
    padding: 41rem !important;
  }
  .pt-xxxl-410,
  .py-xxxl-410 {
    padding-top: 41rem !important;
  }
  .pr-xxxl-410,
  .px-xxxl-410 {
    padding-right: 41rem !important;
  }
  .pb-xxxl-410,
  .py-xxxl-410 {
    padding-bottom: 41rem !important;
  }
  .pl-xxxl-410,
  .px-xxxl-410 {
    padding-left: 41rem !important;
  }
  .p-xxxl-450 {
    padding: 45rem !important;
  }
  .pt-xxxl-450,
  .py-xxxl-450 {
    padding-top: 45rem !important;
  }
  .pr-xxxl-450,
  .px-xxxl-450 {
    padding-right: 45rem !important;
  }
  .pb-xxxl-450,
  .py-xxxl-450 {
    padding-bottom: 45rem !important;
  }
  .pl-xxxl-450,
  .px-xxxl-450 {
    padding-left: 45rem !important;
  }
  .m-xxxl-n1 {
    margin: -0.1rem !important;
  }
  .mt-xxxl-n1,
  .my-xxxl-n1 {
    margin-top: -0.1rem !important;
  }
  .mr-xxxl-n1,
  .mx-xxxl-n1 {
    margin-right: -0.1rem !important;
  }
  .mb-xxxl-n1,
  .my-xxxl-n1 {
    margin-bottom: -0.1rem !important;
  }
  .ml-xxxl-n1,
  .mx-xxxl-n1 {
    margin-left: -0.1rem !important;
  }
  .m-xxxl-n2 {
    margin: -0.2rem !important;
  }
  .mt-xxxl-n2,
  .my-xxxl-n2 {
    margin-top: -0.2rem !important;
  }
  .mr-xxxl-n2,
  .mx-xxxl-n2 {
    margin-right: -0.2rem !important;
  }
  .mb-xxxl-n2,
  .my-xxxl-n2 {
    margin-bottom: -0.2rem !important;
  }
  .ml-xxxl-n2,
  .mx-xxxl-n2 {
    margin-left: -0.2rem !important;
  }
  .m-xxxl-n3 {
    margin: -0.3rem !important;
  }
  .mt-xxxl-n3,
  .my-xxxl-n3 {
    margin-top: -0.3rem !important;
  }
  .mr-xxxl-n3,
  .mx-xxxl-n3 {
    margin-right: -0.3rem !important;
  }
  .mb-xxxl-n3,
  .my-xxxl-n3 {
    margin-bottom: -0.3rem !important;
  }
  .ml-xxxl-n3,
  .mx-xxxl-n3 {
    margin-left: -0.3rem !important;
  }
  .m-xxxl-n4 {
    margin: -0.4rem !important;
  }
  .mt-xxxl-n4,
  .my-xxxl-n4 {
    margin-top: -0.4rem !important;
  }
  .mr-xxxl-n4,
  .mx-xxxl-n4 {
    margin-right: -0.4rem !important;
  }
  .mb-xxxl-n4,
  .my-xxxl-n4 {
    margin-bottom: -0.4rem !important;
  }
  .ml-xxxl-n4,
  .mx-xxxl-n4 {
    margin-left: -0.4rem !important;
  }
  .m-xxxl-n5 {
    margin: -0.5rem !important;
  }
  .mt-xxxl-n5,
  .my-xxxl-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-xxxl-n5,
  .mx-xxxl-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-xxxl-n5,
  .my-xxxl-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xxxl-n5,
  .mx-xxxl-n5 {
    margin-left: -0.5rem !important;
  }
  .m-xxxl-n6 {
    margin: -0.6rem !important;
  }
  .mt-xxxl-n6,
  .my-xxxl-n6 {
    margin-top: -0.6rem !important;
  }
  .mr-xxxl-n6,
  .mx-xxxl-n6 {
    margin-right: -0.6rem !important;
  }
  .mb-xxxl-n6,
  .my-xxxl-n6 {
    margin-bottom: -0.6rem !important;
  }
  .ml-xxxl-n6,
  .mx-xxxl-n6 {
    margin-left: -0.6rem !important;
  }
  .m-xxxl-n7 {
    margin: -0.7rem !important;
  }
  .mt-xxxl-n7,
  .my-xxxl-n7 {
    margin-top: -0.7rem !important;
  }
  .mr-xxxl-n7,
  .mx-xxxl-n7 {
    margin-right: -0.7rem !important;
  }
  .mb-xxxl-n7,
  .my-xxxl-n7 {
    margin-bottom: -0.7rem !important;
  }
  .ml-xxxl-n7,
  .mx-xxxl-n7 {
    margin-left: -0.7rem !important;
  }
  .m-xxxl-n8 {
    margin: -0.8rem !important;
  }
  .mt-xxxl-n8,
  .my-xxxl-n8 {
    margin-top: -0.8rem !important;
  }
  .mr-xxxl-n8,
  .mx-xxxl-n8 {
    margin-right: -0.8rem !important;
  }
  .mb-xxxl-n8,
  .my-xxxl-n8 {
    margin-bottom: -0.8rem !important;
  }
  .ml-xxxl-n8,
  .mx-xxxl-n8 {
    margin-left: -0.8rem !important;
  }
  .m-xxxl-n9 {
    margin: -0.9rem !important;
  }
  .mt-xxxl-n9,
  .my-xxxl-n9 {
    margin-top: -0.9rem !important;
  }
  .mr-xxxl-n9,
  .mx-xxxl-n9 {
    margin-right: -0.9rem !important;
  }
  .mb-xxxl-n9,
  .my-xxxl-n9 {
    margin-bottom: -0.9rem !important;
  }
  .ml-xxxl-n9,
  .mx-xxxl-n9 {
    margin-left: -0.9rem !important;
  }
  .m-xxxl-n10 {
    margin: -1rem !important;
  }
  .mt-xxxl-n10,
  .my-xxxl-n10 {
    margin-top: -1rem !important;
  }
  .mr-xxxl-n10,
  .mx-xxxl-n10 {
    margin-right: -1rem !important;
  }
  .mb-xxxl-n10,
  .my-xxxl-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-xxxl-n10,
  .mx-xxxl-n10 {
    margin-left: -1rem !important;
  }
  .m-xxxl-n11 {
    margin: -1.1rem !important;
  }
  .mt-xxxl-n11,
  .my-xxxl-n11 {
    margin-top: -1.1rem !important;
  }
  .mr-xxxl-n11,
  .mx-xxxl-n11 {
    margin-right: -1.1rem !important;
  }
  .mb-xxxl-n11,
  .my-xxxl-n11 {
    margin-bottom: -1.1rem !important;
  }
  .ml-xxxl-n11,
  .mx-xxxl-n11 {
    margin-left: -1.1rem !important;
  }
  .m-xxxl-n12 {
    margin: -1.2rem !important;
  }
  .mt-xxxl-n12,
  .my-xxxl-n12 {
    margin-top: -1.2rem !important;
  }
  .mr-xxxl-n12,
  .mx-xxxl-n12 {
    margin-right: -1.2rem !important;
  }
  .mb-xxxl-n12,
  .my-xxxl-n12 {
    margin-bottom: -1.2rem !important;
  }
  .ml-xxxl-n12,
  .mx-xxxl-n12 {
    margin-left: -1.2rem !important;
  }
  .m-xxxl-n13 {
    margin: -1.3rem !important;
  }
  .mt-xxxl-n13,
  .my-xxxl-n13 {
    margin-top: -1.3rem !important;
  }
  .mr-xxxl-n13,
  .mx-xxxl-n13 {
    margin-right: -1.3rem !important;
  }
  .mb-xxxl-n13,
  .my-xxxl-n13 {
    margin-bottom: -1.3rem !important;
  }
  .ml-xxxl-n13,
  .mx-xxxl-n13 {
    margin-left: -1.3rem !important;
  }
  .m-xxxl-n14 {
    margin: -1.4rem !important;
  }
  .mt-xxxl-n14,
  .my-xxxl-n14 {
    margin-top: -1.4rem !important;
  }
  .mr-xxxl-n14,
  .mx-xxxl-n14 {
    margin-right: -1.4rem !important;
  }
  .mb-xxxl-n14,
  .my-xxxl-n14 {
    margin-bottom: -1.4rem !important;
  }
  .ml-xxxl-n14,
  .mx-xxxl-n14 {
    margin-left: -1.4rem !important;
  }
  .m-xxxl-n15 {
    margin: -1.5rem !important;
  }
  .mt-xxxl-n15,
  .my-xxxl-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-xxxl-n15,
  .mx-xxxl-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-xxxl-n15,
  .my-xxxl-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xxxl-n15,
  .mx-xxxl-n15 {
    margin-left: -1.5rem !important;
  }
  .m-xxxl-n16 {
    margin: -1.6rem !important;
  }
  .mt-xxxl-n16,
  .my-xxxl-n16 {
    margin-top: -1.6rem !important;
  }
  .mr-xxxl-n16,
  .mx-xxxl-n16 {
    margin-right: -1.6rem !important;
  }
  .mb-xxxl-n16,
  .my-xxxl-n16 {
    margin-bottom: -1.6rem !important;
  }
  .ml-xxxl-n16,
  .mx-xxxl-n16 {
    margin-left: -1.6rem !important;
  }
  .m-xxxl-n17 {
    margin: -1.7rem !important;
  }
  .mt-xxxl-n17,
  .my-xxxl-n17 {
    margin-top: -1.7rem !important;
  }
  .mr-xxxl-n17,
  .mx-xxxl-n17 {
    margin-right: -1.7rem !important;
  }
  .mb-xxxl-n17,
  .my-xxxl-n17 {
    margin-bottom: -1.7rem !important;
  }
  .ml-xxxl-n17,
  .mx-xxxl-n17 {
    margin-left: -1.7rem !important;
  }
  .m-xxxl-n18 {
    margin: -1.8rem !important;
  }
  .mt-xxxl-n18,
  .my-xxxl-n18 {
    margin-top: -1.8rem !important;
  }
  .mr-xxxl-n18,
  .mx-xxxl-n18 {
    margin-right: -1.8rem !important;
  }
  .mb-xxxl-n18,
  .my-xxxl-n18 {
    margin-bottom: -1.8rem !important;
  }
  .ml-xxxl-n18,
  .mx-xxxl-n18 {
    margin-left: -1.8rem !important;
  }
  .m-xxxl-n19 {
    margin: -1.9rem !important;
  }
  .mt-xxxl-n19,
  .my-xxxl-n19 {
    margin-top: -1.9rem !important;
  }
  .mr-xxxl-n19,
  .mx-xxxl-n19 {
    margin-right: -1.9rem !important;
  }
  .mb-xxxl-n19,
  .my-xxxl-n19 {
    margin-bottom: -1.9rem !important;
  }
  .ml-xxxl-n19,
  .mx-xxxl-n19 {
    margin-left: -1.9rem !important;
  }
  .m-xxxl-n20 {
    margin: -2rem !important;
  }
  .mt-xxxl-n20,
  .my-xxxl-n20 {
    margin-top: -2rem !important;
  }
  .mr-xxxl-n20,
  .mx-xxxl-n20 {
    margin-right: -2rem !important;
  }
  .mb-xxxl-n20,
  .my-xxxl-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-xxxl-n20,
  .mx-xxxl-n20 {
    margin-left: -2rem !important;
  }
  .m-xxxl-n25 {
    margin: -2.5rem !important;
  }
  .mt-xxxl-n25,
  .my-xxxl-n25 {
    margin-top: -2.5rem !important;
  }
  .mr-xxxl-n25,
  .mx-xxxl-n25 {
    margin-right: -2.5rem !important;
  }
  .mb-xxxl-n25,
  .my-xxxl-n25 {
    margin-bottom: -2.5rem !important;
  }
  .ml-xxxl-n25,
  .mx-xxxl-n25 {
    margin-left: -2.5rem !important;
  }
  .m-xxxl-n30 {
    margin: -3rem !important;
  }
  .mt-xxxl-n30,
  .my-xxxl-n30 {
    margin-top: -3rem !important;
  }
  .mr-xxxl-n30,
  .mx-xxxl-n30 {
    margin-right: -3rem !important;
  }
  .mb-xxxl-n30,
  .my-xxxl-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-xxxl-n30,
  .mx-xxxl-n30 {
    margin-left: -3rem !important;
  }
  .m-xxxl-n35 {
    margin: -3.5rem !important;
  }
  .mt-xxxl-n35,
  .my-xxxl-n35 {
    margin-top: -3.5rem !important;
  }
  .mr-xxxl-n35,
  .mx-xxxl-n35 {
    margin-right: -3.5rem !important;
  }
  .mb-xxxl-n35,
  .my-xxxl-n35 {
    margin-bottom: -3.5rem !important;
  }
  .ml-xxxl-n35,
  .mx-xxxl-n35 {
    margin-left: -3.5rem !important;
  }
  .m-xxxl-n40 {
    margin: -4rem !important;
  }
  .mt-xxxl-n40,
  .my-xxxl-n40 {
    margin-top: -4rem !important;
  }
  .mr-xxxl-n40,
  .mx-xxxl-n40 {
    margin-right: -4rem !important;
  }
  .mb-xxxl-n40,
  .my-xxxl-n40 {
    margin-bottom: -4rem !important;
  }
  .ml-xxxl-n40,
  .mx-xxxl-n40 {
    margin-left: -4rem !important;
  }
  .m-xxxl-n45 {
    margin: -4.5rem !important;
  }
  .mt-xxxl-n45,
  .my-xxxl-n45 {
    margin-top: -4.5rem !important;
  }
  .mr-xxxl-n45,
  .mx-xxxl-n45 {
    margin-right: -4.5rem !important;
  }
  .mb-xxxl-n45,
  .my-xxxl-n45 {
    margin-bottom: -4.5rem !important;
  }
  .ml-xxxl-n45,
  .mx-xxxl-n45 {
    margin-left: -4.5rem !important;
  }
  .m-xxxl-n50 {
    margin: -5rem !important;
  }
  .mt-xxxl-n50,
  .my-xxxl-n50 {
    margin-top: -5rem !important;
  }
  .mr-xxxl-n50,
  .mx-xxxl-n50 {
    margin-right: -5rem !important;
  }
  .mb-xxxl-n50,
  .my-xxxl-n50 {
    margin-bottom: -5rem !important;
  }
  .ml-xxxl-n50,
  .mx-xxxl-n50 {
    margin-left: -5rem !important;
  }
  .m-xxxl-n55 {
    margin: -5.5rem !important;
  }
  .mt-xxxl-n55,
  .my-xxxl-n55 {
    margin-top: -5.5rem !important;
  }
  .mr-xxxl-n55,
  .mx-xxxl-n55 {
    margin-right: -5.5rem !important;
  }
  .mb-xxxl-n55,
  .my-xxxl-n55 {
    margin-bottom: -5.5rem !important;
  }
  .ml-xxxl-n55,
  .mx-xxxl-n55 {
    margin-left: -5.5rem !important;
  }
  .m-xxxl-n60 {
    margin: -6rem !important;
  }
  .mt-xxxl-n60,
  .my-xxxl-n60 {
    margin-top: -6rem !important;
  }
  .mr-xxxl-n60,
  .mx-xxxl-n60 {
    margin-right: -6rem !important;
  }
  .mb-xxxl-n60,
  .my-xxxl-n60 {
    margin-bottom: -6rem !important;
  }
  .ml-xxxl-n60,
  .mx-xxxl-n60 {
    margin-left: -6rem !important;
  }
  .m-xxxl-n65 {
    margin: -6.5rem !important;
  }
  .mt-xxxl-n65,
  .my-xxxl-n65 {
    margin-top: -6.5rem !important;
  }
  .mr-xxxl-n65,
  .mx-xxxl-n65 {
    margin-right: -6.5rem !important;
  }
  .mb-xxxl-n65,
  .my-xxxl-n65 {
    margin-bottom: -6.5rem !important;
  }
  .ml-xxxl-n65,
  .mx-xxxl-n65 {
    margin-left: -6.5rem !important;
  }
  .m-xxxl-n70 {
    margin: -7rem !important;
  }
  .mt-xxxl-n70,
  .my-xxxl-n70 {
    margin-top: -7rem !important;
  }
  .mr-xxxl-n70,
  .mx-xxxl-n70 {
    margin-right: -7rem !important;
  }
  .mb-xxxl-n70,
  .my-xxxl-n70 {
    margin-bottom: -7rem !important;
  }
  .ml-xxxl-n70,
  .mx-xxxl-n70 {
    margin-left: -7rem !important;
  }
  .m-xxxl-n75 {
    margin: -7.5rem !important;
  }
  .mt-xxxl-n75,
  .my-xxxl-n75 {
    margin-top: -7.5rem !important;
  }
  .mr-xxxl-n75,
  .mx-xxxl-n75 {
    margin-right: -7.5rem !important;
  }
  .mb-xxxl-n75,
  .my-xxxl-n75 {
    margin-bottom: -7.5rem !important;
  }
  .ml-xxxl-n75,
  .mx-xxxl-n75 {
    margin-left: -7.5rem !important;
  }
  .m-xxxl-n80 {
    margin: -8rem !important;
  }
  .mt-xxxl-n80,
  .my-xxxl-n80 {
    margin-top: -8rem !important;
  }
  .mr-xxxl-n80,
  .mx-xxxl-n80 {
    margin-right: -8rem !important;
  }
  .mb-xxxl-n80,
  .my-xxxl-n80 {
    margin-bottom: -8rem !important;
  }
  .ml-xxxl-n80,
  .mx-xxxl-n80 {
    margin-left: -8rem !important;
  }
  .m-xxxl-n85 {
    margin: -8.5rem !important;
  }
  .mt-xxxl-n85,
  .my-xxxl-n85 {
    margin-top: -8.5rem !important;
  }
  .mr-xxxl-n85,
  .mx-xxxl-n85 {
    margin-right: -8.5rem !important;
  }
  .mb-xxxl-n85,
  .my-xxxl-n85 {
    margin-bottom: -8.5rem !important;
  }
  .ml-xxxl-n85,
  .mx-xxxl-n85 {
    margin-left: -8.5rem !important;
  }
  .m-xxxl-n90 {
    margin: -9rem !important;
  }
  .mt-xxxl-n90,
  .my-xxxl-n90 {
    margin-top: -9rem !important;
  }
  .mr-xxxl-n90,
  .mx-xxxl-n90 {
    margin-right: -9rem !important;
  }
  .mb-xxxl-n90,
  .my-xxxl-n90 {
    margin-bottom: -9rem !important;
  }
  .ml-xxxl-n90,
  .mx-xxxl-n90 {
    margin-left: -9rem !important;
  }
  .m-xxxl-n95 {
    margin: -9.5rem !important;
  }
  .mt-xxxl-n95,
  .my-xxxl-n95 {
    margin-top: -9.5rem !important;
  }
  .mr-xxxl-n95,
  .mx-xxxl-n95 {
    margin-right: -9.5rem !important;
  }
  .mb-xxxl-n95,
  .my-xxxl-n95 {
    margin-bottom: -9.5rem !important;
  }
  .ml-xxxl-n95,
  .mx-xxxl-n95 {
    margin-left: -9.5rem !important;
  }
  .m-xxxl-n100 {
    margin: -10rem !important;
  }
  .mt-xxxl-n100,
  .my-xxxl-n100 {
    margin-top: -10rem !important;
  }
  .mr-xxxl-n100,
  .mx-xxxl-n100 {
    margin-right: -10rem !important;
  }
  .mb-xxxl-n100,
  .my-xxxl-n100 {
    margin-bottom: -10rem !important;
  }
  .ml-xxxl-n100,
  .mx-xxxl-n100 {
    margin-left: -10rem !important;
  }
  .m-xxxl-n130 {
    margin: -13rem !important;
  }
  .mt-xxxl-n130,
  .my-xxxl-n130 {
    margin-top: -13rem !important;
  }
  .mr-xxxl-n130,
  .mx-xxxl-n130 {
    margin-right: -13rem !important;
  }
  .mb-xxxl-n130,
  .my-xxxl-n130 {
    margin-bottom: -13rem !important;
  }
  .ml-xxxl-n130,
  .mx-xxxl-n130 {
    margin-left: -13rem !important;
  }
  .m-xxxl-n140 {
    margin: -14rem !important;
  }
  .mt-xxxl-n140,
  .my-xxxl-n140 {
    margin-top: -14rem !important;
  }
  .mr-xxxl-n140,
  .mx-xxxl-n140 {
    margin-right: -14rem !important;
  }
  .mb-xxxl-n140,
  .my-xxxl-n140 {
    margin-bottom: -14rem !important;
  }
  .ml-xxxl-n140,
  .mx-xxxl-n140 {
    margin-left: -14rem !important;
  }
  .m-xxxl-n150 {
    margin: -15rem !important;
  }
  .mt-xxxl-n150,
  .my-xxxl-n150 {
    margin-top: -15rem !important;
  }
  .mr-xxxl-n150,
  .mx-xxxl-n150 {
    margin-right: -15rem !important;
  }
  .mb-xxxl-n150,
  .my-xxxl-n150 {
    margin-bottom: -15rem !important;
  }
  .ml-xxxl-n150,
  .mx-xxxl-n150 {
    margin-left: -15rem !important;
  }
  .m-xxxl-n200 {
    margin: -20rem !important;
  }
  .mt-xxxl-n200,
  .my-xxxl-n200 {
    margin-top: -20rem !important;
  }
  .mr-xxxl-n200,
  .mx-xxxl-n200 {
    margin-right: -20rem !important;
  }
  .mb-xxxl-n200,
  .my-xxxl-n200 {
    margin-bottom: -20rem !important;
  }
  .ml-xxxl-n200,
  .mx-xxxl-n200 {
    margin-left: -20rem !important;
  }
  .m-xxxl-n250 {
    margin: -25rem !important;
  }
  .mt-xxxl-n250,
  .my-xxxl-n250 {
    margin-top: -25rem !important;
  }
  .mr-xxxl-n250,
  .mx-xxxl-n250 {
    margin-right: -25rem !important;
  }
  .mb-xxxl-n250,
  .my-xxxl-n250 {
    margin-bottom: -25rem !important;
  }
  .ml-xxxl-n250,
  .mx-xxxl-n250 {
    margin-left: -25rem !important;
  }
  .m-xxxl-n300 {
    margin: -30rem !important;
  }
  .mt-xxxl-n300,
  .my-xxxl-n300 {
    margin-top: -30rem !important;
  }
  .mr-xxxl-n300,
  .mx-xxxl-n300 {
    margin-right: -30rem !important;
  }
  .mb-xxxl-n300,
  .my-xxxl-n300 {
    margin-bottom: -30rem !important;
  }
  .ml-xxxl-n300,
  .mx-xxxl-n300 {
    margin-left: -30rem !important;
  }
  .m-xxxl-n400 {
    margin: -40rem !important;
  }
  .mt-xxxl-n400,
  .my-xxxl-n400 {
    margin-top: -40rem !important;
  }
  .mr-xxxl-n400,
  .mx-xxxl-n400 {
    margin-right: -40rem !important;
  }
  .mb-xxxl-n400,
  .my-xxxl-n400 {
    margin-bottom: -40rem !important;
  }
  .ml-xxxl-n400,
  .mx-xxxl-n400 {
    margin-left: -40rem !important;
  }
  .m-xxxl-n410 {
    margin: -41rem !important;
  }
  .mt-xxxl-n410,
  .my-xxxl-n410 {
    margin-top: -41rem !important;
  }
  .mr-xxxl-n410,
  .mx-xxxl-n410 {
    margin-right: -41rem !important;
  }
  .mb-xxxl-n410,
  .my-xxxl-n410 {
    margin-bottom: -41rem !important;
  }
  .ml-xxxl-n410,
  .mx-xxxl-n410 {
    margin-left: -41rem !important;
  }
  .m-xxxl-n450 {
    margin: -45rem !important;
  }
  .mt-xxxl-n450,
  .my-xxxl-n450 {
    margin-top: -45rem !important;
  }
  .mr-xxxl-n450,
  .mx-xxxl-n450 {
    margin-right: -45rem !important;
  }
  .mb-xxxl-n450,
  .my-xxxl-n450 {
    margin-bottom: -45rem !important;
  }
  .ml-xxxl-n450,
  .mx-xxxl-n450 {
    margin-left: -45rem !important;
  }
  .m-xxxl-auto {
    margin: auto !important;
  }
  .mt-xxxl-auto,
  .my-xxxl-auto {
    margin-top: auto !important;
  }
  .mr-xxxl-auto,
  .mx-xxxl-auto {
    margin-right: auto !important;
  }
  .mb-xxxl-auto,
  .my-xxxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxxl-auto,
  .mx-xxxl-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: 1600px) {
  .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-xxxl-left {
    text-align: left !important;
  }
  .text-xxxl-right {
    text-align: right !important;
  }
  .text-xxxl-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: #fde200 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #b19e00 !important;
}

.text-secondary {
  color: #DBDBDB !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #b5b5b5 !important;
}

.text-success {
  color: #45c61e !important;
}

a.text-success:hover, a.text-success:focus {
  color: #2e8414 !important;
}

.text-info {
  color: #D6EBFB !important;
}

a.text-info:hover, a.text-info:focus {
  color: #90c9f4 !important;
}

.text-warning {
  color: #FABE4B !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #f2a107 !important;
}

.text-danger {
  color: #df5a4c !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #bd3122 !important;
}

.text-light {
  color: #ffffff !important;
}

a.text-light:hover, a.text-light:focus {
  color: #d9d9d9 !important;
}

.text-dark {
  color: #999999 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #737373 !important;
}

.text-lightv2 {
  color: #ededed !important;
}

a.text-lightv2:hover, a.text-lightv2:focus {
  color: #c7c7c7 !important;
}

.text-lighter {
  color: #f0f0f0 !important;
}

a.text-lighter:hover, a.text-lighter:focus {
  color: #cacaca !important;
}

.text-darkv2 {
  color: #5f5f5f !important;
}

a.text-darkv2:hover, a.text-darkv2:focus {
  color: #393939 !important;
}

.text-darkv3 {
  color: #b2b2b2 !important;
}

a.text-darkv3:hover, a.text-darkv3:focus {
  color: #8c8c8c !important;
}

.text-darkv4 {
  color: #706f6f !important;
}

a.text-darkv4:hover, a.text-darkv4:focus {
  color: #4a4949 !important;
}

.text-black {
  color: #000 !important;
}

a.text-black:hover, a.text-black:focus {
  color: black !important;
}

.text-color01 {
  color: #21B558 !important;
}

a.text-color01:hover, a.text-color01:focus {
  color: #157439 !important;
}

.text-color02 {
  color: #e53325 !important;
}

a.text-color02:hover, a.text-color02:focus {
  color: #a91f14 !important;
}

.text-color03 {
  color: #FABE4B !important;
}

a.text-color03:hover, a.text-color03:focus {
  color: #f2a107 !important;
}

.text-color04 {
  color: #0aa5df !important;
}

a.text-color04:hover, a.text-color04:focus {
  color: #076f96 !important;
}

.text-color05 {
  color: #C173FE !important;
}

a.text-color05:hover, a.text-color05:focus {
  color: #9f27fd !important;
}

.text-color06 {
  color: #FB8BE9 !important;
}

a.text-color06:hover, a.text-color06:focus {
  color: #f841db !important;
}

.text-color07 {
  color: #BDE5EB !important;
}

a.text-color07:hover, a.text-color07:focus {
  color: #82ced9 !important;
}

.text-color08 {
  color: #1F68AC !important;
}

a.text-color08:hover, a.text-color08:focus {
  color: #13416b !important;
}

.text-color09 {
  color: #2DC9A3 !important;
}

a.text-color09:hover, a.text-color09:focus {
  color: #1f8a70 !important;
}

.text-color10 {
  color: #CE3838 !important;
}

a.text-color10:hover, a.text-color10:focus {
  color: #952525 !important;
}

.text-color11 {
  color: #EE9329 !important;
}

a.text-color11:hover, a.text-color11:focus {
  color: #bc6c0f !important;
}

.text-color12 {
  color: #5EC2CF !important;
}

a.text-color12:hover, a.text-color12:focus {
  color: #349fad !important;
}

.text-color13 {
  color: #FF2B78 !important;
}

a.text-color13:hover, a.text-color13:focus {
  color: #de0050 !important;
}

.text-body {
  color: #000 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.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: #C1C0C0;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #C1C0C0;
  }
}
/* NPM: bootstrap-vue */
.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: 1;
}
.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, 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: #18181B;
  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, 0.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: #18181B;
    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: #18181B;
    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: 5rem 1.2rem;
}
.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(1.1rem / 2) center;
  padding-right: calc(1.1rem + 5rem);
}
.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(1.1rem / 2) center;
  padding-left: calc(1.1rem + 5rem);
}
.table.b-table > thead > tr > [aria-sort=none],
.table.b-table > tfoot > tr > [aria-sort=none] {
  background-image: url("data:image/svg+xml;utf8,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='43px' height='12px'%3e%3cpath fill='rgb(112, 111, 111)' d='M41.369,12.5 L32.999,3.342 L24.629,12.5 L23.9,10.328 L31.379,1.665 L32.999,0.11 L34.619,1.665 L42.989,10.328 L41.369,12.5 Z'%3e%3c/path%3e%3cpath fill='rgb(112, 111, 111)' d='M10.0,12.10 L8.380,10.334 L0.10,1.671 L1.630,0.5 L10.0,8.657 L18.370,0.5 L19.990,1.671 L11.620,10.334 L10.0,12.10 Z'%3e%3c/path%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;utf8,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='43px' height='12px'%3e%3cpath fill='rgb(0, 0, 0)' d='M41.369,12.5 L32.999,3.342 L24.629,12.5 L23.9,10.328 L31.379,1.665 L32.999,0.11 L34.619,1.665 L42.989,10.328 L41.369,12.5 Z'%3e%3c/path%3e%3cpath fill='rgb(112, 111, 111)' d='M10.0,12.10 L8.380,10.334 L0.10,1.671 L1.630,0.5 L10.0,8.657 L18.370,0.5 L19.990,1.671 L11.620,10.334 L10.0,12.10 Z'%3e%3c/path%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;utf8,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='43px' height='12px'%3e%3cpath fill='rgb(112, 111, 111)' d='M41.369,12.5 L32.999,3.342 L24.629,12.5 L23.9,10.328 L31.379,1.665 L32.999,0.11 L34.619,1.665 L42.989,10.328 L41.369,12.5 Z'%3e%3c/path%3e%3cpath fill='rgb(0, 0, 0)' d='M10.0,12.10 L8.380,10.334 L0.10,1.671 L1.630,0.5 L10.0,8.657 L18.370,0.5 L19.990,1.671 L11.620,10.334 L10.0,12.10 Z'%3e%3c/path%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='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' opacity='.3' d='M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z'/%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='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='white' opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%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='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='white' d='M51 101l25-23 24-22H1l25 22z'/%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='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' opacity='.3' d='M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z'/%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='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='white' opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%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='http://www.w3.org/2000/svg' width='101' height='101' view-box='0 0 101 101' preserveAspectRatio='none'%3e%3cpath fill='white' opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3e%3cpath fill='white' d='M51 101l25-23 24-22H1l25 22z'/%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 + 5rem);
}
.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 + 5rem);
}

.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 {
  -webkit-user-select: none;
     -moz-user-select: none;
          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: 1599.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-xxxl {
    display: block;
    width: 100%;
  }
  .table.b-table.b-table-stacked-xxxl > caption,
  .table.b-table.b-table-stacked-xxxl > tbody,
  .table.b-table.b-table-stacked-xxxl > tbody > tr,
  .table.b-table.b-table-stacked-xxxl > tbody > tr > td,
  .table.b-table.b-table-stacked-xxxl > tbody > tr > th {
    display: block;
  }
  .table.b-table.b-table-stacked-xxxl > thead,
  .table.b-table.b-table-stacked-xxxl > tfoot {
    display: none;
  }
  .table.b-table.b-table-stacked-xxxl > thead > tr.b-table-top-row,
  .table.b-table.b-table-stacked-xxxl > thead > tr.b-table-bottom-row,
  .table.b-table.b-table-stacked-xxxl > tfoot > tr.b-table-top-row,
  .table.b-table.b-table-stacked-xxxl > tfoot > tr.b-table-bottom-row {
    display: none;
  }
  .table.b-table.b-table-stacked-xxxl > caption {
    caption-side: top !important;
  }
  .table.b-table.b-table-stacked-xxxl > 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-xxxl > tbody > tr > [data-label]::after {
    display: block;
    clear: both;
    content: "";
  }
  .table.b-table.b-table-stacked-xxxl > 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-xxxl > tbody > tr.top-row, .table.b-table.b-table-stacked-xxxl > tbody > tr.bottom-row {
    display: none;
  }
  .table.b-table.b-table-stacked-xxxl > tbody > tr > :first-child {
    border-top-width: 3px;
  }
  .table.b-table.b-table-stacked-xxxl > tbody > tr > [rowspan] + td,
  .table.b-table.b-table-stacked-xxxl > 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-toast {
  display: block;
  position: relative;
  max-width: 35rem;
  backface-visibility: hidden;
  background-clip: padding-box;
  z-index: 1;
  border-radius: 0.5rem;
}
.b-toast .toast {
  background-color: white;
}
.b-toast:not(:last-child) {
  margin-bottom: 2rem;
}
.b-toast.b-toast-solid .toast {
  background-color: white;
}
.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: #fffce6;
  border-color: #fef7b8;
  color: #847600;
}
.b-toast-primary .toast .toast-header {
  color: #847600;
  background-color: #fff9cc;
  border-bottom-color: #fef7b8;
}
.b-toast-primary.b-toast-solid .toast {
  background-color: #fffce6;
}

.b-toast-secondary .toast {
  background-color: white;
  border-color: whitesmoke;
  color: #727272;
}
.b-toast-secondary .toast .toast-header {
  color: #727272;
  background-color: #f8f8f8;
  border-bottom-color: whitesmoke;
}
.b-toast-secondary.b-toast-solid .toast {
  background-color: white;
}

.b-toast-success .toast {
  background-color: #ebf9e6;
  border-color: #cbefc0;
  color: #246710;
}
.b-toast-success .toast .toast-header {
  color: #246710;
  background-color: #daf4d2;
  border-bottom-color: #cbefc0;
}
.b-toast-success.b-toast-solid .toast {
  background-color: #ebf9e6;
}

.b-toast-info .toast {
  background-color: white;
  border-color: #f4f9fe;
  color: #6f7a83;
}
.b-toast-info .toast .toast-header {
  color: #6f7a83;
  background-color: #f7fbfe;
  border-bottom-color: #f4f9fe;
}
.b-toast-info.b-toast-solid .toast {
  background-color: white;
}

.b-toast-warning .toast {
  background-color: #fffbf4;
  border-color: #feedcd;
  color: #826327;
}
.b-toast-warning .toast .toast-header {
  color: #826327;
  background-color: #fef2db;
  border-bottom-color: #feedcd;
}
.b-toast-warning.b-toast-solid .toast {
  background-color: #fffbf4;
}

.b-toast-danger .toast {
  background-color: #fdf2f1;
  border-color: #f6d1cd;
  color: #742f28;
}
.b-toast-danger .toast .toast-header {
  color: #742f28;
  background-color: #f9dedb;
  border-bottom-color: #f6d1cd;
}
.b-toast-danger.b-toast-solid .toast {
  background-color: #fdf2f1;
}

.b-toast-light .toast {
  background-color: white;
  border-color: white;
  color: #858585;
}
.b-toast-light .toast .toast-header {
  color: #858585;
  background-color: white;
  border-bottom-color: white;
}
.b-toast-light.b-toast-solid .toast {
  background-color: white;
}

.b-toast-dark .toast {
  background-color: #f8f8f8;
  border-color: #e2e2e2;
  color: #505050;
}
.b-toast-dark .toast .toast-header {
  color: #505050;
  background-color: #ebebeb;
  border-bottom-color: #e2e2e2;
}
.b-toast-dark.b-toast-solid .toast {
  background-color: #f8f8f8;
}

.b-toast-lightv2 .toast {
  background-color: white;
  border-color: #fafafa;
  color: #7b7b7b;
}
.b-toast-lightv2 .toast .toast-header {
  color: #7b7b7b;
  background-color: #fbfbfb;
  border-bottom-color: #fafafa;
}
.b-toast-lightv2.b-toast-solid .toast {
  background-color: white;
}

.b-toast-lighter .toast {
  background-color: white;
  border-color: #fbfbfb;
  color: #7d7d7d;
}
.b-toast-lighter .toast .toast-header {
  color: #7d7d7d;
  background-color: #fcfcfc;
  border-bottom-color: #fbfbfb;
}
.b-toast-lighter.b-toast-solid .toast {
  background-color: white;
}

.b-toast-darkv2 .toast {
  background-color: #ececec;
  border-color: #d2d2d2;
  color: #313131;
}
.b-toast-darkv2 .toast .toast-header {
  color: #313131;
  background-color: #dfdfdf;
  border-bottom-color: #d2d2d2;
}
.b-toast-darkv2.b-toast-solid .toast {
  background-color: #ececec;
}

.b-toast-darkv3 .toast {
  background-color: #fdfdfd;
  border-color: #e9e9e9;
  color: #5d5d5d;
}
.b-toast-darkv3 .toast .toast-header {
  color: #5d5d5d;
  background-color: #f0f0f0;
  border-bottom-color: #e9e9e9;
}
.b-toast-darkv3.b-toast-solid .toast {
  background-color: #fdfdfd;
}

.b-toast-darkv4 .toast {
  background-color: #efefef;
  border-color: #d7d7d7;
  color: #3a3a3a;
}
.b-toast-darkv4 .toast .toast-header {
  color: #3a3a3a;
  background-color: #e2e2e2;
  border-bottom-color: #d7d7d7;
}
.b-toast-darkv4.b-toast-solid .toast {
  background-color: #efefef;
}

.b-toast-black .toast {
  background-color: #d9d9d9;
  border-color: #b8b8b8;
  color: black;
}
.b-toast-black .toast .toast-header {
  color: black;
  background-color: #cccccc;
  border-bottom-color: #b8b8b8;
}
.b-toast-black.b-toast-solid .toast {
  background-color: #d9d9d9;
}

.b-toast-color01 .toast {
  background-color: #e6f6ec;
  border-color: #c1ead0;
  color: #115e2e;
}
.b-toast-color01 .toast .toast-header {
  color: #115e2e;
  background-color: #d3f0de;
  border-bottom-color: #c1ead0;
}
.b-toast-color01.b-toast-solid .toast {
  background-color: #e6f6ec;
}

.b-toast-color02 .toast {
  background-color: #fdebea;
  border-color: #f8c6c2;
  color: #771b13;
}
.b-toast-color02 .toast .toast-header {
  color: #771b13;
  background-color: #fad6d3;
  border-bottom-color: #f8c6c2;
}
.b-toast-color02.b-toast-solid .toast {
  background-color: #fdebea;
}

.b-toast-color03 .toast {
  background-color: #fffbf4;
  border-color: #feedcd;
  color: #826327;
}
.b-toast-color03 .toast .toast-header {
  color: #826327;
  background-color: #fef2db;
  border-bottom-color: #feedcd;
}
.b-toast-color03.b-toast-solid .toast {
  background-color: #fffbf4;
}

.b-toast-color04 .toast {
  background-color: #e5f5fc;
  border-color: #bae6f6;
  color: #055674;
}
.b-toast-color04 .toast .toast-header {
  color: #055674;
  background-color: #ceedf9;
  border-bottom-color: #bae6f6;
}
.b-toast-color04.b-toast-solid .toast {
  background-color: #e5f5fc;
}

.b-toast-color05 .toast {
  background-color: #fefdff;
  border-color: #eed8ff;
  color: #643c84;
}
.b-toast-color05 .toast .toast-header {
  color: #643c84;
  background-color: #f3e3ff;
  border-bottom-color: #eed8ff;
}
.b-toast-color05.b-toast-solid .toast {
  background-color: #fefdff;
}

.b-toast-color06 .toast {
  background-color: white;
  border-color: #fedff9;
  color: #834879;
}
.b-toast-color06 .toast .toast-header {
  color: #834879;
  background-color: #fee8fb;
  border-bottom-color: #fedff9;
}
.b-toast-color06.b-toast-solid .toast {
  background-color: white;
}

.b-toast-color07 .toast {
  background-color: white;
  border-color: #edf8f9;
  color: #62777a;
}
.b-toast-color07 .toast .toast-header {
  color: #62777a;
  background-color: #f2fafb;
  border-bottom-color: #edf8f9;
}
.b-toast-color07.b-toast-solid .toast {
  background-color: white;
}

.b-toast-color08 .toast {
  background-color: #e5edf5;
  border-color: #c0d5e8;
  color: #103659;
}
.b-toast-color08 .toast .toast-header {
  color: #103659;
  background-color: #d2e1ee;
  border-bottom-color: #c0d5e8;
}
.b-toast-color08.b-toast-solid .toast {
  background-color: #e5edf5;
}

.b-toast-color09 .toast {
  background-color: #e9f9f6;
  border-color: #c4f0e5;
  color: #176955;
}
.b-toast-color09 .toast .toast-header {
  color: #176955;
  background-color: #d5f4ed;
  border-bottom-color: #c4f0e5;
}
.b-toast-color09.b-toast-solid .toast {
  background-color: #e9f9f6;
}

.b-toast-color10 .toast {
  background-color: #faebeb;
  border-color: #f1c7c7;
  color: #6b1d1d;
}
.b-toast-color10 .toast .toast-header {
  color: #6b1d1d;
  background-color: #f5d7d7;
  border-bottom-color: #f1c7c7;
}
.b-toast-color10.b-toast-solid .toast {
  background-color: #faebeb;
}

.b-toast-color11 .toast {
  background-color: #fef5ec;
  border-color: #fae1c3;
  color: #7c4c15;
}
.b-toast-color11 .toast .toast-header {
  color: #7c4c15;
  background-color: #fce9d4;
  border-bottom-color: #fae1c3;
}
.b-toast-color11.b-toast-solid .toast {
  background-color: #fef5ec;
}

.b-toast-color12 .toast {
  background-color: #f2fafb;
  border-color: #d2eef2;
  color: #31656c;
}
.b-toast-color12 .toast .toast-header {
  color: #31656c;
  background-color: #dff3f5;
  border-bottom-color: #d2eef2;
}
.b-toast-color12.b-toast-solid .toast {
  background-color: #f2fafb;
}

.b-toast-color13 .toast {
  background-color: #ffeff4;
  border-color: #ffc4d9;
  color: #85163e;
}
.b-toast-color13 .toast .toast-header {
  color: #85163e;
  background-color: #ffd5e4;
  border-bottom-color: #ffc4d9;
}
.b-toast-color13.b-toast-solid .toast {
  background-color: #ffeff4;
}

.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: 0.5rem;
  right: 0.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: 35rem;
  width: 100%; /* IE 11 fix */
  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: 0.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: 0.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 0.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: 0.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: 0.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: 0.9;
  outline: 0;
}
.tooltip.b-tooltip.fade:not(.show) {
  opacity: 0;
}
.tooltip.b-tooltip.show {
  opacity: 0.9;
}
.tooltip.b-tooltip.noninteractive {
  pointer-events: none;
}
.tooltip.b-tooltip .arrow {
  margin: 0 0;
}
.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: 0 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: #fde200;
}
.tooltip.b-tooltip-primary.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #fde200;
}
.tooltip.b-tooltip-primary.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #fde200;
}
.tooltip.b-tooltip-primary.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #fde200;
}
.tooltip.b-tooltip-primary .tooltip-inner {
  color: #212529;
  background-color: #fde200;
}

.tooltip.b-tooltip-secondary.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #dbdbdb;
}
.tooltip.b-tooltip-secondary.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #dbdbdb;
}
.tooltip.b-tooltip-secondary.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #dbdbdb;
}
.tooltip.b-tooltip-secondary.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #dbdbdb;
}
.tooltip.b-tooltip-secondary .tooltip-inner {
  color: #212529;
  background-color: #dbdbdb;
}

.tooltip.b-tooltip-success.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #45c61e;
}
.tooltip.b-tooltip-success.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #45c61e;
}
.tooltip.b-tooltip-success.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #45c61e;
}
.tooltip.b-tooltip-success.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #45c61e;
}
.tooltip.b-tooltip-success .tooltip-inner {
  color: #212529;
  background-color: #45c61e;
}

.tooltip.b-tooltip-info.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #d6ebfb;
}
.tooltip.b-tooltip-info.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #d6ebfb;
}
.tooltip.b-tooltip-info.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #d6ebfb;
}
.tooltip.b-tooltip-info.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #d6ebfb;
}
.tooltip.b-tooltip-info .tooltip-inner {
  color: #212529;
  background-color: #d6ebfb;
}

.tooltip.b-tooltip-warning.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #fabe4b;
}
.tooltip.b-tooltip-warning.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #fabe4b;
}
.tooltip.b-tooltip-warning.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #fabe4b;
}
.tooltip.b-tooltip-warning.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #fabe4b;
}
.tooltip.b-tooltip-warning .tooltip-inner {
  color: #212529;
  background-color: #fabe4b;
}

.tooltip.b-tooltip-danger.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #df5a4c;
}
.tooltip.b-tooltip-danger.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #df5a4c;
}
.tooltip.b-tooltip-danger.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #df5a4c;
}
.tooltip.b-tooltip-danger.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #df5a4c;
}
.tooltip.b-tooltip-danger .tooltip-inner {
  color: #212529;
  background-color: #df5a4c;
}

.tooltip.b-tooltip-light.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: white;
}
.tooltip.b-tooltip-light.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: white;
}
.tooltip.b-tooltip-light.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: white;
}
.tooltip.b-tooltip-light.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: white;
}
.tooltip.b-tooltip-light .tooltip-inner {
  color: #212529;
  background-color: white;
}

.tooltip.b-tooltip-dark.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #999999;
}
.tooltip.b-tooltip-dark.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #999999;
}
.tooltip.b-tooltip-dark.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #999999;
}
.tooltip.b-tooltip-dark.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #999999;
}
.tooltip.b-tooltip-dark .tooltip-inner {
  color: #212529;
  background-color: #999999;
}

.tooltip.b-tooltip-lightv2.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-lightv2.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #ededed;
}
.tooltip.b-tooltip-lightv2.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-lightv2.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #ededed;
}
.tooltip.b-tooltip-lightv2.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-lightv2.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #ededed;
}
.tooltip.b-tooltip-lightv2.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-lightv2.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #ededed;
}
.tooltip.b-tooltip-lightv2 .tooltip-inner {
  color: #212529;
  background-color: #ededed;
}

.tooltip.b-tooltip-lighter.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #f0f0f0;
}
.tooltip.b-tooltip-lighter.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #f0f0f0;
}
.tooltip.b-tooltip-lighter.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #f0f0f0;
}
.tooltip.b-tooltip-lighter.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-lighter.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #f0f0f0;
}
.tooltip.b-tooltip-lighter .tooltip-inner {
  color: #212529;
  background-color: #f0f0f0;
}

.tooltip.b-tooltip-darkv2.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #5f5f5f;
}
.tooltip.b-tooltip-darkv2.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #5f5f5f;
}
.tooltip.b-tooltip-darkv2.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #5f5f5f;
}
.tooltip.b-tooltip-darkv2.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-darkv2.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #5f5f5f;
}
.tooltip.b-tooltip-darkv2 .tooltip-inner {
  color: #fff;
  background-color: #5f5f5f;
}

.tooltip.b-tooltip-darkv3.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #b2b2b2;
}
.tooltip.b-tooltip-darkv3.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #b2b2b2;
}
.tooltip.b-tooltip-darkv3.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #b2b2b2;
}
.tooltip.b-tooltip-darkv3.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-darkv3.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #b2b2b2;
}
.tooltip.b-tooltip-darkv3 .tooltip-inner {
  color: #212529;
  background-color: #b2b2b2;
}

.tooltip.b-tooltip-darkv4.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #706f6f;
}
.tooltip.b-tooltip-darkv4.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #706f6f;
}
.tooltip.b-tooltip-darkv4.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #706f6f;
}
.tooltip.b-tooltip-darkv4.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-darkv4.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #706f6f;
}
.tooltip.b-tooltip-darkv4 .tooltip-inner {
  color: #fff;
  background-color: #706f6f;
}

.tooltip.b-tooltip-black.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: black;
}
.tooltip.b-tooltip-black.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: black;
}
.tooltip.b-tooltip-black.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: black;
}
.tooltip.b-tooltip-black.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-black.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: black;
}
.tooltip.b-tooltip-black .tooltip-inner {
  color: #fff;
  background-color: black;
}

.tooltip.b-tooltip-color01.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #21b558;
}
.tooltip.b-tooltip-color01.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #21b558;
}
.tooltip.b-tooltip-color01.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #21b558;
}
.tooltip.b-tooltip-color01.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-color01.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #21b558;
}
.tooltip.b-tooltip-color01 .tooltip-inner {
  color: #212529;
  background-color: #21b558;
}

.tooltip.b-tooltip-color02.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #e53325;
}
.tooltip.b-tooltip-color02.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #e53325;
}
.tooltip.b-tooltip-color02.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #e53325;
}
.tooltip.b-tooltip-color02.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-color02.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #e53325;
}
.tooltip.b-tooltip-color02 .tooltip-inner {
  color: #fff;
  background-color: #e53325;
}

.tooltip.b-tooltip-color03.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #fabe4b;
}
.tooltip.b-tooltip-color03.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #fabe4b;
}
.tooltip.b-tooltip-color03.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #fabe4b;
}
.tooltip.b-tooltip-color03.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-color03.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #fabe4b;
}
.tooltip.b-tooltip-color03 .tooltip-inner {
  color: #212529;
  background-color: #fabe4b;
}

.tooltip.b-tooltip-color04.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #0aa5df;
}
.tooltip.b-tooltip-color04.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #0aa5df;
}
.tooltip.b-tooltip-color04.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #0aa5df;
}
.tooltip.b-tooltip-color04.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-color04.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #0aa5df;
}
.tooltip.b-tooltip-color04 .tooltip-inner {
  color: #212529;
  background-color: #0aa5df;
}

.tooltip.b-tooltip-color05.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #c173fe;
}
.tooltip.b-tooltip-color05.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #c173fe;
}
.tooltip.b-tooltip-color05.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #c173fe;
}
.tooltip.b-tooltip-color05.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-color05.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #c173fe;
}
.tooltip.b-tooltip-color05 .tooltip-inner {
  color: #212529;
  background-color: #c173fe;
}

.tooltip.b-tooltip-color06.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #fb8be9;
}
.tooltip.b-tooltip-color06.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #fb8be9;
}
.tooltip.b-tooltip-color06.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #fb8be9;
}
.tooltip.b-tooltip-color06.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-color06.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #fb8be9;
}
.tooltip.b-tooltip-color06 .tooltip-inner {
  color: #212529;
  background-color: #fb8be9;
}

.tooltip.b-tooltip-color07.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #bde5eb;
}
.tooltip.b-tooltip-color07.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #bde5eb;
}
.tooltip.b-tooltip-color07.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #bde5eb;
}
.tooltip.b-tooltip-color07.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-color07.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #bde5eb;
}
.tooltip.b-tooltip-color07 .tooltip-inner {
  color: #212529;
  background-color: #bde5eb;
}

.tooltip.b-tooltip-color08.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #1f68ac;
}
.tooltip.b-tooltip-color08.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #1f68ac;
}
.tooltip.b-tooltip-color08.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #1f68ac;
}
.tooltip.b-tooltip-color08.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-color08.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #1f68ac;
}
.tooltip.b-tooltip-color08 .tooltip-inner {
  color: #fff;
  background-color: #1f68ac;
}

.tooltip.b-tooltip-color09.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #2dc9a3;
}
.tooltip.b-tooltip-color09.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #2dc9a3;
}
.tooltip.b-tooltip-color09.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #2dc9a3;
}
.tooltip.b-tooltip-color09.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-color09.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #2dc9a3;
}
.tooltip.b-tooltip-color09 .tooltip-inner {
  color: #212529;
  background-color: #2dc9a3;
}

.tooltip.b-tooltip-color10.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #ce3838;
}
.tooltip.b-tooltip-color10.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #ce3838;
}
.tooltip.b-tooltip-color10.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #ce3838;
}
.tooltip.b-tooltip-color10.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-color10.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #ce3838;
}
.tooltip.b-tooltip-color10 .tooltip-inner {
  color: #fff;
  background-color: #ce3838;
}

.tooltip.b-tooltip-color11.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #ee9329;
}
.tooltip.b-tooltip-color11.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #ee9329;
}
.tooltip.b-tooltip-color11.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #ee9329;
}
.tooltip.b-tooltip-color11.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-color11.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #ee9329;
}
.tooltip.b-tooltip-color11 .tooltip-inner {
  color: #212529;
  background-color: #ee9329;
}

.tooltip.b-tooltip-color12.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #5ec2cf;
}
.tooltip.b-tooltip-color12.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #5ec2cf;
}
.tooltip.b-tooltip-color12.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #5ec2cf;
}
.tooltip.b-tooltip-color12.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-color12.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #5ec2cf;
}
.tooltip.b-tooltip-color12 .tooltip-inner {
  color: #212529;
  background-color: #5ec2cf;
}

.tooltip.b-tooltip-color13.bs-tooltip-top .arrow::before, .tooltip.b-tooltip-color13.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #ff2b78;
}
.tooltip.b-tooltip-color13.bs-tooltip-right .arrow::before, .tooltip.b-tooltip-color13.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #ff2b78;
}
.tooltip.b-tooltip-color13.bs-tooltip-bottom .arrow::before, .tooltip.b-tooltip-color13.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #ff2b78;
}
.tooltip.b-tooltip-color13.bs-tooltip-left .arrow::before, .tooltip.b-tooltip-color13.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #ff2b78;
}
.tooltip.b-tooltip-color13 .tooltip-inner {
  color: #fff;
  background-color: #ff2b78;
}

.modal-backdrop {
  opacity: 0.6;
}

/* Lib */
/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-bacteria:before {
  content: "\e059";
}

.fa-bacterium:before {
  content: "\e05a";
}

.fa-bahai:before {
  content: "\f666";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-box-tissue:before {
  content: "\e05b";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caravan:before {
  content: "\f8ff";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-disease:before {
  content: "\f7fa";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-faucet:before {
  content: "\e005";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-medical:before {
  content: "\e05c";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-water:before {
  content: "\f4c1";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-sparkles:before {
  content: "\e05d";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-hands-wash:before {
  content: "\e05e";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-handshake-alt-slash:before {
  content: "\e05f";
}

.fa-handshake-slash:before {
  content: "\e060";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-cowboy:before {
  content: "\f8c0";
}

.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-head-side-cough:before {
  content: "\e061";
}

.fa-head-side-cough-slash:before {
  content: "\e062";
}

.fa-head-side-mask:before {
  content: "\e063";
}

.fa-head-side-virus:before {
  content: "\e064";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hospital-user:before {
  content: "\f80d";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-house-user:before {
  content: "\e065";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-innosoft:before {
  content: "\e080";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-house:before {
  content: "\e066";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lungs:before {
  content: "\f604";
}

.fa-lungs-virus:before {
  content: "\e067";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse:before {
  content: "\f8cc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-arrows:before {
  content: "\e068";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-plane-slash:before {
  content: "\e069";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pump-medical:before {
  content: "\e06a";
}

.fa-pump-soap:before {
  content: "\e06b";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-record-vinyl:before {
  content: "\f8d9";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-virus:before {
  content: "\e06c";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sink:before {
  content: "\e06d";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-soap:before {
  content: "\e06e";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-stopwatch-20:before {
  content: "\e06f";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-store-alt-slash:before {
  content: "\e070";
}

.fa-store-slash:before {
  content: "\e071";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-slash:before {
  content: "\e072";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-trailer:before {
  content: "\e041";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-unity:before {
  content: "\e049";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-users-slash:before {
  content: "\e073";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-vest:before {
  content: "\e085";
}

.fa-vest-patches:before {
  content: "\e086";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-virus:before {
  content: "\e074";
}

.fa-virus-slash:before {
  content: "\e075";
}

.fa-viruses:before {
  content: "\e076";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.eot?9bbb245e67a133f6e486d8d2545e14a5);
  src: url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.eot?9bbb245e67a133f6e486d8d2545e14a5?#iefix) format("embedded-opentype"), url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff2?1551f4f60c37af51121f106501f69b80) format("woff2"), url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff?eeccf4f66002c6f2ba24d3d22f2434c2) format("woff"), url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.ttf?be9ee23c0c6390141475d519c2c5fb8f) format("truetype"), url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.svg?7a8b4f130182d19a2d7c67d80c090397#fontawesome) format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.eot?23f19bb08961f37aaf692ff943823453);
  src: url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.eot?23f19bb08961f37aaf692ff943823453?#iefix) format("embedded-opentype"), url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff2?d878b0a6a1144760244ff0665888404c) format("woff2"), url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff?2285773e6b4b172f07d9b777c81b0775) format("woff"), url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.ttf?527940b104eb2ea366c8630f3f038603) format("truetype"), url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.svg?2f517e09eb2ca6650ff5bec5a95157ab#fontawesome) format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.eot?77206a6bb316fa0aded5083cc57f92b9);
  src: url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.eot?77206a6bb316fa0aded5083cc57f92b9?#iefix) format("embedded-opentype"), url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff2?7a3337626410ca2f40718481c755640f) format("woff2"), url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff?bb58e57c48a3e911f15fa834ff00d44a) format("woff"), url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.ttf?491974d108fe4002b2aaf7ffc48249a0) format("truetype"), url(/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.svg?4689f52cc96215721344e51e5831eec1#fontawesome) format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

:root {
  --swal2-outline: 0 0 0 3px rgba(100, 150, 200, 0.5);
  --swal2-container-padding: 0.625em;
  --swal2-backdrop: rgba(0, 0, 0, 0.4);
  --swal2-backdrop-transition: background-color 0.1s;
  --swal2-width: 32em;
  --swal2-padding: 0 0 1.25em;
  --swal2-border: none;
  --swal2-border-radius: 0.3125rem;
  --swal2-background: white;
  --swal2-color: #545454;
  --swal2-show-animation: swal2-show 0.3s;
  --swal2-hide-animation: swal2-hide 0.15s forwards;
  --swal2-icon-zoom: 1;
  --swal2-icon-animations: true;
  --swal2-title-padding: 0.8em 1em 0;
  --swal2-html-container-padding: 1em 1.6em 0.3em;
  --swal2-input-border: 1px solid #d9d9d9;
  --swal2-input-border-radius: 0.1875em;
  --swal2-input-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px transparent;
  --swal2-input-background: transparent;
  --swal2-input-transition: border-color 0.2s, box-shadow 0.2s;
  --swal2-input-hover-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px transparent;
  --swal2-input-focus-border: 1px solid #b4dbed;
  --swal2-input-focus-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px $swal2-outline-color;
  --swal2-progress-step-background: #add8e6;
  --swal2-validation-message-background: #f0f0f0;
  --swal2-validation-message-color: #666;
  --swal2-footer-border-color: #eee;
  --swal2-footer-background: transparent;
  --swal2-footer-color: inherit;
  --swal2-close-button-position: initial;
  --swal2-close-button-inset: auto;
  --swal2-close-button-font-size: 2.5em;
  --swal2-close-button-color: #ccc;
  --swal2-close-button-transition: color 0.2s, box-shadow 0.2s;
  --swal2-close-button-outline: initial;
  --swal2-close-button-box-shadow: inset 0 0 0 3px transparent;
  --swal2-close-button-focus-box-shadow: inset var(--swal2-outline);
  --swal2-close-button-hover-transform: none;
  --swal2-actions-justify-content: center;
  --swal2-actions-width: auto;
  --swal2-actions-margin: 1.25em auto 0;
  --swal2-actions-padding: 0;
  --swal2-actions-border-radius: 0;
  --swal2-actions-background: transparent;
  --swal2-action-button-transition: background-color 0.2s, box-shadow 0.2s;
  --swal2-action-button-hover: black 10%;
  --swal2-action-button-active: black 10%;
  --swal2-confirm-button-box-shadow: none;
  --swal2-confirm-button-border-radius: 0.25em;
  --swal2-confirm-button-background-color: #7066e0;
  --swal2-confirm-button-color: #fff;
  --swal2-deny-button-box-shadow: none;
  --swal2-deny-button-border-radius: 0.25em;
  --swal2-deny-button-background-color: #dc3741;
  --swal2-deny-button-color: #fff;
  --swal2-cancel-button-box-shadow: none;
  --swal2-cancel-button-border-radius: 0.25em;
  --swal2-cancel-button-background-color: #6e7881;
  --swal2-cancel-button-color: #fff;
  --swal2-toast-show-animation: swal2-toast-show 0.5s;
  --swal2-toast-hide-animation: swal2-toast-hide 0.1s forwards;
  --swal2-toast-border: none;
  --swal2-toast-box-shadow:
    0 0 1px hsl(0deg 0% 0% / 0.075), 0 1px 2px hsl(0deg 0% 0% / 0.075), 1px 2px 4px hsl(0deg 0% 0% / 0.075),
    1px 3px 8px hsl(0deg 0% 0% / 0.075), 2px 4px 16px hsl(0deg 0% 0% / 0.075);
}

[data-swal2-theme=dark] {
  --swal2-dark-theme-black: #19191a;
  --swal2-dark-theme-white: #e1e1e1;
  --swal2-background: var(--swal2-dark-theme-black);
  --swal2-color: var(--swal2-dark-theme-white);
  --swal2-footer-border-color: #555;
  --swal2-input-background: color-mix(in srgb, var(--swal2-dark-theme-black), var(--swal2-dark-theme-white) 10%);
  --swal2-validation-message-background: color-mix(
    in srgb,
    var(--swal2-dark-theme-black),
    var(--swal2-dark-theme-white) 10%
  );
  --swal2-validation-message-color: var(--swal2-dark-theme-white);
}

@media (prefers-color-scheme: dark) {
  [data-swal2-theme=auto] {
    --swal2-dark-theme-black: #19191a;
    --swal2-dark-theme-white: #e1e1e1;
    --swal2-background: var(--swal2-dark-theme-black);
    --swal2-color: var(--swal2-dark-theme-white);
    --swal2-footer-border-color: #555;
    --swal2-input-background: color-mix(in srgb, var(--swal2-dark-theme-black), var(--swal2-dark-theme-white) 10%);
    --swal2-validation-message-background: color-mix(
      in srgb,
      var(--swal2-dark-theme-black),
      var(--swal2-dark-theme-white) 10%
    );
    --swal2-validation-message-color: var(--swal2-dark-theme-white);
  }
}
body.swal2-shown:not(.swal2-no-backdrop, .swal2-toast-shown) {
  overflow: hidden;
}
body.swal2-height-auto {
  height: auto !important;
}
body.swal2-no-backdrop .swal2-container {
  background-color: transparent !important;
  pointer-events: none;
}
body.swal2-no-backdrop .swal2-container .swal2-popup {
  pointer-events: all;
}
body.swal2-no-backdrop .swal2-container .swal2-modal {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
body.swal2-toast-shown .swal2-container {
  box-sizing: border-box;
  width: 360px;
  max-width: 100%;
  background-color: transparent;
  pointer-events: none;
}
body.swal2-toast-shown .swal2-container.swal2-top {
  inset: 0 auto auto 50%;
  transform: translateX(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
  inset: 0 0 auto auto;
}
body.swal2-toast-shown .swal2-container.swal2-top-start, body.swal2-toast-shown .swal2-container.swal2-top-left {
  inset: 0 auto auto 0;
}
body.swal2-toast-shown .swal2-container.swal2-center-start, body.swal2-toast-shown .swal2-container.swal2-center-left {
  inset: 50% auto auto 0;
  transform: translateY(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-center {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}
body.swal2-toast-shown .swal2-container.swal2-center-end, body.swal2-toast-shown .swal2-container.swal2-center-right {
  inset: 50% 0 auto auto;
  transform: translateY(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-bottom-start, body.swal2-toast-shown .swal2-container.swal2-bottom-left {
  inset: auto auto 0 0;
}
body.swal2-toast-shown .swal2-container.swal2-bottom {
  inset: auto auto 0 50%;
  transform: translateX(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-bottom-end, body.swal2-toast-shown .swal2-container.swal2-bottom-right {
  inset: auto 0 0 auto;
}
@media print {
  body.swal2-shown:not(.swal2-no-backdrop, .swal2-toast-shown) {
    overflow-y: scroll !important;
  }
  body.swal2-shown:not(.swal2-no-backdrop, .swal2-toast-shown) > [aria-hidden=true] {
    display: none;
  }
  body.swal2-shown:not(.swal2-no-backdrop, .swal2-toast-shown) .swal2-container {
    position: static !important;
  }
}

div:where(.swal2-container) {
  display: grid;
  position: fixed;
  z-index: 1060;
  inset: 0;
  box-sizing: border-box;
  grid-template-areas: "top-start     top            top-end" "center-start  center         center-end" "bottom-start  bottom-center  bottom-end";
  grid-template-rows: minmax(min-content, auto) minmax(min-content, auto) minmax(min-content, auto);
  height: 100%;
  padding: 0.625rem;
  overflow-x: hidden;
  transition: background-color 0.1s;
  -webkit-overflow-scrolling: touch;
}
div:where(.swal2-container).swal2-backdrop-show, div:where(.swal2-container).swal2-noanimation {
  background: rgba(0, 0, 0, 0.6);
}
div:where(.swal2-container).swal2-backdrop-hide {
  background: transparent !important;
}
div:where(.swal2-container).swal2-top-start, div:where(.swal2-container).swal2-center-start, div:where(.swal2-container).swal2-bottom-start {
  grid-template-columns: minmax(0, 1fr) auto auto;
}
div:where(.swal2-container).swal2-top, div:where(.swal2-container).swal2-center, div:where(.swal2-container).swal2-bottom {
  grid-template-columns: auto minmax(0, 1fr) auto;
}
div:where(.swal2-container).swal2-top-end, div:where(.swal2-container).swal2-center-end, div:where(.swal2-container).swal2-bottom-end {
  grid-template-columns: auto auto minmax(0, 1fr);
}
div:where(.swal2-container).swal2-top-start > .swal2-popup {
  align-self: start;
}
div:where(.swal2-container).swal2-top > .swal2-popup {
  grid-column: 2;
  place-self: start center;
}
div:where(.swal2-container).swal2-top-end > .swal2-popup, div:where(.swal2-container).swal2-top-right > .swal2-popup {
  grid-column: 3;
  place-self: start end;
}
div:where(.swal2-container).swal2-center-start > .swal2-popup, div:where(.swal2-container).swal2-center-left > .swal2-popup {
  grid-row: 2;
  align-self: center;
}
div:where(.swal2-container).swal2-center > .swal2-popup {
  grid-column: 2;
  grid-row: 2;
  place-self: center center;
}
div:where(.swal2-container).swal2-center-end > .swal2-popup, div:where(.swal2-container).swal2-center-right > .swal2-popup {
  grid-column: 3;
  grid-row: 2;
  place-self: center end;
}
div:where(.swal2-container).swal2-bottom-start > .swal2-popup, div:where(.swal2-container).swal2-bottom-left > .swal2-popup {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
}
div:where(.swal2-container).swal2-bottom > .swal2-popup {
  grid-column: 2;
  grid-row: 3;
  place-self: end center;
}
div:where(.swal2-container).swal2-bottom-end > .swal2-popup, div:where(.swal2-container).swal2-bottom-right > .swal2-popup {
  grid-column: 3;
  grid-row: 3;
  place-self: end end;
}
div:where(.swal2-container).swal2-grow-row > .swal2-popup, div:where(.swal2-container).swal2-grow-fullscreen > .swal2-popup {
  grid-column: 1/4;
  width: 100%;
}
div:where(.swal2-container).swal2-grow-column > .swal2-popup, div:where(.swal2-container).swal2-grow-fullscreen > .swal2-popup {
  grid-row: 1/4;
  align-self: stretch;
}
div:where(.swal2-container).swal2-no-transition {
  transition: none !important;
}
div:where(.swal2-container)[popover] {
  width: auto;
  border: 0;
}
div:where(.swal2-container) div:where(.swal2-popup) {
  display: none;
  position: relative;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 100%);
  width: 40rem;
  max-width: 100%;
  padding: 3rem;
  border: none;
  border-radius: 1rem;
  background: #fff;
  color: #000;
  font-family: inherit;
  font-size: 1rem;
  container-name: swal2-popup;
}
div:where(.swal2-container) div:where(.swal2-popup):focus {
  outline: none;
}
div:where(.swal2-container) div:where(.swal2-popup).swal2-loading {
  overflow-y: hidden;
}
div:where(.swal2-container) div:where(.swal2-popup).swal2-draggable {
  cursor: grab;
}
div:where(.swal2-container) div:where(.swal2-popup).swal2-draggable div:where(.swal2-icon) {
  cursor: grab;
}
div:where(.swal2-container) div:where(.swal2-popup).swal2-dragging {
  cursor: grabbing;
}
div:where(.swal2-container) div:where(.swal2-popup).swal2-dragging div:where(.swal2-icon) {
  cursor: grabbing;
}
div:where(.swal2-container) h2:where(.swal2-title) {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0.8rem 1rem 0;
  color: #000;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
  cursor: initial;
}
div:where(.swal2-container) div:where(.swal2-actions) {
  display: flex;
  z-index: 1;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 1.25rem auto 0;
  padding: 0;
  border-radius: var(--swal2-actions-border-radius);
  background: var(--swal2-actions-background);
}
div:where(.swal2-container) div:where(.swal2-loader) {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin: 0 1.875rem;
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  border-width: 0.25rem;
  border-style: solid;
  border-radius: 100%;
  border-color: #2778c4 transparent #2778c4 transparent;
}
div:where(.swal2-container) button:where(.swal2-styled) {
  margin: 0.3125rem;
  padding: 0.625rem 1.1rem;
  transition: box-shadow 0.1s;
  border: none;
  box-shadow: 0 0 0 3px transparent;
  font-weight: 500;
}
div:where(.swal2-container) button:where(.swal2-styled):not([disabled]) {
  cursor: pointer;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
  border-radius: 0.25rem;
  background: initial;
  background-color: #7066e0;
  box-shadow: var(--swal2-confirm-button-box-shadow);
  color: #fff;
  font-size: 1rem;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):hover {
  background-color: color-mix(in srgb, #7066e0, var(--swal2-action-button-hover));
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):active {
  background-color: color-mix(in srgb, #7066e0, var(--swal2-action-button-active));
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny) {
  border-radius: 0.25rem;
  background: initial;
  background-color: #dc3741;
  box-shadow: var(--swal2-deny-button-box-shadow);
  color: #fff;
  font-size: 1rem;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny):hover {
  background-color: color-mix(in srgb, #dc3741, var(--swal2-action-button-hover));
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny):active {
  background-color: color-mix(in srgb, #dc3741, var(--swal2-action-button-active));
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel) {
  border-radius: 0.25rem;
  background: initial;
  background-color: #6e7881;
  box-shadow: var(--swal2-cancel-button-box-shadow);
  color: #fff;
  font-size: 1rem;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel):hover {
  background-color: color-mix(in srgb, #6e7881, var(--swal2-action-button-hover));
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel):active {
  background-color: color-mix(in srgb, #6e7881, var(--swal2-action-button-active));
}
div:where(.swal2-container) button:where(.swal2-styled):focus-visible {
  outline: none;
  box-shadow: var(--swal2-action-button-focus-box-shadow);
}
div:where(.swal2-container) button:where(.swal2-styled)[disabled]:not(.swal2-loading) {
  opacity: 0.4;
}
div:where(.swal2-container) button:where(.swal2-styled)::-moz-focus-inner {
  border: 0;
}
div:where(.swal2-container) div:where(.swal2-footer) {
  margin: 1rem 0 0;
  padding: 1rem 1rem 0;
  border-top: 1px solid #eee;
  background: var(--swal2-footer-background);
  color: inherit;
  font-size: 1rem;
  text-align: center;
  cursor: initial;
}
div:where(.swal2-container) .swal2-timer-progress-bar-container {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  grid-column: auto !important;
  overflow: hidden;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
div:where(.swal2-container) div:where(.swal2-timer-progress-bar) {
  width: 100%;
  height: 0.25em;
  background: rgba(0, 0, 0, 0.2);
}
div:where(.swal2-container) img:where(.swal2-image) {
  max-width: 100%;
  margin: 2rem auto 1rem;
  cursor: initial;
}
div:where(.swal2-container) button:where(.swal2-close) {
  position: var(--swal2-close-button-position);
  inset: var(--swal2-close-button-inset);
  z-index: 2;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: -1.2rem;
  padding: 0;
  overflow: hidden;
  transition: color 0.1s, box-shadow 0.1s;
  border: none;
  border-radius: 1rem;
  outline: var(--swal2-close-button-outline);
  background: transparent;
  color: #ccc;
  font-family: serif;
  font-size: 2.5rem;
  cursor: pointer;
  justify-self: end;
}
div:where(.swal2-container) button:where(.swal2-close):hover {
  transform: none;
  background: transparent;
  color: #F34848;
}
div:where(.swal2-container) button:where(.swal2-close):focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5);
}
div:where(.swal2-container) button:where(.swal2-close)::-moz-focus-inner {
  border: 0;
}
div:where(.swal2-container) div:where(.swal2-html-container) {
  z-index: 1;
  justify-content: center;
  margin: 1rem 1.6rem 0.3rem;
  padding: 0;
  overflow: auto;
  color: #000;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  word-wrap: break-word;
  word-break: break-word;
  cursor: initial;
}
div:where(.swal2-container) input:where(.swal2-input),
div:where(.swal2-container) input:where(.swal2-file),
div:where(.swal2-container) textarea:where(.swal2-textarea),
div:where(.swal2-container) select:where(.swal2-select),
div:where(.swal2-container) div:where(.swal2-radio),
div:where(.swal2-container) label:where(.swal2-checkbox) {
  margin: 1rem 2rem 0;
}
div:where(.swal2-container) input:where(.swal2-input),
div:where(.swal2-container) input:where(.swal2-file),
div:where(.swal2-container) textarea:where(.swal2-textarea) {
  box-sizing: border-box;
  width: auto;
  transition: border-color 0.1s, box-shadow 0.1s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875rem;
  background: inherit;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px transparent;
  color: inherit;
  font-size: 1.125rem;
}
div:where(.swal2-container) input:where(.swal2-input).swal2-inputerror,
div:where(.swal2-container) input:where(.swal2-file).swal2-inputerror,
div:where(.swal2-container) textarea:where(.swal2-textarea).swal2-inputerror {
  border-color: #F34848 !important;
  box-shadow: 0 0 2px #F34848 !important;
}
div:where(.swal2-container) input:where(.swal2-input):hover,
div:where(.swal2-container) input:where(.swal2-file):hover,
div:where(.swal2-container) textarea:where(.swal2-textarea):hover {
  box-shadow: var(--swal2-input-hover-box-shadow);
}
div:where(.swal2-container) input:where(.swal2-input):focus,
div:where(.swal2-container) input:where(.swal2-file):focus,
div:where(.swal2-container) textarea:where(.swal2-textarea):focus {
  border: 1px solid #b4dbed;
  outline: none;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(100, 150, 200, 0.5);
}
div:where(.swal2-container) input:where(.swal2-input)::-moz-placeholder, div:where(.swal2-container) input:where(.swal2-file)::-moz-placeholder, div:where(.swal2-container) textarea:where(.swal2-textarea)::-moz-placeholder {
  color: #ccc;
}
div:where(.swal2-container) input:where(.swal2-input)::placeholder,
div:where(.swal2-container) input:where(.swal2-file)::placeholder,
div:where(.swal2-container) textarea:where(.swal2-textarea)::placeholder {
  color: #ccc;
}
div:where(.swal2-container) .swal2-range {
  margin: 1rem 2rem 0;
  background: #fff;
}
div:where(.swal2-container) .swal2-range input {
  width: 80%;
}
div:where(.swal2-container) .swal2-range output {
  width: 20%;
  color: inherit;
  font-weight: 600;
  text-align: center;
}
div:where(.swal2-container) .swal2-range input,
div:where(.swal2-container) .swal2-range output {
  height: 2.625rem;
  padding: 0;
  font-size: 1.125rem;
  line-height: 2.625rem;
}
div:where(.swal2-container) .swal2-input {
  height: 2.625rem;
  padding: 0 0.75rem;
}
div:where(.swal2-container) .swal2-file {
  width: 75%;
  margin-right: auto;
  margin-left: auto;
  background: inherit;
  font-size: 1.125rem;
}
div:where(.swal2-container) .swal2-textarea {
  height: 6.75rem;
  padding: 0.75rem;
}
div:where(.swal2-container) .swal2-select {
  min-width: 50%;
  max-width: 100%;
  padding: 0.375em 0.625em;
  background: inherit;
  color: inherit;
  font-size: 1.125rem;
}
div:where(.swal2-container) .swal2-radio,
div:where(.swal2-container) .swal2-checkbox {
  align-items: center;
  justify-content: center;
  background: #fff;
  color: inherit;
}
div:where(.swal2-container) .swal2-radio label,
div:where(.swal2-container) .swal2-checkbox label {
  margin: 0 0.6em;
  font-size: 1.125rem;
}
div:where(.swal2-container) .swal2-radio input,
div:where(.swal2-container) .swal2-checkbox input {
  flex-shrink: 0;
  margin: 0 0.4em;
}
div:where(.swal2-container) label:where(.swal2-input-label) {
  display: flex;
  justify-content: center;
  margin: 1rem auto 0;
}
div:where(.swal2-container) div:where(.swal2-validation-message) {
  align-items: center;
  justify-content: center;
  margin: 1rem 0 0;
  padding: 0.625rem;
  overflow: hidden;
  background: #f0f0f0;
  color: #666666;
  font-size: 1rem;
  font-weight: 300;
}
div:where(.swal2-container) div:where(.swal2-validation-message)::before {
  content: "!";
  display: inline-block;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  margin: 0 0.625em;
  border-radius: 50%;
  background-color: #F34848;
  color: #fff;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
}
div:where(.swal2-container) .swal2-progress-steps {
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
  margin: 1.25rem auto;
  padding: 0;
  background: inherit;
  font-weight: 600;
}
div:where(.swal2-container) .swal2-progress-steps li {
  display: inline-block;
  position: relative;
}
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step {
  z-index: 20;
  flex-shrink: 0;
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: #2778c4;
  color: #fff;
  line-height: 2em;
  text-align: center;
}
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
  background: #2778c4;
}
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
  background: #add8e6;
  color: #fff;
}
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
  background: #add8e6;
}
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step-line {
  z-index: 10;
  flex-shrink: 0;
  width: 2.5rem;
  height: 0.4em;
  margin: 0 -1px;
  background: #2778c4;
}

div:where(.swal2-icon) {
  position: relative;
  box-sizing: content-box;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 0rem auto 1rem;
  zoom: var(--swal2-icon-zoom);
  border: 0.25em solid transparent;
  border-radius: 50%;
  border-color: #000;
  font-family: inherit;
  line-height: 5em;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
div:where(.swal2-icon) .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 3.75rem;
}
div:where(.swal2-icon).swal2-error {
  border-color: #F34848;
  color: #F34848;
}
div:where(.swal2-icon).swal2-error .swal2-x-mark {
  position: relative;
  flex-grow: 1;
}
div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #F34848;
}
div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 1.0625em;
  transform: rotate(45deg);
}
div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 1em;
  transform: rotate(-45deg);
}
@container swal2-popup style(--swal2-icon-animations:true) {
  div:where(.swal2-icon).swal2-error.swal2-icon-show {
    animation: swal2-animate-error-icon 0.5s;
  }
  div:where(.swal2-icon).swal2-error.swal2-icon-show .swal2-x-mark {
    animation: swal2-animate-error-x-mark 0.5s;
  }
}
div:where(.swal2-icon).swal2-warning {
  border-color: #FABE4B;
  color: #FABE4B;
}
@container swal2-popup style(--swal2-icon-animations:true) {
  div:where(.swal2-icon).swal2-warning.swal2-icon-show {
    animation: swal2-animate-error-icon 0.5s;
  }
  div:where(.swal2-icon).swal2-warning.swal2-icon-show .swal2-icon-content {
    animation: swal2-animate-i-mark 0.5s;
  }
}
div:where(.swal2-icon).swal2-info {
  border-color: #D6EBFB;
  color: #D6EBFB;
}
@container swal2-popup style(--swal2-icon-animations:true) {
  div:where(.swal2-icon).swal2-info.swal2-icon-show {
    animation: swal2-animate-error-icon 0.5s;
  }
  div:where(.swal2-icon).swal2-info.swal2-icon-show .swal2-icon-content {
    animation: swal2-animate-i-mark 0.8s;
  }
}
div:where(.swal2-icon).swal2-question {
  border-color: #DBDBDB;
  color: #DBDBDB;
}
@container swal2-popup style(--swal2-icon-animations:true) {
  div:where(.swal2-icon).swal2-question.swal2-icon-show {
    animation: swal2-animate-error-icon 0.5s;
  }
  div:where(.swal2-icon).swal2-question.swal2-icon-show .swal2-icon-content {
    animation: swal2-animate-question-mark 0.8s;
  }
}
div:where(.swal2-icon).swal2-success {
  border-color: #21B558;
  color: #21B558;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  border-radius: 50%;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.4375em;
  left: -2.0635em;
  transform: rotate(-45deg);
  transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.6875em;
  left: 1.875em;
  transform: rotate(-45deg);
  transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0;
}
div:where(.swal2-icon).swal2-success .swal2-success-ring {
  position: absolute;
  z-index: 2;
  top: -0.25em;
  left: -0.25em;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  border: 0.25em solid rgba(33, 181, 88, 0.3);
  border-radius: 50%;
}
div:where(.swal2-icon).swal2-success .swal2-success-fix {
  position: absolute;
  z-index: 1;
  top: 0.5em;
  left: 1.625em;
  width: 0.4375em;
  height: 5.625em;
  transform: rotate(-45deg);
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
  display: block;
  position: absolute;
  z-index: 2;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #21B558;
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=tip] {
  top: 2.875em;
  left: 0.8125em;
  width: 1.5625em;
  transform: rotate(45deg);
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=long] {
  top: 2.375em;
  right: 0.5em;
  width: 2.9375em;
  transform: rotate(-45deg);
}
@container swal2-popup style(--swal2-icon-animations:true) {
  div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-tip {
    animation: swal2-animate-success-line-tip 0.75s;
  }
  div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-long {
    animation: swal2-animate-success-line-long 0.75s;
  }
  div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-circular-line-right {
    animation: swal2-rotate-success-circular-line 4.25s ease-in;
  }
}

[class^=swal2] {
  -webkit-tap-highlight-color: transparent;
}

.swal2-show {
  animation: swal2-show 0.3s;
}

.swal2-hide {
  animation: swal2-hide 0.15s forwards;
}

.swal2-noanimation {
  transition: none;
}

.swal2-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.swal2-rtl .swal2-close {
  margin-right: initial;
  margin-left: 0;
}
.swal2-rtl .swal2-timer-progress-bar {
  right: 0;
  left: auto;
}

.swal2-toast {
  box-sizing: border-box;
  grid-column: 1/4 !important;
  grid-row: 1/4 !important;
  grid-template-columns: min-content auto min-content;
  padding: 1rem;
  overflow-y: hidden;
  border: none;
  background: #fff;
  box-shadow: 0 0 1px hsla(0, 0%, 0%, 0.075), 0 1px 2px hsla(0, 0%, 0%, 0.075), 1px 2px 4px hsla(0, 0%, 0%, 0.075), 1px 3px 8px hsla(0, 0%, 0%, 0.075), 2px 4px 16px hsla(0, 0%, 0%, 0.075);
  pointer-events: all;
}
.swal2-toast > * {
  grid-column: 2;
}
.swal2-toast h2:where(.swal2-title) {
  margin: 0.5rem 1rem;
  padding: 0;
  font-size: 1rem;
  text-align: initial;
}
.swal2-toast .swal2-loading {
  justify-content: center;
}
.swal2-toast input:where(.swal2-input) {
  height: 2rem;
  margin: 0.5rem;
  font-size: 1rem;
}
.swal2-toast .swal2-validation-message {
  font-size: 1rem;
}
.swal2-toast div:where(.swal2-footer) {
  margin: 0.5rem 0 0;
  padding: 0.5rem 0 0;
  font-size: 0.8rem;
}
.swal2-toast button:where(.swal2-close) {
  grid-column: 3/3;
  grid-row: 1/99;
  align-self: center;
  width: 0.8rem;
  height: 0.8rem;
  margin: 0;
  font-size: 2rem;
}
.swal2-toast div:where(.swal2-html-container) {
  margin: 0.5rem 1rem;
  padding: 0;
  overflow: initial;
  font-size: 1rem;
  text-align: initial;
}
.swal2-toast div:where(.swal2-html-container):empty {
  padding: 0;
}
.swal2-toast .swal2-loader {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  height: 2em;
  margin: 0.25em;
}
.swal2-toast .swal2-icon {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  min-width: 2em;
  height: 2em;
  margin: 0 0.5em 0 0;
}
.swal2-toast .swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
}
.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}
.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  top: 0.875em;
  width: 1.375em;
}
.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 0.3125em;
}
.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 0.3125em;
}
.swal2-toast div:where(.swal2-actions) {
  justify-content: flex-start;
  height: auto;
  margin: 0;
  margin-top: 0.5em;
  padding: 0 0.5em;
}
.swal2-toast button:where(.swal2-styled) {
  margin: 0.25em 0.5em;
  padding: 0.4em 0.6em;
  font-size: 1rem;
}
.swal2-toast .swal2-success {
  border-color: #21B558;
}
.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 1.6em;
  height: 3em;
  border-radius: 50%;
}
.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.8em;
  left: -0.5em;
  transform: rotate(-45deg);
  transform-origin: 2em 2em;
  border-radius: 4em 0 0 4em;
}
.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.25em;
  left: 0.9375em;
  transform-origin: 0 1.5em;
  border-radius: 0 4em 4em 0;
}
.swal2-toast .swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}
.swal2-toast .swal2-success .swal2-success-fix {
  top: 0;
  left: 0.4375em;
  width: 0.4375em;
  height: 2.6875em;
}
.swal2-toast .swal2-success [class^=swal2-success-line] {
  height: 0.3125em;
}
.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
  top: 1.125em;
  left: 0.1875em;
  width: 0.75em;
}
.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
  top: 0.9375em;
  right: 0.1875em;
  width: 1.375em;
}
@container swal2-popup style(--swal2-icon-animations:true) {
  .swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
    animation: swal2-toast-animate-success-line-tip 0.75s;
  }
  .swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
    animation: swal2-toast-animate-success-line-long 0.75s;
  }
}
.swal2-toast.swal2-show {
  animation: swal2-toast-show 0.5s;
}
.swal2-toast.swal2-hide {
  animation: swal2-toast-hide 0.1s forwards;
}

@keyframes swal2-show {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes swal2-hide {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: 0.8125em;
    width: 1.5625em;
  }
}
@keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}
@keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -0.375em;
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes swal2-animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes swal2-rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes swal2-animate-question-mark {
  0% {
    transform: rotateY(-360deg);
  }
  100% {
    transform: rotateY(0);
  }
}
@keyframes swal2-animate-i-mark {
  0% {
    transform: rotateZ(45deg);
    opacity: 0;
  }
  25% {
    transform: rotateZ(-25deg);
    opacity: 0.4;
  }
  50% {
    transform: rotateZ(15deg);
    opacity: 0.8;
  }
  75% {
    transform: rotateZ(-5deg);
    opacity: 1;
  }
  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}
@keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotateZ(2deg);
  }
  33% {
    transform: translateY(0) rotateZ(-2deg);
  }
  66% {
    transform: translateY(0.3125em) rotateZ(2deg);
  }
  100% {
    transform: translateY(0) rotateZ(0deg);
  }
}
@keyframes swal2-toast-hide {
  100% {
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }
  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}
@keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }
  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}
/** Light color-scheme **/
:root {
  --cc-bg: #ededed;
  --cc-text: #000;
  --cc-btn-primary-bg: transparent;
  --cc-btn-primary-text: var(--cc-text);
  --cc-btn-primary-hover-bg: #000;
  --cc-btn-primary-hover-text: #fff;
  --cc-btn-secondary-bg: transparent;
  --cc-btn-secondary-text: var(--cc-text);
  --cc-btn-secondary-hover-bg: #000;
  --cc-btn-secondary-hover-text: #fff;
  --cc-toggle-bg-off: #ccc;
  --cc-toggle-bg-on: #000;
  --cc-toggle-bg-readonly: #000;
  --cc-toggle-knob-bg: #fff;
  --cc-toggle-knob-icon-color: #ecf2fa;
  --cc-block-text: var(--cc-text);
  --cc-cookie-category-block-bg: #e5e5e5;
  --cc-cookie-category-block-bg-hover: #e5e5e5;
  --cc-section-border: #f1f3f5;
  --cc-cookie-table-border: #e9edf2;
  --cc-overlay-bg: rgba(0, 0, 0, .6);
  --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-secondary-bg: #33383c;
  --cc-btn-secondary-text: var(--cc-text);
  --cc-btn-secondary-hover-bg: #3e454a;
  --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_div *,
.cc_div *:hover,
.cc_div :before,
.cc_div :after {
  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: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #000;
}

.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: 0.35em;
}

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

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

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

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

.c--anim #cm.bar.slide + #cm-ov,
.c--anim .bar.slide + #cs-ov {
  transition: visibility 0.4s ease, opacity 0.4s ease, transform 0.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: 1 !important;
}

#cm {
  font-family: inherit;
  padding: 2.5rem;
  position: fixed;
  z-index: 1;
  background: #fff;
  background: var(--cc-bg);
  max-width: 24.2em;
  width: 100%;
  bottom: 1.25em;
  right: 1.25em;
  border-radius: 2.25rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  line-height: initial;
}

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

#c-ttl {
  margin-bottom: 0.7em;
  font-size: 1.8rem;
  font-family: "hellix-bold";
}

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

#c-txt {
  line-height: 1.5;
  font-family: "hellix-regular";
  font-size: 1.6rem;
  font-weight: 400;
}

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

.cc_div .c-bn {
  color: #40505a;
  color: var(--cc-btn-secondary-text);
  background: #e5ebef;
  background: var(--cc-btn-secondary-bg);
  padding: 0.9rem 1.6rem;
  display: inline-block;
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.7px;
  font-family: "hellix-regular";
  font-size: 1.3rem;
  -moz-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  text-align: center;
  border-radius: 3rem;
  flex: 1;
}

#c-bns button + button,
#s-cnt button + button,
#s-c-bn {
  float: right;
  margin-left: 1em;
}

#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 {
  background: #d8e0e6;
  background: var(--cc-btn-secondary-hover-bg);
  color: var(--cc-btn-secondary-hover-text);
}

#s-c-bn:active,
#s-c-bn:hover {
  color: #ccc;
}

/**
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;
}

#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: 0.95em;
  width: 100%;
  position: relative;
  padding: 1.3em 6.4em 1.3em 2.7em;
  background: none;
  transition: background-color 0.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: #e9eff4;
    background: var(--cc-cookie-category-block-bg-hover);
}
*/
#s-bl .b-bn {
  position: relative;
}

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

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

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

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

#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: #fff;
  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: 0.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: 0.85em;
  color: #2d4156;
  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(0.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, 0.26) 0px 13px 27px -5px;
}

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

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

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

#s-cnt #s-all-bn,
#s-cnt #s-rall-bn,
#s-cnt button + button {
  padding: 0.9rem 1.6rem !important;
}
#s-cnt #s-all-bn:focus, #s-cnt #s-all-bn:hover,
#s-cnt #s-rall-bn:focus,
#s-cnt #s-rall-bn:hover,
#s-cnt button + button:focus,
#s-cnt button + button:hover {
  color: #fff;
}

.cc_div .cc-link,
#s-cnt #s-all-bn,
#s-cnt #s-rall-bn,
#s-cnt button + button {
  color: #000;
  border-color: #000;
  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-txt .cc-link {
  display: block;
  margin-top: 1rem;
}

/*
#c-bns button:first-child,
#s-bns button:first-child{
    color: #fff;
    color: var(--cc-btn-primary-text);
    background: #253b48;
    background: var(--cc-btn-primary-bg);
}
*/
#c-bns.swap button:first-child,
#c-bns.swap button:last-child {
  color: #40505a;
  color: var(--cc-btn-secondary-text);
  background: #e5ebef;
  background: var(--cc-btn-secondary-bg);
  border-color: #000;
}

/*
#c-bns.swap button:last-child{
    color: #fff;
    color: var(--cc-btn-primary-text);
    background: #253b48;
    background: var(--cc-btn-primary-bg);
}
*/
.cc_div .b-tg .c-tgl:checked ~ .c-tg {
  background: #253b48;
  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: #1d2e38;
  background: var(--cc-btn-primary-hover-bg);
}

#c-bns.swap button:first-child:active,
#c-bns.swap button:first-child:hover,
#c-bns.swap button:last-child:active,
#c-bns.swap button:last-child:hover {
  background: #d8e0e6;
  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 #f1f3f5;
  border-color: 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;
  outline: 0 !important;
}

#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.25em;
  overflow-y: auto;
  margin-top: 1.25em;
}

#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: 0.9em;
    height: 100%;
    background: transparent;
    border-radius: 0 0.25em 0.25em 0;
  }
  #s-bl::-webkit-scrollbar-thumb {
    border: 0.25em solid var(--cc-bg);
    background: #cfd5db;
    background: var(--cc-webkit-scrollbar-bg);
    border-radius: 100em;
  }
  #s-bl::-webkit-scrollbar-thumb:hover {
    background: #9199a0;
    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;
  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: #919ea6;
  background: var(--cc-toggle-bg-off);
  transition: background-color 0.25s ease, box-shadow 0.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: #d5dee2;
  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: #fff;
  background: var(--cc-toggle-knob-bg);
  box-shadow: 0 1px 2px rgba(24, 32, 35, 0.36);
  transition: transform 0.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 0.25s ease;
}

#s-bl tbody tr:hover {
  background: #e9eff4;
  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 td,
#s-bl th {
  padding: 0.85rem 0.5rem 0.15rem 0.5rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.8em;
  padding-left: 1.2em;
}

#s-bl td:first-child,
#s-bl th:first-child {
  padding-top: 1.25rem;
}

#s-bl td:last-child,
#s-bl th:last-child {
  padding-bottom: 1.25rem;
}

#s-bl th {
  font-family: inherit;
  padding: 1.2em 1.2em;
}

#s-bl thead tr:first-child {
  border-bottom: 1px solid #e9edf2;
  border-color: 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: rgba(4, 6, 8, 0.85);
  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 0.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 #2d4156;
  border-color: var(--cc-btn-secondary-text);
  border-width: 0 2px 2px 0;
  padding: 0.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 #fff;
  border-color: var(--cc-toggle-knob-icon-color);
  border-width: 0 2px 2px 0;
  padding: 0.1em;
  display: inline-block;
  padding-bottom: 0.45em;
  content: "";
  margin: 0 auto;
  transform: rotate(45deg);
  top: 0.37em;
  left: 0.75em;
  position: absolute;
}

#s-c-bn::before,
#s-c-bn::after {
  content: "";
  position: absolute;
  left: 0.82em;
  top: 0.58em;
  height: 0.6em;
  width: 1.5px;
  background: #444d53;
  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 0.15s ease;
}

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

.cc_div .off-i::before,
.cc_div .off-i::after {
  right: 0.8em;
  top: 0.42em;
  content: " ";
  height: 0.7em;
  width: 0.09375em;
  display: block;
  background: #cdd6dc;
  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(0.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.3em 2em;
  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: 0.625em 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.6em;
  padding-right: 1.6em;
}

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

/* 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 #ccc;
}

.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: 1em;
  padding-right: 0.625em;
  white-space: nowrap;
  content: attr(data-column);
  color: #000;
  color: var(--cc-text);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* End bar layout */
/* Positions */
#cm.top {
  bottom: auto;
  top: 1.25em;
}

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

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

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

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

/* end positions */
@media screen and (max-width: 688px) {
  #cm,
  #cm.cloud,
  #cm.left,
  #cm.right {
    width: auto;
    max-width: 100%;
    margin: 0;
    padding: 1.4em !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: 0.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.3em;
  }
  #s-hdr,
  .cc_div .bar #s-hdr {
    padding: 0 1.3em;
  }
  /** 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: 0.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;
  }
  /* 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 #e3e7ed;
    border-color: 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: 1em;
    padding-right: 0.625em;
    white-space: nowrap;
    content: attr(data-column);
    color: #000;
    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: 0.9em;
  }
  .cc_div .cloud #c-bns {
    margin-top: 1.625em;
  }
}
/* Begin IE fixes */
.cc_div.ie #c-vln {
  height: 100%;
  padding-top: 5.62em;
}

.cc_div.ie .bar #c-vln {
  padding-top: 0;
}

.cc_div.ie #cs {
  max-height: 37.5em;
  position: relative;
  top: 0;
  margin-top: -5.625em;
}

.cc_div.ie .bar #cs {
  margin-top: 0;
  max-height: 100%;
}

.cc_div.ie #cm {
  border: 1px solid #dee6e9;
}

.cc_div.ie #c-s-in {
  top: 0;
}

.cc_div.ie .b-tg {
  padding-left: 1em;
  margin-bottom: 0.7em;
}

.cc_div.ie .b-tg .c-tgl:checked ~ .c-tg:after {
  left: 1.95em;
}

.cc_div.ie #s-bl table {
  overflow: auto;
}

.cc_div.ie .b-tg .c-tg {
  display: none;
}

.cc_div.ie .b-tg .c-tgl {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.2em;
  height: auto;
}

.cc_div.ie #s-cnt .b-bn .b-tl {
  padding: 1.3em 6.4em 1.3em 1.4em;
}

.cc_div.ie .bar #s-bl td:before {
  display: none;
}

.cc_div.ie .bar #s-bl td {
  padding: 0.8em 0.625em 0.8em 1.2em;
}

.cc_div.ie .bar #s-bl thead tr {
  position: relative;
}

.cc_div.ie .b-tg .t-lb {
  filter: alpha(opacity=0);
}

.cc_div.ie #cm-ov,
.cc_div.ie #cs-ov {
  filter: alpha(opacity=80);
}

.cc-id-number,
.cc-date {
  font-family: "hellix-bold" !important;
}

.cc-id-text,
.cc-date-text {
  display: none;
}

.cc-id-text {
  margin-bottom: 0.5rem !important;
}

.cc-date-text {
  margin-bottom: 1.5rem !important;
}

/** END IE FIXES **/
/* Utilities */
.bg-nav {
  background-color: #F8F8F8 !important;
}

a.bg-nav:hover, a.bg-nav:focus,
button.bg-nav:hover,
button.bg-nav:focus {
  background-color: #dfdfdf !important;
}

.fs-10 {
  font-size: 1rem !important;
}

.fs-11 {
  font-size: 1.1rem !important;
}

.fs-12 {
  font-size: 1.2rem !important;
}

.fs-13 {
  font-size: 1.3rem !important;
}

.fs-14 {
  font-size: 1.4rem !important;
}

.fs-15 {
  font-size: 1.5rem !important;
}

.fs-16 {
  font-size: 1.6rem !important;
}

.fs-17 {
  font-size: 1.7rem !important;
}

.fs-18 {
  font-size: 1.8rem !important;
}

.fs-19 {
  font-size: 1.9rem !important;
}

.fs-20 {
  font-size: 2rem !important;
}

.fs-21 {
  font-size: 2.1rem !important;
}

.fs-22 {
  font-size: 2.2rem !important;
}

.fs-23 {
  font-size: 2.3rem !important;
}

.fs-24 {
  font-size: 2.4rem !important;
}

.fs-25 {
  font-size: 2.5rem !important;
}

.fs-26 {
  font-size: 2.6rem !important;
}

.fs-27 {
  font-size: 2.7rem !important;
}

.fs-28 {
  font-size: 2.8rem !important;
}

.fs-29 {
  font-size: 2.9rem !important;
}

.fs-30 {
  font-size: 3rem !important;
}

.fs-31 {
  font-size: 3.1rem !important;
}

.fs-32 {
  font-size: 3.2rem !important;
}

.fs-33 {
  font-size: 3.3rem !important;
}

.fs-34 {
  font-size: 3.4rem !important;
}

.fs-35 {
  font-size: 3.5rem !important;
}

.fs-36 {
  font-size: 3.6rem !important;
}

.fs-37 {
  font-size: 3.7rem !important;
}

.fs-38 {
  font-size: 3.8rem !important;
}

.fs-39 {
  font-size: 3.9rem !important;
}

.fs-40 {
  font-size: 4rem !important;
}

.fs-41 {
  font-size: 4.1rem !important;
}

.fs-42 {
  font-size: 4.2rem !important;
}

.fs-43 {
  font-size: 4.3rem !important;
}

.fs-44 {
  font-size: 4.4rem !important;
}

.fs-45 {
  font-size: 4.5rem !important;
}

.fs-46 {
  font-size: 4.6rem !important;
}

.fs-47 {
  font-size: 4.7rem !important;
}

.fs-48 {
  font-size: 4.8rem !important;
}

.fs-49 {
  font-size: 4.9rem !important;
}

.fs-50 {
  font-size: 5rem !important;
}

@media (min-width: 576px) {
  .fs-sm-10 {
    font-size: 1rem !important;
  }
  .fs-sm-11 {
    font-size: 1.1rem !important;
  }
  .fs-sm-12 {
    font-size: 1.2rem !important;
  }
  .fs-sm-13 {
    font-size: 1.3rem !important;
  }
  .fs-sm-14 {
    font-size: 1.4rem !important;
  }
  .fs-sm-15 {
    font-size: 1.5rem !important;
  }
  .fs-sm-16 {
    font-size: 1.6rem !important;
  }
  .fs-sm-17 {
    font-size: 1.7rem !important;
  }
  .fs-sm-18 {
    font-size: 1.8rem !important;
  }
  .fs-sm-19 {
    font-size: 1.9rem !important;
  }
  .fs-sm-20 {
    font-size: 2rem !important;
  }
  .fs-sm-21 {
    font-size: 2.1rem !important;
  }
  .fs-sm-22 {
    font-size: 2.2rem !important;
  }
  .fs-sm-23 {
    font-size: 2.3rem !important;
  }
  .fs-sm-24 {
    font-size: 2.4rem !important;
  }
  .fs-sm-25 {
    font-size: 2.5rem !important;
  }
  .fs-sm-26 {
    font-size: 2.6rem !important;
  }
  .fs-sm-27 {
    font-size: 2.7rem !important;
  }
  .fs-sm-28 {
    font-size: 2.8rem !important;
  }
  .fs-sm-29 {
    font-size: 2.9rem !important;
  }
  .fs-sm-30 {
    font-size: 3rem !important;
  }
  .fs-sm-31 {
    font-size: 3.1rem !important;
  }
  .fs-sm-32 {
    font-size: 3.2rem !important;
  }
  .fs-sm-33 {
    font-size: 3.3rem !important;
  }
  .fs-sm-34 {
    font-size: 3.4rem !important;
  }
  .fs-sm-35 {
    font-size: 3.5rem !important;
  }
  .fs-sm-36 {
    font-size: 3.6rem !important;
  }
  .fs-sm-37 {
    font-size: 3.7rem !important;
  }
  .fs-sm-38 {
    font-size: 3.8rem !important;
  }
  .fs-sm-39 {
    font-size: 3.9rem !important;
  }
  .fs-sm-40 {
    font-size: 4rem !important;
  }
  .fs-sm-41 {
    font-size: 4.1rem !important;
  }
  .fs-sm-42 {
    font-size: 4.2rem !important;
  }
  .fs-sm-43 {
    font-size: 4.3rem !important;
  }
  .fs-sm-44 {
    font-size: 4.4rem !important;
  }
  .fs-sm-45 {
    font-size: 4.5rem !important;
  }
  .fs-sm-46 {
    font-size: 4.6rem !important;
  }
  .fs-sm-47 {
    font-size: 4.7rem !important;
  }
  .fs-sm-48 {
    font-size: 4.8rem !important;
  }
  .fs-sm-49 {
    font-size: 4.9rem !important;
  }
  .fs-sm-50 {
    font-size: 5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-10 {
    font-size: 1rem !important;
  }
  .fs-md-11 {
    font-size: 1.1rem !important;
  }
  .fs-md-12 {
    font-size: 1.2rem !important;
  }
  .fs-md-13 {
    font-size: 1.3rem !important;
  }
  .fs-md-14 {
    font-size: 1.4rem !important;
  }
  .fs-md-15 {
    font-size: 1.5rem !important;
  }
  .fs-md-16 {
    font-size: 1.6rem !important;
  }
  .fs-md-17 {
    font-size: 1.7rem !important;
  }
  .fs-md-18 {
    font-size: 1.8rem !important;
  }
  .fs-md-19 {
    font-size: 1.9rem !important;
  }
  .fs-md-20 {
    font-size: 2rem !important;
  }
  .fs-md-21 {
    font-size: 2.1rem !important;
  }
  .fs-md-22 {
    font-size: 2.2rem !important;
  }
  .fs-md-23 {
    font-size: 2.3rem !important;
  }
  .fs-md-24 {
    font-size: 2.4rem !important;
  }
  .fs-md-25 {
    font-size: 2.5rem !important;
  }
  .fs-md-26 {
    font-size: 2.6rem !important;
  }
  .fs-md-27 {
    font-size: 2.7rem !important;
  }
  .fs-md-28 {
    font-size: 2.8rem !important;
  }
  .fs-md-29 {
    font-size: 2.9rem !important;
  }
  .fs-md-30 {
    font-size: 3rem !important;
  }
  .fs-md-31 {
    font-size: 3.1rem !important;
  }
  .fs-md-32 {
    font-size: 3.2rem !important;
  }
  .fs-md-33 {
    font-size: 3.3rem !important;
  }
  .fs-md-34 {
    font-size: 3.4rem !important;
  }
  .fs-md-35 {
    font-size: 3.5rem !important;
  }
  .fs-md-36 {
    font-size: 3.6rem !important;
  }
  .fs-md-37 {
    font-size: 3.7rem !important;
  }
  .fs-md-38 {
    font-size: 3.8rem !important;
  }
  .fs-md-39 {
    font-size: 3.9rem !important;
  }
  .fs-md-40 {
    font-size: 4rem !important;
  }
  .fs-md-41 {
    font-size: 4.1rem !important;
  }
  .fs-md-42 {
    font-size: 4.2rem !important;
  }
  .fs-md-43 {
    font-size: 4.3rem !important;
  }
  .fs-md-44 {
    font-size: 4.4rem !important;
  }
  .fs-md-45 {
    font-size: 4.5rem !important;
  }
  .fs-md-46 {
    font-size: 4.6rem !important;
  }
  .fs-md-47 {
    font-size: 4.7rem !important;
  }
  .fs-md-48 {
    font-size: 4.8rem !important;
  }
  .fs-md-49 {
    font-size: 4.9rem !important;
  }
  .fs-md-50 {
    font-size: 5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-10 {
    font-size: 1rem !important;
  }
  .fs-lg-11 {
    font-size: 1.1rem !important;
  }
  .fs-lg-12 {
    font-size: 1.2rem !important;
  }
  .fs-lg-13 {
    font-size: 1.3rem !important;
  }
  .fs-lg-14 {
    font-size: 1.4rem !important;
  }
  .fs-lg-15 {
    font-size: 1.5rem !important;
  }
  .fs-lg-16 {
    font-size: 1.6rem !important;
  }
  .fs-lg-17 {
    font-size: 1.7rem !important;
  }
  .fs-lg-18 {
    font-size: 1.8rem !important;
  }
  .fs-lg-19 {
    font-size: 1.9rem !important;
  }
  .fs-lg-20 {
    font-size: 2rem !important;
  }
  .fs-lg-21 {
    font-size: 2.1rem !important;
  }
  .fs-lg-22 {
    font-size: 2.2rem !important;
  }
  .fs-lg-23 {
    font-size: 2.3rem !important;
  }
  .fs-lg-24 {
    font-size: 2.4rem !important;
  }
  .fs-lg-25 {
    font-size: 2.5rem !important;
  }
  .fs-lg-26 {
    font-size: 2.6rem !important;
  }
  .fs-lg-27 {
    font-size: 2.7rem !important;
  }
  .fs-lg-28 {
    font-size: 2.8rem !important;
  }
  .fs-lg-29 {
    font-size: 2.9rem !important;
  }
  .fs-lg-30 {
    font-size: 3rem !important;
  }
  .fs-lg-31 {
    font-size: 3.1rem !important;
  }
  .fs-lg-32 {
    font-size: 3.2rem !important;
  }
  .fs-lg-33 {
    font-size: 3.3rem !important;
  }
  .fs-lg-34 {
    font-size: 3.4rem !important;
  }
  .fs-lg-35 {
    font-size: 3.5rem !important;
  }
  .fs-lg-36 {
    font-size: 3.6rem !important;
  }
  .fs-lg-37 {
    font-size: 3.7rem !important;
  }
  .fs-lg-38 {
    font-size: 3.8rem !important;
  }
  .fs-lg-39 {
    font-size: 3.9rem !important;
  }
  .fs-lg-40 {
    font-size: 4rem !important;
  }
  .fs-lg-41 {
    font-size: 4.1rem !important;
  }
  .fs-lg-42 {
    font-size: 4.2rem !important;
  }
  .fs-lg-43 {
    font-size: 4.3rem !important;
  }
  .fs-lg-44 {
    font-size: 4.4rem !important;
  }
  .fs-lg-45 {
    font-size: 4.5rem !important;
  }
  .fs-lg-46 {
    font-size: 4.6rem !important;
  }
  .fs-lg-47 {
    font-size: 4.7rem !important;
  }
  .fs-lg-48 {
    font-size: 4.8rem !important;
  }
  .fs-lg-49 {
    font-size: 4.9rem !important;
  }
  .fs-lg-50 {
    font-size: 5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-10 {
    font-size: 1rem !important;
  }
  .fs-xl-11 {
    font-size: 1.1rem !important;
  }
  .fs-xl-12 {
    font-size: 1.2rem !important;
  }
  .fs-xl-13 {
    font-size: 1.3rem !important;
  }
  .fs-xl-14 {
    font-size: 1.4rem !important;
  }
  .fs-xl-15 {
    font-size: 1.5rem !important;
  }
  .fs-xl-16 {
    font-size: 1.6rem !important;
  }
  .fs-xl-17 {
    font-size: 1.7rem !important;
  }
  .fs-xl-18 {
    font-size: 1.8rem !important;
  }
  .fs-xl-19 {
    font-size: 1.9rem !important;
  }
  .fs-xl-20 {
    font-size: 2rem !important;
  }
  .fs-xl-21 {
    font-size: 2.1rem !important;
  }
  .fs-xl-22 {
    font-size: 2.2rem !important;
  }
  .fs-xl-23 {
    font-size: 2.3rem !important;
  }
  .fs-xl-24 {
    font-size: 2.4rem !important;
  }
  .fs-xl-25 {
    font-size: 2.5rem !important;
  }
  .fs-xl-26 {
    font-size: 2.6rem !important;
  }
  .fs-xl-27 {
    font-size: 2.7rem !important;
  }
  .fs-xl-28 {
    font-size: 2.8rem !important;
  }
  .fs-xl-29 {
    font-size: 2.9rem !important;
  }
  .fs-xl-30 {
    font-size: 3rem !important;
  }
  .fs-xl-31 {
    font-size: 3.1rem !important;
  }
  .fs-xl-32 {
    font-size: 3.2rem !important;
  }
  .fs-xl-33 {
    font-size: 3.3rem !important;
  }
  .fs-xl-34 {
    font-size: 3.4rem !important;
  }
  .fs-xl-35 {
    font-size: 3.5rem !important;
  }
  .fs-xl-36 {
    font-size: 3.6rem !important;
  }
  .fs-xl-37 {
    font-size: 3.7rem !important;
  }
  .fs-xl-38 {
    font-size: 3.8rem !important;
  }
  .fs-xl-39 {
    font-size: 3.9rem !important;
  }
  .fs-xl-40 {
    font-size: 4rem !important;
  }
  .fs-xl-41 {
    font-size: 4.1rem !important;
  }
  .fs-xl-42 {
    font-size: 4.2rem !important;
  }
  .fs-xl-43 {
    font-size: 4.3rem !important;
  }
  .fs-xl-44 {
    font-size: 4.4rem !important;
  }
  .fs-xl-45 {
    font-size: 4.5rem !important;
  }
  .fs-xl-46 {
    font-size: 4.6rem !important;
  }
  .fs-xl-47 {
    font-size: 4.7rem !important;
  }
  .fs-xl-48 {
    font-size: 4.8rem !important;
  }
  .fs-xl-49 {
    font-size: 4.9rem !important;
  }
  .fs-xl-50 {
    font-size: 5rem !important;
  }
}
@media (min-width: 1600px) {
  .fs-xxl-10 {
    font-size: 1rem !important;
  }
  .fs-xxl-11 {
    font-size: 1.1rem !important;
  }
  .fs-xxl-12 {
    font-size: 1.2rem !important;
  }
  .fs-xxl-13 {
    font-size: 1.3rem !important;
  }
  .fs-xxl-14 {
    font-size: 1.4rem !important;
  }
  .fs-xxl-15 {
    font-size: 1.5rem !important;
  }
  .fs-xxl-16 {
    font-size: 1.6rem !important;
  }
  .fs-xxl-17 {
    font-size: 1.7rem !important;
  }
  .fs-xxl-18 {
    font-size: 1.8rem !important;
  }
  .fs-xxl-19 {
    font-size: 1.9rem !important;
  }
  .fs-xxl-20 {
    font-size: 2rem !important;
  }
  .fs-xxl-21 {
    font-size: 2.1rem !important;
  }
  .fs-xxl-22 {
    font-size: 2.2rem !important;
  }
  .fs-xxl-23 {
    font-size: 2.3rem !important;
  }
  .fs-xxl-24 {
    font-size: 2.4rem !important;
  }
  .fs-xxl-25 {
    font-size: 2.5rem !important;
  }
  .fs-xxl-26 {
    font-size: 2.6rem !important;
  }
  .fs-xxl-27 {
    font-size: 2.7rem !important;
  }
  .fs-xxl-28 {
    font-size: 2.8rem !important;
  }
  .fs-xxl-29 {
    font-size: 2.9rem !important;
  }
  .fs-xxl-30 {
    font-size: 3rem !important;
  }
  .fs-xxl-31 {
    font-size: 3.1rem !important;
  }
  .fs-xxl-32 {
    font-size: 3.2rem !important;
  }
  .fs-xxl-33 {
    font-size: 3.3rem !important;
  }
  .fs-xxl-34 {
    font-size: 3.4rem !important;
  }
  .fs-xxl-35 {
    font-size: 3.5rem !important;
  }
  .fs-xxl-36 {
    font-size: 3.6rem !important;
  }
  .fs-xxl-37 {
    font-size: 3.7rem !important;
  }
  .fs-xxl-38 {
    font-size: 3.8rem !important;
  }
  .fs-xxl-39 {
    font-size: 3.9rem !important;
  }
  .fs-xxl-40 {
    font-size: 4rem !important;
  }
  .fs-xxl-41 {
    font-size: 4.1rem !important;
  }
  .fs-xxl-42 {
    font-size: 4.2rem !important;
  }
  .fs-xxl-43 {
    font-size: 4.3rem !important;
  }
  .fs-xxl-44 {
    font-size: 4.4rem !important;
  }
  .fs-xxl-45 {
    font-size: 4.5rem !important;
  }
  .fs-xxl-46 {
    font-size: 4.6rem !important;
  }
  .fs-xxl-47 {
    font-size: 4.7rem !important;
  }
  .fs-xxl-48 {
    font-size: 4.8rem !important;
  }
  .fs-xxl-49 {
    font-size: 4.9rem !important;
  }
  .fs-xxl-50 {
    font-size: 5rem !important;
  }
}
@media (min-width: 1920px) {
  .fs-xxxl-10 {
    font-size: 1rem !important;
  }
  .fs-xxxl-11 {
    font-size: 1.1rem !important;
  }
  .fs-xxxl-12 {
    font-size: 1.2rem !important;
  }
  .fs-xxxl-13 {
    font-size: 1.3rem !important;
  }
  .fs-xxxl-14 {
    font-size: 1.4rem !important;
  }
  .fs-xxxl-15 {
    font-size: 1.5rem !important;
  }
  .fs-xxxl-16 {
    font-size: 1.6rem !important;
  }
  .fs-xxxl-17 {
    font-size: 1.7rem !important;
  }
  .fs-xxxl-18 {
    font-size: 1.8rem !important;
  }
  .fs-xxxl-19 {
    font-size: 1.9rem !important;
  }
  .fs-xxxl-20 {
    font-size: 2rem !important;
  }
  .fs-xxxl-21 {
    font-size: 2.1rem !important;
  }
  .fs-xxxl-22 {
    font-size: 2.2rem !important;
  }
  .fs-xxxl-23 {
    font-size: 2.3rem !important;
  }
  .fs-xxxl-24 {
    font-size: 2.4rem !important;
  }
  .fs-xxxl-25 {
    font-size: 2.5rem !important;
  }
  .fs-xxxl-26 {
    font-size: 2.6rem !important;
  }
  .fs-xxxl-27 {
    font-size: 2.7rem !important;
  }
  .fs-xxxl-28 {
    font-size: 2.8rem !important;
  }
  .fs-xxxl-29 {
    font-size: 2.9rem !important;
  }
  .fs-xxxl-30 {
    font-size: 3rem !important;
  }
  .fs-xxxl-31 {
    font-size: 3.1rem !important;
  }
  .fs-xxxl-32 {
    font-size: 3.2rem !important;
  }
  .fs-xxxl-33 {
    font-size: 3.3rem !important;
  }
  .fs-xxxl-34 {
    font-size: 3.4rem !important;
  }
  .fs-xxxl-35 {
    font-size: 3.5rem !important;
  }
  .fs-xxxl-36 {
    font-size: 3.6rem !important;
  }
  .fs-xxxl-37 {
    font-size: 3.7rem !important;
  }
  .fs-xxxl-38 {
    font-size: 3.8rem !important;
  }
  .fs-xxxl-39 {
    font-size: 3.9rem !important;
  }
  .fs-xxxl-40 {
    font-size: 4rem !important;
  }
  .fs-xxxl-41 {
    font-size: 4.1rem !important;
  }
  .fs-xxxl-42 {
    font-size: 4.2rem !important;
  }
  .fs-xxxl-43 {
    font-size: 4.3rem !important;
  }
  .fs-xxxl-44 {
    font-size: 4.4rem !important;
  }
  .fs-xxxl-45 {
    font-size: 4.5rem !important;
  }
  .fs-xxxl-46 {
    font-size: 4.6rem !important;
  }
  .fs-xxxl-47 {
    font-size: 4.7rem !important;
  }
  .fs-xxxl-48 {
    font-size: 4.8rem !important;
  }
  .fs-xxxl-49 {
    font-size: 4.9rem !important;
  }
  .fs-xxxl-50 {
    font-size: 5rem !important;
  }
}
.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

@media (min-width: 576px) {
  .fw-sm-100 {
    font-weight: 100 !important;
  }
  .fw-sm-200 {
    font-weight: 200 !important;
  }
  .fw-sm-300 {
    font-weight: 300 !important;
  }
  .fw-sm-400 {
    font-weight: 400 !important;
  }
  .fw-sm-500 {
    font-weight: 500 !important;
  }
  .fw-sm-600 {
    font-weight: 600 !important;
  }
  .fw-sm-700 {
    font-weight: 700 !important;
  }
  .fw-sm-800 {
    font-weight: 800 !important;
  }
  .fw-sm-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 768px) {
  .fw-md-100 {
    font-weight: 100 !important;
  }
  .fw-md-200 {
    font-weight: 200 !important;
  }
  .fw-md-300 {
    font-weight: 300 !important;
  }
  .fw-md-400 {
    font-weight: 400 !important;
  }
  .fw-md-500 {
    font-weight: 500 !important;
  }
  .fw-md-600 {
    font-weight: 600 !important;
  }
  .fw-md-700 {
    font-weight: 700 !important;
  }
  .fw-md-800 {
    font-weight: 800 !important;
  }
  .fw-md-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 992px) {
  .fw-lg-100 {
    font-weight: 100 !important;
  }
  .fw-lg-200 {
    font-weight: 200 !important;
  }
  .fw-lg-300 {
    font-weight: 300 !important;
  }
  .fw-lg-400 {
    font-weight: 400 !important;
  }
  .fw-lg-500 {
    font-weight: 500 !important;
  }
  .fw-lg-600 {
    font-weight: 600 !important;
  }
  .fw-lg-700 {
    font-weight: 700 !important;
  }
  .fw-lg-800 {
    font-weight: 800 !important;
  }
  .fw-lg-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1200px) {
  .fw-xl-100 {
    font-weight: 100 !important;
  }
  .fw-xl-200 {
    font-weight: 200 !important;
  }
  .fw-xl-300 {
    font-weight: 300 !important;
  }
  .fw-xl-400 {
    font-weight: 400 !important;
  }
  .fw-xl-500 {
    font-weight: 500 !important;
  }
  .fw-xl-600 {
    font-weight: 600 !important;
  }
  .fw-xl-700 {
    font-weight: 700 !important;
  }
  .fw-xl-800 {
    font-weight: 800 !important;
  }
  .fw-xl-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1600px) {
  .fw-xxl-100 {
    font-weight: 100 !important;
  }
  .fw-xxl-200 {
    font-weight: 200 !important;
  }
  .fw-xxl-300 {
    font-weight: 300 !important;
  }
  .fw-xxl-400 {
    font-weight: 400 !important;
  }
  .fw-xxl-500 {
    font-weight: 500 !important;
  }
  .fw-xxl-600 {
    font-weight: 600 !important;
  }
  .fw-xxl-700 {
    font-weight: 700 !important;
  }
  .fw-xxl-800 {
    font-weight: 800 !important;
  }
  .fw-xxl-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1920px) {
  .fw-xxxl-100 {
    font-weight: 100 !important;
  }
  .fw-xxxl-200 {
    font-weight: 200 !important;
  }
  .fw-xxxl-300 {
    font-weight: 300 !important;
  }
  .fw-xxxl-400 {
    font-weight: 400 !important;
  }
  .fw-xxxl-500 {
    font-weight: 500 !important;
  }
  .fw-xxxl-600 {
    font-weight: 600 !important;
  }
  .fw-xxxl-700 {
    font-weight: 700 !important;
  }
  .fw-xxxl-800 {
    font-weight: 800 !important;
  }
  .fw-xxxl-900 {
    font-weight: 900 !important;
  }
}
.top-0 {
  top: 0 !important;
}

.top-1 {
  top: 0.1rem !important;
}

.top-2 {
  top: 0.2rem !important;
}

.top-3 {
  top: 0.3rem !important;
}

.top-4 {
  top: 0.4rem !important;
}

.top-5 {
  top: 0.5rem !important;
}

.top-6 {
  top: 0.6rem !important;
}

.top-7 {
  top: 0.7rem !important;
}

.top-8 {
  top: 0.8rem !important;
}

.top-9 {
  top: 0.9rem !important;
}

.top-10 {
  top: 1rem !important;
}

.top-11 {
  top: 1.1rem !important;
}

.top-12 {
  top: 1.2rem !important;
}

.top-13 {
  top: 1.3rem !important;
}

.top-14 {
  top: 1.4rem !important;
}

.top-15 {
  top: 1.5rem !important;
}

.top-16 {
  top: 1.6rem !important;
}

.top-17 {
  top: 1.7rem !important;
}

.top-18 {
  top: 1.8rem !important;
}

.top-19 {
  top: 1.9rem !important;
}

.top-20 {
  top: 2rem !important;
}

.top-25 {
  top: 2.5rem !important;
}

.top-30 {
  top: 3rem !important;
}

.top-35 {
  top: 3.5rem !important;
}

.top-40 {
  top: 4rem !important;
}

.top-45 {
  top: 4.5rem !important;
}

.top-50 {
  top: 5rem !important;
}

.top-55 {
  top: 5.5rem !important;
}

.top-60 {
  top: 6rem !important;
}

.top-65 {
  top: 6.5rem !important;
}

.top-70 {
  top: 7rem !important;
}

.top-75 {
  top: 7.5rem !important;
}

.top-80 {
  top: 8rem !important;
}

.top-85 {
  top: 8.5rem !important;
}

.top-90 {
  top: 9rem !important;
}

.top-95 {
  top: 9.5rem !important;
}

.top-100 {
  top: 10rem !important;
}

.top-130 {
  top: 13rem !important;
}

.top-140 {
  top: 14rem !important;
}

.top-150 {
  top: 15rem !important;
}

.top-200 {
  top: 20rem !important;
}

.top-250 {
  top: 25rem !important;
}

.top-300 {
  top: 30rem !important;
}

.top-400 {
  top: 40rem !important;
}

.top-410 {
  top: 41rem !important;
}

.top-450 {
  top: 45rem !important;
}

.right-0 {
  right: 0 !important;
}

.right-1 {
  right: 0.1rem !important;
}

.right-2 {
  right: 0.2rem !important;
}

.right-3 {
  right: 0.3rem !important;
}

.right-4 {
  right: 0.4rem !important;
}

.right-5 {
  right: 0.5rem !important;
}

.right-6 {
  right: 0.6rem !important;
}

.right-7 {
  right: 0.7rem !important;
}

.right-8 {
  right: 0.8rem !important;
}

.right-9 {
  right: 0.9rem !important;
}

.right-10 {
  right: 1rem !important;
}

.right-11 {
  right: 1.1rem !important;
}

.right-12 {
  right: 1.2rem !important;
}

.right-13 {
  right: 1.3rem !important;
}

.right-14 {
  right: 1.4rem !important;
}

.right-15 {
  right: 1.5rem !important;
}

.right-16 {
  right: 1.6rem !important;
}

.right-17 {
  right: 1.7rem !important;
}

.right-18 {
  right: 1.8rem !important;
}

.right-19 {
  right: 1.9rem !important;
}

.right-20 {
  right: 2rem !important;
}

.right-25 {
  right: 2.5rem !important;
}

.right-30 {
  right: 3rem !important;
}

.right-35 {
  right: 3.5rem !important;
}

.right-40 {
  right: 4rem !important;
}

.right-45 {
  right: 4.5rem !important;
}

.right-50 {
  right: 5rem !important;
}

.right-55 {
  right: 5.5rem !important;
}

.right-60 {
  right: 6rem !important;
}

.right-65 {
  right: 6.5rem !important;
}

.right-70 {
  right: 7rem !important;
}

.right-75 {
  right: 7.5rem !important;
}

.right-80 {
  right: 8rem !important;
}

.right-85 {
  right: 8.5rem !important;
}

.right-90 {
  right: 9rem !important;
}

.right-95 {
  right: 9.5rem !important;
}

.right-100 {
  right: 10rem !important;
}

.right-130 {
  right: 13rem !important;
}

.right-140 {
  right: 14rem !important;
}

.right-150 {
  right: 15rem !important;
}

.right-200 {
  right: 20rem !important;
}

.right-250 {
  right: 25rem !important;
}

.right-300 {
  right: 30rem !important;
}

.right-400 {
  right: 40rem !important;
}

.right-410 {
  right: 41rem !important;
}

.right-450 {
  right: 45rem !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-1 {
  bottom: 0.1rem !important;
}

.bottom-2 {
  bottom: 0.2rem !important;
}

.bottom-3 {
  bottom: 0.3rem !important;
}

.bottom-4 {
  bottom: 0.4rem !important;
}

.bottom-5 {
  bottom: 0.5rem !important;
}

.bottom-6 {
  bottom: 0.6rem !important;
}

.bottom-7 {
  bottom: 0.7rem !important;
}

.bottom-8 {
  bottom: 0.8rem !important;
}

.bottom-9 {
  bottom: 0.9rem !important;
}

.bottom-10 {
  bottom: 1rem !important;
}

.bottom-11 {
  bottom: 1.1rem !important;
}

.bottom-12 {
  bottom: 1.2rem !important;
}

.bottom-13 {
  bottom: 1.3rem !important;
}

.bottom-14 {
  bottom: 1.4rem !important;
}

.bottom-15 {
  bottom: 1.5rem !important;
}

.bottom-16 {
  bottom: 1.6rem !important;
}

.bottom-17 {
  bottom: 1.7rem !important;
}

.bottom-18 {
  bottom: 1.8rem !important;
}

.bottom-19 {
  bottom: 1.9rem !important;
}

.bottom-20 {
  bottom: 2rem !important;
}

.bottom-25 {
  bottom: 2.5rem !important;
}

.bottom-30 {
  bottom: 3rem !important;
}

.bottom-35 {
  bottom: 3.5rem !important;
}

.bottom-40 {
  bottom: 4rem !important;
}

.bottom-45 {
  bottom: 4.5rem !important;
}

.bottom-50 {
  bottom: 5rem !important;
}

.bottom-55 {
  bottom: 5.5rem !important;
}

.bottom-60 {
  bottom: 6rem !important;
}

.bottom-65 {
  bottom: 6.5rem !important;
}

.bottom-70 {
  bottom: 7rem !important;
}

.bottom-75 {
  bottom: 7.5rem !important;
}

.bottom-80 {
  bottom: 8rem !important;
}

.bottom-85 {
  bottom: 8.5rem !important;
}

.bottom-90 {
  bottom: 9rem !important;
}

.bottom-95 {
  bottom: 9.5rem !important;
}

.bottom-100 {
  bottom: 10rem !important;
}

.bottom-130 {
  bottom: 13rem !important;
}

.bottom-140 {
  bottom: 14rem !important;
}

.bottom-150 {
  bottom: 15rem !important;
}

.bottom-200 {
  bottom: 20rem !important;
}

.bottom-250 {
  bottom: 25rem !important;
}

.bottom-300 {
  bottom: 30rem !important;
}

.bottom-400 {
  bottom: 40rem !important;
}

.bottom-410 {
  bottom: 41rem !important;
}

.bottom-450 {
  bottom: 45rem !important;
}

.left-0 {
  left: 0 !important;
}

.left-1 {
  left: 0.1rem !important;
}

.left-2 {
  left: 0.2rem !important;
}

.left-3 {
  left: 0.3rem !important;
}

.left-4 {
  left: 0.4rem !important;
}

.left-5 {
  left: 0.5rem !important;
}

.left-6 {
  left: 0.6rem !important;
}

.left-7 {
  left: 0.7rem !important;
}

.left-8 {
  left: 0.8rem !important;
}

.left-9 {
  left: 0.9rem !important;
}

.left-10 {
  left: 1rem !important;
}

.left-11 {
  left: 1.1rem !important;
}

.left-12 {
  left: 1.2rem !important;
}

.left-13 {
  left: 1.3rem !important;
}

.left-14 {
  left: 1.4rem !important;
}

.left-15 {
  left: 1.5rem !important;
}

.left-16 {
  left: 1.6rem !important;
}

.left-17 {
  left: 1.7rem !important;
}

.left-18 {
  left: 1.8rem !important;
}

.left-19 {
  left: 1.9rem !important;
}

.left-20 {
  left: 2rem !important;
}

.left-25 {
  left: 2.5rem !important;
}

.left-30 {
  left: 3rem !important;
}

.left-35 {
  left: 3.5rem !important;
}

.left-40 {
  left: 4rem !important;
}

.left-45 {
  left: 4.5rem !important;
}

.left-50 {
  left: 5rem !important;
}

.left-55 {
  left: 5.5rem !important;
}

.left-60 {
  left: 6rem !important;
}

.left-65 {
  left: 6.5rem !important;
}

.left-70 {
  left: 7rem !important;
}

.left-75 {
  left: 7.5rem !important;
}

.left-80 {
  left: 8rem !important;
}

.left-85 {
  left: 8.5rem !important;
}

.left-90 {
  left: 9rem !important;
}

.left-95 {
  left: 9.5rem !important;
}

.left-100 {
  left: 10rem !important;
}

.left-130 {
  left: 13rem !important;
}

.left-140 {
  left: 14rem !important;
}

.left-150 {
  left: 15rem !important;
}

.left-200 {
  left: 20rem !important;
}

.left-250 {
  left: 25rem !important;
}

.left-300 {
  left: 30rem !important;
}

.left-400 {
  left: 40rem !important;
}

.left-410 {
  left: 41rem !important;
}

.left-450 {
  left: 45rem !important;
}

.top-unit-0 {
  top: 0 !important;
}

.top-unit-1 {
  top: 0.1rem !important;
}

.top-unit-2 {
  top: 0.2rem !important;
}

.top-unit-3 {
  top: 0.3rem !important;
}

.top-unit-4 {
  top: 0.4rem !important;
}

.top-unit-5 {
  top: 0.5rem !important;
}

.top-unit-6 {
  top: 0.6rem !important;
}

.top-unit-7 {
  top: 0.7rem !important;
}

.top-unit-8 {
  top: 0.8rem !important;
}

.top-unit-9 {
  top: 0.9rem !important;
}

.top-unit-10 {
  top: 1rem !important;
}

.top-unit-11 {
  top: 1.1rem !important;
}

.top-unit-12 {
  top: 1.2rem !important;
}

.top-unit-13 {
  top: 1.3rem !important;
}

.top-unit-14 {
  top: 1.4rem !important;
}

.top-unit-15 {
  top: 1.5rem !important;
}

.top-unit-16 {
  top: 1.6rem !important;
}

.top-unit-17 {
  top: 1.7rem !important;
}

.top-unit-18 {
  top: 1.8rem !important;
}

.top-unit-19 {
  top: 1.9rem !important;
}

.top-unit-20 {
  top: 2rem !important;
}

.top-unit-25 {
  top: 2.5rem !important;
}

.top-unit-30 {
  top: 3rem !important;
}

.top-unit-35 {
  top: 3.5rem !important;
}

.top-unit-40 {
  top: 4rem !important;
}

.top-unit-45 {
  top: 4.5rem !important;
}

.top-unit-50 {
  top: 5rem !important;
}

.top-unit-55 {
  top: 5.5rem !important;
}

.top-unit-60 {
  top: 6rem !important;
}

.top-unit-65 {
  top: 6.5rem !important;
}

.top-unit-70 {
  top: 7rem !important;
}

.top-unit-75 {
  top: 7.5rem !important;
}

.top-unit-80 {
  top: 8rem !important;
}

.top-unit-85 {
  top: 8.5rem !important;
}

.top-unit-90 {
  top: 9rem !important;
}

.top-unit-95 {
  top: 9.5rem !important;
}

.top-unit-100 {
  top: 10rem !important;
}

.top-unit-130 {
  top: 13rem !important;
}

.top-unit-140 {
  top: 14rem !important;
}

.top-unit-150 {
  top: 15rem !important;
}

.top-unit-200 {
  top: 20rem !important;
}

.top-unit-250 {
  top: 25rem !important;
}

.top-unit-300 {
  top: 30rem !important;
}

.top-unit-400 {
  top: 40rem !important;
}

.top-unit-410 {
  top: 41rem !important;
}

.top-unit-450 {
  top: 45rem !important;
}

.right-unit-0 {
  right: 0 !important;
}

.right-unit-1 {
  right: 0.1rem !important;
}

.right-unit-2 {
  right: 0.2rem !important;
}

.right-unit-3 {
  right: 0.3rem !important;
}

.right-unit-4 {
  right: 0.4rem !important;
}

.right-unit-5 {
  right: 0.5rem !important;
}

.right-unit-6 {
  right: 0.6rem !important;
}

.right-unit-7 {
  right: 0.7rem !important;
}

.right-unit-8 {
  right: 0.8rem !important;
}

.right-unit-9 {
  right: 0.9rem !important;
}

.right-unit-10 {
  right: 1rem !important;
}

.right-unit-11 {
  right: 1.1rem !important;
}

.right-unit-12 {
  right: 1.2rem !important;
}

.right-unit-13 {
  right: 1.3rem !important;
}

.right-unit-14 {
  right: 1.4rem !important;
}

.right-unit-15 {
  right: 1.5rem !important;
}

.right-unit-16 {
  right: 1.6rem !important;
}

.right-unit-17 {
  right: 1.7rem !important;
}

.right-unit-18 {
  right: 1.8rem !important;
}

.right-unit-19 {
  right: 1.9rem !important;
}

.right-unit-20 {
  right: 2rem !important;
}

.right-unit-25 {
  right: 2.5rem !important;
}

.right-unit-30 {
  right: 3rem !important;
}

.right-unit-35 {
  right: 3.5rem !important;
}

.right-unit-40 {
  right: 4rem !important;
}

.right-unit-45 {
  right: 4.5rem !important;
}

.right-unit-50 {
  right: 5rem !important;
}

.right-unit-55 {
  right: 5.5rem !important;
}

.right-unit-60 {
  right: 6rem !important;
}

.right-unit-65 {
  right: 6.5rem !important;
}

.right-unit-70 {
  right: 7rem !important;
}

.right-unit-75 {
  right: 7.5rem !important;
}

.right-unit-80 {
  right: 8rem !important;
}

.right-unit-85 {
  right: 8.5rem !important;
}

.right-unit-90 {
  right: 9rem !important;
}

.right-unit-95 {
  right: 9.5rem !important;
}

.right-unit-100 {
  right: 10rem !important;
}

.right-unit-130 {
  right: 13rem !important;
}

.right-unit-140 {
  right: 14rem !important;
}

.right-unit-150 {
  right: 15rem !important;
}

.right-unit-200 {
  right: 20rem !important;
}

.right-unit-250 {
  right: 25rem !important;
}

.right-unit-300 {
  right: 30rem !important;
}

.right-unit-400 {
  right: 40rem !important;
}

.right-unit-410 {
  right: 41rem !important;
}

.right-unit-450 {
  right: 45rem !important;
}

.bottom-unit-0 {
  bottom: 0 !important;
}

.bottom-unit-1 {
  bottom: 0.1rem !important;
}

.bottom-unit-2 {
  bottom: 0.2rem !important;
}

.bottom-unit-3 {
  bottom: 0.3rem !important;
}

.bottom-unit-4 {
  bottom: 0.4rem !important;
}

.bottom-unit-5 {
  bottom: 0.5rem !important;
}

.bottom-unit-6 {
  bottom: 0.6rem !important;
}

.bottom-unit-7 {
  bottom: 0.7rem !important;
}

.bottom-unit-8 {
  bottom: 0.8rem !important;
}

.bottom-unit-9 {
  bottom: 0.9rem !important;
}

.bottom-unit-10 {
  bottom: 1rem !important;
}

.bottom-unit-11 {
  bottom: 1.1rem !important;
}

.bottom-unit-12 {
  bottom: 1.2rem !important;
}

.bottom-unit-13 {
  bottom: 1.3rem !important;
}

.bottom-unit-14 {
  bottom: 1.4rem !important;
}

.bottom-unit-15 {
  bottom: 1.5rem !important;
}

.bottom-unit-16 {
  bottom: 1.6rem !important;
}

.bottom-unit-17 {
  bottom: 1.7rem !important;
}

.bottom-unit-18 {
  bottom: 1.8rem !important;
}

.bottom-unit-19 {
  bottom: 1.9rem !important;
}

.bottom-unit-20 {
  bottom: 2rem !important;
}

.bottom-unit-25 {
  bottom: 2.5rem !important;
}

.bottom-unit-30 {
  bottom: 3rem !important;
}

.bottom-unit-35 {
  bottom: 3.5rem !important;
}

.bottom-unit-40 {
  bottom: 4rem !important;
}

.bottom-unit-45 {
  bottom: 4.5rem !important;
}

.bottom-unit-50 {
  bottom: 5rem !important;
}

.bottom-unit-55 {
  bottom: 5.5rem !important;
}

.bottom-unit-60 {
  bottom: 6rem !important;
}

.bottom-unit-65 {
  bottom: 6.5rem !important;
}

.bottom-unit-70 {
  bottom: 7rem !important;
}

.bottom-unit-75 {
  bottom: 7.5rem !important;
}

.bottom-unit-80 {
  bottom: 8rem !important;
}

.bottom-unit-85 {
  bottom: 8.5rem !important;
}

.bottom-unit-90 {
  bottom: 9rem !important;
}

.bottom-unit-95 {
  bottom: 9.5rem !important;
}

.bottom-unit-100 {
  bottom: 10rem !important;
}

.bottom-unit-130 {
  bottom: 13rem !important;
}

.bottom-unit-140 {
  bottom: 14rem !important;
}

.bottom-unit-150 {
  bottom: 15rem !important;
}

.bottom-unit-200 {
  bottom: 20rem !important;
}

.bottom-unit-250 {
  bottom: 25rem !important;
}

.bottom-unit-300 {
  bottom: 30rem !important;
}

.bottom-unit-400 {
  bottom: 40rem !important;
}

.bottom-unit-410 {
  bottom: 41rem !important;
}

.bottom-unit-450 {
  bottom: 45rem !important;
}

.left-unit-0 {
  left: 0 !important;
}

.left-unit-1 {
  left: 0.1rem !important;
}

.left-unit-2 {
  left: 0.2rem !important;
}

.left-unit-3 {
  left: 0.3rem !important;
}

.left-unit-4 {
  left: 0.4rem !important;
}

.left-unit-5 {
  left: 0.5rem !important;
}

.left-unit-6 {
  left: 0.6rem !important;
}

.left-unit-7 {
  left: 0.7rem !important;
}

.left-unit-8 {
  left: 0.8rem !important;
}

.left-unit-9 {
  left: 0.9rem !important;
}

.left-unit-10 {
  left: 1rem !important;
}

.left-unit-11 {
  left: 1.1rem !important;
}

.left-unit-12 {
  left: 1.2rem !important;
}

.left-unit-13 {
  left: 1.3rem !important;
}

.left-unit-14 {
  left: 1.4rem !important;
}

.left-unit-15 {
  left: 1.5rem !important;
}

.left-unit-16 {
  left: 1.6rem !important;
}

.left-unit-17 {
  left: 1.7rem !important;
}

.left-unit-18 {
  left: 1.8rem !important;
}

.left-unit-19 {
  left: 1.9rem !important;
}

.left-unit-20 {
  left: 2rem !important;
}

.left-unit-25 {
  left: 2.5rem !important;
}

.left-unit-30 {
  left: 3rem !important;
}

.left-unit-35 {
  left: 3.5rem !important;
}

.left-unit-40 {
  left: 4rem !important;
}

.left-unit-45 {
  left: 4.5rem !important;
}

.left-unit-50 {
  left: 5rem !important;
}

.left-unit-55 {
  left: 5.5rem !important;
}

.left-unit-60 {
  left: 6rem !important;
}

.left-unit-65 {
  left: 6.5rem !important;
}

.left-unit-70 {
  left: 7rem !important;
}

.left-unit-75 {
  left: 7.5rem !important;
}

.left-unit-80 {
  left: 8rem !important;
}

.left-unit-85 {
  left: 8.5rem !important;
}

.left-unit-90 {
  left: 9rem !important;
}

.left-unit-95 {
  left: 9.5rem !important;
}

.left-unit-100 {
  left: 10rem !important;
}

.left-unit-130 {
  left: 13rem !important;
}

.left-unit-140 {
  left: 14rem !important;
}

.left-unit-150 {
  left: 15rem !important;
}

.left-unit-200 {
  left: 20rem !important;
}

.left-unit-250 {
  left: 25rem !important;
}

.left-unit-300 {
  left: 30rem !important;
}

.left-unit-400 {
  left: 40rem !important;
}

.left-unit-410 {
  left: 41rem !important;
}

.left-unit-450 {
  left: 45rem !important;
}

@media (min-width: 576px) {
  .top-sm-0 {
    top: 0 !important;
  }
  .top-sm-1 {
    top: 0.1rem !important;
  }
  .top-sm-2 {
    top: 0.2rem !important;
  }
  .top-sm-3 {
    top: 0.3rem !important;
  }
  .top-sm-4 {
    top: 0.4rem !important;
  }
  .top-sm-5 {
    top: 0.5rem !important;
  }
  .top-sm-6 {
    top: 0.6rem !important;
  }
  .top-sm-7 {
    top: 0.7rem !important;
  }
  .top-sm-8 {
    top: 0.8rem !important;
  }
  .top-sm-9 {
    top: 0.9rem !important;
  }
  .top-sm-10 {
    top: 1rem !important;
  }
  .top-sm-11 {
    top: 1.1rem !important;
  }
  .top-sm-12 {
    top: 1.2rem !important;
  }
  .top-sm-13 {
    top: 1.3rem !important;
  }
  .top-sm-14 {
    top: 1.4rem !important;
  }
  .top-sm-15 {
    top: 1.5rem !important;
  }
  .top-sm-16 {
    top: 1.6rem !important;
  }
  .top-sm-17 {
    top: 1.7rem !important;
  }
  .top-sm-18 {
    top: 1.8rem !important;
  }
  .top-sm-19 {
    top: 1.9rem !important;
  }
  .top-sm-20 {
    top: 2rem !important;
  }
  .top-sm-25 {
    top: 2.5rem !important;
  }
  .top-sm-30 {
    top: 3rem !important;
  }
  .top-sm-35 {
    top: 3.5rem !important;
  }
  .top-sm-40 {
    top: 4rem !important;
  }
  .top-sm-45 {
    top: 4.5rem !important;
  }
  .top-sm-50 {
    top: 5rem !important;
  }
  .top-sm-55 {
    top: 5.5rem !important;
  }
  .top-sm-60 {
    top: 6rem !important;
  }
  .top-sm-65 {
    top: 6.5rem !important;
  }
  .top-sm-70 {
    top: 7rem !important;
  }
  .top-sm-75 {
    top: 7.5rem !important;
  }
  .top-sm-80 {
    top: 8rem !important;
  }
  .top-sm-85 {
    top: 8.5rem !important;
  }
  .top-sm-90 {
    top: 9rem !important;
  }
  .top-sm-95 {
    top: 9.5rem !important;
  }
  .top-sm-100 {
    top: 10rem !important;
  }
  .top-sm-130 {
    top: 13rem !important;
  }
  .top-sm-140 {
    top: 14rem !important;
  }
  .top-sm-150 {
    top: 15rem !important;
  }
  .top-sm-200 {
    top: 20rem !important;
  }
  .top-sm-250 {
    top: 25rem !important;
  }
  .top-sm-300 {
    top: 30rem !important;
  }
  .top-sm-400 {
    top: 40rem !important;
  }
  .top-sm-410 {
    top: 41rem !important;
  }
  .top-sm-450 {
    top: 45rem !important;
  }
  .right-sm-0 {
    right: 0 !important;
  }
  .right-sm-1 {
    right: 0.1rem !important;
  }
  .right-sm-2 {
    right: 0.2rem !important;
  }
  .right-sm-3 {
    right: 0.3rem !important;
  }
  .right-sm-4 {
    right: 0.4rem !important;
  }
  .right-sm-5 {
    right: 0.5rem !important;
  }
  .right-sm-6 {
    right: 0.6rem !important;
  }
  .right-sm-7 {
    right: 0.7rem !important;
  }
  .right-sm-8 {
    right: 0.8rem !important;
  }
  .right-sm-9 {
    right: 0.9rem !important;
  }
  .right-sm-10 {
    right: 1rem !important;
  }
  .right-sm-11 {
    right: 1.1rem !important;
  }
  .right-sm-12 {
    right: 1.2rem !important;
  }
  .right-sm-13 {
    right: 1.3rem !important;
  }
  .right-sm-14 {
    right: 1.4rem !important;
  }
  .right-sm-15 {
    right: 1.5rem !important;
  }
  .right-sm-16 {
    right: 1.6rem !important;
  }
  .right-sm-17 {
    right: 1.7rem !important;
  }
  .right-sm-18 {
    right: 1.8rem !important;
  }
  .right-sm-19 {
    right: 1.9rem !important;
  }
  .right-sm-20 {
    right: 2rem !important;
  }
  .right-sm-25 {
    right: 2.5rem !important;
  }
  .right-sm-30 {
    right: 3rem !important;
  }
  .right-sm-35 {
    right: 3.5rem !important;
  }
  .right-sm-40 {
    right: 4rem !important;
  }
  .right-sm-45 {
    right: 4.5rem !important;
  }
  .right-sm-50 {
    right: 5rem !important;
  }
  .right-sm-55 {
    right: 5.5rem !important;
  }
  .right-sm-60 {
    right: 6rem !important;
  }
  .right-sm-65 {
    right: 6.5rem !important;
  }
  .right-sm-70 {
    right: 7rem !important;
  }
  .right-sm-75 {
    right: 7.5rem !important;
  }
  .right-sm-80 {
    right: 8rem !important;
  }
  .right-sm-85 {
    right: 8.5rem !important;
  }
  .right-sm-90 {
    right: 9rem !important;
  }
  .right-sm-95 {
    right: 9.5rem !important;
  }
  .right-sm-100 {
    right: 10rem !important;
  }
  .right-sm-130 {
    right: 13rem !important;
  }
  .right-sm-140 {
    right: 14rem !important;
  }
  .right-sm-150 {
    right: 15rem !important;
  }
  .right-sm-200 {
    right: 20rem !important;
  }
  .right-sm-250 {
    right: 25rem !important;
  }
  .right-sm-300 {
    right: 30rem !important;
  }
  .right-sm-400 {
    right: 40rem !important;
  }
  .right-sm-410 {
    right: 41rem !important;
  }
  .right-sm-450 {
    right: 45rem !important;
  }
  .bottom-sm-0 {
    bottom: 0 !important;
  }
  .bottom-sm-1 {
    bottom: 0.1rem !important;
  }
  .bottom-sm-2 {
    bottom: 0.2rem !important;
  }
  .bottom-sm-3 {
    bottom: 0.3rem !important;
  }
  .bottom-sm-4 {
    bottom: 0.4rem !important;
  }
  .bottom-sm-5 {
    bottom: 0.5rem !important;
  }
  .bottom-sm-6 {
    bottom: 0.6rem !important;
  }
  .bottom-sm-7 {
    bottom: 0.7rem !important;
  }
  .bottom-sm-8 {
    bottom: 0.8rem !important;
  }
  .bottom-sm-9 {
    bottom: 0.9rem !important;
  }
  .bottom-sm-10 {
    bottom: 1rem !important;
  }
  .bottom-sm-11 {
    bottom: 1.1rem !important;
  }
  .bottom-sm-12 {
    bottom: 1.2rem !important;
  }
  .bottom-sm-13 {
    bottom: 1.3rem !important;
  }
  .bottom-sm-14 {
    bottom: 1.4rem !important;
  }
  .bottom-sm-15 {
    bottom: 1.5rem !important;
  }
  .bottom-sm-16 {
    bottom: 1.6rem !important;
  }
  .bottom-sm-17 {
    bottom: 1.7rem !important;
  }
  .bottom-sm-18 {
    bottom: 1.8rem !important;
  }
  .bottom-sm-19 {
    bottom: 1.9rem !important;
  }
  .bottom-sm-20 {
    bottom: 2rem !important;
  }
  .bottom-sm-25 {
    bottom: 2.5rem !important;
  }
  .bottom-sm-30 {
    bottom: 3rem !important;
  }
  .bottom-sm-35 {
    bottom: 3.5rem !important;
  }
  .bottom-sm-40 {
    bottom: 4rem !important;
  }
  .bottom-sm-45 {
    bottom: 4.5rem !important;
  }
  .bottom-sm-50 {
    bottom: 5rem !important;
  }
  .bottom-sm-55 {
    bottom: 5.5rem !important;
  }
  .bottom-sm-60 {
    bottom: 6rem !important;
  }
  .bottom-sm-65 {
    bottom: 6.5rem !important;
  }
  .bottom-sm-70 {
    bottom: 7rem !important;
  }
  .bottom-sm-75 {
    bottom: 7.5rem !important;
  }
  .bottom-sm-80 {
    bottom: 8rem !important;
  }
  .bottom-sm-85 {
    bottom: 8.5rem !important;
  }
  .bottom-sm-90 {
    bottom: 9rem !important;
  }
  .bottom-sm-95 {
    bottom: 9.5rem !important;
  }
  .bottom-sm-100 {
    bottom: 10rem !important;
  }
  .bottom-sm-130 {
    bottom: 13rem !important;
  }
  .bottom-sm-140 {
    bottom: 14rem !important;
  }
  .bottom-sm-150 {
    bottom: 15rem !important;
  }
  .bottom-sm-200 {
    bottom: 20rem !important;
  }
  .bottom-sm-250 {
    bottom: 25rem !important;
  }
  .bottom-sm-300 {
    bottom: 30rem !important;
  }
  .bottom-sm-400 {
    bottom: 40rem !important;
  }
  .bottom-sm-410 {
    bottom: 41rem !important;
  }
  .bottom-sm-450 {
    bottom: 45rem !important;
  }
  .left-sm-0 {
    left: 0 !important;
  }
  .left-sm-1 {
    left: 0.1rem !important;
  }
  .left-sm-2 {
    left: 0.2rem !important;
  }
  .left-sm-3 {
    left: 0.3rem !important;
  }
  .left-sm-4 {
    left: 0.4rem !important;
  }
  .left-sm-5 {
    left: 0.5rem !important;
  }
  .left-sm-6 {
    left: 0.6rem !important;
  }
  .left-sm-7 {
    left: 0.7rem !important;
  }
  .left-sm-8 {
    left: 0.8rem !important;
  }
  .left-sm-9 {
    left: 0.9rem !important;
  }
  .left-sm-10 {
    left: 1rem !important;
  }
  .left-sm-11 {
    left: 1.1rem !important;
  }
  .left-sm-12 {
    left: 1.2rem !important;
  }
  .left-sm-13 {
    left: 1.3rem !important;
  }
  .left-sm-14 {
    left: 1.4rem !important;
  }
  .left-sm-15 {
    left: 1.5rem !important;
  }
  .left-sm-16 {
    left: 1.6rem !important;
  }
  .left-sm-17 {
    left: 1.7rem !important;
  }
  .left-sm-18 {
    left: 1.8rem !important;
  }
  .left-sm-19 {
    left: 1.9rem !important;
  }
  .left-sm-20 {
    left: 2rem !important;
  }
  .left-sm-25 {
    left: 2.5rem !important;
  }
  .left-sm-30 {
    left: 3rem !important;
  }
  .left-sm-35 {
    left: 3.5rem !important;
  }
  .left-sm-40 {
    left: 4rem !important;
  }
  .left-sm-45 {
    left: 4.5rem !important;
  }
  .left-sm-50 {
    left: 5rem !important;
  }
  .left-sm-55 {
    left: 5.5rem !important;
  }
  .left-sm-60 {
    left: 6rem !important;
  }
  .left-sm-65 {
    left: 6.5rem !important;
  }
  .left-sm-70 {
    left: 7rem !important;
  }
  .left-sm-75 {
    left: 7.5rem !important;
  }
  .left-sm-80 {
    left: 8rem !important;
  }
  .left-sm-85 {
    left: 8.5rem !important;
  }
  .left-sm-90 {
    left: 9rem !important;
  }
  .left-sm-95 {
    left: 9.5rem !important;
  }
  .left-sm-100 {
    left: 10rem !important;
  }
  .left-sm-130 {
    left: 13rem !important;
  }
  .left-sm-140 {
    left: 14rem !important;
  }
  .left-sm-150 {
    left: 15rem !important;
  }
  .left-sm-200 {
    left: 20rem !important;
  }
  .left-sm-250 {
    left: 25rem !important;
  }
  .left-sm-300 {
    left: 30rem !important;
  }
  .left-sm-400 {
    left: 40rem !important;
  }
  .left-sm-410 {
    left: 41rem !important;
  }
  .left-sm-450 {
    left: 45rem !important;
  }
  .top-sm-unit-0 {
    top: 0 !important;
  }
  .top-sm-unit-1 {
    top: 0.1rem !important;
  }
  .top-sm-unit-2 {
    top: 0.2rem !important;
  }
  .top-sm-unit-3 {
    top: 0.3rem !important;
  }
  .top-sm-unit-4 {
    top: 0.4rem !important;
  }
  .top-sm-unit-5 {
    top: 0.5rem !important;
  }
  .top-sm-unit-6 {
    top: 0.6rem !important;
  }
  .top-sm-unit-7 {
    top: 0.7rem !important;
  }
  .top-sm-unit-8 {
    top: 0.8rem !important;
  }
  .top-sm-unit-9 {
    top: 0.9rem !important;
  }
  .top-sm-unit-10 {
    top: 1rem !important;
  }
  .top-sm-unit-11 {
    top: 1.1rem !important;
  }
  .top-sm-unit-12 {
    top: 1.2rem !important;
  }
  .top-sm-unit-13 {
    top: 1.3rem !important;
  }
  .top-sm-unit-14 {
    top: 1.4rem !important;
  }
  .top-sm-unit-15 {
    top: 1.5rem !important;
  }
  .top-sm-unit-16 {
    top: 1.6rem !important;
  }
  .top-sm-unit-17 {
    top: 1.7rem !important;
  }
  .top-sm-unit-18 {
    top: 1.8rem !important;
  }
  .top-sm-unit-19 {
    top: 1.9rem !important;
  }
  .top-sm-unit-20 {
    top: 2rem !important;
  }
  .top-sm-unit-25 {
    top: 2.5rem !important;
  }
  .top-sm-unit-30 {
    top: 3rem !important;
  }
  .top-sm-unit-35 {
    top: 3.5rem !important;
  }
  .top-sm-unit-40 {
    top: 4rem !important;
  }
  .top-sm-unit-45 {
    top: 4.5rem !important;
  }
  .top-sm-unit-50 {
    top: 5rem !important;
  }
  .top-sm-unit-55 {
    top: 5.5rem !important;
  }
  .top-sm-unit-60 {
    top: 6rem !important;
  }
  .top-sm-unit-65 {
    top: 6.5rem !important;
  }
  .top-sm-unit-70 {
    top: 7rem !important;
  }
  .top-sm-unit-75 {
    top: 7.5rem !important;
  }
  .top-sm-unit-80 {
    top: 8rem !important;
  }
  .top-sm-unit-85 {
    top: 8.5rem !important;
  }
  .top-sm-unit-90 {
    top: 9rem !important;
  }
  .top-sm-unit-95 {
    top: 9.5rem !important;
  }
  .top-sm-unit-100 {
    top: 10rem !important;
  }
  .top-sm-unit-130 {
    top: 13rem !important;
  }
  .top-sm-unit-140 {
    top: 14rem !important;
  }
  .top-sm-unit-150 {
    top: 15rem !important;
  }
  .top-sm-unit-200 {
    top: 20rem !important;
  }
  .top-sm-unit-250 {
    top: 25rem !important;
  }
  .top-sm-unit-300 {
    top: 30rem !important;
  }
  .top-sm-unit-400 {
    top: 40rem !important;
  }
  .top-sm-unit-410 {
    top: 41rem !important;
  }
  .top-sm-unit-450 {
    top: 45rem !important;
  }
  .right-sm-unit-0 {
    right: 0 !important;
  }
  .right-sm-unit-1 {
    right: 0.1rem !important;
  }
  .right-sm-unit-2 {
    right: 0.2rem !important;
  }
  .right-sm-unit-3 {
    right: 0.3rem !important;
  }
  .right-sm-unit-4 {
    right: 0.4rem !important;
  }
  .right-sm-unit-5 {
    right: 0.5rem !important;
  }
  .right-sm-unit-6 {
    right: 0.6rem !important;
  }
  .right-sm-unit-7 {
    right: 0.7rem !important;
  }
  .right-sm-unit-8 {
    right: 0.8rem !important;
  }
  .right-sm-unit-9 {
    right: 0.9rem !important;
  }
  .right-sm-unit-10 {
    right: 1rem !important;
  }
  .right-sm-unit-11 {
    right: 1.1rem !important;
  }
  .right-sm-unit-12 {
    right: 1.2rem !important;
  }
  .right-sm-unit-13 {
    right: 1.3rem !important;
  }
  .right-sm-unit-14 {
    right: 1.4rem !important;
  }
  .right-sm-unit-15 {
    right: 1.5rem !important;
  }
  .right-sm-unit-16 {
    right: 1.6rem !important;
  }
  .right-sm-unit-17 {
    right: 1.7rem !important;
  }
  .right-sm-unit-18 {
    right: 1.8rem !important;
  }
  .right-sm-unit-19 {
    right: 1.9rem !important;
  }
  .right-sm-unit-20 {
    right: 2rem !important;
  }
  .right-sm-unit-25 {
    right: 2.5rem !important;
  }
  .right-sm-unit-30 {
    right: 3rem !important;
  }
  .right-sm-unit-35 {
    right: 3.5rem !important;
  }
  .right-sm-unit-40 {
    right: 4rem !important;
  }
  .right-sm-unit-45 {
    right: 4.5rem !important;
  }
  .right-sm-unit-50 {
    right: 5rem !important;
  }
  .right-sm-unit-55 {
    right: 5.5rem !important;
  }
  .right-sm-unit-60 {
    right: 6rem !important;
  }
  .right-sm-unit-65 {
    right: 6.5rem !important;
  }
  .right-sm-unit-70 {
    right: 7rem !important;
  }
  .right-sm-unit-75 {
    right: 7.5rem !important;
  }
  .right-sm-unit-80 {
    right: 8rem !important;
  }
  .right-sm-unit-85 {
    right: 8.5rem !important;
  }
  .right-sm-unit-90 {
    right: 9rem !important;
  }
  .right-sm-unit-95 {
    right: 9.5rem !important;
  }
  .right-sm-unit-100 {
    right: 10rem !important;
  }
  .right-sm-unit-130 {
    right: 13rem !important;
  }
  .right-sm-unit-140 {
    right: 14rem !important;
  }
  .right-sm-unit-150 {
    right: 15rem !important;
  }
  .right-sm-unit-200 {
    right: 20rem !important;
  }
  .right-sm-unit-250 {
    right: 25rem !important;
  }
  .right-sm-unit-300 {
    right: 30rem !important;
  }
  .right-sm-unit-400 {
    right: 40rem !important;
  }
  .right-sm-unit-410 {
    right: 41rem !important;
  }
  .right-sm-unit-450 {
    right: 45rem !important;
  }
  .bottom-sm-unit-0 {
    bottom: 0 !important;
  }
  .bottom-sm-unit-1 {
    bottom: 0.1rem !important;
  }
  .bottom-sm-unit-2 {
    bottom: 0.2rem !important;
  }
  .bottom-sm-unit-3 {
    bottom: 0.3rem !important;
  }
  .bottom-sm-unit-4 {
    bottom: 0.4rem !important;
  }
  .bottom-sm-unit-5 {
    bottom: 0.5rem !important;
  }
  .bottom-sm-unit-6 {
    bottom: 0.6rem !important;
  }
  .bottom-sm-unit-7 {
    bottom: 0.7rem !important;
  }
  .bottom-sm-unit-8 {
    bottom: 0.8rem !important;
  }
  .bottom-sm-unit-9 {
    bottom: 0.9rem !important;
  }
  .bottom-sm-unit-10 {
    bottom: 1rem !important;
  }
  .bottom-sm-unit-11 {
    bottom: 1.1rem !important;
  }
  .bottom-sm-unit-12 {
    bottom: 1.2rem !important;
  }
  .bottom-sm-unit-13 {
    bottom: 1.3rem !important;
  }
  .bottom-sm-unit-14 {
    bottom: 1.4rem !important;
  }
  .bottom-sm-unit-15 {
    bottom: 1.5rem !important;
  }
  .bottom-sm-unit-16 {
    bottom: 1.6rem !important;
  }
  .bottom-sm-unit-17 {
    bottom: 1.7rem !important;
  }
  .bottom-sm-unit-18 {
    bottom: 1.8rem !important;
  }
  .bottom-sm-unit-19 {
    bottom: 1.9rem !important;
  }
  .bottom-sm-unit-20 {
    bottom: 2rem !important;
  }
  .bottom-sm-unit-25 {
    bottom: 2.5rem !important;
  }
  .bottom-sm-unit-30 {
    bottom: 3rem !important;
  }
  .bottom-sm-unit-35 {
    bottom: 3.5rem !important;
  }
  .bottom-sm-unit-40 {
    bottom: 4rem !important;
  }
  .bottom-sm-unit-45 {
    bottom: 4.5rem !important;
  }
  .bottom-sm-unit-50 {
    bottom: 5rem !important;
  }
  .bottom-sm-unit-55 {
    bottom: 5.5rem !important;
  }
  .bottom-sm-unit-60 {
    bottom: 6rem !important;
  }
  .bottom-sm-unit-65 {
    bottom: 6.5rem !important;
  }
  .bottom-sm-unit-70 {
    bottom: 7rem !important;
  }
  .bottom-sm-unit-75 {
    bottom: 7.5rem !important;
  }
  .bottom-sm-unit-80 {
    bottom: 8rem !important;
  }
  .bottom-sm-unit-85 {
    bottom: 8.5rem !important;
  }
  .bottom-sm-unit-90 {
    bottom: 9rem !important;
  }
  .bottom-sm-unit-95 {
    bottom: 9.5rem !important;
  }
  .bottom-sm-unit-100 {
    bottom: 10rem !important;
  }
  .bottom-sm-unit-130 {
    bottom: 13rem !important;
  }
  .bottom-sm-unit-140 {
    bottom: 14rem !important;
  }
  .bottom-sm-unit-150 {
    bottom: 15rem !important;
  }
  .bottom-sm-unit-200 {
    bottom: 20rem !important;
  }
  .bottom-sm-unit-250 {
    bottom: 25rem !important;
  }
  .bottom-sm-unit-300 {
    bottom: 30rem !important;
  }
  .bottom-sm-unit-400 {
    bottom: 40rem !important;
  }
  .bottom-sm-unit-410 {
    bottom: 41rem !important;
  }
  .bottom-sm-unit-450 {
    bottom: 45rem !important;
  }
  .left-sm-unit-0 {
    left: 0 !important;
  }
  .left-sm-unit-1 {
    left: 0.1rem !important;
  }
  .left-sm-unit-2 {
    left: 0.2rem !important;
  }
  .left-sm-unit-3 {
    left: 0.3rem !important;
  }
  .left-sm-unit-4 {
    left: 0.4rem !important;
  }
  .left-sm-unit-5 {
    left: 0.5rem !important;
  }
  .left-sm-unit-6 {
    left: 0.6rem !important;
  }
  .left-sm-unit-7 {
    left: 0.7rem !important;
  }
  .left-sm-unit-8 {
    left: 0.8rem !important;
  }
  .left-sm-unit-9 {
    left: 0.9rem !important;
  }
  .left-sm-unit-10 {
    left: 1rem !important;
  }
  .left-sm-unit-11 {
    left: 1.1rem !important;
  }
  .left-sm-unit-12 {
    left: 1.2rem !important;
  }
  .left-sm-unit-13 {
    left: 1.3rem !important;
  }
  .left-sm-unit-14 {
    left: 1.4rem !important;
  }
  .left-sm-unit-15 {
    left: 1.5rem !important;
  }
  .left-sm-unit-16 {
    left: 1.6rem !important;
  }
  .left-sm-unit-17 {
    left: 1.7rem !important;
  }
  .left-sm-unit-18 {
    left: 1.8rem !important;
  }
  .left-sm-unit-19 {
    left: 1.9rem !important;
  }
  .left-sm-unit-20 {
    left: 2rem !important;
  }
  .left-sm-unit-25 {
    left: 2.5rem !important;
  }
  .left-sm-unit-30 {
    left: 3rem !important;
  }
  .left-sm-unit-35 {
    left: 3.5rem !important;
  }
  .left-sm-unit-40 {
    left: 4rem !important;
  }
  .left-sm-unit-45 {
    left: 4.5rem !important;
  }
  .left-sm-unit-50 {
    left: 5rem !important;
  }
  .left-sm-unit-55 {
    left: 5.5rem !important;
  }
  .left-sm-unit-60 {
    left: 6rem !important;
  }
  .left-sm-unit-65 {
    left: 6.5rem !important;
  }
  .left-sm-unit-70 {
    left: 7rem !important;
  }
  .left-sm-unit-75 {
    left: 7.5rem !important;
  }
  .left-sm-unit-80 {
    left: 8rem !important;
  }
  .left-sm-unit-85 {
    left: 8.5rem !important;
  }
  .left-sm-unit-90 {
    left: 9rem !important;
  }
  .left-sm-unit-95 {
    left: 9.5rem !important;
  }
  .left-sm-unit-100 {
    left: 10rem !important;
  }
  .left-sm-unit-130 {
    left: 13rem !important;
  }
  .left-sm-unit-140 {
    left: 14rem !important;
  }
  .left-sm-unit-150 {
    left: 15rem !important;
  }
  .left-sm-unit-200 {
    left: 20rem !important;
  }
  .left-sm-unit-250 {
    left: 25rem !important;
  }
  .left-sm-unit-300 {
    left: 30rem !important;
  }
  .left-sm-unit-400 {
    left: 40rem !important;
  }
  .left-sm-unit-410 {
    left: 41rem !important;
  }
  .left-sm-unit-450 {
    left: 45rem !important;
  }
}
@media (min-width: 768px) {
  .top-md-0 {
    top: 0 !important;
  }
  .top-md-1 {
    top: 0.1rem !important;
  }
  .top-md-2 {
    top: 0.2rem !important;
  }
  .top-md-3 {
    top: 0.3rem !important;
  }
  .top-md-4 {
    top: 0.4rem !important;
  }
  .top-md-5 {
    top: 0.5rem !important;
  }
  .top-md-6 {
    top: 0.6rem !important;
  }
  .top-md-7 {
    top: 0.7rem !important;
  }
  .top-md-8 {
    top: 0.8rem !important;
  }
  .top-md-9 {
    top: 0.9rem !important;
  }
  .top-md-10 {
    top: 1rem !important;
  }
  .top-md-11 {
    top: 1.1rem !important;
  }
  .top-md-12 {
    top: 1.2rem !important;
  }
  .top-md-13 {
    top: 1.3rem !important;
  }
  .top-md-14 {
    top: 1.4rem !important;
  }
  .top-md-15 {
    top: 1.5rem !important;
  }
  .top-md-16 {
    top: 1.6rem !important;
  }
  .top-md-17 {
    top: 1.7rem !important;
  }
  .top-md-18 {
    top: 1.8rem !important;
  }
  .top-md-19 {
    top: 1.9rem !important;
  }
  .top-md-20 {
    top: 2rem !important;
  }
  .top-md-25 {
    top: 2.5rem !important;
  }
  .top-md-30 {
    top: 3rem !important;
  }
  .top-md-35 {
    top: 3.5rem !important;
  }
  .top-md-40 {
    top: 4rem !important;
  }
  .top-md-45 {
    top: 4.5rem !important;
  }
  .top-md-50 {
    top: 5rem !important;
  }
  .top-md-55 {
    top: 5.5rem !important;
  }
  .top-md-60 {
    top: 6rem !important;
  }
  .top-md-65 {
    top: 6.5rem !important;
  }
  .top-md-70 {
    top: 7rem !important;
  }
  .top-md-75 {
    top: 7.5rem !important;
  }
  .top-md-80 {
    top: 8rem !important;
  }
  .top-md-85 {
    top: 8.5rem !important;
  }
  .top-md-90 {
    top: 9rem !important;
  }
  .top-md-95 {
    top: 9.5rem !important;
  }
  .top-md-100 {
    top: 10rem !important;
  }
  .top-md-130 {
    top: 13rem !important;
  }
  .top-md-140 {
    top: 14rem !important;
  }
  .top-md-150 {
    top: 15rem !important;
  }
  .top-md-200 {
    top: 20rem !important;
  }
  .top-md-250 {
    top: 25rem !important;
  }
  .top-md-300 {
    top: 30rem !important;
  }
  .top-md-400 {
    top: 40rem !important;
  }
  .top-md-410 {
    top: 41rem !important;
  }
  .top-md-450 {
    top: 45rem !important;
  }
  .right-md-0 {
    right: 0 !important;
  }
  .right-md-1 {
    right: 0.1rem !important;
  }
  .right-md-2 {
    right: 0.2rem !important;
  }
  .right-md-3 {
    right: 0.3rem !important;
  }
  .right-md-4 {
    right: 0.4rem !important;
  }
  .right-md-5 {
    right: 0.5rem !important;
  }
  .right-md-6 {
    right: 0.6rem !important;
  }
  .right-md-7 {
    right: 0.7rem !important;
  }
  .right-md-8 {
    right: 0.8rem !important;
  }
  .right-md-9 {
    right: 0.9rem !important;
  }
  .right-md-10 {
    right: 1rem !important;
  }
  .right-md-11 {
    right: 1.1rem !important;
  }
  .right-md-12 {
    right: 1.2rem !important;
  }
  .right-md-13 {
    right: 1.3rem !important;
  }
  .right-md-14 {
    right: 1.4rem !important;
  }
  .right-md-15 {
    right: 1.5rem !important;
  }
  .right-md-16 {
    right: 1.6rem !important;
  }
  .right-md-17 {
    right: 1.7rem !important;
  }
  .right-md-18 {
    right: 1.8rem !important;
  }
  .right-md-19 {
    right: 1.9rem !important;
  }
  .right-md-20 {
    right: 2rem !important;
  }
  .right-md-25 {
    right: 2.5rem !important;
  }
  .right-md-30 {
    right: 3rem !important;
  }
  .right-md-35 {
    right: 3.5rem !important;
  }
  .right-md-40 {
    right: 4rem !important;
  }
  .right-md-45 {
    right: 4.5rem !important;
  }
  .right-md-50 {
    right: 5rem !important;
  }
  .right-md-55 {
    right: 5.5rem !important;
  }
  .right-md-60 {
    right: 6rem !important;
  }
  .right-md-65 {
    right: 6.5rem !important;
  }
  .right-md-70 {
    right: 7rem !important;
  }
  .right-md-75 {
    right: 7.5rem !important;
  }
  .right-md-80 {
    right: 8rem !important;
  }
  .right-md-85 {
    right: 8.5rem !important;
  }
  .right-md-90 {
    right: 9rem !important;
  }
  .right-md-95 {
    right: 9.5rem !important;
  }
  .right-md-100 {
    right: 10rem !important;
  }
  .right-md-130 {
    right: 13rem !important;
  }
  .right-md-140 {
    right: 14rem !important;
  }
  .right-md-150 {
    right: 15rem !important;
  }
  .right-md-200 {
    right: 20rem !important;
  }
  .right-md-250 {
    right: 25rem !important;
  }
  .right-md-300 {
    right: 30rem !important;
  }
  .right-md-400 {
    right: 40rem !important;
  }
  .right-md-410 {
    right: 41rem !important;
  }
  .right-md-450 {
    right: 45rem !important;
  }
  .bottom-md-0 {
    bottom: 0 !important;
  }
  .bottom-md-1 {
    bottom: 0.1rem !important;
  }
  .bottom-md-2 {
    bottom: 0.2rem !important;
  }
  .bottom-md-3 {
    bottom: 0.3rem !important;
  }
  .bottom-md-4 {
    bottom: 0.4rem !important;
  }
  .bottom-md-5 {
    bottom: 0.5rem !important;
  }
  .bottom-md-6 {
    bottom: 0.6rem !important;
  }
  .bottom-md-7 {
    bottom: 0.7rem !important;
  }
  .bottom-md-8 {
    bottom: 0.8rem !important;
  }
  .bottom-md-9 {
    bottom: 0.9rem !important;
  }
  .bottom-md-10 {
    bottom: 1rem !important;
  }
  .bottom-md-11 {
    bottom: 1.1rem !important;
  }
  .bottom-md-12 {
    bottom: 1.2rem !important;
  }
  .bottom-md-13 {
    bottom: 1.3rem !important;
  }
  .bottom-md-14 {
    bottom: 1.4rem !important;
  }
  .bottom-md-15 {
    bottom: 1.5rem !important;
  }
  .bottom-md-16 {
    bottom: 1.6rem !important;
  }
  .bottom-md-17 {
    bottom: 1.7rem !important;
  }
  .bottom-md-18 {
    bottom: 1.8rem !important;
  }
  .bottom-md-19 {
    bottom: 1.9rem !important;
  }
  .bottom-md-20 {
    bottom: 2rem !important;
  }
  .bottom-md-25 {
    bottom: 2.5rem !important;
  }
  .bottom-md-30 {
    bottom: 3rem !important;
  }
  .bottom-md-35 {
    bottom: 3.5rem !important;
  }
  .bottom-md-40 {
    bottom: 4rem !important;
  }
  .bottom-md-45 {
    bottom: 4.5rem !important;
  }
  .bottom-md-50 {
    bottom: 5rem !important;
  }
  .bottom-md-55 {
    bottom: 5.5rem !important;
  }
  .bottom-md-60 {
    bottom: 6rem !important;
  }
  .bottom-md-65 {
    bottom: 6.5rem !important;
  }
  .bottom-md-70 {
    bottom: 7rem !important;
  }
  .bottom-md-75 {
    bottom: 7.5rem !important;
  }
  .bottom-md-80 {
    bottom: 8rem !important;
  }
  .bottom-md-85 {
    bottom: 8.5rem !important;
  }
  .bottom-md-90 {
    bottom: 9rem !important;
  }
  .bottom-md-95 {
    bottom: 9.5rem !important;
  }
  .bottom-md-100 {
    bottom: 10rem !important;
  }
  .bottom-md-130 {
    bottom: 13rem !important;
  }
  .bottom-md-140 {
    bottom: 14rem !important;
  }
  .bottom-md-150 {
    bottom: 15rem !important;
  }
  .bottom-md-200 {
    bottom: 20rem !important;
  }
  .bottom-md-250 {
    bottom: 25rem !important;
  }
  .bottom-md-300 {
    bottom: 30rem !important;
  }
  .bottom-md-400 {
    bottom: 40rem !important;
  }
  .bottom-md-410 {
    bottom: 41rem !important;
  }
  .bottom-md-450 {
    bottom: 45rem !important;
  }
  .left-md-0 {
    left: 0 !important;
  }
  .left-md-1 {
    left: 0.1rem !important;
  }
  .left-md-2 {
    left: 0.2rem !important;
  }
  .left-md-3 {
    left: 0.3rem !important;
  }
  .left-md-4 {
    left: 0.4rem !important;
  }
  .left-md-5 {
    left: 0.5rem !important;
  }
  .left-md-6 {
    left: 0.6rem !important;
  }
  .left-md-7 {
    left: 0.7rem !important;
  }
  .left-md-8 {
    left: 0.8rem !important;
  }
  .left-md-9 {
    left: 0.9rem !important;
  }
  .left-md-10 {
    left: 1rem !important;
  }
  .left-md-11 {
    left: 1.1rem !important;
  }
  .left-md-12 {
    left: 1.2rem !important;
  }
  .left-md-13 {
    left: 1.3rem !important;
  }
  .left-md-14 {
    left: 1.4rem !important;
  }
  .left-md-15 {
    left: 1.5rem !important;
  }
  .left-md-16 {
    left: 1.6rem !important;
  }
  .left-md-17 {
    left: 1.7rem !important;
  }
  .left-md-18 {
    left: 1.8rem !important;
  }
  .left-md-19 {
    left: 1.9rem !important;
  }
  .left-md-20 {
    left: 2rem !important;
  }
  .left-md-25 {
    left: 2.5rem !important;
  }
  .left-md-30 {
    left: 3rem !important;
  }
  .left-md-35 {
    left: 3.5rem !important;
  }
  .left-md-40 {
    left: 4rem !important;
  }
  .left-md-45 {
    left: 4.5rem !important;
  }
  .left-md-50 {
    left: 5rem !important;
  }
  .left-md-55 {
    left: 5.5rem !important;
  }
  .left-md-60 {
    left: 6rem !important;
  }
  .left-md-65 {
    left: 6.5rem !important;
  }
  .left-md-70 {
    left: 7rem !important;
  }
  .left-md-75 {
    left: 7.5rem !important;
  }
  .left-md-80 {
    left: 8rem !important;
  }
  .left-md-85 {
    left: 8.5rem !important;
  }
  .left-md-90 {
    left: 9rem !important;
  }
  .left-md-95 {
    left: 9.5rem !important;
  }
  .left-md-100 {
    left: 10rem !important;
  }
  .left-md-130 {
    left: 13rem !important;
  }
  .left-md-140 {
    left: 14rem !important;
  }
  .left-md-150 {
    left: 15rem !important;
  }
  .left-md-200 {
    left: 20rem !important;
  }
  .left-md-250 {
    left: 25rem !important;
  }
  .left-md-300 {
    left: 30rem !important;
  }
  .left-md-400 {
    left: 40rem !important;
  }
  .left-md-410 {
    left: 41rem !important;
  }
  .left-md-450 {
    left: 45rem !important;
  }
  .top-md-unit-0 {
    top: 0 !important;
  }
  .top-md-unit-1 {
    top: 0.1rem !important;
  }
  .top-md-unit-2 {
    top: 0.2rem !important;
  }
  .top-md-unit-3 {
    top: 0.3rem !important;
  }
  .top-md-unit-4 {
    top: 0.4rem !important;
  }
  .top-md-unit-5 {
    top: 0.5rem !important;
  }
  .top-md-unit-6 {
    top: 0.6rem !important;
  }
  .top-md-unit-7 {
    top: 0.7rem !important;
  }
  .top-md-unit-8 {
    top: 0.8rem !important;
  }
  .top-md-unit-9 {
    top: 0.9rem !important;
  }
  .top-md-unit-10 {
    top: 1rem !important;
  }
  .top-md-unit-11 {
    top: 1.1rem !important;
  }
  .top-md-unit-12 {
    top: 1.2rem !important;
  }
  .top-md-unit-13 {
    top: 1.3rem !important;
  }
  .top-md-unit-14 {
    top: 1.4rem !important;
  }
  .top-md-unit-15 {
    top: 1.5rem !important;
  }
  .top-md-unit-16 {
    top: 1.6rem !important;
  }
  .top-md-unit-17 {
    top: 1.7rem !important;
  }
  .top-md-unit-18 {
    top: 1.8rem !important;
  }
  .top-md-unit-19 {
    top: 1.9rem !important;
  }
  .top-md-unit-20 {
    top: 2rem !important;
  }
  .top-md-unit-25 {
    top: 2.5rem !important;
  }
  .top-md-unit-30 {
    top: 3rem !important;
  }
  .top-md-unit-35 {
    top: 3.5rem !important;
  }
  .top-md-unit-40 {
    top: 4rem !important;
  }
  .top-md-unit-45 {
    top: 4.5rem !important;
  }
  .top-md-unit-50 {
    top: 5rem !important;
  }
  .top-md-unit-55 {
    top: 5.5rem !important;
  }
  .top-md-unit-60 {
    top: 6rem !important;
  }
  .top-md-unit-65 {
    top: 6.5rem !important;
  }
  .top-md-unit-70 {
    top: 7rem !important;
  }
  .top-md-unit-75 {
    top: 7.5rem !important;
  }
  .top-md-unit-80 {
    top: 8rem !important;
  }
  .top-md-unit-85 {
    top: 8.5rem !important;
  }
  .top-md-unit-90 {
    top: 9rem !important;
  }
  .top-md-unit-95 {
    top: 9.5rem !important;
  }
  .top-md-unit-100 {
    top: 10rem !important;
  }
  .top-md-unit-130 {
    top: 13rem !important;
  }
  .top-md-unit-140 {
    top: 14rem !important;
  }
  .top-md-unit-150 {
    top: 15rem !important;
  }
  .top-md-unit-200 {
    top: 20rem !important;
  }
  .top-md-unit-250 {
    top: 25rem !important;
  }
  .top-md-unit-300 {
    top: 30rem !important;
  }
  .top-md-unit-400 {
    top: 40rem !important;
  }
  .top-md-unit-410 {
    top: 41rem !important;
  }
  .top-md-unit-450 {
    top: 45rem !important;
  }
  .right-md-unit-0 {
    right: 0 !important;
  }
  .right-md-unit-1 {
    right: 0.1rem !important;
  }
  .right-md-unit-2 {
    right: 0.2rem !important;
  }
  .right-md-unit-3 {
    right: 0.3rem !important;
  }
  .right-md-unit-4 {
    right: 0.4rem !important;
  }
  .right-md-unit-5 {
    right: 0.5rem !important;
  }
  .right-md-unit-6 {
    right: 0.6rem !important;
  }
  .right-md-unit-7 {
    right: 0.7rem !important;
  }
  .right-md-unit-8 {
    right: 0.8rem !important;
  }
  .right-md-unit-9 {
    right: 0.9rem !important;
  }
  .right-md-unit-10 {
    right: 1rem !important;
  }
  .right-md-unit-11 {
    right: 1.1rem !important;
  }
  .right-md-unit-12 {
    right: 1.2rem !important;
  }
  .right-md-unit-13 {
    right: 1.3rem !important;
  }
  .right-md-unit-14 {
    right: 1.4rem !important;
  }
  .right-md-unit-15 {
    right: 1.5rem !important;
  }
  .right-md-unit-16 {
    right: 1.6rem !important;
  }
  .right-md-unit-17 {
    right: 1.7rem !important;
  }
  .right-md-unit-18 {
    right: 1.8rem !important;
  }
  .right-md-unit-19 {
    right: 1.9rem !important;
  }
  .right-md-unit-20 {
    right: 2rem !important;
  }
  .right-md-unit-25 {
    right: 2.5rem !important;
  }
  .right-md-unit-30 {
    right: 3rem !important;
  }
  .right-md-unit-35 {
    right: 3.5rem !important;
  }
  .right-md-unit-40 {
    right: 4rem !important;
  }
  .right-md-unit-45 {
    right: 4.5rem !important;
  }
  .right-md-unit-50 {
    right: 5rem !important;
  }
  .right-md-unit-55 {
    right: 5.5rem !important;
  }
  .right-md-unit-60 {
    right: 6rem !important;
  }
  .right-md-unit-65 {
    right: 6.5rem !important;
  }
  .right-md-unit-70 {
    right: 7rem !important;
  }
  .right-md-unit-75 {
    right: 7.5rem !important;
  }
  .right-md-unit-80 {
    right: 8rem !important;
  }
  .right-md-unit-85 {
    right: 8.5rem !important;
  }
  .right-md-unit-90 {
    right: 9rem !important;
  }
  .right-md-unit-95 {
    right: 9.5rem !important;
  }
  .right-md-unit-100 {
    right: 10rem !important;
  }
  .right-md-unit-130 {
    right: 13rem !important;
  }
  .right-md-unit-140 {
    right: 14rem !important;
  }
  .right-md-unit-150 {
    right: 15rem !important;
  }
  .right-md-unit-200 {
    right: 20rem !important;
  }
  .right-md-unit-250 {
    right: 25rem !important;
  }
  .right-md-unit-300 {
    right: 30rem !important;
  }
  .right-md-unit-400 {
    right: 40rem !important;
  }
  .right-md-unit-410 {
    right: 41rem !important;
  }
  .right-md-unit-450 {
    right: 45rem !important;
  }
  .bottom-md-unit-0 {
    bottom: 0 !important;
  }
  .bottom-md-unit-1 {
    bottom: 0.1rem !important;
  }
  .bottom-md-unit-2 {
    bottom: 0.2rem !important;
  }
  .bottom-md-unit-3 {
    bottom: 0.3rem !important;
  }
  .bottom-md-unit-4 {
    bottom: 0.4rem !important;
  }
  .bottom-md-unit-5 {
    bottom: 0.5rem !important;
  }
  .bottom-md-unit-6 {
    bottom: 0.6rem !important;
  }
  .bottom-md-unit-7 {
    bottom: 0.7rem !important;
  }
  .bottom-md-unit-8 {
    bottom: 0.8rem !important;
  }
  .bottom-md-unit-9 {
    bottom: 0.9rem !important;
  }
  .bottom-md-unit-10 {
    bottom: 1rem !important;
  }
  .bottom-md-unit-11 {
    bottom: 1.1rem !important;
  }
  .bottom-md-unit-12 {
    bottom: 1.2rem !important;
  }
  .bottom-md-unit-13 {
    bottom: 1.3rem !important;
  }
  .bottom-md-unit-14 {
    bottom: 1.4rem !important;
  }
  .bottom-md-unit-15 {
    bottom: 1.5rem !important;
  }
  .bottom-md-unit-16 {
    bottom: 1.6rem !important;
  }
  .bottom-md-unit-17 {
    bottom: 1.7rem !important;
  }
  .bottom-md-unit-18 {
    bottom: 1.8rem !important;
  }
  .bottom-md-unit-19 {
    bottom: 1.9rem !important;
  }
  .bottom-md-unit-20 {
    bottom: 2rem !important;
  }
  .bottom-md-unit-25 {
    bottom: 2.5rem !important;
  }
  .bottom-md-unit-30 {
    bottom: 3rem !important;
  }
  .bottom-md-unit-35 {
    bottom: 3.5rem !important;
  }
  .bottom-md-unit-40 {
    bottom: 4rem !important;
  }
  .bottom-md-unit-45 {
    bottom: 4.5rem !important;
  }
  .bottom-md-unit-50 {
    bottom: 5rem !important;
  }
  .bottom-md-unit-55 {
    bottom: 5.5rem !important;
  }
  .bottom-md-unit-60 {
    bottom: 6rem !important;
  }
  .bottom-md-unit-65 {
    bottom: 6.5rem !important;
  }
  .bottom-md-unit-70 {
    bottom: 7rem !important;
  }
  .bottom-md-unit-75 {
    bottom: 7.5rem !important;
  }
  .bottom-md-unit-80 {
    bottom: 8rem !important;
  }
  .bottom-md-unit-85 {
    bottom: 8.5rem !important;
  }
  .bottom-md-unit-90 {
    bottom: 9rem !important;
  }
  .bottom-md-unit-95 {
    bottom: 9.5rem !important;
  }
  .bottom-md-unit-100 {
    bottom: 10rem !important;
  }
  .bottom-md-unit-130 {
    bottom: 13rem !important;
  }
  .bottom-md-unit-140 {
    bottom: 14rem !important;
  }
  .bottom-md-unit-150 {
    bottom: 15rem !important;
  }
  .bottom-md-unit-200 {
    bottom: 20rem !important;
  }
  .bottom-md-unit-250 {
    bottom: 25rem !important;
  }
  .bottom-md-unit-300 {
    bottom: 30rem !important;
  }
  .bottom-md-unit-400 {
    bottom: 40rem !important;
  }
  .bottom-md-unit-410 {
    bottom: 41rem !important;
  }
  .bottom-md-unit-450 {
    bottom: 45rem !important;
  }
  .left-md-unit-0 {
    left: 0 !important;
  }
  .left-md-unit-1 {
    left: 0.1rem !important;
  }
  .left-md-unit-2 {
    left: 0.2rem !important;
  }
  .left-md-unit-3 {
    left: 0.3rem !important;
  }
  .left-md-unit-4 {
    left: 0.4rem !important;
  }
  .left-md-unit-5 {
    left: 0.5rem !important;
  }
  .left-md-unit-6 {
    left: 0.6rem !important;
  }
  .left-md-unit-7 {
    left: 0.7rem !important;
  }
  .left-md-unit-8 {
    left: 0.8rem !important;
  }
  .left-md-unit-9 {
    left: 0.9rem !important;
  }
  .left-md-unit-10 {
    left: 1rem !important;
  }
  .left-md-unit-11 {
    left: 1.1rem !important;
  }
  .left-md-unit-12 {
    left: 1.2rem !important;
  }
  .left-md-unit-13 {
    left: 1.3rem !important;
  }
  .left-md-unit-14 {
    left: 1.4rem !important;
  }
  .left-md-unit-15 {
    left: 1.5rem !important;
  }
  .left-md-unit-16 {
    left: 1.6rem !important;
  }
  .left-md-unit-17 {
    left: 1.7rem !important;
  }
  .left-md-unit-18 {
    left: 1.8rem !important;
  }
  .left-md-unit-19 {
    left: 1.9rem !important;
  }
  .left-md-unit-20 {
    left: 2rem !important;
  }
  .left-md-unit-25 {
    left: 2.5rem !important;
  }
  .left-md-unit-30 {
    left: 3rem !important;
  }
  .left-md-unit-35 {
    left: 3.5rem !important;
  }
  .left-md-unit-40 {
    left: 4rem !important;
  }
  .left-md-unit-45 {
    left: 4.5rem !important;
  }
  .left-md-unit-50 {
    left: 5rem !important;
  }
  .left-md-unit-55 {
    left: 5.5rem !important;
  }
  .left-md-unit-60 {
    left: 6rem !important;
  }
  .left-md-unit-65 {
    left: 6.5rem !important;
  }
  .left-md-unit-70 {
    left: 7rem !important;
  }
  .left-md-unit-75 {
    left: 7.5rem !important;
  }
  .left-md-unit-80 {
    left: 8rem !important;
  }
  .left-md-unit-85 {
    left: 8.5rem !important;
  }
  .left-md-unit-90 {
    left: 9rem !important;
  }
  .left-md-unit-95 {
    left: 9.5rem !important;
  }
  .left-md-unit-100 {
    left: 10rem !important;
  }
  .left-md-unit-130 {
    left: 13rem !important;
  }
  .left-md-unit-140 {
    left: 14rem !important;
  }
  .left-md-unit-150 {
    left: 15rem !important;
  }
  .left-md-unit-200 {
    left: 20rem !important;
  }
  .left-md-unit-250 {
    left: 25rem !important;
  }
  .left-md-unit-300 {
    left: 30rem !important;
  }
  .left-md-unit-400 {
    left: 40rem !important;
  }
  .left-md-unit-410 {
    left: 41rem !important;
  }
  .left-md-unit-450 {
    left: 45rem !important;
  }
}
@media (min-width: 992px) {
  .top-lg-0 {
    top: 0 !important;
  }
  .top-lg-1 {
    top: 0.1rem !important;
  }
  .top-lg-2 {
    top: 0.2rem !important;
  }
  .top-lg-3 {
    top: 0.3rem !important;
  }
  .top-lg-4 {
    top: 0.4rem !important;
  }
  .top-lg-5 {
    top: 0.5rem !important;
  }
  .top-lg-6 {
    top: 0.6rem !important;
  }
  .top-lg-7 {
    top: 0.7rem !important;
  }
  .top-lg-8 {
    top: 0.8rem !important;
  }
  .top-lg-9 {
    top: 0.9rem !important;
  }
  .top-lg-10 {
    top: 1rem !important;
  }
  .top-lg-11 {
    top: 1.1rem !important;
  }
  .top-lg-12 {
    top: 1.2rem !important;
  }
  .top-lg-13 {
    top: 1.3rem !important;
  }
  .top-lg-14 {
    top: 1.4rem !important;
  }
  .top-lg-15 {
    top: 1.5rem !important;
  }
  .top-lg-16 {
    top: 1.6rem !important;
  }
  .top-lg-17 {
    top: 1.7rem !important;
  }
  .top-lg-18 {
    top: 1.8rem !important;
  }
  .top-lg-19 {
    top: 1.9rem !important;
  }
  .top-lg-20 {
    top: 2rem !important;
  }
  .top-lg-25 {
    top: 2.5rem !important;
  }
  .top-lg-30 {
    top: 3rem !important;
  }
  .top-lg-35 {
    top: 3.5rem !important;
  }
  .top-lg-40 {
    top: 4rem !important;
  }
  .top-lg-45 {
    top: 4.5rem !important;
  }
  .top-lg-50 {
    top: 5rem !important;
  }
  .top-lg-55 {
    top: 5.5rem !important;
  }
  .top-lg-60 {
    top: 6rem !important;
  }
  .top-lg-65 {
    top: 6.5rem !important;
  }
  .top-lg-70 {
    top: 7rem !important;
  }
  .top-lg-75 {
    top: 7.5rem !important;
  }
  .top-lg-80 {
    top: 8rem !important;
  }
  .top-lg-85 {
    top: 8.5rem !important;
  }
  .top-lg-90 {
    top: 9rem !important;
  }
  .top-lg-95 {
    top: 9.5rem !important;
  }
  .top-lg-100 {
    top: 10rem !important;
  }
  .top-lg-130 {
    top: 13rem !important;
  }
  .top-lg-140 {
    top: 14rem !important;
  }
  .top-lg-150 {
    top: 15rem !important;
  }
  .top-lg-200 {
    top: 20rem !important;
  }
  .top-lg-250 {
    top: 25rem !important;
  }
  .top-lg-300 {
    top: 30rem !important;
  }
  .top-lg-400 {
    top: 40rem !important;
  }
  .top-lg-410 {
    top: 41rem !important;
  }
  .top-lg-450 {
    top: 45rem !important;
  }
  .right-lg-0 {
    right: 0 !important;
  }
  .right-lg-1 {
    right: 0.1rem !important;
  }
  .right-lg-2 {
    right: 0.2rem !important;
  }
  .right-lg-3 {
    right: 0.3rem !important;
  }
  .right-lg-4 {
    right: 0.4rem !important;
  }
  .right-lg-5 {
    right: 0.5rem !important;
  }
  .right-lg-6 {
    right: 0.6rem !important;
  }
  .right-lg-7 {
    right: 0.7rem !important;
  }
  .right-lg-8 {
    right: 0.8rem !important;
  }
  .right-lg-9 {
    right: 0.9rem !important;
  }
  .right-lg-10 {
    right: 1rem !important;
  }
  .right-lg-11 {
    right: 1.1rem !important;
  }
  .right-lg-12 {
    right: 1.2rem !important;
  }
  .right-lg-13 {
    right: 1.3rem !important;
  }
  .right-lg-14 {
    right: 1.4rem !important;
  }
  .right-lg-15 {
    right: 1.5rem !important;
  }
  .right-lg-16 {
    right: 1.6rem !important;
  }
  .right-lg-17 {
    right: 1.7rem !important;
  }
  .right-lg-18 {
    right: 1.8rem !important;
  }
  .right-lg-19 {
    right: 1.9rem !important;
  }
  .right-lg-20 {
    right: 2rem !important;
  }
  .right-lg-25 {
    right: 2.5rem !important;
  }
  .right-lg-30 {
    right: 3rem !important;
  }
  .right-lg-35 {
    right: 3.5rem !important;
  }
  .right-lg-40 {
    right: 4rem !important;
  }
  .right-lg-45 {
    right: 4.5rem !important;
  }
  .right-lg-50 {
    right: 5rem !important;
  }
  .right-lg-55 {
    right: 5.5rem !important;
  }
  .right-lg-60 {
    right: 6rem !important;
  }
  .right-lg-65 {
    right: 6.5rem !important;
  }
  .right-lg-70 {
    right: 7rem !important;
  }
  .right-lg-75 {
    right: 7.5rem !important;
  }
  .right-lg-80 {
    right: 8rem !important;
  }
  .right-lg-85 {
    right: 8.5rem !important;
  }
  .right-lg-90 {
    right: 9rem !important;
  }
  .right-lg-95 {
    right: 9.5rem !important;
  }
  .right-lg-100 {
    right: 10rem !important;
  }
  .right-lg-130 {
    right: 13rem !important;
  }
  .right-lg-140 {
    right: 14rem !important;
  }
  .right-lg-150 {
    right: 15rem !important;
  }
  .right-lg-200 {
    right: 20rem !important;
  }
  .right-lg-250 {
    right: 25rem !important;
  }
  .right-lg-300 {
    right: 30rem !important;
  }
  .right-lg-400 {
    right: 40rem !important;
  }
  .right-lg-410 {
    right: 41rem !important;
  }
  .right-lg-450 {
    right: 45rem !important;
  }
  .bottom-lg-0 {
    bottom: 0 !important;
  }
  .bottom-lg-1 {
    bottom: 0.1rem !important;
  }
  .bottom-lg-2 {
    bottom: 0.2rem !important;
  }
  .bottom-lg-3 {
    bottom: 0.3rem !important;
  }
  .bottom-lg-4 {
    bottom: 0.4rem !important;
  }
  .bottom-lg-5 {
    bottom: 0.5rem !important;
  }
  .bottom-lg-6 {
    bottom: 0.6rem !important;
  }
  .bottom-lg-7 {
    bottom: 0.7rem !important;
  }
  .bottom-lg-8 {
    bottom: 0.8rem !important;
  }
  .bottom-lg-9 {
    bottom: 0.9rem !important;
  }
  .bottom-lg-10 {
    bottom: 1rem !important;
  }
  .bottom-lg-11 {
    bottom: 1.1rem !important;
  }
  .bottom-lg-12 {
    bottom: 1.2rem !important;
  }
  .bottom-lg-13 {
    bottom: 1.3rem !important;
  }
  .bottom-lg-14 {
    bottom: 1.4rem !important;
  }
  .bottom-lg-15 {
    bottom: 1.5rem !important;
  }
  .bottom-lg-16 {
    bottom: 1.6rem !important;
  }
  .bottom-lg-17 {
    bottom: 1.7rem !important;
  }
  .bottom-lg-18 {
    bottom: 1.8rem !important;
  }
  .bottom-lg-19 {
    bottom: 1.9rem !important;
  }
  .bottom-lg-20 {
    bottom: 2rem !important;
  }
  .bottom-lg-25 {
    bottom: 2.5rem !important;
  }
  .bottom-lg-30 {
    bottom: 3rem !important;
  }
  .bottom-lg-35 {
    bottom: 3.5rem !important;
  }
  .bottom-lg-40 {
    bottom: 4rem !important;
  }
  .bottom-lg-45 {
    bottom: 4.5rem !important;
  }
  .bottom-lg-50 {
    bottom: 5rem !important;
  }
  .bottom-lg-55 {
    bottom: 5.5rem !important;
  }
  .bottom-lg-60 {
    bottom: 6rem !important;
  }
  .bottom-lg-65 {
    bottom: 6.5rem !important;
  }
  .bottom-lg-70 {
    bottom: 7rem !important;
  }
  .bottom-lg-75 {
    bottom: 7.5rem !important;
  }
  .bottom-lg-80 {
    bottom: 8rem !important;
  }
  .bottom-lg-85 {
    bottom: 8.5rem !important;
  }
  .bottom-lg-90 {
    bottom: 9rem !important;
  }
  .bottom-lg-95 {
    bottom: 9.5rem !important;
  }
  .bottom-lg-100 {
    bottom: 10rem !important;
  }
  .bottom-lg-130 {
    bottom: 13rem !important;
  }
  .bottom-lg-140 {
    bottom: 14rem !important;
  }
  .bottom-lg-150 {
    bottom: 15rem !important;
  }
  .bottom-lg-200 {
    bottom: 20rem !important;
  }
  .bottom-lg-250 {
    bottom: 25rem !important;
  }
  .bottom-lg-300 {
    bottom: 30rem !important;
  }
  .bottom-lg-400 {
    bottom: 40rem !important;
  }
  .bottom-lg-410 {
    bottom: 41rem !important;
  }
  .bottom-lg-450 {
    bottom: 45rem !important;
  }
  .left-lg-0 {
    left: 0 !important;
  }
  .left-lg-1 {
    left: 0.1rem !important;
  }
  .left-lg-2 {
    left: 0.2rem !important;
  }
  .left-lg-3 {
    left: 0.3rem !important;
  }
  .left-lg-4 {
    left: 0.4rem !important;
  }
  .left-lg-5 {
    left: 0.5rem !important;
  }
  .left-lg-6 {
    left: 0.6rem !important;
  }
  .left-lg-7 {
    left: 0.7rem !important;
  }
  .left-lg-8 {
    left: 0.8rem !important;
  }
  .left-lg-9 {
    left: 0.9rem !important;
  }
  .left-lg-10 {
    left: 1rem !important;
  }
  .left-lg-11 {
    left: 1.1rem !important;
  }
  .left-lg-12 {
    left: 1.2rem !important;
  }
  .left-lg-13 {
    left: 1.3rem !important;
  }
  .left-lg-14 {
    left: 1.4rem !important;
  }
  .left-lg-15 {
    left: 1.5rem !important;
  }
  .left-lg-16 {
    left: 1.6rem !important;
  }
  .left-lg-17 {
    left: 1.7rem !important;
  }
  .left-lg-18 {
    left: 1.8rem !important;
  }
  .left-lg-19 {
    left: 1.9rem !important;
  }
  .left-lg-20 {
    left: 2rem !important;
  }
  .left-lg-25 {
    left: 2.5rem !important;
  }
  .left-lg-30 {
    left: 3rem !important;
  }
  .left-lg-35 {
    left: 3.5rem !important;
  }
  .left-lg-40 {
    left: 4rem !important;
  }
  .left-lg-45 {
    left: 4.5rem !important;
  }
  .left-lg-50 {
    left: 5rem !important;
  }
  .left-lg-55 {
    left: 5.5rem !important;
  }
  .left-lg-60 {
    left: 6rem !important;
  }
  .left-lg-65 {
    left: 6.5rem !important;
  }
  .left-lg-70 {
    left: 7rem !important;
  }
  .left-lg-75 {
    left: 7.5rem !important;
  }
  .left-lg-80 {
    left: 8rem !important;
  }
  .left-lg-85 {
    left: 8.5rem !important;
  }
  .left-lg-90 {
    left: 9rem !important;
  }
  .left-lg-95 {
    left: 9.5rem !important;
  }
  .left-lg-100 {
    left: 10rem !important;
  }
  .left-lg-130 {
    left: 13rem !important;
  }
  .left-lg-140 {
    left: 14rem !important;
  }
  .left-lg-150 {
    left: 15rem !important;
  }
  .left-lg-200 {
    left: 20rem !important;
  }
  .left-lg-250 {
    left: 25rem !important;
  }
  .left-lg-300 {
    left: 30rem !important;
  }
  .left-lg-400 {
    left: 40rem !important;
  }
  .left-lg-410 {
    left: 41rem !important;
  }
  .left-lg-450 {
    left: 45rem !important;
  }
  .top-lg-unit-0 {
    top: 0 !important;
  }
  .top-lg-unit-1 {
    top: 0.1rem !important;
  }
  .top-lg-unit-2 {
    top: 0.2rem !important;
  }
  .top-lg-unit-3 {
    top: 0.3rem !important;
  }
  .top-lg-unit-4 {
    top: 0.4rem !important;
  }
  .top-lg-unit-5 {
    top: 0.5rem !important;
  }
  .top-lg-unit-6 {
    top: 0.6rem !important;
  }
  .top-lg-unit-7 {
    top: 0.7rem !important;
  }
  .top-lg-unit-8 {
    top: 0.8rem !important;
  }
  .top-lg-unit-9 {
    top: 0.9rem !important;
  }
  .top-lg-unit-10 {
    top: 1rem !important;
  }
  .top-lg-unit-11 {
    top: 1.1rem !important;
  }
  .top-lg-unit-12 {
    top: 1.2rem !important;
  }
  .top-lg-unit-13 {
    top: 1.3rem !important;
  }
  .top-lg-unit-14 {
    top: 1.4rem !important;
  }
  .top-lg-unit-15 {
    top: 1.5rem !important;
  }
  .top-lg-unit-16 {
    top: 1.6rem !important;
  }
  .top-lg-unit-17 {
    top: 1.7rem !important;
  }
  .top-lg-unit-18 {
    top: 1.8rem !important;
  }
  .top-lg-unit-19 {
    top: 1.9rem !important;
  }
  .top-lg-unit-20 {
    top: 2rem !important;
  }
  .top-lg-unit-25 {
    top: 2.5rem !important;
  }
  .top-lg-unit-30 {
    top: 3rem !important;
  }
  .top-lg-unit-35 {
    top: 3.5rem !important;
  }
  .top-lg-unit-40 {
    top: 4rem !important;
  }
  .top-lg-unit-45 {
    top: 4.5rem !important;
  }
  .top-lg-unit-50 {
    top: 5rem !important;
  }
  .top-lg-unit-55 {
    top: 5.5rem !important;
  }
  .top-lg-unit-60 {
    top: 6rem !important;
  }
  .top-lg-unit-65 {
    top: 6.5rem !important;
  }
  .top-lg-unit-70 {
    top: 7rem !important;
  }
  .top-lg-unit-75 {
    top: 7.5rem !important;
  }
  .top-lg-unit-80 {
    top: 8rem !important;
  }
  .top-lg-unit-85 {
    top: 8.5rem !important;
  }
  .top-lg-unit-90 {
    top: 9rem !important;
  }
  .top-lg-unit-95 {
    top: 9.5rem !important;
  }
  .top-lg-unit-100 {
    top: 10rem !important;
  }
  .top-lg-unit-130 {
    top: 13rem !important;
  }
  .top-lg-unit-140 {
    top: 14rem !important;
  }
  .top-lg-unit-150 {
    top: 15rem !important;
  }
  .top-lg-unit-200 {
    top: 20rem !important;
  }
  .top-lg-unit-250 {
    top: 25rem !important;
  }
  .top-lg-unit-300 {
    top: 30rem !important;
  }
  .top-lg-unit-400 {
    top: 40rem !important;
  }
  .top-lg-unit-410 {
    top: 41rem !important;
  }
  .top-lg-unit-450 {
    top: 45rem !important;
  }
  .right-lg-unit-0 {
    right: 0 !important;
  }
  .right-lg-unit-1 {
    right: 0.1rem !important;
  }
  .right-lg-unit-2 {
    right: 0.2rem !important;
  }
  .right-lg-unit-3 {
    right: 0.3rem !important;
  }
  .right-lg-unit-4 {
    right: 0.4rem !important;
  }
  .right-lg-unit-5 {
    right: 0.5rem !important;
  }
  .right-lg-unit-6 {
    right: 0.6rem !important;
  }
  .right-lg-unit-7 {
    right: 0.7rem !important;
  }
  .right-lg-unit-8 {
    right: 0.8rem !important;
  }
  .right-lg-unit-9 {
    right: 0.9rem !important;
  }
  .right-lg-unit-10 {
    right: 1rem !important;
  }
  .right-lg-unit-11 {
    right: 1.1rem !important;
  }
  .right-lg-unit-12 {
    right: 1.2rem !important;
  }
  .right-lg-unit-13 {
    right: 1.3rem !important;
  }
  .right-lg-unit-14 {
    right: 1.4rem !important;
  }
  .right-lg-unit-15 {
    right: 1.5rem !important;
  }
  .right-lg-unit-16 {
    right: 1.6rem !important;
  }
  .right-lg-unit-17 {
    right: 1.7rem !important;
  }
  .right-lg-unit-18 {
    right: 1.8rem !important;
  }
  .right-lg-unit-19 {
    right: 1.9rem !important;
  }
  .right-lg-unit-20 {
    right: 2rem !important;
  }
  .right-lg-unit-25 {
    right: 2.5rem !important;
  }
  .right-lg-unit-30 {
    right: 3rem !important;
  }
  .right-lg-unit-35 {
    right: 3.5rem !important;
  }
  .right-lg-unit-40 {
    right: 4rem !important;
  }
  .right-lg-unit-45 {
    right: 4.5rem !important;
  }
  .right-lg-unit-50 {
    right: 5rem !important;
  }
  .right-lg-unit-55 {
    right: 5.5rem !important;
  }
  .right-lg-unit-60 {
    right: 6rem !important;
  }
  .right-lg-unit-65 {
    right: 6.5rem !important;
  }
  .right-lg-unit-70 {
    right: 7rem !important;
  }
  .right-lg-unit-75 {
    right: 7.5rem !important;
  }
  .right-lg-unit-80 {
    right: 8rem !important;
  }
  .right-lg-unit-85 {
    right: 8.5rem !important;
  }
  .right-lg-unit-90 {
    right: 9rem !important;
  }
  .right-lg-unit-95 {
    right: 9.5rem !important;
  }
  .right-lg-unit-100 {
    right: 10rem !important;
  }
  .right-lg-unit-130 {
    right: 13rem !important;
  }
  .right-lg-unit-140 {
    right: 14rem !important;
  }
  .right-lg-unit-150 {
    right: 15rem !important;
  }
  .right-lg-unit-200 {
    right: 20rem !important;
  }
  .right-lg-unit-250 {
    right: 25rem !important;
  }
  .right-lg-unit-300 {
    right: 30rem !important;
  }
  .right-lg-unit-400 {
    right: 40rem !important;
  }
  .right-lg-unit-410 {
    right: 41rem !important;
  }
  .right-lg-unit-450 {
    right: 45rem !important;
  }
  .bottom-lg-unit-0 {
    bottom: 0 !important;
  }
  .bottom-lg-unit-1 {
    bottom: 0.1rem !important;
  }
  .bottom-lg-unit-2 {
    bottom: 0.2rem !important;
  }
  .bottom-lg-unit-3 {
    bottom: 0.3rem !important;
  }
  .bottom-lg-unit-4 {
    bottom: 0.4rem !important;
  }
  .bottom-lg-unit-5 {
    bottom: 0.5rem !important;
  }
  .bottom-lg-unit-6 {
    bottom: 0.6rem !important;
  }
  .bottom-lg-unit-7 {
    bottom: 0.7rem !important;
  }
  .bottom-lg-unit-8 {
    bottom: 0.8rem !important;
  }
  .bottom-lg-unit-9 {
    bottom: 0.9rem !important;
  }
  .bottom-lg-unit-10 {
    bottom: 1rem !important;
  }
  .bottom-lg-unit-11 {
    bottom: 1.1rem !important;
  }
  .bottom-lg-unit-12 {
    bottom: 1.2rem !important;
  }
  .bottom-lg-unit-13 {
    bottom: 1.3rem !important;
  }
  .bottom-lg-unit-14 {
    bottom: 1.4rem !important;
  }
  .bottom-lg-unit-15 {
    bottom: 1.5rem !important;
  }
  .bottom-lg-unit-16 {
    bottom: 1.6rem !important;
  }
  .bottom-lg-unit-17 {
    bottom: 1.7rem !important;
  }
  .bottom-lg-unit-18 {
    bottom: 1.8rem !important;
  }
  .bottom-lg-unit-19 {
    bottom: 1.9rem !important;
  }
  .bottom-lg-unit-20 {
    bottom: 2rem !important;
  }
  .bottom-lg-unit-25 {
    bottom: 2.5rem !important;
  }
  .bottom-lg-unit-30 {
    bottom: 3rem !important;
  }
  .bottom-lg-unit-35 {
    bottom: 3.5rem !important;
  }
  .bottom-lg-unit-40 {
    bottom: 4rem !important;
  }
  .bottom-lg-unit-45 {
    bottom: 4.5rem !important;
  }
  .bottom-lg-unit-50 {
    bottom: 5rem !important;
  }
  .bottom-lg-unit-55 {
    bottom: 5.5rem !important;
  }
  .bottom-lg-unit-60 {
    bottom: 6rem !important;
  }
  .bottom-lg-unit-65 {
    bottom: 6.5rem !important;
  }
  .bottom-lg-unit-70 {
    bottom: 7rem !important;
  }
  .bottom-lg-unit-75 {
    bottom: 7.5rem !important;
  }
  .bottom-lg-unit-80 {
    bottom: 8rem !important;
  }
  .bottom-lg-unit-85 {
    bottom: 8.5rem !important;
  }
  .bottom-lg-unit-90 {
    bottom: 9rem !important;
  }
  .bottom-lg-unit-95 {
    bottom: 9.5rem !important;
  }
  .bottom-lg-unit-100 {
    bottom: 10rem !important;
  }
  .bottom-lg-unit-130 {
    bottom: 13rem !important;
  }
  .bottom-lg-unit-140 {
    bottom: 14rem !important;
  }
  .bottom-lg-unit-150 {
    bottom: 15rem !important;
  }
  .bottom-lg-unit-200 {
    bottom: 20rem !important;
  }
  .bottom-lg-unit-250 {
    bottom: 25rem !important;
  }
  .bottom-lg-unit-300 {
    bottom: 30rem !important;
  }
  .bottom-lg-unit-400 {
    bottom: 40rem !important;
  }
  .bottom-lg-unit-410 {
    bottom: 41rem !important;
  }
  .bottom-lg-unit-450 {
    bottom: 45rem !important;
  }
  .left-lg-unit-0 {
    left: 0 !important;
  }
  .left-lg-unit-1 {
    left: 0.1rem !important;
  }
  .left-lg-unit-2 {
    left: 0.2rem !important;
  }
  .left-lg-unit-3 {
    left: 0.3rem !important;
  }
  .left-lg-unit-4 {
    left: 0.4rem !important;
  }
  .left-lg-unit-5 {
    left: 0.5rem !important;
  }
  .left-lg-unit-6 {
    left: 0.6rem !important;
  }
  .left-lg-unit-7 {
    left: 0.7rem !important;
  }
  .left-lg-unit-8 {
    left: 0.8rem !important;
  }
  .left-lg-unit-9 {
    left: 0.9rem !important;
  }
  .left-lg-unit-10 {
    left: 1rem !important;
  }
  .left-lg-unit-11 {
    left: 1.1rem !important;
  }
  .left-lg-unit-12 {
    left: 1.2rem !important;
  }
  .left-lg-unit-13 {
    left: 1.3rem !important;
  }
  .left-lg-unit-14 {
    left: 1.4rem !important;
  }
  .left-lg-unit-15 {
    left: 1.5rem !important;
  }
  .left-lg-unit-16 {
    left: 1.6rem !important;
  }
  .left-lg-unit-17 {
    left: 1.7rem !important;
  }
  .left-lg-unit-18 {
    left: 1.8rem !important;
  }
  .left-lg-unit-19 {
    left: 1.9rem !important;
  }
  .left-lg-unit-20 {
    left: 2rem !important;
  }
  .left-lg-unit-25 {
    left: 2.5rem !important;
  }
  .left-lg-unit-30 {
    left: 3rem !important;
  }
  .left-lg-unit-35 {
    left: 3.5rem !important;
  }
  .left-lg-unit-40 {
    left: 4rem !important;
  }
  .left-lg-unit-45 {
    left: 4.5rem !important;
  }
  .left-lg-unit-50 {
    left: 5rem !important;
  }
  .left-lg-unit-55 {
    left: 5.5rem !important;
  }
  .left-lg-unit-60 {
    left: 6rem !important;
  }
  .left-lg-unit-65 {
    left: 6.5rem !important;
  }
  .left-lg-unit-70 {
    left: 7rem !important;
  }
  .left-lg-unit-75 {
    left: 7.5rem !important;
  }
  .left-lg-unit-80 {
    left: 8rem !important;
  }
  .left-lg-unit-85 {
    left: 8.5rem !important;
  }
  .left-lg-unit-90 {
    left: 9rem !important;
  }
  .left-lg-unit-95 {
    left: 9.5rem !important;
  }
  .left-lg-unit-100 {
    left: 10rem !important;
  }
  .left-lg-unit-130 {
    left: 13rem !important;
  }
  .left-lg-unit-140 {
    left: 14rem !important;
  }
  .left-lg-unit-150 {
    left: 15rem !important;
  }
  .left-lg-unit-200 {
    left: 20rem !important;
  }
  .left-lg-unit-250 {
    left: 25rem !important;
  }
  .left-lg-unit-300 {
    left: 30rem !important;
  }
  .left-lg-unit-400 {
    left: 40rem !important;
  }
  .left-lg-unit-410 {
    left: 41rem !important;
  }
  .left-lg-unit-450 {
    left: 45rem !important;
  }
}
@media (min-width: 1200px) {
  .top-xl-0 {
    top: 0 !important;
  }
  .top-xl-1 {
    top: 0.1rem !important;
  }
  .top-xl-2 {
    top: 0.2rem !important;
  }
  .top-xl-3 {
    top: 0.3rem !important;
  }
  .top-xl-4 {
    top: 0.4rem !important;
  }
  .top-xl-5 {
    top: 0.5rem !important;
  }
  .top-xl-6 {
    top: 0.6rem !important;
  }
  .top-xl-7 {
    top: 0.7rem !important;
  }
  .top-xl-8 {
    top: 0.8rem !important;
  }
  .top-xl-9 {
    top: 0.9rem !important;
  }
  .top-xl-10 {
    top: 1rem !important;
  }
  .top-xl-11 {
    top: 1.1rem !important;
  }
  .top-xl-12 {
    top: 1.2rem !important;
  }
  .top-xl-13 {
    top: 1.3rem !important;
  }
  .top-xl-14 {
    top: 1.4rem !important;
  }
  .top-xl-15 {
    top: 1.5rem !important;
  }
  .top-xl-16 {
    top: 1.6rem !important;
  }
  .top-xl-17 {
    top: 1.7rem !important;
  }
  .top-xl-18 {
    top: 1.8rem !important;
  }
  .top-xl-19 {
    top: 1.9rem !important;
  }
  .top-xl-20 {
    top: 2rem !important;
  }
  .top-xl-25 {
    top: 2.5rem !important;
  }
  .top-xl-30 {
    top: 3rem !important;
  }
  .top-xl-35 {
    top: 3.5rem !important;
  }
  .top-xl-40 {
    top: 4rem !important;
  }
  .top-xl-45 {
    top: 4.5rem !important;
  }
  .top-xl-50 {
    top: 5rem !important;
  }
  .top-xl-55 {
    top: 5.5rem !important;
  }
  .top-xl-60 {
    top: 6rem !important;
  }
  .top-xl-65 {
    top: 6.5rem !important;
  }
  .top-xl-70 {
    top: 7rem !important;
  }
  .top-xl-75 {
    top: 7.5rem !important;
  }
  .top-xl-80 {
    top: 8rem !important;
  }
  .top-xl-85 {
    top: 8.5rem !important;
  }
  .top-xl-90 {
    top: 9rem !important;
  }
  .top-xl-95 {
    top: 9.5rem !important;
  }
  .top-xl-100 {
    top: 10rem !important;
  }
  .top-xl-130 {
    top: 13rem !important;
  }
  .top-xl-140 {
    top: 14rem !important;
  }
  .top-xl-150 {
    top: 15rem !important;
  }
  .top-xl-200 {
    top: 20rem !important;
  }
  .top-xl-250 {
    top: 25rem !important;
  }
  .top-xl-300 {
    top: 30rem !important;
  }
  .top-xl-400 {
    top: 40rem !important;
  }
  .top-xl-410 {
    top: 41rem !important;
  }
  .top-xl-450 {
    top: 45rem !important;
  }
  .right-xl-0 {
    right: 0 !important;
  }
  .right-xl-1 {
    right: 0.1rem !important;
  }
  .right-xl-2 {
    right: 0.2rem !important;
  }
  .right-xl-3 {
    right: 0.3rem !important;
  }
  .right-xl-4 {
    right: 0.4rem !important;
  }
  .right-xl-5 {
    right: 0.5rem !important;
  }
  .right-xl-6 {
    right: 0.6rem !important;
  }
  .right-xl-7 {
    right: 0.7rem !important;
  }
  .right-xl-8 {
    right: 0.8rem !important;
  }
  .right-xl-9 {
    right: 0.9rem !important;
  }
  .right-xl-10 {
    right: 1rem !important;
  }
  .right-xl-11 {
    right: 1.1rem !important;
  }
  .right-xl-12 {
    right: 1.2rem !important;
  }
  .right-xl-13 {
    right: 1.3rem !important;
  }
  .right-xl-14 {
    right: 1.4rem !important;
  }
  .right-xl-15 {
    right: 1.5rem !important;
  }
  .right-xl-16 {
    right: 1.6rem !important;
  }
  .right-xl-17 {
    right: 1.7rem !important;
  }
  .right-xl-18 {
    right: 1.8rem !important;
  }
  .right-xl-19 {
    right: 1.9rem !important;
  }
  .right-xl-20 {
    right: 2rem !important;
  }
  .right-xl-25 {
    right: 2.5rem !important;
  }
  .right-xl-30 {
    right: 3rem !important;
  }
  .right-xl-35 {
    right: 3.5rem !important;
  }
  .right-xl-40 {
    right: 4rem !important;
  }
  .right-xl-45 {
    right: 4.5rem !important;
  }
  .right-xl-50 {
    right: 5rem !important;
  }
  .right-xl-55 {
    right: 5.5rem !important;
  }
  .right-xl-60 {
    right: 6rem !important;
  }
  .right-xl-65 {
    right: 6.5rem !important;
  }
  .right-xl-70 {
    right: 7rem !important;
  }
  .right-xl-75 {
    right: 7.5rem !important;
  }
  .right-xl-80 {
    right: 8rem !important;
  }
  .right-xl-85 {
    right: 8.5rem !important;
  }
  .right-xl-90 {
    right: 9rem !important;
  }
  .right-xl-95 {
    right: 9.5rem !important;
  }
  .right-xl-100 {
    right: 10rem !important;
  }
  .right-xl-130 {
    right: 13rem !important;
  }
  .right-xl-140 {
    right: 14rem !important;
  }
  .right-xl-150 {
    right: 15rem !important;
  }
  .right-xl-200 {
    right: 20rem !important;
  }
  .right-xl-250 {
    right: 25rem !important;
  }
  .right-xl-300 {
    right: 30rem !important;
  }
  .right-xl-400 {
    right: 40rem !important;
  }
  .right-xl-410 {
    right: 41rem !important;
  }
  .right-xl-450 {
    right: 45rem !important;
  }
  .bottom-xl-0 {
    bottom: 0 !important;
  }
  .bottom-xl-1 {
    bottom: 0.1rem !important;
  }
  .bottom-xl-2 {
    bottom: 0.2rem !important;
  }
  .bottom-xl-3 {
    bottom: 0.3rem !important;
  }
  .bottom-xl-4 {
    bottom: 0.4rem !important;
  }
  .bottom-xl-5 {
    bottom: 0.5rem !important;
  }
  .bottom-xl-6 {
    bottom: 0.6rem !important;
  }
  .bottom-xl-7 {
    bottom: 0.7rem !important;
  }
  .bottom-xl-8 {
    bottom: 0.8rem !important;
  }
  .bottom-xl-9 {
    bottom: 0.9rem !important;
  }
  .bottom-xl-10 {
    bottom: 1rem !important;
  }
  .bottom-xl-11 {
    bottom: 1.1rem !important;
  }
  .bottom-xl-12 {
    bottom: 1.2rem !important;
  }
  .bottom-xl-13 {
    bottom: 1.3rem !important;
  }
  .bottom-xl-14 {
    bottom: 1.4rem !important;
  }
  .bottom-xl-15 {
    bottom: 1.5rem !important;
  }
  .bottom-xl-16 {
    bottom: 1.6rem !important;
  }
  .bottom-xl-17 {
    bottom: 1.7rem !important;
  }
  .bottom-xl-18 {
    bottom: 1.8rem !important;
  }
  .bottom-xl-19 {
    bottom: 1.9rem !important;
  }
  .bottom-xl-20 {
    bottom: 2rem !important;
  }
  .bottom-xl-25 {
    bottom: 2.5rem !important;
  }
  .bottom-xl-30 {
    bottom: 3rem !important;
  }
  .bottom-xl-35 {
    bottom: 3.5rem !important;
  }
  .bottom-xl-40 {
    bottom: 4rem !important;
  }
  .bottom-xl-45 {
    bottom: 4.5rem !important;
  }
  .bottom-xl-50 {
    bottom: 5rem !important;
  }
  .bottom-xl-55 {
    bottom: 5.5rem !important;
  }
  .bottom-xl-60 {
    bottom: 6rem !important;
  }
  .bottom-xl-65 {
    bottom: 6.5rem !important;
  }
  .bottom-xl-70 {
    bottom: 7rem !important;
  }
  .bottom-xl-75 {
    bottom: 7.5rem !important;
  }
  .bottom-xl-80 {
    bottom: 8rem !important;
  }
  .bottom-xl-85 {
    bottom: 8.5rem !important;
  }
  .bottom-xl-90 {
    bottom: 9rem !important;
  }
  .bottom-xl-95 {
    bottom: 9.5rem !important;
  }
  .bottom-xl-100 {
    bottom: 10rem !important;
  }
  .bottom-xl-130 {
    bottom: 13rem !important;
  }
  .bottom-xl-140 {
    bottom: 14rem !important;
  }
  .bottom-xl-150 {
    bottom: 15rem !important;
  }
  .bottom-xl-200 {
    bottom: 20rem !important;
  }
  .bottom-xl-250 {
    bottom: 25rem !important;
  }
  .bottom-xl-300 {
    bottom: 30rem !important;
  }
  .bottom-xl-400 {
    bottom: 40rem !important;
  }
  .bottom-xl-410 {
    bottom: 41rem !important;
  }
  .bottom-xl-450 {
    bottom: 45rem !important;
  }
  .left-xl-0 {
    left: 0 !important;
  }
  .left-xl-1 {
    left: 0.1rem !important;
  }
  .left-xl-2 {
    left: 0.2rem !important;
  }
  .left-xl-3 {
    left: 0.3rem !important;
  }
  .left-xl-4 {
    left: 0.4rem !important;
  }
  .left-xl-5 {
    left: 0.5rem !important;
  }
  .left-xl-6 {
    left: 0.6rem !important;
  }
  .left-xl-7 {
    left: 0.7rem !important;
  }
  .left-xl-8 {
    left: 0.8rem !important;
  }
  .left-xl-9 {
    left: 0.9rem !important;
  }
  .left-xl-10 {
    left: 1rem !important;
  }
  .left-xl-11 {
    left: 1.1rem !important;
  }
  .left-xl-12 {
    left: 1.2rem !important;
  }
  .left-xl-13 {
    left: 1.3rem !important;
  }
  .left-xl-14 {
    left: 1.4rem !important;
  }
  .left-xl-15 {
    left: 1.5rem !important;
  }
  .left-xl-16 {
    left: 1.6rem !important;
  }
  .left-xl-17 {
    left: 1.7rem !important;
  }
  .left-xl-18 {
    left: 1.8rem !important;
  }
  .left-xl-19 {
    left: 1.9rem !important;
  }
  .left-xl-20 {
    left: 2rem !important;
  }
  .left-xl-25 {
    left: 2.5rem !important;
  }
  .left-xl-30 {
    left: 3rem !important;
  }
  .left-xl-35 {
    left: 3.5rem !important;
  }
  .left-xl-40 {
    left: 4rem !important;
  }
  .left-xl-45 {
    left: 4.5rem !important;
  }
  .left-xl-50 {
    left: 5rem !important;
  }
  .left-xl-55 {
    left: 5.5rem !important;
  }
  .left-xl-60 {
    left: 6rem !important;
  }
  .left-xl-65 {
    left: 6.5rem !important;
  }
  .left-xl-70 {
    left: 7rem !important;
  }
  .left-xl-75 {
    left: 7.5rem !important;
  }
  .left-xl-80 {
    left: 8rem !important;
  }
  .left-xl-85 {
    left: 8.5rem !important;
  }
  .left-xl-90 {
    left: 9rem !important;
  }
  .left-xl-95 {
    left: 9.5rem !important;
  }
  .left-xl-100 {
    left: 10rem !important;
  }
  .left-xl-130 {
    left: 13rem !important;
  }
  .left-xl-140 {
    left: 14rem !important;
  }
  .left-xl-150 {
    left: 15rem !important;
  }
  .left-xl-200 {
    left: 20rem !important;
  }
  .left-xl-250 {
    left: 25rem !important;
  }
  .left-xl-300 {
    left: 30rem !important;
  }
  .left-xl-400 {
    left: 40rem !important;
  }
  .left-xl-410 {
    left: 41rem !important;
  }
  .left-xl-450 {
    left: 45rem !important;
  }
  .top-xl-unit-0 {
    top: 0 !important;
  }
  .top-xl-unit-1 {
    top: 0.1rem !important;
  }
  .top-xl-unit-2 {
    top: 0.2rem !important;
  }
  .top-xl-unit-3 {
    top: 0.3rem !important;
  }
  .top-xl-unit-4 {
    top: 0.4rem !important;
  }
  .top-xl-unit-5 {
    top: 0.5rem !important;
  }
  .top-xl-unit-6 {
    top: 0.6rem !important;
  }
  .top-xl-unit-7 {
    top: 0.7rem !important;
  }
  .top-xl-unit-8 {
    top: 0.8rem !important;
  }
  .top-xl-unit-9 {
    top: 0.9rem !important;
  }
  .top-xl-unit-10 {
    top: 1rem !important;
  }
  .top-xl-unit-11 {
    top: 1.1rem !important;
  }
  .top-xl-unit-12 {
    top: 1.2rem !important;
  }
  .top-xl-unit-13 {
    top: 1.3rem !important;
  }
  .top-xl-unit-14 {
    top: 1.4rem !important;
  }
  .top-xl-unit-15 {
    top: 1.5rem !important;
  }
  .top-xl-unit-16 {
    top: 1.6rem !important;
  }
  .top-xl-unit-17 {
    top: 1.7rem !important;
  }
  .top-xl-unit-18 {
    top: 1.8rem !important;
  }
  .top-xl-unit-19 {
    top: 1.9rem !important;
  }
  .top-xl-unit-20 {
    top: 2rem !important;
  }
  .top-xl-unit-25 {
    top: 2.5rem !important;
  }
  .top-xl-unit-30 {
    top: 3rem !important;
  }
  .top-xl-unit-35 {
    top: 3.5rem !important;
  }
  .top-xl-unit-40 {
    top: 4rem !important;
  }
  .top-xl-unit-45 {
    top: 4.5rem !important;
  }
  .top-xl-unit-50 {
    top: 5rem !important;
  }
  .top-xl-unit-55 {
    top: 5.5rem !important;
  }
  .top-xl-unit-60 {
    top: 6rem !important;
  }
  .top-xl-unit-65 {
    top: 6.5rem !important;
  }
  .top-xl-unit-70 {
    top: 7rem !important;
  }
  .top-xl-unit-75 {
    top: 7.5rem !important;
  }
  .top-xl-unit-80 {
    top: 8rem !important;
  }
  .top-xl-unit-85 {
    top: 8.5rem !important;
  }
  .top-xl-unit-90 {
    top: 9rem !important;
  }
  .top-xl-unit-95 {
    top: 9.5rem !important;
  }
  .top-xl-unit-100 {
    top: 10rem !important;
  }
  .top-xl-unit-130 {
    top: 13rem !important;
  }
  .top-xl-unit-140 {
    top: 14rem !important;
  }
  .top-xl-unit-150 {
    top: 15rem !important;
  }
  .top-xl-unit-200 {
    top: 20rem !important;
  }
  .top-xl-unit-250 {
    top: 25rem !important;
  }
  .top-xl-unit-300 {
    top: 30rem !important;
  }
  .top-xl-unit-400 {
    top: 40rem !important;
  }
  .top-xl-unit-410 {
    top: 41rem !important;
  }
  .top-xl-unit-450 {
    top: 45rem !important;
  }
  .right-xl-unit-0 {
    right: 0 !important;
  }
  .right-xl-unit-1 {
    right: 0.1rem !important;
  }
  .right-xl-unit-2 {
    right: 0.2rem !important;
  }
  .right-xl-unit-3 {
    right: 0.3rem !important;
  }
  .right-xl-unit-4 {
    right: 0.4rem !important;
  }
  .right-xl-unit-5 {
    right: 0.5rem !important;
  }
  .right-xl-unit-6 {
    right: 0.6rem !important;
  }
  .right-xl-unit-7 {
    right: 0.7rem !important;
  }
  .right-xl-unit-8 {
    right: 0.8rem !important;
  }
  .right-xl-unit-9 {
    right: 0.9rem !important;
  }
  .right-xl-unit-10 {
    right: 1rem !important;
  }
  .right-xl-unit-11 {
    right: 1.1rem !important;
  }
  .right-xl-unit-12 {
    right: 1.2rem !important;
  }
  .right-xl-unit-13 {
    right: 1.3rem !important;
  }
  .right-xl-unit-14 {
    right: 1.4rem !important;
  }
  .right-xl-unit-15 {
    right: 1.5rem !important;
  }
  .right-xl-unit-16 {
    right: 1.6rem !important;
  }
  .right-xl-unit-17 {
    right: 1.7rem !important;
  }
  .right-xl-unit-18 {
    right: 1.8rem !important;
  }
  .right-xl-unit-19 {
    right: 1.9rem !important;
  }
  .right-xl-unit-20 {
    right: 2rem !important;
  }
  .right-xl-unit-25 {
    right: 2.5rem !important;
  }
  .right-xl-unit-30 {
    right: 3rem !important;
  }
  .right-xl-unit-35 {
    right: 3.5rem !important;
  }
  .right-xl-unit-40 {
    right: 4rem !important;
  }
  .right-xl-unit-45 {
    right: 4.5rem !important;
  }
  .right-xl-unit-50 {
    right: 5rem !important;
  }
  .right-xl-unit-55 {
    right: 5.5rem !important;
  }
  .right-xl-unit-60 {
    right: 6rem !important;
  }
  .right-xl-unit-65 {
    right: 6.5rem !important;
  }
  .right-xl-unit-70 {
    right: 7rem !important;
  }
  .right-xl-unit-75 {
    right: 7.5rem !important;
  }
  .right-xl-unit-80 {
    right: 8rem !important;
  }
  .right-xl-unit-85 {
    right: 8.5rem !important;
  }
  .right-xl-unit-90 {
    right: 9rem !important;
  }
  .right-xl-unit-95 {
    right: 9.5rem !important;
  }
  .right-xl-unit-100 {
    right: 10rem !important;
  }
  .right-xl-unit-130 {
    right: 13rem !important;
  }
  .right-xl-unit-140 {
    right: 14rem !important;
  }
  .right-xl-unit-150 {
    right: 15rem !important;
  }
  .right-xl-unit-200 {
    right: 20rem !important;
  }
  .right-xl-unit-250 {
    right: 25rem !important;
  }
  .right-xl-unit-300 {
    right: 30rem !important;
  }
  .right-xl-unit-400 {
    right: 40rem !important;
  }
  .right-xl-unit-410 {
    right: 41rem !important;
  }
  .right-xl-unit-450 {
    right: 45rem !important;
  }
  .bottom-xl-unit-0 {
    bottom: 0 !important;
  }
  .bottom-xl-unit-1 {
    bottom: 0.1rem !important;
  }
  .bottom-xl-unit-2 {
    bottom: 0.2rem !important;
  }
  .bottom-xl-unit-3 {
    bottom: 0.3rem !important;
  }
  .bottom-xl-unit-4 {
    bottom: 0.4rem !important;
  }
  .bottom-xl-unit-5 {
    bottom: 0.5rem !important;
  }
  .bottom-xl-unit-6 {
    bottom: 0.6rem !important;
  }
  .bottom-xl-unit-7 {
    bottom: 0.7rem !important;
  }
  .bottom-xl-unit-8 {
    bottom: 0.8rem !important;
  }
  .bottom-xl-unit-9 {
    bottom: 0.9rem !important;
  }
  .bottom-xl-unit-10 {
    bottom: 1rem !important;
  }
  .bottom-xl-unit-11 {
    bottom: 1.1rem !important;
  }
  .bottom-xl-unit-12 {
    bottom: 1.2rem !important;
  }
  .bottom-xl-unit-13 {
    bottom: 1.3rem !important;
  }
  .bottom-xl-unit-14 {
    bottom: 1.4rem !important;
  }
  .bottom-xl-unit-15 {
    bottom: 1.5rem !important;
  }
  .bottom-xl-unit-16 {
    bottom: 1.6rem !important;
  }
  .bottom-xl-unit-17 {
    bottom: 1.7rem !important;
  }
  .bottom-xl-unit-18 {
    bottom: 1.8rem !important;
  }
  .bottom-xl-unit-19 {
    bottom: 1.9rem !important;
  }
  .bottom-xl-unit-20 {
    bottom: 2rem !important;
  }
  .bottom-xl-unit-25 {
    bottom: 2.5rem !important;
  }
  .bottom-xl-unit-30 {
    bottom: 3rem !important;
  }
  .bottom-xl-unit-35 {
    bottom: 3.5rem !important;
  }
  .bottom-xl-unit-40 {
    bottom: 4rem !important;
  }
  .bottom-xl-unit-45 {
    bottom: 4.5rem !important;
  }
  .bottom-xl-unit-50 {
    bottom: 5rem !important;
  }
  .bottom-xl-unit-55 {
    bottom: 5.5rem !important;
  }
  .bottom-xl-unit-60 {
    bottom: 6rem !important;
  }
  .bottom-xl-unit-65 {
    bottom: 6.5rem !important;
  }
  .bottom-xl-unit-70 {
    bottom: 7rem !important;
  }
  .bottom-xl-unit-75 {
    bottom: 7.5rem !important;
  }
  .bottom-xl-unit-80 {
    bottom: 8rem !important;
  }
  .bottom-xl-unit-85 {
    bottom: 8.5rem !important;
  }
  .bottom-xl-unit-90 {
    bottom: 9rem !important;
  }
  .bottom-xl-unit-95 {
    bottom: 9.5rem !important;
  }
  .bottom-xl-unit-100 {
    bottom: 10rem !important;
  }
  .bottom-xl-unit-130 {
    bottom: 13rem !important;
  }
  .bottom-xl-unit-140 {
    bottom: 14rem !important;
  }
  .bottom-xl-unit-150 {
    bottom: 15rem !important;
  }
  .bottom-xl-unit-200 {
    bottom: 20rem !important;
  }
  .bottom-xl-unit-250 {
    bottom: 25rem !important;
  }
  .bottom-xl-unit-300 {
    bottom: 30rem !important;
  }
  .bottom-xl-unit-400 {
    bottom: 40rem !important;
  }
  .bottom-xl-unit-410 {
    bottom: 41rem !important;
  }
  .bottom-xl-unit-450 {
    bottom: 45rem !important;
  }
  .left-xl-unit-0 {
    left: 0 !important;
  }
  .left-xl-unit-1 {
    left: 0.1rem !important;
  }
  .left-xl-unit-2 {
    left: 0.2rem !important;
  }
  .left-xl-unit-3 {
    left: 0.3rem !important;
  }
  .left-xl-unit-4 {
    left: 0.4rem !important;
  }
  .left-xl-unit-5 {
    left: 0.5rem !important;
  }
  .left-xl-unit-6 {
    left: 0.6rem !important;
  }
  .left-xl-unit-7 {
    left: 0.7rem !important;
  }
  .left-xl-unit-8 {
    left: 0.8rem !important;
  }
  .left-xl-unit-9 {
    left: 0.9rem !important;
  }
  .left-xl-unit-10 {
    left: 1rem !important;
  }
  .left-xl-unit-11 {
    left: 1.1rem !important;
  }
  .left-xl-unit-12 {
    left: 1.2rem !important;
  }
  .left-xl-unit-13 {
    left: 1.3rem !important;
  }
  .left-xl-unit-14 {
    left: 1.4rem !important;
  }
  .left-xl-unit-15 {
    left: 1.5rem !important;
  }
  .left-xl-unit-16 {
    left: 1.6rem !important;
  }
  .left-xl-unit-17 {
    left: 1.7rem !important;
  }
  .left-xl-unit-18 {
    left: 1.8rem !important;
  }
  .left-xl-unit-19 {
    left: 1.9rem !important;
  }
  .left-xl-unit-20 {
    left: 2rem !important;
  }
  .left-xl-unit-25 {
    left: 2.5rem !important;
  }
  .left-xl-unit-30 {
    left: 3rem !important;
  }
  .left-xl-unit-35 {
    left: 3.5rem !important;
  }
  .left-xl-unit-40 {
    left: 4rem !important;
  }
  .left-xl-unit-45 {
    left: 4.5rem !important;
  }
  .left-xl-unit-50 {
    left: 5rem !important;
  }
  .left-xl-unit-55 {
    left: 5.5rem !important;
  }
  .left-xl-unit-60 {
    left: 6rem !important;
  }
  .left-xl-unit-65 {
    left: 6.5rem !important;
  }
  .left-xl-unit-70 {
    left: 7rem !important;
  }
  .left-xl-unit-75 {
    left: 7.5rem !important;
  }
  .left-xl-unit-80 {
    left: 8rem !important;
  }
  .left-xl-unit-85 {
    left: 8.5rem !important;
  }
  .left-xl-unit-90 {
    left: 9rem !important;
  }
  .left-xl-unit-95 {
    left: 9.5rem !important;
  }
  .left-xl-unit-100 {
    left: 10rem !important;
  }
  .left-xl-unit-130 {
    left: 13rem !important;
  }
  .left-xl-unit-140 {
    left: 14rem !important;
  }
  .left-xl-unit-150 {
    left: 15rem !important;
  }
  .left-xl-unit-200 {
    left: 20rem !important;
  }
  .left-xl-unit-250 {
    left: 25rem !important;
  }
  .left-xl-unit-300 {
    left: 30rem !important;
  }
  .left-xl-unit-400 {
    left: 40rem !important;
  }
  .left-xl-unit-410 {
    left: 41rem !important;
  }
  .left-xl-unit-450 {
    left: 45rem !important;
  }
}
@media (min-width: 1600px) {
  .top-xxl-0 {
    top: 0 !important;
  }
  .top-xxl-1 {
    top: 0.1rem !important;
  }
  .top-xxl-2 {
    top: 0.2rem !important;
  }
  .top-xxl-3 {
    top: 0.3rem !important;
  }
  .top-xxl-4 {
    top: 0.4rem !important;
  }
  .top-xxl-5 {
    top: 0.5rem !important;
  }
  .top-xxl-6 {
    top: 0.6rem !important;
  }
  .top-xxl-7 {
    top: 0.7rem !important;
  }
  .top-xxl-8 {
    top: 0.8rem !important;
  }
  .top-xxl-9 {
    top: 0.9rem !important;
  }
  .top-xxl-10 {
    top: 1rem !important;
  }
  .top-xxl-11 {
    top: 1.1rem !important;
  }
  .top-xxl-12 {
    top: 1.2rem !important;
  }
  .top-xxl-13 {
    top: 1.3rem !important;
  }
  .top-xxl-14 {
    top: 1.4rem !important;
  }
  .top-xxl-15 {
    top: 1.5rem !important;
  }
  .top-xxl-16 {
    top: 1.6rem !important;
  }
  .top-xxl-17 {
    top: 1.7rem !important;
  }
  .top-xxl-18 {
    top: 1.8rem !important;
  }
  .top-xxl-19 {
    top: 1.9rem !important;
  }
  .top-xxl-20 {
    top: 2rem !important;
  }
  .top-xxl-25 {
    top: 2.5rem !important;
  }
  .top-xxl-30 {
    top: 3rem !important;
  }
  .top-xxl-35 {
    top: 3.5rem !important;
  }
  .top-xxl-40 {
    top: 4rem !important;
  }
  .top-xxl-45 {
    top: 4.5rem !important;
  }
  .top-xxl-50 {
    top: 5rem !important;
  }
  .top-xxl-55 {
    top: 5.5rem !important;
  }
  .top-xxl-60 {
    top: 6rem !important;
  }
  .top-xxl-65 {
    top: 6.5rem !important;
  }
  .top-xxl-70 {
    top: 7rem !important;
  }
  .top-xxl-75 {
    top: 7.5rem !important;
  }
  .top-xxl-80 {
    top: 8rem !important;
  }
  .top-xxl-85 {
    top: 8.5rem !important;
  }
  .top-xxl-90 {
    top: 9rem !important;
  }
  .top-xxl-95 {
    top: 9.5rem !important;
  }
  .top-xxl-100 {
    top: 10rem !important;
  }
  .top-xxl-130 {
    top: 13rem !important;
  }
  .top-xxl-140 {
    top: 14rem !important;
  }
  .top-xxl-150 {
    top: 15rem !important;
  }
  .top-xxl-200 {
    top: 20rem !important;
  }
  .top-xxl-250 {
    top: 25rem !important;
  }
  .top-xxl-300 {
    top: 30rem !important;
  }
  .top-xxl-400 {
    top: 40rem !important;
  }
  .top-xxl-410 {
    top: 41rem !important;
  }
  .top-xxl-450 {
    top: 45rem !important;
  }
  .right-xxl-0 {
    right: 0 !important;
  }
  .right-xxl-1 {
    right: 0.1rem !important;
  }
  .right-xxl-2 {
    right: 0.2rem !important;
  }
  .right-xxl-3 {
    right: 0.3rem !important;
  }
  .right-xxl-4 {
    right: 0.4rem !important;
  }
  .right-xxl-5 {
    right: 0.5rem !important;
  }
  .right-xxl-6 {
    right: 0.6rem !important;
  }
  .right-xxl-7 {
    right: 0.7rem !important;
  }
  .right-xxl-8 {
    right: 0.8rem !important;
  }
  .right-xxl-9 {
    right: 0.9rem !important;
  }
  .right-xxl-10 {
    right: 1rem !important;
  }
  .right-xxl-11 {
    right: 1.1rem !important;
  }
  .right-xxl-12 {
    right: 1.2rem !important;
  }
  .right-xxl-13 {
    right: 1.3rem !important;
  }
  .right-xxl-14 {
    right: 1.4rem !important;
  }
  .right-xxl-15 {
    right: 1.5rem !important;
  }
  .right-xxl-16 {
    right: 1.6rem !important;
  }
  .right-xxl-17 {
    right: 1.7rem !important;
  }
  .right-xxl-18 {
    right: 1.8rem !important;
  }
  .right-xxl-19 {
    right: 1.9rem !important;
  }
  .right-xxl-20 {
    right: 2rem !important;
  }
  .right-xxl-25 {
    right: 2.5rem !important;
  }
  .right-xxl-30 {
    right: 3rem !important;
  }
  .right-xxl-35 {
    right: 3.5rem !important;
  }
  .right-xxl-40 {
    right: 4rem !important;
  }
  .right-xxl-45 {
    right: 4.5rem !important;
  }
  .right-xxl-50 {
    right: 5rem !important;
  }
  .right-xxl-55 {
    right: 5.5rem !important;
  }
  .right-xxl-60 {
    right: 6rem !important;
  }
  .right-xxl-65 {
    right: 6.5rem !important;
  }
  .right-xxl-70 {
    right: 7rem !important;
  }
  .right-xxl-75 {
    right: 7.5rem !important;
  }
  .right-xxl-80 {
    right: 8rem !important;
  }
  .right-xxl-85 {
    right: 8.5rem !important;
  }
  .right-xxl-90 {
    right: 9rem !important;
  }
  .right-xxl-95 {
    right: 9.5rem !important;
  }
  .right-xxl-100 {
    right: 10rem !important;
  }
  .right-xxl-130 {
    right: 13rem !important;
  }
  .right-xxl-140 {
    right: 14rem !important;
  }
  .right-xxl-150 {
    right: 15rem !important;
  }
  .right-xxl-200 {
    right: 20rem !important;
  }
  .right-xxl-250 {
    right: 25rem !important;
  }
  .right-xxl-300 {
    right: 30rem !important;
  }
  .right-xxl-400 {
    right: 40rem !important;
  }
  .right-xxl-410 {
    right: 41rem !important;
  }
  .right-xxl-450 {
    right: 45rem !important;
  }
  .bottom-xxl-0 {
    bottom: 0 !important;
  }
  .bottom-xxl-1 {
    bottom: 0.1rem !important;
  }
  .bottom-xxl-2 {
    bottom: 0.2rem !important;
  }
  .bottom-xxl-3 {
    bottom: 0.3rem !important;
  }
  .bottom-xxl-4 {
    bottom: 0.4rem !important;
  }
  .bottom-xxl-5 {
    bottom: 0.5rem !important;
  }
  .bottom-xxl-6 {
    bottom: 0.6rem !important;
  }
  .bottom-xxl-7 {
    bottom: 0.7rem !important;
  }
  .bottom-xxl-8 {
    bottom: 0.8rem !important;
  }
  .bottom-xxl-9 {
    bottom: 0.9rem !important;
  }
  .bottom-xxl-10 {
    bottom: 1rem !important;
  }
  .bottom-xxl-11 {
    bottom: 1.1rem !important;
  }
  .bottom-xxl-12 {
    bottom: 1.2rem !important;
  }
  .bottom-xxl-13 {
    bottom: 1.3rem !important;
  }
  .bottom-xxl-14 {
    bottom: 1.4rem !important;
  }
  .bottom-xxl-15 {
    bottom: 1.5rem !important;
  }
  .bottom-xxl-16 {
    bottom: 1.6rem !important;
  }
  .bottom-xxl-17 {
    bottom: 1.7rem !important;
  }
  .bottom-xxl-18 {
    bottom: 1.8rem !important;
  }
  .bottom-xxl-19 {
    bottom: 1.9rem !important;
  }
  .bottom-xxl-20 {
    bottom: 2rem !important;
  }
  .bottom-xxl-25 {
    bottom: 2.5rem !important;
  }
  .bottom-xxl-30 {
    bottom: 3rem !important;
  }
  .bottom-xxl-35 {
    bottom: 3.5rem !important;
  }
  .bottom-xxl-40 {
    bottom: 4rem !important;
  }
  .bottom-xxl-45 {
    bottom: 4.5rem !important;
  }
  .bottom-xxl-50 {
    bottom: 5rem !important;
  }
  .bottom-xxl-55 {
    bottom: 5.5rem !important;
  }
  .bottom-xxl-60 {
    bottom: 6rem !important;
  }
  .bottom-xxl-65 {
    bottom: 6.5rem !important;
  }
  .bottom-xxl-70 {
    bottom: 7rem !important;
  }
  .bottom-xxl-75 {
    bottom: 7.5rem !important;
  }
  .bottom-xxl-80 {
    bottom: 8rem !important;
  }
  .bottom-xxl-85 {
    bottom: 8.5rem !important;
  }
  .bottom-xxl-90 {
    bottom: 9rem !important;
  }
  .bottom-xxl-95 {
    bottom: 9.5rem !important;
  }
  .bottom-xxl-100 {
    bottom: 10rem !important;
  }
  .bottom-xxl-130 {
    bottom: 13rem !important;
  }
  .bottom-xxl-140 {
    bottom: 14rem !important;
  }
  .bottom-xxl-150 {
    bottom: 15rem !important;
  }
  .bottom-xxl-200 {
    bottom: 20rem !important;
  }
  .bottom-xxl-250 {
    bottom: 25rem !important;
  }
  .bottom-xxl-300 {
    bottom: 30rem !important;
  }
  .bottom-xxl-400 {
    bottom: 40rem !important;
  }
  .bottom-xxl-410 {
    bottom: 41rem !important;
  }
  .bottom-xxl-450 {
    bottom: 45rem !important;
  }
  .left-xxl-0 {
    left: 0 !important;
  }
  .left-xxl-1 {
    left: 0.1rem !important;
  }
  .left-xxl-2 {
    left: 0.2rem !important;
  }
  .left-xxl-3 {
    left: 0.3rem !important;
  }
  .left-xxl-4 {
    left: 0.4rem !important;
  }
  .left-xxl-5 {
    left: 0.5rem !important;
  }
  .left-xxl-6 {
    left: 0.6rem !important;
  }
  .left-xxl-7 {
    left: 0.7rem !important;
  }
  .left-xxl-8 {
    left: 0.8rem !important;
  }
  .left-xxl-9 {
    left: 0.9rem !important;
  }
  .left-xxl-10 {
    left: 1rem !important;
  }
  .left-xxl-11 {
    left: 1.1rem !important;
  }
  .left-xxl-12 {
    left: 1.2rem !important;
  }
  .left-xxl-13 {
    left: 1.3rem !important;
  }
  .left-xxl-14 {
    left: 1.4rem !important;
  }
  .left-xxl-15 {
    left: 1.5rem !important;
  }
  .left-xxl-16 {
    left: 1.6rem !important;
  }
  .left-xxl-17 {
    left: 1.7rem !important;
  }
  .left-xxl-18 {
    left: 1.8rem !important;
  }
  .left-xxl-19 {
    left: 1.9rem !important;
  }
  .left-xxl-20 {
    left: 2rem !important;
  }
  .left-xxl-25 {
    left: 2.5rem !important;
  }
  .left-xxl-30 {
    left: 3rem !important;
  }
  .left-xxl-35 {
    left: 3.5rem !important;
  }
  .left-xxl-40 {
    left: 4rem !important;
  }
  .left-xxl-45 {
    left: 4.5rem !important;
  }
  .left-xxl-50 {
    left: 5rem !important;
  }
  .left-xxl-55 {
    left: 5.5rem !important;
  }
  .left-xxl-60 {
    left: 6rem !important;
  }
  .left-xxl-65 {
    left: 6.5rem !important;
  }
  .left-xxl-70 {
    left: 7rem !important;
  }
  .left-xxl-75 {
    left: 7.5rem !important;
  }
  .left-xxl-80 {
    left: 8rem !important;
  }
  .left-xxl-85 {
    left: 8.5rem !important;
  }
  .left-xxl-90 {
    left: 9rem !important;
  }
  .left-xxl-95 {
    left: 9.5rem !important;
  }
  .left-xxl-100 {
    left: 10rem !important;
  }
  .left-xxl-130 {
    left: 13rem !important;
  }
  .left-xxl-140 {
    left: 14rem !important;
  }
  .left-xxl-150 {
    left: 15rem !important;
  }
  .left-xxl-200 {
    left: 20rem !important;
  }
  .left-xxl-250 {
    left: 25rem !important;
  }
  .left-xxl-300 {
    left: 30rem !important;
  }
  .left-xxl-400 {
    left: 40rem !important;
  }
  .left-xxl-410 {
    left: 41rem !important;
  }
  .left-xxl-450 {
    left: 45rem !important;
  }
  .top-xxl-unit-0 {
    top: 0 !important;
  }
  .top-xxl-unit-1 {
    top: 0.1rem !important;
  }
  .top-xxl-unit-2 {
    top: 0.2rem !important;
  }
  .top-xxl-unit-3 {
    top: 0.3rem !important;
  }
  .top-xxl-unit-4 {
    top: 0.4rem !important;
  }
  .top-xxl-unit-5 {
    top: 0.5rem !important;
  }
  .top-xxl-unit-6 {
    top: 0.6rem !important;
  }
  .top-xxl-unit-7 {
    top: 0.7rem !important;
  }
  .top-xxl-unit-8 {
    top: 0.8rem !important;
  }
  .top-xxl-unit-9 {
    top: 0.9rem !important;
  }
  .top-xxl-unit-10 {
    top: 1rem !important;
  }
  .top-xxl-unit-11 {
    top: 1.1rem !important;
  }
  .top-xxl-unit-12 {
    top: 1.2rem !important;
  }
  .top-xxl-unit-13 {
    top: 1.3rem !important;
  }
  .top-xxl-unit-14 {
    top: 1.4rem !important;
  }
  .top-xxl-unit-15 {
    top: 1.5rem !important;
  }
  .top-xxl-unit-16 {
    top: 1.6rem !important;
  }
  .top-xxl-unit-17 {
    top: 1.7rem !important;
  }
  .top-xxl-unit-18 {
    top: 1.8rem !important;
  }
  .top-xxl-unit-19 {
    top: 1.9rem !important;
  }
  .top-xxl-unit-20 {
    top: 2rem !important;
  }
  .top-xxl-unit-25 {
    top: 2.5rem !important;
  }
  .top-xxl-unit-30 {
    top: 3rem !important;
  }
  .top-xxl-unit-35 {
    top: 3.5rem !important;
  }
  .top-xxl-unit-40 {
    top: 4rem !important;
  }
  .top-xxl-unit-45 {
    top: 4.5rem !important;
  }
  .top-xxl-unit-50 {
    top: 5rem !important;
  }
  .top-xxl-unit-55 {
    top: 5.5rem !important;
  }
  .top-xxl-unit-60 {
    top: 6rem !important;
  }
  .top-xxl-unit-65 {
    top: 6.5rem !important;
  }
  .top-xxl-unit-70 {
    top: 7rem !important;
  }
  .top-xxl-unit-75 {
    top: 7.5rem !important;
  }
  .top-xxl-unit-80 {
    top: 8rem !important;
  }
  .top-xxl-unit-85 {
    top: 8.5rem !important;
  }
  .top-xxl-unit-90 {
    top: 9rem !important;
  }
  .top-xxl-unit-95 {
    top: 9.5rem !important;
  }
  .top-xxl-unit-100 {
    top: 10rem !important;
  }
  .top-xxl-unit-130 {
    top: 13rem !important;
  }
  .top-xxl-unit-140 {
    top: 14rem !important;
  }
  .top-xxl-unit-150 {
    top: 15rem !important;
  }
  .top-xxl-unit-200 {
    top: 20rem !important;
  }
  .top-xxl-unit-250 {
    top: 25rem !important;
  }
  .top-xxl-unit-300 {
    top: 30rem !important;
  }
  .top-xxl-unit-400 {
    top: 40rem !important;
  }
  .top-xxl-unit-410 {
    top: 41rem !important;
  }
  .top-xxl-unit-450 {
    top: 45rem !important;
  }
  .right-xxl-unit-0 {
    right: 0 !important;
  }
  .right-xxl-unit-1 {
    right: 0.1rem !important;
  }
  .right-xxl-unit-2 {
    right: 0.2rem !important;
  }
  .right-xxl-unit-3 {
    right: 0.3rem !important;
  }
  .right-xxl-unit-4 {
    right: 0.4rem !important;
  }
  .right-xxl-unit-5 {
    right: 0.5rem !important;
  }
  .right-xxl-unit-6 {
    right: 0.6rem !important;
  }
  .right-xxl-unit-7 {
    right: 0.7rem !important;
  }
  .right-xxl-unit-8 {
    right: 0.8rem !important;
  }
  .right-xxl-unit-9 {
    right: 0.9rem !important;
  }
  .right-xxl-unit-10 {
    right: 1rem !important;
  }
  .right-xxl-unit-11 {
    right: 1.1rem !important;
  }
  .right-xxl-unit-12 {
    right: 1.2rem !important;
  }
  .right-xxl-unit-13 {
    right: 1.3rem !important;
  }
  .right-xxl-unit-14 {
    right: 1.4rem !important;
  }
  .right-xxl-unit-15 {
    right: 1.5rem !important;
  }
  .right-xxl-unit-16 {
    right: 1.6rem !important;
  }
  .right-xxl-unit-17 {
    right: 1.7rem !important;
  }
  .right-xxl-unit-18 {
    right: 1.8rem !important;
  }
  .right-xxl-unit-19 {
    right: 1.9rem !important;
  }
  .right-xxl-unit-20 {
    right: 2rem !important;
  }
  .right-xxl-unit-25 {
    right: 2.5rem !important;
  }
  .right-xxl-unit-30 {
    right: 3rem !important;
  }
  .right-xxl-unit-35 {
    right: 3.5rem !important;
  }
  .right-xxl-unit-40 {
    right: 4rem !important;
  }
  .right-xxl-unit-45 {
    right: 4.5rem !important;
  }
  .right-xxl-unit-50 {
    right: 5rem !important;
  }
  .right-xxl-unit-55 {
    right: 5.5rem !important;
  }
  .right-xxl-unit-60 {
    right: 6rem !important;
  }
  .right-xxl-unit-65 {
    right: 6.5rem !important;
  }
  .right-xxl-unit-70 {
    right: 7rem !important;
  }
  .right-xxl-unit-75 {
    right: 7.5rem !important;
  }
  .right-xxl-unit-80 {
    right: 8rem !important;
  }
  .right-xxl-unit-85 {
    right: 8.5rem !important;
  }
  .right-xxl-unit-90 {
    right: 9rem !important;
  }
  .right-xxl-unit-95 {
    right: 9.5rem !important;
  }
  .right-xxl-unit-100 {
    right: 10rem !important;
  }
  .right-xxl-unit-130 {
    right: 13rem !important;
  }
  .right-xxl-unit-140 {
    right: 14rem !important;
  }
  .right-xxl-unit-150 {
    right: 15rem !important;
  }
  .right-xxl-unit-200 {
    right: 20rem !important;
  }
  .right-xxl-unit-250 {
    right: 25rem !important;
  }
  .right-xxl-unit-300 {
    right: 30rem !important;
  }
  .right-xxl-unit-400 {
    right: 40rem !important;
  }
  .right-xxl-unit-410 {
    right: 41rem !important;
  }
  .right-xxl-unit-450 {
    right: 45rem !important;
  }
  .bottom-xxl-unit-0 {
    bottom: 0 !important;
  }
  .bottom-xxl-unit-1 {
    bottom: 0.1rem !important;
  }
  .bottom-xxl-unit-2 {
    bottom: 0.2rem !important;
  }
  .bottom-xxl-unit-3 {
    bottom: 0.3rem !important;
  }
  .bottom-xxl-unit-4 {
    bottom: 0.4rem !important;
  }
  .bottom-xxl-unit-5 {
    bottom: 0.5rem !important;
  }
  .bottom-xxl-unit-6 {
    bottom: 0.6rem !important;
  }
  .bottom-xxl-unit-7 {
    bottom: 0.7rem !important;
  }
  .bottom-xxl-unit-8 {
    bottom: 0.8rem !important;
  }
  .bottom-xxl-unit-9 {
    bottom: 0.9rem !important;
  }
  .bottom-xxl-unit-10 {
    bottom: 1rem !important;
  }
  .bottom-xxl-unit-11 {
    bottom: 1.1rem !important;
  }
  .bottom-xxl-unit-12 {
    bottom: 1.2rem !important;
  }
  .bottom-xxl-unit-13 {
    bottom: 1.3rem !important;
  }
  .bottom-xxl-unit-14 {
    bottom: 1.4rem !important;
  }
  .bottom-xxl-unit-15 {
    bottom: 1.5rem !important;
  }
  .bottom-xxl-unit-16 {
    bottom: 1.6rem !important;
  }
  .bottom-xxl-unit-17 {
    bottom: 1.7rem !important;
  }
  .bottom-xxl-unit-18 {
    bottom: 1.8rem !important;
  }
  .bottom-xxl-unit-19 {
    bottom: 1.9rem !important;
  }
  .bottom-xxl-unit-20 {
    bottom: 2rem !important;
  }
  .bottom-xxl-unit-25 {
    bottom: 2.5rem !important;
  }
  .bottom-xxl-unit-30 {
    bottom: 3rem !important;
  }
  .bottom-xxl-unit-35 {
    bottom: 3.5rem !important;
  }
  .bottom-xxl-unit-40 {
    bottom: 4rem !important;
  }
  .bottom-xxl-unit-45 {
    bottom: 4.5rem !important;
  }
  .bottom-xxl-unit-50 {
    bottom: 5rem !important;
  }
  .bottom-xxl-unit-55 {
    bottom: 5.5rem !important;
  }
  .bottom-xxl-unit-60 {
    bottom: 6rem !important;
  }
  .bottom-xxl-unit-65 {
    bottom: 6.5rem !important;
  }
  .bottom-xxl-unit-70 {
    bottom: 7rem !important;
  }
  .bottom-xxl-unit-75 {
    bottom: 7.5rem !important;
  }
  .bottom-xxl-unit-80 {
    bottom: 8rem !important;
  }
  .bottom-xxl-unit-85 {
    bottom: 8.5rem !important;
  }
  .bottom-xxl-unit-90 {
    bottom: 9rem !important;
  }
  .bottom-xxl-unit-95 {
    bottom: 9.5rem !important;
  }
  .bottom-xxl-unit-100 {
    bottom: 10rem !important;
  }
  .bottom-xxl-unit-130 {
    bottom: 13rem !important;
  }
  .bottom-xxl-unit-140 {
    bottom: 14rem !important;
  }
  .bottom-xxl-unit-150 {
    bottom: 15rem !important;
  }
  .bottom-xxl-unit-200 {
    bottom: 20rem !important;
  }
  .bottom-xxl-unit-250 {
    bottom: 25rem !important;
  }
  .bottom-xxl-unit-300 {
    bottom: 30rem !important;
  }
  .bottom-xxl-unit-400 {
    bottom: 40rem !important;
  }
  .bottom-xxl-unit-410 {
    bottom: 41rem !important;
  }
  .bottom-xxl-unit-450 {
    bottom: 45rem !important;
  }
  .left-xxl-unit-0 {
    left: 0 !important;
  }
  .left-xxl-unit-1 {
    left: 0.1rem !important;
  }
  .left-xxl-unit-2 {
    left: 0.2rem !important;
  }
  .left-xxl-unit-3 {
    left: 0.3rem !important;
  }
  .left-xxl-unit-4 {
    left: 0.4rem !important;
  }
  .left-xxl-unit-5 {
    left: 0.5rem !important;
  }
  .left-xxl-unit-6 {
    left: 0.6rem !important;
  }
  .left-xxl-unit-7 {
    left: 0.7rem !important;
  }
  .left-xxl-unit-8 {
    left: 0.8rem !important;
  }
  .left-xxl-unit-9 {
    left: 0.9rem !important;
  }
  .left-xxl-unit-10 {
    left: 1rem !important;
  }
  .left-xxl-unit-11 {
    left: 1.1rem !important;
  }
  .left-xxl-unit-12 {
    left: 1.2rem !important;
  }
  .left-xxl-unit-13 {
    left: 1.3rem !important;
  }
  .left-xxl-unit-14 {
    left: 1.4rem !important;
  }
  .left-xxl-unit-15 {
    left: 1.5rem !important;
  }
  .left-xxl-unit-16 {
    left: 1.6rem !important;
  }
  .left-xxl-unit-17 {
    left: 1.7rem !important;
  }
  .left-xxl-unit-18 {
    left: 1.8rem !important;
  }
  .left-xxl-unit-19 {
    left: 1.9rem !important;
  }
  .left-xxl-unit-20 {
    left: 2rem !important;
  }
  .left-xxl-unit-25 {
    left: 2.5rem !important;
  }
  .left-xxl-unit-30 {
    left: 3rem !important;
  }
  .left-xxl-unit-35 {
    left: 3.5rem !important;
  }
  .left-xxl-unit-40 {
    left: 4rem !important;
  }
  .left-xxl-unit-45 {
    left: 4.5rem !important;
  }
  .left-xxl-unit-50 {
    left: 5rem !important;
  }
  .left-xxl-unit-55 {
    left: 5.5rem !important;
  }
  .left-xxl-unit-60 {
    left: 6rem !important;
  }
  .left-xxl-unit-65 {
    left: 6.5rem !important;
  }
  .left-xxl-unit-70 {
    left: 7rem !important;
  }
  .left-xxl-unit-75 {
    left: 7.5rem !important;
  }
  .left-xxl-unit-80 {
    left: 8rem !important;
  }
  .left-xxl-unit-85 {
    left: 8.5rem !important;
  }
  .left-xxl-unit-90 {
    left: 9rem !important;
  }
  .left-xxl-unit-95 {
    left: 9.5rem !important;
  }
  .left-xxl-unit-100 {
    left: 10rem !important;
  }
  .left-xxl-unit-130 {
    left: 13rem !important;
  }
  .left-xxl-unit-140 {
    left: 14rem !important;
  }
  .left-xxl-unit-150 {
    left: 15rem !important;
  }
  .left-xxl-unit-200 {
    left: 20rem !important;
  }
  .left-xxl-unit-250 {
    left: 25rem !important;
  }
  .left-xxl-unit-300 {
    left: 30rem !important;
  }
  .left-xxl-unit-400 {
    left: 40rem !important;
  }
  .left-xxl-unit-410 {
    left: 41rem !important;
  }
  .left-xxl-unit-450 {
    left: 45rem !important;
  }
}
@media (min-width: 1920px) {
  .top-xxxl-0 {
    top: 0 !important;
  }
  .top-xxxl-1 {
    top: 0.1rem !important;
  }
  .top-xxxl-2 {
    top: 0.2rem !important;
  }
  .top-xxxl-3 {
    top: 0.3rem !important;
  }
  .top-xxxl-4 {
    top: 0.4rem !important;
  }
  .top-xxxl-5 {
    top: 0.5rem !important;
  }
  .top-xxxl-6 {
    top: 0.6rem !important;
  }
  .top-xxxl-7 {
    top: 0.7rem !important;
  }
  .top-xxxl-8 {
    top: 0.8rem !important;
  }
  .top-xxxl-9 {
    top: 0.9rem !important;
  }
  .top-xxxl-10 {
    top: 1rem !important;
  }
  .top-xxxl-11 {
    top: 1.1rem !important;
  }
  .top-xxxl-12 {
    top: 1.2rem !important;
  }
  .top-xxxl-13 {
    top: 1.3rem !important;
  }
  .top-xxxl-14 {
    top: 1.4rem !important;
  }
  .top-xxxl-15 {
    top: 1.5rem !important;
  }
  .top-xxxl-16 {
    top: 1.6rem !important;
  }
  .top-xxxl-17 {
    top: 1.7rem !important;
  }
  .top-xxxl-18 {
    top: 1.8rem !important;
  }
  .top-xxxl-19 {
    top: 1.9rem !important;
  }
  .top-xxxl-20 {
    top: 2rem !important;
  }
  .top-xxxl-25 {
    top: 2.5rem !important;
  }
  .top-xxxl-30 {
    top: 3rem !important;
  }
  .top-xxxl-35 {
    top: 3.5rem !important;
  }
  .top-xxxl-40 {
    top: 4rem !important;
  }
  .top-xxxl-45 {
    top: 4.5rem !important;
  }
  .top-xxxl-50 {
    top: 5rem !important;
  }
  .top-xxxl-55 {
    top: 5.5rem !important;
  }
  .top-xxxl-60 {
    top: 6rem !important;
  }
  .top-xxxl-65 {
    top: 6.5rem !important;
  }
  .top-xxxl-70 {
    top: 7rem !important;
  }
  .top-xxxl-75 {
    top: 7.5rem !important;
  }
  .top-xxxl-80 {
    top: 8rem !important;
  }
  .top-xxxl-85 {
    top: 8.5rem !important;
  }
  .top-xxxl-90 {
    top: 9rem !important;
  }
  .top-xxxl-95 {
    top: 9.5rem !important;
  }
  .top-xxxl-100 {
    top: 10rem !important;
  }
  .top-xxxl-130 {
    top: 13rem !important;
  }
  .top-xxxl-140 {
    top: 14rem !important;
  }
  .top-xxxl-150 {
    top: 15rem !important;
  }
  .top-xxxl-200 {
    top: 20rem !important;
  }
  .top-xxxl-250 {
    top: 25rem !important;
  }
  .top-xxxl-300 {
    top: 30rem !important;
  }
  .top-xxxl-400 {
    top: 40rem !important;
  }
  .top-xxxl-410 {
    top: 41rem !important;
  }
  .top-xxxl-450 {
    top: 45rem !important;
  }
  .right-xxxl-0 {
    right: 0 !important;
  }
  .right-xxxl-1 {
    right: 0.1rem !important;
  }
  .right-xxxl-2 {
    right: 0.2rem !important;
  }
  .right-xxxl-3 {
    right: 0.3rem !important;
  }
  .right-xxxl-4 {
    right: 0.4rem !important;
  }
  .right-xxxl-5 {
    right: 0.5rem !important;
  }
  .right-xxxl-6 {
    right: 0.6rem !important;
  }
  .right-xxxl-7 {
    right: 0.7rem !important;
  }
  .right-xxxl-8 {
    right: 0.8rem !important;
  }
  .right-xxxl-9 {
    right: 0.9rem !important;
  }
  .right-xxxl-10 {
    right: 1rem !important;
  }
  .right-xxxl-11 {
    right: 1.1rem !important;
  }
  .right-xxxl-12 {
    right: 1.2rem !important;
  }
  .right-xxxl-13 {
    right: 1.3rem !important;
  }
  .right-xxxl-14 {
    right: 1.4rem !important;
  }
  .right-xxxl-15 {
    right: 1.5rem !important;
  }
  .right-xxxl-16 {
    right: 1.6rem !important;
  }
  .right-xxxl-17 {
    right: 1.7rem !important;
  }
  .right-xxxl-18 {
    right: 1.8rem !important;
  }
  .right-xxxl-19 {
    right: 1.9rem !important;
  }
  .right-xxxl-20 {
    right: 2rem !important;
  }
  .right-xxxl-25 {
    right: 2.5rem !important;
  }
  .right-xxxl-30 {
    right: 3rem !important;
  }
  .right-xxxl-35 {
    right: 3.5rem !important;
  }
  .right-xxxl-40 {
    right: 4rem !important;
  }
  .right-xxxl-45 {
    right: 4.5rem !important;
  }
  .right-xxxl-50 {
    right: 5rem !important;
  }
  .right-xxxl-55 {
    right: 5.5rem !important;
  }
  .right-xxxl-60 {
    right: 6rem !important;
  }
  .right-xxxl-65 {
    right: 6.5rem !important;
  }
  .right-xxxl-70 {
    right: 7rem !important;
  }
  .right-xxxl-75 {
    right: 7.5rem !important;
  }
  .right-xxxl-80 {
    right: 8rem !important;
  }
  .right-xxxl-85 {
    right: 8.5rem !important;
  }
  .right-xxxl-90 {
    right: 9rem !important;
  }
  .right-xxxl-95 {
    right: 9.5rem !important;
  }
  .right-xxxl-100 {
    right: 10rem !important;
  }
  .right-xxxl-130 {
    right: 13rem !important;
  }
  .right-xxxl-140 {
    right: 14rem !important;
  }
  .right-xxxl-150 {
    right: 15rem !important;
  }
  .right-xxxl-200 {
    right: 20rem !important;
  }
  .right-xxxl-250 {
    right: 25rem !important;
  }
  .right-xxxl-300 {
    right: 30rem !important;
  }
  .right-xxxl-400 {
    right: 40rem !important;
  }
  .right-xxxl-410 {
    right: 41rem !important;
  }
  .right-xxxl-450 {
    right: 45rem !important;
  }
  .bottom-xxxl-0 {
    bottom: 0 !important;
  }
  .bottom-xxxl-1 {
    bottom: 0.1rem !important;
  }
  .bottom-xxxl-2 {
    bottom: 0.2rem !important;
  }
  .bottom-xxxl-3 {
    bottom: 0.3rem !important;
  }
  .bottom-xxxl-4 {
    bottom: 0.4rem !important;
  }
  .bottom-xxxl-5 {
    bottom: 0.5rem !important;
  }
  .bottom-xxxl-6 {
    bottom: 0.6rem !important;
  }
  .bottom-xxxl-7 {
    bottom: 0.7rem !important;
  }
  .bottom-xxxl-8 {
    bottom: 0.8rem !important;
  }
  .bottom-xxxl-9 {
    bottom: 0.9rem !important;
  }
  .bottom-xxxl-10 {
    bottom: 1rem !important;
  }
  .bottom-xxxl-11 {
    bottom: 1.1rem !important;
  }
  .bottom-xxxl-12 {
    bottom: 1.2rem !important;
  }
  .bottom-xxxl-13 {
    bottom: 1.3rem !important;
  }
  .bottom-xxxl-14 {
    bottom: 1.4rem !important;
  }
  .bottom-xxxl-15 {
    bottom: 1.5rem !important;
  }
  .bottom-xxxl-16 {
    bottom: 1.6rem !important;
  }
  .bottom-xxxl-17 {
    bottom: 1.7rem !important;
  }
  .bottom-xxxl-18 {
    bottom: 1.8rem !important;
  }
  .bottom-xxxl-19 {
    bottom: 1.9rem !important;
  }
  .bottom-xxxl-20 {
    bottom: 2rem !important;
  }
  .bottom-xxxl-25 {
    bottom: 2.5rem !important;
  }
  .bottom-xxxl-30 {
    bottom: 3rem !important;
  }
  .bottom-xxxl-35 {
    bottom: 3.5rem !important;
  }
  .bottom-xxxl-40 {
    bottom: 4rem !important;
  }
  .bottom-xxxl-45 {
    bottom: 4.5rem !important;
  }
  .bottom-xxxl-50 {
    bottom: 5rem !important;
  }
  .bottom-xxxl-55 {
    bottom: 5.5rem !important;
  }
  .bottom-xxxl-60 {
    bottom: 6rem !important;
  }
  .bottom-xxxl-65 {
    bottom: 6.5rem !important;
  }
  .bottom-xxxl-70 {
    bottom: 7rem !important;
  }
  .bottom-xxxl-75 {
    bottom: 7.5rem !important;
  }
  .bottom-xxxl-80 {
    bottom: 8rem !important;
  }
  .bottom-xxxl-85 {
    bottom: 8.5rem !important;
  }
  .bottom-xxxl-90 {
    bottom: 9rem !important;
  }
  .bottom-xxxl-95 {
    bottom: 9.5rem !important;
  }
  .bottom-xxxl-100 {
    bottom: 10rem !important;
  }
  .bottom-xxxl-130 {
    bottom: 13rem !important;
  }
  .bottom-xxxl-140 {
    bottom: 14rem !important;
  }
  .bottom-xxxl-150 {
    bottom: 15rem !important;
  }
  .bottom-xxxl-200 {
    bottom: 20rem !important;
  }
  .bottom-xxxl-250 {
    bottom: 25rem !important;
  }
  .bottom-xxxl-300 {
    bottom: 30rem !important;
  }
  .bottom-xxxl-400 {
    bottom: 40rem !important;
  }
  .bottom-xxxl-410 {
    bottom: 41rem !important;
  }
  .bottom-xxxl-450 {
    bottom: 45rem !important;
  }
  .left-xxxl-0 {
    left: 0 !important;
  }
  .left-xxxl-1 {
    left: 0.1rem !important;
  }
  .left-xxxl-2 {
    left: 0.2rem !important;
  }
  .left-xxxl-3 {
    left: 0.3rem !important;
  }
  .left-xxxl-4 {
    left: 0.4rem !important;
  }
  .left-xxxl-5 {
    left: 0.5rem !important;
  }
  .left-xxxl-6 {
    left: 0.6rem !important;
  }
  .left-xxxl-7 {
    left: 0.7rem !important;
  }
  .left-xxxl-8 {
    left: 0.8rem !important;
  }
  .left-xxxl-9 {
    left: 0.9rem !important;
  }
  .left-xxxl-10 {
    left: 1rem !important;
  }
  .left-xxxl-11 {
    left: 1.1rem !important;
  }
  .left-xxxl-12 {
    left: 1.2rem !important;
  }
  .left-xxxl-13 {
    left: 1.3rem !important;
  }
  .left-xxxl-14 {
    left: 1.4rem !important;
  }
  .left-xxxl-15 {
    left: 1.5rem !important;
  }
  .left-xxxl-16 {
    left: 1.6rem !important;
  }
  .left-xxxl-17 {
    left: 1.7rem !important;
  }
  .left-xxxl-18 {
    left: 1.8rem !important;
  }
  .left-xxxl-19 {
    left: 1.9rem !important;
  }
  .left-xxxl-20 {
    left: 2rem !important;
  }
  .left-xxxl-25 {
    left: 2.5rem !important;
  }
  .left-xxxl-30 {
    left: 3rem !important;
  }
  .left-xxxl-35 {
    left: 3.5rem !important;
  }
  .left-xxxl-40 {
    left: 4rem !important;
  }
  .left-xxxl-45 {
    left: 4.5rem !important;
  }
  .left-xxxl-50 {
    left: 5rem !important;
  }
  .left-xxxl-55 {
    left: 5.5rem !important;
  }
  .left-xxxl-60 {
    left: 6rem !important;
  }
  .left-xxxl-65 {
    left: 6.5rem !important;
  }
  .left-xxxl-70 {
    left: 7rem !important;
  }
  .left-xxxl-75 {
    left: 7.5rem !important;
  }
  .left-xxxl-80 {
    left: 8rem !important;
  }
  .left-xxxl-85 {
    left: 8.5rem !important;
  }
  .left-xxxl-90 {
    left: 9rem !important;
  }
  .left-xxxl-95 {
    left: 9.5rem !important;
  }
  .left-xxxl-100 {
    left: 10rem !important;
  }
  .left-xxxl-130 {
    left: 13rem !important;
  }
  .left-xxxl-140 {
    left: 14rem !important;
  }
  .left-xxxl-150 {
    left: 15rem !important;
  }
  .left-xxxl-200 {
    left: 20rem !important;
  }
  .left-xxxl-250 {
    left: 25rem !important;
  }
  .left-xxxl-300 {
    left: 30rem !important;
  }
  .left-xxxl-400 {
    left: 40rem !important;
  }
  .left-xxxl-410 {
    left: 41rem !important;
  }
  .left-xxxl-450 {
    left: 45rem !important;
  }
  .top-xxxl-unit-0 {
    top: 0 !important;
  }
  .top-xxxl-unit-1 {
    top: 0.1rem !important;
  }
  .top-xxxl-unit-2 {
    top: 0.2rem !important;
  }
  .top-xxxl-unit-3 {
    top: 0.3rem !important;
  }
  .top-xxxl-unit-4 {
    top: 0.4rem !important;
  }
  .top-xxxl-unit-5 {
    top: 0.5rem !important;
  }
  .top-xxxl-unit-6 {
    top: 0.6rem !important;
  }
  .top-xxxl-unit-7 {
    top: 0.7rem !important;
  }
  .top-xxxl-unit-8 {
    top: 0.8rem !important;
  }
  .top-xxxl-unit-9 {
    top: 0.9rem !important;
  }
  .top-xxxl-unit-10 {
    top: 1rem !important;
  }
  .top-xxxl-unit-11 {
    top: 1.1rem !important;
  }
  .top-xxxl-unit-12 {
    top: 1.2rem !important;
  }
  .top-xxxl-unit-13 {
    top: 1.3rem !important;
  }
  .top-xxxl-unit-14 {
    top: 1.4rem !important;
  }
  .top-xxxl-unit-15 {
    top: 1.5rem !important;
  }
  .top-xxxl-unit-16 {
    top: 1.6rem !important;
  }
  .top-xxxl-unit-17 {
    top: 1.7rem !important;
  }
  .top-xxxl-unit-18 {
    top: 1.8rem !important;
  }
  .top-xxxl-unit-19 {
    top: 1.9rem !important;
  }
  .top-xxxl-unit-20 {
    top: 2rem !important;
  }
  .top-xxxl-unit-25 {
    top: 2.5rem !important;
  }
  .top-xxxl-unit-30 {
    top: 3rem !important;
  }
  .top-xxxl-unit-35 {
    top: 3.5rem !important;
  }
  .top-xxxl-unit-40 {
    top: 4rem !important;
  }
  .top-xxxl-unit-45 {
    top: 4.5rem !important;
  }
  .top-xxxl-unit-50 {
    top: 5rem !important;
  }
  .top-xxxl-unit-55 {
    top: 5.5rem !important;
  }
  .top-xxxl-unit-60 {
    top: 6rem !important;
  }
  .top-xxxl-unit-65 {
    top: 6.5rem !important;
  }
  .top-xxxl-unit-70 {
    top: 7rem !important;
  }
  .top-xxxl-unit-75 {
    top: 7.5rem !important;
  }
  .top-xxxl-unit-80 {
    top: 8rem !important;
  }
  .top-xxxl-unit-85 {
    top: 8.5rem !important;
  }
  .top-xxxl-unit-90 {
    top: 9rem !important;
  }
  .top-xxxl-unit-95 {
    top: 9.5rem !important;
  }
  .top-xxxl-unit-100 {
    top: 10rem !important;
  }
  .top-xxxl-unit-130 {
    top: 13rem !important;
  }
  .top-xxxl-unit-140 {
    top: 14rem !important;
  }
  .top-xxxl-unit-150 {
    top: 15rem !important;
  }
  .top-xxxl-unit-200 {
    top: 20rem !important;
  }
  .top-xxxl-unit-250 {
    top: 25rem !important;
  }
  .top-xxxl-unit-300 {
    top: 30rem !important;
  }
  .top-xxxl-unit-400 {
    top: 40rem !important;
  }
  .top-xxxl-unit-410 {
    top: 41rem !important;
  }
  .top-xxxl-unit-450 {
    top: 45rem !important;
  }
  .right-xxxl-unit-0 {
    right: 0 !important;
  }
  .right-xxxl-unit-1 {
    right: 0.1rem !important;
  }
  .right-xxxl-unit-2 {
    right: 0.2rem !important;
  }
  .right-xxxl-unit-3 {
    right: 0.3rem !important;
  }
  .right-xxxl-unit-4 {
    right: 0.4rem !important;
  }
  .right-xxxl-unit-5 {
    right: 0.5rem !important;
  }
  .right-xxxl-unit-6 {
    right: 0.6rem !important;
  }
  .right-xxxl-unit-7 {
    right: 0.7rem !important;
  }
  .right-xxxl-unit-8 {
    right: 0.8rem !important;
  }
  .right-xxxl-unit-9 {
    right: 0.9rem !important;
  }
  .right-xxxl-unit-10 {
    right: 1rem !important;
  }
  .right-xxxl-unit-11 {
    right: 1.1rem !important;
  }
  .right-xxxl-unit-12 {
    right: 1.2rem !important;
  }
  .right-xxxl-unit-13 {
    right: 1.3rem !important;
  }
  .right-xxxl-unit-14 {
    right: 1.4rem !important;
  }
  .right-xxxl-unit-15 {
    right: 1.5rem !important;
  }
  .right-xxxl-unit-16 {
    right: 1.6rem !important;
  }
  .right-xxxl-unit-17 {
    right: 1.7rem !important;
  }
  .right-xxxl-unit-18 {
    right: 1.8rem !important;
  }
  .right-xxxl-unit-19 {
    right: 1.9rem !important;
  }
  .right-xxxl-unit-20 {
    right: 2rem !important;
  }
  .right-xxxl-unit-25 {
    right: 2.5rem !important;
  }
  .right-xxxl-unit-30 {
    right: 3rem !important;
  }
  .right-xxxl-unit-35 {
    right: 3.5rem !important;
  }
  .right-xxxl-unit-40 {
    right: 4rem !important;
  }
  .right-xxxl-unit-45 {
    right: 4.5rem !important;
  }
  .right-xxxl-unit-50 {
    right: 5rem !important;
  }
  .right-xxxl-unit-55 {
    right: 5.5rem !important;
  }
  .right-xxxl-unit-60 {
    right: 6rem !important;
  }
  .right-xxxl-unit-65 {
    right: 6.5rem !important;
  }
  .right-xxxl-unit-70 {
    right: 7rem !important;
  }
  .right-xxxl-unit-75 {
    right: 7.5rem !important;
  }
  .right-xxxl-unit-80 {
    right: 8rem !important;
  }
  .right-xxxl-unit-85 {
    right: 8.5rem !important;
  }
  .right-xxxl-unit-90 {
    right: 9rem !important;
  }
  .right-xxxl-unit-95 {
    right: 9.5rem !important;
  }
  .right-xxxl-unit-100 {
    right: 10rem !important;
  }
  .right-xxxl-unit-130 {
    right: 13rem !important;
  }
  .right-xxxl-unit-140 {
    right: 14rem !important;
  }
  .right-xxxl-unit-150 {
    right: 15rem !important;
  }
  .right-xxxl-unit-200 {
    right: 20rem !important;
  }
  .right-xxxl-unit-250 {
    right: 25rem !important;
  }
  .right-xxxl-unit-300 {
    right: 30rem !important;
  }
  .right-xxxl-unit-400 {
    right: 40rem !important;
  }
  .right-xxxl-unit-410 {
    right: 41rem !important;
  }
  .right-xxxl-unit-450 {
    right: 45rem !important;
  }
  .bottom-xxxl-unit-0 {
    bottom: 0 !important;
  }
  .bottom-xxxl-unit-1 {
    bottom: 0.1rem !important;
  }
  .bottom-xxxl-unit-2 {
    bottom: 0.2rem !important;
  }
  .bottom-xxxl-unit-3 {
    bottom: 0.3rem !important;
  }
  .bottom-xxxl-unit-4 {
    bottom: 0.4rem !important;
  }
  .bottom-xxxl-unit-5 {
    bottom: 0.5rem !important;
  }
  .bottom-xxxl-unit-6 {
    bottom: 0.6rem !important;
  }
  .bottom-xxxl-unit-7 {
    bottom: 0.7rem !important;
  }
  .bottom-xxxl-unit-8 {
    bottom: 0.8rem !important;
  }
  .bottom-xxxl-unit-9 {
    bottom: 0.9rem !important;
  }
  .bottom-xxxl-unit-10 {
    bottom: 1rem !important;
  }
  .bottom-xxxl-unit-11 {
    bottom: 1.1rem !important;
  }
  .bottom-xxxl-unit-12 {
    bottom: 1.2rem !important;
  }
  .bottom-xxxl-unit-13 {
    bottom: 1.3rem !important;
  }
  .bottom-xxxl-unit-14 {
    bottom: 1.4rem !important;
  }
  .bottom-xxxl-unit-15 {
    bottom: 1.5rem !important;
  }
  .bottom-xxxl-unit-16 {
    bottom: 1.6rem !important;
  }
  .bottom-xxxl-unit-17 {
    bottom: 1.7rem !important;
  }
  .bottom-xxxl-unit-18 {
    bottom: 1.8rem !important;
  }
  .bottom-xxxl-unit-19 {
    bottom: 1.9rem !important;
  }
  .bottom-xxxl-unit-20 {
    bottom: 2rem !important;
  }
  .bottom-xxxl-unit-25 {
    bottom: 2.5rem !important;
  }
  .bottom-xxxl-unit-30 {
    bottom: 3rem !important;
  }
  .bottom-xxxl-unit-35 {
    bottom: 3.5rem !important;
  }
  .bottom-xxxl-unit-40 {
    bottom: 4rem !important;
  }
  .bottom-xxxl-unit-45 {
    bottom: 4.5rem !important;
  }
  .bottom-xxxl-unit-50 {
    bottom: 5rem !important;
  }
  .bottom-xxxl-unit-55 {
    bottom: 5.5rem !important;
  }
  .bottom-xxxl-unit-60 {
    bottom: 6rem !important;
  }
  .bottom-xxxl-unit-65 {
    bottom: 6.5rem !important;
  }
  .bottom-xxxl-unit-70 {
    bottom: 7rem !important;
  }
  .bottom-xxxl-unit-75 {
    bottom: 7.5rem !important;
  }
  .bottom-xxxl-unit-80 {
    bottom: 8rem !important;
  }
  .bottom-xxxl-unit-85 {
    bottom: 8.5rem !important;
  }
  .bottom-xxxl-unit-90 {
    bottom: 9rem !important;
  }
  .bottom-xxxl-unit-95 {
    bottom: 9.5rem !important;
  }
  .bottom-xxxl-unit-100 {
    bottom: 10rem !important;
  }
  .bottom-xxxl-unit-130 {
    bottom: 13rem !important;
  }
  .bottom-xxxl-unit-140 {
    bottom: 14rem !important;
  }
  .bottom-xxxl-unit-150 {
    bottom: 15rem !important;
  }
  .bottom-xxxl-unit-200 {
    bottom: 20rem !important;
  }
  .bottom-xxxl-unit-250 {
    bottom: 25rem !important;
  }
  .bottom-xxxl-unit-300 {
    bottom: 30rem !important;
  }
  .bottom-xxxl-unit-400 {
    bottom: 40rem !important;
  }
  .bottom-xxxl-unit-410 {
    bottom: 41rem !important;
  }
  .bottom-xxxl-unit-450 {
    bottom: 45rem !important;
  }
  .left-xxxl-unit-0 {
    left: 0 !important;
  }
  .left-xxxl-unit-1 {
    left: 0.1rem !important;
  }
  .left-xxxl-unit-2 {
    left: 0.2rem !important;
  }
  .left-xxxl-unit-3 {
    left: 0.3rem !important;
  }
  .left-xxxl-unit-4 {
    left: 0.4rem !important;
  }
  .left-xxxl-unit-5 {
    left: 0.5rem !important;
  }
  .left-xxxl-unit-6 {
    left: 0.6rem !important;
  }
  .left-xxxl-unit-7 {
    left: 0.7rem !important;
  }
  .left-xxxl-unit-8 {
    left: 0.8rem !important;
  }
  .left-xxxl-unit-9 {
    left: 0.9rem !important;
  }
  .left-xxxl-unit-10 {
    left: 1rem !important;
  }
  .left-xxxl-unit-11 {
    left: 1.1rem !important;
  }
  .left-xxxl-unit-12 {
    left: 1.2rem !important;
  }
  .left-xxxl-unit-13 {
    left: 1.3rem !important;
  }
  .left-xxxl-unit-14 {
    left: 1.4rem !important;
  }
  .left-xxxl-unit-15 {
    left: 1.5rem !important;
  }
  .left-xxxl-unit-16 {
    left: 1.6rem !important;
  }
  .left-xxxl-unit-17 {
    left: 1.7rem !important;
  }
  .left-xxxl-unit-18 {
    left: 1.8rem !important;
  }
  .left-xxxl-unit-19 {
    left: 1.9rem !important;
  }
  .left-xxxl-unit-20 {
    left: 2rem !important;
  }
  .left-xxxl-unit-25 {
    left: 2.5rem !important;
  }
  .left-xxxl-unit-30 {
    left: 3rem !important;
  }
  .left-xxxl-unit-35 {
    left: 3.5rem !important;
  }
  .left-xxxl-unit-40 {
    left: 4rem !important;
  }
  .left-xxxl-unit-45 {
    left: 4.5rem !important;
  }
  .left-xxxl-unit-50 {
    left: 5rem !important;
  }
  .left-xxxl-unit-55 {
    left: 5.5rem !important;
  }
  .left-xxxl-unit-60 {
    left: 6rem !important;
  }
  .left-xxxl-unit-65 {
    left: 6.5rem !important;
  }
  .left-xxxl-unit-70 {
    left: 7rem !important;
  }
  .left-xxxl-unit-75 {
    left: 7.5rem !important;
  }
  .left-xxxl-unit-80 {
    left: 8rem !important;
  }
  .left-xxxl-unit-85 {
    left: 8.5rem !important;
  }
  .left-xxxl-unit-90 {
    left: 9rem !important;
  }
  .left-xxxl-unit-95 {
    left: 9.5rem !important;
  }
  .left-xxxl-unit-100 {
    left: 10rem !important;
  }
  .left-xxxl-unit-130 {
    left: 13rem !important;
  }
  .left-xxxl-unit-140 {
    left: 14rem !important;
  }
  .left-xxxl-unit-150 {
    left: 15rem !important;
  }
  .left-xxxl-unit-200 {
    left: 20rem !important;
  }
  .left-xxxl-unit-250 {
    left: 25rem !important;
  }
  .left-xxxl-unit-300 {
    left: 30rem !important;
  }
  .left-xxxl-unit-400 {
    left: 40rem !important;
  }
  .left-xxxl-unit-410 {
    left: 41rem !important;
  }
  .left-xxxl-unit-450 {
    left: 45rem !important;
  }
}
.w-unit-0 {
  width: 0 !important;
}

.w-unit-1 {
  width: 0.1rem !important;
}

.w-unit-2 {
  width: 0.2rem !important;
}

.w-unit-3 {
  width: 0.3rem !important;
}

.w-unit-4 {
  width: 0.4rem !important;
}

.w-unit-5 {
  width: 0.5rem !important;
}

.w-unit-6 {
  width: 0.6rem !important;
}

.w-unit-7 {
  width: 0.7rem !important;
}

.w-unit-8 {
  width: 0.8rem !important;
}

.w-unit-9 {
  width: 0.9rem !important;
}

.w-unit-10 {
  width: 1rem !important;
}

.w-unit-11 {
  width: 1.1rem !important;
}

.w-unit-12 {
  width: 1.2rem !important;
}

.w-unit-13 {
  width: 1.3rem !important;
}

.w-unit-14 {
  width: 1.4rem !important;
}

.w-unit-15 {
  width: 1.5rem !important;
}

.w-unit-16 {
  width: 1.6rem !important;
}

.w-unit-17 {
  width: 1.7rem !important;
}

.w-unit-18 {
  width: 1.8rem !important;
}

.w-unit-19 {
  width: 1.9rem !important;
}

.w-unit-20 {
  width: 2rem !important;
}

.w-unit-25 {
  width: 2.5rem !important;
}

.w-unit-30 {
  width: 3rem !important;
}

.w-unit-35 {
  width: 3.5rem !important;
}

.w-unit-40 {
  width: 4rem !important;
}

.w-unit-45 {
  width: 4.5rem !important;
}

.w-unit-50 {
  width: 5rem !important;
}

.w-unit-55 {
  width: 5.5rem !important;
}

.w-unit-60 {
  width: 6rem !important;
}

.w-unit-65 {
  width: 6.5rem !important;
}

.w-unit-70 {
  width: 7rem !important;
}

.w-unit-75 {
  width: 7.5rem !important;
}

.w-unit-80 {
  width: 8rem !important;
}

.w-unit-85 {
  width: 8.5rem !important;
}

.w-unit-90 {
  width: 9rem !important;
}

.w-unit-95 {
  width: 9.5rem !important;
}

.w-unit-100 {
  width: 10rem !important;
}

.w-unit-130 {
  width: 13rem !important;
}

.w-unit-140 {
  width: 14rem !important;
}

.w-unit-150 {
  width: 15rem !important;
}

.w-unit-200 {
  width: 20rem !important;
}

.w-unit-250 {
  width: 25rem !important;
}

.w-unit-300 {
  width: 30rem !important;
}

.w-unit-400 {
  width: 40rem !important;
}

.w-unit-410 {
  width: 41rem !important;
}

.w-unit-450 {
  width: 45rem !important;
}

.h-unit-0 {
  height: 0 !important;
}

.h-unit-1 {
  height: 0.1rem !important;
}

.h-unit-2 {
  height: 0.2rem !important;
}

.h-unit-3 {
  height: 0.3rem !important;
}

.h-unit-4 {
  height: 0.4rem !important;
}

.h-unit-5 {
  height: 0.5rem !important;
}

.h-unit-6 {
  height: 0.6rem !important;
}

.h-unit-7 {
  height: 0.7rem !important;
}

.h-unit-8 {
  height: 0.8rem !important;
}

.h-unit-9 {
  height: 0.9rem !important;
}

.h-unit-10 {
  height: 1rem !important;
}

.h-unit-11 {
  height: 1.1rem !important;
}

.h-unit-12 {
  height: 1.2rem !important;
}

.h-unit-13 {
  height: 1.3rem !important;
}

.h-unit-14 {
  height: 1.4rem !important;
}

.h-unit-15 {
  height: 1.5rem !important;
}

.h-unit-16 {
  height: 1.6rem !important;
}

.h-unit-17 {
  height: 1.7rem !important;
}

.h-unit-18 {
  height: 1.8rem !important;
}

.h-unit-19 {
  height: 1.9rem !important;
}

.h-unit-20 {
  height: 2rem !important;
}

.h-unit-25 {
  height: 2.5rem !important;
}

.h-unit-30 {
  height: 3rem !important;
}

.h-unit-35 {
  height: 3.5rem !important;
}

.h-unit-40 {
  height: 4rem !important;
}

.h-unit-45 {
  height: 4.5rem !important;
}

.h-unit-50 {
  height: 5rem !important;
}

.h-unit-55 {
  height: 5.5rem !important;
}

.h-unit-60 {
  height: 6rem !important;
}

.h-unit-65 {
  height: 6.5rem !important;
}

.h-unit-70 {
  height: 7rem !important;
}

.h-unit-75 {
  height: 7.5rem !important;
}

.h-unit-80 {
  height: 8rem !important;
}

.h-unit-85 {
  height: 8.5rem !important;
}

.h-unit-90 {
  height: 9rem !important;
}

.h-unit-95 {
  height: 9.5rem !important;
}

.h-unit-100 {
  height: 10rem !important;
}

.h-unit-130 {
  height: 13rem !important;
}

.h-unit-140 {
  height: 14rem !important;
}

.h-unit-150 {
  height: 15rem !important;
}

.h-unit-200 {
  height: 20rem !important;
}

.h-unit-250 {
  height: 25rem !important;
}

.h-unit-300 {
  height: 30rem !important;
}

.h-unit-400 {
  height: 40rem !important;
}

.h-unit-410 {
  height: 41rem !important;
}

.h-unit-450 {
  height: 45rem !important;
}

.minw-unit-0 {
  min-width: 0 !important;
}

.minw-unit-1 {
  min-width: 0.1rem !important;
}

.minw-unit-2 {
  min-width: 0.2rem !important;
}

.minw-unit-3 {
  min-width: 0.3rem !important;
}

.minw-unit-4 {
  min-width: 0.4rem !important;
}

.minw-unit-5 {
  min-width: 0.5rem !important;
}

.minw-unit-6 {
  min-width: 0.6rem !important;
}

.minw-unit-7 {
  min-width: 0.7rem !important;
}

.minw-unit-8 {
  min-width: 0.8rem !important;
}

.minw-unit-9 {
  min-width: 0.9rem !important;
}

.minw-unit-10 {
  min-width: 1rem !important;
}

.minw-unit-11 {
  min-width: 1.1rem !important;
}

.minw-unit-12 {
  min-width: 1.2rem !important;
}

.minw-unit-13 {
  min-width: 1.3rem !important;
}

.minw-unit-14 {
  min-width: 1.4rem !important;
}

.minw-unit-15 {
  min-width: 1.5rem !important;
}

.minw-unit-16 {
  min-width: 1.6rem !important;
}

.minw-unit-17 {
  min-width: 1.7rem !important;
}

.minw-unit-18 {
  min-width: 1.8rem !important;
}

.minw-unit-19 {
  min-width: 1.9rem !important;
}

.minw-unit-20 {
  min-width: 2rem !important;
}

.minw-unit-25 {
  min-width: 2.5rem !important;
}

.minw-unit-30 {
  min-width: 3rem !important;
}

.minw-unit-35 {
  min-width: 3.5rem !important;
}

.minw-unit-40 {
  min-width: 4rem !important;
}

.minw-unit-45 {
  min-width: 4.5rem !important;
}

.minw-unit-50 {
  min-width: 5rem !important;
}

.minw-unit-55 {
  min-width: 5.5rem !important;
}

.minw-unit-60 {
  min-width: 6rem !important;
}

.minw-unit-65 {
  min-width: 6.5rem !important;
}

.minw-unit-70 {
  min-width: 7rem !important;
}

.minw-unit-75 {
  min-width: 7.5rem !important;
}

.minw-unit-80 {
  min-width: 8rem !important;
}

.minw-unit-85 {
  min-width: 8.5rem !important;
}

.minw-unit-90 {
  min-width: 9rem !important;
}

.minw-unit-95 {
  min-width: 9.5rem !important;
}

.minw-unit-100 {
  min-width: 10rem !important;
}

.minw-unit-130 {
  min-width: 13rem !important;
}

.minw-unit-140 {
  min-width: 14rem !important;
}

.minw-unit-150 {
  min-width: 15rem !important;
}

.minw-unit-200 {
  min-width: 20rem !important;
}

.minw-unit-250 {
  min-width: 25rem !important;
}

.minw-unit-300 {
  min-width: 30rem !important;
}

.minw-unit-400 {
  min-width: 40rem !important;
}

.minw-unit-410 {
  min-width: 41rem !important;
}

.minw-unit-450 {
  min-width: 45rem !important;
}

.minh-unit-0 {
  min-height: 0 !important;
}

.minh-unit-1 {
  min-height: 0.1rem !important;
}

.minh-unit-2 {
  min-height: 0.2rem !important;
}

.minh-unit-3 {
  min-height: 0.3rem !important;
}

.minh-unit-4 {
  min-height: 0.4rem !important;
}

.minh-unit-5 {
  min-height: 0.5rem !important;
}

.minh-unit-6 {
  min-height: 0.6rem !important;
}

.minh-unit-7 {
  min-height: 0.7rem !important;
}

.minh-unit-8 {
  min-height: 0.8rem !important;
}

.minh-unit-9 {
  min-height: 0.9rem !important;
}

.minh-unit-10 {
  min-height: 1rem !important;
}

.minh-unit-11 {
  min-height: 1.1rem !important;
}

.minh-unit-12 {
  min-height: 1.2rem !important;
}

.minh-unit-13 {
  min-height: 1.3rem !important;
}

.minh-unit-14 {
  min-height: 1.4rem !important;
}

.minh-unit-15 {
  min-height: 1.5rem !important;
}

.minh-unit-16 {
  min-height: 1.6rem !important;
}

.minh-unit-17 {
  min-height: 1.7rem !important;
}

.minh-unit-18 {
  min-height: 1.8rem !important;
}

.minh-unit-19 {
  min-height: 1.9rem !important;
}

.minh-unit-20 {
  min-height: 2rem !important;
}

.minh-unit-25 {
  min-height: 2.5rem !important;
}

.minh-unit-30 {
  min-height: 3rem !important;
}

.minh-unit-35 {
  min-height: 3.5rem !important;
}

.minh-unit-40 {
  min-height: 4rem !important;
}

.minh-unit-45 {
  min-height: 4.5rem !important;
}

.minh-unit-50 {
  min-height: 5rem !important;
}

.minh-unit-55 {
  min-height: 5.5rem !important;
}

.minh-unit-60 {
  min-height: 6rem !important;
}

.minh-unit-65 {
  min-height: 6.5rem !important;
}

.minh-unit-70 {
  min-height: 7rem !important;
}

.minh-unit-75 {
  min-height: 7.5rem !important;
}

.minh-unit-80 {
  min-height: 8rem !important;
}

.minh-unit-85 {
  min-height: 8.5rem !important;
}

.minh-unit-90 {
  min-height: 9rem !important;
}

.minh-unit-95 {
  min-height: 9.5rem !important;
}

.minh-unit-100 {
  min-height: 10rem !important;
}

.minh-unit-130 {
  min-height: 13rem !important;
}

.minh-unit-140 {
  min-height: 14rem !important;
}

.minh-unit-150 {
  min-height: 15rem !important;
}

.minh-unit-200 {
  min-height: 20rem !important;
}

.minh-unit-250 {
  min-height: 25rem !important;
}

.minh-unit-300 {
  min-height: 30rem !important;
}

.minh-unit-400 {
  min-height: 40rem !important;
}

.minh-unit-410 {
  min-height: 41rem !important;
}

.minh-unit-450 {
  min-height: 45rem !important;
}

.maxw-unit-0 {
  max-width: 0 !important;
}

.maxw-unit-1 {
  max-width: 0.1rem !important;
}

.maxw-unit-2 {
  max-width: 0.2rem !important;
}

.maxw-unit-3 {
  max-width: 0.3rem !important;
}

.maxw-unit-4 {
  max-width: 0.4rem !important;
}

.maxw-unit-5 {
  max-width: 0.5rem !important;
}

.maxw-unit-6 {
  max-width: 0.6rem !important;
}

.maxw-unit-7 {
  max-width: 0.7rem !important;
}

.maxw-unit-8 {
  max-width: 0.8rem !important;
}

.maxw-unit-9 {
  max-width: 0.9rem !important;
}

.maxw-unit-10 {
  max-width: 1rem !important;
}

.maxw-unit-11 {
  max-width: 1.1rem !important;
}

.maxw-unit-12 {
  max-width: 1.2rem !important;
}

.maxw-unit-13 {
  max-width: 1.3rem !important;
}

.maxw-unit-14 {
  max-width: 1.4rem !important;
}

.maxw-unit-15 {
  max-width: 1.5rem !important;
}

.maxw-unit-16 {
  max-width: 1.6rem !important;
}

.maxw-unit-17 {
  max-width: 1.7rem !important;
}

.maxw-unit-18 {
  max-width: 1.8rem !important;
}

.maxw-unit-19 {
  max-width: 1.9rem !important;
}

.maxw-unit-20 {
  max-width: 2rem !important;
}

.maxw-unit-25 {
  max-width: 2.5rem !important;
}

.maxw-unit-30 {
  max-width: 3rem !important;
}

.maxw-unit-35 {
  max-width: 3.5rem !important;
}

.maxw-unit-40 {
  max-width: 4rem !important;
}

.maxw-unit-45 {
  max-width: 4.5rem !important;
}

.maxw-unit-50 {
  max-width: 5rem !important;
}

.maxw-unit-55 {
  max-width: 5.5rem !important;
}

.maxw-unit-60 {
  max-width: 6rem !important;
}

.maxw-unit-65 {
  max-width: 6.5rem !important;
}

.maxw-unit-70 {
  max-width: 7rem !important;
}

.maxw-unit-75 {
  max-width: 7.5rem !important;
}

.maxw-unit-80 {
  max-width: 8rem !important;
}

.maxw-unit-85 {
  max-width: 8.5rem !important;
}

.maxw-unit-90 {
  max-width: 9rem !important;
}

.maxw-unit-95 {
  max-width: 9.5rem !important;
}

.maxw-unit-100 {
  max-width: 10rem !important;
}

.maxw-unit-130 {
  max-width: 13rem !important;
}

.maxw-unit-140 {
  max-width: 14rem !important;
}

.maxw-unit-150 {
  max-width: 15rem !important;
}

.maxw-unit-200 {
  max-width: 20rem !important;
}

.maxw-unit-250 {
  max-width: 25rem !important;
}

.maxw-unit-300 {
  max-width: 30rem !important;
}

.maxw-unit-400 {
  max-width: 40rem !important;
}

.maxw-unit-410 {
  max-width: 41rem !important;
}

.maxw-unit-450 {
  max-width: 45rem !important;
}

.maxh-unit-0 {
  max-height: 0 !important;
}

.maxh-unit-1 {
  max-height: 0.1rem !important;
}

.maxh-unit-2 {
  max-height: 0.2rem !important;
}

.maxh-unit-3 {
  max-height: 0.3rem !important;
}

.maxh-unit-4 {
  max-height: 0.4rem !important;
}

.maxh-unit-5 {
  max-height: 0.5rem !important;
}

.maxh-unit-6 {
  max-height: 0.6rem !important;
}

.maxh-unit-7 {
  max-height: 0.7rem !important;
}

.maxh-unit-8 {
  max-height: 0.8rem !important;
}

.maxh-unit-9 {
  max-height: 0.9rem !important;
}

.maxh-unit-10 {
  max-height: 1rem !important;
}

.maxh-unit-11 {
  max-height: 1.1rem !important;
}

.maxh-unit-12 {
  max-height: 1.2rem !important;
}

.maxh-unit-13 {
  max-height: 1.3rem !important;
}

.maxh-unit-14 {
  max-height: 1.4rem !important;
}

.maxh-unit-15 {
  max-height: 1.5rem !important;
}

.maxh-unit-16 {
  max-height: 1.6rem !important;
}

.maxh-unit-17 {
  max-height: 1.7rem !important;
}

.maxh-unit-18 {
  max-height: 1.8rem !important;
}

.maxh-unit-19 {
  max-height: 1.9rem !important;
}

.maxh-unit-20 {
  max-height: 2rem !important;
}

.maxh-unit-25 {
  max-height: 2.5rem !important;
}

.maxh-unit-30 {
  max-height: 3rem !important;
}

.maxh-unit-35 {
  max-height: 3.5rem !important;
}

.maxh-unit-40 {
  max-height: 4rem !important;
}

.maxh-unit-45 {
  max-height: 4.5rem !important;
}

.maxh-unit-50 {
  max-height: 5rem !important;
}

.maxh-unit-55 {
  max-height: 5.5rem !important;
}

.maxh-unit-60 {
  max-height: 6rem !important;
}

.maxh-unit-65 {
  max-height: 6.5rem !important;
}

.maxh-unit-70 {
  max-height: 7rem !important;
}

.maxh-unit-75 {
  max-height: 7.5rem !important;
}

.maxh-unit-80 {
  max-height: 8rem !important;
}

.maxh-unit-85 {
  max-height: 8.5rem !important;
}

.maxh-unit-90 {
  max-height: 9rem !important;
}

.maxh-unit-95 {
  max-height: 9.5rem !important;
}

.maxh-unit-100 {
  max-height: 10rem !important;
}

.maxh-unit-130 {
  max-height: 13rem !important;
}

.maxh-unit-140 {
  max-height: 14rem !important;
}

.maxh-unit-150 {
  max-height: 15rem !important;
}

.maxh-unit-200 {
  max-height: 20rem !important;
}

.maxh-unit-250 {
  max-height: 25rem !important;
}

.maxh-unit-300 {
  max-height: 30rem !important;
}

.maxh-unit-400 {
  max-height: 40rem !important;
}

.maxh-unit-410 {
  max-height: 41rem !important;
}

.maxh-unit-450 {
  max-height: 45rem !important;
}

@media (min-width: 576px) {
  .w-sm-unit-0 {
    width: 0 !important;
  }
  .w-sm-unit-1 {
    width: 0.1rem !important;
  }
  .w-sm-unit-2 {
    width: 0.2rem !important;
  }
  .w-sm-unit-3 {
    width: 0.3rem !important;
  }
  .w-sm-unit-4 {
    width: 0.4rem !important;
  }
  .w-sm-unit-5 {
    width: 0.5rem !important;
  }
  .w-sm-unit-6 {
    width: 0.6rem !important;
  }
  .w-sm-unit-7 {
    width: 0.7rem !important;
  }
  .w-sm-unit-8 {
    width: 0.8rem !important;
  }
  .w-sm-unit-9 {
    width: 0.9rem !important;
  }
  .w-sm-unit-10 {
    width: 1rem !important;
  }
  .w-sm-unit-11 {
    width: 1.1rem !important;
  }
  .w-sm-unit-12 {
    width: 1.2rem !important;
  }
  .w-sm-unit-13 {
    width: 1.3rem !important;
  }
  .w-sm-unit-14 {
    width: 1.4rem !important;
  }
  .w-sm-unit-15 {
    width: 1.5rem !important;
  }
  .w-sm-unit-16 {
    width: 1.6rem !important;
  }
  .w-sm-unit-17 {
    width: 1.7rem !important;
  }
  .w-sm-unit-18 {
    width: 1.8rem !important;
  }
  .w-sm-unit-19 {
    width: 1.9rem !important;
  }
  .w-sm-unit-20 {
    width: 2rem !important;
  }
  .w-sm-unit-25 {
    width: 2.5rem !important;
  }
  .w-sm-unit-30 {
    width: 3rem !important;
  }
  .w-sm-unit-35 {
    width: 3.5rem !important;
  }
  .w-sm-unit-40 {
    width: 4rem !important;
  }
  .w-sm-unit-45 {
    width: 4.5rem !important;
  }
  .w-sm-unit-50 {
    width: 5rem !important;
  }
  .w-sm-unit-55 {
    width: 5.5rem !important;
  }
  .w-sm-unit-60 {
    width: 6rem !important;
  }
  .w-sm-unit-65 {
    width: 6.5rem !important;
  }
  .w-sm-unit-70 {
    width: 7rem !important;
  }
  .w-sm-unit-75 {
    width: 7.5rem !important;
  }
  .w-sm-unit-80 {
    width: 8rem !important;
  }
  .w-sm-unit-85 {
    width: 8.5rem !important;
  }
  .w-sm-unit-90 {
    width: 9rem !important;
  }
  .w-sm-unit-95 {
    width: 9.5rem !important;
  }
  .w-sm-unit-100 {
    width: 10rem !important;
  }
  .w-sm-unit-130 {
    width: 13rem !important;
  }
  .w-sm-unit-140 {
    width: 14rem !important;
  }
  .w-sm-unit-150 {
    width: 15rem !important;
  }
  .w-sm-unit-200 {
    width: 20rem !important;
  }
  .w-sm-unit-250 {
    width: 25rem !important;
  }
  .w-sm-unit-300 {
    width: 30rem !important;
  }
  .w-sm-unit-400 {
    width: 40rem !important;
  }
  .w-sm-unit-410 {
    width: 41rem !important;
  }
  .w-sm-unit-450 {
    width: 45rem !important;
  }
  .h-sm-unit-0 {
    height: 0 !important;
  }
  .h-sm-unit-1 {
    height: 0.1rem !important;
  }
  .h-sm-unit-2 {
    height: 0.2rem !important;
  }
  .h-sm-unit-3 {
    height: 0.3rem !important;
  }
  .h-sm-unit-4 {
    height: 0.4rem !important;
  }
  .h-sm-unit-5 {
    height: 0.5rem !important;
  }
  .h-sm-unit-6 {
    height: 0.6rem !important;
  }
  .h-sm-unit-7 {
    height: 0.7rem !important;
  }
  .h-sm-unit-8 {
    height: 0.8rem !important;
  }
  .h-sm-unit-9 {
    height: 0.9rem !important;
  }
  .h-sm-unit-10 {
    height: 1rem !important;
  }
  .h-sm-unit-11 {
    height: 1.1rem !important;
  }
  .h-sm-unit-12 {
    height: 1.2rem !important;
  }
  .h-sm-unit-13 {
    height: 1.3rem !important;
  }
  .h-sm-unit-14 {
    height: 1.4rem !important;
  }
  .h-sm-unit-15 {
    height: 1.5rem !important;
  }
  .h-sm-unit-16 {
    height: 1.6rem !important;
  }
  .h-sm-unit-17 {
    height: 1.7rem !important;
  }
  .h-sm-unit-18 {
    height: 1.8rem !important;
  }
  .h-sm-unit-19 {
    height: 1.9rem !important;
  }
  .h-sm-unit-20 {
    height: 2rem !important;
  }
  .h-sm-unit-25 {
    height: 2.5rem !important;
  }
  .h-sm-unit-30 {
    height: 3rem !important;
  }
  .h-sm-unit-35 {
    height: 3.5rem !important;
  }
  .h-sm-unit-40 {
    height: 4rem !important;
  }
  .h-sm-unit-45 {
    height: 4.5rem !important;
  }
  .h-sm-unit-50 {
    height: 5rem !important;
  }
  .h-sm-unit-55 {
    height: 5.5rem !important;
  }
  .h-sm-unit-60 {
    height: 6rem !important;
  }
  .h-sm-unit-65 {
    height: 6.5rem !important;
  }
  .h-sm-unit-70 {
    height: 7rem !important;
  }
  .h-sm-unit-75 {
    height: 7.5rem !important;
  }
  .h-sm-unit-80 {
    height: 8rem !important;
  }
  .h-sm-unit-85 {
    height: 8.5rem !important;
  }
  .h-sm-unit-90 {
    height: 9rem !important;
  }
  .h-sm-unit-95 {
    height: 9.5rem !important;
  }
  .h-sm-unit-100 {
    height: 10rem !important;
  }
  .h-sm-unit-130 {
    height: 13rem !important;
  }
  .h-sm-unit-140 {
    height: 14rem !important;
  }
  .h-sm-unit-150 {
    height: 15rem !important;
  }
  .h-sm-unit-200 {
    height: 20rem !important;
  }
  .h-sm-unit-250 {
    height: 25rem !important;
  }
  .h-sm-unit-300 {
    height: 30rem !important;
  }
  .h-sm-unit-400 {
    height: 40rem !important;
  }
  .h-sm-unit-410 {
    height: 41rem !important;
  }
  .h-sm-unit-450 {
    height: 45rem !important;
  }
  .minw-sm-unit-0 {
    min-width: 0 !important;
  }
  .minw-sm-unit-1 {
    min-width: 0.1rem !important;
  }
  .minw-sm-unit-2 {
    min-width: 0.2rem !important;
  }
  .minw-sm-unit-3 {
    min-width: 0.3rem !important;
  }
  .minw-sm-unit-4 {
    min-width: 0.4rem !important;
  }
  .minw-sm-unit-5 {
    min-width: 0.5rem !important;
  }
  .minw-sm-unit-6 {
    min-width: 0.6rem !important;
  }
  .minw-sm-unit-7 {
    min-width: 0.7rem !important;
  }
  .minw-sm-unit-8 {
    min-width: 0.8rem !important;
  }
  .minw-sm-unit-9 {
    min-width: 0.9rem !important;
  }
  .minw-sm-unit-10 {
    min-width: 1rem !important;
  }
  .minw-sm-unit-11 {
    min-width: 1.1rem !important;
  }
  .minw-sm-unit-12 {
    min-width: 1.2rem !important;
  }
  .minw-sm-unit-13 {
    min-width: 1.3rem !important;
  }
  .minw-sm-unit-14 {
    min-width: 1.4rem !important;
  }
  .minw-sm-unit-15 {
    min-width: 1.5rem !important;
  }
  .minw-sm-unit-16 {
    min-width: 1.6rem !important;
  }
  .minw-sm-unit-17 {
    min-width: 1.7rem !important;
  }
  .minw-sm-unit-18 {
    min-width: 1.8rem !important;
  }
  .minw-sm-unit-19 {
    min-width: 1.9rem !important;
  }
  .minw-sm-unit-20 {
    min-width: 2rem !important;
  }
  .minw-sm-unit-25 {
    min-width: 2.5rem !important;
  }
  .minw-sm-unit-30 {
    min-width: 3rem !important;
  }
  .minw-sm-unit-35 {
    min-width: 3.5rem !important;
  }
  .minw-sm-unit-40 {
    min-width: 4rem !important;
  }
  .minw-sm-unit-45 {
    min-width: 4.5rem !important;
  }
  .minw-sm-unit-50 {
    min-width: 5rem !important;
  }
  .minw-sm-unit-55 {
    min-width: 5.5rem !important;
  }
  .minw-sm-unit-60 {
    min-width: 6rem !important;
  }
  .minw-sm-unit-65 {
    min-width: 6.5rem !important;
  }
  .minw-sm-unit-70 {
    min-width: 7rem !important;
  }
  .minw-sm-unit-75 {
    min-width: 7.5rem !important;
  }
  .minw-sm-unit-80 {
    min-width: 8rem !important;
  }
  .minw-sm-unit-85 {
    min-width: 8.5rem !important;
  }
  .minw-sm-unit-90 {
    min-width: 9rem !important;
  }
  .minw-sm-unit-95 {
    min-width: 9.5rem !important;
  }
  .minw-sm-unit-100 {
    min-width: 10rem !important;
  }
  .minw-sm-unit-130 {
    min-width: 13rem !important;
  }
  .minw-sm-unit-140 {
    min-width: 14rem !important;
  }
  .minw-sm-unit-150 {
    min-width: 15rem !important;
  }
  .minw-sm-unit-200 {
    min-width: 20rem !important;
  }
  .minw-sm-unit-250 {
    min-width: 25rem !important;
  }
  .minw-sm-unit-300 {
    min-width: 30rem !important;
  }
  .minw-sm-unit-400 {
    min-width: 40rem !important;
  }
  .minw-sm-unit-410 {
    min-width: 41rem !important;
  }
  .minw-sm-unit-450 {
    min-width: 45rem !important;
  }
  .minh-sm-unit-0 {
    min-height: 0 !important;
  }
  .minh-sm-unit-1 {
    min-height: 0.1rem !important;
  }
  .minh-sm-unit-2 {
    min-height: 0.2rem !important;
  }
  .minh-sm-unit-3 {
    min-height: 0.3rem !important;
  }
  .minh-sm-unit-4 {
    min-height: 0.4rem !important;
  }
  .minh-sm-unit-5 {
    min-height: 0.5rem !important;
  }
  .minh-sm-unit-6 {
    min-height: 0.6rem !important;
  }
  .minh-sm-unit-7 {
    min-height: 0.7rem !important;
  }
  .minh-sm-unit-8 {
    min-height: 0.8rem !important;
  }
  .minh-sm-unit-9 {
    min-height: 0.9rem !important;
  }
  .minh-sm-unit-10 {
    min-height: 1rem !important;
  }
  .minh-sm-unit-11 {
    min-height: 1.1rem !important;
  }
  .minh-sm-unit-12 {
    min-height: 1.2rem !important;
  }
  .minh-sm-unit-13 {
    min-height: 1.3rem !important;
  }
  .minh-sm-unit-14 {
    min-height: 1.4rem !important;
  }
  .minh-sm-unit-15 {
    min-height: 1.5rem !important;
  }
  .minh-sm-unit-16 {
    min-height: 1.6rem !important;
  }
  .minh-sm-unit-17 {
    min-height: 1.7rem !important;
  }
  .minh-sm-unit-18 {
    min-height: 1.8rem !important;
  }
  .minh-sm-unit-19 {
    min-height: 1.9rem !important;
  }
  .minh-sm-unit-20 {
    min-height: 2rem !important;
  }
  .minh-sm-unit-25 {
    min-height: 2.5rem !important;
  }
  .minh-sm-unit-30 {
    min-height: 3rem !important;
  }
  .minh-sm-unit-35 {
    min-height: 3.5rem !important;
  }
  .minh-sm-unit-40 {
    min-height: 4rem !important;
  }
  .minh-sm-unit-45 {
    min-height: 4.5rem !important;
  }
  .minh-sm-unit-50 {
    min-height: 5rem !important;
  }
  .minh-sm-unit-55 {
    min-height: 5.5rem !important;
  }
  .minh-sm-unit-60 {
    min-height: 6rem !important;
  }
  .minh-sm-unit-65 {
    min-height: 6.5rem !important;
  }
  .minh-sm-unit-70 {
    min-height: 7rem !important;
  }
  .minh-sm-unit-75 {
    min-height: 7.5rem !important;
  }
  .minh-sm-unit-80 {
    min-height: 8rem !important;
  }
  .minh-sm-unit-85 {
    min-height: 8.5rem !important;
  }
  .minh-sm-unit-90 {
    min-height: 9rem !important;
  }
  .minh-sm-unit-95 {
    min-height: 9.5rem !important;
  }
  .minh-sm-unit-100 {
    min-height: 10rem !important;
  }
  .minh-sm-unit-130 {
    min-height: 13rem !important;
  }
  .minh-sm-unit-140 {
    min-height: 14rem !important;
  }
  .minh-sm-unit-150 {
    min-height: 15rem !important;
  }
  .minh-sm-unit-200 {
    min-height: 20rem !important;
  }
  .minh-sm-unit-250 {
    min-height: 25rem !important;
  }
  .minh-sm-unit-300 {
    min-height: 30rem !important;
  }
  .minh-sm-unit-400 {
    min-height: 40rem !important;
  }
  .minh-sm-unit-410 {
    min-height: 41rem !important;
  }
  .minh-sm-unit-450 {
    min-height: 45rem !important;
  }
  .maxw-sm-unit-0 {
    max-width: 0 !important;
  }
  .maxw-sm-unit-1 {
    max-width: 0.1rem !important;
  }
  .maxw-sm-unit-2 {
    max-width: 0.2rem !important;
  }
  .maxw-sm-unit-3 {
    max-width: 0.3rem !important;
  }
  .maxw-sm-unit-4 {
    max-width: 0.4rem !important;
  }
  .maxw-sm-unit-5 {
    max-width: 0.5rem !important;
  }
  .maxw-sm-unit-6 {
    max-width: 0.6rem !important;
  }
  .maxw-sm-unit-7 {
    max-width: 0.7rem !important;
  }
  .maxw-sm-unit-8 {
    max-width: 0.8rem !important;
  }
  .maxw-sm-unit-9 {
    max-width: 0.9rem !important;
  }
  .maxw-sm-unit-10 {
    max-width: 1rem !important;
  }
  .maxw-sm-unit-11 {
    max-width: 1.1rem !important;
  }
  .maxw-sm-unit-12 {
    max-width: 1.2rem !important;
  }
  .maxw-sm-unit-13 {
    max-width: 1.3rem !important;
  }
  .maxw-sm-unit-14 {
    max-width: 1.4rem !important;
  }
  .maxw-sm-unit-15 {
    max-width: 1.5rem !important;
  }
  .maxw-sm-unit-16 {
    max-width: 1.6rem !important;
  }
  .maxw-sm-unit-17 {
    max-width: 1.7rem !important;
  }
  .maxw-sm-unit-18 {
    max-width: 1.8rem !important;
  }
  .maxw-sm-unit-19 {
    max-width: 1.9rem !important;
  }
  .maxw-sm-unit-20 {
    max-width: 2rem !important;
  }
  .maxw-sm-unit-25 {
    max-width: 2.5rem !important;
  }
  .maxw-sm-unit-30 {
    max-width: 3rem !important;
  }
  .maxw-sm-unit-35 {
    max-width: 3.5rem !important;
  }
  .maxw-sm-unit-40 {
    max-width: 4rem !important;
  }
  .maxw-sm-unit-45 {
    max-width: 4.5rem !important;
  }
  .maxw-sm-unit-50 {
    max-width: 5rem !important;
  }
  .maxw-sm-unit-55 {
    max-width: 5.5rem !important;
  }
  .maxw-sm-unit-60 {
    max-width: 6rem !important;
  }
  .maxw-sm-unit-65 {
    max-width: 6.5rem !important;
  }
  .maxw-sm-unit-70 {
    max-width: 7rem !important;
  }
  .maxw-sm-unit-75 {
    max-width: 7.5rem !important;
  }
  .maxw-sm-unit-80 {
    max-width: 8rem !important;
  }
  .maxw-sm-unit-85 {
    max-width: 8.5rem !important;
  }
  .maxw-sm-unit-90 {
    max-width: 9rem !important;
  }
  .maxw-sm-unit-95 {
    max-width: 9.5rem !important;
  }
  .maxw-sm-unit-100 {
    max-width: 10rem !important;
  }
  .maxw-sm-unit-130 {
    max-width: 13rem !important;
  }
  .maxw-sm-unit-140 {
    max-width: 14rem !important;
  }
  .maxw-sm-unit-150 {
    max-width: 15rem !important;
  }
  .maxw-sm-unit-200 {
    max-width: 20rem !important;
  }
  .maxw-sm-unit-250 {
    max-width: 25rem !important;
  }
  .maxw-sm-unit-300 {
    max-width: 30rem !important;
  }
  .maxw-sm-unit-400 {
    max-width: 40rem !important;
  }
  .maxw-sm-unit-410 {
    max-width: 41rem !important;
  }
  .maxw-sm-unit-450 {
    max-width: 45rem !important;
  }
  .maxh-sm-unit-0 {
    max-height: 0 !important;
  }
  .maxh-sm-unit-1 {
    max-height: 0.1rem !important;
  }
  .maxh-sm-unit-2 {
    max-height: 0.2rem !important;
  }
  .maxh-sm-unit-3 {
    max-height: 0.3rem !important;
  }
  .maxh-sm-unit-4 {
    max-height: 0.4rem !important;
  }
  .maxh-sm-unit-5 {
    max-height: 0.5rem !important;
  }
  .maxh-sm-unit-6 {
    max-height: 0.6rem !important;
  }
  .maxh-sm-unit-7 {
    max-height: 0.7rem !important;
  }
  .maxh-sm-unit-8 {
    max-height: 0.8rem !important;
  }
  .maxh-sm-unit-9 {
    max-height: 0.9rem !important;
  }
  .maxh-sm-unit-10 {
    max-height: 1rem !important;
  }
  .maxh-sm-unit-11 {
    max-height: 1.1rem !important;
  }
  .maxh-sm-unit-12 {
    max-height: 1.2rem !important;
  }
  .maxh-sm-unit-13 {
    max-height: 1.3rem !important;
  }
  .maxh-sm-unit-14 {
    max-height: 1.4rem !important;
  }
  .maxh-sm-unit-15 {
    max-height: 1.5rem !important;
  }
  .maxh-sm-unit-16 {
    max-height: 1.6rem !important;
  }
  .maxh-sm-unit-17 {
    max-height: 1.7rem !important;
  }
  .maxh-sm-unit-18 {
    max-height: 1.8rem !important;
  }
  .maxh-sm-unit-19 {
    max-height: 1.9rem !important;
  }
  .maxh-sm-unit-20 {
    max-height: 2rem !important;
  }
  .maxh-sm-unit-25 {
    max-height: 2.5rem !important;
  }
  .maxh-sm-unit-30 {
    max-height: 3rem !important;
  }
  .maxh-sm-unit-35 {
    max-height: 3.5rem !important;
  }
  .maxh-sm-unit-40 {
    max-height: 4rem !important;
  }
  .maxh-sm-unit-45 {
    max-height: 4.5rem !important;
  }
  .maxh-sm-unit-50 {
    max-height: 5rem !important;
  }
  .maxh-sm-unit-55 {
    max-height: 5.5rem !important;
  }
  .maxh-sm-unit-60 {
    max-height: 6rem !important;
  }
  .maxh-sm-unit-65 {
    max-height: 6.5rem !important;
  }
  .maxh-sm-unit-70 {
    max-height: 7rem !important;
  }
  .maxh-sm-unit-75 {
    max-height: 7.5rem !important;
  }
  .maxh-sm-unit-80 {
    max-height: 8rem !important;
  }
  .maxh-sm-unit-85 {
    max-height: 8.5rem !important;
  }
  .maxh-sm-unit-90 {
    max-height: 9rem !important;
  }
  .maxh-sm-unit-95 {
    max-height: 9.5rem !important;
  }
  .maxh-sm-unit-100 {
    max-height: 10rem !important;
  }
  .maxh-sm-unit-130 {
    max-height: 13rem !important;
  }
  .maxh-sm-unit-140 {
    max-height: 14rem !important;
  }
  .maxh-sm-unit-150 {
    max-height: 15rem !important;
  }
  .maxh-sm-unit-200 {
    max-height: 20rem !important;
  }
  .maxh-sm-unit-250 {
    max-height: 25rem !important;
  }
  .maxh-sm-unit-300 {
    max-height: 30rem !important;
  }
  .maxh-sm-unit-400 {
    max-height: 40rem !important;
  }
  .maxh-sm-unit-410 {
    max-height: 41rem !important;
  }
  .maxh-sm-unit-450 {
    max-height: 45rem !important;
  }
}
@media (min-width: 768px) {
  .w-md-unit-0 {
    width: 0 !important;
  }
  .w-md-unit-1 {
    width: 0.1rem !important;
  }
  .w-md-unit-2 {
    width: 0.2rem !important;
  }
  .w-md-unit-3 {
    width: 0.3rem !important;
  }
  .w-md-unit-4 {
    width: 0.4rem !important;
  }
  .w-md-unit-5 {
    width: 0.5rem !important;
  }
  .w-md-unit-6 {
    width: 0.6rem !important;
  }
  .w-md-unit-7 {
    width: 0.7rem !important;
  }
  .w-md-unit-8 {
    width: 0.8rem !important;
  }
  .w-md-unit-9 {
    width: 0.9rem !important;
  }
  .w-md-unit-10 {
    width: 1rem !important;
  }
  .w-md-unit-11 {
    width: 1.1rem !important;
  }
  .w-md-unit-12 {
    width: 1.2rem !important;
  }
  .w-md-unit-13 {
    width: 1.3rem !important;
  }
  .w-md-unit-14 {
    width: 1.4rem !important;
  }
  .w-md-unit-15 {
    width: 1.5rem !important;
  }
  .w-md-unit-16 {
    width: 1.6rem !important;
  }
  .w-md-unit-17 {
    width: 1.7rem !important;
  }
  .w-md-unit-18 {
    width: 1.8rem !important;
  }
  .w-md-unit-19 {
    width: 1.9rem !important;
  }
  .w-md-unit-20 {
    width: 2rem !important;
  }
  .w-md-unit-25 {
    width: 2.5rem !important;
  }
  .w-md-unit-30 {
    width: 3rem !important;
  }
  .w-md-unit-35 {
    width: 3.5rem !important;
  }
  .w-md-unit-40 {
    width: 4rem !important;
  }
  .w-md-unit-45 {
    width: 4.5rem !important;
  }
  .w-md-unit-50 {
    width: 5rem !important;
  }
  .w-md-unit-55 {
    width: 5.5rem !important;
  }
  .w-md-unit-60 {
    width: 6rem !important;
  }
  .w-md-unit-65 {
    width: 6.5rem !important;
  }
  .w-md-unit-70 {
    width: 7rem !important;
  }
  .w-md-unit-75 {
    width: 7.5rem !important;
  }
  .w-md-unit-80 {
    width: 8rem !important;
  }
  .w-md-unit-85 {
    width: 8.5rem !important;
  }
  .w-md-unit-90 {
    width: 9rem !important;
  }
  .w-md-unit-95 {
    width: 9.5rem !important;
  }
  .w-md-unit-100 {
    width: 10rem !important;
  }
  .w-md-unit-130 {
    width: 13rem !important;
  }
  .w-md-unit-140 {
    width: 14rem !important;
  }
  .w-md-unit-150 {
    width: 15rem !important;
  }
  .w-md-unit-200 {
    width: 20rem !important;
  }
  .w-md-unit-250 {
    width: 25rem !important;
  }
  .w-md-unit-300 {
    width: 30rem !important;
  }
  .w-md-unit-400 {
    width: 40rem !important;
  }
  .w-md-unit-410 {
    width: 41rem !important;
  }
  .w-md-unit-450 {
    width: 45rem !important;
  }
  .h-md-unit-0 {
    height: 0 !important;
  }
  .h-md-unit-1 {
    height: 0.1rem !important;
  }
  .h-md-unit-2 {
    height: 0.2rem !important;
  }
  .h-md-unit-3 {
    height: 0.3rem !important;
  }
  .h-md-unit-4 {
    height: 0.4rem !important;
  }
  .h-md-unit-5 {
    height: 0.5rem !important;
  }
  .h-md-unit-6 {
    height: 0.6rem !important;
  }
  .h-md-unit-7 {
    height: 0.7rem !important;
  }
  .h-md-unit-8 {
    height: 0.8rem !important;
  }
  .h-md-unit-9 {
    height: 0.9rem !important;
  }
  .h-md-unit-10 {
    height: 1rem !important;
  }
  .h-md-unit-11 {
    height: 1.1rem !important;
  }
  .h-md-unit-12 {
    height: 1.2rem !important;
  }
  .h-md-unit-13 {
    height: 1.3rem !important;
  }
  .h-md-unit-14 {
    height: 1.4rem !important;
  }
  .h-md-unit-15 {
    height: 1.5rem !important;
  }
  .h-md-unit-16 {
    height: 1.6rem !important;
  }
  .h-md-unit-17 {
    height: 1.7rem !important;
  }
  .h-md-unit-18 {
    height: 1.8rem !important;
  }
  .h-md-unit-19 {
    height: 1.9rem !important;
  }
  .h-md-unit-20 {
    height: 2rem !important;
  }
  .h-md-unit-25 {
    height: 2.5rem !important;
  }
  .h-md-unit-30 {
    height: 3rem !important;
  }
  .h-md-unit-35 {
    height: 3.5rem !important;
  }
  .h-md-unit-40 {
    height: 4rem !important;
  }
  .h-md-unit-45 {
    height: 4.5rem !important;
  }
  .h-md-unit-50 {
    height: 5rem !important;
  }
  .h-md-unit-55 {
    height: 5.5rem !important;
  }
  .h-md-unit-60 {
    height: 6rem !important;
  }
  .h-md-unit-65 {
    height: 6.5rem !important;
  }
  .h-md-unit-70 {
    height: 7rem !important;
  }
  .h-md-unit-75 {
    height: 7.5rem !important;
  }
  .h-md-unit-80 {
    height: 8rem !important;
  }
  .h-md-unit-85 {
    height: 8.5rem !important;
  }
  .h-md-unit-90 {
    height: 9rem !important;
  }
  .h-md-unit-95 {
    height: 9.5rem !important;
  }
  .h-md-unit-100 {
    height: 10rem !important;
  }
  .h-md-unit-130 {
    height: 13rem !important;
  }
  .h-md-unit-140 {
    height: 14rem !important;
  }
  .h-md-unit-150 {
    height: 15rem !important;
  }
  .h-md-unit-200 {
    height: 20rem !important;
  }
  .h-md-unit-250 {
    height: 25rem !important;
  }
  .h-md-unit-300 {
    height: 30rem !important;
  }
  .h-md-unit-400 {
    height: 40rem !important;
  }
  .h-md-unit-410 {
    height: 41rem !important;
  }
  .h-md-unit-450 {
    height: 45rem !important;
  }
  .minw-md-unit-0 {
    min-width: 0 !important;
  }
  .minw-md-unit-1 {
    min-width: 0.1rem !important;
  }
  .minw-md-unit-2 {
    min-width: 0.2rem !important;
  }
  .minw-md-unit-3 {
    min-width: 0.3rem !important;
  }
  .minw-md-unit-4 {
    min-width: 0.4rem !important;
  }
  .minw-md-unit-5 {
    min-width: 0.5rem !important;
  }
  .minw-md-unit-6 {
    min-width: 0.6rem !important;
  }
  .minw-md-unit-7 {
    min-width: 0.7rem !important;
  }
  .minw-md-unit-8 {
    min-width: 0.8rem !important;
  }
  .minw-md-unit-9 {
    min-width: 0.9rem !important;
  }
  .minw-md-unit-10 {
    min-width: 1rem !important;
  }
  .minw-md-unit-11 {
    min-width: 1.1rem !important;
  }
  .minw-md-unit-12 {
    min-width: 1.2rem !important;
  }
  .minw-md-unit-13 {
    min-width: 1.3rem !important;
  }
  .minw-md-unit-14 {
    min-width: 1.4rem !important;
  }
  .minw-md-unit-15 {
    min-width: 1.5rem !important;
  }
  .minw-md-unit-16 {
    min-width: 1.6rem !important;
  }
  .minw-md-unit-17 {
    min-width: 1.7rem !important;
  }
  .minw-md-unit-18 {
    min-width: 1.8rem !important;
  }
  .minw-md-unit-19 {
    min-width: 1.9rem !important;
  }
  .minw-md-unit-20 {
    min-width: 2rem !important;
  }
  .minw-md-unit-25 {
    min-width: 2.5rem !important;
  }
  .minw-md-unit-30 {
    min-width: 3rem !important;
  }
  .minw-md-unit-35 {
    min-width: 3.5rem !important;
  }
  .minw-md-unit-40 {
    min-width: 4rem !important;
  }
  .minw-md-unit-45 {
    min-width: 4.5rem !important;
  }
  .minw-md-unit-50 {
    min-width: 5rem !important;
  }
  .minw-md-unit-55 {
    min-width: 5.5rem !important;
  }
  .minw-md-unit-60 {
    min-width: 6rem !important;
  }
  .minw-md-unit-65 {
    min-width: 6.5rem !important;
  }
  .minw-md-unit-70 {
    min-width: 7rem !important;
  }
  .minw-md-unit-75 {
    min-width: 7.5rem !important;
  }
  .minw-md-unit-80 {
    min-width: 8rem !important;
  }
  .minw-md-unit-85 {
    min-width: 8.5rem !important;
  }
  .minw-md-unit-90 {
    min-width: 9rem !important;
  }
  .minw-md-unit-95 {
    min-width: 9.5rem !important;
  }
  .minw-md-unit-100 {
    min-width: 10rem !important;
  }
  .minw-md-unit-130 {
    min-width: 13rem !important;
  }
  .minw-md-unit-140 {
    min-width: 14rem !important;
  }
  .minw-md-unit-150 {
    min-width: 15rem !important;
  }
  .minw-md-unit-200 {
    min-width: 20rem !important;
  }
  .minw-md-unit-250 {
    min-width: 25rem !important;
  }
  .minw-md-unit-300 {
    min-width: 30rem !important;
  }
  .minw-md-unit-400 {
    min-width: 40rem !important;
  }
  .minw-md-unit-410 {
    min-width: 41rem !important;
  }
  .minw-md-unit-450 {
    min-width: 45rem !important;
  }
  .minh-md-unit-0 {
    min-height: 0 !important;
  }
  .minh-md-unit-1 {
    min-height: 0.1rem !important;
  }
  .minh-md-unit-2 {
    min-height: 0.2rem !important;
  }
  .minh-md-unit-3 {
    min-height: 0.3rem !important;
  }
  .minh-md-unit-4 {
    min-height: 0.4rem !important;
  }
  .minh-md-unit-5 {
    min-height: 0.5rem !important;
  }
  .minh-md-unit-6 {
    min-height: 0.6rem !important;
  }
  .minh-md-unit-7 {
    min-height: 0.7rem !important;
  }
  .minh-md-unit-8 {
    min-height: 0.8rem !important;
  }
  .minh-md-unit-9 {
    min-height: 0.9rem !important;
  }
  .minh-md-unit-10 {
    min-height: 1rem !important;
  }
  .minh-md-unit-11 {
    min-height: 1.1rem !important;
  }
  .minh-md-unit-12 {
    min-height: 1.2rem !important;
  }
  .minh-md-unit-13 {
    min-height: 1.3rem !important;
  }
  .minh-md-unit-14 {
    min-height: 1.4rem !important;
  }
  .minh-md-unit-15 {
    min-height: 1.5rem !important;
  }
  .minh-md-unit-16 {
    min-height: 1.6rem !important;
  }
  .minh-md-unit-17 {
    min-height: 1.7rem !important;
  }
  .minh-md-unit-18 {
    min-height: 1.8rem !important;
  }
  .minh-md-unit-19 {
    min-height: 1.9rem !important;
  }
  .minh-md-unit-20 {
    min-height: 2rem !important;
  }
  .minh-md-unit-25 {
    min-height: 2.5rem !important;
  }
  .minh-md-unit-30 {
    min-height: 3rem !important;
  }
  .minh-md-unit-35 {
    min-height: 3.5rem !important;
  }
  .minh-md-unit-40 {
    min-height: 4rem !important;
  }
  .minh-md-unit-45 {
    min-height: 4.5rem !important;
  }
  .minh-md-unit-50 {
    min-height: 5rem !important;
  }
  .minh-md-unit-55 {
    min-height: 5.5rem !important;
  }
  .minh-md-unit-60 {
    min-height: 6rem !important;
  }
  .minh-md-unit-65 {
    min-height: 6.5rem !important;
  }
  .minh-md-unit-70 {
    min-height: 7rem !important;
  }
  .minh-md-unit-75 {
    min-height: 7.5rem !important;
  }
  .minh-md-unit-80 {
    min-height: 8rem !important;
  }
  .minh-md-unit-85 {
    min-height: 8.5rem !important;
  }
  .minh-md-unit-90 {
    min-height: 9rem !important;
  }
  .minh-md-unit-95 {
    min-height: 9.5rem !important;
  }
  .minh-md-unit-100 {
    min-height: 10rem !important;
  }
  .minh-md-unit-130 {
    min-height: 13rem !important;
  }
  .minh-md-unit-140 {
    min-height: 14rem !important;
  }
  .minh-md-unit-150 {
    min-height: 15rem !important;
  }
  .minh-md-unit-200 {
    min-height: 20rem !important;
  }
  .minh-md-unit-250 {
    min-height: 25rem !important;
  }
  .minh-md-unit-300 {
    min-height: 30rem !important;
  }
  .minh-md-unit-400 {
    min-height: 40rem !important;
  }
  .minh-md-unit-410 {
    min-height: 41rem !important;
  }
  .minh-md-unit-450 {
    min-height: 45rem !important;
  }
  .maxw-md-unit-0 {
    max-width: 0 !important;
  }
  .maxw-md-unit-1 {
    max-width: 0.1rem !important;
  }
  .maxw-md-unit-2 {
    max-width: 0.2rem !important;
  }
  .maxw-md-unit-3 {
    max-width: 0.3rem !important;
  }
  .maxw-md-unit-4 {
    max-width: 0.4rem !important;
  }
  .maxw-md-unit-5 {
    max-width: 0.5rem !important;
  }
  .maxw-md-unit-6 {
    max-width: 0.6rem !important;
  }
  .maxw-md-unit-7 {
    max-width: 0.7rem !important;
  }
  .maxw-md-unit-8 {
    max-width: 0.8rem !important;
  }
  .maxw-md-unit-9 {
    max-width: 0.9rem !important;
  }
  .maxw-md-unit-10 {
    max-width: 1rem !important;
  }
  .maxw-md-unit-11 {
    max-width: 1.1rem !important;
  }
  .maxw-md-unit-12 {
    max-width: 1.2rem !important;
  }
  .maxw-md-unit-13 {
    max-width: 1.3rem !important;
  }
  .maxw-md-unit-14 {
    max-width: 1.4rem !important;
  }
  .maxw-md-unit-15 {
    max-width: 1.5rem !important;
  }
  .maxw-md-unit-16 {
    max-width: 1.6rem !important;
  }
  .maxw-md-unit-17 {
    max-width: 1.7rem !important;
  }
  .maxw-md-unit-18 {
    max-width: 1.8rem !important;
  }
  .maxw-md-unit-19 {
    max-width: 1.9rem !important;
  }
  .maxw-md-unit-20 {
    max-width: 2rem !important;
  }
  .maxw-md-unit-25 {
    max-width: 2.5rem !important;
  }
  .maxw-md-unit-30 {
    max-width: 3rem !important;
  }
  .maxw-md-unit-35 {
    max-width: 3.5rem !important;
  }
  .maxw-md-unit-40 {
    max-width: 4rem !important;
  }
  .maxw-md-unit-45 {
    max-width: 4.5rem !important;
  }
  .maxw-md-unit-50 {
    max-width: 5rem !important;
  }
  .maxw-md-unit-55 {
    max-width: 5.5rem !important;
  }
  .maxw-md-unit-60 {
    max-width: 6rem !important;
  }
  .maxw-md-unit-65 {
    max-width: 6.5rem !important;
  }
  .maxw-md-unit-70 {
    max-width: 7rem !important;
  }
  .maxw-md-unit-75 {
    max-width: 7.5rem !important;
  }
  .maxw-md-unit-80 {
    max-width: 8rem !important;
  }
  .maxw-md-unit-85 {
    max-width: 8.5rem !important;
  }
  .maxw-md-unit-90 {
    max-width: 9rem !important;
  }
  .maxw-md-unit-95 {
    max-width: 9.5rem !important;
  }
  .maxw-md-unit-100 {
    max-width: 10rem !important;
  }
  .maxw-md-unit-130 {
    max-width: 13rem !important;
  }
  .maxw-md-unit-140 {
    max-width: 14rem !important;
  }
  .maxw-md-unit-150 {
    max-width: 15rem !important;
  }
  .maxw-md-unit-200 {
    max-width: 20rem !important;
  }
  .maxw-md-unit-250 {
    max-width: 25rem !important;
  }
  .maxw-md-unit-300 {
    max-width: 30rem !important;
  }
  .maxw-md-unit-400 {
    max-width: 40rem !important;
  }
  .maxw-md-unit-410 {
    max-width: 41rem !important;
  }
  .maxw-md-unit-450 {
    max-width: 45rem !important;
  }
  .maxh-md-unit-0 {
    max-height: 0 !important;
  }
  .maxh-md-unit-1 {
    max-height: 0.1rem !important;
  }
  .maxh-md-unit-2 {
    max-height: 0.2rem !important;
  }
  .maxh-md-unit-3 {
    max-height: 0.3rem !important;
  }
  .maxh-md-unit-4 {
    max-height: 0.4rem !important;
  }
  .maxh-md-unit-5 {
    max-height: 0.5rem !important;
  }
  .maxh-md-unit-6 {
    max-height: 0.6rem !important;
  }
  .maxh-md-unit-7 {
    max-height: 0.7rem !important;
  }
  .maxh-md-unit-8 {
    max-height: 0.8rem !important;
  }
  .maxh-md-unit-9 {
    max-height: 0.9rem !important;
  }
  .maxh-md-unit-10 {
    max-height: 1rem !important;
  }
  .maxh-md-unit-11 {
    max-height: 1.1rem !important;
  }
  .maxh-md-unit-12 {
    max-height: 1.2rem !important;
  }
  .maxh-md-unit-13 {
    max-height: 1.3rem !important;
  }
  .maxh-md-unit-14 {
    max-height: 1.4rem !important;
  }
  .maxh-md-unit-15 {
    max-height: 1.5rem !important;
  }
  .maxh-md-unit-16 {
    max-height: 1.6rem !important;
  }
  .maxh-md-unit-17 {
    max-height: 1.7rem !important;
  }
  .maxh-md-unit-18 {
    max-height: 1.8rem !important;
  }
  .maxh-md-unit-19 {
    max-height: 1.9rem !important;
  }
  .maxh-md-unit-20 {
    max-height: 2rem !important;
  }
  .maxh-md-unit-25 {
    max-height: 2.5rem !important;
  }
  .maxh-md-unit-30 {
    max-height: 3rem !important;
  }
  .maxh-md-unit-35 {
    max-height: 3.5rem !important;
  }
  .maxh-md-unit-40 {
    max-height: 4rem !important;
  }
  .maxh-md-unit-45 {
    max-height: 4.5rem !important;
  }
  .maxh-md-unit-50 {
    max-height: 5rem !important;
  }
  .maxh-md-unit-55 {
    max-height: 5.5rem !important;
  }
  .maxh-md-unit-60 {
    max-height: 6rem !important;
  }
  .maxh-md-unit-65 {
    max-height: 6.5rem !important;
  }
  .maxh-md-unit-70 {
    max-height: 7rem !important;
  }
  .maxh-md-unit-75 {
    max-height: 7.5rem !important;
  }
  .maxh-md-unit-80 {
    max-height: 8rem !important;
  }
  .maxh-md-unit-85 {
    max-height: 8.5rem !important;
  }
  .maxh-md-unit-90 {
    max-height: 9rem !important;
  }
  .maxh-md-unit-95 {
    max-height: 9.5rem !important;
  }
  .maxh-md-unit-100 {
    max-height: 10rem !important;
  }
  .maxh-md-unit-130 {
    max-height: 13rem !important;
  }
  .maxh-md-unit-140 {
    max-height: 14rem !important;
  }
  .maxh-md-unit-150 {
    max-height: 15rem !important;
  }
  .maxh-md-unit-200 {
    max-height: 20rem !important;
  }
  .maxh-md-unit-250 {
    max-height: 25rem !important;
  }
  .maxh-md-unit-300 {
    max-height: 30rem !important;
  }
  .maxh-md-unit-400 {
    max-height: 40rem !important;
  }
  .maxh-md-unit-410 {
    max-height: 41rem !important;
  }
  .maxh-md-unit-450 {
    max-height: 45rem !important;
  }
}
@media (min-width: 992px) {
  .w-lg-unit-0 {
    width: 0 !important;
  }
  .w-lg-unit-1 {
    width: 0.1rem !important;
  }
  .w-lg-unit-2 {
    width: 0.2rem !important;
  }
  .w-lg-unit-3 {
    width: 0.3rem !important;
  }
  .w-lg-unit-4 {
    width: 0.4rem !important;
  }
  .w-lg-unit-5 {
    width: 0.5rem !important;
  }
  .w-lg-unit-6 {
    width: 0.6rem !important;
  }
  .w-lg-unit-7 {
    width: 0.7rem !important;
  }
  .w-lg-unit-8 {
    width: 0.8rem !important;
  }
  .w-lg-unit-9 {
    width: 0.9rem !important;
  }
  .w-lg-unit-10 {
    width: 1rem !important;
  }
  .w-lg-unit-11 {
    width: 1.1rem !important;
  }
  .w-lg-unit-12 {
    width: 1.2rem !important;
  }
  .w-lg-unit-13 {
    width: 1.3rem !important;
  }
  .w-lg-unit-14 {
    width: 1.4rem !important;
  }
  .w-lg-unit-15 {
    width: 1.5rem !important;
  }
  .w-lg-unit-16 {
    width: 1.6rem !important;
  }
  .w-lg-unit-17 {
    width: 1.7rem !important;
  }
  .w-lg-unit-18 {
    width: 1.8rem !important;
  }
  .w-lg-unit-19 {
    width: 1.9rem !important;
  }
  .w-lg-unit-20 {
    width: 2rem !important;
  }
  .w-lg-unit-25 {
    width: 2.5rem !important;
  }
  .w-lg-unit-30 {
    width: 3rem !important;
  }
  .w-lg-unit-35 {
    width: 3.5rem !important;
  }
  .w-lg-unit-40 {
    width: 4rem !important;
  }
  .w-lg-unit-45 {
    width: 4.5rem !important;
  }
  .w-lg-unit-50 {
    width: 5rem !important;
  }
  .w-lg-unit-55 {
    width: 5.5rem !important;
  }
  .w-lg-unit-60 {
    width: 6rem !important;
  }
  .w-lg-unit-65 {
    width: 6.5rem !important;
  }
  .w-lg-unit-70 {
    width: 7rem !important;
  }
  .w-lg-unit-75 {
    width: 7.5rem !important;
  }
  .w-lg-unit-80 {
    width: 8rem !important;
  }
  .w-lg-unit-85 {
    width: 8.5rem !important;
  }
  .w-lg-unit-90 {
    width: 9rem !important;
  }
  .w-lg-unit-95 {
    width: 9.5rem !important;
  }
  .w-lg-unit-100 {
    width: 10rem !important;
  }
  .w-lg-unit-130 {
    width: 13rem !important;
  }
  .w-lg-unit-140 {
    width: 14rem !important;
  }
  .w-lg-unit-150 {
    width: 15rem !important;
  }
  .w-lg-unit-200 {
    width: 20rem !important;
  }
  .w-lg-unit-250 {
    width: 25rem !important;
  }
  .w-lg-unit-300 {
    width: 30rem !important;
  }
  .w-lg-unit-400 {
    width: 40rem !important;
  }
  .w-lg-unit-410 {
    width: 41rem !important;
  }
  .w-lg-unit-450 {
    width: 45rem !important;
  }
  .h-lg-unit-0 {
    height: 0 !important;
  }
  .h-lg-unit-1 {
    height: 0.1rem !important;
  }
  .h-lg-unit-2 {
    height: 0.2rem !important;
  }
  .h-lg-unit-3 {
    height: 0.3rem !important;
  }
  .h-lg-unit-4 {
    height: 0.4rem !important;
  }
  .h-lg-unit-5 {
    height: 0.5rem !important;
  }
  .h-lg-unit-6 {
    height: 0.6rem !important;
  }
  .h-lg-unit-7 {
    height: 0.7rem !important;
  }
  .h-lg-unit-8 {
    height: 0.8rem !important;
  }
  .h-lg-unit-9 {
    height: 0.9rem !important;
  }
  .h-lg-unit-10 {
    height: 1rem !important;
  }
  .h-lg-unit-11 {
    height: 1.1rem !important;
  }
  .h-lg-unit-12 {
    height: 1.2rem !important;
  }
  .h-lg-unit-13 {
    height: 1.3rem !important;
  }
  .h-lg-unit-14 {
    height: 1.4rem !important;
  }
  .h-lg-unit-15 {
    height: 1.5rem !important;
  }
  .h-lg-unit-16 {
    height: 1.6rem !important;
  }
  .h-lg-unit-17 {
    height: 1.7rem !important;
  }
  .h-lg-unit-18 {
    height: 1.8rem !important;
  }
  .h-lg-unit-19 {
    height: 1.9rem !important;
  }
  .h-lg-unit-20 {
    height: 2rem !important;
  }
  .h-lg-unit-25 {
    height: 2.5rem !important;
  }
  .h-lg-unit-30 {
    height: 3rem !important;
  }
  .h-lg-unit-35 {
    height: 3.5rem !important;
  }
  .h-lg-unit-40 {
    height: 4rem !important;
  }
  .h-lg-unit-45 {
    height: 4.5rem !important;
  }
  .h-lg-unit-50 {
    height: 5rem !important;
  }
  .h-lg-unit-55 {
    height: 5.5rem !important;
  }
  .h-lg-unit-60 {
    height: 6rem !important;
  }
  .h-lg-unit-65 {
    height: 6.5rem !important;
  }
  .h-lg-unit-70 {
    height: 7rem !important;
  }
  .h-lg-unit-75 {
    height: 7.5rem !important;
  }
  .h-lg-unit-80 {
    height: 8rem !important;
  }
  .h-lg-unit-85 {
    height: 8.5rem !important;
  }
  .h-lg-unit-90 {
    height: 9rem !important;
  }
  .h-lg-unit-95 {
    height: 9.5rem !important;
  }
  .h-lg-unit-100 {
    height: 10rem !important;
  }
  .h-lg-unit-130 {
    height: 13rem !important;
  }
  .h-lg-unit-140 {
    height: 14rem !important;
  }
  .h-lg-unit-150 {
    height: 15rem !important;
  }
  .h-lg-unit-200 {
    height: 20rem !important;
  }
  .h-lg-unit-250 {
    height: 25rem !important;
  }
  .h-lg-unit-300 {
    height: 30rem !important;
  }
  .h-lg-unit-400 {
    height: 40rem !important;
  }
  .h-lg-unit-410 {
    height: 41rem !important;
  }
  .h-lg-unit-450 {
    height: 45rem !important;
  }
  .minw-lg-unit-0 {
    min-width: 0 !important;
  }
  .minw-lg-unit-1 {
    min-width: 0.1rem !important;
  }
  .minw-lg-unit-2 {
    min-width: 0.2rem !important;
  }
  .minw-lg-unit-3 {
    min-width: 0.3rem !important;
  }
  .minw-lg-unit-4 {
    min-width: 0.4rem !important;
  }
  .minw-lg-unit-5 {
    min-width: 0.5rem !important;
  }
  .minw-lg-unit-6 {
    min-width: 0.6rem !important;
  }
  .minw-lg-unit-7 {
    min-width: 0.7rem !important;
  }
  .minw-lg-unit-8 {
    min-width: 0.8rem !important;
  }
  .minw-lg-unit-9 {
    min-width: 0.9rem !important;
  }
  .minw-lg-unit-10 {
    min-width: 1rem !important;
  }
  .minw-lg-unit-11 {
    min-width: 1.1rem !important;
  }
  .minw-lg-unit-12 {
    min-width: 1.2rem !important;
  }
  .minw-lg-unit-13 {
    min-width: 1.3rem !important;
  }
  .minw-lg-unit-14 {
    min-width: 1.4rem !important;
  }
  .minw-lg-unit-15 {
    min-width: 1.5rem !important;
  }
  .minw-lg-unit-16 {
    min-width: 1.6rem !important;
  }
  .minw-lg-unit-17 {
    min-width: 1.7rem !important;
  }
  .minw-lg-unit-18 {
    min-width: 1.8rem !important;
  }
  .minw-lg-unit-19 {
    min-width: 1.9rem !important;
  }
  .minw-lg-unit-20 {
    min-width: 2rem !important;
  }
  .minw-lg-unit-25 {
    min-width: 2.5rem !important;
  }
  .minw-lg-unit-30 {
    min-width: 3rem !important;
  }
  .minw-lg-unit-35 {
    min-width: 3.5rem !important;
  }
  .minw-lg-unit-40 {
    min-width: 4rem !important;
  }
  .minw-lg-unit-45 {
    min-width: 4.5rem !important;
  }
  .minw-lg-unit-50 {
    min-width: 5rem !important;
  }
  .minw-lg-unit-55 {
    min-width: 5.5rem !important;
  }
  .minw-lg-unit-60 {
    min-width: 6rem !important;
  }
  .minw-lg-unit-65 {
    min-width: 6.5rem !important;
  }
  .minw-lg-unit-70 {
    min-width: 7rem !important;
  }
  .minw-lg-unit-75 {
    min-width: 7.5rem !important;
  }
  .minw-lg-unit-80 {
    min-width: 8rem !important;
  }
  .minw-lg-unit-85 {
    min-width: 8.5rem !important;
  }
  .minw-lg-unit-90 {
    min-width: 9rem !important;
  }
  .minw-lg-unit-95 {
    min-width: 9.5rem !important;
  }
  .minw-lg-unit-100 {
    min-width: 10rem !important;
  }
  .minw-lg-unit-130 {
    min-width: 13rem !important;
  }
  .minw-lg-unit-140 {
    min-width: 14rem !important;
  }
  .minw-lg-unit-150 {
    min-width: 15rem !important;
  }
  .minw-lg-unit-200 {
    min-width: 20rem !important;
  }
  .minw-lg-unit-250 {
    min-width: 25rem !important;
  }
  .minw-lg-unit-300 {
    min-width: 30rem !important;
  }
  .minw-lg-unit-400 {
    min-width: 40rem !important;
  }
  .minw-lg-unit-410 {
    min-width: 41rem !important;
  }
  .minw-lg-unit-450 {
    min-width: 45rem !important;
  }
  .minh-lg-unit-0 {
    min-height: 0 !important;
  }
  .minh-lg-unit-1 {
    min-height: 0.1rem !important;
  }
  .minh-lg-unit-2 {
    min-height: 0.2rem !important;
  }
  .minh-lg-unit-3 {
    min-height: 0.3rem !important;
  }
  .minh-lg-unit-4 {
    min-height: 0.4rem !important;
  }
  .minh-lg-unit-5 {
    min-height: 0.5rem !important;
  }
  .minh-lg-unit-6 {
    min-height: 0.6rem !important;
  }
  .minh-lg-unit-7 {
    min-height: 0.7rem !important;
  }
  .minh-lg-unit-8 {
    min-height: 0.8rem !important;
  }
  .minh-lg-unit-9 {
    min-height: 0.9rem !important;
  }
  .minh-lg-unit-10 {
    min-height: 1rem !important;
  }
  .minh-lg-unit-11 {
    min-height: 1.1rem !important;
  }
  .minh-lg-unit-12 {
    min-height: 1.2rem !important;
  }
  .minh-lg-unit-13 {
    min-height: 1.3rem !important;
  }
  .minh-lg-unit-14 {
    min-height: 1.4rem !important;
  }
  .minh-lg-unit-15 {
    min-height: 1.5rem !important;
  }
  .minh-lg-unit-16 {
    min-height: 1.6rem !important;
  }
  .minh-lg-unit-17 {
    min-height: 1.7rem !important;
  }
  .minh-lg-unit-18 {
    min-height: 1.8rem !important;
  }
  .minh-lg-unit-19 {
    min-height: 1.9rem !important;
  }
  .minh-lg-unit-20 {
    min-height: 2rem !important;
  }
  .minh-lg-unit-25 {
    min-height: 2.5rem !important;
  }
  .minh-lg-unit-30 {
    min-height: 3rem !important;
  }
  .minh-lg-unit-35 {
    min-height: 3.5rem !important;
  }
  .minh-lg-unit-40 {
    min-height: 4rem !important;
  }
  .minh-lg-unit-45 {
    min-height: 4.5rem !important;
  }
  .minh-lg-unit-50 {
    min-height: 5rem !important;
  }
  .minh-lg-unit-55 {
    min-height: 5.5rem !important;
  }
  .minh-lg-unit-60 {
    min-height: 6rem !important;
  }
  .minh-lg-unit-65 {
    min-height: 6.5rem !important;
  }
  .minh-lg-unit-70 {
    min-height: 7rem !important;
  }
  .minh-lg-unit-75 {
    min-height: 7.5rem !important;
  }
  .minh-lg-unit-80 {
    min-height: 8rem !important;
  }
  .minh-lg-unit-85 {
    min-height: 8.5rem !important;
  }
  .minh-lg-unit-90 {
    min-height: 9rem !important;
  }
  .minh-lg-unit-95 {
    min-height: 9.5rem !important;
  }
  .minh-lg-unit-100 {
    min-height: 10rem !important;
  }
  .minh-lg-unit-130 {
    min-height: 13rem !important;
  }
  .minh-lg-unit-140 {
    min-height: 14rem !important;
  }
  .minh-lg-unit-150 {
    min-height: 15rem !important;
  }
  .minh-lg-unit-200 {
    min-height: 20rem !important;
  }
  .minh-lg-unit-250 {
    min-height: 25rem !important;
  }
  .minh-lg-unit-300 {
    min-height: 30rem !important;
  }
  .minh-lg-unit-400 {
    min-height: 40rem !important;
  }
  .minh-lg-unit-410 {
    min-height: 41rem !important;
  }
  .minh-lg-unit-450 {
    min-height: 45rem !important;
  }
  .maxw-lg-unit-0 {
    max-width: 0 !important;
  }
  .maxw-lg-unit-1 {
    max-width: 0.1rem !important;
  }
  .maxw-lg-unit-2 {
    max-width: 0.2rem !important;
  }
  .maxw-lg-unit-3 {
    max-width: 0.3rem !important;
  }
  .maxw-lg-unit-4 {
    max-width: 0.4rem !important;
  }
  .maxw-lg-unit-5 {
    max-width: 0.5rem !important;
  }
  .maxw-lg-unit-6 {
    max-width: 0.6rem !important;
  }
  .maxw-lg-unit-7 {
    max-width: 0.7rem !important;
  }
  .maxw-lg-unit-8 {
    max-width: 0.8rem !important;
  }
  .maxw-lg-unit-9 {
    max-width: 0.9rem !important;
  }
  .maxw-lg-unit-10 {
    max-width: 1rem !important;
  }
  .maxw-lg-unit-11 {
    max-width: 1.1rem !important;
  }
  .maxw-lg-unit-12 {
    max-width: 1.2rem !important;
  }
  .maxw-lg-unit-13 {
    max-width: 1.3rem !important;
  }
  .maxw-lg-unit-14 {
    max-width: 1.4rem !important;
  }
  .maxw-lg-unit-15 {
    max-width: 1.5rem !important;
  }
  .maxw-lg-unit-16 {
    max-width: 1.6rem !important;
  }
  .maxw-lg-unit-17 {
    max-width: 1.7rem !important;
  }
  .maxw-lg-unit-18 {
    max-width: 1.8rem !important;
  }
  .maxw-lg-unit-19 {
    max-width: 1.9rem !important;
  }
  .maxw-lg-unit-20 {
    max-width: 2rem !important;
  }
  .maxw-lg-unit-25 {
    max-width: 2.5rem !important;
  }
  .maxw-lg-unit-30 {
    max-width: 3rem !important;
  }
  .maxw-lg-unit-35 {
    max-width: 3.5rem !important;
  }
  .maxw-lg-unit-40 {
    max-width: 4rem !important;
  }
  .maxw-lg-unit-45 {
    max-width: 4.5rem !important;
  }
  .maxw-lg-unit-50 {
    max-width: 5rem !important;
  }
  .maxw-lg-unit-55 {
    max-width: 5.5rem !important;
  }
  .maxw-lg-unit-60 {
    max-width: 6rem !important;
  }
  .maxw-lg-unit-65 {
    max-width: 6.5rem !important;
  }
  .maxw-lg-unit-70 {
    max-width: 7rem !important;
  }
  .maxw-lg-unit-75 {
    max-width: 7.5rem !important;
  }
  .maxw-lg-unit-80 {
    max-width: 8rem !important;
  }
  .maxw-lg-unit-85 {
    max-width: 8.5rem !important;
  }
  .maxw-lg-unit-90 {
    max-width: 9rem !important;
  }
  .maxw-lg-unit-95 {
    max-width: 9.5rem !important;
  }
  .maxw-lg-unit-100 {
    max-width: 10rem !important;
  }
  .maxw-lg-unit-130 {
    max-width: 13rem !important;
  }
  .maxw-lg-unit-140 {
    max-width: 14rem !important;
  }
  .maxw-lg-unit-150 {
    max-width: 15rem !important;
  }
  .maxw-lg-unit-200 {
    max-width: 20rem !important;
  }
  .maxw-lg-unit-250 {
    max-width: 25rem !important;
  }
  .maxw-lg-unit-300 {
    max-width: 30rem !important;
  }
  .maxw-lg-unit-400 {
    max-width: 40rem !important;
  }
  .maxw-lg-unit-410 {
    max-width: 41rem !important;
  }
  .maxw-lg-unit-450 {
    max-width: 45rem !important;
  }
  .maxh-lg-unit-0 {
    max-height: 0 !important;
  }
  .maxh-lg-unit-1 {
    max-height: 0.1rem !important;
  }
  .maxh-lg-unit-2 {
    max-height: 0.2rem !important;
  }
  .maxh-lg-unit-3 {
    max-height: 0.3rem !important;
  }
  .maxh-lg-unit-4 {
    max-height: 0.4rem !important;
  }
  .maxh-lg-unit-5 {
    max-height: 0.5rem !important;
  }
  .maxh-lg-unit-6 {
    max-height: 0.6rem !important;
  }
  .maxh-lg-unit-7 {
    max-height: 0.7rem !important;
  }
  .maxh-lg-unit-8 {
    max-height: 0.8rem !important;
  }
  .maxh-lg-unit-9 {
    max-height: 0.9rem !important;
  }
  .maxh-lg-unit-10 {
    max-height: 1rem !important;
  }
  .maxh-lg-unit-11 {
    max-height: 1.1rem !important;
  }
  .maxh-lg-unit-12 {
    max-height: 1.2rem !important;
  }
  .maxh-lg-unit-13 {
    max-height: 1.3rem !important;
  }
  .maxh-lg-unit-14 {
    max-height: 1.4rem !important;
  }
  .maxh-lg-unit-15 {
    max-height: 1.5rem !important;
  }
  .maxh-lg-unit-16 {
    max-height: 1.6rem !important;
  }
  .maxh-lg-unit-17 {
    max-height: 1.7rem !important;
  }
  .maxh-lg-unit-18 {
    max-height: 1.8rem !important;
  }
  .maxh-lg-unit-19 {
    max-height: 1.9rem !important;
  }
  .maxh-lg-unit-20 {
    max-height: 2rem !important;
  }
  .maxh-lg-unit-25 {
    max-height: 2.5rem !important;
  }
  .maxh-lg-unit-30 {
    max-height: 3rem !important;
  }
  .maxh-lg-unit-35 {
    max-height: 3.5rem !important;
  }
  .maxh-lg-unit-40 {
    max-height: 4rem !important;
  }
  .maxh-lg-unit-45 {
    max-height: 4.5rem !important;
  }
  .maxh-lg-unit-50 {
    max-height: 5rem !important;
  }
  .maxh-lg-unit-55 {
    max-height: 5.5rem !important;
  }
  .maxh-lg-unit-60 {
    max-height: 6rem !important;
  }
  .maxh-lg-unit-65 {
    max-height: 6.5rem !important;
  }
  .maxh-lg-unit-70 {
    max-height: 7rem !important;
  }
  .maxh-lg-unit-75 {
    max-height: 7.5rem !important;
  }
  .maxh-lg-unit-80 {
    max-height: 8rem !important;
  }
  .maxh-lg-unit-85 {
    max-height: 8.5rem !important;
  }
  .maxh-lg-unit-90 {
    max-height: 9rem !important;
  }
  .maxh-lg-unit-95 {
    max-height: 9.5rem !important;
  }
  .maxh-lg-unit-100 {
    max-height: 10rem !important;
  }
  .maxh-lg-unit-130 {
    max-height: 13rem !important;
  }
  .maxh-lg-unit-140 {
    max-height: 14rem !important;
  }
  .maxh-lg-unit-150 {
    max-height: 15rem !important;
  }
  .maxh-lg-unit-200 {
    max-height: 20rem !important;
  }
  .maxh-lg-unit-250 {
    max-height: 25rem !important;
  }
  .maxh-lg-unit-300 {
    max-height: 30rem !important;
  }
  .maxh-lg-unit-400 {
    max-height: 40rem !important;
  }
  .maxh-lg-unit-410 {
    max-height: 41rem !important;
  }
  .maxh-lg-unit-450 {
    max-height: 45rem !important;
  }
}
@media (min-width: 1200px) {
  .w-xl-unit-0 {
    width: 0 !important;
  }
  .w-xl-unit-1 {
    width: 0.1rem !important;
  }
  .w-xl-unit-2 {
    width: 0.2rem !important;
  }
  .w-xl-unit-3 {
    width: 0.3rem !important;
  }
  .w-xl-unit-4 {
    width: 0.4rem !important;
  }
  .w-xl-unit-5 {
    width: 0.5rem !important;
  }
  .w-xl-unit-6 {
    width: 0.6rem !important;
  }
  .w-xl-unit-7 {
    width: 0.7rem !important;
  }
  .w-xl-unit-8 {
    width: 0.8rem !important;
  }
  .w-xl-unit-9 {
    width: 0.9rem !important;
  }
  .w-xl-unit-10 {
    width: 1rem !important;
  }
  .w-xl-unit-11 {
    width: 1.1rem !important;
  }
  .w-xl-unit-12 {
    width: 1.2rem !important;
  }
  .w-xl-unit-13 {
    width: 1.3rem !important;
  }
  .w-xl-unit-14 {
    width: 1.4rem !important;
  }
  .w-xl-unit-15 {
    width: 1.5rem !important;
  }
  .w-xl-unit-16 {
    width: 1.6rem !important;
  }
  .w-xl-unit-17 {
    width: 1.7rem !important;
  }
  .w-xl-unit-18 {
    width: 1.8rem !important;
  }
  .w-xl-unit-19 {
    width: 1.9rem !important;
  }
  .w-xl-unit-20 {
    width: 2rem !important;
  }
  .w-xl-unit-25 {
    width: 2.5rem !important;
  }
  .w-xl-unit-30 {
    width: 3rem !important;
  }
  .w-xl-unit-35 {
    width: 3.5rem !important;
  }
  .w-xl-unit-40 {
    width: 4rem !important;
  }
  .w-xl-unit-45 {
    width: 4.5rem !important;
  }
  .w-xl-unit-50 {
    width: 5rem !important;
  }
  .w-xl-unit-55 {
    width: 5.5rem !important;
  }
  .w-xl-unit-60 {
    width: 6rem !important;
  }
  .w-xl-unit-65 {
    width: 6.5rem !important;
  }
  .w-xl-unit-70 {
    width: 7rem !important;
  }
  .w-xl-unit-75 {
    width: 7.5rem !important;
  }
  .w-xl-unit-80 {
    width: 8rem !important;
  }
  .w-xl-unit-85 {
    width: 8.5rem !important;
  }
  .w-xl-unit-90 {
    width: 9rem !important;
  }
  .w-xl-unit-95 {
    width: 9.5rem !important;
  }
  .w-xl-unit-100 {
    width: 10rem !important;
  }
  .w-xl-unit-130 {
    width: 13rem !important;
  }
  .w-xl-unit-140 {
    width: 14rem !important;
  }
  .w-xl-unit-150 {
    width: 15rem !important;
  }
  .w-xl-unit-200 {
    width: 20rem !important;
  }
  .w-xl-unit-250 {
    width: 25rem !important;
  }
  .w-xl-unit-300 {
    width: 30rem !important;
  }
  .w-xl-unit-400 {
    width: 40rem !important;
  }
  .w-xl-unit-410 {
    width: 41rem !important;
  }
  .w-xl-unit-450 {
    width: 45rem !important;
  }
  .h-xl-unit-0 {
    height: 0 !important;
  }
  .h-xl-unit-1 {
    height: 0.1rem !important;
  }
  .h-xl-unit-2 {
    height: 0.2rem !important;
  }
  .h-xl-unit-3 {
    height: 0.3rem !important;
  }
  .h-xl-unit-4 {
    height: 0.4rem !important;
  }
  .h-xl-unit-5 {
    height: 0.5rem !important;
  }
  .h-xl-unit-6 {
    height: 0.6rem !important;
  }
  .h-xl-unit-7 {
    height: 0.7rem !important;
  }
  .h-xl-unit-8 {
    height: 0.8rem !important;
  }
  .h-xl-unit-9 {
    height: 0.9rem !important;
  }
  .h-xl-unit-10 {
    height: 1rem !important;
  }
  .h-xl-unit-11 {
    height: 1.1rem !important;
  }
  .h-xl-unit-12 {
    height: 1.2rem !important;
  }
  .h-xl-unit-13 {
    height: 1.3rem !important;
  }
  .h-xl-unit-14 {
    height: 1.4rem !important;
  }
  .h-xl-unit-15 {
    height: 1.5rem !important;
  }
  .h-xl-unit-16 {
    height: 1.6rem !important;
  }
  .h-xl-unit-17 {
    height: 1.7rem !important;
  }
  .h-xl-unit-18 {
    height: 1.8rem !important;
  }
  .h-xl-unit-19 {
    height: 1.9rem !important;
  }
  .h-xl-unit-20 {
    height: 2rem !important;
  }
  .h-xl-unit-25 {
    height: 2.5rem !important;
  }
  .h-xl-unit-30 {
    height: 3rem !important;
  }
  .h-xl-unit-35 {
    height: 3.5rem !important;
  }
  .h-xl-unit-40 {
    height: 4rem !important;
  }
  .h-xl-unit-45 {
    height: 4.5rem !important;
  }
  .h-xl-unit-50 {
    height: 5rem !important;
  }
  .h-xl-unit-55 {
    height: 5.5rem !important;
  }
  .h-xl-unit-60 {
    height: 6rem !important;
  }
  .h-xl-unit-65 {
    height: 6.5rem !important;
  }
  .h-xl-unit-70 {
    height: 7rem !important;
  }
  .h-xl-unit-75 {
    height: 7.5rem !important;
  }
  .h-xl-unit-80 {
    height: 8rem !important;
  }
  .h-xl-unit-85 {
    height: 8.5rem !important;
  }
  .h-xl-unit-90 {
    height: 9rem !important;
  }
  .h-xl-unit-95 {
    height: 9.5rem !important;
  }
  .h-xl-unit-100 {
    height: 10rem !important;
  }
  .h-xl-unit-130 {
    height: 13rem !important;
  }
  .h-xl-unit-140 {
    height: 14rem !important;
  }
  .h-xl-unit-150 {
    height: 15rem !important;
  }
  .h-xl-unit-200 {
    height: 20rem !important;
  }
  .h-xl-unit-250 {
    height: 25rem !important;
  }
  .h-xl-unit-300 {
    height: 30rem !important;
  }
  .h-xl-unit-400 {
    height: 40rem !important;
  }
  .h-xl-unit-410 {
    height: 41rem !important;
  }
  .h-xl-unit-450 {
    height: 45rem !important;
  }
  .minw-xl-unit-0 {
    min-width: 0 !important;
  }
  .minw-xl-unit-1 {
    min-width: 0.1rem !important;
  }
  .minw-xl-unit-2 {
    min-width: 0.2rem !important;
  }
  .minw-xl-unit-3 {
    min-width: 0.3rem !important;
  }
  .minw-xl-unit-4 {
    min-width: 0.4rem !important;
  }
  .minw-xl-unit-5 {
    min-width: 0.5rem !important;
  }
  .minw-xl-unit-6 {
    min-width: 0.6rem !important;
  }
  .minw-xl-unit-7 {
    min-width: 0.7rem !important;
  }
  .minw-xl-unit-8 {
    min-width: 0.8rem !important;
  }
  .minw-xl-unit-9 {
    min-width: 0.9rem !important;
  }
  .minw-xl-unit-10 {
    min-width: 1rem !important;
  }
  .minw-xl-unit-11 {
    min-width: 1.1rem !important;
  }
  .minw-xl-unit-12 {
    min-width: 1.2rem !important;
  }
  .minw-xl-unit-13 {
    min-width: 1.3rem !important;
  }
  .minw-xl-unit-14 {
    min-width: 1.4rem !important;
  }
  .minw-xl-unit-15 {
    min-width: 1.5rem !important;
  }
  .minw-xl-unit-16 {
    min-width: 1.6rem !important;
  }
  .minw-xl-unit-17 {
    min-width: 1.7rem !important;
  }
  .minw-xl-unit-18 {
    min-width: 1.8rem !important;
  }
  .minw-xl-unit-19 {
    min-width: 1.9rem !important;
  }
  .minw-xl-unit-20 {
    min-width: 2rem !important;
  }
  .minw-xl-unit-25 {
    min-width: 2.5rem !important;
  }
  .minw-xl-unit-30 {
    min-width: 3rem !important;
  }
  .minw-xl-unit-35 {
    min-width: 3.5rem !important;
  }
  .minw-xl-unit-40 {
    min-width: 4rem !important;
  }
  .minw-xl-unit-45 {
    min-width: 4.5rem !important;
  }
  .minw-xl-unit-50 {
    min-width: 5rem !important;
  }
  .minw-xl-unit-55 {
    min-width: 5.5rem !important;
  }
  .minw-xl-unit-60 {
    min-width: 6rem !important;
  }
  .minw-xl-unit-65 {
    min-width: 6.5rem !important;
  }
  .minw-xl-unit-70 {
    min-width: 7rem !important;
  }
  .minw-xl-unit-75 {
    min-width: 7.5rem !important;
  }
  .minw-xl-unit-80 {
    min-width: 8rem !important;
  }
  .minw-xl-unit-85 {
    min-width: 8.5rem !important;
  }
  .minw-xl-unit-90 {
    min-width: 9rem !important;
  }
  .minw-xl-unit-95 {
    min-width: 9.5rem !important;
  }
  .minw-xl-unit-100 {
    min-width: 10rem !important;
  }
  .minw-xl-unit-130 {
    min-width: 13rem !important;
  }
  .minw-xl-unit-140 {
    min-width: 14rem !important;
  }
  .minw-xl-unit-150 {
    min-width: 15rem !important;
  }
  .minw-xl-unit-200 {
    min-width: 20rem !important;
  }
  .minw-xl-unit-250 {
    min-width: 25rem !important;
  }
  .minw-xl-unit-300 {
    min-width: 30rem !important;
  }
  .minw-xl-unit-400 {
    min-width: 40rem !important;
  }
  .minw-xl-unit-410 {
    min-width: 41rem !important;
  }
  .minw-xl-unit-450 {
    min-width: 45rem !important;
  }
  .minh-xl-unit-0 {
    min-height: 0 !important;
  }
  .minh-xl-unit-1 {
    min-height: 0.1rem !important;
  }
  .minh-xl-unit-2 {
    min-height: 0.2rem !important;
  }
  .minh-xl-unit-3 {
    min-height: 0.3rem !important;
  }
  .minh-xl-unit-4 {
    min-height: 0.4rem !important;
  }
  .minh-xl-unit-5 {
    min-height: 0.5rem !important;
  }
  .minh-xl-unit-6 {
    min-height: 0.6rem !important;
  }
  .minh-xl-unit-7 {
    min-height: 0.7rem !important;
  }
  .minh-xl-unit-8 {
    min-height: 0.8rem !important;
  }
  .minh-xl-unit-9 {
    min-height: 0.9rem !important;
  }
  .minh-xl-unit-10 {
    min-height: 1rem !important;
  }
  .minh-xl-unit-11 {
    min-height: 1.1rem !important;
  }
  .minh-xl-unit-12 {
    min-height: 1.2rem !important;
  }
  .minh-xl-unit-13 {
    min-height: 1.3rem !important;
  }
  .minh-xl-unit-14 {
    min-height: 1.4rem !important;
  }
  .minh-xl-unit-15 {
    min-height: 1.5rem !important;
  }
  .minh-xl-unit-16 {
    min-height: 1.6rem !important;
  }
  .minh-xl-unit-17 {
    min-height: 1.7rem !important;
  }
  .minh-xl-unit-18 {
    min-height: 1.8rem !important;
  }
  .minh-xl-unit-19 {
    min-height: 1.9rem !important;
  }
  .minh-xl-unit-20 {
    min-height: 2rem !important;
  }
  .minh-xl-unit-25 {
    min-height: 2.5rem !important;
  }
  .minh-xl-unit-30 {
    min-height: 3rem !important;
  }
  .minh-xl-unit-35 {
    min-height: 3.5rem !important;
  }
  .minh-xl-unit-40 {
    min-height: 4rem !important;
  }
  .minh-xl-unit-45 {
    min-height: 4.5rem !important;
  }
  .minh-xl-unit-50 {
    min-height: 5rem !important;
  }
  .minh-xl-unit-55 {
    min-height: 5.5rem !important;
  }
  .minh-xl-unit-60 {
    min-height: 6rem !important;
  }
  .minh-xl-unit-65 {
    min-height: 6.5rem !important;
  }
  .minh-xl-unit-70 {
    min-height: 7rem !important;
  }
  .minh-xl-unit-75 {
    min-height: 7.5rem !important;
  }
  .minh-xl-unit-80 {
    min-height: 8rem !important;
  }
  .minh-xl-unit-85 {
    min-height: 8.5rem !important;
  }
  .minh-xl-unit-90 {
    min-height: 9rem !important;
  }
  .minh-xl-unit-95 {
    min-height: 9.5rem !important;
  }
  .minh-xl-unit-100 {
    min-height: 10rem !important;
  }
  .minh-xl-unit-130 {
    min-height: 13rem !important;
  }
  .minh-xl-unit-140 {
    min-height: 14rem !important;
  }
  .minh-xl-unit-150 {
    min-height: 15rem !important;
  }
  .minh-xl-unit-200 {
    min-height: 20rem !important;
  }
  .minh-xl-unit-250 {
    min-height: 25rem !important;
  }
  .minh-xl-unit-300 {
    min-height: 30rem !important;
  }
  .minh-xl-unit-400 {
    min-height: 40rem !important;
  }
  .minh-xl-unit-410 {
    min-height: 41rem !important;
  }
  .minh-xl-unit-450 {
    min-height: 45rem !important;
  }
  .maxw-xl-unit-0 {
    max-width: 0 !important;
  }
  .maxw-xl-unit-1 {
    max-width: 0.1rem !important;
  }
  .maxw-xl-unit-2 {
    max-width: 0.2rem !important;
  }
  .maxw-xl-unit-3 {
    max-width: 0.3rem !important;
  }
  .maxw-xl-unit-4 {
    max-width: 0.4rem !important;
  }
  .maxw-xl-unit-5 {
    max-width: 0.5rem !important;
  }
  .maxw-xl-unit-6 {
    max-width: 0.6rem !important;
  }
  .maxw-xl-unit-7 {
    max-width: 0.7rem !important;
  }
  .maxw-xl-unit-8 {
    max-width: 0.8rem !important;
  }
  .maxw-xl-unit-9 {
    max-width: 0.9rem !important;
  }
  .maxw-xl-unit-10 {
    max-width: 1rem !important;
  }
  .maxw-xl-unit-11 {
    max-width: 1.1rem !important;
  }
  .maxw-xl-unit-12 {
    max-width: 1.2rem !important;
  }
  .maxw-xl-unit-13 {
    max-width: 1.3rem !important;
  }
  .maxw-xl-unit-14 {
    max-width: 1.4rem !important;
  }
  .maxw-xl-unit-15 {
    max-width: 1.5rem !important;
  }
  .maxw-xl-unit-16 {
    max-width: 1.6rem !important;
  }
  .maxw-xl-unit-17 {
    max-width: 1.7rem !important;
  }
  .maxw-xl-unit-18 {
    max-width: 1.8rem !important;
  }
  .maxw-xl-unit-19 {
    max-width: 1.9rem !important;
  }
  .maxw-xl-unit-20 {
    max-width: 2rem !important;
  }
  .maxw-xl-unit-25 {
    max-width: 2.5rem !important;
  }
  .maxw-xl-unit-30 {
    max-width: 3rem !important;
  }
  .maxw-xl-unit-35 {
    max-width: 3.5rem !important;
  }
  .maxw-xl-unit-40 {
    max-width: 4rem !important;
  }
  .maxw-xl-unit-45 {
    max-width: 4.5rem !important;
  }
  .maxw-xl-unit-50 {
    max-width: 5rem !important;
  }
  .maxw-xl-unit-55 {
    max-width: 5.5rem !important;
  }
  .maxw-xl-unit-60 {
    max-width: 6rem !important;
  }
  .maxw-xl-unit-65 {
    max-width: 6.5rem !important;
  }
  .maxw-xl-unit-70 {
    max-width: 7rem !important;
  }
  .maxw-xl-unit-75 {
    max-width: 7.5rem !important;
  }
  .maxw-xl-unit-80 {
    max-width: 8rem !important;
  }
  .maxw-xl-unit-85 {
    max-width: 8.5rem !important;
  }
  .maxw-xl-unit-90 {
    max-width: 9rem !important;
  }
  .maxw-xl-unit-95 {
    max-width: 9.5rem !important;
  }
  .maxw-xl-unit-100 {
    max-width: 10rem !important;
  }
  .maxw-xl-unit-130 {
    max-width: 13rem !important;
  }
  .maxw-xl-unit-140 {
    max-width: 14rem !important;
  }
  .maxw-xl-unit-150 {
    max-width: 15rem !important;
  }
  .maxw-xl-unit-200 {
    max-width: 20rem !important;
  }
  .maxw-xl-unit-250 {
    max-width: 25rem !important;
  }
  .maxw-xl-unit-300 {
    max-width: 30rem !important;
  }
  .maxw-xl-unit-400 {
    max-width: 40rem !important;
  }
  .maxw-xl-unit-410 {
    max-width: 41rem !important;
  }
  .maxw-xl-unit-450 {
    max-width: 45rem !important;
  }
  .maxh-xl-unit-0 {
    max-height: 0 !important;
  }
  .maxh-xl-unit-1 {
    max-height: 0.1rem !important;
  }
  .maxh-xl-unit-2 {
    max-height: 0.2rem !important;
  }
  .maxh-xl-unit-3 {
    max-height: 0.3rem !important;
  }
  .maxh-xl-unit-4 {
    max-height: 0.4rem !important;
  }
  .maxh-xl-unit-5 {
    max-height: 0.5rem !important;
  }
  .maxh-xl-unit-6 {
    max-height: 0.6rem !important;
  }
  .maxh-xl-unit-7 {
    max-height: 0.7rem !important;
  }
  .maxh-xl-unit-8 {
    max-height: 0.8rem !important;
  }
  .maxh-xl-unit-9 {
    max-height: 0.9rem !important;
  }
  .maxh-xl-unit-10 {
    max-height: 1rem !important;
  }
  .maxh-xl-unit-11 {
    max-height: 1.1rem !important;
  }
  .maxh-xl-unit-12 {
    max-height: 1.2rem !important;
  }
  .maxh-xl-unit-13 {
    max-height: 1.3rem !important;
  }
  .maxh-xl-unit-14 {
    max-height: 1.4rem !important;
  }
  .maxh-xl-unit-15 {
    max-height: 1.5rem !important;
  }
  .maxh-xl-unit-16 {
    max-height: 1.6rem !important;
  }
  .maxh-xl-unit-17 {
    max-height: 1.7rem !important;
  }
  .maxh-xl-unit-18 {
    max-height: 1.8rem !important;
  }
  .maxh-xl-unit-19 {
    max-height: 1.9rem !important;
  }
  .maxh-xl-unit-20 {
    max-height: 2rem !important;
  }
  .maxh-xl-unit-25 {
    max-height: 2.5rem !important;
  }
  .maxh-xl-unit-30 {
    max-height: 3rem !important;
  }
  .maxh-xl-unit-35 {
    max-height: 3.5rem !important;
  }
  .maxh-xl-unit-40 {
    max-height: 4rem !important;
  }
  .maxh-xl-unit-45 {
    max-height: 4.5rem !important;
  }
  .maxh-xl-unit-50 {
    max-height: 5rem !important;
  }
  .maxh-xl-unit-55 {
    max-height: 5.5rem !important;
  }
  .maxh-xl-unit-60 {
    max-height: 6rem !important;
  }
  .maxh-xl-unit-65 {
    max-height: 6.5rem !important;
  }
  .maxh-xl-unit-70 {
    max-height: 7rem !important;
  }
  .maxh-xl-unit-75 {
    max-height: 7.5rem !important;
  }
  .maxh-xl-unit-80 {
    max-height: 8rem !important;
  }
  .maxh-xl-unit-85 {
    max-height: 8.5rem !important;
  }
  .maxh-xl-unit-90 {
    max-height: 9rem !important;
  }
  .maxh-xl-unit-95 {
    max-height: 9.5rem !important;
  }
  .maxh-xl-unit-100 {
    max-height: 10rem !important;
  }
  .maxh-xl-unit-130 {
    max-height: 13rem !important;
  }
  .maxh-xl-unit-140 {
    max-height: 14rem !important;
  }
  .maxh-xl-unit-150 {
    max-height: 15rem !important;
  }
  .maxh-xl-unit-200 {
    max-height: 20rem !important;
  }
  .maxh-xl-unit-250 {
    max-height: 25rem !important;
  }
  .maxh-xl-unit-300 {
    max-height: 30rem !important;
  }
  .maxh-xl-unit-400 {
    max-height: 40rem !important;
  }
  .maxh-xl-unit-410 {
    max-height: 41rem !important;
  }
  .maxh-xl-unit-450 {
    max-height: 45rem !important;
  }
}
@media (min-width: 1600px) {
  .w-xxl-unit-0 {
    width: 0 !important;
  }
  .w-xxl-unit-1 {
    width: 0.1rem !important;
  }
  .w-xxl-unit-2 {
    width: 0.2rem !important;
  }
  .w-xxl-unit-3 {
    width: 0.3rem !important;
  }
  .w-xxl-unit-4 {
    width: 0.4rem !important;
  }
  .w-xxl-unit-5 {
    width: 0.5rem !important;
  }
  .w-xxl-unit-6 {
    width: 0.6rem !important;
  }
  .w-xxl-unit-7 {
    width: 0.7rem !important;
  }
  .w-xxl-unit-8 {
    width: 0.8rem !important;
  }
  .w-xxl-unit-9 {
    width: 0.9rem !important;
  }
  .w-xxl-unit-10 {
    width: 1rem !important;
  }
  .w-xxl-unit-11 {
    width: 1.1rem !important;
  }
  .w-xxl-unit-12 {
    width: 1.2rem !important;
  }
  .w-xxl-unit-13 {
    width: 1.3rem !important;
  }
  .w-xxl-unit-14 {
    width: 1.4rem !important;
  }
  .w-xxl-unit-15 {
    width: 1.5rem !important;
  }
  .w-xxl-unit-16 {
    width: 1.6rem !important;
  }
  .w-xxl-unit-17 {
    width: 1.7rem !important;
  }
  .w-xxl-unit-18 {
    width: 1.8rem !important;
  }
  .w-xxl-unit-19 {
    width: 1.9rem !important;
  }
  .w-xxl-unit-20 {
    width: 2rem !important;
  }
  .w-xxl-unit-25 {
    width: 2.5rem !important;
  }
  .w-xxl-unit-30 {
    width: 3rem !important;
  }
  .w-xxl-unit-35 {
    width: 3.5rem !important;
  }
  .w-xxl-unit-40 {
    width: 4rem !important;
  }
  .w-xxl-unit-45 {
    width: 4.5rem !important;
  }
  .w-xxl-unit-50 {
    width: 5rem !important;
  }
  .w-xxl-unit-55 {
    width: 5.5rem !important;
  }
  .w-xxl-unit-60 {
    width: 6rem !important;
  }
  .w-xxl-unit-65 {
    width: 6.5rem !important;
  }
  .w-xxl-unit-70 {
    width: 7rem !important;
  }
  .w-xxl-unit-75 {
    width: 7.5rem !important;
  }
  .w-xxl-unit-80 {
    width: 8rem !important;
  }
  .w-xxl-unit-85 {
    width: 8.5rem !important;
  }
  .w-xxl-unit-90 {
    width: 9rem !important;
  }
  .w-xxl-unit-95 {
    width: 9.5rem !important;
  }
  .w-xxl-unit-100 {
    width: 10rem !important;
  }
  .w-xxl-unit-130 {
    width: 13rem !important;
  }
  .w-xxl-unit-140 {
    width: 14rem !important;
  }
  .w-xxl-unit-150 {
    width: 15rem !important;
  }
  .w-xxl-unit-200 {
    width: 20rem !important;
  }
  .w-xxl-unit-250 {
    width: 25rem !important;
  }
  .w-xxl-unit-300 {
    width: 30rem !important;
  }
  .w-xxl-unit-400 {
    width: 40rem !important;
  }
  .w-xxl-unit-410 {
    width: 41rem !important;
  }
  .w-xxl-unit-450 {
    width: 45rem !important;
  }
  .h-xxl-unit-0 {
    height: 0 !important;
  }
  .h-xxl-unit-1 {
    height: 0.1rem !important;
  }
  .h-xxl-unit-2 {
    height: 0.2rem !important;
  }
  .h-xxl-unit-3 {
    height: 0.3rem !important;
  }
  .h-xxl-unit-4 {
    height: 0.4rem !important;
  }
  .h-xxl-unit-5 {
    height: 0.5rem !important;
  }
  .h-xxl-unit-6 {
    height: 0.6rem !important;
  }
  .h-xxl-unit-7 {
    height: 0.7rem !important;
  }
  .h-xxl-unit-8 {
    height: 0.8rem !important;
  }
  .h-xxl-unit-9 {
    height: 0.9rem !important;
  }
  .h-xxl-unit-10 {
    height: 1rem !important;
  }
  .h-xxl-unit-11 {
    height: 1.1rem !important;
  }
  .h-xxl-unit-12 {
    height: 1.2rem !important;
  }
  .h-xxl-unit-13 {
    height: 1.3rem !important;
  }
  .h-xxl-unit-14 {
    height: 1.4rem !important;
  }
  .h-xxl-unit-15 {
    height: 1.5rem !important;
  }
  .h-xxl-unit-16 {
    height: 1.6rem !important;
  }
  .h-xxl-unit-17 {
    height: 1.7rem !important;
  }
  .h-xxl-unit-18 {
    height: 1.8rem !important;
  }
  .h-xxl-unit-19 {
    height: 1.9rem !important;
  }
  .h-xxl-unit-20 {
    height: 2rem !important;
  }
  .h-xxl-unit-25 {
    height: 2.5rem !important;
  }
  .h-xxl-unit-30 {
    height: 3rem !important;
  }
  .h-xxl-unit-35 {
    height: 3.5rem !important;
  }
  .h-xxl-unit-40 {
    height: 4rem !important;
  }
  .h-xxl-unit-45 {
    height: 4.5rem !important;
  }
  .h-xxl-unit-50 {
    height: 5rem !important;
  }
  .h-xxl-unit-55 {
    height: 5.5rem !important;
  }
  .h-xxl-unit-60 {
    height: 6rem !important;
  }
  .h-xxl-unit-65 {
    height: 6.5rem !important;
  }
  .h-xxl-unit-70 {
    height: 7rem !important;
  }
  .h-xxl-unit-75 {
    height: 7.5rem !important;
  }
  .h-xxl-unit-80 {
    height: 8rem !important;
  }
  .h-xxl-unit-85 {
    height: 8.5rem !important;
  }
  .h-xxl-unit-90 {
    height: 9rem !important;
  }
  .h-xxl-unit-95 {
    height: 9.5rem !important;
  }
  .h-xxl-unit-100 {
    height: 10rem !important;
  }
  .h-xxl-unit-130 {
    height: 13rem !important;
  }
  .h-xxl-unit-140 {
    height: 14rem !important;
  }
  .h-xxl-unit-150 {
    height: 15rem !important;
  }
  .h-xxl-unit-200 {
    height: 20rem !important;
  }
  .h-xxl-unit-250 {
    height: 25rem !important;
  }
  .h-xxl-unit-300 {
    height: 30rem !important;
  }
  .h-xxl-unit-400 {
    height: 40rem !important;
  }
  .h-xxl-unit-410 {
    height: 41rem !important;
  }
  .h-xxl-unit-450 {
    height: 45rem !important;
  }
  .minw-xxl-unit-0 {
    min-width: 0 !important;
  }
  .minw-xxl-unit-1 {
    min-width: 0.1rem !important;
  }
  .minw-xxl-unit-2 {
    min-width: 0.2rem !important;
  }
  .minw-xxl-unit-3 {
    min-width: 0.3rem !important;
  }
  .minw-xxl-unit-4 {
    min-width: 0.4rem !important;
  }
  .minw-xxl-unit-5 {
    min-width: 0.5rem !important;
  }
  .minw-xxl-unit-6 {
    min-width: 0.6rem !important;
  }
  .minw-xxl-unit-7 {
    min-width: 0.7rem !important;
  }
  .minw-xxl-unit-8 {
    min-width: 0.8rem !important;
  }
  .minw-xxl-unit-9 {
    min-width: 0.9rem !important;
  }
  .minw-xxl-unit-10 {
    min-width: 1rem !important;
  }
  .minw-xxl-unit-11 {
    min-width: 1.1rem !important;
  }
  .minw-xxl-unit-12 {
    min-width: 1.2rem !important;
  }
  .minw-xxl-unit-13 {
    min-width: 1.3rem !important;
  }
  .minw-xxl-unit-14 {
    min-width: 1.4rem !important;
  }
  .minw-xxl-unit-15 {
    min-width: 1.5rem !important;
  }
  .minw-xxl-unit-16 {
    min-width: 1.6rem !important;
  }
  .minw-xxl-unit-17 {
    min-width: 1.7rem !important;
  }
  .minw-xxl-unit-18 {
    min-width: 1.8rem !important;
  }
  .minw-xxl-unit-19 {
    min-width: 1.9rem !important;
  }
  .minw-xxl-unit-20 {
    min-width: 2rem !important;
  }
  .minw-xxl-unit-25 {
    min-width: 2.5rem !important;
  }
  .minw-xxl-unit-30 {
    min-width: 3rem !important;
  }
  .minw-xxl-unit-35 {
    min-width: 3.5rem !important;
  }
  .minw-xxl-unit-40 {
    min-width: 4rem !important;
  }
  .minw-xxl-unit-45 {
    min-width: 4.5rem !important;
  }
  .minw-xxl-unit-50 {
    min-width: 5rem !important;
  }
  .minw-xxl-unit-55 {
    min-width: 5.5rem !important;
  }
  .minw-xxl-unit-60 {
    min-width: 6rem !important;
  }
  .minw-xxl-unit-65 {
    min-width: 6.5rem !important;
  }
  .minw-xxl-unit-70 {
    min-width: 7rem !important;
  }
  .minw-xxl-unit-75 {
    min-width: 7.5rem !important;
  }
  .minw-xxl-unit-80 {
    min-width: 8rem !important;
  }
  .minw-xxl-unit-85 {
    min-width: 8.5rem !important;
  }
  .minw-xxl-unit-90 {
    min-width: 9rem !important;
  }
  .minw-xxl-unit-95 {
    min-width: 9.5rem !important;
  }
  .minw-xxl-unit-100 {
    min-width: 10rem !important;
  }
  .minw-xxl-unit-130 {
    min-width: 13rem !important;
  }
  .minw-xxl-unit-140 {
    min-width: 14rem !important;
  }
  .minw-xxl-unit-150 {
    min-width: 15rem !important;
  }
  .minw-xxl-unit-200 {
    min-width: 20rem !important;
  }
  .minw-xxl-unit-250 {
    min-width: 25rem !important;
  }
  .minw-xxl-unit-300 {
    min-width: 30rem !important;
  }
  .minw-xxl-unit-400 {
    min-width: 40rem !important;
  }
  .minw-xxl-unit-410 {
    min-width: 41rem !important;
  }
  .minw-xxl-unit-450 {
    min-width: 45rem !important;
  }
  .minh-xxl-unit-0 {
    min-height: 0 !important;
  }
  .minh-xxl-unit-1 {
    min-height: 0.1rem !important;
  }
  .minh-xxl-unit-2 {
    min-height: 0.2rem !important;
  }
  .minh-xxl-unit-3 {
    min-height: 0.3rem !important;
  }
  .minh-xxl-unit-4 {
    min-height: 0.4rem !important;
  }
  .minh-xxl-unit-5 {
    min-height: 0.5rem !important;
  }
  .minh-xxl-unit-6 {
    min-height: 0.6rem !important;
  }
  .minh-xxl-unit-7 {
    min-height: 0.7rem !important;
  }
  .minh-xxl-unit-8 {
    min-height: 0.8rem !important;
  }
  .minh-xxl-unit-9 {
    min-height: 0.9rem !important;
  }
  .minh-xxl-unit-10 {
    min-height: 1rem !important;
  }
  .minh-xxl-unit-11 {
    min-height: 1.1rem !important;
  }
  .minh-xxl-unit-12 {
    min-height: 1.2rem !important;
  }
  .minh-xxl-unit-13 {
    min-height: 1.3rem !important;
  }
  .minh-xxl-unit-14 {
    min-height: 1.4rem !important;
  }
  .minh-xxl-unit-15 {
    min-height: 1.5rem !important;
  }
  .minh-xxl-unit-16 {
    min-height: 1.6rem !important;
  }
  .minh-xxl-unit-17 {
    min-height: 1.7rem !important;
  }
  .minh-xxl-unit-18 {
    min-height: 1.8rem !important;
  }
  .minh-xxl-unit-19 {
    min-height: 1.9rem !important;
  }
  .minh-xxl-unit-20 {
    min-height: 2rem !important;
  }
  .minh-xxl-unit-25 {
    min-height: 2.5rem !important;
  }
  .minh-xxl-unit-30 {
    min-height: 3rem !important;
  }
  .minh-xxl-unit-35 {
    min-height: 3.5rem !important;
  }
  .minh-xxl-unit-40 {
    min-height: 4rem !important;
  }
  .minh-xxl-unit-45 {
    min-height: 4.5rem !important;
  }
  .minh-xxl-unit-50 {
    min-height: 5rem !important;
  }
  .minh-xxl-unit-55 {
    min-height: 5.5rem !important;
  }
  .minh-xxl-unit-60 {
    min-height: 6rem !important;
  }
  .minh-xxl-unit-65 {
    min-height: 6.5rem !important;
  }
  .minh-xxl-unit-70 {
    min-height: 7rem !important;
  }
  .minh-xxl-unit-75 {
    min-height: 7.5rem !important;
  }
  .minh-xxl-unit-80 {
    min-height: 8rem !important;
  }
  .minh-xxl-unit-85 {
    min-height: 8.5rem !important;
  }
  .minh-xxl-unit-90 {
    min-height: 9rem !important;
  }
  .minh-xxl-unit-95 {
    min-height: 9.5rem !important;
  }
  .minh-xxl-unit-100 {
    min-height: 10rem !important;
  }
  .minh-xxl-unit-130 {
    min-height: 13rem !important;
  }
  .minh-xxl-unit-140 {
    min-height: 14rem !important;
  }
  .minh-xxl-unit-150 {
    min-height: 15rem !important;
  }
  .minh-xxl-unit-200 {
    min-height: 20rem !important;
  }
  .minh-xxl-unit-250 {
    min-height: 25rem !important;
  }
  .minh-xxl-unit-300 {
    min-height: 30rem !important;
  }
  .minh-xxl-unit-400 {
    min-height: 40rem !important;
  }
  .minh-xxl-unit-410 {
    min-height: 41rem !important;
  }
  .minh-xxl-unit-450 {
    min-height: 45rem !important;
  }
  .maxw-xxl-unit-0 {
    max-width: 0 !important;
  }
  .maxw-xxl-unit-1 {
    max-width: 0.1rem !important;
  }
  .maxw-xxl-unit-2 {
    max-width: 0.2rem !important;
  }
  .maxw-xxl-unit-3 {
    max-width: 0.3rem !important;
  }
  .maxw-xxl-unit-4 {
    max-width: 0.4rem !important;
  }
  .maxw-xxl-unit-5 {
    max-width: 0.5rem !important;
  }
  .maxw-xxl-unit-6 {
    max-width: 0.6rem !important;
  }
  .maxw-xxl-unit-7 {
    max-width: 0.7rem !important;
  }
  .maxw-xxl-unit-8 {
    max-width: 0.8rem !important;
  }
  .maxw-xxl-unit-9 {
    max-width: 0.9rem !important;
  }
  .maxw-xxl-unit-10 {
    max-width: 1rem !important;
  }
  .maxw-xxl-unit-11 {
    max-width: 1.1rem !important;
  }
  .maxw-xxl-unit-12 {
    max-width: 1.2rem !important;
  }
  .maxw-xxl-unit-13 {
    max-width: 1.3rem !important;
  }
  .maxw-xxl-unit-14 {
    max-width: 1.4rem !important;
  }
  .maxw-xxl-unit-15 {
    max-width: 1.5rem !important;
  }
  .maxw-xxl-unit-16 {
    max-width: 1.6rem !important;
  }
  .maxw-xxl-unit-17 {
    max-width: 1.7rem !important;
  }
  .maxw-xxl-unit-18 {
    max-width: 1.8rem !important;
  }
  .maxw-xxl-unit-19 {
    max-width: 1.9rem !important;
  }
  .maxw-xxl-unit-20 {
    max-width: 2rem !important;
  }
  .maxw-xxl-unit-25 {
    max-width: 2.5rem !important;
  }
  .maxw-xxl-unit-30 {
    max-width: 3rem !important;
  }
  .maxw-xxl-unit-35 {
    max-width: 3.5rem !important;
  }
  .maxw-xxl-unit-40 {
    max-width: 4rem !important;
  }
  .maxw-xxl-unit-45 {
    max-width: 4.5rem !important;
  }
  .maxw-xxl-unit-50 {
    max-width: 5rem !important;
  }
  .maxw-xxl-unit-55 {
    max-width: 5.5rem !important;
  }
  .maxw-xxl-unit-60 {
    max-width: 6rem !important;
  }
  .maxw-xxl-unit-65 {
    max-width: 6.5rem !important;
  }
  .maxw-xxl-unit-70 {
    max-width: 7rem !important;
  }
  .maxw-xxl-unit-75 {
    max-width: 7.5rem !important;
  }
  .maxw-xxl-unit-80 {
    max-width: 8rem !important;
  }
  .maxw-xxl-unit-85 {
    max-width: 8.5rem !important;
  }
  .maxw-xxl-unit-90 {
    max-width: 9rem !important;
  }
  .maxw-xxl-unit-95 {
    max-width: 9.5rem !important;
  }
  .maxw-xxl-unit-100 {
    max-width: 10rem !important;
  }
  .maxw-xxl-unit-130 {
    max-width: 13rem !important;
  }
  .maxw-xxl-unit-140 {
    max-width: 14rem !important;
  }
  .maxw-xxl-unit-150 {
    max-width: 15rem !important;
  }
  .maxw-xxl-unit-200 {
    max-width: 20rem !important;
  }
  .maxw-xxl-unit-250 {
    max-width: 25rem !important;
  }
  .maxw-xxl-unit-300 {
    max-width: 30rem !important;
  }
  .maxw-xxl-unit-400 {
    max-width: 40rem !important;
  }
  .maxw-xxl-unit-410 {
    max-width: 41rem !important;
  }
  .maxw-xxl-unit-450 {
    max-width: 45rem !important;
  }
  .maxh-xxl-unit-0 {
    max-height: 0 !important;
  }
  .maxh-xxl-unit-1 {
    max-height: 0.1rem !important;
  }
  .maxh-xxl-unit-2 {
    max-height: 0.2rem !important;
  }
  .maxh-xxl-unit-3 {
    max-height: 0.3rem !important;
  }
  .maxh-xxl-unit-4 {
    max-height: 0.4rem !important;
  }
  .maxh-xxl-unit-5 {
    max-height: 0.5rem !important;
  }
  .maxh-xxl-unit-6 {
    max-height: 0.6rem !important;
  }
  .maxh-xxl-unit-7 {
    max-height: 0.7rem !important;
  }
  .maxh-xxl-unit-8 {
    max-height: 0.8rem !important;
  }
  .maxh-xxl-unit-9 {
    max-height: 0.9rem !important;
  }
  .maxh-xxl-unit-10 {
    max-height: 1rem !important;
  }
  .maxh-xxl-unit-11 {
    max-height: 1.1rem !important;
  }
  .maxh-xxl-unit-12 {
    max-height: 1.2rem !important;
  }
  .maxh-xxl-unit-13 {
    max-height: 1.3rem !important;
  }
  .maxh-xxl-unit-14 {
    max-height: 1.4rem !important;
  }
  .maxh-xxl-unit-15 {
    max-height: 1.5rem !important;
  }
  .maxh-xxl-unit-16 {
    max-height: 1.6rem !important;
  }
  .maxh-xxl-unit-17 {
    max-height: 1.7rem !important;
  }
  .maxh-xxl-unit-18 {
    max-height: 1.8rem !important;
  }
  .maxh-xxl-unit-19 {
    max-height: 1.9rem !important;
  }
  .maxh-xxl-unit-20 {
    max-height: 2rem !important;
  }
  .maxh-xxl-unit-25 {
    max-height: 2.5rem !important;
  }
  .maxh-xxl-unit-30 {
    max-height: 3rem !important;
  }
  .maxh-xxl-unit-35 {
    max-height: 3.5rem !important;
  }
  .maxh-xxl-unit-40 {
    max-height: 4rem !important;
  }
  .maxh-xxl-unit-45 {
    max-height: 4.5rem !important;
  }
  .maxh-xxl-unit-50 {
    max-height: 5rem !important;
  }
  .maxh-xxl-unit-55 {
    max-height: 5.5rem !important;
  }
  .maxh-xxl-unit-60 {
    max-height: 6rem !important;
  }
  .maxh-xxl-unit-65 {
    max-height: 6.5rem !important;
  }
  .maxh-xxl-unit-70 {
    max-height: 7rem !important;
  }
  .maxh-xxl-unit-75 {
    max-height: 7.5rem !important;
  }
  .maxh-xxl-unit-80 {
    max-height: 8rem !important;
  }
  .maxh-xxl-unit-85 {
    max-height: 8.5rem !important;
  }
  .maxh-xxl-unit-90 {
    max-height: 9rem !important;
  }
  .maxh-xxl-unit-95 {
    max-height: 9.5rem !important;
  }
  .maxh-xxl-unit-100 {
    max-height: 10rem !important;
  }
  .maxh-xxl-unit-130 {
    max-height: 13rem !important;
  }
  .maxh-xxl-unit-140 {
    max-height: 14rem !important;
  }
  .maxh-xxl-unit-150 {
    max-height: 15rem !important;
  }
  .maxh-xxl-unit-200 {
    max-height: 20rem !important;
  }
  .maxh-xxl-unit-250 {
    max-height: 25rem !important;
  }
  .maxh-xxl-unit-300 {
    max-height: 30rem !important;
  }
  .maxh-xxl-unit-400 {
    max-height: 40rem !important;
  }
  .maxh-xxl-unit-410 {
    max-height: 41rem !important;
  }
  .maxh-xxl-unit-450 {
    max-height: 45rem !important;
  }
}
@media (min-width: 1920px) {
  .w-xxxl-unit-0 {
    width: 0 !important;
  }
  .w-xxxl-unit-1 {
    width: 0.1rem !important;
  }
  .w-xxxl-unit-2 {
    width: 0.2rem !important;
  }
  .w-xxxl-unit-3 {
    width: 0.3rem !important;
  }
  .w-xxxl-unit-4 {
    width: 0.4rem !important;
  }
  .w-xxxl-unit-5 {
    width: 0.5rem !important;
  }
  .w-xxxl-unit-6 {
    width: 0.6rem !important;
  }
  .w-xxxl-unit-7 {
    width: 0.7rem !important;
  }
  .w-xxxl-unit-8 {
    width: 0.8rem !important;
  }
  .w-xxxl-unit-9 {
    width: 0.9rem !important;
  }
  .w-xxxl-unit-10 {
    width: 1rem !important;
  }
  .w-xxxl-unit-11 {
    width: 1.1rem !important;
  }
  .w-xxxl-unit-12 {
    width: 1.2rem !important;
  }
  .w-xxxl-unit-13 {
    width: 1.3rem !important;
  }
  .w-xxxl-unit-14 {
    width: 1.4rem !important;
  }
  .w-xxxl-unit-15 {
    width: 1.5rem !important;
  }
  .w-xxxl-unit-16 {
    width: 1.6rem !important;
  }
  .w-xxxl-unit-17 {
    width: 1.7rem !important;
  }
  .w-xxxl-unit-18 {
    width: 1.8rem !important;
  }
  .w-xxxl-unit-19 {
    width: 1.9rem !important;
  }
  .w-xxxl-unit-20 {
    width: 2rem !important;
  }
  .w-xxxl-unit-25 {
    width: 2.5rem !important;
  }
  .w-xxxl-unit-30 {
    width: 3rem !important;
  }
  .w-xxxl-unit-35 {
    width: 3.5rem !important;
  }
  .w-xxxl-unit-40 {
    width: 4rem !important;
  }
  .w-xxxl-unit-45 {
    width: 4.5rem !important;
  }
  .w-xxxl-unit-50 {
    width: 5rem !important;
  }
  .w-xxxl-unit-55 {
    width: 5.5rem !important;
  }
  .w-xxxl-unit-60 {
    width: 6rem !important;
  }
  .w-xxxl-unit-65 {
    width: 6.5rem !important;
  }
  .w-xxxl-unit-70 {
    width: 7rem !important;
  }
  .w-xxxl-unit-75 {
    width: 7.5rem !important;
  }
  .w-xxxl-unit-80 {
    width: 8rem !important;
  }
  .w-xxxl-unit-85 {
    width: 8.5rem !important;
  }
  .w-xxxl-unit-90 {
    width: 9rem !important;
  }
  .w-xxxl-unit-95 {
    width: 9.5rem !important;
  }
  .w-xxxl-unit-100 {
    width: 10rem !important;
  }
  .w-xxxl-unit-130 {
    width: 13rem !important;
  }
  .w-xxxl-unit-140 {
    width: 14rem !important;
  }
  .w-xxxl-unit-150 {
    width: 15rem !important;
  }
  .w-xxxl-unit-200 {
    width: 20rem !important;
  }
  .w-xxxl-unit-250 {
    width: 25rem !important;
  }
  .w-xxxl-unit-300 {
    width: 30rem !important;
  }
  .w-xxxl-unit-400 {
    width: 40rem !important;
  }
  .w-xxxl-unit-410 {
    width: 41rem !important;
  }
  .w-xxxl-unit-450 {
    width: 45rem !important;
  }
  .h-xxxl-unit-0 {
    height: 0 !important;
  }
  .h-xxxl-unit-1 {
    height: 0.1rem !important;
  }
  .h-xxxl-unit-2 {
    height: 0.2rem !important;
  }
  .h-xxxl-unit-3 {
    height: 0.3rem !important;
  }
  .h-xxxl-unit-4 {
    height: 0.4rem !important;
  }
  .h-xxxl-unit-5 {
    height: 0.5rem !important;
  }
  .h-xxxl-unit-6 {
    height: 0.6rem !important;
  }
  .h-xxxl-unit-7 {
    height: 0.7rem !important;
  }
  .h-xxxl-unit-8 {
    height: 0.8rem !important;
  }
  .h-xxxl-unit-9 {
    height: 0.9rem !important;
  }
  .h-xxxl-unit-10 {
    height: 1rem !important;
  }
  .h-xxxl-unit-11 {
    height: 1.1rem !important;
  }
  .h-xxxl-unit-12 {
    height: 1.2rem !important;
  }
  .h-xxxl-unit-13 {
    height: 1.3rem !important;
  }
  .h-xxxl-unit-14 {
    height: 1.4rem !important;
  }
  .h-xxxl-unit-15 {
    height: 1.5rem !important;
  }
  .h-xxxl-unit-16 {
    height: 1.6rem !important;
  }
  .h-xxxl-unit-17 {
    height: 1.7rem !important;
  }
  .h-xxxl-unit-18 {
    height: 1.8rem !important;
  }
  .h-xxxl-unit-19 {
    height: 1.9rem !important;
  }
  .h-xxxl-unit-20 {
    height: 2rem !important;
  }
  .h-xxxl-unit-25 {
    height: 2.5rem !important;
  }
  .h-xxxl-unit-30 {
    height: 3rem !important;
  }
  .h-xxxl-unit-35 {
    height: 3.5rem !important;
  }
  .h-xxxl-unit-40 {
    height: 4rem !important;
  }
  .h-xxxl-unit-45 {
    height: 4.5rem !important;
  }
  .h-xxxl-unit-50 {
    height: 5rem !important;
  }
  .h-xxxl-unit-55 {
    height: 5.5rem !important;
  }
  .h-xxxl-unit-60 {
    height: 6rem !important;
  }
  .h-xxxl-unit-65 {
    height: 6.5rem !important;
  }
  .h-xxxl-unit-70 {
    height: 7rem !important;
  }
  .h-xxxl-unit-75 {
    height: 7.5rem !important;
  }
  .h-xxxl-unit-80 {
    height: 8rem !important;
  }
  .h-xxxl-unit-85 {
    height: 8.5rem !important;
  }
  .h-xxxl-unit-90 {
    height: 9rem !important;
  }
  .h-xxxl-unit-95 {
    height: 9.5rem !important;
  }
  .h-xxxl-unit-100 {
    height: 10rem !important;
  }
  .h-xxxl-unit-130 {
    height: 13rem !important;
  }
  .h-xxxl-unit-140 {
    height: 14rem !important;
  }
  .h-xxxl-unit-150 {
    height: 15rem !important;
  }
  .h-xxxl-unit-200 {
    height: 20rem !important;
  }
  .h-xxxl-unit-250 {
    height: 25rem !important;
  }
  .h-xxxl-unit-300 {
    height: 30rem !important;
  }
  .h-xxxl-unit-400 {
    height: 40rem !important;
  }
  .h-xxxl-unit-410 {
    height: 41rem !important;
  }
  .h-xxxl-unit-450 {
    height: 45rem !important;
  }
  .minw-xxxl-unit-0 {
    min-width: 0 !important;
  }
  .minw-xxxl-unit-1 {
    min-width: 0.1rem !important;
  }
  .minw-xxxl-unit-2 {
    min-width: 0.2rem !important;
  }
  .minw-xxxl-unit-3 {
    min-width: 0.3rem !important;
  }
  .minw-xxxl-unit-4 {
    min-width: 0.4rem !important;
  }
  .minw-xxxl-unit-5 {
    min-width: 0.5rem !important;
  }
  .minw-xxxl-unit-6 {
    min-width: 0.6rem !important;
  }
  .minw-xxxl-unit-7 {
    min-width: 0.7rem !important;
  }
  .minw-xxxl-unit-8 {
    min-width: 0.8rem !important;
  }
  .minw-xxxl-unit-9 {
    min-width: 0.9rem !important;
  }
  .minw-xxxl-unit-10 {
    min-width: 1rem !important;
  }
  .minw-xxxl-unit-11 {
    min-width: 1.1rem !important;
  }
  .minw-xxxl-unit-12 {
    min-width: 1.2rem !important;
  }
  .minw-xxxl-unit-13 {
    min-width: 1.3rem !important;
  }
  .minw-xxxl-unit-14 {
    min-width: 1.4rem !important;
  }
  .minw-xxxl-unit-15 {
    min-width: 1.5rem !important;
  }
  .minw-xxxl-unit-16 {
    min-width: 1.6rem !important;
  }
  .minw-xxxl-unit-17 {
    min-width: 1.7rem !important;
  }
  .minw-xxxl-unit-18 {
    min-width: 1.8rem !important;
  }
  .minw-xxxl-unit-19 {
    min-width: 1.9rem !important;
  }
  .minw-xxxl-unit-20 {
    min-width: 2rem !important;
  }
  .minw-xxxl-unit-25 {
    min-width: 2.5rem !important;
  }
  .minw-xxxl-unit-30 {
    min-width: 3rem !important;
  }
  .minw-xxxl-unit-35 {
    min-width: 3.5rem !important;
  }
  .minw-xxxl-unit-40 {
    min-width: 4rem !important;
  }
  .minw-xxxl-unit-45 {
    min-width: 4.5rem !important;
  }
  .minw-xxxl-unit-50 {
    min-width: 5rem !important;
  }
  .minw-xxxl-unit-55 {
    min-width: 5.5rem !important;
  }
  .minw-xxxl-unit-60 {
    min-width: 6rem !important;
  }
  .minw-xxxl-unit-65 {
    min-width: 6.5rem !important;
  }
  .minw-xxxl-unit-70 {
    min-width: 7rem !important;
  }
  .minw-xxxl-unit-75 {
    min-width: 7.5rem !important;
  }
  .minw-xxxl-unit-80 {
    min-width: 8rem !important;
  }
  .minw-xxxl-unit-85 {
    min-width: 8.5rem !important;
  }
  .minw-xxxl-unit-90 {
    min-width: 9rem !important;
  }
  .minw-xxxl-unit-95 {
    min-width: 9.5rem !important;
  }
  .minw-xxxl-unit-100 {
    min-width: 10rem !important;
  }
  .minw-xxxl-unit-130 {
    min-width: 13rem !important;
  }
  .minw-xxxl-unit-140 {
    min-width: 14rem !important;
  }
  .minw-xxxl-unit-150 {
    min-width: 15rem !important;
  }
  .minw-xxxl-unit-200 {
    min-width: 20rem !important;
  }
  .minw-xxxl-unit-250 {
    min-width: 25rem !important;
  }
  .minw-xxxl-unit-300 {
    min-width: 30rem !important;
  }
  .minw-xxxl-unit-400 {
    min-width: 40rem !important;
  }
  .minw-xxxl-unit-410 {
    min-width: 41rem !important;
  }
  .minw-xxxl-unit-450 {
    min-width: 45rem !important;
  }
  .minh-xxxl-unit-0 {
    min-height: 0 !important;
  }
  .minh-xxxl-unit-1 {
    min-height: 0.1rem !important;
  }
  .minh-xxxl-unit-2 {
    min-height: 0.2rem !important;
  }
  .minh-xxxl-unit-3 {
    min-height: 0.3rem !important;
  }
  .minh-xxxl-unit-4 {
    min-height: 0.4rem !important;
  }
  .minh-xxxl-unit-5 {
    min-height: 0.5rem !important;
  }
  .minh-xxxl-unit-6 {
    min-height: 0.6rem !important;
  }
  .minh-xxxl-unit-7 {
    min-height: 0.7rem !important;
  }
  .minh-xxxl-unit-8 {
    min-height: 0.8rem !important;
  }
  .minh-xxxl-unit-9 {
    min-height: 0.9rem !important;
  }
  .minh-xxxl-unit-10 {
    min-height: 1rem !important;
  }
  .minh-xxxl-unit-11 {
    min-height: 1.1rem !important;
  }
  .minh-xxxl-unit-12 {
    min-height: 1.2rem !important;
  }
  .minh-xxxl-unit-13 {
    min-height: 1.3rem !important;
  }
  .minh-xxxl-unit-14 {
    min-height: 1.4rem !important;
  }
  .minh-xxxl-unit-15 {
    min-height: 1.5rem !important;
  }
  .minh-xxxl-unit-16 {
    min-height: 1.6rem !important;
  }
  .minh-xxxl-unit-17 {
    min-height: 1.7rem !important;
  }
  .minh-xxxl-unit-18 {
    min-height: 1.8rem !important;
  }
  .minh-xxxl-unit-19 {
    min-height: 1.9rem !important;
  }
  .minh-xxxl-unit-20 {
    min-height: 2rem !important;
  }
  .minh-xxxl-unit-25 {
    min-height: 2.5rem !important;
  }
  .minh-xxxl-unit-30 {
    min-height: 3rem !important;
  }
  .minh-xxxl-unit-35 {
    min-height: 3.5rem !important;
  }
  .minh-xxxl-unit-40 {
    min-height: 4rem !important;
  }
  .minh-xxxl-unit-45 {
    min-height: 4.5rem !important;
  }
  .minh-xxxl-unit-50 {
    min-height: 5rem !important;
  }
  .minh-xxxl-unit-55 {
    min-height: 5.5rem !important;
  }
  .minh-xxxl-unit-60 {
    min-height: 6rem !important;
  }
  .minh-xxxl-unit-65 {
    min-height: 6.5rem !important;
  }
  .minh-xxxl-unit-70 {
    min-height: 7rem !important;
  }
  .minh-xxxl-unit-75 {
    min-height: 7.5rem !important;
  }
  .minh-xxxl-unit-80 {
    min-height: 8rem !important;
  }
  .minh-xxxl-unit-85 {
    min-height: 8.5rem !important;
  }
  .minh-xxxl-unit-90 {
    min-height: 9rem !important;
  }
  .minh-xxxl-unit-95 {
    min-height: 9.5rem !important;
  }
  .minh-xxxl-unit-100 {
    min-height: 10rem !important;
  }
  .minh-xxxl-unit-130 {
    min-height: 13rem !important;
  }
  .minh-xxxl-unit-140 {
    min-height: 14rem !important;
  }
  .minh-xxxl-unit-150 {
    min-height: 15rem !important;
  }
  .minh-xxxl-unit-200 {
    min-height: 20rem !important;
  }
  .minh-xxxl-unit-250 {
    min-height: 25rem !important;
  }
  .minh-xxxl-unit-300 {
    min-height: 30rem !important;
  }
  .minh-xxxl-unit-400 {
    min-height: 40rem !important;
  }
  .minh-xxxl-unit-410 {
    min-height: 41rem !important;
  }
  .minh-xxxl-unit-450 {
    min-height: 45rem !important;
  }
  .maxw-xxxl-unit-0 {
    max-width: 0 !important;
  }
  .maxw-xxxl-unit-1 {
    max-width: 0.1rem !important;
  }
  .maxw-xxxl-unit-2 {
    max-width: 0.2rem !important;
  }
  .maxw-xxxl-unit-3 {
    max-width: 0.3rem !important;
  }
  .maxw-xxxl-unit-4 {
    max-width: 0.4rem !important;
  }
  .maxw-xxxl-unit-5 {
    max-width: 0.5rem !important;
  }
  .maxw-xxxl-unit-6 {
    max-width: 0.6rem !important;
  }
  .maxw-xxxl-unit-7 {
    max-width: 0.7rem !important;
  }
  .maxw-xxxl-unit-8 {
    max-width: 0.8rem !important;
  }
  .maxw-xxxl-unit-9 {
    max-width: 0.9rem !important;
  }
  .maxw-xxxl-unit-10 {
    max-width: 1rem !important;
  }
  .maxw-xxxl-unit-11 {
    max-width: 1.1rem !important;
  }
  .maxw-xxxl-unit-12 {
    max-width: 1.2rem !important;
  }
  .maxw-xxxl-unit-13 {
    max-width: 1.3rem !important;
  }
  .maxw-xxxl-unit-14 {
    max-width: 1.4rem !important;
  }
  .maxw-xxxl-unit-15 {
    max-width: 1.5rem !important;
  }
  .maxw-xxxl-unit-16 {
    max-width: 1.6rem !important;
  }
  .maxw-xxxl-unit-17 {
    max-width: 1.7rem !important;
  }
  .maxw-xxxl-unit-18 {
    max-width: 1.8rem !important;
  }
  .maxw-xxxl-unit-19 {
    max-width: 1.9rem !important;
  }
  .maxw-xxxl-unit-20 {
    max-width: 2rem !important;
  }
  .maxw-xxxl-unit-25 {
    max-width: 2.5rem !important;
  }
  .maxw-xxxl-unit-30 {
    max-width: 3rem !important;
  }
  .maxw-xxxl-unit-35 {
    max-width: 3.5rem !important;
  }
  .maxw-xxxl-unit-40 {
    max-width: 4rem !important;
  }
  .maxw-xxxl-unit-45 {
    max-width: 4.5rem !important;
  }
  .maxw-xxxl-unit-50 {
    max-width: 5rem !important;
  }
  .maxw-xxxl-unit-55 {
    max-width: 5.5rem !important;
  }
  .maxw-xxxl-unit-60 {
    max-width: 6rem !important;
  }
  .maxw-xxxl-unit-65 {
    max-width: 6.5rem !important;
  }
  .maxw-xxxl-unit-70 {
    max-width: 7rem !important;
  }
  .maxw-xxxl-unit-75 {
    max-width: 7.5rem !important;
  }
  .maxw-xxxl-unit-80 {
    max-width: 8rem !important;
  }
  .maxw-xxxl-unit-85 {
    max-width: 8.5rem !important;
  }
  .maxw-xxxl-unit-90 {
    max-width: 9rem !important;
  }
  .maxw-xxxl-unit-95 {
    max-width: 9.5rem !important;
  }
  .maxw-xxxl-unit-100 {
    max-width: 10rem !important;
  }
  .maxw-xxxl-unit-130 {
    max-width: 13rem !important;
  }
  .maxw-xxxl-unit-140 {
    max-width: 14rem !important;
  }
  .maxw-xxxl-unit-150 {
    max-width: 15rem !important;
  }
  .maxw-xxxl-unit-200 {
    max-width: 20rem !important;
  }
  .maxw-xxxl-unit-250 {
    max-width: 25rem !important;
  }
  .maxw-xxxl-unit-300 {
    max-width: 30rem !important;
  }
  .maxw-xxxl-unit-400 {
    max-width: 40rem !important;
  }
  .maxw-xxxl-unit-410 {
    max-width: 41rem !important;
  }
  .maxw-xxxl-unit-450 {
    max-width: 45rem !important;
  }
  .maxh-xxxl-unit-0 {
    max-height: 0 !important;
  }
  .maxh-xxxl-unit-1 {
    max-height: 0.1rem !important;
  }
  .maxh-xxxl-unit-2 {
    max-height: 0.2rem !important;
  }
  .maxh-xxxl-unit-3 {
    max-height: 0.3rem !important;
  }
  .maxh-xxxl-unit-4 {
    max-height: 0.4rem !important;
  }
  .maxh-xxxl-unit-5 {
    max-height: 0.5rem !important;
  }
  .maxh-xxxl-unit-6 {
    max-height: 0.6rem !important;
  }
  .maxh-xxxl-unit-7 {
    max-height: 0.7rem !important;
  }
  .maxh-xxxl-unit-8 {
    max-height: 0.8rem !important;
  }
  .maxh-xxxl-unit-9 {
    max-height: 0.9rem !important;
  }
  .maxh-xxxl-unit-10 {
    max-height: 1rem !important;
  }
  .maxh-xxxl-unit-11 {
    max-height: 1.1rem !important;
  }
  .maxh-xxxl-unit-12 {
    max-height: 1.2rem !important;
  }
  .maxh-xxxl-unit-13 {
    max-height: 1.3rem !important;
  }
  .maxh-xxxl-unit-14 {
    max-height: 1.4rem !important;
  }
  .maxh-xxxl-unit-15 {
    max-height: 1.5rem !important;
  }
  .maxh-xxxl-unit-16 {
    max-height: 1.6rem !important;
  }
  .maxh-xxxl-unit-17 {
    max-height: 1.7rem !important;
  }
  .maxh-xxxl-unit-18 {
    max-height: 1.8rem !important;
  }
  .maxh-xxxl-unit-19 {
    max-height: 1.9rem !important;
  }
  .maxh-xxxl-unit-20 {
    max-height: 2rem !important;
  }
  .maxh-xxxl-unit-25 {
    max-height: 2.5rem !important;
  }
  .maxh-xxxl-unit-30 {
    max-height: 3rem !important;
  }
  .maxh-xxxl-unit-35 {
    max-height: 3.5rem !important;
  }
  .maxh-xxxl-unit-40 {
    max-height: 4rem !important;
  }
  .maxh-xxxl-unit-45 {
    max-height: 4.5rem !important;
  }
  .maxh-xxxl-unit-50 {
    max-height: 5rem !important;
  }
  .maxh-xxxl-unit-55 {
    max-height: 5.5rem !important;
  }
  .maxh-xxxl-unit-60 {
    max-height: 6rem !important;
  }
  .maxh-xxxl-unit-65 {
    max-height: 6.5rem !important;
  }
  .maxh-xxxl-unit-70 {
    max-height: 7rem !important;
  }
  .maxh-xxxl-unit-75 {
    max-height: 7.5rem !important;
  }
  .maxh-xxxl-unit-80 {
    max-height: 8rem !important;
  }
  .maxh-xxxl-unit-85 {
    max-height: 8.5rem !important;
  }
  .maxh-xxxl-unit-90 {
    max-height: 9rem !important;
  }
  .maxh-xxxl-unit-95 {
    max-height: 9.5rem !important;
  }
  .maxh-xxxl-unit-100 {
    max-height: 10rem !important;
  }
  .maxh-xxxl-unit-130 {
    max-height: 13rem !important;
  }
  .maxh-xxxl-unit-140 {
    max-height: 14rem !important;
  }
  .maxh-xxxl-unit-150 {
    max-height: 15rem !important;
  }
  .maxh-xxxl-unit-200 {
    max-height: 20rem !important;
  }
  .maxh-xxxl-unit-250 {
    max-height: 25rem !important;
  }
  .maxh-xxxl-unit-300 {
    max-height: 30rem !important;
  }
  .maxh-xxxl-unit-400 {
    max-height: 40rem !important;
  }
  .maxh-xxxl-unit-410 {
    max-height: 41rem !important;
  }
  .maxh-xxxl-unit-450 {
    max-height: 45rem !important;
  }
}
.text-decoration-underline {
  text-decoration: underline !important;
}

.text-black {
  color: #000 !important;
}

.text-hover-decoration-none:hover {
  text-decoration: none !important;
}

.text-hover-decoration-underline:hover {
  text-decoration: underline !important;
}

/* Global - u r not able to change bootstrap variables */
.bg-shadow {
  background-color: #e5e5e5;
}

.cursor-pointer {
  cursor: pointer;
}

.resize-none {
  resize: none;
}

.shadow {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1) !important;
}

.card.shadow {
  box-shadow: none !important;
  background-color: #ededed;
}

.brad-5 {
  border-radius: 0.5rem;
}

.brad-10 {
  border-radius: 1rem;
}

.brad-20 {
  border-radius: 2rem;
}

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

.border-bottom-2 {
  border-bottom: 2px solid;
}

.border-bottom-3 {
  border-bottom: 3px solid;
}

.border-bottom-4 {
  border-bottom: 4px solid;
}

.border-bottom-5 {
  border-bottom: 5px solid;
}

.border-top-1 {
  border-top: 1px solid;
}

.border-top-2 {
  border-top: 2px solid;
}

.border-top-3 {
  border-top: 3px solid;
}

.border-top-4 {
  border-top: 4px solid;
}

.border-top-5 {
  border-top: 5px solid;
}

.w-5 {
  width: 5%;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-50 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-60 {
  width: 60%;
}

.w-65 {
  width: 65%;
}

.w-70 {
  width: 70%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-90 {
  width: 90%;
}

.w-95 {
  width: 95%;
}

.minh-100 {
  min-height: 100%;
}

.d-contents {
  display: contents;
}

.word-break-all {
  word-break: break-all !important;
}

.no-wrap {
  white-space: nowrap;
}

.visibility-hidden {
  visibility: hidden;
}

@media (min-width: 992px) {
  .no-lg-wrap {
    white-space: nowrap;
  }
  .btn-lg-group {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
  }
}
@media (min-width: 1200px) {
  .no-xl-wrap {
    white-space: nowrap;
  }
}
@media (min-width: 1600px) {
  .no-xxl-wrap {
    white-space: nowrap;
  }
}
@media (min-width: 1920px) {
  .no-xxxl-wrap {
    white-space: nowrap;
  }
}
.logo-dip-small {
  content: url("data:image/svg+xml,%3Csvg width='20' height='10' viewBox='0 0 20 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.6864 -7.27669e-08L12.3704 -2.94429e-10C12.5805 0.360871 12.7014 0.779969 12.7014 1.22763C12.7014 1.68492 12.5755 2.11262 12.3569 2.47861L12.3569 9.0649L14.5464 9.0649L14.5464 5.64605L15.6347 5.64605C17.5297 5.64605 19.233 4.89106 19.233 2.79106C19.233 0.716711 17.6708 -1.16137e-07 15.6864 -7.27669e-08ZM15.4685 3.90496L14.5464 3.90496L14.5464 1.76667L15.5069 1.76667C16.288 1.76667 17.0436 1.93334 17.0436 2.80384C17.0436 3.66165 16.288 3.90496 15.4685 3.90496Z' fill='white'/%3E%3Cpath d='M3.27768 0.0126952L0 0.0126953L1.9812e-07 9.0776L3.37989 9.0776C5.87683 9.0776 8.46311 7.70735 8.46311 4.51944C8.46311 1.08806 5.85108 0.0126952 3.27768 0.0126952ZM3.17512 7.18271L2.13803 7.18271L2.13803 1.88184L3.22644 1.88184C4.73727 1.88184 6.18408 2.48372 6.18408 4.51953C6.18408 6.54247 4.73719 7.18271 3.17512 7.18271Z' fill='white'/%3E%3Cpath d='M10.2581 -2.68399e-08C9.58058 -1.20328e-08 9.03003 0.551152 9.03003 1.22788C9.03003 1.90734 9.58067 2.4561 10.2581 2.4561C10.9344 2.4561 11.4845 1.90734 11.4845 1.22788C11.4845 0.551067 10.9344 -4.1621e-08 10.2581 -2.68399e-08Z' fill='white'/%3E%3Cpath d='M9.13403 3.40527L9.13403 9.07792L11.34 9.07792L11.34 3.42607C11.0129 3.58618 10.6455 3.67757 10.2571 3.67757C9.8533 3.67765 9.47137 3.57868 9.13403 3.40527Z' fill='white'/%3E%3C/svg%3E");
}

.icon-close {
  content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L19 18.6721' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M1 19.0002L19 1.32812' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-info {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 8C18 6.4087 17.3679 4.88258 16.2426 3.75736C15.1174 2.63214 13.5913 2 12 2C10.4087 2 8.88258 2.63214 7.75736 3.75736C6.63214 4.88258 6 6.4087 6 8C6 15 3 17 3 17H21C21 17 18 15 18 8Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.7295 21C13.5537 21.3031 13.3014 21.5547 12.9978 21.7295C12.6941 21.9044 12.3499 21.9965 11.9995 21.9965C11.6492 21.9965 11.3049 21.9044 11.0013 21.7295C10.6977 21.5547 10.4453 21.3031 10.2695 21' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-book {
  content: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.666992 0.999674C0.666992 0.631485 0.965469 0.333008 1.33366 0.333008H5.33366C6.21771 0.333008 7.06556 0.684197 7.69068 1.30932C8.3158 1.93444 8.66699 2.78229 8.66699 3.66634V12.9997C8.66699 13.3679 8.36852 13.6663 8.00033 13.6663C7.63214 13.6663 7.33366 13.3679 7.33366 12.9997C7.33366 12.6461 7.19318 12.3069 6.94313 12.0569C6.69309 11.8068 6.35395 11.6663 6.00033 11.6663H1.33366C0.965469 11.6663 0.666992 11.3679 0.666992 10.9997V0.999674ZM7.33366 10.6903V3.66634C7.33366 3.13591 7.12295 2.6272 6.74787 2.25213C6.3728 1.87705 5.86409 1.66634 5.33366 1.66634H2.00033V10.333H6.00033C6.47248 10.333 6.93172 10.4582 7.33366 10.6903Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.30932 1.30932C8.93444 0.684197 9.78229 0.333008 10.6663 0.333008H14.6663C15.0345 0.333008 15.333 0.631485 15.333 0.999674V10.9997C15.333 11.3679 15.0345 11.6663 14.6663 11.6663H9.99967C9.64605 11.6663 9.30691 11.8068 9.05687 12.0569C8.80682 12.3069 8.66634 12.6461 8.66634 12.9997C8.66634 13.3679 8.36786 13.6663 7.99967 13.6663C7.63148 13.6663 7.33301 13.3679 7.33301 12.9997V3.66634C7.33301 2.78229 7.6842 1.93444 8.30932 1.30932ZM8.66634 10.6903C9.06828 10.4582 9.52752 10.333 9.99967 10.333H13.9997V1.66634H10.6663C10.1359 1.66634 9.6272 1.87705 9.25213 2.25213C8.87705 2.6272 8.66634 3.13591 8.66634 3.66634V10.6903Z' fill='black'/%3E%3C/svg%3E");
}

.lh-13 {
  line-height: 1.3;
}

.lh-1 {
  line-height: 1;
}

.va-middle {
  vertical-align: middle;
}

.text-end {
  text-align: end;
}

.cg-10 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.cursor-pointer {
  cursor: pointer;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-hint {
  width: 2rem;
  height: 2rem;
  margin-top: -0.3rem;
  margin-left: 0.3rem;
  padding: 0;
  text-align: center;
}

.icon {
  background: white;
  width: 2.6rem;
  height: 2.6rem;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2rem;
  border-radius: 50px;
}
.icon.icon-small {
  width: 2.1rem;
  height: 2.1rem;
}

.btn-rounded {
  width: 4.45rem;
  height: 4.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upozorneni > span {
  top: -0.3rem;
  right: -0.2rem;
  font-size: 1.1rem;
  width: 1.5rem;
  height: 1.5rem;
}

.btn-menu {
  padding: 0.5rem 0.5rem 0.5rem 1.6rem !important;
}

.btn-menu,
.btn-menu:hover,
.btn-menu:focus,
.btn-menu-active {
  border: 0;
  outline: none;
  transition: none;
  border-radius: 5rem !important;
  font-family: "hellix-regular" !important;
}

.btn-menu-secondary:hover,
.btn-menu-secondary:focus,
.btn-menu-secondary.btn-menu-active {
  background-color: #f4f4f5;
  color: black;
}

.btn-menu-secondary {
  padding: 0.8rem 0.5rem 0.8rem 1.3rem !important;
  color: #706f6f;
}

.btn-drag {
  width: 2rem;
  background: none;
  outline: none;
  display: inline-block;
  cursor: pointer;
}
.btn-drag .btn-drag-line {
  width: 100%;
  height: 2px;
  background: #000;
  border: 0;
}
.btn-drag .btn-drag-line + .btn-drag-line {
  margin-top: 0.5rem;
}

.btn-visibility-hidden {
  visibility: hidden;
  z-index: -9;
}

.btn-color04:not(:disabled):not(.disabled):active,
.btn-color04:not(:disabled):not(.disabled).active,
.show > .btn-color04.dropdown-toggle,
.btn-color04:focus,
.btn-color04.focus,
.btn-color04:hover,
.btn-color05:not(:disabled):not(.disabled):active,
.btn-color05:not(:disabled):not(.disabled).active,
.show > .btn-color05.dropdown-toggle,
.btn-color05:focus,
.btn-color05.focus,
.btn-color05:hover {
  color: #212529;
}

/*input*/
/*.form-control {
  font-size: 1.4rem !important;
  padding: 0.8rem 1.2rem !important;
  border-radius: 1rem !important;
  height: 3.6rem;
}*/
.input-group-append {
  z-index: 500;
}
.input-group-append .input-group-text {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background-color: #EBEBEB;
}

.form-control:focus {
  box-shadow: none !important;
  border: 1px solid #545454 !important;
}

label {
  font-size: 1.4rem;
  font-weight: 400 !important;
}

.form-control-search {
  padding: 0.8rem 1.5rem !important;
  border-radius: 3rem !important;
  height: 4.6rem;
}
@media (min-width: 768px) {
  .form-control-search {
    margin-left: -1.5rem;
  }
}

.custom-checkbox .custom-control-label.round-0::before {
  border-radius: 0;
}

/*
.form-control:disabled,
.form-control[readonly],
.custom-select:disabled {
  background-color: #f0f0f0;
}*/
:root {
  --switches-bg-color: black;
  --switches-label-color: white ;
  --switch-bg-color: var(--primary);
  --switch-text-color: black;
}

/* container for all of the switch elements
  - adjust "width" to fit the content accordingly
*/
.switches-container {
  border: 1px solid black;
  width: 26rem;
  position: relative;
  display: flex;
  padding: 0;
  position: relative;
  background: var(--switches-bg-color);
  line-height: 3rem;
  border-radius: 3rem;
}

/* input (radio) for toggling. hidden - use labels for clicking on */
.switches-container input {
  visibility: hidden;
  position: absolute;
  top: 0;
}

/* labels for the input (radio) boxes - something to click on */
.switches-container label {
  width: 50%;
  padding: 0;
  margin: 0;
  text-align: center;
  cursor: pointer;
  color: var(--switches-label-color);
  font-size: 1.2rem;
  line-height: 37px;
  vertical-align: middle;
  font-weight: 600 !important;
}

/* switch highlighters wrapper (sliding left / right)
  - need wrapper to enable the even margins around the highlight box
*/
.switch-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  padding: 0.1rem;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  /* transition: transform 1s; */
}

/* switch box highlighter */
.switches {
  border-radius: 3rem;
  background: var(--switch-bg-color);
  height: 100%;
  font-size: 1.2rem;
  line-height: 37px;
  vertical-align: middle;
  font-family: "hellix-bold";
}

/* switch box labels
  - default setup
  - toggle afterwards based on radio:checked status
*/
.switches div {
  width: 100%;
  text-align: center;
  opacity: 0;
  display: block;
  color: var(--switch-text-color);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0.125s;
  will-change: opacity;
  position: absolute;
  top: 0;
  left: 0;
}

/* slide the switch box from right to left */
.switches-container input:nth-of-type(1):checked ~ .switch-wrapper {
  transform: translateX(0%);
}

/* slide the switch box from left to right */
.switches-container input:nth-of-type(2):checked ~ .switch-wrapper {
  transform: translateX(100%);
}

/* toggle the switch box labels - first checkbox:checked - show first switch div */
.switches-container input:nth-of-type(1):checked ~ .switch-wrapper .switches div:nth-of-type(1) {
  opacity: 1;
}

/* toggle the switch box labels - second checkbox:checked - show second switch div */
.switches-container input:nth-of-type(2):checked ~ .switch-wrapper .switches div:nth-of-type(2) {
  opacity: 1;
}

.multiselect__tag {
  color: #000;
  background: #fce204;
}

.multiselect__tag-icon {
  color: #000;
}

.multiselect__tag-icon:focus, .multiselect__tag-icon:hover {
  color: #000;
  background: #dcc204;
}

.multiselect__tags {
  border: 2px solid #fff;
  background: #efefef;
}

.multiselect__input, .multiselect__single {
  background: transparent;
}

.multiselect__content-wrapper {
  background: #efefef;
  border: 2px solid #fff;
}

.multiselect__option {
  white-space: normal;
}

.multiselect__option--selected:after,
.multiselect__option--highlight:after {
  display: none;
}

.multiselect__option--selected {
  font-weight: inherit;
  background-color: rgba(0, 0, 0, 0.15);
  color: inherit;
}

.multiselect__single .option__desc,
.multiselect__element .option__desc {
  color: #000;
}

.multiselect__element .option__title {
  font-weight: 600;
  font-size: 14px;
  font-family: "hellix-semibold";
}

.multiselect__element .option__small {
  font-size: 12px;
  font-family: "hellix-regular";
}

.multiselect__option--highlight,
.multiselect__option--selected.multiselect__option--highlight {
  background-color: #000;
  color: #fff;
  font-family: "hellix-regular";
}
.multiselect__option--highlight .option__desc,
.multiselect__option--selected.multiselect__option--highlight .option__desc {
  color: #fff;
}

.multiselect__element + .multiselect__element {
  border-top: 1px solid #fff;
}

.multiselect__select:before {
  color: #000;
  border-color: #000 transparent transparent;
}

.multiselect, .multiselect__input, .multiselect__single {
  font-size: 14px;
}

.table {
  margin-top: 0 !important;
  color: #000;
  /*
  td:first-child {border-top-left-radius: 0.5rem;border-bottom-left-radius: 0.5rem;}
  td:last-child {border-top-right-radius: 0.5rem;border-bottom-right-radius: 0.5rem;}
  */
}
.table th {
  font-size: 1.3rem;
  border: 0 !important;
}
.table td {
  font-size: 1.3rem;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .table th,
  .table td {
    padding: 1.1rem 1.3rem;
  }
}

table.dataTable thead th {
  background: transparent !important;
}
@media (min-width: 768px) {
  table.dataTable thead th {
    white-space: nowrap;
  }
}

table.dataTable thead span.sort-icon {
  display: inline-block;
  padding-left: 2.4rem;
  width: 5rem;
  height: 1.2rem;
}
@media (max-width: 991.98px) {
  table.dataTable thead span.sort-icon {
    display: block;
    padding-left: 0;
  }
}

@media (max-width: 991.98px) {
  .text-center span.sort-icon {
    margin: 0 auto;
  }
  .text-left span.sort-icon {
    margin-right: auto;
  }
  .text-right span.sort-icon {
    margin-left: auto;
  }
}
table.dataTable thead .sorting span {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='43px' height='12px'><path fill='rgb(112, 111, 111)' d='M41.369,12.5 L32.999,3.342 L24.629,12.5 L23.9,10.328 L31.379,1.665 L32.999,0.11 L34.619,1.665 L42.989,10.328 L41.369,12.5 Z'></path><path fill='rgb(112, 111, 111)' d='M10.0,12.10 L8.380,10.334 L0.10,1.671 L1.630,0.5 L10.0,8.657 L18.370,0.5 L19.990,1.671 L11.620,10.334 L10.0,12.10 Z'></path></svg>") no-repeat center right;
}

table.dataTable thead .sorting_asc span {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='43px' height='12px'><path fill='rgb(0, 0, 0)' d='M41.369,12.5 L32.999,3.342 L24.629,12.5 L23.9,10.328 L31.379,1.665 L32.999,0.11 L34.619,1.665 L42.989,10.328 L41.369,12.5 Z'></path><path fill='rgb(112, 111, 111)' d='M10.0,12.10 L8.380,10.334 L0.10,1.671 L1.630,0.5 L10.0,8.657 L18.370,0.5 L19.990,1.671 L11.620,10.334 L10.0,12.10 Z'></path></svg>") no-repeat center right;
}

table.dataTable thead .sorting_desc span {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='43px' height='12px'><path fill='rgb(112, 111, 111)' d='M41.369,12.5 L32.999,3.342 L24.629,12.5 L23.9,10.328 L31.379,1.665 L32.999,0.11 L34.619,1.665 L42.989,10.328 L41.369,12.5 Z'></path><path fill='rgb(0, 0, 0)' d='M10.0,12.10 L8.380,10.334 L0.10,1.671 L1.630,0.5 L10.0,8.657 L18.370,0.5 L19.990,1.671 L11.620,10.334 L10.0,12.10 Z'></path></svg>") no-repeat center right;
}

table.dataTable thead .sorting_asc_disabled span {
  background: none;
}

table.dataTable thead .sorting_desc_disabled span {
  background: none;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
  content: "";
}

.table-block {
  display: block;
  width: 100%;
}
.table-block thead,
.table-block tbody {
  display: block;
}
.table-block thead tr,
.table-block tbody tr {
  display: flex;
  align-items: center !important;
  width: 100%;
  outline: 0 !important;
  box-shadow: none !important;
}
.table-block thead tr:hover, .table-block thead tr:active, .table-block thead tr:focus,
.table-block tbody tr:hover,
.table-block tbody tr:active,
.table-block tbody tr:focus {
  outline: 0 !important;
  box-shadow: none !important;
}
.table-block thead tr {
  padding: 0rem 0rem 1.5rem;
}
@media (min-width: 992px) {
  .table-block thead tr {
    padding: 0rem 1rem 1.5rem;
  }
}
.table-block tbody tr {
  position: relative;
  min-height: 9.5rem;
  padding: 1rem 0rem;
}
@media (min-width: 992px) {
  .table-block tbody tr {
    padding: 0.5rem 1rem;
  }
}
.table-block tbody tr:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e5e5e5;
  border-radius: 0.5rem;
  z-index: -1;
}
.table-block tbody tr + tr {
  margin-top: 1.2rem;
}
.table-block thead th,
.table-block tbody td {
  display: block;
  border-top: 0;
  padding: 0.2rem 1rem !important;
  outline: 0 !important;
  box-shadow: none !important;
  font-size: 1.2rem;
}
.table-block thead th:hover, .table-block thead th:active, .table-block thead th:focus,
.table-block tbody td:hover,
.table-block tbody td:active,
.table-block tbody td:focus {
  outline: 0 !important;
  box-shadow: none !important;
}
@media (min-width: 1200px) {
  .table-block thead th:first-child,
  .table-block tbody td:first-child {
    padding-left: 2rem !important;
  }
  .table-block thead th:last-child,
  .table-block tbody td:last-child {
    padding-right: 1rem !important;
  }
}

.table-client tr td:nth-child(1) {
  font-family: "hellix-bold";
}
@media (min-width: 1200px) {
  .table-client tr td:nth-child(1) {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .table-client tr td:nth-child(2) {
    font-size: 1.8rem;
  }
}
.table-client tr td:nth-child(3) {
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .table-client tr td:nth-child(3) {
    font-size: 1.8rem;
  }
}
.table-client tr td:nth-child(4) {
  font-size: 1.4rem;
}
.table-client tr td:nth-child(5) {
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  .table-client tr td:nth-child(1),
  .table-client tr td:nth-child(2),
  .table-client tr td:nth-child(3),
  .table-client tr td:nth-child(4),
  .table-client tr td:nth-child(5) {
    font-family: "hellix-bold";
  }
  .table-client tr th:nth-child(1),
  .table-client tr td:nth-child(1) {
    width: 25% !important;
  }
  .table-client tr th:nth-child(2),
  .table-client tr td:nth-child(2) {
    width: 10% !important;
  }
  .table-client tr th:nth-child(3),
  .table-client tr td:nth-child(3) {
    width: 20% !important;
  }
  .table-client tr th:nth-child(4),
  .table-client tr td:nth-child(4) {
    width: 27.5% !important;
  }
  .table-client tr th:nth-child(5),
  .table-client tr td:nth-child(5) {
    width: 17.5% !important;
  }
  .table-client.table-client-with-mobility tr th:nth-child(1),
  .table-client.table-client-with-mobility tr td:nth-child(1) {
    width: 20% !important;
  }
  .table-client.table-client-with-mobility tr th:nth-child(2),
  .table-client.table-client-with-mobility tr td:nth-child(2) {
    width: 10% !important;
  }
  .table-client.table-client-with-mobility tr th:nth-child(3),
  .table-client.table-client-with-mobility tr td:nth-child(3) {
    width: 20% !important;
  }
  .table-client.table-client-with-mobility tr th:nth-child(4),
  .table-client.table-client-with-mobility tr td:nth-child(4) {
    width: 25% !important;
  }
  .table-client.table-client-with-mobility tr th:nth-child(5),
  .table-client.table-client-with-mobility tr td:nth-child(5) {
    width: 7.5% !important;
  }
  .table-client.table-client-with-mobility tr th:nth-child(6),
  .table-client.table-client-with-mobility tr td:nth-child(6) {
    width: 17.5% !important;
  }
}

@media (min-width: 992px) {
  .table-contract-detail tr {
    padding-right: 0 !important;
  }
  .table-contract-detail tr:before {
    width: calc(100% - 5rem) !important;
  }
}
.table-contract-detail.table-without-request tr:before {
  width: 100% !important;
}
.table-contract-detail tr td:nth-child(1) {
  font-family: "hellix-bold";
}
@media (min-width: 1200px) {
  .table-contract-detail tr td:nth-child(1) {
    font-size: 1.8rem;
  }
}
.table-contract-detail tr td[colspan="8"] {
  width: 100% !important;
}
@media (min-width: 992px) {
  .table-contract-detail tr {
    padding-right: 0;
  }
  .table-contract-detail tr:before {
    width: calc(100% - 5rem);
  }
  .table-contract-detail tr th:nth-child(1),
  .table-contract-detail tr td:nth-child(1) {
    width: 15%;
  }
  .table-contract-detail tr th:nth-child(2),
  .table-contract-detail tr td:nth-child(2) {
    width: 15%;
  }
  .table-contract-detail tr th:nth-child(3),
  .table-contract-detail tr td:nth-child(3) {
    width: 15%;
  }
  .table-contract-detail tr th:nth-child(4),
  .table-contract-detail tr td:nth-child(4) {
    width: 12.5%;
  }
  .table-contract-detail tr th:nth-child(5),
  .table-contract-detail tr td:nth-child(5) {
    width: 15%;
  }
  .table-contract-detail tr th:nth-child(6),
  .table-contract-detail tr td:nth-child(6) {
    width: 10%;
  }
  .table-contract-detail tr th:nth-child(7),
  .table-contract-detail tr td:nth-child(7) {
    width: 12.5%;
  }
  .table-contract-detail tr th:nth-child(8),
  .table-contract-detail tr td:nth-child(8) {
    width: 5%;
    padding-right: 0 !important;
  }
  .table-contract-detail.table-with-dip tr th:nth-child(5),
  .table-contract-detail.table-with-dip tr td:nth-child(5) {
    width: 12.5%;
  }
  .table-contract-detail.table-with-dip tr th:nth-child(7),
  .table-contract-detail.table-with-dip tr td:nth-child(7) {
    width: 10%;
  }
  .table-contract-detail.table-with-dip tr th:nth-child(8),
  .table-contract-detail.table-with-dip tr td:nth-child(8) {
    width: 5%;
    padding-right: 1rem !important;
  }
  .table-contract-detail.table-with-dip tr th:nth-child(9),
  .table-contract-detail.table-with-dip tr td:nth-child(9) {
    width: 5%;
    padding-right: 0 !important;
  }
}

.table-dealer tr td:nth-child(1) {
  font-family: "hellix-bold";
}
@media (min-width: 1200px) {
  .table-dealer tr td:nth-child(1),
  .table-dealer tr td:nth-child(2),
  .table-dealer tr td:nth-child(3),
  .table-dealer tr td:nth-child(4) {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .table-dealer tr td:nth-child(1),
  .table-dealer tr td:nth-child(2),
  .table-dealer tr td:nth-child(3),
  .table-dealer tr td:nth-child(4) {
    font-family: "hellix-bold";
  }
  .table-dealer tr th:nth-child(1),
  .table-dealer tr td:nth-child(1) {
    width: 37.5% !important;
  }
  .table-dealer tr th:nth-child(2),
  .table-dealer tr td:nth-child(2) {
    width: 15% !important;
  }
  .table-dealer tr th:nth-child(3),
  .table-dealer tr td:nth-child(3) {
    width: 15% !important;
  }
  .table-dealer tr th:nth-child(4),
  .table-dealer tr td:nth-child(4) {
    width: 32.5% !important;
  }
}

.table-message tr th:nth-child(1),
.table-message tr td:nth-child(1) {
  min-width: 20rem;
}
.table-message tr td:nth-child(1) {
  font-family: "hellix-bold";
}
.table-message th,
.table-message td {
  width: auto;
}
@media (min-width: 992px) {
  .table-message tr th:nth-child(1),
  .table-message tr td:nth-child(1) {
    width: 50%;
  }
  .table-message tr th:nth-child(2),
  .table-message tr td:nth-child(2) {
    width: 12.5%;
  }
  .table-message tr th:nth-child(3),
  .table-message tr td:nth-child(3) {
    width: 12.5%;
  }
  .table-message tr th:nth-child(4),
  .table-message tr td:nth-child(4) {
    width: 12.5%;
  }
  .table-message tr th:nth-child(5),
  .table-message tr td:nth-child(5) {
    width: 12.5%;
  }
}

.table-contract-bank-accounts tr td:nth-child(1) {
  font-family: "hellix-bold";
}
@media (min-width: 992px) {
  .table-contract-bank-accounts tr th:nth-child(1),
  .table-contract-bank-accounts tr td:nth-child(1) {
    width: 20% !important;
  }
  .table-contract-bank-accounts tr th:nth-child(2),
  .table-contract-bank-accounts tr td:nth-child(2) {
    width: 15% !important;
  }
  .table-contract-bank-accounts tr th:nth-child(3),
  .table-contract-bank-accounts tr td:nth-child(3) {
    width: 15% !important;
  }
  .table-contract-bank-accounts tr th:nth-child(4),
  .table-contract-bank-accounts tr td:nth-child(4) {
    width: 15% !important;
  }
  .table-contract-bank-accounts tr th:nth-child(5),
  .table-contract-bank-accounts tr td:nth-child(5) {
    width: 15% !important;
  }
  .table-contract-bank-accounts tr th:nth-child(6),
  .table-contract-bank-accounts tr td:nth-child(6) {
    width: 15% !important;
  }
  .table-contract-bank-accounts tr th:nth-child(7),
  .table-contract-bank-accounts tr td:nth-child(7) {
    width: 7.5% !important;
  }
  .table-contract-bank-accounts tr th:nth-child(8),
  .table-contract-bank-accounts tr td:nth-child(8) {
    width: 7.5% !important;
  }
}

.table-contract-single-investments tr td:nth-child(1) {
  font-family: "hellix-bold";
}
@media (min-width: 992px) {
  .table-contract-single-investments tr th:nth-child(1),
  .table-contract-single-investments tr td:nth-child(1) {
    width: 32.5%;
  }
  .table-contract-single-investments tr th:nth-child(2),
  .table-contract-single-investments tr td:nth-child(2) {
    width: 12.5%;
  }
  .table-contract-single-investments tr th:nth-child(3),
  .table-contract-single-investments tr td:nth-child(3) {
    width: 7.5%;
  }
  .table-contract-single-investments tr th:nth-child(4),
  .table-contract-single-investments tr td:nth-child(4) {
    width: 12.5%;
  }
  .table-contract-single-investments tr th:nth-child(5),
  .table-contract-single-investments tr td:nth-child(5) {
    width: 12.5%;
  }
  .table-contract-single-investments tr th:nth-child(6),
  .table-contract-single-investments tr td:nth-child(6) {
    width: 5%;
  }
  .table-contract-single-investments tr th:nth-child(7),
  .table-contract-single-investments tr td:nth-child(7) {
    width: 12.5%;
  }
  .table-contract-single-investments tr th:nth-child(8),
  .table-contract-single-investments tr td:nth-child(8) {
    width: 5%;
  }
}

.table-contract-single-redemptions tr td:nth-child(1) {
  font-family: "hellix-bold";
}
@media (min-width: 992px) {
  .table-contract-single-redemptions tr th:nth-child(1),
  .table-contract-single-redemptions tr td:nth-child(1) {
    width: 36%;
  }
  .table-contract-single-redemptions tr th:nth-child(2),
  .table-contract-single-redemptions tr td:nth-child(2) {
    width: 20%;
  }
  .table-contract-single-redemptions tr th:nth-child(3),
  .table-contract-single-redemptions tr td:nth-child(3) {
    width: 20%;
  }
  .table-contract-single-redemptions tr th:nth-child(4),
  .table-contract-single-redemptions tr td:nth-child(4) {
    width: 12%;
  }
  .table-contract-single-redemptions tr th:nth-child(5),
  .table-contract-single-redemptions tr td:nth-child(5) {
    width: 12%;
  }
}

.table-contract-periodical-investments tr td:nth-child(1) {
  font-family: "hellix-bold";
}
@media (min-width: 992px) {
  .table-contract-periodical-investments tr th:nth-child(1),
  .table-contract-periodical-investments tr td:nth-child(1) {
    width: 20%;
  }
  .table-contract-periodical-investments tr th:nth-child(2),
  .table-contract-periodical-investments tr td:nth-child(2) {
    width: 7.5%;
  }
  .table-contract-periodical-investments tr th:nth-child(3),
  .table-contract-periodical-investments tr td:nth-child(3) {
    width: 5%;
  }
  .table-contract-periodical-investments tr th:nth-child(4),
  .table-contract-periodical-investments tr td:nth-child(4) {
    width: 12.5%;
  }
  .table-contract-periodical-investments tr th:nth-child(5),
  .table-contract-periodical-investments tr td:nth-child(5) {
    width: 10%;
  }
  .table-contract-periodical-investments tr th:nth-child(6),
  .table-contract-periodical-investments tr td:nth-child(6) {
    width: 5%;
  }
  .table-contract-periodical-investments tr th:nth-child(7),
  .table-contract-periodical-investments tr td:nth-child(7) {
    width: 12.5%;
  }
  .table-contract-periodical-investments tr th:nth-child(8),
  .table-contract-periodical-investments tr td:nth-child(8) {
    width: 5%;
  }
  .table-contract-periodical-investments tr th:nth-child(9),
  .table-contract-periodical-investments tr td:nth-child(9) {
    width: 12.5%;
  }
  .table-contract-periodical-investments tr th:nth-child(10),
  .table-contract-periodical-investments tr td:nth-child(10) {
    width: 5%;
  }
  .table-contract-periodical-investments tr th:nth-child(11),
  .table-contract-periodical-investments tr td:nth-child(11) {
    width: 5%;
  }
}

.table-client-single-investments tr td:nth-child(1) {
  font-family: "hellix-bold";
}
@media (min-width: 992px) {
  .table-client-single-investments tr th:nth-child(1),
  .table-client-single-investments tr td:nth-child(1) {
    width: 22.5%;
  }
  .table-client-single-investments tr th:nth-child(2),
  .table-client-single-investments tr td:nth-child(2) {
    width: 12.5%;
  }
  .table-client-single-investments tr th:nth-child(3),
  .table-client-single-investments tr td:nth-child(3) {
    width: 7.5%;
  }
  .table-client-single-investments tr th:nth-child(4),
  .table-client-single-investments tr td:nth-child(4) {
    width: 12.5%;
  }
  .table-client-single-investments tr th:nth-child(5),
  .table-client-single-investments tr td:nth-child(5) {
    width: 12.5%;
  }
  .table-client-single-investments tr th:nth-child(6),
  .table-client-single-investments tr td:nth-child(6) {
    width: 5%;
  }
  .table-client-single-investments tr th:nth-child(7),
  .table-client-single-investments tr td:nth-child(7) {
    width: 12.5%;
  }
  .table-client-single-investments tr th:nth-child(8),
  .table-client-single-investments tr td:nth-child(8) {
    width: 5%;
  }
  .table-client-single-investments tr th:nth-child(9),
  .table-client-single-investments tr td:nth-child(9) {
    width: 10%;
  }
}

.table-client-periodical-investments tr th,
.table-client-periodical-investments tr td {
  padding: 0.2rem 0.2rem !important;
}
.table-client-periodical-investments tr td:nth-child(1) {
  font-family: "hellix-bold";
}
@media (min-width: 992px) {
  .table-client-periodical-investments tr th:nth-child(1),
  .table-client-periodical-investments tr td:nth-child(1) {
    width: 17%;
  }
  .table-client-periodical-investments tr th:nth-child(2),
  .table-client-periodical-investments tr td:nth-child(2) {
    width: 7.5%;
  }
  .table-client-periodical-investments tr th:nth-child(3),
  .table-client-periodical-investments tr td:nth-child(3) {
    width: 5%;
  }
  .table-client-periodical-investments tr th:nth-child(4),
  .table-client-periodical-investments tr td:nth-child(4) {
    width: 11.5%;
  }
  .table-client-periodical-investments tr th:nth-child(5),
  .table-client-periodical-investments tr td:nth-child(5) {
    width: 10%;
  }
  .table-client-periodical-investments tr th:nth-child(6),
  .table-client-periodical-investments tr td:nth-child(6) {
    width: 5%;
  }
  .table-client-periodical-investments tr th:nth-child(7),
  .table-client-periodical-investments tr td:nth-child(7) {
    width: 11.5%;
  }
  .table-client-periodical-investments tr th:nth-child(8),
  .table-client-periodical-investments tr td:nth-child(8) {
    width: 5%;
  }
  .table-client-periodical-investments tr th:nth-child(9),
  .table-client-periodical-investments tr td:nth-child(9) {
    width: 11.5%;
  }
  .table-client-periodical-investments tr th:nth-child(10),
  .table-client-periodical-investments tr td:nth-child(10) {
    width: 3.5%;
  }
  .table-client-periodical-investments tr th:nth-child(11),
  .table-client-periodical-investments tr td:nth-child(11) {
    width: 7.5%;
  }
  .table-client-periodical-investments tr th:nth-child(12),
  .table-client-periodical-investments tr td:nth-child(12) {
    width: 5%;
  }
}

.table-client-single-redemptions tr td:nth-child(1) {
  font-family: "hellix-bold";
}
@media (min-width: 992px) {
  .table-client-single-redemptions tr th:nth-child(1),
  .table-client-single-redemptions tr td:nth-child(1) {
    width: 32%;
  }
  .table-client-single-redemptions tr th:nth-child(2),
  .table-client-single-redemptions tr td:nth-child(2) {
    width: 16%;
  }
  .table-client-single-redemptions tr th:nth-child(3),
  .table-client-single-redemptions tr td:nth-child(3) {
    width: 16%;
  }
  .table-client-single-redemptions tr th:nth-child(4),
  .table-client-single-redemptions tr td:nth-child(4) {
    width: 12%;
  }
  .table-client-single-redemptions tr th:nth-child(5),
  .table-client-single-redemptions tr td:nth-child(5) {
    width: 12%;
  }
  .table-client-single-redemptions tr th:nth-child(6),
  .table-client-single-redemptions tr td:nth-child(6) {
    width: 12%;
  }
}

.table-client-periodical-redemptions tr td:nth-child(1) {
  font-family: "hellix-bold";
}
@media (min-width: 992px) {
  .table-client-periodical-redemptions tr th:nth-child(1),
  .table-client-periodical-redemptions tr td:nth-child(1) {
    width: 26%;
  }
  .table-client-periodical-redemptions tr th:nth-child(2),
  .table-client-periodical-redemptions tr td:nth-child(2) {
    width: 12%;
  }
  .table-client-periodical-redemptions tr th:nth-child(3),
  .table-client-periodical-redemptions tr td:nth-child(3) {
    width: 12%;
  }
  .table-client-periodical-redemptions tr th:nth-child(4),
  .table-client-periodical-redemptions tr td:nth-child(4) {
    width: 12%;
  }
  .table-client-periodical-redemptions tr th:nth-child(5),
  .table-client-periodical-redemptions tr td:nth-child(5) {
    width: 10%;
  }
  .table-client-periodical-redemptions tr th:nth-child(6),
  .table-client-periodical-redemptions tr td:nth-child(6) {
    width: 8%;
  }
  .table-client-periodical-redemptions tr th:nth-child(7),
  .table-client-periodical-redemptions tr td:nth-child(7) {
    width: 8%;
  }
  .table-client-periodical-redemptions tr th:nth-child(8),
  .table-client-periodical-redemptions tr td:nth-child(8) {
    width: 12%;
  }
}

.table-contract-periodical-redemptions tr td:nth-child(1) {
  font-family: "hellix-bold";
}
@media (min-width: 992px) {
  .table-contract-periodical-redemptions tr th:nth-child(1),
  .table-contract-periodical-redemptions tr td:nth-child(1) {
    width: 30%;
  }
  .table-contract-periodical-redemptions tr th:nth-child(2),
  .table-contract-periodical-redemptions tr td:nth-child(2) {
    width: 12%;
  }
  .table-contract-periodical-redemptions tr th:nth-child(3),
  .table-contract-periodical-redemptions tr td:nth-child(3) {
    width: 12%;
  }
  .table-contract-periodical-redemptions tr th:nth-child(4),
  .table-contract-periodical-redemptions tr td:nth-child(4) {
    width: 12%;
  }
  .table-contract-periodical-redemptions tr th:nth-child(5),
  .table-contract-periodical-redemptions tr td:nth-child(5) {
    width: 10%;
  }
  .table-contract-periodical-redemptions tr th:nth-child(6),
  .table-contract-periodical-redemptions tr td:nth-child(6) {
    width: 12%;
  }
  .table-contract-periodical-redemptions tr th:nth-child(7),
  .table-contract-periodical-redemptions tr td:nth-child(7) {
    width: 12%;
  }
}

@media (min-width: 992px) {
  .table-contract-portfolio tr {
    padding-right: 0 !important;
  }
  .table-contract-portfolio tr:before {
    width: 88% !important;
  }
}
.table-contract-portfolio.table-without-request tr:before {
  width: 100% !important;
}
.table-contract-portfolio tr td:nth-child(1) {
  font-family: "hellix-bold";
}
@media (min-width: 992px) {
  .table-contract-portfolio tr th:nth-child(1),
  .table-contract-portfolio tr td:nth-child(1) {
    width: 39%;
  }
  .table-contract-portfolio tr th:nth-child(2),
  .table-contract-portfolio tr td:nth-child(2) {
    width: 10%;
  }
  .table-contract-portfolio tr th:nth-child(3),
  .table-contract-portfolio tr td:nth-child(3) {
    width: 12%;
  }
  .table-contract-portfolio tr th:nth-child(4),
  .table-contract-portfolio tr td:nth-child(4) {
    width: 12%;
  }
  .table-contract-portfolio tr th:nth-child(5),
  .table-contract-portfolio tr td:nth-child(5) {
    width: 15%;
    padding-right: 2rem !important;
  }
  .table-contract-portfolio tr th:nth-child(6),
  .table-contract-portfolio tr td:nth-child(6) {
    width: 4%;
  }
  .table-contract-portfolio tr th:nth-child(7),
  .table-contract-portfolio tr td:nth-child(7) {
    width: 4%;
  }
  .table-contract-portfolio tr th:nth-child(8),
  .table-contract-portfolio tr td:nth-child(8) {
    width: 4%;
  }
}
@media (min-width: 1920px) {
  .table-contract-portfolio tr:before {
    width: 91% !important;
  }
  .table-contract-portfolio tr th:nth-child(1),
  .table-contract-portfolio tr td:nth-child(1) {
    width: 42%;
  }
  .table-contract-portfolio tr th:nth-child(6),
  .table-contract-portfolio tr td:nth-child(6) {
    width: 3%;
  }
  .table-contract-portfolio tr th:nth-child(7),
  .table-contract-portfolio tr td:nth-child(7) {
    width: 3%;
  }
  .table-contract-portfolio tr th:nth-child(8),
  .table-contract-portfolio tr td:nth-child(8) {
    width: 3%;
  }
}
.table-contract-portfolio .table-btn {
  min-height: 0;
  min-width: 0;
  text-align: center;
  padding: 0;
  line-height: 1.3;
  padding: 1rem;
}

.table-contract-portfolio .b-table tbody tr td {
  position: relative;
}
.table-contract-portfolio .label-stacked {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 30%;
  text-align: right;
  font-weight: 600;
}
@media (min-width: 992px) {
  .table-contract-portfolio .label-stacked {
    display: none;
  }
}

.table-contract-statements tr td:nth-child(2) {
  font-family: "hellix-bold";
}
@media (min-width: 992px) {
  .table-contract-statements tr th:nth-child(1),
  .table-contract-statements tr td:nth-child(1) {
    width: 15%;
  }
  .table-contract-statements tr th:nth-child(2),
  .table-contract-statements tr td:nth-child(2) {
    width: 60%;
  }
  .table-contract-statements tr th:nth-child(3),
  .table-contract-statements tr td:nth-child(3) {
    width: 25%;
  }
}

.table-contract-cash-flow tr td:nth-child(2) {
  font-family: "hellix-bold";
}
@media (min-width: 992px) {
  .table-contract-cash-flow tr th:nth-child(1),
  .table-contract-cash-flow tr td:nth-child(1) {
    width: 20%;
  }
  .table-contract-cash-flow tr th:nth-child(2),
  .table-contract-cash-flow tr td:nth-child(2) {
    width: 50%;
  }
  .table-contract-cash-flow tr th:nth-child(3),
  .table-contract-cash-flow tr td:nth-child(3) {
    width: 10%;
  }
  .table-contract-cash-flow tr th:nth-child(4),
  .table-contract-cash-flow tr td:nth-child(4) {
    width: 0%;
  }
  .table-contract-cash-flow tr th:nth-child(5),
  .table-contract-cash-flow tr td:nth-child(5) {
    width: 20%;
  }
}

@media (min-width: 992px) {
  .table-contract-transactions tr th:nth-child(1),
  .table-contract-transactions tr td:nth-child(1) {
    width: 20%;
  }
  .table-contract-transactions tr th:nth-child(2),
  .table-contract-transactions tr td:nth-child(2) {
    width: 10%;
  }
  .table-contract-transactions tr th:nth-child(3),
  .table-contract-transactions tr td:nth-child(3) {
    width: 10%;
  }
  .table-contract-transactions tr th:nth-child(4),
  .table-contract-transactions tr td:nth-child(4) {
    width: 8%;
  }
  .table-contract-transactions tr th:nth-child(5),
  .table-contract-transactions tr td:nth-child(5) {
    width: 10%;
  }
  .table-contract-transactions tr th:nth-child(6),
  .table-contract-transactions tr td:nth-child(6) {
    width: 12%;
  }
  .table-contract-transactions tr th:nth-child(7),
  .table-contract-transactions tr td:nth-child(7) {
    width: 10%;
  }
  .table-contract-transactions tr th:nth-child(8),
  .table-contract-transactions tr td:nth-child(8) {
    width: 0;
  }
  .table-contract-transactions tr th:nth-child(9),
  .table-contract-transactions tr td:nth-child(9) {
    width: 10%;
  }
  .table-contract-transactions tr th:nth-child(10),
  .table-contract-transactions tr td:nth-child(10) {
    width: 10%;
  }
}

@media (min-width: 992px) {
  .table-documents tr th:nth-child(1),
  .table-documents tr td:nth-child(1) {
    width: 27.5%;
  }
  .table-documents tr th:nth-child(2),
  .table-documents tr td:nth-child(2) {
    width: 27.5%;
  }
  .table-documents tr th:nth-child(3),
  .table-documents tr td:nth-child(3) {
    width: 15%;
  }
  .table-documents tr th:nth-child(4),
  .table-documents tr td:nth-child(4) {
    width: 15%;
  }
  .table-documents.table-without-4th-cell tr th:nth-child(4),
  .table-documents.table-without-4th-cell tr td:nth-child(4) {
    width: 30%;
  }
  .table-documents tr th:nth-child(5),
  .table-documents tr td:nth-child(5) {
    width: 15%;
  }
}

@media (min-width: 992px) {
  .table-search-contracts tr th:nth-child(1),
  .table-search-contracts tr td:nth-child(1) {
    width: 20%;
  }
  .table-search-contracts tr th:nth-child(2),
  .table-search-contracts tr td:nth-child(2) {
    width: 30%;
  }
  .table-search-contracts tr th:nth-child(3),
  .table-search-contracts tr td:nth-child(3) {
    width: 25%;
  }
  .table-search-contracts tr th:nth-child(4),
  .table-search-contracts tr td:nth-child(4) {
    width: 15%;
  }
  .table-search-contracts tr th:nth-child(5),
  .table-search-contracts tr td:nth-child(5) {
    width: 10%;
  }
}

@media (min-width: 992px) {
  .table-search-clients tr th:nth-child(1),
  .table-search-clients tr td:nth-child(1) {
    width: 55%;
  }
  .table-search-clients tr th:nth-child(2),
  .table-search-clients tr td:nth-child(2) {
    width: 15%;
  }
  .table-search-clients tr th:nth-child(3),
  .table-search-clients tr td:nth-child(3) {
    width: 15%;
  }
  .table-search-clients tr th:nth-child(4),
  .table-search-clients tr td:nth-child(4) {
    width: 15%;
  }
}

.table-striped tbody tr {
  background-color: #e5e5e5 !important;
}

.table-hover tbody tr:hover {
  cursor: pointer;
  background-color: transparent;
}
.table-hover tbody tr:hover:before {
  background-color: #c6c6c6;
}

.page-item .page-link:hover {
  background-color: #e5e5e5;
}

.page-item.active .page-link {
  background-color: transparent;
  border-color: transparent;
  font-family: "hellix-bold";
}

/*
table * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}*/
.table-align-middle td {
  vertical-align: middle;
}

.table-small td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  font-weight: 400;
}

.table-px-0 td {
  padding-left: 0;
  padding-right: 0;
}

.table-td-bordered td {
  border-bottom: 1px solid #f0f0f0;
}

.table-td-bordered tr:last-child td {
  border-bottom: 0;
}

table.dataTable > thead > tr > th:not(.sorting_disabled),
table.dataTable > thead > tr > td:not(.sorting_disabled) {
  padding-right: 1.3rem;
}

.b-table th {
  background-position: right bottom 1.4rem;
}

.b-table th:not([aria-sort=none])[aria-sort] {
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .b-table-stacked-lg td {
    font-weight: 400;
  }
  .b-table-stacked-lg th,
  .b-table-stacked-lg td {
    padding: 0.3rem 1.3rem;
  }
  .b-table-stacked-lg th:first-child,
  .b-table-stacked-lg td:first-child {
    padding-top: 1rem;
  }
  .b-table-stacked-lg th:last-child,
  .b-table-stacked-lg td:last-child {
    padding-bottom: 1.5rem;
  }
  .table.b-table.b-table-stacked-lg > tbody > tr > [data-label]::before {
    width: 30%;
    float: none;
    display: inline-block;
    vertical-align: top;
  }
}
.table.b-table > thead > tr > th,
.table.b-table > tfoot > tr > td {
  background-image: none !important;
}

.paginate_button.disabled,
.pagination .disabled {
  opacity: 0.25;
  cursor: pointer;
}

.table-dealer tr td:nth-child(1).dataTables_empty,
.table-client tr td:nth-child(1).dataTables_empty,
.table-contract-bank-accounts tr.b-table-empty-row td {
  width: 100% !important;
}

.table-client tr.b-table-busy-slot td,
.table-client tr.b-table-empty-row td,
.table-client-periodical-investments tr.b-table-busy-slot td,
.table-client-periodical-investments tr.b-table-empty-row td,
.table-client-periodical-redemptions tr.b-table-busy-slot td,
.table-client-periodical-redemptions tr.b-table-empty-row td,
.table-client-single-investments tr.b-table-busy-slot td,
.table-client-single-investments tr.b-table-empty-row td,
.table-client-single-redemptions tr.b-table-busy-slot td,
.table-client-single-redemptions tr.b-table-empty-row td,
.table-contract-bank-accounts tr.b-table-busy-slot td,
.table-contract-bank-accounts tr.b-table-empty-row td,
.table-contract-cash-flow tr.b-table-busy-slot td,
.table-contract-cash-flow tr.b-table-empty-row td,
.table-contract-detail tr.b-table-busy-slot td,
.table-contract-detail tr.b-table-empty-row td,
.table-contract-periodical-investments tr.b-table-busy-slot td,
.table-contract-periodical-investments tr.b-table-empty-row td,
.table-contract-products tr.b-table-busy-slot td,
.table-contract-products tr.b-table-empty-row td,
.table-contract-single-investments tr.b-table-busy-slot td,
.table-contract-single-investments tr.b-table-empty-row td,
.table-contract-statements tr.b-table-busy-slot td,
.table-contract-statements tr.b-table-empty-row td,
.table-contract-transactions tr.b-table-busy-slot td,
.table-contract-transactions tr.b-table-empty-row td,
.table-dealer tr.b-table-busy-slot td,
.table-dealer tr.b-table-empty-row td,
.table-documents tr.b-table-busy-slot td,
.table-documents tr.b-table-empty-row td,
.table-search-clients tr.b-table-busy-slot td,
.table-search-clients tr.b-table-empty-row td,
.table-search-contracts tr.b-table-busy-slot td,
.table-search-contracts tr.b-table-empty-row td {
  width: 100% !important;
}

.b-table-empty-row,
.b-table-busy-slot {
  display: flex !important;
}

.table-bordered-cross-box,
.table-bordered-cross {
  border-radius: 1rem;
  overflow: hidden;
}

.table-bordered-cross td {
  border: 0;
  padding: 1.1rem 1.6rem;
  font-family: "hellix-regular";
  font-weight: 400;
}
.table-bordered-cross td + td {
  border-left: 1px solid #fff;
}
.table-bordered-cross tr + tr td {
  border-top: 1px solid #b2b2b2;
}

.swal2-popup {
  border-radius: 1rem;
}

.modal button.close {
  z-index: 999;
}

html {
  font-size: 62.5% !important;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  background-color: #fff;
}
@media (min-width: 1200px) {
  body {
    padding-left: 25rem;
  }
}

.lh-23 {
  line-height: 2.3rem;
}

.lh-28 {
  line-height: 2.8rem;
}

.lh-30 {
  line-height: 3rem;
}

img {
  max-width: 100%;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.no-selection {
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.navigation {
  min-height: 150vh;
  width: 25rem;
}

.label-switcher {
  padding: 0.95rem 0;
  font-size: 1.4rem;
}

.label-switcher .btn {
  padding: 0.55rem 1.3rem;
  border-radius: 1rem;
  border: #adb5bd dashed 1px;
  font-weight: 400;
}

.label-switcher .btn.active {
  border: var(--primary) solid 1px;
}

.label-switcher .btn + .btn {
  margin-left: 1rem;
}

.label-switcher .btn:focus,
.label-switcher .btn:active,
.label-switcher .btn:hover {
  background-color: var(--primary) !important;
}

.navigation {
  padding: 3rem 1.8rem 3rem 3rem;
}

.card-header {
  font-size: 1.6rem;
  font-family: "hellix-bold";
  background-color: transparent;
  border-bottom: 0;
}

.border-bottom-radius-0 {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/*Alerts*/
.alert {
  color: black;
}

/*Typography*/
.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

a {
  text-decoration: none !important;
}

.card-hover:hover {
  cursor: pointer;
  background-color: #f2f2f2 !important;
}

.lh-unit-20 {
  line-height: 2rem;
}

/*Hlavní navigace*/
.main-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 25.5rem;
  min-height: 100%;
  height: 100%;
  background-color: #f4f6f9;
  border-right: 0;
  box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.1);
  z-index: 9;
}
.main-sidebar.active {
  left: 0;
  transition: 0.3s left;
  z-index: 600;
}
@media (min-width: 1200px) {
  .main-sidebar {
    left: 0;
  }
}
.main-sidebar .sidebar {
  padding-left: 3rem;
  padding-right: 3.2rem;
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-y: scroll;
}
.main-sidebar .sidebar::-webkit-scrollbar {
  display: none !important; /* for Chrome, Safari, and Opera */
}

.cookies-box {
  color: #6c757d;
  font-size: 1rem;
}
.cookies-box span {
  color: #6c757d;
  text-decoration: none;
  cursor: pointer;
}
.cookies-box span:hover {
  text-decoration: underline;
}
.cookies-box span:hover, .cookies-box span:active {
  color: #6c757d;
}

.emergency-box {
  color: #6c757d;
  font-size: 1rem;
}
.emergency-box a, .emergency-box a:hover, .emergency-box a:focus {
  color: #6c757d;
}

.tpl-auth-blade .cookies-box {
  position: absolute;
  bottom: 3.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.version-box {
  color: #6c757d;
  font-size: 1rem;
}
.version-box .version-box--mark {
  color: #6c757d;
  text-decoration: none;
}
.version-box .version-box--mark:hover {
  text-decoration: underline;
}
.version-box .version-box--mark:hover, .version-box .version-box--mark:active {
  color: #6c757d;
}

/*
.badge {
  background-color: #f4f4f5;
}*/
/*
.card-header {
  border-radius: 1rem !important;
  border-bottom: 1px solid #dcdcdc;

  &:not(.collapsed) {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}
*/
/*malá navigace nahoře*/
.second-navigation {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}

.second-navigation a {
  color: black;
}

.second-navigation.checked {
  padding: 0.9rem 1.6rem;
  border-radius: 5rem;
  font-weight: 500;
}

.second-navigation.active {
  background-color: white;
  padding: 0.9rem 1.6rem;
  border-radius: 5rem;
  font-weight: 700;
}

.second-navigation.upcomming {
  padding: 0.9rem 1.6rem;
  border-radius: 5rem;
  font-weight: 500;
  color: rgba(24, 24, 27, 0.5);
}

.checked-navigation {
  color: rgba(24, 24, 27, 0.5);
}

input[type=radio] + label {
  font-weight: 500;
}

input[type=radio]:checked + label {
  color: black;
}

/*RANGE SLIDER*/
.irs-single {
  background-color: #000 !important;
  color: #fff !important;
  padding: 0.7rem 0.8rem !important;
  border-radius: 5rem !important;
  font-weight: 700 !important;
}

.irs-from,
.irs-to,
.irs-single {
  position: absolute;
  top: -20px !important;
}

.irs--flat .irs-bar {
  background-color: #000 !important;
}

.irs-single::before {
  display: none !important;
}

.irs-handle.single {
  background-color: #000 !important;
  width: 25px !important;
  height: 25px !important;
  border-radius: 50px !important;
  top: 18px !important;
}

.irs-min {
  display: none !important;
}

.irs-max {
  display: none !important;
}

.irs--flat .irs-handle > i:first-child {
  position: absolute !important;
  display: block !important;
  height: 15px !important;
  width: 14px !important;
  border-radius: 50% !important;
  height: 14px !important;
  background-color: white !important;
  transform: translate(-50%, -50%) !important;
  left: calc(50% + 1px) !important;
  top: 50% !important;
}

.vue-range-slider-improve {
  padding: 0.5rem 1rem 0;
}
.vue-range-slider-improve .vue-slider-dot-tooltip-bottom {
  bottom: -3px !important;
}
.vue-range-slider-improve .vue-slider-dot-tooltip-inner {
  padding: 0 !important;
  background-color: transparent !important;
  font-size: 1.6rem !important;
  color: #000 !important;
  font-family: "hellix-bold";
}
.vue-range-slider-improve .vue-slider-dot-tooltip-inner:after {
  display: none;
}

.rotate {
  transform: rotate(180deg);
}

.nav-icon {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
}
.menu-overlay.active {
  z-index: 1;
  opacity: 1;
  transition: 0.3s opacity;
  z-index: 504;
}

.menu-close {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  cursor: pointer;
}

.custom-select {
  background-position: center right 2rem;
}

select, option {
  font: -moz-pull-down-menu;
}

.nav-link.active {
  font-weight: 700 !important;
}

.login-box {
  max-width: 40rem;
  margin: auto;
}
.login-box .login-form-valid {
  color: green;
}
.login-box .login-form-invalid {
  color: red;
}

.login-form-icon {
  width: 3.5rem;
  display: flex;
  justify-content: center;
}

.card-design-clients {
  height: 154px;
  width: 100%;
  background-repeat: no-repeat !important;
  background-position: right !important;
}

.dataTables_filter {
  display: none;
}

.irs--improve .irs--flat .irs-from,
.irs--improve .irs--flat .irs-to,
.irs--improve .irs--flat .irs-single {
  top: 0px !important;
  background-color: transparent;
  padding: 0 0.8rem;
  line-height: 1;
  border-radius: 5rem;
  font-size: 1.6rem;
  color: #000;
  font-family: "hellix-bold";
}
.irs--improve .irs-handle.from,
.irs--improve .irs-handle.to {
  background-color: #000;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: -29px;
  cursor: pointer;
}
.irs--improve .irs--flat .irs-bar,
.irs--improve .irs--flat .irs-line {
  top: -20px;
  height: 4px;
}
.irs--improve .irs--flat .irs-line {
  background-color: #fff;
}
.irs--improve .irs--flat .irs-from:before, .irs--improve .irs--flat .irs-to:before, .irs--improve .irs--flat .irs-single:before {
  display: none;
}
.irs--improve .irs--flat {
  height: 0;
}
.irs--improve .irs-handle.single {
  top: 14px !important;
}

.irs--improve-single .irs--flat .irs-from,
.irs--improve-single .irs--flat .irs-to,
.irs--improve-single .irs--flat .irs-single {
  background-color: #000;
  padding: 0.8rem 0.8rem 0.7rem;
  line-height: 1;
  border-radius: 5rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}
.irs--improve-single .irs-handle.from,
.irs--improve-single .irs-handle.to {
  background-color: #000;
  width: 25px;
  height: 25px;
  border-radius: 5rem;
  cursor: pointer;
}
.irs--improve-single .irs--flat .irs-bar,
.irs--improve-single .irs--flat .irs-line {
  height: 4px;
}
.irs--improve-single .irs--flat .irs-line {
  background-color: #fff;
}
.irs--improve-single .irs--flat .irs-from:before, .irs--improve-single .irs--flat .irs-to:before, .irs--improve-single .irs--flat .irs-single:before {
  display: none;
}
.irs--improve-single .irs-from,
.irs--improve-single .irs-to,
.irs--improve-single .irs-single {
  position: absolute;
  top: -14px !important;
}

.custom-control-label {
  cursor: pointer;
}

.collapse-arrow-down,
.collapse-arrow-up {
  display: none;
}

[aria-expanded=false] .collapse-arrow-down {
  display: block;
}

[aria-expanded=true] .collapse-arrow-up {
  display: block;
}

.collapse-arrow-improve-valign[aria-expanded=false] .collapse-arrow-down,
.collapse-arrow-improve-valign[aria-expanded=true] .collapse-arrow-up {
  display: flex;
  align-items: center;
}

.chart-legend-item {
  position: relative;
  padding-left: 1.6rem;
  cursor: pointer;
}

.chart-legend-color {
  position: absolute;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  margin-top: 0.3rem;
  border-radius: 50%;
  display: inline-block;
}

.chart-legend-text {
  margin-left: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  vertical-align: top;
  display: inline-block;
}

.chart-legend-box-inline .chart-legend-item {
  display: inline-block;
}

.chart-legend-box-inline .chart-legend-item + .chart-legend-item {
  margin-left: 2rem;
}

.progress-contracts:nth-of-type(odd) {
  background-color: #f4f4f4;
}

.ribbon-wrapper {
  height: 106px;
  overflow: hidden;
  position: absolute;
  right: -19px;
  top: -22px;
  width: 113px;
  z-index: 10;
}

.ribbon-wrapper.ribbon-lg {
  height: 120px;
  width: 120px;
}

.ribbon-wrapper.ribbon-lg .ribbon {
  right: 0;
  top: 26px;
  width: 160px;
}

.ribbon-wrapper.ribbon-xl {
  height: 180px;
  width: 180px;
}

.ribbon-wrapper.ribbon-xl .ribbon {
  right: 4px;
  top: 47px;
  width: 240px;
}

.ribbon-wrapper .ribbon {
  font-size: 0.8rem;
  line-height: 100%;
  padding: 0.6rem 0;
  position: relative;
  right: -2px;
  text-align: center;
  text-transform: uppercase;
  top: 10px;
  transform: rotate(45deg);
  width: 121px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.ribbon-wrapper .ribbon::before,
.ribbon-wrapper .ribbon::after {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid rgba(39, 161, 84, 0.9215686275);
  bottom: -3px;
  content: "";
  position: absolute;
  display: none;
}

.ribbon-wrapper .ribbon::before {
  left: 0;
}

.ribbon-wrapper .ribbon::after {
  right: 0;
}

.ribbon-dot {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  z-index: 1;
}

.css-item-counter-box {
  counter-reset: cart-item-counter;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  overflow: hidden;
}
.css-item-counter-box .css-item-counter {
  min-width: 3rem;
  text-align: right;
}
.css-item-counter-box .css-item-counter::before {
  counter-increment: cart-item-counter;
  content: counter(cart-item-counter);
}

.css-card-counter-item:first-child .btn-counter-up,
.css-card-counter-item:last-child .btn-counter-down {
  visibility: hidden;
  z-index: -9;
}

.css-card-counter-item {
  border-top: 1px solid transparent;
}

.css-card-counter-item + .css-card-counter-item {
  border-top: 1px solid var(--light);
}

.ui-state-highlight {
  min-height: 8rem;
  background-color: var(--dark);
  opacity: 0.3;
}

.card,
.card-fonds,
.btn-shadow,
.alert-shadow,
.box-shadow {
  box-shadow: none;
}

.card-box-shadow--animate {
  transition: 0.3s box-shadow;
}
.card-box-shadow--animate:hover {
  box-shadow: none;
}

.col-px-small {
  padding-left: 1rem;
  padding-right: 1rem;
}

.row-small {
  margin-left: -1rem;
  margin-right: -1rem;
}

.spinner-custom-input {
  position: absolute;
  right: 1rem;
  margin-top: 2px;
}

.close {
  opacity: 1;
  text-shadow: none;
}

.toast-header,
.toast-body {
  padding: 1rem 2rem;
}

.b-toaster.b-toaster-bottom-center, .b-toaster.b-toaster-bottom-full, .b-toaster.b-toaster-bottom-left, .b-toaster.b-toaster-bottom-right, .b-toaster.b-toaster-top-center, .b-toaster.b-toaster-top-full, .b-toaster.b-toaster-top-left, .b-toaster.b-toaster-top-right {
  top: 1.5rem;
  right: 1.5rem;
}

.vue-slider-process {
  background-color: var(--black) !important;
}

.vue-slider-rail {
  background-color: #fff !important;
}

.vue-slider-dot-handle {
  border: 4px solid var(--black);
  box-shadow: none !important;
}

.vue-slider-dot-tooltip-inner {
  padding: 0.5rem 0.8rem !important;
  font-size: 1.1rem !important;
  font-weight: 700;
  color: #fff !important;
  border-color: var(--black) !important;
  border-radius: 4rem !important;
  background-color: var(--black) !important;
}

.vue-slider-dot-tooltip-inner-top::after {
  display: none;
}

.vue-slider-dot-tooltip-top {
  top: -4px !important;
}

.ls--1 {
  letter-spacing: -1px;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bg-black-005 {
  background-color: rgba(0, 0, 0, 0.05);
}

.bg-black-010 {
  background-color: rgba(0, 0, 0, 0.1);
}

.bg-black-015 {
  background-color: rgba(0, 0, 0, 0.15);
}

.bg-black-020 {
  background-color: rgba(0, 0, 0, 0.2);
}

.bg-black-025 {
  background-color: rgba(0, 0, 0, 0.25);
}

.bg-black-030 {
  background-color: rgba(0, 0, 0, 0.3);
}

.bg-black-035 {
  background-color: rgba(0, 0, 0, 0.35);
}

.bg-black-040 {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-black-045 {
  background-color: rgba(0, 0, 0, 0.45);
}

.bg-black-050 {
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-black-055 {
  background-color: rgba(0, 0, 0, 0.55);
}

.bg-black-060 {
  background-color: rgba(0, 0, 0, 0.6);
}

.bg-black-065 {
  background-color: rgba(0, 0, 0, 0.65);
}

.bg-black-070 {
  background-color: rgba(0, 0, 0, 0.7);
}

.bg-black-075 {
  background-color: rgba(0, 0, 0, 0.75);
}

.bg-black-080 {
  background-color: rgba(0, 0, 0, 0.8);
}

.bg-black-085 {
  background-color: rgba(0, 0, 0, 0.85);
}

.bg-black-090 {
  background-color: rgba(0, 0, 0, 0.9);
}

.bg-black-095 {
  background-color: rgba(0, 0, 0, 0.95);
}

::-moz-selection {
  color: #000;
  background: #fce204;
}

::selection {
  color: #000;
  background: #fce204;
}

.tooltip-inner {
  max-width: 20rem;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

input[disabled=disabled] {
  cursor: not-allowed;
}

.page-link {
  padding: 0.5rem 0.75rem;
  font-size: 1.6rem;
  background-color: transparent;
  border: 0;
}
@media (min-width: 768px) {
  .page-link {
    padding: 0.75rem 1.25rem;
    font-size: 2.4rem;
  }
}

.b-pagination .page-link {
  padding: 0.5rem 1.25rem;
}

.modal-close-position--top-right {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.hide-sorting .sort-icon {
  display: none !important;
}

.card-header-improve-01 {
  background: #f0f0f0 !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.card-improve-01 {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 0;
}

.btn-icon-improve-height {
  padding-top: 1.15rem !important;
  padding-bottom: 1.15rem !important;
}

.no-shadow {
  box-shadow: none !important;
}

.hover-underline:hover {
  text-decoration: underline !important;
}

.color-c0c0c0 {
  color: #c0c0c0 !important;
}

.border-01,
.border-shadow-01 {
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.border-radius-0 {
  border-radius: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: "Inter";
}

.ff-inter {
  font-family: "Inter";
}

.ff-hellix-regular {
  font-family: "hellix-regular";
}

.ff-hellix-semibold {
  font-family: "hellix-semibold";
}

.ff-hellix-medium {
  font-family: "hellix-medium";
}

.ff-hellix-bold {
  font-family: "hellix-bold";
}

.btn {
  letter-spacing: 0.7px;
  font-family: "hellix-semibold";
}

.fw-400 {
  font-family: "hellix-regular";
}

.fw-500 {
  font-family: "hellix-medium";
}

.fw-600 {
  font-family: "hellix-semibold";
}

.fw-700,
strong,
.font-weight-bold {
  font-family: "hellix-bold";
}

.card .card-header + div {
  border-top: 1px solid #fff;
}

.box-shadow-force {
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.2) !important;
}

.btn-table-reset {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}

.card-pattern-square {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
}

.pattern-square-big {
  background-repeat: no-repeat;
  background-position: bottom right;
  background-image: url("/img/pattern_square_gray.png");
}

.fill-primary {
  fill: #fde200;
}

.fill-color04 {
  fill: #0aa5df;
}

.fill-color05 {
  fill: #C173FE;
}

.fill-color09 {
  fill: #2DC9A3;
}

.fill-color13 {
  fill: #FF2B78;
}

.lh-zero {
  line-height: 0.75;
}

.lh-normal {
  line-height: 1;
}

.table-show-records {
  white-space: nowrap;
  color: #5f5f5f;
}
.table-show-records span + span {
  margin-left: 0.4rem;
}

.btn.disabled {
  cursor: not-allowed;
}

.form-control[type=file] {
  padding-top: 4px;
  padding-left: 4px;
}

.spinner-small-width {
  width: 1.2rem;
}

.lh-1 {
  line-height: 1;
}

:root {
  --animate-duration: 0.5s;
}

.popover-iban {
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: 300;
  font-family: "hellix-regular";
  letter-spacing: 1px;
}

.rounded-indicator {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}

.status-no {
  color: #df5a4c;
}
.status-no .rounded-indicator {
  background-color: #df5a4c;
}

.status-yes,
.status-active {
  color: #45c61e;
}
.status-yes .rounded-indicator,
.status-active .rounded-indicator {
  background-color: #45c61e;
}

.status-inactive {
  color: #999999;
}
.status-inactive .rounded-indicator {
  background-color: #999999;
}

.status-incomplete {
  color: #FABE4B;
}
.status-incomplete .rounded-indicator {
  background-color: #FABE4B;
}

.static-counter .static-hidden {
  visibility: hidden;
}

.wysiwyg-editor a {
  color: #000;
  text-decoration: underline !important;
}
.wysiwyg-editor a:hover, .wysiwyg-editor a:focus {
  text-decoration: none !important;
}

.auth-show-password:not(.active),
.auth-hide-password:not(.active) {
  display: none;
}

.message-image {
  max-height: 60rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.span-error-item {
  position: relative;
  text-transform: lowercase;
  font-family: "hellix-bold";
}
.span-error-item + .span-error-item {
  padding-left: 0.75rem;
  margin-left: -4px;
}
.span-error-item + .span-error-item:before {
  content: ",";
  position: absolute;
  left: 0;
}

.button-row-gap-5 button {
  margin-top: 0.75rem;
  margin-right: 0.5rem;
}

/* Chrome, Safari, Edge, Opera */
.spin-button--is-hidden::-webkit-outer-spin-button,
.spin-button--is-hidden::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.spin-button--is-hidden[type=number] {
  -moz-appearance: textfield;
}

.dip-box {
  border-radius: 3rem;
  border-bottom: 3px solid #000;
  background: linear-gradient(180deg, #FFF -20.26%, #F8F8F8 100%);
  position: relative;
  row-gap: 0.5rem;
}
@media (max-width: 767.98px) {
  .dip-box .dip-box-logo img {
    max-width: 20rem;
  }
}
@media (min-width: 768px) {
  .dip-box .dip-box-logo img {
    max-width: 18rem;
  }
}
@media (min-width: 1200px) {
  .dip-box .dip-box-logo img {
    max-width: 24rem;
  }
}
@media (max-width: 767.98px) {
  .dip-box .dip-box-logo,
  .dip-box .dip-box-btn-info,
  .dip-box .dip-box-btn-toggle {
    flex: 1 0 100%;
  }
}
.dip-box .toggle-switch {
  border: 2px solid black;
  background: black;
  font-size: 1.2rem;
  border-radius: 500px;
  color: #fff;
  min-height: 3.7rem;
  cursor: pointer;
  display: inline-block;
  width: 25rem;
  height: 4rem;
  overflow: hidden;
  position: relative;
  margin: 0;
}
.dip-box .toggle-switch.active::before {
  color: white;
  content: "Vypnout režim DIP";
}
.dip-box .toggle-switch.active::after {
  color: black;
  content: "Zapnut režim DIP";
}
.dip-box .toggle-switch:before, .dip-box .toggle-switch:after {
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.dip-box .toggle-switch:before {
  content: "Vypnut režim DIP";
  left: 1.5rem;
  color: black;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  font-weight: bold;
}
.dip-box .toggle-switch:after {
  content: "Zapnout režim DIP";
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  font-weight: bold;
}
.dip-box .toggle-switch input {
  display: none;
}
.dip-box .toggle-switch input:checked + .toggle:before {
  background: black;
}
.dip-box .toggle-switch input:checked + .toggle:after {
  left: 0;
}
.dip-box .toggle-switch .toggle:before, .dip-box .toggle-switch .toggle:after {
  transition: all 0.3s;
  border-radius: 600px;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
}
.dip-box .toggle-switch .toggle:before {
  right: 0;
  left: 0;
}
.dip-box .toggle-switch .toggle:after {
  background: var(--primary);
  width: 50%;
  margin: 1px;
  left: calc(50% - 2px);
  z-index: 3;
}

.maxh-btn {
  max-height: 3.7rem;
}
@media (min-width: 768px) {
  .maxh-btn {
    max-height: 4rem;
  }
}

.minh-btn {
  min-height: 3.7rem;
}
@media (min-width: 768px) {
  .minh-btn {
    min-height: 4rem;
  }
}

@media (min-width: 1200px) {
  #modal-dip .modal-dialog {
    min-width: 1137px;
  }
}
@media (min-width: 768px) {
  #modal-dip .modal-dip-logo {
    max-width: 27rem;
  }
}
@media (max-width: 991.98px) {
  #modal-dip .modal-dip-logo {
    width: 100%;
    max-width: 25rem;
  }
}
#modal-dip .modal-content {
  padding: 4rem 5rem 5rem 5rem;
}
#modal-dip .modal-header {
  border-bottom: 0;
  align-items: start;
  padding: 0;
}
#modal-dip .modal-header .modal-info {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
#modal-dip .modal-header .modal-info,
#modal-dip .modal-header .modal-exit {
  min-width: 9rem;
}
#modal-dip .modal-body {
  padding: 0;
}
#modal-dip .modal-footer {
  display: none;
}

#modal-dip___BV_modal_outer_ .modal-backdrop {
  opacity: 0.8;
}

.label-wrapper {
  width: 85px;
  height: 88px;
  overflow: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
}
.label-wrapper.card-label {
  top: auto;
  bottom: 0;
}
.label-wrapper.card-label .label-black {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  left: -39px;
  bottom: -61px;
  padding: 3px 0;
  top: auto;
  display: flex;
  justify-content: center;
}

.label-black {
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #fff;
  text-align: center;
  text-shadow: rgba(255, 255, 255, 0.5) 0px 1px 0px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  position: relative;
  padding: 1px 0;
  left: -30px;
  top: 17px;
  width: 120px;
  background-color: black;
  color: #fff;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}

.label-black:after,
.label-black:after {
  content: "";
  border-top: 3px solid black;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  position: absolute;
  bottom: -3px;
}

.label-black:before {
  right: 0;
}

.label-black:after {
  left: 0;
}

.rg-25 {
  row-gap: 2.5rem;
}

.switch {
  --inactive-bg: #b6b6b6;
  --active-bg: #6CC75E;
  --size: 2rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 3px solid #b6b6b6;
  width: calc(var(--size) * 2.2);
  height: var(--size);
  display: inline-block;
  border-radius: calc(var(--size) / 2);
  cursor: pointer;
  background-color: var(--inactive-bg);
  background-image: radial-gradient(circle calc(var(--size) / 2.1), #EDEDED 100%, rgba(0, 0, 0, 0) 0), radial-gradient(circle calc(var(--size) / 1.5), rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background-repeat: no-repeat;
  background-position: calc(var(--size) / -2) 0;
  transition: background 0.2s ease-out;
}

.switch:checked {
  outline: 3px solid #6CC75E;
  background-color: var(--active-bg);
  background-position: calc(var(--size) / 2) 0;
}

.list-number {
  margin: 0;
  padding-left: 15px;
  list-style: auto;
}

.list-alpha {
  margin: 0;
  padding-left: 15px;
  list-style: lower-alpha;
}

.list-custom {
  list-style: "—";
  margin: 0;
  padding-left: 15px;
}
.list-custom li {
  padding-left: 5px;
}

.custom-control-label-text span:first-child {
  font-family: "hellix-semibold";
}

.custom-control-label-text span + span {
  display: inline-block;
  padding-left: 5px;
}

/* For Webkit-based browsers (Chrome, Safari and Opera) */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* For IE, Edge and Firefox */
.scrollbar-hide {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
