@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800&display=swap);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@charset "UTF-8";
/*!
 * Bootstrap Reboot v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
*,
*::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: roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #161625;
  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;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none; }

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

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
  font-weight: 700; }

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

blockquote {
  margin: 0 0 1rem; }

b,
strong {
  font-weight: bolder; }

small {
  font-size: 80%; }

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

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

a {
  color: #f87200;
  text-decoration: none;
  background-color: transparent; }
  a:hover {
    color: #ac4f00;
    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: 0.75rem;
  padding-bottom: 0.75rem;
  color: #999;
  text-align: left;
  caption-side: bottom; }

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

/*!
 * Bootstrap Grid v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar; }

*,
*::before,
*::after {
  box-sizing: inherit; }

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px; } }

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px; } }

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px; } }

@media (min-width: 1230px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1200px; } }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

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

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px; }

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%; }

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%; }

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%; }

.row-cols-3 > * {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.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.66667%;
  max-width: 16.66667%; }

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%; }

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%; }

.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.col-3 {
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%; }

.col-6 {
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%; }

.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.col-9 {
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%; }

.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.33333%; }

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

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

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

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

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

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

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

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

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

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

@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.33333%;
    max-width: 33.33333%; }
  .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.66667%;
    max-width: 16.66667%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .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.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@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.33333%;
    max-width: 33.33333%; }
  .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.66667%;
    max-width: 16.66667%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .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.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@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.33333%;
    max-width: 33.33333%; }
  .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.66667%;
    max-width: 16.66667%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .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.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1230px) {
  .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.33333%;
    max-width: 33.33333%; }
  .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.66667%;
    max-width: 16.66667%; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .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.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

.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: 1230px) {
  .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 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; } }

.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: 1230px) {
  .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; } }

.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.25rem !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-10p {
  margin: 10% !important; }

.mt-10p,
.my-10p {
  margin-top: 10% !important; }

.mr-10p,
.mx-10p {
  margin-right: 10% !important; }

.mb-10p,
.my-10p {
  margin-bottom: 10% !important; }

.ml-10p,
.mx-10p {
  margin-left: 10% !important; }

.m-15p {
  margin: 15% !important; }

.mt-15p,
.my-15p {
  margin-top: 15% !important; }

.mr-15p,
.mx-15p {
  margin-right: 15% !important; }

.mb-15p,
.my-15p {
  margin-bottom: 15% !important; }

.ml-15p,
.mx-15p {
  margin-left: 15% !important; }

.m-20p {
  margin: 20% !important; }

.mt-20p,
.my-20p {
  margin-top: 20% !important; }

.mr-20p,
.mx-20p {
  margin-right: 20% !important; }

.mb-20p,
.my-20p {
  margin-bottom: 20% !important; }

.ml-20p,
.mx-20p {
  margin-left: 20% !important; }

.m-25p {
  margin: 25% !important; }

.mt-25p,
.my-25p {
  margin-top: 25% !important; }

.mr-25p,
.mx-25p {
  margin-right: 25% !important; }

.mb-25p,
.my-25p {
  margin-bottom: 25% !important; }

.ml-25p,
.mx-25p {
  margin-left: 25% !important; }

.m-30p {
  margin: 30% !important; }

.mt-30p,
.my-30p {
  margin-top: 30% !important; }

.mr-30p,
.mx-30p {
  margin-right: 30% !important; }

.mb-30p,
.my-30p {
  margin-bottom: 30% !important; }

.ml-30p,
.mx-30p {
  margin-left: 30% !important; }

.m-40p {
  margin: 40% !important; }

.mt-40p,
.my-40p {
  margin-top: 40% !important; }

.mr-40p,
.mx-40p {
  margin-right: 40% !important; }

.mb-40p,
.my-40p {
  margin-bottom: 40% !important; }

.ml-40p,
.mx-40p {
  margin-left: 40% !important; }

.m-50p {
  margin: 50% !important; }

.mt-50p,
.my-50p {
  margin-top: 50% !important; }

.mr-50p,
.mx-50p {
  margin-right: 50% !important; }

.mb-50p,
.my-50p {
  margin-bottom: 50% !important; }

.ml-50p,
.mx-50p {
  margin-left: 50% !important; }

.m-60p {
  margin: 60% !important; }

.mt-60p,
.my-60p {
  margin-top: 60% !important; }

.mr-60p,
.mx-60p {
  margin-right: 60% !important; }

.mb-60p,
.my-60p {
  margin-bottom: 60% !important; }

.ml-60p,
.mx-60p {
  margin-left: 60% !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.25rem !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-10p {
  padding: 10% !important; }

.pt-10p,
.py-10p {
  padding-top: 10% !important; }

.pr-10p,
.px-10p {
  padding-right: 10% !important; }

.pb-10p,
.py-10p {
  padding-bottom: 10% !important; }

.pl-10p,
.px-10p {
  padding-left: 10% !important; }

.p-15p {
  padding: 15% !important; }

.pt-15p,
.py-15p {
  padding-top: 15% !important; }

.pr-15p,
.px-15p {
  padding-right: 15% !important; }

.pb-15p,
.py-15p {
  padding-bottom: 15% !important; }

.pl-15p,
.px-15p {
  padding-left: 15% !important; }

.p-20p {
  padding: 20% !important; }

.pt-20p,
.py-20p {
  padding-top: 20% !important; }

.pr-20p,
.px-20p {
  padding-right: 20% !important; }

.pb-20p,
.py-20p {
  padding-bottom: 20% !important; }

.pl-20p,
.px-20p {
  padding-left: 20% !important; }

.p-25p {
  padding: 25% !important; }

.pt-25p,
.py-25p {
  padding-top: 25% !important; }

.pr-25p,
.px-25p {
  padding-right: 25% !important; }

.pb-25p,
.py-25p {
  padding-bottom: 25% !important; }

.pl-25p,
.px-25p {
  padding-left: 25% !important; }

.p-30p {
  padding: 30% !important; }

.pt-30p,
.py-30p {
  padding-top: 30% !important; }

.pr-30p,
.px-30p {
  padding-right: 30% !important; }

.pb-30p,
.py-30p {
  padding-bottom: 30% !important; }

.pl-30p,
.px-30p {
  padding-left: 30% !important; }

.p-40p {
  padding: 40% !important; }

.pt-40p,
.py-40p {
  padding-top: 40% !important; }

.pr-40p,
.px-40p {
  padding-right: 40% !important; }

.pb-40p,
.py-40p {
  padding-bottom: 40% !important; }

.pl-40p,
.px-40p {
  padding-left: 40% !important; }

.p-50p {
  padding: 50% !important; }

.pt-50p,
.py-50p {
  padding-top: 50% !important; }

.pr-50p,
.px-50p {
  padding-right: 50% !important; }

.pb-50p,
.py-50p {
  padding-bottom: 50% !important; }

.pl-50p,
.px-50p {
  padding-left: 50% !important; }

.p-60p {
  padding: 60% !important; }

.pt-60p,
.py-60p {
  padding-top: 60% !important; }

.pr-60p,
.px-60p {
  padding-right: 60% !important; }

.pb-60p,
.py-60p {
  padding-bottom: 60% !important; }

.pl-60p,
.px-60p {
  padding-left: 60% !important; }

.m-n1 {
  margin: -0.25rem !important; }

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important; }

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important; }

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important; }

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-n10p {
  margin: -10% !important; }

.mt-n10p,
.my-n10p {
  margin-top: -10% !important; }

.mr-n10p,
.mx-n10p {
  margin-right: -10% !important; }

.mb-n10p,
.my-n10p {
  margin-bottom: -10% !important; }

.ml-n10p,
.mx-n10p {
  margin-left: -10% !important; }

.m-n15p {
  margin: -15% !important; }

.mt-n15p,
.my-n15p {
  margin-top: -15% !important; }

.mr-n15p,
.mx-n15p {
  margin-right: -15% !important; }

.mb-n15p,
.my-n15p {
  margin-bottom: -15% !important; }

.ml-n15p,
.mx-n15p {
  margin-left: -15% !important; }

.m-n20p {
  margin: -20% !important; }

.mt-n20p,
.my-n20p {
  margin-top: -20% !important; }

.mr-n20p,
.mx-n20p {
  margin-right: -20% !important; }

.mb-n20p,
.my-n20p {
  margin-bottom: -20% !important; }

.ml-n20p,
.mx-n20p {
  margin-left: -20% !important; }

.m-n25p {
  margin: -25% !important; }

.mt-n25p,
.my-n25p {
  margin-top: -25% !important; }

.mr-n25p,
.mx-n25p {
  margin-right: -25% !important; }

.mb-n25p,
.my-n25p {
  margin-bottom: -25% !important; }

.ml-n25p,
.mx-n25p {
  margin-left: -25% !important; }

.m-n30p {
  margin: -30% !important; }

.mt-n30p,
.my-n30p {
  margin-top: -30% !important; }

.mr-n30p,
.mx-n30p {
  margin-right: -30% !important; }

.mb-n30p,
.my-n30p {
  margin-bottom: -30% !important; }

.ml-n30p,
.mx-n30p {
  margin-left: -30% !important; }

.m-n40p {
  margin: -40% !important; }

.mt-n40p,
.my-n40p {
  margin-top: -40% !important; }

.mr-n40p,
.mx-n40p {
  margin-right: -40% !important; }

.mb-n40p,
.my-n40p {
  margin-bottom: -40% !important; }

.ml-n40p,
.mx-n40p {
  margin-left: -40% !important; }

.m-n50p {
  margin: -50% !important; }

.mt-n50p,
.my-n50p {
  margin-top: -50% !important; }

.mr-n50p,
.mx-n50p {
  margin-right: -50% !important; }

.mb-n50p,
.my-n50p {
  margin-bottom: -50% !important; }

.ml-n50p,
.mx-n50p {
  margin-left: -50% !important; }

.m-n60p {
  margin: -60% !important; }

.mt-n60p,
.my-n60p {
  margin-top: -60% !important; }

.mr-n60p,
.mx-n60p {
  margin-right: -60% !important; }

.mb-n60p,
.my-n60p {
  margin-bottom: -60% !important; }

.ml-n60p,
.mx-n60p {
  margin-left: -60% !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.25rem !important; }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important; }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important; }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important; }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important; }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important; }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important; }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important; }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important; }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important; }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem !important; }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important; }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important; }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important; }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem !important; }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important; }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important; }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important; }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important; }
  .m-sm-4-5 {
    margin: 4.5rem !important; }
  .mt-sm-4-5,
  .my-sm-4-5 {
    margin-top: 4.5rem !important; }
  .mr-sm-4-5,
  .mx-sm-4-5 {
    margin-right: 4.5rem !important; }
  .mb-sm-4-5,
  .my-sm-4-5 {
    margin-bottom: 4.5rem !important; }
  .ml-sm-4-5,
  .mx-sm-4-5 {
    margin-left: 4.5rem !important; }
  .m-sm-5-5 {
    margin: 4rem !important; }
  .mt-sm-5-5,
  .my-sm-5-5 {
    margin-top: 4rem !important; }
  .mr-sm-5-5,
  .mx-sm-5-5 {
    margin-right: 4rem !important; }
  .mb-sm-5-5,
  .my-sm-5-5 {
    margin-bottom: 4rem !important; }
  .ml-sm-5-5,
  .mx-sm-5-5 {
    margin-left: 4rem !important; }
  .m-sm-6 {
    margin: 6rem !important; }
  .mt-sm-6,
  .my-sm-6 {
    margin-top: 6rem !important; }
  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 6rem !important; }
  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 6rem !important; }
  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 6rem !important; }
  .m-sm-7 {
    margin: 7rem !important; }
  .mt-sm-7,
  .my-sm-7 {
    margin-top: 7rem !important; }
  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 7rem !important; }
  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 7rem !important; }
  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 7rem !important; }
  .m-sm-8 {
    margin: 8rem !important; }
  .mt-sm-8,
  .my-sm-8 {
    margin-top: 8rem !important; }
  .mr-sm-8,
  .mx-sm-8 {
    margin-right: 8rem !important; }
  .mb-sm-8,
  .my-sm-8 {
    margin-bottom: 8rem !important; }
  .ml-sm-8,
  .mx-sm-8 {
    margin-left: 8rem !important; }
  .m-sm-9 {
    margin: 9rem !important; }
  .mt-sm-9,
  .my-sm-9 {
    margin-top: 9rem !important; }
  .mr-sm-9,
  .mx-sm-9 {
    margin-right: 9rem !important; }
  .mb-sm-9,
  .my-sm-9 {
    margin-bottom: 9rem !important; }
  .ml-sm-9,
  .mx-sm-9 {
    margin-left: 9rem !important; }
  .m-sm-10 {
    margin: 10rem !important; }
  .mt-sm-10,
  .my-sm-10 {
    margin-top: 10rem !important; }
  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 10rem !important; }
  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 10rem !important; }
  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 10rem !important; }
  .m-sm-15 {
    margin: 15rem !important; }
  .mt-sm-15,
  .my-sm-15 {
    margin-top: 15rem !important; }
  .mr-sm-15,
  .mx-sm-15 {
    margin-right: 15rem !important; }
  .mb-sm-15,
  .my-sm-15 {
    margin-bottom: 15rem !important; }
  .ml-sm-15,
  .mx-sm-15 {
    margin-left: 15rem !important; }
  .m-sm-20 {
    margin: 20rem !important; }
  .mt-sm-20,
  .my-sm-20 {
    margin-top: 20rem !important; }
  .mr-sm-20,
  .mx-sm-20 {
    margin-right: 20rem !important; }
  .mb-sm-20,
  .my-sm-20 {
    margin-bottom: 20rem !important; }
  .ml-sm-20,
  .mx-sm-20 {
    margin-left: 20rem !important; }
  .m-sm-25 {
    margin: 25rem !important; }
  .mt-sm-25,
  .my-sm-25 {
    margin-top: 25rem !important; }
  .mr-sm-25,
  .mx-sm-25 {
    margin-right: 25rem !important; }
  .mb-sm-25,
  .my-sm-25 {
    margin-bottom: 25rem !important; }
  .ml-sm-25,
  .mx-sm-25 {
    margin-left: 25rem !important; }
  .m-sm-10p {
    margin: 10% !important; }
  .mt-sm-10p,
  .my-sm-10p {
    margin-top: 10% !important; }
  .mr-sm-10p,
  .mx-sm-10p {
    margin-right: 10% !important; }
  .mb-sm-10p,
  .my-sm-10p {
    margin-bottom: 10% !important; }
  .ml-sm-10p,
  .mx-sm-10p {
    margin-left: 10% !important; }
  .m-sm-15p {
    margin: 15% !important; }
  .mt-sm-15p,
  .my-sm-15p {
    margin-top: 15% !important; }
  .mr-sm-15p,
  .mx-sm-15p {
    margin-right: 15% !important; }
  .mb-sm-15p,
  .my-sm-15p {
    margin-bottom: 15% !important; }
  .ml-sm-15p,
  .mx-sm-15p {
    margin-left: 15% !important; }
  .m-sm-20p {
    margin: 20% !important; }
  .mt-sm-20p,
  .my-sm-20p {
    margin-top: 20% !important; }
  .mr-sm-20p,
  .mx-sm-20p {
    margin-right: 20% !important; }
  .mb-sm-20p,
  .my-sm-20p {
    margin-bottom: 20% !important; }
  .ml-sm-20p,
  .mx-sm-20p {
    margin-left: 20% !important; }
  .m-sm-25p {
    margin: 25% !important; }
  .mt-sm-25p,
  .my-sm-25p {
    margin-top: 25% !important; }
  .mr-sm-25p,
  .mx-sm-25p {
    margin-right: 25% !important; }
  .mb-sm-25p,
  .my-sm-25p {
    margin-bottom: 25% !important; }
  .ml-sm-25p,
  .mx-sm-25p {
    margin-left: 25% !important; }
  .m-sm-30p {
    margin: 30% !important; }
  .mt-sm-30p,
  .my-sm-30p {
    margin-top: 30% !important; }
  .mr-sm-30p,
  .mx-sm-30p {
    margin-right: 30% !important; }
  .mb-sm-30p,
  .my-sm-30p {
    margin-bottom: 30% !important; }
  .ml-sm-30p,
  .mx-sm-30p {
    margin-left: 30% !important; }
  .m-sm-40p {
    margin: 40% !important; }
  .mt-sm-40p,
  .my-sm-40p {
    margin-top: 40% !important; }
  .mr-sm-40p,
  .mx-sm-40p {
    margin-right: 40% !important; }
  .mb-sm-40p,
  .my-sm-40p {
    margin-bottom: 40% !important; }
  .ml-sm-40p,
  .mx-sm-40p {
    margin-left: 40% !important; }
  .m-sm-50p {
    margin: 50% !important; }
  .mt-sm-50p,
  .my-sm-50p {
    margin-top: 50% !important; }
  .mr-sm-50p,
  .mx-sm-50p {
    margin-right: 50% !important; }
  .mb-sm-50p,
  .my-sm-50p {
    margin-bottom: 50% !important; }
  .ml-sm-50p,
  .mx-sm-50p {
    margin-left: 50% !important; }
  .m-sm-60p {
    margin: 60% !important; }
  .mt-sm-60p,
  .my-sm-60p {
    margin-top: 60% !important; }
  .mr-sm-60p,
  .mx-sm-60p {
    margin-right: 60% !important; }
  .mb-sm-60p,
  .my-sm-60p {
    margin-bottom: 60% !important; }
  .ml-sm-60p,
  .mx-sm-60p {
    margin-left: 60% !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.25rem !important; }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important; }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important; }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important; }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important; }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important; }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important; }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important; }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem !important; }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important; }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important; }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem !important; }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important; }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important; }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important; }
  .p-sm-4-5 {
    padding: 4.5rem !important; }
  .pt-sm-4-5,
  .py-sm-4-5 {
    padding-top: 4.5rem !important; }
  .pr-sm-4-5,
  .px-sm-4-5 {
    padding-right: 4.5rem !important; }
  .pb-sm-4-5,
  .py-sm-4-5 {
    padding-bottom: 4.5rem !important; }
  .pl-sm-4-5,
  .px-sm-4-5 {
    padding-left: 4.5rem !important; }
  .p-sm-5-5 {
    padding: 4rem !important; }
  .pt-sm-5-5,
  .py-sm-5-5 {
    padding-top: 4rem !important; }
  .pr-sm-5-5,
  .px-sm-5-5 {
    padding-right: 4rem !important; }
  .pb-sm-5-5,
  .py-sm-5-5 {
    padding-bottom: 4rem !important; }
  .pl-sm-5-5,
  .px-sm-5-5 {
    padding-left: 4rem !important; }
  .p-sm-6 {
    padding: 6rem !important; }
  .pt-sm-6,
  .py-sm-6 {
    padding-top: 6rem !important; }
  .pr-sm-6,
  .px-sm-6 {
    padding-right: 6rem !important; }
  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 6rem !important; }
  .pl-sm-6,
  .px-sm-6 {
    padding-left: 6rem !important; }
  .p-sm-7 {
    padding: 7rem !important; }
  .pt-sm-7,
  .py-sm-7 {
    padding-top: 7rem !important; }
  .pr-sm-7,
  .px-sm-7 {
    padding-right: 7rem !important; }
  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 7rem !important; }
  .pl-sm-7,
  .px-sm-7 {
    padding-left: 7rem !important; }
  .p-sm-8 {
    padding: 8rem !important; }
  .pt-sm-8,
  .py-sm-8 {
    padding-top: 8rem !important; }
  .pr-sm-8,
  .px-sm-8 {
    padding-right: 8rem !important; }
  .pb-sm-8,
  .py-sm-8 {
    padding-bottom: 8rem !important; }
  .pl-sm-8,
  .px-sm-8 {
    padding-left: 8rem !important; }
  .p-sm-9 {
    padding: 9rem !important; }
  .pt-sm-9,
  .py-sm-9 {
    padding-top: 9rem !important; }
  .pr-sm-9,
  .px-sm-9 {
    padding-right: 9rem !important; }
  .pb-sm-9,
  .py-sm-9 {
    padding-bottom: 9rem !important; }
  .pl-sm-9,
  .px-sm-9 {
    padding-left: 9rem !important; }
  .p-sm-10 {
    padding: 10rem !important; }
  .pt-sm-10,
  .py-sm-10 {
    padding-top: 10rem !important; }
  .pr-sm-10,
  .px-sm-10 {
    padding-right: 10rem !important; }
  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 10rem !important; }
  .pl-sm-10,
  .px-sm-10 {
    padding-left: 10rem !important; }
  .p-sm-15 {
    padding: 15rem !important; }
  .pt-sm-15,
  .py-sm-15 {
    padding-top: 15rem !important; }
  .pr-sm-15,
  .px-sm-15 {
    padding-right: 15rem !important; }
  .pb-sm-15,
  .py-sm-15 {
    padding-bottom: 15rem !important; }
  .pl-sm-15,
  .px-sm-15 {
    padding-left: 15rem !important; }
  .p-sm-20 {
    padding: 20rem !important; }
  .pt-sm-20,
  .py-sm-20 {
    padding-top: 20rem !important; }
  .pr-sm-20,
  .px-sm-20 {
    padding-right: 20rem !important; }
  .pb-sm-20,
  .py-sm-20 {
    padding-bottom: 20rem !important; }
  .pl-sm-20,
  .px-sm-20 {
    padding-left: 20rem !important; }
  .p-sm-25 {
    padding: 25rem !important; }
  .pt-sm-25,
  .py-sm-25 {
    padding-top: 25rem !important; }
  .pr-sm-25,
  .px-sm-25 {
    padding-right: 25rem !important; }
  .pb-sm-25,
  .py-sm-25 {
    padding-bottom: 25rem !important; }
  .pl-sm-25,
  .px-sm-25 {
    padding-left: 25rem !important; }
  .p-sm-10p {
    padding: 10% !important; }
  .pt-sm-10p,
  .py-sm-10p {
    padding-top: 10% !important; }
  .pr-sm-10p,
  .px-sm-10p {
    padding-right: 10% !important; }
  .pb-sm-10p,
  .py-sm-10p {
    padding-bottom: 10% !important; }
  .pl-sm-10p,
  .px-sm-10p {
    padding-left: 10% !important; }
  .p-sm-15p {
    padding: 15% !important; }
  .pt-sm-15p,
  .py-sm-15p {
    padding-top: 15% !important; }
  .pr-sm-15p,
  .px-sm-15p {
    padding-right: 15% !important; }
  .pb-sm-15p,
  .py-sm-15p {
    padding-bottom: 15% !important; }
  .pl-sm-15p,
  .px-sm-15p {
    padding-left: 15% !important; }
  .p-sm-20p {
    padding: 20% !important; }
  .pt-sm-20p,
  .py-sm-20p {
    padding-top: 20% !important; }
  .pr-sm-20p,
  .px-sm-20p {
    padding-right: 20% !important; }
  .pb-sm-20p,
  .py-sm-20p {
    padding-bottom: 20% !important; }
  .pl-sm-20p,
  .px-sm-20p {
    padding-left: 20% !important; }
  .p-sm-25p {
    padding: 25% !important; }
  .pt-sm-25p,
  .py-sm-25p {
    padding-top: 25% !important; }
  .pr-sm-25p,
  .px-sm-25p {
    padding-right: 25% !important; }
  .pb-sm-25p,
  .py-sm-25p {
    padding-bottom: 25% !important; }
  .pl-sm-25p,
  .px-sm-25p {
    padding-left: 25% !important; }
  .p-sm-30p {
    padding: 30% !important; }
  .pt-sm-30p,
  .py-sm-30p {
    padding-top: 30% !important; }
  .pr-sm-30p,
  .px-sm-30p {
    padding-right: 30% !important; }
  .pb-sm-30p,
  .py-sm-30p {
    padding-bottom: 30% !important; }
  .pl-sm-30p,
  .px-sm-30p {
    padding-left: 30% !important; }
  .p-sm-40p {
    padding: 40% !important; }
  .pt-sm-40p,
  .py-sm-40p {
    padding-top: 40% !important; }
  .pr-sm-40p,
  .px-sm-40p {
    padding-right: 40% !important; }
  .pb-sm-40p,
  .py-sm-40p {
    padding-bottom: 40% !important; }
  .pl-sm-40p,
  .px-sm-40p {
    padding-left: 40% !important; }
  .p-sm-50p {
    padding: 50% !important; }
  .pt-sm-50p,
  .py-sm-50p {
    padding-top: 50% !important; }
  .pr-sm-50p,
  .px-sm-50p {
    padding-right: 50% !important; }
  .pb-sm-50p,
  .py-sm-50p {
    padding-bottom: 50% !important; }
  .pl-sm-50p,
  .px-sm-50p {
    padding-left: 50% !important; }
  .p-sm-60p {
    padding: 60% !important; }
  .pt-sm-60p,
  .py-sm-60p {
    padding-top: 60% !important; }
  .pr-sm-60p,
  .px-sm-60p {
    padding-right: 60% !important; }
  .pb-sm-60p,
  .py-sm-60p {
    padding-bottom: 60% !important; }
  .pl-sm-60p,
  .px-sm-60p {
    padding-left: 60% !important; }
  .m-sm-n1 {
    margin: -0.25rem !important; }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important; }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important; }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important; }
  .m-sm-n2 {
    margin: -0.5rem !important; }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important; }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important; }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important; }
  .m-sm-n3 {
    margin: -1rem !important; }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important; }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important; }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important; }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important; }
  .m-sm-n4 {
    margin: -1.5rem !important; }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important; }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important; }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important; }
  .m-sm-n5 {
    margin: -3rem !important; }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important; }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important; }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important; }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important; }
  .m-sm-n4-5 {
    margin: -4.5rem !important; }
  .mt-sm-n4-5,
  .my-sm-n4-5 {
    margin-top: -4.5rem !important; }
  .mr-sm-n4-5,
  .mx-sm-n4-5 {
    margin-right: -4.5rem !important; }
  .mb-sm-n4-5,
  .my-sm-n4-5 {
    margin-bottom: -4.5rem !important; }
  .ml-sm-n4-5,
  .mx-sm-n4-5 {
    margin-left: -4.5rem !important; }
  .m-sm-n5-5 {
    margin: -4rem !important; }
  .mt-sm-n5-5,
  .my-sm-n5-5 {
    margin-top: -4rem !important; }
  .mr-sm-n5-5,
  .mx-sm-n5-5 {
    margin-right: -4rem !important; }
  .mb-sm-n5-5,
  .my-sm-n5-5 {
    margin-bottom: -4rem !important; }
  .ml-sm-n5-5,
  .mx-sm-n5-5 {
    margin-left: -4rem !important; }
  .m-sm-n6 {
    margin: -6rem !important; }
  .mt-sm-n6,
  .my-sm-n6 {
    margin-top: -6rem !important; }
  .mr-sm-n6,
  .mx-sm-n6 {
    margin-right: -6rem !important; }
  .mb-sm-n6,
  .my-sm-n6 {
    margin-bottom: -6rem !important; }
  .ml-sm-n6,
  .mx-sm-n6 {
    margin-left: -6rem !important; }
  .m-sm-n7 {
    margin: -7rem !important; }
  .mt-sm-n7,
  .my-sm-n7 {
    margin-top: -7rem !important; }
  .mr-sm-n7,
  .mx-sm-n7 {
    margin-right: -7rem !important; }
  .mb-sm-n7,
  .my-sm-n7 {
    margin-bottom: -7rem !important; }
  .ml-sm-n7,
  .mx-sm-n7 {
    margin-left: -7rem !important; }
  .m-sm-n8 {
    margin: -8rem !important; }
  .mt-sm-n8,
  .my-sm-n8 {
    margin-top: -8rem !important; }
  .mr-sm-n8,
  .mx-sm-n8 {
    margin-right: -8rem !important; }
  .mb-sm-n8,
  .my-sm-n8 {
    margin-bottom: -8rem !important; }
  .ml-sm-n8,
  .mx-sm-n8 {
    margin-left: -8rem !important; }
  .m-sm-n9 {
    margin: -9rem !important; }
  .mt-sm-n9,
  .my-sm-n9 {
    margin-top: -9rem !important; }
  .mr-sm-n9,
  .mx-sm-n9 {
    margin-right: -9rem !important; }
  .mb-sm-n9,
  .my-sm-n9 {
    margin-bottom: -9rem !important; }
  .ml-sm-n9,
  .mx-sm-n9 {
    margin-left: -9rem !important; }
  .m-sm-n10 {
    margin: -10rem !important; }
  .mt-sm-n10,
  .my-sm-n10 {
    margin-top: -10rem !important; }
  .mr-sm-n10,
  .mx-sm-n10 {
    margin-right: -10rem !important; }
  .mb-sm-n10,
  .my-sm-n10 {
    margin-bottom: -10rem !important; }
  .ml-sm-n10,
  .mx-sm-n10 {
    margin-left: -10rem !important; }
  .m-sm-n15 {
    margin: -15rem !important; }
  .mt-sm-n15,
  .my-sm-n15 {
    margin-top: -15rem !important; }
  .mr-sm-n15,
  .mx-sm-n15 {
    margin-right: -15rem !important; }
  .mb-sm-n15,
  .my-sm-n15 {
    margin-bottom: -15rem !important; }
  .ml-sm-n15,
  .mx-sm-n15 {
    margin-left: -15rem !important; }
  .m-sm-n20 {
    margin: -20rem !important; }
  .mt-sm-n20,
  .my-sm-n20 {
    margin-top: -20rem !important; }
  .mr-sm-n20,
  .mx-sm-n20 {
    margin-right: -20rem !important; }
  .mb-sm-n20,
  .my-sm-n20 {
    margin-bottom: -20rem !important; }
  .ml-sm-n20,
  .mx-sm-n20 {
    margin-left: -20rem !important; }
  .m-sm-n25 {
    margin: -25rem !important; }
  .mt-sm-n25,
  .my-sm-n25 {
    margin-top: -25rem !important; }
  .mr-sm-n25,
  .mx-sm-n25 {
    margin-right: -25rem !important; }
  .mb-sm-n25,
  .my-sm-n25 {
    margin-bottom: -25rem !important; }
  .ml-sm-n25,
  .mx-sm-n25 {
    margin-left: -25rem !important; }
  .m-sm-n10p {
    margin: -10% !important; }
  .mt-sm-n10p,
  .my-sm-n10p {
    margin-top: -10% !important; }
  .mr-sm-n10p,
  .mx-sm-n10p {
    margin-right: -10% !important; }
  .mb-sm-n10p,
  .my-sm-n10p {
    margin-bottom: -10% !important; }
  .ml-sm-n10p,
  .mx-sm-n10p {
    margin-left: -10% !important; }
  .m-sm-n15p {
    margin: -15% !important; }
  .mt-sm-n15p,
  .my-sm-n15p {
    margin-top: -15% !important; }
  .mr-sm-n15p,
  .mx-sm-n15p {
    margin-right: -15% !important; }
  .mb-sm-n15p,
  .my-sm-n15p {
    margin-bottom: -15% !important; }
  .ml-sm-n15p,
  .mx-sm-n15p {
    margin-left: -15% !important; }
  .m-sm-n20p {
    margin: -20% !important; }
  .mt-sm-n20p,
  .my-sm-n20p {
    margin-top: -20% !important; }
  .mr-sm-n20p,
  .mx-sm-n20p {
    margin-right: -20% !important; }
  .mb-sm-n20p,
  .my-sm-n20p {
    margin-bottom: -20% !important; }
  .ml-sm-n20p,
  .mx-sm-n20p {
    margin-left: -20% !important; }
  .m-sm-n25p {
    margin: -25% !important; }
  .mt-sm-n25p,
  .my-sm-n25p {
    margin-top: -25% !important; }
  .mr-sm-n25p,
  .mx-sm-n25p {
    margin-right: -25% !important; }
  .mb-sm-n25p,
  .my-sm-n25p {
    margin-bottom: -25% !important; }
  .ml-sm-n25p,
  .mx-sm-n25p {
    margin-left: -25% !important; }
  .m-sm-n30p {
    margin: -30% !important; }
  .mt-sm-n30p,
  .my-sm-n30p {
    margin-top: -30% !important; }
  .mr-sm-n30p,
  .mx-sm-n30p {
    margin-right: -30% !important; }
  .mb-sm-n30p,
  .my-sm-n30p {
    margin-bottom: -30% !important; }
  .ml-sm-n30p,
  .mx-sm-n30p {
    margin-left: -30% !important; }
  .m-sm-n40p {
    margin: -40% !important; }
  .mt-sm-n40p,
  .my-sm-n40p {
    margin-top: -40% !important; }
  .mr-sm-n40p,
  .mx-sm-n40p {
    margin-right: -40% !important; }
  .mb-sm-n40p,
  .my-sm-n40p {
    margin-bottom: -40% !important; }
  .ml-sm-n40p,
  .mx-sm-n40p {
    margin-left: -40% !important; }
  .m-sm-n50p {
    margin: -50% !important; }
  .mt-sm-n50p,
  .my-sm-n50p {
    margin-top: -50% !important; }
  .mr-sm-n50p,
  .mx-sm-n50p {
    margin-right: -50% !important; }
  .mb-sm-n50p,
  .my-sm-n50p {
    margin-bottom: -50% !important; }
  .ml-sm-n50p,
  .mx-sm-n50p {
    margin-left: -50% !important; }
  .m-sm-n60p {
    margin: -60% !important; }
  .mt-sm-n60p,
  .my-sm-n60p {
    margin-top: -60% !important; }
  .mr-sm-n60p,
  .mx-sm-n60p {
    margin-right: -60% !important; }
  .mb-sm-n60p,
  .my-sm-n60p {
    margin-bottom: -60% !important; }
  .ml-sm-n60p,
  .mx-sm-n60p {
    margin-left: -60% !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.25rem !important; }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important; }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important; }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important; }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important; }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important; }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important; }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important; }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important; }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important; }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important; }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important; }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important; }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important; }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important; }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important; }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important; }
  .m-md-4-5 {
    margin: 4.5rem !important; }
  .mt-md-4-5,
  .my-md-4-5 {
    margin-top: 4.5rem !important; }
  .mr-md-4-5,
  .mx-md-4-5 {
    margin-right: 4.5rem !important; }
  .mb-md-4-5,
  .my-md-4-5 {
    margin-bottom: 4.5rem !important; }
  .ml-md-4-5,
  .mx-md-4-5 {
    margin-left: 4.5rem !important; }
  .m-md-5-5 {
    margin: 4rem !important; }
  .mt-md-5-5,
  .my-md-5-5 {
    margin-top: 4rem !important; }
  .mr-md-5-5,
  .mx-md-5-5 {
    margin-right: 4rem !important; }
  .mb-md-5-5,
  .my-md-5-5 {
    margin-bottom: 4rem !important; }
  .ml-md-5-5,
  .mx-md-5-5 {
    margin-left: 4rem !important; }
  .m-md-6 {
    margin: 6rem !important; }
  .mt-md-6,
  .my-md-6 {
    margin-top: 6rem !important; }
  .mr-md-6,
  .mx-md-6 {
    margin-right: 6rem !important; }
  .mb-md-6,
  .my-md-6 {
    margin-bottom: 6rem !important; }
  .ml-md-6,
  .mx-md-6 {
    margin-left: 6rem !important; }
  .m-md-7 {
    margin: 7rem !important; }
  .mt-md-7,
  .my-md-7 {
    margin-top: 7rem !important; }
  .mr-md-7,
  .mx-md-7 {
    margin-right: 7rem !important; }
  .mb-md-7,
  .my-md-7 {
    margin-bottom: 7rem !important; }
  .ml-md-7,
  .mx-md-7 {
    margin-left: 7rem !important; }
  .m-md-8 {
    margin: 8rem !important; }
  .mt-md-8,
  .my-md-8 {
    margin-top: 8rem !important; }
  .mr-md-8,
  .mx-md-8 {
    margin-right: 8rem !important; }
  .mb-md-8,
  .my-md-8 {
    margin-bottom: 8rem !important; }
  .ml-md-8,
  .mx-md-8 {
    margin-left: 8rem !important; }
  .m-md-9 {
    margin: 9rem !important; }
  .mt-md-9,
  .my-md-9 {
    margin-top: 9rem !important; }
  .mr-md-9,
  .mx-md-9 {
    margin-right: 9rem !important; }
  .mb-md-9,
  .my-md-9 {
    margin-bottom: 9rem !important; }
  .ml-md-9,
  .mx-md-9 {
    margin-left: 9rem !important; }
  .m-md-10 {
    margin: 10rem !important; }
  .mt-md-10,
  .my-md-10 {
    margin-top: 10rem !important; }
  .mr-md-10,
  .mx-md-10 {
    margin-right: 10rem !important; }
  .mb-md-10,
  .my-md-10 {
    margin-bottom: 10rem !important; }
  .ml-md-10,
  .mx-md-10 {
    margin-left: 10rem !important; }
  .m-md-15 {
    margin: 15rem !important; }
  .mt-md-15,
  .my-md-15 {
    margin-top: 15rem !important; }
  .mr-md-15,
  .mx-md-15 {
    margin-right: 15rem !important; }
  .mb-md-15,
  .my-md-15 {
    margin-bottom: 15rem !important; }
  .ml-md-15,
  .mx-md-15 {
    margin-left: 15rem !important; }
  .m-md-20 {
    margin: 20rem !important; }
  .mt-md-20,
  .my-md-20 {
    margin-top: 20rem !important; }
  .mr-md-20,
  .mx-md-20 {
    margin-right: 20rem !important; }
  .mb-md-20,
  .my-md-20 {
    margin-bottom: 20rem !important; }
  .ml-md-20,
  .mx-md-20 {
    margin-left: 20rem !important; }
  .m-md-25 {
    margin: 25rem !important; }
  .mt-md-25,
  .my-md-25 {
    margin-top: 25rem !important; }
  .mr-md-25,
  .mx-md-25 {
    margin-right: 25rem !important; }
  .mb-md-25,
  .my-md-25 {
    margin-bottom: 25rem !important; }
  .ml-md-25,
  .mx-md-25 {
    margin-left: 25rem !important; }
  .m-md-10p {
    margin: 10% !important; }
  .mt-md-10p,
  .my-md-10p {
    margin-top: 10% !important; }
  .mr-md-10p,
  .mx-md-10p {
    margin-right: 10% !important; }
  .mb-md-10p,
  .my-md-10p {
    margin-bottom: 10% !important; }
  .ml-md-10p,
  .mx-md-10p {
    margin-left: 10% !important; }
  .m-md-15p {
    margin: 15% !important; }
  .mt-md-15p,
  .my-md-15p {
    margin-top: 15% !important; }
  .mr-md-15p,
  .mx-md-15p {
    margin-right: 15% !important; }
  .mb-md-15p,
  .my-md-15p {
    margin-bottom: 15% !important; }
  .ml-md-15p,
  .mx-md-15p {
    margin-left: 15% !important; }
  .m-md-20p {
    margin: 20% !important; }
  .mt-md-20p,
  .my-md-20p {
    margin-top: 20% !important; }
  .mr-md-20p,
  .mx-md-20p {
    margin-right: 20% !important; }
  .mb-md-20p,
  .my-md-20p {
    margin-bottom: 20% !important; }
  .ml-md-20p,
  .mx-md-20p {
    margin-left: 20% !important; }
  .m-md-25p {
    margin: 25% !important; }
  .mt-md-25p,
  .my-md-25p {
    margin-top: 25% !important; }
  .mr-md-25p,
  .mx-md-25p {
    margin-right: 25% !important; }
  .mb-md-25p,
  .my-md-25p {
    margin-bottom: 25% !important; }
  .ml-md-25p,
  .mx-md-25p {
    margin-left: 25% !important; }
  .m-md-30p {
    margin: 30% !important; }
  .mt-md-30p,
  .my-md-30p {
    margin-top: 30% !important; }
  .mr-md-30p,
  .mx-md-30p {
    margin-right: 30% !important; }
  .mb-md-30p,
  .my-md-30p {
    margin-bottom: 30% !important; }
  .ml-md-30p,
  .mx-md-30p {
    margin-left: 30% !important; }
  .m-md-40p {
    margin: 40% !important; }
  .mt-md-40p,
  .my-md-40p {
    margin-top: 40% !important; }
  .mr-md-40p,
  .mx-md-40p {
    margin-right: 40% !important; }
  .mb-md-40p,
  .my-md-40p {
    margin-bottom: 40% !important; }
  .ml-md-40p,
  .mx-md-40p {
    margin-left: 40% !important; }
  .m-md-50p {
    margin: 50% !important; }
  .mt-md-50p,
  .my-md-50p {
    margin-top: 50% !important; }
  .mr-md-50p,
  .mx-md-50p {
    margin-right: 50% !important; }
  .mb-md-50p,
  .my-md-50p {
    margin-bottom: 50% !important; }
  .ml-md-50p,
  .mx-md-50p {
    margin-left: 50% !important; }
  .m-md-60p {
    margin: 60% !important; }
  .mt-md-60p,
  .my-md-60p {
    margin-top: 60% !important; }
  .mr-md-60p,
  .mx-md-60p {
    margin-right: 60% !important; }
  .mb-md-60p,
  .my-md-60p {
    margin-bottom: 60% !important; }
  .ml-md-60p,
  .mx-md-60p {
    margin-left: 60% !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.25rem !important; }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important; }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important; }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important; }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important; }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important; }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important; }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important; }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important; }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important; }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important; }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important; }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important; }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important; }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important; }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important; }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important; }
  .p-md-4-5 {
    padding: 4.5rem !important; }
  .pt-md-4-5,
  .py-md-4-5 {
    padding-top: 4.5rem !important; }
  .pr-md-4-5,
  .px-md-4-5 {
    padding-right: 4.5rem !important; }
  .pb-md-4-5,
  .py-md-4-5 {
    padding-bottom: 4.5rem !important; }
  .pl-md-4-5,
  .px-md-4-5 {
    padding-left: 4.5rem !important; }
  .p-md-5-5 {
    padding: 4rem !important; }
  .pt-md-5-5,
  .py-md-5-5 {
    padding-top: 4rem !important; }
  .pr-md-5-5,
  .px-md-5-5 {
    padding-right: 4rem !important; }
  .pb-md-5-5,
  .py-md-5-5 {
    padding-bottom: 4rem !important; }
  .pl-md-5-5,
  .px-md-5-5 {
    padding-left: 4rem !important; }
  .p-md-6 {
    padding: 6rem !important; }
  .pt-md-6,
  .py-md-6 {
    padding-top: 6rem !important; }
  .pr-md-6,
  .px-md-6 {
    padding-right: 6rem !important; }
  .pb-md-6,
  .py-md-6 {
    padding-bottom: 6rem !important; }
  .pl-md-6,
  .px-md-6 {
    padding-left: 6rem !important; }
  .p-md-7 {
    padding: 7rem !important; }
  .pt-md-7,
  .py-md-7 {
    padding-top: 7rem !important; }
  .pr-md-7,
  .px-md-7 {
    padding-right: 7rem !important; }
  .pb-md-7,
  .py-md-7 {
    padding-bottom: 7rem !important; }
  .pl-md-7,
  .px-md-7 {
    padding-left: 7rem !important; }
  .p-md-8 {
    padding: 8rem !important; }
  .pt-md-8,
  .py-md-8 {
    padding-top: 8rem !important; }
  .pr-md-8,
  .px-md-8 {
    padding-right: 8rem !important; }
  .pb-md-8,
  .py-md-8 {
    padding-bottom: 8rem !important; }
  .pl-md-8,
  .px-md-8 {
    padding-left: 8rem !important; }
  .p-md-9 {
    padding: 9rem !important; }
  .pt-md-9,
  .py-md-9 {
    padding-top: 9rem !important; }
  .pr-md-9,
  .px-md-9 {
    padding-right: 9rem !important; }
  .pb-md-9,
  .py-md-9 {
    padding-bottom: 9rem !important; }
  .pl-md-9,
  .px-md-9 {
    padding-left: 9rem !important; }
  .p-md-10 {
    padding: 10rem !important; }
  .pt-md-10,
  .py-md-10 {
    padding-top: 10rem !important; }
  .pr-md-10,
  .px-md-10 {
    padding-right: 10rem !important; }
  .pb-md-10,
  .py-md-10 {
    padding-bottom: 10rem !important; }
  .pl-md-10,
  .px-md-10 {
    padding-left: 10rem !important; }
  .p-md-15 {
    padding: 15rem !important; }
  .pt-md-15,
  .py-md-15 {
    padding-top: 15rem !important; }
  .pr-md-15,
  .px-md-15 {
    padding-right: 15rem !important; }
  .pb-md-15,
  .py-md-15 {
    padding-bottom: 15rem !important; }
  .pl-md-15,
  .px-md-15 {
    padding-left: 15rem !important; }
  .p-md-20 {
    padding: 20rem !important; }
  .pt-md-20,
  .py-md-20 {
    padding-top: 20rem !important; }
  .pr-md-20,
  .px-md-20 {
    padding-right: 20rem !important; }
  .pb-md-20,
  .py-md-20 {
    padding-bottom: 20rem !important; }
  .pl-md-20,
  .px-md-20 {
    padding-left: 20rem !important; }
  .p-md-25 {
    padding: 25rem !important; }
  .pt-md-25,
  .py-md-25 {
    padding-top: 25rem !important; }
  .pr-md-25,
  .px-md-25 {
    padding-right: 25rem !important; }
  .pb-md-25,
  .py-md-25 {
    padding-bottom: 25rem !important; }
  .pl-md-25,
  .px-md-25 {
    padding-left: 25rem !important; }
  .p-md-10p {
    padding: 10% !important; }
  .pt-md-10p,
  .py-md-10p {
    padding-top: 10% !important; }
  .pr-md-10p,
  .px-md-10p {
    padding-right: 10% !important; }
  .pb-md-10p,
  .py-md-10p {
    padding-bottom: 10% !important; }
  .pl-md-10p,
  .px-md-10p {
    padding-left: 10% !important; }
  .p-md-15p {
    padding: 15% !important; }
  .pt-md-15p,
  .py-md-15p {
    padding-top: 15% !important; }
  .pr-md-15p,
  .px-md-15p {
    padding-right: 15% !important; }
  .pb-md-15p,
  .py-md-15p {
    padding-bottom: 15% !important; }
  .pl-md-15p,
  .px-md-15p {
    padding-left: 15% !important; }
  .p-md-20p {
    padding: 20% !important; }
  .pt-md-20p,
  .py-md-20p {
    padding-top: 20% !important; }
  .pr-md-20p,
  .px-md-20p {
    padding-right: 20% !important; }
  .pb-md-20p,
  .py-md-20p {
    padding-bottom: 20% !important; }
  .pl-md-20p,
  .px-md-20p {
    padding-left: 20% !important; }
  .p-md-25p {
    padding: 25% !important; }
  .pt-md-25p,
  .py-md-25p {
    padding-top: 25% !important; }
  .pr-md-25p,
  .px-md-25p {
    padding-right: 25% !important; }
  .pb-md-25p,
  .py-md-25p {
    padding-bottom: 25% !important; }
  .pl-md-25p,
  .px-md-25p {
    padding-left: 25% !important; }
  .p-md-30p {
    padding: 30% !important; }
  .pt-md-30p,
  .py-md-30p {
    padding-top: 30% !important; }
  .pr-md-30p,
  .px-md-30p {
    padding-right: 30% !important; }
  .pb-md-30p,
  .py-md-30p {
    padding-bottom: 30% !important; }
  .pl-md-30p,
  .px-md-30p {
    padding-left: 30% !important; }
  .p-md-40p {
    padding: 40% !important; }
  .pt-md-40p,
  .py-md-40p {
    padding-top: 40% !important; }
  .pr-md-40p,
  .px-md-40p {
    padding-right: 40% !important; }
  .pb-md-40p,
  .py-md-40p {
    padding-bottom: 40% !important; }
  .pl-md-40p,
  .px-md-40p {
    padding-left: 40% !important; }
  .p-md-50p {
    padding: 50% !important; }
  .pt-md-50p,
  .py-md-50p {
    padding-top: 50% !important; }
  .pr-md-50p,
  .px-md-50p {
    padding-right: 50% !important; }
  .pb-md-50p,
  .py-md-50p {
    padding-bottom: 50% !important; }
  .pl-md-50p,
  .px-md-50p {
    padding-left: 50% !important; }
  .p-md-60p {
    padding: 60% !important; }
  .pt-md-60p,
  .py-md-60p {
    padding-top: 60% !important; }
  .pr-md-60p,
  .px-md-60p {
    padding-right: 60% !important; }
  .pb-md-60p,
  .py-md-60p {
    padding-bottom: 60% !important; }
  .pl-md-60p,
  .px-md-60p {
    padding-left: 60% !important; }
  .m-md-n1 {
    margin: -0.25rem !important; }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important; }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important; }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important; }
  .m-md-n2 {
    margin: -0.5rem !important; }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important; }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important; }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important; }
  .m-md-n3 {
    margin: -1rem !important; }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important; }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important; }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important; }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important; }
  .m-md-n4 {
    margin: -1.5rem !important; }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important; }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important; }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important; }
  .m-md-n5 {
    margin: -3rem !important; }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important; }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important; }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important; }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important; }
  .m-md-n4-5 {
    margin: -4.5rem !important; }
  .mt-md-n4-5,
  .my-md-n4-5 {
    margin-top: -4.5rem !important; }
  .mr-md-n4-5,
  .mx-md-n4-5 {
    margin-right: -4.5rem !important; }
  .mb-md-n4-5,
  .my-md-n4-5 {
    margin-bottom: -4.5rem !important; }
  .ml-md-n4-5,
  .mx-md-n4-5 {
    margin-left: -4.5rem !important; }
  .m-md-n5-5 {
    margin: -4rem !important; }
  .mt-md-n5-5,
  .my-md-n5-5 {
    margin-top: -4rem !important; }
  .mr-md-n5-5,
  .mx-md-n5-5 {
    margin-right: -4rem !important; }
  .mb-md-n5-5,
  .my-md-n5-5 {
    margin-bottom: -4rem !important; }
  .ml-md-n5-5,
  .mx-md-n5-5 {
    margin-left: -4rem !important; }
  .m-md-n6 {
    margin: -6rem !important; }
  .mt-md-n6,
  .my-md-n6 {
    margin-top: -6rem !important; }
  .mr-md-n6,
  .mx-md-n6 {
    margin-right: -6rem !important; }
  .mb-md-n6,
  .my-md-n6 {
    margin-bottom: -6rem !important; }
  .ml-md-n6,
  .mx-md-n6 {
    margin-left: -6rem !important; }
  .m-md-n7 {
    margin: -7rem !important; }
  .mt-md-n7,
  .my-md-n7 {
    margin-top: -7rem !important; }
  .mr-md-n7,
  .mx-md-n7 {
    margin-right: -7rem !important; }
  .mb-md-n7,
  .my-md-n7 {
    margin-bottom: -7rem !important; }
  .ml-md-n7,
  .mx-md-n7 {
    margin-left: -7rem !important; }
  .m-md-n8 {
    margin: -8rem !important; }
  .mt-md-n8,
  .my-md-n8 {
    margin-top: -8rem !important; }
  .mr-md-n8,
  .mx-md-n8 {
    margin-right: -8rem !important; }
  .mb-md-n8,
  .my-md-n8 {
    margin-bottom: -8rem !important; }
  .ml-md-n8,
  .mx-md-n8 {
    margin-left: -8rem !important; }
  .m-md-n9 {
    margin: -9rem !important; }
  .mt-md-n9,
  .my-md-n9 {
    margin-top: -9rem !important; }
  .mr-md-n9,
  .mx-md-n9 {
    margin-right: -9rem !important; }
  .mb-md-n9,
  .my-md-n9 {
    margin-bottom: -9rem !important; }
  .ml-md-n9,
  .mx-md-n9 {
    margin-left: -9rem !important; }
  .m-md-n10 {
    margin: -10rem !important; }
  .mt-md-n10,
  .my-md-n10 {
    margin-top: -10rem !important; }
  .mr-md-n10,
  .mx-md-n10 {
    margin-right: -10rem !important; }
  .mb-md-n10,
  .my-md-n10 {
    margin-bottom: -10rem !important; }
  .ml-md-n10,
  .mx-md-n10 {
    margin-left: -10rem !important; }
  .m-md-n15 {
    margin: -15rem !important; }
  .mt-md-n15,
  .my-md-n15 {
    margin-top: -15rem !important; }
  .mr-md-n15,
  .mx-md-n15 {
    margin-right: -15rem !important; }
  .mb-md-n15,
  .my-md-n15 {
    margin-bottom: -15rem !important; }
  .ml-md-n15,
  .mx-md-n15 {
    margin-left: -15rem !important; }
  .m-md-n20 {
    margin: -20rem !important; }
  .mt-md-n20,
  .my-md-n20 {
    margin-top: -20rem !important; }
  .mr-md-n20,
  .mx-md-n20 {
    margin-right: -20rem !important; }
  .mb-md-n20,
  .my-md-n20 {
    margin-bottom: -20rem !important; }
  .ml-md-n20,
  .mx-md-n20 {
    margin-left: -20rem !important; }
  .m-md-n25 {
    margin: -25rem !important; }
  .mt-md-n25,
  .my-md-n25 {
    margin-top: -25rem !important; }
  .mr-md-n25,
  .mx-md-n25 {
    margin-right: -25rem !important; }
  .mb-md-n25,
  .my-md-n25 {
    margin-bottom: -25rem !important; }
  .ml-md-n25,
  .mx-md-n25 {
    margin-left: -25rem !important; }
  .m-md-n10p {
    margin: -10% !important; }
  .mt-md-n10p,
  .my-md-n10p {
    margin-top: -10% !important; }
  .mr-md-n10p,
  .mx-md-n10p {
    margin-right: -10% !important; }
  .mb-md-n10p,
  .my-md-n10p {
    margin-bottom: -10% !important; }
  .ml-md-n10p,
  .mx-md-n10p {
    margin-left: -10% !important; }
  .m-md-n15p {
    margin: -15% !important; }
  .mt-md-n15p,
  .my-md-n15p {
    margin-top: -15% !important; }
  .mr-md-n15p,
  .mx-md-n15p {
    margin-right: -15% !important; }
  .mb-md-n15p,
  .my-md-n15p {
    margin-bottom: -15% !important; }
  .ml-md-n15p,
  .mx-md-n15p {
    margin-left: -15% !important; }
  .m-md-n20p {
    margin: -20% !important; }
  .mt-md-n20p,
  .my-md-n20p {
    margin-top: -20% !important; }
  .mr-md-n20p,
  .mx-md-n20p {
    margin-right: -20% !important; }
  .mb-md-n20p,
  .my-md-n20p {
    margin-bottom: -20% !important; }
  .ml-md-n20p,
  .mx-md-n20p {
    margin-left: -20% !important; }
  .m-md-n25p {
    margin: -25% !important; }
  .mt-md-n25p,
  .my-md-n25p {
    margin-top: -25% !important; }
  .mr-md-n25p,
  .mx-md-n25p {
    margin-right: -25% !important; }
  .mb-md-n25p,
  .my-md-n25p {
    margin-bottom: -25% !important; }
  .ml-md-n25p,
  .mx-md-n25p {
    margin-left: -25% !important; }
  .m-md-n30p {
    margin: -30% !important; }
  .mt-md-n30p,
  .my-md-n30p {
    margin-top: -30% !important; }
  .mr-md-n30p,
  .mx-md-n30p {
    margin-right: -30% !important; }
  .mb-md-n30p,
  .my-md-n30p {
    margin-bottom: -30% !important; }
  .ml-md-n30p,
  .mx-md-n30p {
    margin-left: -30% !important; }
  .m-md-n40p {
    margin: -40% !important; }
  .mt-md-n40p,
  .my-md-n40p {
    margin-top: -40% !important; }
  .mr-md-n40p,
  .mx-md-n40p {
    margin-right: -40% !important; }
  .mb-md-n40p,
  .my-md-n40p {
    margin-bottom: -40% !important; }
  .ml-md-n40p,
  .mx-md-n40p {
    margin-left: -40% !important; }
  .m-md-n50p {
    margin: -50% !important; }
  .mt-md-n50p,
  .my-md-n50p {
    margin-top: -50% !important; }
  .mr-md-n50p,
  .mx-md-n50p {
    margin-right: -50% !important; }
  .mb-md-n50p,
  .my-md-n50p {
    margin-bottom: -50% !important; }
  .ml-md-n50p,
  .mx-md-n50p {
    margin-left: -50% !important; }
  .m-md-n60p {
    margin: -60% !important; }
  .mt-md-n60p,
  .my-md-n60p {
    margin-top: -60% !important; }
  .mr-md-n60p,
  .mx-md-n60p {
    margin-right: -60% !important; }
  .mb-md-n60p,
  .my-md-n60p {
    margin-bottom: -60% !important; }
  .ml-md-n60p,
  .mx-md-n60p {
    margin-left: -60% !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.25rem !important; }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important; }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important; }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important; }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important; }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important; }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important; }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important; }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important; }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important; }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important; }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important; }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important; }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important; }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important; }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important; }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important; }
  .m-lg-4-5 {
    margin: 4.5rem !important; }
  .mt-lg-4-5,
  .my-lg-4-5 {
    margin-top: 4.5rem !important; }
  .mr-lg-4-5,
  .mx-lg-4-5 {
    margin-right: 4.5rem !important; }
  .mb-lg-4-5,
  .my-lg-4-5 {
    margin-bottom: 4.5rem !important; }
  .ml-lg-4-5,
  .mx-lg-4-5 {
    margin-left: 4.5rem !important; }
  .m-lg-5-5 {
    margin: 4rem !important; }
  .mt-lg-5-5,
  .my-lg-5-5 {
    margin-top: 4rem !important; }
  .mr-lg-5-5,
  .mx-lg-5-5 {
    margin-right: 4rem !important; }
  .mb-lg-5-5,
  .my-lg-5-5 {
    margin-bottom: 4rem !important; }
  .ml-lg-5-5,
  .mx-lg-5-5 {
    margin-left: 4rem !important; }
  .m-lg-6 {
    margin: 6rem !important; }
  .mt-lg-6,
  .my-lg-6 {
    margin-top: 6rem !important; }
  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 6rem !important; }
  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 6rem !important; }
  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 6rem !important; }
  .m-lg-7 {
    margin: 7rem !important; }
  .mt-lg-7,
  .my-lg-7 {
    margin-top: 7rem !important; }
  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 7rem !important; }
  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 7rem !important; }
  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 7rem !important; }
  .m-lg-8 {
    margin: 8rem !important; }
  .mt-lg-8,
  .my-lg-8 {
    margin-top: 8rem !important; }
  .mr-lg-8,
  .mx-lg-8 {
    margin-right: 8rem !important; }
  .mb-lg-8,
  .my-lg-8 {
    margin-bottom: 8rem !important; }
  .ml-lg-8,
  .mx-lg-8 {
    margin-left: 8rem !important; }
  .m-lg-9 {
    margin: 9rem !important; }
  .mt-lg-9,
  .my-lg-9 {
    margin-top: 9rem !important; }
  .mr-lg-9,
  .mx-lg-9 {
    margin-right: 9rem !important; }
  .mb-lg-9,
  .my-lg-9 {
    margin-bottom: 9rem !important; }
  .ml-lg-9,
  .mx-lg-9 {
    margin-left: 9rem !important; }
  .m-lg-10 {
    margin: 10rem !important; }
  .mt-lg-10,
  .my-lg-10 {
    margin-top: 10rem !important; }
  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 10rem !important; }
  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 10rem !important; }
  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 10rem !important; }
  .m-lg-15 {
    margin: 15rem !important; }
  .mt-lg-15,
  .my-lg-15 {
    margin-top: 15rem !important; }
  .mr-lg-15,
  .mx-lg-15 {
    margin-right: 15rem !important; }
  .mb-lg-15,
  .my-lg-15 {
    margin-bottom: 15rem !important; }
  .ml-lg-15,
  .mx-lg-15 {
    margin-left: 15rem !important; }
  .m-lg-20 {
    margin: 20rem !important; }
  .mt-lg-20,
  .my-lg-20 {
    margin-top: 20rem !important; }
  .mr-lg-20,
  .mx-lg-20 {
    margin-right: 20rem !important; }
  .mb-lg-20,
  .my-lg-20 {
    margin-bottom: 20rem !important; }
  .ml-lg-20,
  .mx-lg-20 {
    margin-left: 20rem !important; }
  .m-lg-25 {
    margin: 25rem !important; }
  .mt-lg-25,
  .my-lg-25 {
    margin-top: 25rem !important; }
  .mr-lg-25,
  .mx-lg-25 {
    margin-right: 25rem !important; }
  .mb-lg-25,
  .my-lg-25 {
    margin-bottom: 25rem !important; }
  .ml-lg-25,
  .mx-lg-25 {
    margin-left: 25rem !important; }
  .m-lg-10p {
    margin: 10% !important; }
  .mt-lg-10p,
  .my-lg-10p {
    margin-top: 10% !important; }
  .mr-lg-10p,
  .mx-lg-10p {
    margin-right: 10% !important; }
  .mb-lg-10p,
  .my-lg-10p {
    margin-bottom: 10% !important; }
  .ml-lg-10p,
  .mx-lg-10p {
    margin-left: 10% !important; }
  .m-lg-15p {
    margin: 15% !important; }
  .mt-lg-15p,
  .my-lg-15p {
    margin-top: 15% !important; }
  .mr-lg-15p,
  .mx-lg-15p {
    margin-right: 15% !important; }
  .mb-lg-15p,
  .my-lg-15p {
    margin-bottom: 15% !important; }
  .ml-lg-15p,
  .mx-lg-15p {
    margin-left: 15% !important; }
  .m-lg-20p {
    margin: 20% !important; }
  .mt-lg-20p,
  .my-lg-20p {
    margin-top: 20% !important; }
  .mr-lg-20p,
  .mx-lg-20p {
    margin-right: 20% !important; }
  .mb-lg-20p,
  .my-lg-20p {
    margin-bottom: 20% !important; }
  .ml-lg-20p,
  .mx-lg-20p {
    margin-left: 20% !important; }
  .m-lg-25p {
    margin: 25% !important; }
  .mt-lg-25p,
  .my-lg-25p {
    margin-top: 25% !important; }
  .mr-lg-25p,
  .mx-lg-25p {
    margin-right: 25% !important; }
  .mb-lg-25p,
  .my-lg-25p {
    margin-bottom: 25% !important; }
  .ml-lg-25p,
  .mx-lg-25p {
    margin-left: 25% !important; }
  .m-lg-30p {
    margin: 30% !important; }
  .mt-lg-30p,
  .my-lg-30p {
    margin-top: 30% !important; }
  .mr-lg-30p,
  .mx-lg-30p {
    margin-right: 30% !important; }
  .mb-lg-30p,
  .my-lg-30p {
    margin-bottom: 30% !important; }
  .ml-lg-30p,
  .mx-lg-30p {
    margin-left: 30% !important; }
  .m-lg-40p {
    margin: 40% !important; }
  .mt-lg-40p,
  .my-lg-40p {
    margin-top: 40% !important; }
  .mr-lg-40p,
  .mx-lg-40p {
    margin-right: 40% !important; }
  .mb-lg-40p,
  .my-lg-40p {
    margin-bottom: 40% !important; }
  .ml-lg-40p,
  .mx-lg-40p {
    margin-left: 40% !important; }
  .m-lg-50p {
    margin: 50% !important; }
  .mt-lg-50p,
  .my-lg-50p {
    margin-top: 50% !important; }
  .mr-lg-50p,
  .mx-lg-50p {
    margin-right: 50% !important; }
  .mb-lg-50p,
  .my-lg-50p {
    margin-bottom: 50% !important; }
  .ml-lg-50p,
  .mx-lg-50p {
    margin-left: 50% !important; }
  .m-lg-60p {
    margin: 60% !important; }
  .mt-lg-60p,
  .my-lg-60p {
    margin-top: 60% !important; }
  .mr-lg-60p,
  .mx-lg-60p {
    margin-right: 60% !important; }
  .mb-lg-60p,
  .my-lg-60p {
    margin-bottom: 60% !important; }
  .ml-lg-60p,
  .mx-lg-60p {
    margin-left: 60% !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.25rem !important; }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important; }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important; }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important; }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important; }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important; }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important; }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important; }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important; }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important; }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important; }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important; }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important; }
  .p-lg-4-5 {
    padding: 4.5rem !important; }
  .pt-lg-4-5,
  .py-lg-4-5 {
    padding-top: 4.5rem !important; }
  .pr-lg-4-5,
  .px-lg-4-5 {
    padding-right: 4.5rem !important; }
  .pb-lg-4-5,
  .py-lg-4-5 {
    padding-bottom: 4.5rem !important; }
  .pl-lg-4-5,
  .px-lg-4-5 {
    padding-left: 4.5rem !important; }
  .p-lg-5-5 {
    padding: 4rem !important; }
  .pt-lg-5-5,
  .py-lg-5-5 {
    padding-top: 4rem !important; }
  .pr-lg-5-5,
  .px-lg-5-5 {
    padding-right: 4rem !important; }
  .pb-lg-5-5,
  .py-lg-5-5 {
    padding-bottom: 4rem !important; }
  .pl-lg-5-5,
  .px-lg-5-5 {
    padding-left: 4rem !important; }
  .p-lg-6 {
    padding: 6rem !important; }
  .pt-lg-6,
  .py-lg-6 {
    padding-top: 6rem !important; }
  .pr-lg-6,
  .px-lg-6 {
    padding-right: 6rem !important; }
  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 6rem !important; }
  .pl-lg-6,
  .px-lg-6 {
    padding-left: 6rem !important; }
  .p-lg-7 {
    padding: 7rem !important; }
  .pt-lg-7,
  .py-lg-7 {
    padding-top: 7rem !important; }
  .pr-lg-7,
  .px-lg-7 {
    padding-right: 7rem !important; }
  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 7rem !important; }
  .pl-lg-7,
  .px-lg-7 {
    padding-left: 7rem !important; }
  .p-lg-8 {
    padding: 8rem !important; }
  .pt-lg-8,
  .py-lg-8 {
    padding-top: 8rem !important; }
  .pr-lg-8,
  .px-lg-8 {
    padding-right: 8rem !important; }
  .pb-lg-8,
  .py-lg-8 {
    padding-bottom: 8rem !important; }
  .pl-lg-8,
  .px-lg-8 {
    padding-left: 8rem !important; }
  .p-lg-9 {
    padding: 9rem !important; }
  .pt-lg-9,
  .py-lg-9 {
    padding-top: 9rem !important; }
  .pr-lg-9,
  .px-lg-9 {
    padding-right: 9rem !important; }
  .pb-lg-9,
  .py-lg-9 {
    padding-bottom: 9rem !important; }
  .pl-lg-9,
  .px-lg-9 {
    padding-left: 9rem !important; }
  .p-lg-10 {
    padding: 10rem !important; }
  .pt-lg-10,
  .py-lg-10 {
    padding-top: 10rem !important; }
  .pr-lg-10,
  .px-lg-10 {
    padding-right: 10rem !important; }
  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 10rem !important; }
  .pl-lg-10,
  .px-lg-10 {
    padding-left: 10rem !important; }
  .p-lg-15 {
    padding: 15rem !important; }
  .pt-lg-15,
  .py-lg-15 {
    padding-top: 15rem !important; }
  .pr-lg-15,
  .px-lg-15 {
    padding-right: 15rem !important; }
  .pb-lg-15,
  .py-lg-15 {
    padding-bottom: 15rem !important; }
  .pl-lg-15,
  .px-lg-15 {
    padding-left: 15rem !important; }
  .p-lg-20 {
    padding: 20rem !important; }
  .pt-lg-20,
  .py-lg-20 {
    padding-top: 20rem !important; }
  .pr-lg-20,
  .px-lg-20 {
    padding-right: 20rem !important; }
  .pb-lg-20,
  .py-lg-20 {
    padding-bottom: 20rem !important; }
  .pl-lg-20,
  .px-lg-20 {
    padding-left: 20rem !important; }
  .p-lg-25 {
    padding: 25rem !important; }
  .pt-lg-25,
  .py-lg-25 {
    padding-top: 25rem !important; }
  .pr-lg-25,
  .px-lg-25 {
    padding-right: 25rem !important; }
  .pb-lg-25,
  .py-lg-25 {
    padding-bottom: 25rem !important; }
  .pl-lg-25,
  .px-lg-25 {
    padding-left: 25rem !important; }
  .p-lg-10p {
    padding: 10% !important; }
  .pt-lg-10p,
  .py-lg-10p {
    padding-top: 10% !important; }
  .pr-lg-10p,
  .px-lg-10p {
    padding-right: 10% !important; }
  .pb-lg-10p,
  .py-lg-10p {
    padding-bottom: 10% !important; }
  .pl-lg-10p,
  .px-lg-10p {
    padding-left: 10% !important; }
  .p-lg-15p {
    padding: 15% !important; }
  .pt-lg-15p,
  .py-lg-15p {
    padding-top: 15% !important; }
  .pr-lg-15p,
  .px-lg-15p {
    padding-right: 15% !important; }
  .pb-lg-15p,
  .py-lg-15p {
    padding-bottom: 15% !important; }
  .pl-lg-15p,
  .px-lg-15p {
    padding-left: 15% !important; }
  .p-lg-20p {
    padding: 20% !important; }
  .pt-lg-20p,
  .py-lg-20p {
    padding-top: 20% !important; }
  .pr-lg-20p,
  .px-lg-20p {
    padding-right: 20% !important; }
  .pb-lg-20p,
  .py-lg-20p {
    padding-bottom: 20% !important; }
  .pl-lg-20p,
  .px-lg-20p {
    padding-left: 20% !important; }
  .p-lg-25p {
    padding: 25% !important; }
  .pt-lg-25p,
  .py-lg-25p {
    padding-top: 25% !important; }
  .pr-lg-25p,
  .px-lg-25p {
    padding-right: 25% !important; }
  .pb-lg-25p,
  .py-lg-25p {
    padding-bottom: 25% !important; }
  .pl-lg-25p,
  .px-lg-25p {
    padding-left: 25% !important; }
  .p-lg-30p {
    padding: 30% !important; }
  .pt-lg-30p,
  .py-lg-30p {
    padding-top: 30% !important; }
  .pr-lg-30p,
  .px-lg-30p {
    padding-right: 30% !important; }
  .pb-lg-30p,
  .py-lg-30p {
    padding-bottom: 30% !important; }
  .pl-lg-30p,
  .px-lg-30p {
    padding-left: 30% !important; }
  .p-lg-40p {
    padding: 40% !important; }
  .pt-lg-40p,
  .py-lg-40p {
    padding-top: 40% !important; }
  .pr-lg-40p,
  .px-lg-40p {
    padding-right: 40% !important; }
  .pb-lg-40p,
  .py-lg-40p {
    padding-bottom: 40% !important; }
  .pl-lg-40p,
  .px-lg-40p {
    padding-left: 40% !important; }
  .p-lg-50p {
    padding: 50% !important; }
  .pt-lg-50p,
  .py-lg-50p {
    padding-top: 50% !important; }
  .pr-lg-50p,
  .px-lg-50p {
    padding-right: 50% !important; }
  .pb-lg-50p,
  .py-lg-50p {
    padding-bottom: 50% !important; }
  .pl-lg-50p,
  .px-lg-50p {
    padding-left: 50% !important; }
  .p-lg-60p {
    padding: 60% !important; }
  .pt-lg-60p,
  .py-lg-60p {
    padding-top: 60% !important; }
  .pr-lg-60p,
  .px-lg-60p {
    padding-right: 60% !important; }
  .pb-lg-60p,
  .py-lg-60p {
    padding-bottom: 60% !important; }
  .pl-lg-60p,
  .px-lg-60p {
    padding-left: 60% !important; }
  .m-lg-n1 {
    margin: -0.25rem !important; }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important; }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important; }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important; }
  .m-lg-n2 {
    margin: -0.5rem !important; }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important; }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important; }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important; }
  .m-lg-n3 {
    margin: -1rem !important; }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important; }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important; }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important; }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important; }
  .m-lg-n4 {
    margin: -1.5rem !important; }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important; }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important; }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important; }
  .m-lg-n5 {
    margin: -3rem !important; }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important; }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important; }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important; }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important; }
  .m-lg-n4-5 {
    margin: -4.5rem !important; }
  .mt-lg-n4-5,
  .my-lg-n4-5 {
    margin-top: -4.5rem !important; }
  .mr-lg-n4-5,
  .mx-lg-n4-5 {
    margin-right: -4.5rem !important; }
  .mb-lg-n4-5,
  .my-lg-n4-5 {
    margin-bottom: -4.5rem !important; }
  .ml-lg-n4-5,
  .mx-lg-n4-5 {
    margin-left: -4.5rem !important; }
  .m-lg-n5-5 {
    margin: -4rem !important; }
  .mt-lg-n5-5,
  .my-lg-n5-5 {
    margin-top: -4rem !important; }
  .mr-lg-n5-5,
  .mx-lg-n5-5 {
    margin-right: -4rem !important; }
  .mb-lg-n5-5,
  .my-lg-n5-5 {
    margin-bottom: -4rem !important; }
  .ml-lg-n5-5,
  .mx-lg-n5-5 {
    margin-left: -4rem !important; }
  .m-lg-n6 {
    margin: -6rem !important; }
  .mt-lg-n6,
  .my-lg-n6 {
    margin-top: -6rem !important; }
  .mr-lg-n6,
  .mx-lg-n6 {
    margin-right: -6rem !important; }
  .mb-lg-n6,
  .my-lg-n6 {
    margin-bottom: -6rem !important; }
  .ml-lg-n6,
  .mx-lg-n6 {
    margin-left: -6rem !important; }
  .m-lg-n7 {
    margin: -7rem !important; }
  .mt-lg-n7,
  .my-lg-n7 {
    margin-top: -7rem !important; }
  .mr-lg-n7,
  .mx-lg-n7 {
    margin-right: -7rem !important; }
  .mb-lg-n7,
  .my-lg-n7 {
    margin-bottom: -7rem !important; }
  .ml-lg-n7,
  .mx-lg-n7 {
    margin-left: -7rem !important; }
  .m-lg-n8 {
    margin: -8rem !important; }
  .mt-lg-n8,
  .my-lg-n8 {
    margin-top: -8rem !important; }
  .mr-lg-n8,
  .mx-lg-n8 {
    margin-right: -8rem !important; }
  .mb-lg-n8,
  .my-lg-n8 {
    margin-bottom: -8rem !important; }
  .ml-lg-n8,
  .mx-lg-n8 {
    margin-left: -8rem !important; }
  .m-lg-n9 {
    margin: -9rem !important; }
  .mt-lg-n9,
  .my-lg-n9 {
    margin-top: -9rem !important; }
  .mr-lg-n9,
  .mx-lg-n9 {
    margin-right: -9rem !important; }
  .mb-lg-n9,
  .my-lg-n9 {
    margin-bottom: -9rem !important; }
  .ml-lg-n9,
  .mx-lg-n9 {
    margin-left: -9rem !important; }
  .m-lg-n10 {
    margin: -10rem !important; }
  .mt-lg-n10,
  .my-lg-n10 {
    margin-top: -10rem !important; }
  .mr-lg-n10,
  .mx-lg-n10 {
    margin-right: -10rem !important; }
  .mb-lg-n10,
  .my-lg-n10 {
    margin-bottom: -10rem !important; }
  .ml-lg-n10,
  .mx-lg-n10 {
    margin-left: -10rem !important; }
  .m-lg-n15 {
    margin: -15rem !important; }
  .mt-lg-n15,
  .my-lg-n15 {
    margin-top: -15rem !important; }
  .mr-lg-n15,
  .mx-lg-n15 {
    margin-right: -15rem !important; }
  .mb-lg-n15,
  .my-lg-n15 {
    margin-bottom: -15rem !important; }
  .ml-lg-n15,
  .mx-lg-n15 {
    margin-left: -15rem !important; }
  .m-lg-n20 {
    margin: -20rem !important; }
  .mt-lg-n20,
  .my-lg-n20 {
    margin-top: -20rem !important; }
  .mr-lg-n20,
  .mx-lg-n20 {
    margin-right: -20rem !important; }
  .mb-lg-n20,
  .my-lg-n20 {
    margin-bottom: -20rem !important; }
  .ml-lg-n20,
  .mx-lg-n20 {
    margin-left: -20rem !important; }
  .m-lg-n25 {
    margin: -25rem !important; }
  .mt-lg-n25,
  .my-lg-n25 {
    margin-top: -25rem !important; }
  .mr-lg-n25,
  .mx-lg-n25 {
    margin-right: -25rem !important; }
  .mb-lg-n25,
  .my-lg-n25 {
    margin-bottom: -25rem !important; }
  .ml-lg-n25,
  .mx-lg-n25 {
    margin-left: -25rem !important; }
  .m-lg-n10p {
    margin: -10% !important; }
  .mt-lg-n10p,
  .my-lg-n10p {
    margin-top: -10% !important; }
  .mr-lg-n10p,
  .mx-lg-n10p {
    margin-right: -10% !important; }
  .mb-lg-n10p,
  .my-lg-n10p {
    margin-bottom: -10% !important; }
  .ml-lg-n10p,
  .mx-lg-n10p {
    margin-left: -10% !important; }
  .m-lg-n15p {
    margin: -15% !important; }
  .mt-lg-n15p,
  .my-lg-n15p {
    margin-top: -15% !important; }
  .mr-lg-n15p,
  .mx-lg-n15p {
    margin-right: -15% !important; }
  .mb-lg-n15p,
  .my-lg-n15p {
    margin-bottom: -15% !important; }
  .ml-lg-n15p,
  .mx-lg-n15p {
    margin-left: -15% !important; }
  .m-lg-n20p {
    margin: -20% !important; }
  .mt-lg-n20p,
  .my-lg-n20p {
    margin-top: -20% !important; }
  .mr-lg-n20p,
  .mx-lg-n20p {
    margin-right: -20% !important; }
  .mb-lg-n20p,
  .my-lg-n20p {
    margin-bottom: -20% !important; }
  .ml-lg-n20p,
  .mx-lg-n20p {
    margin-left: -20% !important; }
  .m-lg-n25p {
    margin: -25% !important; }
  .mt-lg-n25p,
  .my-lg-n25p {
    margin-top: -25% !important; }
  .mr-lg-n25p,
  .mx-lg-n25p {
    margin-right: -25% !important; }
  .mb-lg-n25p,
  .my-lg-n25p {
    margin-bottom: -25% !important; }
  .ml-lg-n25p,
  .mx-lg-n25p {
    margin-left: -25% !important; }
  .m-lg-n30p {
    margin: -30% !important; }
  .mt-lg-n30p,
  .my-lg-n30p {
    margin-top: -30% !important; }
  .mr-lg-n30p,
  .mx-lg-n30p {
    margin-right: -30% !important; }
  .mb-lg-n30p,
  .my-lg-n30p {
    margin-bottom: -30% !important; }
  .ml-lg-n30p,
  .mx-lg-n30p {
    margin-left: -30% !important; }
  .m-lg-n40p {
    margin: -40% !important; }
  .mt-lg-n40p,
  .my-lg-n40p {
    margin-top: -40% !important; }
  .mr-lg-n40p,
  .mx-lg-n40p {
    margin-right: -40% !important; }
  .mb-lg-n40p,
  .my-lg-n40p {
    margin-bottom: -40% !important; }
  .ml-lg-n40p,
  .mx-lg-n40p {
    margin-left: -40% !important; }
  .m-lg-n50p {
    margin: -50% !important; }
  .mt-lg-n50p,
  .my-lg-n50p {
    margin-top: -50% !important; }
  .mr-lg-n50p,
  .mx-lg-n50p {
    margin-right: -50% !important; }
  .mb-lg-n50p,
  .my-lg-n50p {
    margin-bottom: -50% !important; }
  .ml-lg-n50p,
  .mx-lg-n50p {
    margin-left: -50% !important; }
  .m-lg-n60p {
    margin: -60% !important; }
  .mt-lg-n60p,
  .my-lg-n60p {
    margin-top: -60% !important; }
  .mr-lg-n60p,
  .mx-lg-n60p {
    margin-right: -60% !important; }
  .mb-lg-n60p,
  .my-lg-n60p {
    margin-bottom: -60% !important; }
  .ml-lg-n60p,
  .mx-lg-n60p {
    margin-left: -60% !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: 1230px) {
  .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.25rem !important; }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important; }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important; }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important; }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important; }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem !important; }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important; }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important; }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important; }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important; }
  .m-xl-4 {
    margin: 1.5rem !important; }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important; }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important; }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important; }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important; }
  .m-xl-5 {
    margin: 3rem !important; }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important; }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important; }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important; }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important; }
  .m-xl-4-5 {
    margin: 4.5rem !important; }
  .mt-xl-4-5,
  .my-xl-4-5 {
    margin-top: 4.5rem !important; }
  .mr-xl-4-5,
  .mx-xl-4-5 {
    margin-right: 4.5rem !important; }
  .mb-xl-4-5,
  .my-xl-4-5 {
    margin-bottom: 4.5rem !important; }
  .ml-xl-4-5,
  .mx-xl-4-5 {
    margin-left: 4.5rem !important; }
  .m-xl-5-5 {
    margin: 4rem !important; }
  .mt-xl-5-5,
  .my-xl-5-5 {
    margin-top: 4rem !important; }
  .mr-xl-5-5,
  .mx-xl-5-5 {
    margin-right: 4rem !important; }
  .mb-xl-5-5,
  .my-xl-5-5 {
    margin-bottom: 4rem !important; }
  .ml-xl-5-5,
  .mx-xl-5-5 {
    margin-left: 4rem !important; }
  .m-xl-6 {
    margin: 6rem !important; }
  .mt-xl-6,
  .my-xl-6 {
    margin-top: 6rem !important; }
  .mr-xl-6,
  .mx-xl-6 {
    margin-right: 6rem !important; }
  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 6rem !important; }
  .ml-xl-6,
  .mx-xl-6 {
    margin-left: 6rem !important; }
  .m-xl-7 {
    margin: 7rem !important; }
  .mt-xl-7,
  .my-xl-7 {
    margin-top: 7rem !important; }
  .mr-xl-7,
  .mx-xl-7 {
    margin-right: 7rem !important; }
  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 7rem !important; }
  .ml-xl-7,
  .mx-xl-7 {
    margin-left: 7rem !important; }
  .m-xl-8 {
    margin: 8rem !important; }
  .mt-xl-8,
  .my-xl-8 {
    margin-top: 8rem !important; }
  .mr-xl-8,
  .mx-xl-8 {
    margin-right: 8rem !important; }
  .mb-xl-8,
  .my-xl-8 {
    margin-bottom: 8rem !important; }
  .ml-xl-8,
  .mx-xl-8 {
    margin-left: 8rem !important; }
  .m-xl-9 {
    margin: 9rem !important; }
  .mt-xl-9,
  .my-xl-9 {
    margin-top: 9rem !important; }
  .mr-xl-9,
  .mx-xl-9 {
    margin-right: 9rem !important; }
  .mb-xl-9,
  .my-xl-9 {
    margin-bottom: 9rem !important; }
  .ml-xl-9,
  .mx-xl-9 {
    margin-left: 9rem !important; }
  .m-xl-10 {
    margin: 10rem !important; }
  .mt-xl-10,
  .my-xl-10 {
    margin-top: 10rem !important; }
  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 10rem !important; }
  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 10rem !important; }
  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 10rem !important; }
  .m-xl-15 {
    margin: 15rem !important; }
  .mt-xl-15,
  .my-xl-15 {
    margin-top: 15rem !important; }
  .mr-xl-15,
  .mx-xl-15 {
    margin-right: 15rem !important; }
  .mb-xl-15,
  .my-xl-15 {
    margin-bottom: 15rem !important; }
  .ml-xl-15,
  .mx-xl-15 {
    margin-left: 15rem !important; }
  .m-xl-20 {
    margin: 20rem !important; }
  .mt-xl-20,
  .my-xl-20 {
    margin-top: 20rem !important; }
  .mr-xl-20,
  .mx-xl-20 {
    margin-right: 20rem !important; }
  .mb-xl-20,
  .my-xl-20 {
    margin-bottom: 20rem !important; }
  .ml-xl-20,
  .mx-xl-20 {
    margin-left: 20rem !important; }
  .m-xl-25 {
    margin: 25rem !important; }
  .mt-xl-25,
  .my-xl-25 {
    margin-top: 25rem !important; }
  .mr-xl-25,
  .mx-xl-25 {
    margin-right: 25rem !important; }
  .mb-xl-25,
  .my-xl-25 {
    margin-bottom: 25rem !important; }
  .ml-xl-25,
  .mx-xl-25 {
    margin-left: 25rem !important; }
  .m-xl-10p {
    margin: 10% !important; }
  .mt-xl-10p,
  .my-xl-10p {
    margin-top: 10% !important; }
  .mr-xl-10p,
  .mx-xl-10p {
    margin-right: 10% !important; }
  .mb-xl-10p,
  .my-xl-10p {
    margin-bottom: 10% !important; }
  .ml-xl-10p,
  .mx-xl-10p {
    margin-left: 10% !important; }
  .m-xl-15p {
    margin: 15% !important; }
  .mt-xl-15p,
  .my-xl-15p {
    margin-top: 15% !important; }
  .mr-xl-15p,
  .mx-xl-15p {
    margin-right: 15% !important; }
  .mb-xl-15p,
  .my-xl-15p {
    margin-bottom: 15% !important; }
  .ml-xl-15p,
  .mx-xl-15p {
    margin-left: 15% !important; }
  .m-xl-20p {
    margin: 20% !important; }
  .mt-xl-20p,
  .my-xl-20p {
    margin-top: 20% !important; }
  .mr-xl-20p,
  .mx-xl-20p {
    margin-right: 20% !important; }
  .mb-xl-20p,
  .my-xl-20p {
    margin-bottom: 20% !important; }
  .ml-xl-20p,
  .mx-xl-20p {
    margin-left: 20% !important; }
  .m-xl-25p {
    margin: 25% !important; }
  .mt-xl-25p,
  .my-xl-25p {
    margin-top: 25% !important; }
  .mr-xl-25p,
  .mx-xl-25p {
    margin-right: 25% !important; }
  .mb-xl-25p,
  .my-xl-25p {
    margin-bottom: 25% !important; }
  .ml-xl-25p,
  .mx-xl-25p {
    margin-left: 25% !important; }
  .m-xl-30p {
    margin: 30% !important; }
  .mt-xl-30p,
  .my-xl-30p {
    margin-top: 30% !important; }
  .mr-xl-30p,
  .mx-xl-30p {
    margin-right: 30% !important; }
  .mb-xl-30p,
  .my-xl-30p {
    margin-bottom: 30% !important; }
  .ml-xl-30p,
  .mx-xl-30p {
    margin-left: 30% !important; }
  .m-xl-40p {
    margin: 40% !important; }
  .mt-xl-40p,
  .my-xl-40p {
    margin-top: 40% !important; }
  .mr-xl-40p,
  .mx-xl-40p {
    margin-right: 40% !important; }
  .mb-xl-40p,
  .my-xl-40p {
    margin-bottom: 40% !important; }
  .ml-xl-40p,
  .mx-xl-40p {
    margin-left: 40% !important; }
  .m-xl-50p {
    margin: 50% !important; }
  .mt-xl-50p,
  .my-xl-50p {
    margin-top: 50% !important; }
  .mr-xl-50p,
  .mx-xl-50p {
    margin-right: 50% !important; }
  .mb-xl-50p,
  .my-xl-50p {
    margin-bottom: 50% !important; }
  .ml-xl-50p,
  .mx-xl-50p {
    margin-left: 50% !important; }
  .m-xl-60p {
    margin: 60% !important; }
  .mt-xl-60p,
  .my-xl-60p {
    margin-top: 60% !important; }
  .mr-xl-60p,
  .mx-xl-60p {
    margin-right: 60% !important; }
  .mb-xl-60p,
  .my-xl-60p {
    margin-bottom: 60% !important; }
  .ml-xl-60p,
  .mx-xl-60p {
    margin-left: 60% !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.25rem !important; }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important; }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important; }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important; }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important; }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem !important; }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important; }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important; }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important; }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important; }
  .p-xl-4 {
    padding: 1.5rem !important; }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important; }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important; }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important; }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important; }
  .p-xl-5 {
    padding: 3rem !important; }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important; }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important; }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important; }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important; }
  .p-xl-4-5 {
    padding: 4.5rem !important; }
  .pt-xl-4-5,
  .py-xl-4-5 {
    padding-top: 4.5rem !important; }
  .pr-xl-4-5,
  .px-xl-4-5 {
    padding-right: 4.5rem !important; }
  .pb-xl-4-5,
  .py-xl-4-5 {
    padding-bottom: 4.5rem !important; }
  .pl-xl-4-5,
  .px-xl-4-5 {
    padding-left: 4.5rem !important; }
  .p-xl-5-5 {
    padding: 4rem !important; }
  .pt-xl-5-5,
  .py-xl-5-5 {
    padding-top: 4rem !important; }
  .pr-xl-5-5,
  .px-xl-5-5 {
    padding-right: 4rem !important; }
  .pb-xl-5-5,
  .py-xl-5-5 {
    padding-bottom: 4rem !important; }
  .pl-xl-5-5,
  .px-xl-5-5 {
    padding-left: 4rem !important; }
  .p-xl-6 {
    padding: 6rem !important; }
  .pt-xl-6,
  .py-xl-6 {
    padding-top: 6rem !important; }
  .pr-xl-6,
  .px-xl-6 {
    padding-right: 6rem !important; }
  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 6rem !important; }
  .pl-xl-6,
  .px-xl-6 {
    padding-left: 6rem !important; }
  .p-xl-7 {
    padding: 7rem !important; }
  .pt-xl-7,
  .py-xl-7 {
    padding-top: 7rem !important; }
  .pr-xl-7,
  .px-xl-7 {
    padding-right: 7rem !important; }
  .pb-xl-7,
  .py-xl-7 {
    padding-bottom: 7rem !important; }
  .pl-xl-7,
  .px-xl-7 {
    padding-left: 7rem !important; }
  .p-xl-8 {
    padding: 8rem !important; }
  .pt-xl-8,
  .py-xl-8 {
    padding-top: 8rem !important; }
  .pr-xl-8,
  .px-xl-8 {
    padding-right: 8rem !important; }
  .pb-xl-8,
  .py-xl-8 {
    padding-bottom: 8rem !important; }
  .pl-xl-8,
  .px-xl-8 {
    padding-left: 8rem !important; }
  .p-xl-9 {
    padding: 9rem !important; }
  .pt-xl-9,
  .py-xl-9 {
    padding-top: 9rem !important; }
  .pr-xl-9,
  .px-xl-9 {
    padding-right: 9rem !important; }
  .pb-xl-9,
  .py-xl-9 {
    padding-bottom: 9rem !important; }
  .pl-xl-9,
  .px-xl-9 {
    padding-left: 9rem !important; }
  .p-xl-10 {
    padding: 10rem !important; }
  .pt-xl-10,
  .py-xl-10 {
    padding-top: 10rem !important; }
  .pr-xl-10,
  .px-xl-10 {
    padding-right: 10rem !important; }
  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 10rem !important; }
  .pl-xl-10,
  .px-xl-10 {
    padding-left: 10rem !important; }
  .p-xl-15 {
    padding: 15rem !important; }
  .pt-xl-15,
  .py-xl-15 {
    padding-top: 15rem !important; }
  .pr-xl-15,
  .px-xl-15 {
    padding-right: 15rem !important; }
  .pb-xl-15,
  .py-xl-15 {
    padding-bottom: 15rem !important; }
  .pl-xl-15,
  .px-xl-15 {
    padding-left: 15rem !important; }
  .p-xl-20 {
    padding: 20rem !important; }
  .pt-xl-20,
  .py-xl-20 {
    padding-top: 20rem !important; }
  .pr-xl-20,
  .px-xl-20 {
    padding-right: 20rem !important; }
  .pb-xl-20,
  .py-xl-20 {
    padding-bottom: 20rem !important; }
  .pl-xl-20,
  .px-xl-20 {
    padding-left: 20rem !important; }
  .p-xl-25 {
    padding: 25rem !important; }
  .pt-xl-25,
  .py-xl-25 {
    padding-top: 25rem !important; }
  .pr-xl-25,
  .px-xl-25 {
    padding-right: 25rem !important; }
  .pb-xl-25,
  .py-xl-25 {
    padding-bottom: 25rem !important; }
  .pl-xl-25,
  .px-xl-25 {
    padding-left: 25rem !important; }
  .p-xl-10p {
    padding: 10% !important; }
  .pt-xl-10p,
  .py-xl-10p {
    padding-top: 10% !important; }
  .pr-xl-10p,
  .px-xl-10p {
    padding-right: 10% !important; }
  .pb-xl-10p,
  .py-xl-10p {
    padding-bottom: 10% !important; }
  .pl-xl-10p,
  .px-xl-10p {
    padding-left: 10% !important; }
  .p-xl-15p {
    padding: 15% !important; }
  .pt-xl-15p,
  .py-xl-15p {
    padding-top: 15% !important; }
  .pr-xl-15p,
  .px-xl-15p {
    padding-right: 15% !important; }
  .pb-xl-15p,
  .py-xl-15p {
    padding-bottom: 15% !important; }
  .pl-xl-15p,
  .px-xl-15p {
    padding-left: 15% !important; }
  .p-xl-20p {
    padding: 20% !important; }
  .pt-xl-20p,
  .py-xl-20p {
    padding-top: 20% !important; }
  .pr-xl-20p,
  .px-xl-20p {
    padding-right: 20% !important; }
  .pb-xl-20p,
  .py-xl-20p {
    padding-bottom: 20% !important; }
  .pl-xl-20p,
  .px-xl-20p {
    padding-left: 20% !important; }
  .p-xl-25p {
    padding: 25% !important; }
  .pt-xl-25p,
  .py-xl-25p {
    padding-top: 25% !important; }
  .pr-xl-25p,
  .px-xl-25p {
    padding-right: 25% !important; }
  .pb-xl-25p,
  .py-xl-25p {
    padding-bottom: 25% !important; }
  .pl-xl-25p,
  .px-xl-25p {
    padding-left: 25% !important; }
  .p-xl-30p {
    padding: 30% !important; }
  .pt-xl-30p,
  .py-xl-30p {
    padding-top: 30% !important; }
  .pr-xl-30p,
  .px-xl-30p {
    padding-right: 30% !important; }
  .pb-xl-30p,
  .py-xl-30p {
    padding-bottom: 30% !important; }
  .pl-xl-30p,
  .px-xl-30p {
    padding-left: 30% !important; }
  .p-xl-40p {
    padding: 40% !important; }
  .pt-xl-40p,
  .py-xl-40p {
    padding-top: 40% !important; }
  .pr-xl-40p,
  .px-xl-40p {
    padding-right: 40% !important; }
  .pb-xl-40p,
  .py-xl-40p {
    padding-bottom: 40% !important; }
  .pl-xl-40p,
  .px-xl-40p {
    padding-left: 40% !important; }
  .p-xl-50p {
    padding: 50% !important; }
  .pt-xl-50p,
  .py-xl-50p {
    padding-top: 50% !important; }
  .pr-xl-50p,
  .px-xl-50p {
    padding-right: 50% !important; }
  .pb-xl-50p,
  .py-xl-50p {
    padding-bottom: 50% !important; }
  .pl-xl-50p,
  .px-xl-50p {
    padding-left: 50% !important; }
  .p-xl-60p {
    padding: 60% !important; }
  .pt-xl-60p,
  .py-xl-60p {
    padding-top: 60% !important; }
  .pr-xl-60p,
  .px-xl-60p {
    padding-right: 60% !important; }
  .pb-xl-60p,
  .py-xl-60p {
    padding-bottom: 60% !important; }
  .pl-xl-60p,
  .px-xl-60p {
    padding-left: 60% !important; }
  .m-xl-n1 {
    margin: -0.25rem !important; }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important; }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important; }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important; }
  .m-xl-n2 {
    margin: -0.5rem !important; }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important; }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important; }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important; }
  .m-xl-n3 {
    margin: -1rem !important; }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important; }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important; }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important; }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important; }
  .m-xl-n4 {
    margin: -1.5rem !important; }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important; }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important; }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important; }
  .m-xl-n5 {
    margin: -3rem !important; }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important; }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important; }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important; }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important; }
  .m-xl-n4-5 {
    margin: -4.5rem !important; }
  .mt-xl-n4-5,
  .my-xl-n4-5 {
    margin-top: -4.5rem !important; }
  .mr-xl-n4-5,
  .mx-xl-n4-5 {
    margin-right: -4.5rem !important; }
  .mb-xl-n4-5,
  .my-xl-n4-5 {
    margin-bottom: -4.5rem !important; }
  .ml-xl-n4-5,
  .mx-xl-n4-5 {
    margin-left: -4.5rem !important; }
  .m-xl-n5-5 {
    margin: -4rem !important; }
  .mt-xl-n5-5,
  .my-xl-n5-5 {
    margin-top: -4rem !important; }
  .mr-xl-n5-5,
  .mx-xl-n5-5 {
    margin-right: -4rem !important; }
  .mb-xl-n5-5,
  .my-xl-n5-5 {
    margin-bottom: -4rem !important; }
  .ml-xl-n5-5,
  .mx-xl-n5-5 {
    margin-left: -4rem !important; }
  .m-xl-n6 {
    margin: -6rem !important; }
  .mt-xl-n6,
  .my-xl-n6 {
    margin-top: -6rem !important; }
  .mr-xl-n6,
  .mx-xl-n6 {
    margin-right: -6rem !important; }
  .mb-xl-n6,
  .my-xl-n6 {
    margin-bottom: -6rem !important; }
  .ml-xl-n6,
  .mx-xl-n6 {
    margin-left: -6rem !important; }
  .m-xl-n7 {
    margin: -7rem !important; }
  .mt-xl-n7,
  .my-xl-n7 {
    margin-top: -7rem !important; }
  .mr-xl-n7,
  .mx-xl-n7 {
    margin-right: -7rem !important; }
  .mb-xl-n7,
  .my-xl-n7 {
    margin-bottom: -7rem !important; }
  .ml-xl-n7,
  .mx-xl-n7 {
    margin-left: -7rem !important; }
  .m-xl-n8 {
    margin: -8rem !important; }
  .mt-xl-n8,
  .my-xl-n8 {
    margin-top: -8rem !important; }
  .mr-xl-n8,
  .mx-xl-n8 {
    margin-right: -8rem !important; }
  .mb-xl-n8,
  .my-xl-n8 {
    margin-bottom: -8rem !important; }
  .ml-xl-n8,
  .mx-xl-n8 {
    margin-left: -8rem !important; }
  .m-xl-n9 {
    margin: -9rem !important; }
  .mt-xl-n9,
  .my-xl-n9 {
    margin-top: -9rem !important; }
  .mr-xl-n9,
  .mx-xl-n9 {
    margin-right: -9rem !important; }
  .mb-xl-n9,
  .my-xl-n9 {
    margin-bottom: -9rem !important; }
  .ml-xl-n9,
  .mx-xl-n9 {
    margin-left: -9rem !important; }
  .m-xl-n10 {
    margin: -10rem !important; }
  .mt-xl-n10,
  .my-xl-n10 {
    margin-top: -10rem !important; }
  .mr-xl-n10,
  .mx-xl-n10 {
    margin-right: -10rem !important; }
  .mb-xl-n10,
  .my-xl-n10 {
    margin-bottom: -10rem !important; }
  .ml-xl-n10,
  .mx-xl-n10 {
    margin-left: -10rem !important; }
  .m-xl-n15 {
    margin: -15rem !important; }
  .mt-xl-n15,
  .my-xl-n15 {
    margin-top: -15rem !important; }
  .mr-xl-n15,
  .mx-xl-n15 {
    margin-right: -15rem !important; }
  .mb-xl-n15,
  .my-xl-n15 {
    margin-bottom: -15rem !important; }
  .ml-xl-n15,
  .mx-xl-n15 {
    margin-left: -15rem !important; }
  .m-xl-n20 {
    margin: -20rem !important; }
  .mt-xl-n20,
  .my-xl-n20 {
    margin-top: -20rem !important; }
  .mr-xl-n20,
  .mx-xl-n20 {
    margin-right: -20rem !important; }
  .mb-xl-n20,
  .my-xl-n20 {
    margin-bottom: -20rem !important; }
  .ml-xl-n20,
  .mx-xl-n20 {
    margin-left: -20rem !important; }
  .m-xl-n25 {
    margin: -25rem !important; }
  .mt-xl-n25,
  .my-xl-n25 {
    margin-top: -25rem !important; }
  .mr-xl-n25,
  .mx-xl-n25 {
    margin-right: -25rem !important; }
  .mb-xl-n25,
  .my-xl-n25 {
    margin-bottom: -25rem !important; }
  .ml-xl-n25,
  .mx-xl-n25 {
    margin-left: -25rem !important; }
  .m-xl-n10p {
    margin: -10% !important; }
  .mt-xl-n10p,
  .my-xl-n10p {
    margin-top: -10% !important; }
  .mr-xl-n10p,
  .mx-xl-n10p {
    margin-right: -10% !important; }
  .mb-xl-n10p,
  .my-xl-n10p {
    margin-bottom: -10% !important; }
  .ml-xl-n10p,
  .mx-xl-n10p {
    margin-left: -10% !important; }
  .m-xl-n15p {
    margin: -15% !important; }
  .mt-xl-n15p,
  .my-xl-n15p {
    margin-top: -15% !important; }
  .mr-xl-n15p,
  .mx-xl-n15p {
    margin-right: -15% !important; }
  .mb-xl-n15p,
  .my-xl-n15p {
    margin-bottom: -15% !important; }
  .ml-xl-n15p,
  .mx-xl-n15p {
    margin-left: -15% !important; }
  .m-xl-n20p {
    margin: -20% !important; }
  .mt-xl-n20p,
  .my-xl-n20p {
    margin-top: -20% !important; }
  .mr-xl-n20p,
  .mx-xl-n20p {
    margin-right: -20% !important; }
  .mb-xl-n20p,
  .my-xl-n20p {
    margin-bottom: -20% !important; }
  .ml-xl-n20p,
  .mx-xl-n20p {
    margin-left: -20% !important; }
  .m-xl-n25p {
    margin: -25% !important; }
  .mt-xl-n25p,
  .my-xl-n25p {
    margin-top: -25% !important; }
  .mr-xl-n25p,
  .mx-xl-n25p {
    margin-right: -25% !important; }
  .mb-xl-n25p,
  .my-xl-n25p {
    margin-bottom: -25% !important; }
  .ml-xl-n25p,
  .mx-xl-n25p {
    margin-left: -25% !important; }
  .m-xl-n30p {
    margin: -30% !important; }
  .mt-xl-n30p,
  .my-xl-n30p {
    margin-top: -30% !important; }
  .mr-xl-n30p,
  .mx-xl-n30p {
    margin-right: -30% !important; }
  .mb-xl-n30p,
  .my-xl-n30p {
    margin-bottom: -30% !important; }
  .ml-xl-n30p,
  .mx-xl-n30p {
    margin-left: -30% !important; }
  .m-xl-n40p {
    margin: -40% !important; }
  .mt-xl-n40p,
  .my-xl-n40p {
    margin-top: -40% !important; }
  .mr-xl-n40p,
  .mx-xl-n40p {
    margin-right: -40% !important; }
  .mb-xl-n40p,
  .my-xl-n40p {
    margin-bottom: -40% !important; }
  .ml-xl-n40p,
  .mx-xl-n40p {
    margin-left: -40% !important; }
  .m-xl-n50p {
    margin: -50% !important; }
  .mt-xl-n50p,
  .my-xl-n50p {
    margin-top: -50% !important; }
  .mr-xl-n50p,
  .mx-xl-n50p {
    margin-right: -50% !important; }
  .mb-xl-n50p,
  .my-xl-n50p {
    margin-bottom: -50% !important; }
  .ml-xl-n50p,
  .mx-xl-n50p {
    margin-left: -50% !important; }
  .m-xl-n60p {
    margin: -60% !important; }
  .mt-xl-n60p,
  .my-xl-n60p {
    margin-top: -60% !important; }
  .mr-xl-n60p,
  .mx-xl-n60p {
    margin-right: -60% !important; }
  .mb-xl-n60p,
  .my-xl-n60p {
    margin-bottom: -60% !important; }
  .ml-xl-n60p,
  .mx-xl-n60p {
    margin-left: -60% !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; } }

.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: #f87200 !important; }

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

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

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

.bg-success {
  background-color: #3c8b89 !important; }

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

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

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

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

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

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

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

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

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

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

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

.bg-third {
  background-color: #0999ac !important; }

a.bg-third:hover, a.bg-third:focus,
button.bg-third:hover,
button.bg-third:focus {
  background-color: #066e7c !important; }

.bg-orange {
  background-color: #f87200 !important; }

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

.bg-light-pink {
  background-color: rgba(255, 235, 225, 0.5) !important; }

a.bg-light-pink:hover, a.bg-light-pink:focus,
button.bg-light-pink:hover,
button.bg-light-pink:focus {
  background-color: rgba(255, 201, 174, 0.5) !important; }

.bg-pink {
  background-color: #FFEBE1 !important; }

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

.bg-light-green {
  background-color: #4DC1A2 !important; }

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

.bg-light-orange {
  background-color: rgba(249, 154, 149, 0.3) !important; }

a.bg-light-orange:hover, a.bg-light-orange:focus,
button.bg-light-orange:hover,
button.bg-light-orange:focus {
  background-color: rgba(246, 108, 101, 0.3) !important; }

.bg-dark-green {
  background-color: #021A19 !important; }

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

.bg-footer {
  background-color: #1d1d1d !important; }

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

.bg-gray {
  background-color: #f6f6f6 !important; }

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

.bg-cyan {
  background-color: #0999ac !important; }

a.bg-cyan:hover, a.bg-cyan:focus,
button.bg-cyan:hover,
button.bg-cyan:focus {
  background-color: #066e7c !important; }

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

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

.bg-strong {
  background-color: #5c6b80 !important; }

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

.bg-pagination {
  background-color: #333 !important; }

a.bg-pagination:hover, a.bg-pagination:focus,
button.bg-pagination:hover,
button.bg-pagination:focus {
  background-color: #1a1a1a !important; }

.bg-fond-pagination {
  background-color: #f5f5f5 !important; }

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

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

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

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

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

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

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

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

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

.border-success {
  border-color: #3c8b89 !important; }

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

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

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

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

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

.border-third {
  border-color: #0999ac !important; }

.border-orange {
  border-color: #f87200 !important; }

.border-light-pink {
  border-color: rgba(255, 235, 225, 0.5) !important; }

.border-pink {
  border-color: #FFEBE1 !important; }

.border-light-green {
  border-color: #4DC1A2 !important; }

.border-light-orange {
  border-color: rgba(249, 154, 149, 0.3) !important; }

.border-dark-green {
  border-color: #021A19 !important; }

.border-footer {
  border-color: #1d1d1d !important; }

.border-gray {
  border-color: #f6f6f6 !important; }

.border-cyan {
  border-color: #0999ac !important; }

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

.border-strong {
  border-color: #5c6b80 !important; }

.border-pagination {
  border-color: #333 !important; }

.border-fond-pagination {
  border-color: #f5f5f5 !important; }

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

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

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

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

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

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

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

.rounded-lg {
  border-radius: 0.3rem !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: 1230px) {
  .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 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.85714%; }

.embed-responsive-16by9::before {
  padding-top: 56.25%; }

.embed-responsive-4by3::before {
  padding-top: 75%; }

.embed-responsive-1by1::before {
  padding-top: 100%; }

.embed-responsive-21by9::before {
  padding-top: 42.85714%; }

.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: 1230px) {
  .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; } }

.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: 1230px) {
  .float-xl-left {
    float: left !important; }
  .float-xl-right {
    float: right !important; }
  .float-xl-none {
    float: none !important; } }

.user-select-all {
  user-select: all !important; }

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

.user-select-none {
  user-select: none !important; }

.overflow-auto {
  overflow: auto !important; }

.overflow-hidden {
  overflow: hidden !important; }

.position-static {
  position: static !important; }

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

.position-fixed {
  position: fixed !important; }

.position-sticky {
  position: sticky !important; }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal; }

.shadow-sm {
  box-shadow: 0 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; }

.w-1 r {
  width: 1rem !important; }

.w-5 {
  width: 5% !important; }

.w-10 {
  width: 10% !important; }

.w-15 {
  width: 15% !important; }

.w-20 {
  width: 20% !important; }

.w-30 {
  width: 30% !important; }

.w-35 {
  width: 35% !important; }

.w-40 {
  width: 40% !important; }

.w-45 {
  width: 45% !important; }

.w-55 {
  width: 55% !important; }

.w-60 {
  width: 60% !important; }

.w-65 {
  width: 65% !important; }

.w-70 {
  width: 70% !important; }

.w-80 {
  width: 80% !important; }

.w-85 {
  width: 85% !important; }

.w-90 {
  width: 90% !important; }

.w-95 {
  width: 95% !important; }

.w-15px {
  width: 15px !important; }

.w-25px {
  width: 25px !important; }

.w-32px {
  width: 32px !important; }

.w-35px {
  width: 35px !important; }

.w-50px {
  width: 50px !important; }

.w-75px {
  width: 75px !important; }

.w-100px {
  width: 100px !important; }

.w-150px {
  width: 150px !important; }

.w-200px {
  width: 200px !important; }

.w-230px {
  width: 230px !important; }

.w-250px {
  width: 250px !important; }

.w-275px {
  width: 275px !important; }

.w-300px {
  width: 300px !important; }

.w-350px {
  width: 350px !important; }

.w-400px {
  width: 400px !important; }

.w-450px {
  width: 450px !important; }

.w-475px {
  width: 475px !important; }

.w-500px {
  width: 500px !important; }

.w-600px {
  width: 600px !important; }

.w-650px {
  width: 650px !important; }

.w-700px {
  width: 700px !important; }

.w-3r {
  width: 3rem !important; }

.w-4r {
  width: 4rem !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; }

.h-1 r {
  height: 1rem !important; }

.h-5 {
  height: 5% !important; }

.h-10 {
  height: 10% !important; }

.h-15 {
  height: 15% !important; }

.h-20 {
  height: 20% !important; }

.h-30 {
  height: 30% !important; }

.h-35 {
  height: 35% !important; }

.h-40 {
  height: 40% !important; }

.h-45 {
  height: 45% !important; }

.h-55 {
  height: 55% !important; }

.h-60 {
  height: 60% !important; }

.h-65 {
  height: 65% !important; }

.h-70 {
  height: 70% !important; }

.h-80 {
  height: 80% !important; }

.h-85 {
  height: 85% !important; }

.h-90 {
  height: 90% !important; }

.h-95 {
  height: 95% !important; }

.h-15px {
  height: 15px !important; }

.h-25px {
  height: 25px !important; }

.h-32px {
  height: 32px !important; }

.h-35px {
  height: 35px !important; }

.h-50px {
  height: 50px !important; }

.h-75px {
  height: 75px !important; }

.h-100px {
  height: 100px !important; }

.h-150px {
  height: 150px !important; }

.h-200px {
  height: 200px !important; }

.h-230px {
  height: 230px !important; }

.h-250px {
  height: 250px !important; }

.h-275px {
  height: 275px !important; }

.h-300px {
  height: 300px !important; }

.h-350px {
  height: 350px !important; }

.h-400px {
  height: 400px !important; }

.h-450px {
  height: 450px !important; }

.h-475px {
  height: 475px !important; }

.h-500px {
  height: 500px !important; }

.h-600px {
  height: 600px !important; }

.h-650px {
  height: 650px !important; }

.h-700px {
  height: 700px !important; }

.h-3r {
  height: 3rem !important; }

.h-4r {
  height: 4rem !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.25rem !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-10p {
  margin: 10% !important; }

.mt-10p,
.my-10p {
  margin-top: 10% !important; }

.mr-10p,
.mx-10p {
  margin-right: 10% !important; }

.mb-10p,
.my-10p {
  margin-bottom: 10% !important; }

.ml-10p,
.mx-10p {
  margin-left: 10% !important; }

.m-15p {
  margin: 15% !important; }

.mt-15p,
.my-15p {
  margin-top: 15% !important; }

.mr-15p,
.mx-15p {
  margin-right: 15% !important; }

.mb-15p,
.my-15p {
  margin-bottom: 15% !important; }

.ml-15p,
.mx-15p {
  margin-left: 15% !important; }

.m-20p {
  margin: 20% !important; }

.mt-20p,
.my-20p {
  margin-top: 20% !important; }

.mr-20p,
.mx-20p {
  margin-right: 20% !important; }

.mb-20p,
.my-20p {
  margin-bottom: 20% !important; }

.ml-20p,
.mx-20p {
  margin-left: 20% !important; }

.m-25p {
  margin: 25% !important; }

.mt-25p,
.my-25p {
  margin-top: 25% !important; }

.mr-25p,
.mx-25p {
  margin-right: 25% !important; }

.mb-25p,
.my-25p {
  margin-bottom: 25% !important; }

.ml-25p,
.mx-25p {
  margin-left: 25% !important; }

.m-30p {
  margin: 30% !important; }

.mt-30p,
.my-30p {
  margin-top: 30% !important; }

.mr-30p,
.mx-30p {
  margin-right: 30% !important; }

.mb-30p,
.my-30p {
  margin-bottom: 30% !important; }

.ml-30p,
.mx-30p {
  margin-left: 30% !important; }

.m-40p {
  margin: 40% !important; }

.mt-40p,
.my-40p {
  margin-top: 40% !important; }

.mr-40p,
.mx-40p {
  margin-right: 40% !important; }

.mb-40p,
.my-40p {
  margin-bottom: 40% !important; }

.ml-40p,
.mx-40p {
  margin-left: 40% !important; }

.m-50p {
  margin: 50% !important; }

.mt-50p,
.my-50p {
  margin-top: 50% !important; }

.mr-50p,
.mx-50p {
  margin-right: 50% !important; }

.mb-50p,
.my-50p {
  margin-bottom: 50% !important; }

.ml-50p,
.mx-50p {
  margin-left: 50% !important; }

.m-60p {
  margin: 60% !important; }

.mt-60p,
.my-60p {
  margin-top: 60% !important; }

.mr-60p,
.mx-60p {
  margin-right: 60% !important; }

.mb-60p,
.my-60p {
  margin-bottom: 60% !important; }

.ml-60p,
.mx-60p {
  margin-left: 60% !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.25rem !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-10p {
  padding: 10% !important; }

.pt-10p,
.py-10p {
  padding-top: 10% !important; }

.pr-10p,
.px-10p {
  padding-right: 10% !important; }

.pb-10p,
.py-10p {
  padding-bottom: 10% !important; }

.pl-10p,
.px-10p {
  padding-left: 10% !important; }

.p-15p {
  padding: 15% !important; }

.pt-15p,
.py-15p {
  padding-top: 15% !important; }

.pr-15p,
.px-15p {
  padding-right: 15% !important; }

.pb-15p,
.py-15p {
  padding-bottom: 15% !important; }

.pl-15p,
.px-15p {
  padding-left: 15% !important; }

.p-20p {
  padding: 20% !important; }

.pt-20p,
.py-20p {
  padding-top: 20% !important; }

.pr-20p,
.px-20p {
  padding-right: 20% !important; }

.pb-20p,
.py-20p {
  padding-bottom: 20% !important; }

.pl-20p,
.px-20p {
  padding-left: 20% !important; }

.p-25p {
  padding: 25% !important; }

.pt-25p,
.py-25p {
  padding-top: 25% !important; }

.pr-25p,
.px-25p {
  padding-right: 25% !important; }

.pb-25p,
.py-25p {
  padding-bottom: 25% !important; }

.pl-25p,
.px-25p {
  padding-left: 25% !important; }

.p-30p {
  padding: 30% !important; }

.pt-30p,
.py-30p {
  padding-top: 30% !important; }

.pr-30p,
.px-30p {
  padding-right: 30% !important; }

.pb-30p,
.py-30p {
  padding-bottom: 30% !important; }

.pl-30p,
.px-30p {
  padding-left: 30% !important; }

.p-40p {
  padding: 40% !important; }

.pt-40p,
.py-40p {
  padding-top: 40% !important; }

.pr-40p,
.px-40p {
  padding-right: 40% !important; }

.pb-40p,
.py-40p {
  padding-bottom: 40% !important; }

.pl-40p,
.px-40p {
  padding-left: 40% !important; }

.p-50p {
  padding: 50% !important; }

.pt-50p,
.py-50p {
  padding-top: 50% !important; }

.pr-50p,
.px-50p {
  padding-right: 50% !important; }

.pb-50p,
.py-50p {
  padding-bottom: 50% !important; }

.pl-50p,
.px-50p {
  padding-left: 50% !important; }

.p-60p {
  padding: 60% !important; }

.pt-60p,
.py-60p {
  padding-top: 60% !important; }

.pr-60p,
.px-60p {
  padding-right: 60% !important; }

.pb-60p,
.py-60p {
  padding-bottom: 60% !important; }

.pl-60p,
.px-60p {
  padding-left: 60% !important; }

.m-n1 {
  margin: -0.25rem !important; }

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important; }

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important; }

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important; }

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important; }

.m-n4-5 {
  margin: -4.5rem !important; }

.mt-n4-5,
.my-n4-5 {
  margin-top: -4.5rem !important; }

.mr-n4-5,
.mx-n4-5 {
  margin-right: -4.5rem !important; }

.mb-n4-5,
.my-n4-5 {
  margin-bottom: -4.5rem !important; }

.ml-n4-5,
.mx-n4-5 {
  margin-left: -4.5rem !important; }

.m-n5-5 {
  margin: -4rem !important; }

.mt-n5-5,
.my-n5-5 {
  margin-top: -4rem !important; }

.mr-n5-5,
.mx-n5-5 {
  margin-right: -4rem !important; }

.mb-n5-5,
.my-n5-5 {
  margin-bottom: -4rem !important; }

.ml-n5-5,
.mx-n5-5 {
  margin-left: -4rem !important; }

.m-n6 {
  margin: -6rem !important; }

.mt-n6,
.my-n6 {
  margin-top: -6rem !important; }

.mr-n6,
.mx-n6 {
  margin-right: -6rem !important; }

.mb-n6,
.my-n6 {
  margin-bottom: -6rem !important; }

.ml-n6,
.mx-n6 {
  margin-left: -6rem !important; }

.m-n7 {
  margin: -7rem !important; }

.mt-n7,
.my-n7 {
  margin-top: -7rem !important; }

.mr-n7,
.mx-n7 {
  margin-right: -7rem !important; }

.mb-n7,
.my-n7 {
  margin-bottom: -7rem !important; }

.ml-n7,
.mx-n7 {
  margin-left: -7rem !important; }

.m-n8 {
  margin: -8rem !important; }

.mt-n8,
.my-n8 {
  margin-top: -8rem !important; }

.mr-n8,
.mx-n8 {
  margin-right: -8rem !important; }

.mb-n8,
.my-n8 {
  margin-bottom: -8rem !important; }

.ml-n8,
.mx-n8 {
  margin-left: -8rem !important; }

.m-n9 {
  margin: -9rem !important; }

.mt-n9,
.my-n9 {
  margin-top: -9rem !important; }

.mr-n9,
.mx-n9 {
  margin-right: -9rem !important; }

.mb-n9,
.my-n9 {
  margin-bottom: -9rem !important; }

.ml-n9,
.mx-n9 {
  margin-left: -9rem !important; }

.m-n10 {
  margin: -10rem !important; }

.mt-n10,
.my-n10 {
  margin-top: -10rem !important; }

.mr-n10,
.mx-n10 {
  margin-right: -10rem !important; }

.mb-n10,
.my-n10 {
  margin-bottom: -10rem !important; }

.ml-n10,
.mx-n10 {
  margin-left: -10rem !important; }

.m-n15 {
  margin: -15rem !important; }

.mt-n15,
.my-n15 {
  margin-top: -15rem !important; }

.mr-n15,
.mx-n15 {
  margin-right: -15rem !important; }

.mb-n15,
.my-n15 {
  margin-bottom: -15rem !important; }

.ml-n15,
.mx-n15 {
  margin-left: -15rem !important; }

.m-n20 {
  margin: -20rem !important; }

.mt-n20,
.my-n20 {
  margin-top: -20rem !important; }

.mr-n20,
.mx-n20 {
  margin-right: -20rem !important; }

.mb-n20,
.my-n20 {
  margin-bottom: -20rem !important; }

.ml-n20,
.mx-n20 {
  margin-left: -20rem !important; }

.m-n25 {
  margin: -25rem !important; }

.mt-n25,
.my-n25 {
  margin-top: -25rem !important; }

.mr-n25,
.mx-n25 {
  margin-right: -25rem !important; }

.mb-n25,
.my-n25 {
  margin-bottom: -25rem !important; }

.ml-n25,
.mx-n25 {
  margin-left: -25rem !important; }

.m-n10p {
  margin: -10% !important; }

.mt-n10p,
.my-n10p {
  margin-top: -10% !important; }

.mr-n10p,
.mx-n10p {
  margin-right: -10% !important; }

.mb-n10p,
.my-n10p {
  margin-bottom: -10% !important; }

.ml-n10p,
.mx-n10p {
  margin-left: -10% !important; }

.m-n15p {
  margin: -15% !important; }

.mt-n15p,
.my-n15p {
  margin-top: -15% !important; }

.mr-n15p,
.mx-n15p {
  margin-right: -15% !important; }

.mb-n15p,
.my-n15p {
  margin-bottom: -15% !important; }

.ml-n15p,
.mx-n15p {
  margin-left: -15% !important; }

.m-n20p {
  margin: -20% !important; }

.mt-n20p,
.my-n20p {
  margin-top: -20% !important; }

.mr-n20p,
.mx-n20p {
  margin-right: -20% !important; }

.mb-n20p,
.my-n20p {
  margin-bottom: -20% !important; }

.ml-n20p,
.mx-n20p {
  margin-left: -20% !important; }

.m-n25p {
  margin: -25% !important; }

.mt-n25p,
.my-n25p {
  margin-top: -25% !important; }

.mr-n25p,
.mx-n25p {
  margin-right: -25% !important; }

.mb-n25p,
.my-n25p {
  margin-bottom: -25% !important; }

.ml-n25p,
.mx-n25p {
  margin-left: -25% !important; }

.m-n30p {
  margin: -30% !important; }

.mt-n30p,
.my-n30p {
  margin-top: -30% !important; }

.mr-n30p,
.mx-n30p {
  margin-right: -30% !important; }

.mb-n30p,
.my-n30p {
  margin-bottom: -30% !important; }

.ml-n30p,
.mx-n30p {
  margin-left: -30% !important; }

.m-n40p {
  margin: -40% !important; }

.mt-n40p,
.my-n40p {
  margin-top: -40% !important; }

.mr-n40p,
.mx-n40p {
  margin-right: -40% !important; }

.mb-n40p,
.my-n40p {
  margin-bottom: -40% !important; }

.ml-n40p,
.mx-n40p {
  margin-left: -40% !important; }

.m-n50p {
  margin: -50% !important; }

.mt-n50p,
.my-n50p {
  margin-top: -50% !important; }

.mr-n50p,
.mx-n50p {
  margin-right: -50% !important; }

.mb-n50p,
.my-n50p {
  margin-bottom: -50% !important; }

.ml-n50p,
.mx-n50p {
  margin-left: -50% !important; }

.m-n60p {
  margin: -60% !important; }

.mt-n60p,
.my-n60p {
  margin-top: -60% !important; }

.mr-n60p,
.mx-n60p {
  margin-right: -60% !important; }

.mb-n60p,
.my-n60p {
  margin-bottom: -60% !important; }

.ml-n60p,
.mx-n60p {
  margin-left: -60% !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.25rem !important; }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important; }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important; }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important; }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important; }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important; }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important; }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important; }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important; }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important; }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem !important; }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important; }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important; }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important; }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem !important; }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important; }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important; }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important; }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important; }
  .m-sm-4-5 {
    margin: 4.5rem !important; }
  .mt-sm-4-5,
  .my-sm-4-5 {
    margin-top: 4.5rem !important; }
  .mr-sm-4-5,
  .mx-sm-4-5 {
    margin-right: 4.5rem !important; }
  .mb-sm-4-5,
  .my-sm-4-5 {
    margin-bottom: 4.5rem !important; }
  .ml-sm-4-5,
  .mx-sm-4-5 {
    margin-left: 4.5rem !important; }
  .m-sm-5-5 {
    margin: 4rem !important; }
  .mt-sm-5-5,
  .my-sm-5-5 {
    margin-top: 4rem !important; }
  .mr-sm-5-5,
  .mx-sm-5-5 {
    margin-right: 4rem !important; }
  .mb-sm-5-5,
  .my-sm-5-5 {
    margin-bottom: 4rem !important; }
  .ml-sm-5-5,
  .mx-sm-5-5 {
    margin-left: 4rem !important; }
  .m-sm-6 {
    margin: 6rem !important; }
  .mt-sm-6,
  .my-sm-6 {
    margin-top: 6rem !important; }
  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 6rem !important; }
  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 6rem !important; }
  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 6rem !important; }
  .m-sm-7 {
    margin: 7rem !important; }
  .mt-sm-7,
  .my-sm-7 {
    margin-top: 7rem !important; }
  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 7rem !important; }
  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 7rem !important; }
  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 7rem !important; }
  .m-sm-8 {
    margin: 8rem !important; }
  .mt-sm-8,
  .my-sm-8 {
    margin-top: 8rem !important; }
  .mr-sm-8,
  .mx-sm-8 {
    margin-right: 8rem !important; }
  .mb-sm-8,
  .my-sm-8 {
    margin-bottom: 8rem !important; }
  .ml-sm-8,
  .mx-sm-8 {
    margin-left: 8rem !important; }
  .m-sm-9 {
    margin: 9rem !important; }
  .mt-sm-9,
  .my-sm-9 {
    margin-top: 9rem !important; }
  .mr-sm-9,
  .mx-sm-9 {
    margin-right: 9rem !important; }
  .mb-sm-9,
  .my-sm-9 {
    margin-bottom: 9rem !important; }
  .ml-sm-9,
  .mx-sm-9 {
    margin-left: 9rem !important; }
  .m-sm-10 {
    margin: 10rem !important; }
  .mt-sm-10,
  .my-sm-10 {
    margin-top: 10rem !important; }
  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 10rem !important; }
  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 10rem !important; }
  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 10rem !important; }
  .m-sm-15 {
    margin: 15rem !important; }
  .mt-sm-15,
  .my-sm-15 {
    margin-top: 15rem !important; }
  .mr-sm-15,
  .mx-sm-15 {
    margin-right: 15rem !important; }
  .mb-sm-15,
  .my-sm-15 {
    margin-bottom: 15rem !important; }
  .ml-sm-15,
  .mx-sm-15 {
    margin-left: 15rem !important; }
  .m-sm-20 {
    margin: 20rem !important; }
  .mt-sm-20,
  .my-sm-20 {
    margin-top: 20rem !important; }
  .mr-sm-20,
  .mx-sm-20 {
    margin-right: 20rem !important; }
  .mb-sm-20,
  .my-sm-20 {
    margin-bottom: 20rem !important; }
  .ml-sm-20,
  .mx-sm-20 {
    margin-left: 20rem !important; }
  .m-sm-25 {
    margin: 25rem !important; }
  .mt-sm-25,
  .my-sm-25 {
    margin-top: 25rem !important; }
  .mr-sm-25,
  .mx-sm-25 {
    margin-right: 25rem !important; }
  .mb-sm-25,
  .my-sm-25 {
    margin-bottom: 25rem !important; }
  .ml-sm-25,
  .mx-sm-25 {
    margin-left: 25rem !important; }
  .m-sm-10p {
    margin: 10% !important; }
  .mt-sm-10p,
  .my-sm-10p {
    margin-top: 10% !important; }
  .mr-sm-10p,
  .mx-sm-10p {
    margin-right: 10% !important; }
  .mb-sm-10p,
  .my-sm-10p {
    margin-bottom: 10% !important; }
  .ml-sm-10p,
  .mx-sm-10p {
    margin-left: 10% !important; }
  .m-sm-15p {
    margin: 15% !important; }
  .mt-sm-15p,
  .my-sm-15p {
    margin-top: 15% !important; }
  .mr-sm-15p,
  .mx-sm-15p {
    margin-right: 15% !important; }
  .mb-sm-15p,
  .my-sm-15p {
    margin-bottom: 15% !important; }
  .ml-sm-15p,
  .mx-sm-15p {
    margin-left: 15% !important; }
  .m-sm-20p {
    margin: 20% !important; }
  .mt-sm-20p,
  .my-sm-20p {
    margin-top: 20% !important; }
  .mr-sm-20p,
  .mx-sm-20p {
    margin-right: 20% !important; }
  .mb-sm-20p,
  .my-sm-20p {
    margin-bottom: 20% !important; }
  .ml-sm-20p,
  .mx-sm-20p {
    margin-left: 20% !important; }
  .m-sm-25p {
    margin: 25% !important; }
  .mt-sm-25p,
  .my-sm-25p {
    margin-top: 25% !important; }
  .mr-sm-25p,
  .mx-sm-25p {
    margin-right: 25% !important; }
  .mb-sm-25p,
  .my-sm-25p {
    margin-bottom: 25% !important; }
  .ml-sm-25p,
  .mx-sm-25p {
    margin-left: 25% !important; }
  .m-sm-30p {
    margin: 30% !important; }
  .mt-sm-30p,
  .my-sm-30p {
    margin-top: 30% !important; }
  .mr-sm-30p,
  .mx-sm-30p {
    margin-right: 30% !important; }
  .mb-sm-30p,
  .my-sm-30p {
    margin-bottom: 30% !important; }
  .ml-sm-30p,
  .mx-sm-30p {
    margin-left: 30% !important; }
  .m-sm-40p {
    margin: 40% !important; }
  .mt-sm-40p,
  .my-sm-40p {
    margin-top: 40% !important; }
  .mr-sm-40p,
  .mx-sm-40p {
    margin-right: 40% !important; }
  .mb-sm-40p,
  .my-sm-40p {
    margin-bottom: 40% !important; }
  .ml-sm-40p,
  .mx-sm-40p {
    margin-left: 40% !important; }
  .m-sm-50p {
    margin: 50% !important; }
  .mt-sm-50p,
  .my-sm-50p {
    margin-top: 50% !important; }
  .mr-sm-50p,
  .mx-sm-50p {
    margin-right: 50% !important; }
  .mb-sm-50p,
  .my-sm-50p {
    margin-bottom: 50% !important; }
  .ml-sm-50p,
  .mx-sm-50p {
    margin-left: 50% !important; }
  .m-sm-60p {
    margin: 60% !important; }
  .mt-sm-60p,
  .my-sm-60p {
    margin-top: 60% !important; }
  .mr-sm-60p,
  .mx-sm-60p {
    margin-right: 60% !important; }
  .mb-sm-60p,
  .my-sm-60p {
    margin-bottom: 60% !important; }
  .ml-sm-60p,
  .mx-sm-60p {
    margin-left: 60% !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.25rem !important; }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important; }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important; }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important; }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important; }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important; }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important; }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important; }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem !important; }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important; }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important; }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem !important; }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important; }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important; }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important; }
  .p-sm-4-5 {
    padding: 4.5rem !important; }
  .pt-sm-4-5,
  .py-sm-4-5 {
    padding-top: 4.5rem !important; }
  .pr-sm-4-5,
  .px-sm-4-5 {
    padding-right: 4.5rem !important; }
  .pb-sm-4-5,
  .py-sm-4-5 {
    padding-bottom: 4.5rem !important; }
  .pl-sm-4-5,
  .px-sm-4-5 {
    padding-left: 4.5rem !important; }
  .p-sm-5-5 {
    padding: 4rem !important; }
  .pt-sm-5-5,
  .py-sm-5-5 {
    padding-top: 4rem !important; }
  .pr-sm-5-5,
  .px-sm-5-5 {
    padding-right: 4rem !important; }
  .pb-sm-5-5,
  .py-sm-5-5 {
    padding-bottom: 4rem !important; }
  .pl-sm-5-5,
  .px-sm-5-5 {
    padding-left: 4rem !important; }
  .p-sm-6 {
    padding: 6rem !important; }
  .pt-sm-6,
  .py-sm-6 {
    padding-top: 6rem !important; }
  .pr-sm-6,
  .px-sm-6 {
    padding-right: 6rem !important; }
  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 6rem !important; }
  .pl-sm-6,
  .px-sm-6 {
    padding-left: 6rem !important; }
  .p-sm-7 {
    padding: 7rem !important; }
  .pt-sm-7,
  .py-sm-7 {
    padding-top: 7rem !important; }
  .pr-sm-7,
  .px-sm-7 {
    padding-right: 7rem !important; }
  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 7rem !important; }
  .pl-sm-7,
  .px-sm-7 {
    padding-left: 7rem !important; }
  .p-sm-8 {
    padding: 8rem !important; }
  .pt-sm-8,
  .py-sm-8 {
    padding-top: 8rem !important; }
  .pr-sm-8,
  .px-sm-8 {
    padding-right: 8rem !important; }
  .pb-sm-8,
  .py-sm-8 {
    padding-bottom: 8rem !important; }
  .pl-sm-8,
  .px-sm-8 {
    padding-left: 8rem !important; }
  .p-sm-9 {
    padding: 9rem !important; }
  .pt-sm-9,
  .py-sm-9 {
    padding-top: 9rem !important; }
  .pr-sm-9,
  .px-sm-9 {
    padding-right: 9rem !important; }
  .pb-sm-9,
  .py-sm-9 {
    padding-bottom: 9rem !important; }
  .pl-sm-9,
  .px-sm-9 {
    padding-left: 9rem !important; }
  .p-sm-10 {
    padding: 10rem !important; }
  .pt-sm-10,
  .py-sm-10 {
    padding-top: 10rem !important; }
  .pr-sm-10,
  .px-sm-10 {
    padding-right: 10rem !important; }
  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 10rem !important; }
  .pl-sm-10,
  .px-sm-10 {
    padding-left: 10rem !important; }
  .p-sm-15 {
    padding: 15rem !important; }
  .pt-sm-15,
  .py-sm-15 {
    padding-top: 15rem !important; }
  .pr-sm-15,
  .px-sm-15 {
    padding-right: 15rem !important; }
  .pb-sm-15,
  .py-sm-15 {
    padding-bottom: 15rem !important; }
  .pl-sm-15,
  .px-sm-15 {
    padding-left: 15rem !important; }
  .p-sm-20 {
    padding: 20rem !important; }
  .pt-sm-20,
  .py-sm-20 {
    padding-top: 20rem !important; }
  .pr-sm-20,
  .px-sm-20 {
    padding-right: 20rem !important; }
  .pb-sm-20,
  .py-sm-20 {
    padding-bottom: 20rem !important; }
  .pl-sm-20,
  .px-sm-20 {
    padding-left: 20rem !important; }
  .p-sm-25 {
    padding: 25rem !important; }
  .pt-sm-25,
  .py-sm-25 {
    padding-top: 25rem !important; }
  .pr-sm-25,
  .px-sm-25 {
    padding-right: 25rem !important; }
  .pb-sm-25,
  .py-sm-25 {
    padding-bottom: 25rem !important; }
  .pl-sm-25,
  .px-sm-25 {
    padding-left: 25rem !important; }
  .p-sm-10p {
    padding: 10% !important; }
  .pt-sm-10p,
  .py-sm-10p {
    padding-top: 10% !important; }
  .pr-sm-10p,
  .px-sm-10p {
    padding-right: 10% !important; }
  .pb-sm-10p,
  .py-sm-10p {
    padding-bottom: 10% !important; }
  .pl-sm-10p,
  .px-sm-10p {
    padding-left: 10% !important; }
  .p-sm-15p {
    padding: 15% !important; }
  .pt-sm-15p,
  .py-sm-15p {
    padding-top: 15% !important; }
  .pr-sm-15p,
  .px-sm-15p {
    padding-right: 15% !important; }
  .pb-sm-15p,
  .py-sm-15p {
    padding-bottom: 15% !important; }
  .pl-sm-15p,
  .px-sm-15p {
    padding-left: 15% !important; }
  .p-sm-20p {
    padding: 20% !important; }
  .pt-sm-20p,
  .py-sm-20p {
    padding-top: 20% !important; }
  .pr-sm-20p,
  .px-sm-20p {
    padding-right: 20% !important; }
  .pb-sm-20p,
  .py-sm-20p {
    padding-bottom: 20% !important; }
  .pl-sm-20p,
  .px-sm-20p {
    padding-left: 20% !important; }
  .p-sm-25p {
    padding: 25% !important; }
  .pt-sm-25p,
  .py-sm-25p {
    padding-top: 25% !important; }
  .pr-sm-25p,
  .px-sm-25p {
    padding-right: 25% !important; }
  .pb-sm-25p,
  .py-sm-25p {
    padding-bottom: 25% !important; }
  .pl-sm-25p,
  .px-sm-25p {
    padding-left: 25% !important; }
  .p-sm-30p {
    padding: 30% !important; }
  .pt-sm-30p,
  .py-sm-30p {
    padding-top: 30% !important; }
  .pr-sm-30p,
  .px-sm-30p {
    padding-right: 30% !important; }
  .pb-sm-30p,
  .py-sm-30p {
    padding-bottom: 30% !important; }
  .pl-sm-30p,
  .px-sm-30p {
    padding-left: 30% !important; }
  .p-sm-40p {
    padding: 40% !important; }
  .pt-sm-40p,
  .py-sm-40p {
    padding-top: 40% !important; }
  .pr-sm-40p,
  .px-sm-40p {
    padding-right: 40% !important; }
  .pb-sm-40p,
  .py-sm-40p {
    padding-bottom: 40% !important; }
  .pl-sm-40p,
  .px-sm-40p {
    padding-left: 40% !important; }
  .p-sm-50p {
    padding: 50% !important; }
  .pt-sm-50p,
  .py-sm-50p {
    padding-top: 50% !important; }
  .pr-sm-50p,
  .px-sm-50p {
    padding-right: 50% !important; }
  .pb-sm-50p,
  .py-sm-50p {
    padding-bottom: 50% !important; }
  .pl-sm-50p,
  .px-sm-50p {
    padding-left: 50% !important; }
  .p-sm-60p {
    padding: 60% !important; }
  .pt-sm-60p,
  .py-sm-60p {
    padding-top: 60% !important; }
  .pr-sm-60p,
  .px-sm-60p {
    padding-right: 60% !important; }
  .pb-sm-60p,
  .py-sm-60p {
    padding-bottom: 60% !important; }
  .pl-sm-60p,
  .px-sm-60p {
    padding-left: 60% !important; }
  .m-sm-n1 {
    margin: -0.25rem !important; }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important; }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important; }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important; }
  .m-sm-n2 {
    margin: -0.5rem !important; }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important; }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important; }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important; }
  .m-sm-n3 {
    margin: -1rem !important; }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important; }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important; }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important; }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important; }
  .m-sm-n4 {
    margin: -1.5rem !important; }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important; }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important; }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important; }
  .m-sm-n5 {
    margin: -3rem !important; }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important; }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important; }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important; }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important; }
  .m-sm-n4-5 {
    margin: -4.5rem !important; }
  .mt-sm-n4-5,
  .my-sm-n4-5 {
    margin-top: -4.5rem !important; }
  .mr-sm-n4-5,
  .mx-sm-n4-5 {
    margin-right: -4.5rem !important; }
  .mb-sm-n4-5,
  .my-sm-n4-5 {
    margin-bottom: -4.5rem !important; }
  .ml-sm-n4-5,
  .mx-sm-n4-5 {
    margin-left: -4.5rem !important; }
  .m-sm-n5-5 {
    margin: -4rem !important; }
  .mt-sm-n5-5,
  .my-sm-n5-5 {
    margin-top: -4rem !important; }
  .mr-sm-n5-5,
  .mx-sm-n5-5 {
    margin-right: -4rem !important; }
  .mb-sm-n5-5,
  .my-sm-n5-5 {
    margin-bottom: -4rem !important; }
  .ml-sm-n5-5,
  .mx-sm-n5-5 {
    margin-left: -4rem !important; }
  .m-sm-n6 {
    margin: -6rem !important; }
  .mt-sm-n6,
  .my-sm-n6 {
    margin-top: -6rem !important; }
  .mr-sm-n6,
  .mx-sm-n6 {
    margin-right: -6rem !important; }
  .mb-sm-n6,
  .my-sm-n6 {
    margin-bottom: -6rem !important; }
  .ml-sm-n6,
  .mx-sm-n6 {
    margin-left: -6rem !important; }
  .m-sm-n7 {
    margin: -7rem !important; }
  .mt-sm-n7,
  .my-sm-n7 {
    margin-top: -7rem !important; }
  .mr-sm-n7,
  .mx-sm-n7 {
    margin-right: -7rem !important; }
  .mb-sm-n7,
  .my-sm-n7 {
    margin-bottom: -7rem !important; }
  .ml-sm-n7,
  .mx-sm-n7 {
    margin-left: -7rem !important; }
  .m-sm-n8 {
    margin: -8rem !important; }
  .mt-sm-n8,
  .my-sm-n8 {
    margin-top: -8rem !important; }
  .mr-sm-n8,
  .mx-sm-n8 {
    margin-right: -8rem !important; }
  .mb-sm-n8,
  .my-sm-n8 {
    margin-bottom: -8rem !important; }
  .ml-sm-n8,
  .mx-sm-n8 {
    margin-left: -8rem !important; }
  .m-sm-n9 {
    margin: -9rem !important; }
  .mt-sm-n9,
  .my-sm-n9 {
    margin-top: -9rem !important; }
  .mr-sm-n9,
  .mx-sm-n9 {
    margin-right: -9rem !important; }
  .mb-sm-n9,
  .my-sm-n9 {
    margin-bottom: -9rem !important; }
  .ml-sm-n9,
  .mx-sm-n9 {
    margin-left: -9rem !important; }
  .m-sm-n10 {
    margin: -10rem !important; }
  .mt-sm-n10,
  .my-sm-n10 {
    margin-top: -10rem !important; }
  .mr-sm-n10,
  .mx-sm-n10 {
    margin-right: -10rem !important; }
  .mb-sm-n10,
  .my-sm-n10 {
    margin-bottom: -10rem !important; }
  .ml-sm-n10,
  .mx-sm-n10 {
    margin-left: -10rem !important; }
  .m-sm-n15 {
    margin: -15rem !important; }
  .mt-sm-n15,
  .my-sm-n15 {
    margin-top: -15rem !important; }
  .mr-sm-n15,
  .mx-sm-n15 {
    margin-right: -15rem !important; }
  .mb-sm-n15,
  .my-sm-n15 {
    margin-bottom: -15rem !important; }
  .ml-sm-n15,
  .mx-sm-n15 {
    margin-left: -15rem !important; }
  .m-sm-n20 {
    margin: -20rem !important; }
  .mt-sm-n20,
  .my-sm-n20 {
    margin-top: -20rem !important; }
  .mr-sm-n20,
  .mx-sm-n20 {
    margin-right: -20rem !important; }
  .mb-sm-n20,
  .my-sm-n20 {
    margin-bottom: -20rem !important; }
  .ml-sm-n20,
  .mx-sm-n20 {
    margin-left: -20rem !important; }
  .m-sm-n25 {
    margin: -25rem !important; }
  .mt-sm-n25,
  .my-sm-n25 {
    margin-top: -25rem !important; }
  .mr-sm-n25,
  .mx-sm-n25 {
    margin-right: -25rem !important; }
  .mb-sm-n25,
  .my-sm-n25 {
    margin-bottom: -25rem !important; }
  .ml-sm-n25,
  .mx-sm-n25 {
    margin-left: -25rem !important; }
  .m-sm-n10p {
    margin: -10% !important; }
  .mt-sm-n10p,
  .my-sm-n10p {
    margin-top: -10% !important; }
  .mr-sm-n10p,
  .mx-sm-n10p {
    margin-right: -10% !important; }
  .mb-sm-n10p,
  .my-sm-n10p {
    margin-bottom: -10% !important; }
  .ml-sm-n10p,
  .mx-sm-n10p {
    margin-left: -10% !important; }
  .m-sm-n15p {
    margin: -15% !important; }
  .mt-sm-n15p,
  .my-sm-n15p {
    margin-top: -15% !important; }
  .mr-sm-n15p,
  .mx-sm-n15p {
    margin-right: -15% !important; }
  .mb-sm-n15p,
  .my-sm-n15p {
    margin-bottom: -15% !important; }
  .ml-sm-n15p,
  .mx-sm-n15p {
    margin-left: -15% !important; }
  .m-sm-n20p {
    margin: -20% !important; }
  .mt-sm-n20p,
  .my-sm-n20p {
    margin-top: -20% !important; }
  .mr-sm-n20p,
  .mx-sm-n20p {
    margin-right: -20% !important; }
  .mb-sm-n20p,
  .my-sm-n20p {
    margin-bottom: -20% !important; }
  .ml-sm-n20p,
  .mx-sm-n20p {
    margin-left: -20% !important; }
  .m-sm-n25p {
    margin: -25% !important; }
  .mt-sm-n25p,
  .my-sm-n25p {
    margin-top: -25% !important; }
  .mr-sm-n25p,
  .mx-sm-n25p {
    margin-right: -25% !important; }
  .mb-sm-n25p,
  .my-sm-n25p {
    margin-bottom: -25% !important; }
  .ml-sm-n25p,
  .mx-sm-n25p {
    margin-left: -25% !important; }
  .m-sm-n30p {
    margin: -30% !important; }
  .mt-sm-n30p,
  .my-sm-n30p {
    margin-top: -30% !important; }
  .mr-sm-n30p,
  .mx-sm-n30p {
    margin-right: -30% !important; }
  .mb-sm-n30p,
  .my-sm-n30p {
    margin-bottom: -30% !important; }
  .ml-sm-n30p,
  .mx-sm-n30p {
    margin-left: -30% !important; }
  .m-sm-n40p {
    margin: -40% !important; }
  .mt-sm-n40p,
  .my-sm-n40p {
    margin-top: -40% !important; }
  .mr-sm-n40p,
  .mx-sm-n40p {
    margin-right: -40% !important; }
  .mb-sm-n40p,
  .my-sm-n40p {
    margin-bottom: -40% !important; }
  .ml-sm-n40p,
  .mx-sm-n40p {
    margin-left: -40% !important; }
  .m-sm-n50p {
    margin: -50% !important; }
  .mt-sm-n50p,
  .my-sm-n50p {
    margin-top: -50% !important; }
  .mr-sm-n50p,
  .mx-sm-n50p {
    margin-right: -50% !important; }
  .mb-sm-n50p,
  .my-sm-n50p {
    margin-bottom: -50% !important; }
  .ml-sm-n50p,
  .mx-sm-n50p {
    margin-left: -50% !important; }
  .m-sm-n60p {
    margin: -60% !important; }
  .mt-sm-n60p,
  .my-sm-n60p {
    margin-top: -60% !important; }
  .mr-sm-n60p,
  .mx-sm-n60p {
    margin-right: -60% !important; }
  .mb-sm-n60p,
  .my-sm-n60p {
    margin-bottom: -60% !important; }
  .ml-sm-n60p,
  .mx-sm-n60p {
    margin-left: -60% !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.25rem !important; }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important; }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important; }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important; }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important; }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important; }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important; }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important; }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important; }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important; }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important; }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important; }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important; }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important; }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important; }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important; }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important; }
  .m-md-4-5 {
    margin: 4.5rem !important; }
  .mt-md-4-5,
  .my-md-4-5 {
    margin-top: 4.5rem !important; }
  .mr-md-4-5,
  .mx-md-4-5 {
    margin-right: 4.5rem !important; }
  .mb-md-4-5,
  .my-md-4-5 {
    margin-bottom: 4.5rem !important; }
  .ml-md-4-5,
  .mx-md-4-5 {
    margin-left: 4.5rem !important; }
  .m-md-5-5 {
    margin: 4rem !important; }
  .mt-md-5-5,
  .my-md-5-5 {
    margin-top: 4rem !important; }
  .mr-md-5-5,
  .mx-md-5-5 {
    margin-right: 4rem !important; }
  .mb-md-5-5,
  .my-md-5-5 {
    margin-bottom: 4rem !important; }
  .ml-md-5-5,
  .mx-md-5-5 {
    margin-left: 4rem !important; }
  .m-md-6 {
    margin: 6rem !important; }
  .mt-md-6,
  .my-md-6 {
    margin-top: 6rem !important; }
  .mr-md-6,
  .mx-md-6 {
    margin-right: 6rem !important; }
  .mb-md-6,
  .my-md-6 {
    margin-bottom: 6rem !important; }
  .ml-md-6,
  .mx-md-6 {
    margin-left: 6rem !important; }
  .m-md-7 {
    margin: 7rem !important; }
  .mt-md-7,
  .my-md-7 {
    margin-top: 7rem !important; }
  .mr-md-7,
  .mx-md-7 {
    margin-right: 7rem !important; }
  .mb-md-7,
  .my-md-7 {
    margin-bottom: 7rem !important; }
  .ml-md-7,
  .mx-md-7 {
    margin-left: 7rem !important; }
  .m-md-8 {
    margin: 8rem !important; }
  .mt-md-8,
  .my-md-8 {
    margin-top: 8rem !important; }
  .mr-md-8,
  .mx-md-8 {
    margin-right: 8rem !important; }
  .mb-md-8,
  .my-md-8 {
    margin-bottom: 8rem !important; }
  .ml-md-8,
  .mx-md-8 {
    margin-left: 8rem !important; }
  .m-md-9 {
    margin: 9rem !important; }
  .mt-md-9,
  .my-md-9 {
    margin-top: 9rem !important; }
  .mr-md-9,
  .mx-md-9 {
    margin-right: 9rem !important; }
  .mb-md-9,
  .my-md-9 {
    margin-bottom: 9rem !important; }
  .ml-md-9,
  .mx-md-9 {
    margin-left: 9rem !important; }
  .m-md-10 {
    margin: 10rem !important; }
  .mt-md-10,
  .my-md-10 {
    margin-top: 10rem !important; }
  .mr-md-10,
  .mx-md-10 {
    margin-right: 10rem !important; }
  .mb-md-10,
  .my-md-10 {
    margin-bottom: 10rem !important; }
  .ml-md-10,
  .mx-md-10 {
    margin-left: 10rem !important; }
  .m-md-15 {
    margin: 15rem !important; }
  .mt-md-15,
  .my-md-15 {
    margin-top: 15rem !important; }
  .mr-md-15,
  .mx-md-15 {
    margin-right: 15rem !important; }
  .mb-md-15,
  .my-md-15 {
    margin-bottom: 15rem !important; }
  .ml-md-15,
  .mx-md-15 {
    margin-left: 15rem !important; }
  .m-md-20 {
    margin: 20rem !important; }
  .mt-md-20,
  .my-md-20 {
    margin-top: 20rem !important; }
  .mr-md-20,
  .mx-md-20 {
    margin-right: 20rem !important; }
  .mb-md-20,
  .my-md-20 {
    margin-bottom: 20rem !important; }
  .ml-md-20,
  .mx-md-20 {
    margin-left: 20rem !important; }
  .m-md-25 {
    margin: 25rem !important; }
  .mt-md-25,
  .my-md-25 {
    margin-top: 25rem !important; }
  .mr-md-25,
  .mx-md-25 {
    margin-right: 25rem !important; }
  .mb-md-25,
  .my-md-25 {
    margin-bottom: 25rem !important; }
  .ml-md-25,
  .mx-md-25 {
    margin-left: 25rem !important; }
  .m-md-10p {
    margin: 10% !important; }
  .mt-md-10p,
  .my-md-10p {
    margin-top: 10% !important; }
  .mr-md-10p,
  .mx-md-10p {
    margin-right: 10% !important; }
  .mb-md-10p,
  .my-md-10p {
    margin-bottom: 10% !important; }
  .ml-md-10p,
  .mx-md-10p {
    margin-left: 10% !important; }
  .m-md-15p {
    margin: 15% !important; }
  .mt-md-15p,
  .my-md-15p {
    margin-top: 15% !important; }
  .mr-md-15p,
  .mx-md-15p {
    margin-right: 15% !important; }
  .mb-md-15p,
  .my-md-15p {
    margin-bottom: 15% !important; }
  .ml-md-15p,
  .mx-md-15p {
    margin-left: 15% !important; }
  .m-md-20p {
    margin: 20% !important; }
  .mt-md-20p,
  .my-md-20p {
    margin-top: 20% !important; }
  .mr-md-20p,
  .mx-md-20p {
    margin-right: 20% !important; }
  .mb-md-20p,
  .my-md-20p {
    margin-bottom: 20% !important; }
  .ml-md-20p,
  .mx-md-20p {
    margin-left: 20% !important; }
  .m-md-25p {
    margin: 25% !important; }
  .mt-md-25p,
  .my-md-25p {
    margin-top: 25% !important; }
  .mr-md-25p,
  .mx-md-25p {
    margin-right: 25% !important; }
  .mb-md-25p,
  .my-md-25p {
    margin-bottom: 25% !important; }
  .ml-md-25p,
  .mx-md-25p {
    margin-left: 25% !important; }
  .m-md-30p {
    margin: 30% !important; }
  .mt-md-30p,
  .my-md-30p {
    margin-top: 30% !important; }
  .mr-md-30p,
  .mx-md-30p {
    margin-right: 30% !important; }
  .mb-md-30p,
  .my-md-30p {
    margin-bottom: 30% !important; }
  .ml-md-30p,
  .mx-md-30p {
    margin-left: 30% !important; }
  .m-md-40p {
    margin: 40% !important; }
  .mt-md-40p,
  .my-md-40p {
    margin-top: 40% !important; }
  .mr-md-40p,
  .mx-md-40p {
    margin-right: 40% !important; }
  .mb-md-40p,
  .my-md-40p {
    margin-bottom: 40% !important; }
  .ml-md-40p,
  .mx-md-40p {
    margin-left: 40% !important; }
  .m-md-50p {
    margin: 50% !important; }
  .mt-md-50p,
  .my-md-50p {
    margin-top: 50% !important; }
  .mr-md-50p,
  .mx-md-50p {
    margin-right: 50% !important; }
  .mb-md-50p,
  .my-md-50p {
    margin-bottom: 50% !important; }
  .ml-md-50p,
  .mx-md-50p {
    margin-left: 50% !important; }
  .m-md-60p {
    margin: 60% !important; }
  .mt-md-60p,
  .my-md-60p {
    margin-top: 60% !important; }
  .mr-md-60p,
  .mx-md-60p {
    margin-right: 60% !important; }
  .mb-md-60p,
  .my-md-60p {
    margin-bottom: 60% !important; }
  .ml-md-60p,
  .mx-md-60p {
    margin-left: 60% !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.25rem !important; }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important; }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important; }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important; }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important; }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important; }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important; }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important; }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important; }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important; }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important; }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important; }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important; }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important; }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important; }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important; }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important; }
  .p-md-4-5 {
    padding: 4.5rem !important; }
  .pt-md-4-5,
  .py-md-4-5 {
    padding-top: 4.5rem !important; }
  .pr-md-4-5,
  .px-md-4-5 {
    padding-right: 4.5rem !important; }
  .pb-md-4-5,
  .py-md-4-5 {
    padding-bottom: 4.5rem !important; }
  .pl-md-4-5,
  .px-md-4-5 {
    padding-left: 4.5rem !important; }
  .p-md-5-5 {
    padding: 4rem !important; }
  .pt-md-5-5,
  .py-md-5-5 {
    padding-top: 4rem !important; }
  .pr-md-5-5,
  .px-md-5-5 {
    padding-right: 4rem !important; }
  .pb-md-5-5,
  .py-md-5-5 {
    padding-bottom: 4rem !important; }
  .pl-md-5-5,
  .px-md-5-5 {
    padding-left: 4rem !important; }
  .p-md-6 {
    padding: 6rem !important; }
  .pt-md-6,
  .py-md-6 {
    padding-top: 6rem !important; }
  .pr-md-6,
  .px-md-6 {
    padding-right: 6rem !important; }
  .pb-md-6,
  .py-md-6 {
    padding-bottom: 6rem !important; }
  .pl-md-6,
  .px-md-6 {
    padding-left: 6rem !important; }
  .p-md-7 {
    padding: 7rem !important; }
  .pt-md-7,
  .py-md-7 {
    padding-top: 7rem !important; }
  .pr-md-7,
  .px-md-7 {
    padding-right: 7rem !important; }
  .pb-md-7,
  .py-md-7 {
    padding-bottom: 7rem !important; }
  .pl-md-7,
  .px-md-7 {
    padding-left: 7rem !important; }
  .p-md-8 {
    padding: 8rem !important; }
  .pt-md-8,
  .py-md-8 {
    padding-top: 8rem !important; }
  .pr-md-8,
  .px-md-8 {
    padding-right: 8rem !important; }
  .pb-md-8,
  .py-md-8 {
    padding-bottom: 8rem !important; }
  .pl-md-8,
  .px-md-8 {
    padding-left: 8rem !important; }
  .p-md-9 {
    padding: 9rem !important; }
  .pt-md-9,
  .py-md-9 {
    padding-top: 9rem !important; }
  .pr-md-9,
  .px-md-9 {
    padding-right: 9rem !important; }
  .pb-md-9,
  .py-md-9 {
    padding-bottom: 9rem !important; }
  .pl-md-9,
  .px-md-9 {
    padding-left: 9rem !important; }
  .p-md-10 {
    padding: 10rem !important; }
  .pt-md-10,
  .py-md-10 {
    padding-top: 10rem !important; }
  .pr-md-10,
  .px-md-10 {
    padding-right: 10rem !important; }
  .pb-md-10,
  .py-md-10 {
    padding-bottom: 10rem !important; }
  .pl-md-10,
  .px-md-10 {
    padding-left: 10rem !important; }
  .p-md-15 {
    padding: 15rem !important; }
  .pt-md-15,
  .py-md-15 {
    padding-top: 15rem !important; }
  .pr-md-15,
  .px-md-15 {
    padding-right: 15rem !important; }
  .pb-md-15,
  .py-md-15 {
    padding-bottom: 15rem !important; }
  .pl-md-15,
  .px-md-15 {
    padding-left: 15rem !important; }
  .p-md-20 {
    padding: 20rem !important; }
  .pt-md-20,
  .py-md-20 {
    padding-top: 20rem !important; }
  .pr-md-20,
  .px-md-20 {
    padding-right: 20rem !important; }
  .pb-md-20,
  .py-md-20 {
    padding-bottom: 20rem !important; }
  .pl-md-20,
  .px-md-20 {
    padding-left: 20rem !important; }
  .p-md-25 {
    padding: 25rem !important; }
  .pt-md-25,
  .py-md-25 {
    padding-top: 25rem !important; }
  .pr-md-25,
  .px-md-25 {
    padding-right: 25rem !important; }
  .pb-md-25,
  .py-md-25 {
    padding-bottom: 25rem !important; }
  .pl-md-25,
  .px-md-25 {
    padding-left: 25rem !important; }
  .p-md-10p {
    padding: 10% !important; }
  .pt-md-10p,
  .py-md-10p {
    padding-top: 10% !important; }
  .pr-md-10p,
  .px-md-10p {
    padding-right: 10% !important; }
  .pb-md-10p,
  .py-md-10p {
    padding-bottom: 10% !important; }
  .pl-md-10p,
  .px-md-10p {
    padding-left: 10% !important; }
  .p-md-15p {
    padding: 15% !important; }
  .pt-md-15p,
  .py-md-15p {
    padding-top: 15% !important; }
  .pr-md-15p,
  .px-md-15p {
    padding-right: 15% !important; }
  .pb-md-15p,
  .py-md-15p {
    padding-bottom: 15% !important; }
  .pl-md-15p,
  .px-md-15p {
    padding-left: 15% !important; }
  .p-md-20p {
    padding: 20% !important; }
  .pt-md-20p,
  .py-md-20p {
    padding-top: 20% !important; }
  .pr-md-20p,
  .px-md-20p {
    padding-right: 20% !important; }
  .pb-md-20p,
  .py-md-20p {
    padding-bottom: 20% !important; }
  .pl-md-20p,
  .px-md-20p {
    padding-left: 20% !important; }
  .p-md-25p {
    padding: 25% !important; }
  .pt-md-25p,
  .py-md-25p {
    padding-top: 25% !important; }
  .pr-md-25p,
  .px-md-25p {
    padding-right: 25% !important; }
  .pb-md-25p,
  .py-md-25p {
    padding-bottom: 25% !important; }
  .pl-md-25p,
  .px-md-25p {
    padding-left: 25% !important; }
  .p-md-30p {
    padding: 30% !important; }
  .pt-md-30p,
  .py-md-30p {
    padding-top: 30% !important; }
  .pr-md-30p,
  .px-md-30p {
    padding-right: 30% !important; }
  .pb-md-30p,
  .py-md-30p {
    padding-bottom: 30% !important; }
  .pl-md-30p,
  .px-md-30p {
    padding-left: 30% !important; }
  .p-md-40p {
    padding: 40% !important; }
  .pt-md-40p,
  .py-md-40p {
    padding-top: 40% !important; }
  .pr-md-40p,
  .px-md-40p {
    padding-right: 40% !important; }
  .pb-md-40p,
  .py-md-40p {
    padding-bottom: 40% !important; }
  .pl-md-40p,
  .px-md-40p {
    padding-left: 40% !important; }
  .p-md-50p {
    padding: 50% !important; }
  .pt-md-50p,
  .py-md-50p {
    padding-top: 50% !important; }
  .pr-md-50p,
  .px-md-50p {
    padding-right: 50% !important; }
  .pb-md-50p,
  .py-md-50p {
    padding-bottom: 50% !important; }
  .pl-md-50p,
  .px-md-50p {
    padding-left: 50% !important; }
  .p-md-60p {
    padding: 60% !important; }
  .pt-md-60p,
  .py-md-60p {
    padding-top: 60% !important; }
  .pr-md-60p,
  .px-md-60p {
    padding-right: 60% !important; }
  .pb-md-60p,
  .py-md-60p {
    padding-bottom: 60% !important; }
  .pl-md-60p,
  .px-md-60p {
    padding-left: 60% !important; }
  .m-md-n1 {
    margin: -0.25rem !important; }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important; }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important; }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important; }
  .m-md-n2 {
    margin: -0.5rem !important; }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important; }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important; }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important; }
  .m-md-n3 {
    margin: -1rem !important; }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important; }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important; }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important; }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important; }
  .m-md-n4 {
    margin: -1.5rem !important; }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important; }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important; }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important; }
  .m-md-n5 {
    margin: -3rem !important; }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important; }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important; }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important; }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important; }
  .m-md-n4-5 {
    margin: -4.5rem !important; }
  .mt-md-n4-5,
  .my-md-n4-5 {
    margin-top: -4.5rem !important; }
  .mr-md-n4-5,
  .mx-md-n4-5 {
    margin-right: -4.5rem !important; }
  .mb-md-n4-5,
  .my-md-n4-5 {
    margin-bottom: -4.5rem !important; }
  .ml-md-n4-5,
  .mx-md-n4-5 {
    margin-left: -4.5rem !important; }
  .m-md-n5-5 {
    margin: -4rem !important; }
  .mt-md-n5-5,
  .my-md-n5-5 {
    margin-top: -4rem !important; }
  .mr-md-n5-5,
  .mx-md-n5-5 {
    margin-right: -4rem !important; }
  .mb-md-n5-5,
  .my-md-n5-5 {
    margin-bottom: -4rem !important; }
  .ml-md-n5-5,
  .mx-md-n5-5 {
    margin-left: -4rem !important; }
  .m-md-n6 {
    margin: -6rem !important; }
  .mt-md-n6,
  .my-md-n6 {
    margin-top: -6rem !important; }
  .mr-md-n6,
  .mx-md-n6 {
    margin-right: -6rem !important; }
  .mb-md-n6,
  .my-md-n6 {
    margin-bottom: -6rem !important; }
  .ml-md-n6,
  .mx-md-n6 {
    margin-left: -6rem !important; }
  .m-md-n7 {
    margin: -7rem !important; }
  .mt-md-n7,
  .my-md-n7 {
    margin-top: -7rem !important; }
  .mr-md-n7,
  .mx-md-n7 {
    margin-right: -7rem !important; }
  .mb-md-n7,
  .my-md-n7 {
    margin-bottom: -7rem !important; }
  .ml-md-n7,
  .mx-md-n7 {
    margin-left: -7rem !important; }
  .m-md-n8 {
    margin: -8rem !important; }
  .mt-md-n8,
  .my-md-n8 {
    margin-top: -8rem !important; }
  .mr-md-n8,
  .mx-md-n8 {
    margin-right: -8rem !important; }
  .mb-md-n8,
  .my-md-n8 {
    margin-bottom: -8rem !important; }
  .ml-md-n8,
  .mx-md-n8 {
    margin-left: -8rem !important; }
  .m-md-n9 {
    margin: -9rem !important; }
  .mt-md-n9,
  .my-md-n9 {
    margin-top: -9rem !important; }
  .mr-md-n9,
  .mx-md-n9 {
    margin-right: -9rem !important; }
  .mb-md-n9,
  .my-md-n9 {
    margin-bottom: -9rem !important; }
  .ml-md-n9,
  .mx-md-n9 {
    margin-left: -9rem !important; }
  .m-md-n10 {
    margin: -10rem !important; }
  .mt-md-n10,
  .my-md-n10 {
    margin-top: -10rem !important; }
  .mr-md-n10,
  .mx-md-n10 {
    margin-right: -10rem !important; }
  .mb-md-n10,
  .my-md-n10 {
    margin-bottom: -10rem !important; }
  .ml-md-n10,
  .mx-md-n10 {
    margin-left: -10rem !important; }
  .m-md-n15 {
    margin: -15rem !important; }
  .mt-md-n15,
  .my-md-n15 {
    margin-top: -15rem !important; }
  .mr-md-n15,
  .mx-md-n15 {
    margin-right: -15rem !important; }
  .mb-md-n15,
  .my-md-n15 {
    margin-bottom: -15rem !important; }
  .ml-md-n15,
  .mx-md-n15 {
    margin-left: -15rem !important; }
  .m-md-n20 {
    margin: -20rem !important; }
  .mt-md-n20,
  .my-md-n20 {
    margin-top: -20rem !important; }
  .mr-md-n20,
  .mx-md-n20 {
    margin-right: -20rem !important; }
  .mb-md-n20,
  .my-md-n20 {
    margin-bottom: -20rem !important; }
  .ml-md-n20,
  .mx-md-n20 {
    margin-left: -20rem !important; }
  .m-md-n25 {
    margin: -25rem !important; }
  .mt-md-n25,
  .my-md-n25 {
    margin-top: -25rem !important; }
  .mr-md-n25,
  .mx-md-n25 {
    margin-right: -25rem !important; }
  .mb-md-n25,
  .my-md-n25 {
    margin-bottom: -25rem !important; }
  .ml-md-n25,
  .mx-md-n25 {
    margin-left: -25rem !important; }
  .m-md-n10p {
    margin: -10% !important; }
  .mt-md-n10p,
  .my-md-n10p {
    margin-top: -10% !important; }
  .mr-md-n10p,
  .mx-md-n10p {
    margin-right: -10% !important; }
  .mb-md-n10p,
  .my-md-n10p {
    margin-bottom: -10% !important; }
  .ml-md-n10p,
  .mx-md-n10p {
    margin-left: -10% !important; }
  .m-md-n15p {
    margin: -15% !important; }
  .mt-md-n15p,
  .my-md-n15p {
    margin-top: -15% !important; }
  .mr-md-n15p,
  .mx-md-n15p {
    margin-right: -15% !important; }
  .mb-md-n15p,
  .my-md-n15p {
    margin-bottom: -15% !important; }
  .ml-md-n15p,
  .mx-md-n15p {
    margin-left: -15% !important; }
  .m-md-n20p {
    margin: -20% !important; }
  .mt-md-n20p,
  .my-md-n20p {
    margin-top: -20% !important; }
  .mr-md-n20p,
  .mx-md-n20p {
    margin-right: -20% !important; }
  .mb-md-n20p,
  .my-md-n20p {
    margin-bottom: -20% !important; }
  .ml-md-n20p,
  .mx-md-n20p {
    margin-left: -20% !important; }
  .m-md-n25p {
    margin: -25% !important; }
  .mt-md-n25p,
  .my-md-n25p {
    margin-top: -25% !important; }
  .mr-md-n25p,
  .mx-md-n25p {
    margin-right: -25% !important; }
  .mb-md-n25p,
  .my-md-n25p {
    margin-bottom: -25% !important; }
  .ml-md-n25p,
  .mx-md-n25p {
    margin-left: -25% !important; }
  .m-md-n30p {
    margin: -30% !important; }
  .mt-md-n30p,
  .my-md-n30p {
    margin-top: -30% !important; }
  .mr-md-n30p,
  .mx-md-n30p {
    margin-right: -30% !important; }
  .mb-md-n30p,
  .my-md-n30p {
    margin-bottom: -30% !important; }
  .ml-md-n30p,
  .mx-md-n30p {
    margin-left: -30% !important; }
  .m-md-n40p {
    margin: -40% !important; }
  .mt-md-n40p,
  .my-md-n40p {
    margin-top: -40% !important; }
  .mr-md-n40p,
  .mx-md-n40p {
    margin-right: -40% !important; }
  .mb-md-n40p,
  .my-md-n40p {
    margin-bottom: -40% !important; }
  .ml-md-n40p,
  .mx-md-n40p {
    margin-left: -40% !important; }
  .m-md-n50p {
    margin: -50% !important; }
  .mt-md-n50p,
  .my-md-n50p {
    margin-top: -50% !important; }
  .mr-md-n50p,
  .mx-md-n50p {
    margin-right: -50% !important; }
  .mb-md-n50p,
  .my-md-n50p {
    margin-bottom: -50% !important; }
  .ml-md-n50p,
  .mx-md-n50p {
    margin-left: -50% !important; }
  .m-md-n60p {
    margin: -60% !important; }
  .mt-md-n60p,
  .my-md-n60p {
    margin-top: -60% !important; }
  .mr-md-n60p,
  .mx-md-n60p {
    margin-right: -60% !important; }
  .mb-md-n60p,
  .my-md-n60p {
    margin-bottom: -60% !important; }
  .ml-md-n60p,
  .mx-md-n60p {
    margin-left: -60% !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.25rem !important; }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important; }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important; }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important; }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important; }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important; }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important; }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important; }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important; }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important; }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important; }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important; }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important; }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important; }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important; }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important; }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important; }
  .m-lg-4-5 {
    margin: 4.5rem !important; }
  .mt-lg-4-5,
  .my-lg-4-5 {
    margin-top: 4.5rem !important; }
  .mr-lg-4-5,
  .mx-lg-4-5 {
    margin-right: 4.5rem !important; }
  .mb-lg-4-5,
  .my-lg-4-5 {
    margin-bottom: 4.5rem !important; }
  .ml-lg-4-5,
  .mx-lg-4-5 {
    margin-left: 4.5rem !important; }
  .m-lg-5-5 {
    margin: 4rem !important; }
  .mt-lg-5-5,
  .my-lg-5-5 {
    margin-top: 4rem !important; }
  .mr-lg-5-5,
  .mx-lg-5-5 {
    margin-right: 4rem !important; }
  .mb-lg-5-5,
  .my-lg-5-5 {
    margin-bottom: 4rem !important; }
  .ml-lg-5-5,
  .mx-lg-5-5 {
    margin-left: 4rem !important; }
  .m-lg-6 {
    margin: 6rem !important; }
  .mt-lg-6,
  .my-lg-6 {
    margin-top: 6rem !important; }
  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 6rem !important; }
  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 6rem !important; }
  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 6rem !important; }
  .m-lg-7 {
    margin: 7rem !important; }
  .mt-lg-7,
  .my-lg-7 {
    margin-top: 7rem !important; }
  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 7rem !important; }
  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 7rem !important; }
  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 7rem !important; }
  .m-lg-8 {
    margin: 8rem !important; }
  .mt-lg-8,
  .my-lg-8 {
    margin-top: 8rem !important; }
  .mr-lg-8,
  .mx-lg-8 {
    margin-right: 8rem !important; }
  .mb-lg-8,
  .my-lg-8 {
    margin-bottom: 8rem !important; }
  .ml-lg-8,
  .mx-lg-8 {
    margin-left: 8rem !important; }
  .m-lg-9 {
    margin: 9rem !important; }
  .mt-lg-9,
  .my-lg-9 {
    margin-top: 9rem !important; }
  .mr-lg-9,
  .mx-lg-9 {
    margin-right: 9rem !important; }
  .mb-lg-9,
  .my-lg-9 {
    margin-bottom: 9rem !important; }
  .ml-lg-9,
  .mx-lg-9 {
    margin-left: 9rem !important; }
  .m-lg-10 {
    margin: 10rem !important; }
  .mt-lg-10,
  .my-lg-10 {
    margin-top: 10rem !important; }
  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 10rem !important; }
  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 10rem !important; }
  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 10rem !important; }
  .m-lg-15 {
    margin: 15rem !important; }
  .mt-lg-15,
  .my-lg-15 {
    margin-top: 15rem !important; }
  .mr-lg-15,
  .mx-lg-15 {
    margin-right: 15rem !important; }
  .mb-lg-15,
  .my-lg-15 {
    margin-bottom: 15rem !important; }
  .ml-lg-15,
  .mx-lg-15 {
    margin-left: 15rem !important; }
  .m-lg-20 {
    margin: 20rem !important; }
  .mt-lg-20,
  .my-lg-20 {
    margin-top: 20rem !important; }
  .mr-lg-20,
  .mx-lg-20 {
    margin-right: 20rem !important; }
  .mb-lg-20,
  .my-lg-20 {
    margin-bottom: 20rem !important; }
  .ml-lg-20,
  .mx-lg-20 {
    margin-left: 20rem !important; }
  .m-lg-25 {
    margin: 25rem !important; }
  .mt-lg-25,
  .my-lg-25 {
    margin-top: 25rem !important; }
  .mr-lg-25,
  .mx-lg-25 {
    margin-right: 25rem !important; }
  .mb-lg-25,
  .my-lg-25 {
    margin-bottom: 25rem !important; }
  .ml-lg-25,
  .mx-lg-25 {
    margin-left: 25rem !important; }
  .m-lg-10p {
    margin: 10% !important; }
  .mt-lg-10p,
  .my-lg-10p {
    margin-top: 10% !important; }
  .mr-lg-10p,
  .mx-lg-10p {
    margin-right: 10% !important; }
  .mb-lg-10p,
  .my-lg-10p {
    margin-bottom: 10% !important; }
  .ml-lg-10p,
  .mx-lg-10p {
    margin-left: 10% !important; }
  .m-lg-15p {
    margin: 15% !important; }
  .mt-lg-15p,
  .my-lg-15p {
    margin-top: 15% !important; }
  .mr-lg-15p,
  .mx-lg-15p {
    margin-right: 15% !important; }
  .mb-lg-15p,
  .my-lg-15p {
    margin-bottom: 15% !important; }
  .ml-lg-15p,
  .mx-lg-15p {
    margin-left: 15% !important; }
  .m-lg-20p {
    margin: 20% !important; }
  .mt-lg-20p,
  .my-lg-20p {
    margin-top: 20% !important; }
  .mr-lg-20p,
  .mx-lg-20p {
    margin-right: 20% !important; }
  .mb-lg-20p,
  .my-lg-20p {
    margin-bottom: 20% !important; }
  .ml-lg-20p,
  .mx-lg-20p {
    margin-left: 20% !important; }
  .m-lg-25p {
    margin: 25% !important; }
  .mt-lg-25p,
  .my-lg-25p {
    margin-top: 25% !important; }
  .mr-lg-25p,
  .mx-lg-25p {
    margin-right: 25% !important; }
  .mb-lg-25p,
  .my-lg-25p {
    margin-bottom: 25% !important; }
  .ml-lg-25p,
  .mx-lg-25p {
    margin-left: 25% !important; }
  .m-lg-30p {
    margin: 30% !important; }
  .mt-lg-30p,
  .my-lg-30p {
    margin-top: 30% !important; }
  .mr-lg-30p,
  .mx-lg-30p {
    margin-right: 30% !important; }
  .mb-lg-30p,
  .my-lg-30p {
    margin-bottom: 30% !important; }
  .ml-lg-30p,
  .mx-lg-30p {
    margin-left: 30% !important; }
  .m-lg-40p {
    margin: 40% !important; }
  .mt-lg-40p,
  .my-lg-40p {
    margin-top: 40% !important; }
  .mr-lg-40p,
  .mx-lg-40p {
    margin-right: 40% !important; }
  .mb-lg-40p,
  .my-lg-40p {
    margin-bottom: 40% !important; }
  .ml-lg-40p,
  .mx-lg-40p {
    margin-left: 40% !important; }
  .m-lg-50p {
    margin: 50% !important; }
  .mt-lg-50p,
  .my-lg-50p {
    margin-top: 50% !important; }
  .mr-lg-50p,
  .mx-lg-50p {
    margin-right: 50% !important; }
  .mb-lg-50p,
  .my-lg-50p {
    margin-bottom: 50% !important; }
  .ml-lg-50p,
  .mx-lg-50p {
    margin-left: 50% !important; }
  .m-lg-60p {
    margin: 60% !important; }
  .mt-lg-60p,
  .my-lg-60p {
    margin-top: 60% !important; }
  .mr-lg-60p,
  .mx-lg-60p {
    margin-right: 60% !important; }
  .mb-lg-60p,
  .my-lg-60p {
    margin-bottom: 60% !important; }
  .ml-lg-60p,
  .mx-lg-60p {
    margin-left: 60% !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.25rem !important; }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important; }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important; }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important; }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important; }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important; }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important; }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important; }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important; }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important; }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important; }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important; }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important; }
  .p-lg-4-5 {
    padding: 4.5rem !important; }
  .pt-lg-4-5,
  .py-lg-4-5 {
    padding-top: 4.5rem !important; }
  .pr-lg-4-5,
  .px-lg-4-5 {
    padding-right: 4.5rem !important; }
  .pb-lg-4-5,
  .py-lg-4-5 {
    padding-bottom: 4.5rem !important; }
  .pl-lg-4-5,
  .px-lg-4-5 {
    padding-left: 4.5rem !important; }
  .p-lg-5-5 {
    padding: 4rem !important; }
  .pt-lg-5-5,
  .py-lg-5-5 {
    padding-top: 4rem !important; }
  .pr-lg-5-5,
  .px-lg-5-5 {
    padding-right: 4rem !important; }
  .pb-lg-5-5,
  .py-lg-5-5 {
    padding-bottom: 4rem !important; }
  .pl-lg-5-5,
  .px-lg-5-5 {
    padding-left: 4rem !important; }
  .p-lg-6 {
    padding: 6rem !important; }
  .pt-lg-6,
  .py-lg-6 {
    padding-top: 6rem !important; }
  .pr-lg-6,
  .px-lg-6 {
    padding-right: 6rem !important; }
  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 6rem !important; }
  .pl-lg-6,
  .px-lg-6 {
    padding-left: 6rem !important; }
  .p-lg-7 {
    padding: 7rem !important; }
  .pt-lg-7,
  .py-lg-7 {
    padding-top: 7rem !important; }
  .pr-lg-7,
  .px-lg-7 {
    padding-right: 7rem !important; }
  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 7rem !important; }
  .pl-lg-7,
  .px-lg-7 {
    padding-left: 7rem !important; }
  .p-lg-8 {
    padding: 8rem !important; }
  .pt-lg-8,
  .py-lg-8 {
    padding-top: 8rem !important; }
  .pr-lg-8,
  .px-lg-8 {
    padding-right: 8rem !important; }
  .pb-lg-8,
  .py-lg-8 {
    padding-bottom: 8rem !important; }
  .pl-lg-8,
  .px-lg-8 {
    padding-left: 8rem !important; }
  .p-lg-9 {
    padding: 9rem !important; }
  .pt-lg-9,
  .py-lg-9 {
    padding-top: 9rem !important; }
  .pr-lg-9,
  .px-lg-9 {
    padding-right: 9rem !important; }
  .pb-lg-9,
  .py-lg-9 {
    padding-bottom: 9rem !important; }
  .pl-lg-9,
  .px-lg-9 {
    padding-left: 9rem !important; }
  .p-lg-10 {
    padding: 10rem !important; }
  .pt-lg-10,
  .py-lg-10 {
    padding-top: 10rem !important; }
  .pr-lg-10,
  .px-lg-10 {
    padding-right: 10rem !important; }
  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 10rem !important; }
  .pl-lg-10,
  .px-lg-10 {
    padding-left: 10rem !important; }
  .p-lg-15 {
    padding: 15rem !important; }
  .pt-lg-15,
  .py-lg-15 {
    padding-top: 15rem !important; }
  .pr-lg-15,
  .px-lg-15 {
    padding-right: 15rem !important; }
  .pb-lg-15,
  .py-lg-15 {
    padding-bottom: 15rem !important; }
  .pl-lg-15,
  .px-lg-15 {
    padding-left: 15rem !important; }
  .p-lg-20 {
    padding: 20rem !important; }
  .pt-lg-20,
  .py-lg-20 {
    padding-top: 20rem !important; }
  .pr-lg-20,
  .px-lg-20 {
    padding-right: 20rem !important; }
  .pb-lg-20,
  .py-lg-20 {
    padding-bottom: 20rem !important; }
  .pl-lg-20,
  .px-lg-20 {
    padding-left: 20rem !important; }
  .p-lg-25 {
    padding: 25rem !important; }
  .pt-lg-25,
  .py-lg-25 {
    padding-top: 25rem !important; }
  .pr-lg-25,
  .px-lg-25 {
    padding-right: 25rem !important; }
  .pb-lg-25,
  .py-lg-25 {
    padding-bottom: 25rem !important; }
  .pl-lg-25,
  .px-lg-25 {
    padding-left: 25rem !important; }
  .p-lg-10p {
    padding: 10% !important; }
  .pt-lg-10p,
  .py-lg-10p {
    padding-top: 10% !important; }
  .pr-lg-10p,
  .px-lg-10p {
    padding-right: 10% !important; }
  .pb-lg-10p,
  .py-lg-10p {
    padding-bottom: 10% !important; }
  .pl-lg-10p,
  .px-lg-10p {
    padding-left: 10% !important; }
  .p-lg-15p {
    padding: 15% !important; }
  .pt-lg-15p,
  .py-lg-15p {
    padding-top: 15% !important; }
  .pr-lg-15p,
  .px-lg-15p {
    padding-right: 15% !important; }
  .pb-lg-15p,
  .py-lg-15p {
    padding-bottom: 15% !important; }
  .pl-lg-15p,
  .px-lg-15p {
    padding-left: 15% !important; }
  .p-lg-20p {
    padding: 20% !important; }
  .pt-lg-20p,
  .py-lg-20p {
    padding-top: 20% !important; }
  .pr-lg-20p,
  .px-lg-20p {
    padding-right: 20% !important; }
  .pb-lg-20p,
  .py-lg-20p {
    padding-bottom: 20% !important; }
  .pl-lg-20p,
  .px-lg-20p {
    padding-left: 20% !important; }
  .p-lg-25p {
    padding: 25% !important; }
  .pt-lg-25p,
  .py-lg-25p {
    padding-top: 25% !important; }
  .pr-lg-25p,
  .px-lg-25p {
    padding-right: 25% !important; }
  .pb-lg-25p,
  .py-lg-25p {
    padding-bottom: 25% !important; }
  .pl-lg-25p,
  .px-lg-25p {
    padding-left: 25% !important; }
  .p-lg-30p {
    padding: 30% !important; }
  .pt-lg-30p,
  .py-lg-30p {
    padding-top: 30% !important; }
  .pr-lg-30p,
  .px-lg-30p {
    padding-right: 30% !important; }
  .pb-lg-30p,
  .py-lg-30p {
    padding-bottom: 30% !important; }
  .pl-lg-30p,
  .px-lg-30p {
    padding-left: 30% !important; }
  .p-lg-40p {
    padding: 40% !important; }
  .pt-lg-40p,
  .py-lg-40p {
    padding-top: 40% !important; }
  .pr-lg-40p,
  .px-lg-40p {
    padding-right: 40% !important; }
  .pb-lg-40p,
  .py-lg-40p {
    padding-bottom: 40% !important; }
  .pl-lg-40p,
  .px-lg-40p {
    padding-left: 40% !important; }
  .p-lg-50p {
    padding: 50% !important; }
  .pt-lg-50p,
  .py-lg-50p {
    padding-top: 50% !important; }
  .pr-lg-50p,
  .px-lg-50p {
    padding-right: 50% !important; }
  .pb-lg-50p,
  .py-lg-50p {
    padding-bottom: 50% !important; }
  .pl-lg-50p,
  .px-lg-50p {
    padding-left: 50% !important; }
  .p-lg-60p {
    padding: 60% !important; }
  .pt-lg-60p,
  .py-lg-60p {
    padding-top: 60% !important; }
  .pr-lg-60p,
  .px-lg-60p {
    padding-right: 60% !important; }
  .pb-lg-60p,
  .py-lg-60p {
    padding-bottom: 60% !important; }
  .pl-lg-60p,
  .px-lg-60p {
    padding-left: 60% !important; }
  .m-lg-n1 {
    margin: -0.25rem !important; }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important; }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important; }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important; }
  .m-lg-n2 {
    margin: -0.5rem !important; }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important; }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important; }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important; }
  .m-lg-n3 {
    margin: -1rem !important; }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important; }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important; }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important; }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important; }
  .m-lg-n4 {
    margin: -1.5rem !important; }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important; }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important; }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important; }
  .m-lg-n5 {
    margin: -3rem !important; }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important; }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important; }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important; }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important; }
  .m-lg-n4-5 {
    margin: -4.5rem !important; }
  .mt-lg-n4-5,
  .my-lg-n4-5 {
    margin-top: -4.5rem !important; }
  .mr-lg-n4-5,
  .mx-lg-n4-5 {
    margin-right: -4.5rem !important; }
  .mb-lg-n4-5,
  .my-lg-n4-5 {
    margin-bottom: -4.5rem !important; }
  .ml-lg-n4-5,
  .mx-lg-n4-5 {
    margin-left: -4.5rem !important; }
  .m-lg-n5-5 {
    margin: -4rem !important; }
  .mt-lg-n5-5,
  .my-lg-n5-5 {
    margin-top: -4rem !important; }
  .mr-lg-n5-5,
  .mx-lg-n5-5 {
    margin-right: -4rem !important; }
  .mb-lg-n5-5,
  .my-lg-n5-5 {
    margin-bottom: -4rem !important; }
  .ml-lg-n5-5,
  .mx-lg-n5-5 {
    margin-left: -4rem !important; }
  .m-lg-n6 {
    margin: -6rem !important; }
  .mt-lg-n6,
  .my-lg-n6 {
    margin-top: -6rem !important; }
  .mr-lg-n6,
  .mx-lg-n6 {
    margin-right: -6rem !important; }
  .mb-lg-n6,
  .my-lg-n6 {
    margin-bottom: -6rem !important; }
  .ml-lg-n6,
  .mx-lg-n6 {
    margin-left: -6rem !important; }
  .m-lg-n7 {
    margin: -7rem !important; }
  .mt-lg-n7,
  .my-lg-n7 {
    margin-top: -7rem !important; }
  .mr-lg-n7,
  .mx-lg-n7 {
    margin-right: -7rem !important; }
  .mb-lg-n7,
  .my-lg-n7 {
    margin-bottom: -7rem !important; }
  .ml-lg-n7,
  .mx-lg-n7 {
    margin-left: -7rem !important; }
  .m-lg-n8 {
    margin: -8rem !important; }
  .mt-lg-n8,
  .my-lg-n8 {
    margin-top: -8rem !important; }
  .mr-lg-n8,
  .mx-lg-n8 {
    margin-right: -8rem !important; }
  .mb-lg-n8,
  .my-lg-n8 {
    margin-bottom: -8rem !important; }
  .ml-lg-n8,
  .mx-lg-n8 {
    margin-left: -8rem !important; }
  .m-lg-n9 {
    margin: -9rem !important; }
  .mt-lg-n9,
  .my-lg-n9 {
    margin-top: -9rem !important; }
  .mr-lg-n9,
  .mx-lg-n9 {
    margin-right: -9rem !important; }
  .mb-lg-n9,
  .my-lg-n9 {
    margin-bottom: -9rem !important; }
  .ml-lg-n9,
  .mx-lg-n9 {
    margin-left: -9rem !important; }
  .m-lg-n10 {
    margin: -10rem !important; }
  .mt-lg-n10,
  .my-lg-n10 {
    margin-top: -10rem !important; }
  .mr-lg-n10,
  .mx-lg-n10 {
    margin-right: -10rem !important; }
  .mb-lg-n10,
  .my-lg-n10 {
    margin-bottom: -10rem !important; }
  .ml-lg-n10,
  .mx-lg-n10 {
    margin-left: -10rem !important; }
  .m-lg-n15 {
    margin: -15rem !important; }
  .mt-lg-n15,
  .my-lg-n15 {
    margin-top: -15rem !important; }
  .mr-lg-n15,
  .mx-lg-n15 {
    margin-right: -15rem !important; }
  .mb-lg-n15,
  .my-lg-n15 {
    margin-bottom: -15rem !important; }
  .ml-lg-n15,
  .mx-lg-n15 {
    margin-left: -15rem !important; }
  .m-lg-n20 {
    margin: -20rem !important; }
  .mt-lg-n20,
  .my-lg-n20 {
    margin-top: -20rem !important; }
  .mr-lg-n20,
  .mx-lg-n20 {
    margin-right: -20rem !important; }
  .mb-lg-n20,
  .my-lg-n20 {
    margin-bottom: -20rem !important; }
  .ml-lg-n20,
  .mx-lg-n20 {
    margin-left: -20rem !important; }
  .m-lg-n25 {
    margin: -25rem !important; }
  .mt-lg-n25,
  .my-lg-n25 {
    margin-top: -25rem !important; }
  .mr-lg-n25,
  .mx-lg-n25 {
    margin-right: -25rem !important; }
  .mb-lg-n25,
  .my-lg-n25 {
    margin-bottom: -25rem !important; }
  .ml-lg-n25,
  .mx-lg-n25 {
    margin-left: -25rem !important; }
  .m-lg-n10p {
    margin: -10% !important; }
  .mt-lg-n10p,
  .my-lg-n10p {
    margin-top: -10% !important; }
  .mr-lg-n10p,
  .mx-lg-n10p {
    margin-right: -10% !important; }
  .mb-lg-n10p,
  .my-lg-n10p {
    margin-bottom: -10% !important; }
  .ml-lg-n10p,
  .mx-lg-n10p {
    margin-left: -10% !important; }
  .m-lg-n15p {
    margin: -15% !important; }
  .mt-lg-n15p,
  .my-lg-n15p {
    margin-top: -15% !important; }
  .mr-lg-n15p,
  .mx-lg-n15p {
    margin-right: -15% !important; }
  .mb-lg-n15p,
  .my-lg-n15p {
    margin-bottom: -15% !important; }
  .ml-lg-n15p,
  .mx-lg-n15p {
    margin-left: -15% !important; }
  .m-lg-n20p {
    margin: -20% !important; }
  .mt-lg-n20p,
  .my-lg-n20p {
    margin-top: -20% !important; }
  .mr-lg-n20p,
  .mx-lg-n20p {
    margin-right: -20% !important; }
  .mb-lg-n20p,
  .my-lg-n20p {
    margin-bottom: -20% !important; }
  .ml-lg-n20p,
  .mx-lg-n20p {
    margin-left: -20% !important; }
  .m-lg-n25p {
    margin: -25% !important; }
  .mt-lg-n25p,
  .my-lg-n25p {
    margin-top: -25% !important; }
  .mr-lg-n25p,
  .mx-lg-n25p {
    margin-right: -25% !important; }
  .mb-lg-n25p,
  .my-lg-n25p {
    margin-bottom: -25% !important; }
  .ml-lg-n25p,
  .mx-lg-n25p {
    margin-left: -25% !important; }
  .m-lg-n30p {
    margin: -30% !important; }
  .mt-lg-n30p,
  .my-lg-n30p {
    margin-top: -30% !important; }
  .mr-lg-n30p,
  .mx-lg-n30p {
    margin-right: -30% !important; }
  .mb-lg-n30p,
  .my-lg-n30p {
    margin-bottom: -30% !important; }
  .ml-lg-n30p,
  .mx-lg-n30p {
    margin-left: -30% !important; }
  .m-lg-n40p {
    margin: -40% !important; }
  .mt-lg-n40p,
  .my-lg-n40p {
    margin-top: -40% !important; }
  .mr-lg-n40p,
  .mx-lg-n40p {
    margin-right: -40% !important; }
  .mb-lg-n40p,
  .my-lg-n40p {
    margin-bottom: -40% !important; }
  .ml-lg-n40p,
  .mx-lg-n40p {
    margin-left: -40% !important; }
  .m-lg-n50p {
    margin: -50% !important; }
  .mt-lg-n50p,
  .my-lg-n50p {
    margin-top: -50% !important; }
  .mr-lg-n50p,
  .mx-lg-n50p {
    margin-right: -50% !important; }
  .mb-lg-n50p,
  .my-lg-n50p {
    margin-bottom: -50% !important; }
  .ml-lg-n50p,
  .mx-lg-n50p {
    margin-left: -50% !important; }
  .m-lg-n60p {
    margin: -60% !important; }
  .mt-lg-n60p,
  .my-lg-n60p {
    margin-top: -60% !important; }
  .mr-lg-n60p,
  .mx-lg-n60p {
    margin-right: -60% !important; }
  .mb-lg-n60p,
  .my-lg-n60p {
    margin-bottom: -60% !important; }
  .ml-lg-n60p,
  .mx-lg-n60p {
    margin-left: -60% !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: 1230px) {
  .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.25rem !important; }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important; }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important; }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important; }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important; }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem !important; }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important; }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important; }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important; }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important; }
  .m-xl-4 {
    margin: 1.5rem !important; }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important; }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important; }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important; }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important; }
  .m-xl-5 {
    margin: 3rem !important; }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important; }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important; }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important; }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important; }
  .m-xl-4-5 {
    margin: 4.5rem !important; }
  .mt-xl-4-5,
  .my-xl-4-5 {
    margin-top: 4.5rem !important; }
  .mr-xl-4-5,
  .mx-xl-4-5 {
    margin-right: 4.5rem !important; }
  .mb-xl-4-5,
  .my-xl-4-5 {
    margin-bottom: 4.5rem !important; }
  .ml-xl-4-5,
  .mx-xl-4-5 {
    margin-left: 4.5rem !important; }
  .m-xl-5-5 {
    margin: 4rem !important; }
  .mt-xl-5-5,
  .my-xl-5-5 {
    margin-top: 4rem !important; }
  .mr-xl-5-5,
  .mx-xl-5-5 {
    margin-right: 4rem !important; }
  .mb-xl-5-5,
  .my-xl-5-5 {
    margin-bottom: 4rem !important; }
  .ml-xl-5-5,
  .mx-xl-5-5 {
    margin-left: 4rem !important; }
  .m-xl-6 {
    margin: 6rem !important; }
  .mt-xl-6,
  .my-xl-6 {
    margin-top: 6rem !important; }
  .mr-xl-6,
  .mx-xl-6 {
    margin-right: 6rem !important; }
  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 6rem !important; }
  .ml-xl-6,
  .mx-xl-6 {
    margin-left: 6rem !important; }
  .m-xl-7 {
    margin: 7rem !important; }
  .mt-xl-7,
  .my-xl-7 {
    margin-top: 7rem !important; }
  .mr-xl-7,
  .mx-xl-7 {
    margin-right: 7rem !important; }
  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 7rem !important; }
  .ml-xl-7,
  .mx-xl-7 {
    margin-left: 7rem !important; }
  .m-xl-8 {
    margin: 8rem !important; }
  .mt-xl-8,
  .my-xl-8 {
    margin-top: 8rem !important; }
  .mr-xl-8,
  .mx-xl-8 {
    margin-right: 8rem !important; }
  .mb-xl-8,
  .my-xl-8 {
    margin-bottom: 8rem !important; }
  .ml-xl-8,
  .mx-xl-8 {
    margin-left: 8rem !important; }
  .m-xl-9 {
    margin: 9rem !important; }
  .mt-xl-9,
  .my-xl-9 {
    margin-top: 9rem !important; }
  .mr-xl-9,
  .mx-xl-9 {
    margin-right: 9rem !important; }
  .mb-xl-9,
  .my-xl-9 {
    margin-bottom: 9rem !important; }
  .ml-xl-9,
  .mx-xl-9 {
    margin-left: 9rem !important; }
  .m-xl-10 {
    margin: 10rem !important; }
  .mt-xl-10,
  .my-xl-10 {
    margin-top: 10rem !important; }
  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 10rem !important; }
  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 10rem !important; }
  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 10rem !important; }
  .m-xl-15 {
    margin: 15rem !important; }
  .mt-xl-15,
  .my-xl-15 {
    margin-top: 15rem !important; }
  .mr-xl-15,
  .mx-xl-15 {
    margin-right: 15rem !important; }
  .mb-xl-15,
  .my-xl-15 {
    margin-bottom: 15rem !important; }
  .ml-xl-15,
  .mx-xl-15 {
    margin-left: 15rem !important; }
  .m-xl-20 {
    margin: 20rem !important; }
  .mt-xl-20,
  .my-xl-20 {
    margin-top: 20rem !important; }
  .mr-xl-20,
  .mx-xl-20 {
    margin-right: 20rem !important; }
  .mb-xl-20,
  .my-xl-20 {
    margin-bottom: 20rem !important; }
  .ml-xl-20,
  .mx-xl-20 {
    margin-left: 20rem !important; }
  .m-xl-25 {
    margin: 25rem !important; }
  .mt-xl-25,
  .my-xl-25 {
    margin-top: 25rem !important; }
  .mr-xl-25,
  .mx-xl-25 {
    margin-right: 25rem !important; }
  .mb-xl-25,
  .my-xl-25 {
    margin-bottom: 25rem !important; }
  .ml-xl-25,
  .mx-xl-25 {
    margin-left: 25rem !important; }
  .m-xl-10p {
    margin: 10% !important; }
  .mt-xl-10p,
  .my-xl-10p {
    margin-top: 10% !important; }
  .mr-xl-10p,
  .mx-xl-10p {
    margin-right: 10% !important; }
  .mb-xl-10p,
  .my-xl-10p {
    margin-bottom: 10% !important; }
  .ml-xl-10p,
  .mx-xl-10p {
    margin-left: 10% !important; }
  .m-xl-15p {
    margin: 15% !important; }
  .mt-xl-15p,
  .my-xl-15p {
    margin-top: 15% !important; }
  .mr-xl-15p,
  .mx-xl-15p {
    margin-right: 15% !important; }
  .mb-xl-15p,
  .my-xl-15p {
    margin-bottom: 15% !important; }
  .ml-xl-15p,
  .mx-xl-15p {
    margin-left: 15% !important; }
  .m-xl-20p {
    margin: 20% !important; }
  .mt-xl-20p,
  .my-xl-20p {
    margin-top: 20% !important; }
  .mr-xl-20p,
  .mx-xl-20p {
    margin-right: 20% !important; }
  .mb-xl-20p,
  .my-xl-20p {
    margin-bottom: 20% !important; }
  .ml-xl-20p,
  .mx-xl-20p {
    margin-left: 20% !important; }
  .m-xl-25p {
    margin: 25% !important; }
  .mt-xl-25p,
  .my-xl-25p {
    margin-top: 25% !important; }
  .mr-xl-25p,
  .mx-xl-25p {
    margin-right: 25% !important; }
  .mb-xl-25p,
  .my-xl-25p {
    margin-bottom: 25% !important; }
  .ml-xl-25p,
  .mx-xl-25p {
    margin-left: 25% !important; }
  .m-xl-30p {
    margin: 30% !important; }
  .mt-xl-30p,
  .my-xl-30p {
    margin-top: 30% !important; }
  .mr-xl-30p,
  .mx-xl-30p {
    margin-right: 30% !important; }
  .mb-xl-30p,
  .my-xl-30p {
    margin-bottom: 30% !important; }
  .ml-xl-30p,
  .mx-xl-30p {
    margin-left: 30% !important; }
  .m-xl-40p {
    margin: 40% !important; }
  .mt-xl-40p,
  .my-xl-40p {
    margin-top: 40% !important; }
  .mr-xl-40p,
  .mx-xl-40p {
    margin-right: 40% !important; }
  .mb-xl-40p,
  .my-xl-40p {
    margin-bottom: 40% !important; }
  .ml-xl-40p,
  .mx-xl-40p {
    margin-left: 40% !important; }
  .m-xl-50p {
    margin: 50% !important; }
  .mt-xl-50p,
  .my-xl-50p {
    margin-top: 50% !important; }
  .mr-xl-50p,
  .mx-xl-50p {
    margin-right: 50% !important; }
  .mb-xl-50p,
  .my-xl-50p {
    margin-bottom: 50% !important; }
  .ml-xl-50p,
  .mx-xl-50p {
    margin-left: 50% !important; }
  .m-xl-60p {
    margin: 60% !important; }
  .mt-xl-60p,
  .my-xl-60p {
    margin-top: 60% !important; }
  .mr-xl-60p,
  .mx-xl-60p {
    margin-right: 60% !important; }
  .mb-xl-60p,
  .my-xl-60p {
    margin-bottom: 60% !important; }
  .ml-xl-60p,
  .mx-xl-60p {
    margin-left: 60% !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.25rem !important; }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important; }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important; }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important; }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important; }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem !important; }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important; }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important; }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important; }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important; }
  .p-xl-4 {
    padding: 1.5rem !important; }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important; }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important; }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important; }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important; }
  .p-xl-5 {
    padding: 3rem !important; }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important; }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important; }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important; }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important; }
  .p-xl-4-5 {
    padding: 4.5rem !important; }
  .pt-xl-4-5,
  .py-xl-4-5 {
    padding-top: 4.5rem !important; }
  .pr-xl-4-5,
  .px-xl-4-5 {
    padding-right: 4.5rem !important; }
  .pb-xl-4-5,
  .py-xl-4-5 {
    padding-bottom: 4.5rem !important; }
  .pl-xl-4-5,
  .px-xl-4-5 {
    padding-left: 4.5rem !important; }
  .p-xl-5-5 {
    padding: 4rem !important; }
  .pt-xl-5-5,
  .py-xl-5-5 {
    padding-top: 4rem !important; }
  .pr-xl-5-5,
  .px-xl-5-5 {
    padding-right: 4rem !important; }
  .pb-xl-5-5,
  .py-xl-5-5 {
    padding-bottom: 4rem !important; }
  .pl-xl-5-5,
  .px-xl-5-5 {
    padding-left: 4rem !important; }
  .p-xl-6 {
    padding: 6rem !important; }
  .pt-xl-6,
  .py-xl-6 {
    padding-top: 6rem !important; }
  .pr-xl-6,
  .px-xl-6 {
    padding-right: 6rem !important; }
  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 6rem !important; }
  .pl-xl-6,
  .px-xl-6 {
    padding-left: 6rem !important; }
  .p-xl-7 {
    padding: 7rem !important; }
  .pt-xl-7,
  .py-xl-7 {
    padding-top: 7rem !important; }
  .pr-xl-7,
  .px-xl-7 {
    padding-right: 7rem !important; }
  .pb-xl-7,
  .py-xl-7 {
    padding-bottom: 7rem !important; }
  .pl-xl-7,
  .px-xl-7 {
    padding-left: 7rem !important; }
  .p-xl-8 {
    padding: 8rem !important; }
  .pt-xl-8,
  .py-xl-8 {
    padding-top: 8rem !important; }
  .pr-xl-8,
  .px-xl-8 {
    padding-right: 8rem !important; }
  .pb-xl-8,
  .py-xl-8 {
    padding-bottom: 8rem !important; }
  .pl-xl-8,
  .px-xl-8 {
    padding-left: 8rem !important; }
  .p-xl-9 {
    padding: 9rem !important; }
  .pt-xl-9,
  .py-xl-9 {
    padding-top: 9rem !important; }
  .pr-xl-9,
  .px-xl-9 {
    padding-right: 9rem !important; }
  .pb-xl-9,
  .py-xl-9 {
    padding-bottom: 9rem !important; }
  .pl-xl-9,
  .px-xl-9 {
    padding-left: 9rem !important; }
  .p-xl-10 {
    padding: 10rem !important; }
  .pt-xl-10,
  .py-xl-10 {
    padding-top: 10rem !important; }
  .pr-xl-10,
  .px-xl-10 {
    padding-right: 10rem !important; }
  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 10rem !important; }
  .pl-xl-10,
  .px-xl-10 {
    padding-left: 10rem !important; }
  .p-xl-15 {
    padding: 15rem !important; }
  .pt-xl-15,
  .py-xl-15 {
    padding-top: 15rem !important; }
  .pr-xl-15,
  .px-xl-15 {
    padding-right: 15rem !important; }
  .pb-xl-15,
  .py-xl-15 {
    padding-bottom: 15rem !important; }
  .pl-xl-15,
  .px-xl-15 {
    padding-left: 15rem !important; }
  .p-xl-20 {
    padding: 20rem !important; }
  .pt-xl-20,
  .py-xl-20 {
    padding-top: 20rem !important; }
  .pr-xl-20,
  .px-xl-20 {
    padding-right: 20rem !important; }
  .pb-xl-20,
  .py-xl-20 {
    padding-bottom: 20rem !important; }
  .pl-xl-20,
  .px-xl-20 {
    padding-left: 20rem !important; }
  .p-xl-25 {
    padding: 25rem !important; }
  .pt-xl-25,
  .py-xl-25 {
    padding-top: 25rem !important; }
  .pr-xl-25,
  .px-xl-25 {
    padding-right: 25rem !important; }
  .pb-xl-25,
  .py-xl-25 {
    padding-bottom: 25rem !important; }
  .pl-xl-25,
  .px-xl-25 {
    padding-left: 25rem !important; }
  .p-xl-10p {
    padding: 10% !important; }
  .pt-xl-10p,
  .py-xl-10p {
    padding-top: 10% !important; }
  .pr-xl-10p,
  .px-xl-10p {
    padding-right: 10% !important; }
  .pb-xl-10p,
  .py-xl-10p {
    padding-bottom: 10% !important; }
  .pl-xl-10p,
  .px-xl-10p {
    padding-left: 10% !important; }
  .p-xl-15p {
    padding: 15% !important; }
  .pt-xl-15p,
  .py-xl-15p {
    padding-top: 15% !important; }
  .pr-xl-15p,
  .px-xl-15p {
    padding-right: 15% !important; }
  .pb-xl-15p,
  .py-xl-15p {
    padding-bottom: 15% !important; }
  .pl-xl-15p,
  .px-xl-15p {
    padding-left: 15% !important; }
  .p-xl-20p {
    padding: 20% !important; }
  .pt-xl-20p,
  .py-xl-20p {
    padding-top: 20% !important; }
  .pr-xl-20p,
  .px-xl-20p {
    padding-right: 20% !important; }
  .pb-xl-20p,
  .py-xl-20p {
    padding-bottom: 20% !important; }
  .pl-xl-20p,
  .px-xl-20p {
    padding-left: 20% !important; }
  .p-xl-25p {
    padding: 25% !important; }
  .pt-xl-25p,
  .py-xl-25p {
    padding-top: 25% !important; }
  .pr-xl-25p,
  .px-xl-25p {
    padding-right: 25% !important; }
  .pb-xl-25p,
  .py-xl-25p {
    padding-bottom: 25% !important; }
  .pl-xl-25p,
  .px-xl-25p {
    padding-left: 25% !important; }
  .p-xl-30p {
    padding: 30% !important; }
  .pt-xl-30p,
  .py-xl-30p {
    padding-top: 30% !important; }
  .pr-xl-30p,
  .px-xl-30p {
    padding-right: 30% !important; }
  .pb-xl-30p,
  .py-xl-30p {
    padding-bottom: 30% !important; }
  .pl-xl-30p,
  .px-xl-30p {
    padding-left: 30% !important; }
  .p-xl-40p {
    padding: 40% !important; }
  .pt-xl-40p,
  .py-xl-40p {
    padding-top: 40% !important; }
  .pr-xl-40p,
  .px-xl-40p {
    padding-right: 40% !important; }
  .pb-xl-40p,
  .py-xl-40p {
    padding-bottom: 40% !important; }
  .pl-xl-40p,
  .px-xl-40p {
    padding-left: 40% !important; }
  .p-xl-50p {
    padding: 50% !important; }
  .pt-xl-50p,
  .py-xl-50p {
    padding-top: 50% !important; }
  .pr-xl-50p,
  .px-xl-50p {
    padding-right: 50% !important; }
  .pb-xl-50p,
  .py-xl-50p {
    padding-bottom: 50% !important; }
  .pl-xl-50p,
  .px-xl-50p {
    padding-left: 50% !important; }
  .p-xl-60p {
    padding: 60% !important; }
  .pt-xl-60p,
  .py-xl-60p {
    padding-top: 60% !important; }
  .pr-xl-60p,
  .px-xl-60p {
    padding-right: 60% !important; }
  .pb-xl-60p,
  .py-xl-60p {
    padding-bottom: 60% !important; }
  .pl-xl-60p,
  .px-xl-60p {
    padding-left: 60% !important; }
  .m-xl-n1 {
    margin: -0.25rem !important; }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important; }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important; }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important; }
  .m-xl-n2 {
    margin: -0.5rem !important; }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important; }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important; }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important; }
  .m-xl-n3 {
    margin: -1rem !important; }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important; }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important; }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important; }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important; }
  .m-xl-n4 {
    margin: -1.5rem !important; }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important; }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important; }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important; }
  .m-xl-n5 {
    margin: -3rem !important; }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important; }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important; }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important; }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important; }
  .m-xl-n4-5 {
    margin: -4.5rem !important; }
  .mt-xl-n4-5,
  .my-xl-n4-5 {
    margin-top: -4.5rem !important; }
  .mr-xl-n4-5,
  .mx-xl-n4-5 {
    margin-right: -4.5rem !important; }
  .mb-xl-n4-5,
  .my-xl-n4-5 {
    margin-bottom: -4.5rem !important; }
  .ml-xl-n4-5,
  .mx-xl-n4-5 {
    margin-left: -4.5rem !important; }
  .m-xl-n5-5 {
    margin: -4rem !important; }
  .mt-xl-n5-5,
  .my-xl-n5-5 {
    margin-top: -4rem !important; }
  .mr-xl-n5-5,
  .mx-xl-n5-5 {
    margin-right: -4rem !important; }
  .mb-xl-n5-5,
  .my-xl-n5-5 {
    margin-bottom: -4rem !important; }
  .ml-xl-n5-5,
  .mx-xl-n5-5 {
    margin-left: -4rem !important; }
  .m-xl-n6 {
    margin: -6rem !important; }
  .mt-xl-n6,
  .my-xl-n6 {
    margin-top: -6rem !important; }
  .mr-xl-n6,
  .mx-xl-n6 {
    margin-right: -6rem !important; }
  .mb-xl-n6,
  .my-xl-n6 {
    margin-bottom: -6rem !important; }
  .ml-xl-n6,
  .mx-xl-n6 {
    margin-left: -6rem !important; }
  .m-xl-n7 {
    margin: -7rem !important; }
  .mt-xl-n7,
  .my-xl-n7 {
    margin-top: -7rem !important; }
  .mr-xl-n7,
  .mx-xl-n7 {
    margin-right: -7rem !important; }
  .mb-xl-n7,
  .my-xl-n7 {
    margin-bottom: -7rem !important; }
  .ml-xl-n7,
  .mx-xl-n7 {
    margin-left: -7rem !important; }
  .m-xl-n8 {
    margin: -8rem !important; }
  .mt-xl-n8,
  .my-xl-n8 {
    margin-top: -8rem !important; }
  .mr-xl-n8,
  .mx-xl-n8 {
    margin-right: -8rem !important; }
  .mb-xl-n8,
  .my-xl-n8 {
    margin-bottom: -8rem !important; }
  .ml-xl-n8,
  .mx-xl-n8 {
    margin-left: -8rem !important; }
  .m-xl-n9 {
    margin: -9rem !important; }
  .mt-xl-n9,
  .my-xl-n9 {
    margin-top: -9rem !important; }
  .mr-xl-n9,
  .mx-xl-n9 {
    margin-right: -9rem !important; }
  .mb-xl-n9,
  .my-xl-n9 {
    margin-bottom: -9rem !important; }
  .ml-xl-n9,
  .mx-xl-n9 {
    margin-left: -9rem !important; }
  .m-xl-n10 {
    margin: -10rem !important; }
  .mt-xl-n10,
  .my-xl-n10 {
    margin-top: -10rem !important; }
  .mr-xl-n10,
  .mx-xl-n10 {
    margin-right: -10rem !important; }
  .mb-xl-n10,
  .my-xl-n10 {
    margin-bottom: -10rem !important; }
  .ml-xl-n10,
  .mx-xl-n10 {
    margin-left: -10rem !important; }
  .m-xl-n15 {
    margin: -15rem !important; }
  .mt-xl-n15,
  .my-xl-n15 {
    margin-top: -15rem !important; }
  .mr-xl-n15,
  .mx-xl-n15 {
    margin-right: -15rem !important; }
  .mb-xl-n15,
  .my-xl-n15 {
    margin-bottom: -15rem !important; }
  .ml-xl-n15,
  .mx-xl-n15 {
    margin-left: -15rem !important; }
  .m-xl-n20 {
    margin: -20rem !important; }
  .mt-xl-n20,
  .my-xl-n20 {
    margin-top: -20rem !important; }
  .mr-xl-n20,
  .mx-xl-n20 {
    margin-right: -20rem !important; }
  .mb-xl-n20,
  .my-xl-n20 {
    margin-bottom: -20rem !important; }
  .ml-xl-n20,
  .mx-xl-n20 {
    margin-left: -20rem !important; }
  .m-xl-n25 {
    margin: -25rem !important; }
  .mt-xl-n25,
  .my-xl-n25 {
    margin-top: -25rem !important; }
  .mr-xl-n25,
  .mx-xl-n25 {
    margin-right: -25rem !important; }
  .mb-xl-n25,
  .my-xl-n25 {
    margin-bottom: -25rem !important; }
  .ml-xl-n25,
  .mx-xl-n25 {
    margin-left: -25rem !important; }
  .m-xl-n10p {
    margin: -10% !important; }
  .mt-xl-n10p,
  .my-xl-n10p {
    margin-top: -10% !important; }
  .mr-xl-n10p,
  .mx-xl-n10p {
    margin-right: -10% !important; }
  .mb-xl-n10p,
  .my-xl-n10p {
    margin-bottom: -10% !important; }
  .ml-xl-n10p,
  .mx-xl-n10p {
    margin-left: -10% !important; }
  .m-xl-n15p {
    margin: -15% !important; }
  .mt-xl-n15p,
  .my-xl-n15p {
    margin-top: -15% !important; }
  .mr-xl-n15p,
  .mx-xl-n15p {
    margin-right: -15% !important; }
  .mb-xl-n15p,
  .my-xl-n15p {
    margin-bottom: -15% !important; }
  .ml-xl-n15p,
  .mx-xl-n15p {
    margin-left: -15% !important; }
  .m-xl-n20p {
    margin: -20% !important; }
  .mt-xl-n20p,
  .my-xl-n20p {
    margin-top: -20% !important; }
  .mr-xl-n20p,
  .mx-xl-n20p {
    margin-right: -20% !important; }
  .mb-xl-n20p,
  .my-xl-n20p {
    margin-bottom: -20% !important; }
  .ml-xl-n20p,
  .mx-xl-n20p {
    margin-left: -20% !important; }
  .m-xl-n25p {
    margin: -25% !important; }
  .mt-xl-n25p,
  .my-xl-n25p {
    margin-top: -25% !important; }
  .mr-xl-n25p,
  .mx-xl-n25p {
    margin-right: -25% !important; }
  .mb-xl-n25p,
  .my-xl-n25p {
    margin-bottom: -25% !important; }
  .ml-xl-n25p,
  .mx-xl-n25p {
    margin-left: -25% !important; }
  .m-xl-n30p {
    margin: -30% !important; }
  .mt-xl-n30p,
  .my-xl-n30p {
    margin-top: -30% !important; }
  .mr-xl-n30p,
  .mx-xl-n30p {
    margin-right: -30% !important; }
  .mb-xl-n30p,
  .my-xl-n30p {
    margin-bottom: -30% !important; }
  .ml-xl-n30p,
  .mx-xl-n30p {
    margin-left: -30% !important; }
  .m-xl-n40p {
    margin: -40% !important; }
  .mt-xl-n40p,
  .my-xl-n40p {
    margin-top: -40% !important; }
  .mr-xl-n40p,
  .mx-xl-n40p {
    margin-right: -40% !important; }
  .mb-xl-n40p,
  .my-xl-n40p {
    margin-bottom: -40% !important; }
  .ml-xl-n40p,
  .mx-xl-n40p {
    margin-left: -40% !important; }
  .m-xl-n50p {
    margin: -50% !important; }
  .mt-xl-n50p,
  .my-xl-n50p {
    margin-top: -50% !important; }
  .mr-xl-n50p,
  .mx-xl-n50p {
    margin-right: -50% !important; }
  .mb-xl-n50p,
  .my-xl-n50p {
    margin-bottom: -50% !important; }
  .ml-xl-n50p,
  .mx-xl-n50p {
    margin-left: -50% !important; }
  .m-xl-n60p {
    margin: -60% !important; }
  .mt-xl-n60p,
  .my-xl-n60p {
    margin-top: -60% !important; }
  .mr-xl-n60p,
  .mx-xl-n60p {
    margin-right: -60% !important; }
  .mb-xl-n60p,
  .my-xl-n60p {
    margin-bottom: -60% !important; }
  .ml-xl-n60p,
  .mx-xl-n60p {
    margin-left: -60% !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; } }

.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: 1230px) {
  .text-xl-left {
    text-align: left !important; }
  .text-xl-right {
    text-align: right !important; }
  .text-xl-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: #f87200 !important; }

a.text-primary:hover, a.text-primary:focus {
  color: #ac4f00 !important; }

.text-secondary {
  color: #8eb4e3 !important; }

a.text-secondary:hover, a.text-secondary:focus {
  color: #518bd4 !important; }

.text-success {
  color: #3c8b89 !important; }

a.text-success:hover, a.text-success:focus {
  color: #255654 !important; }

.text-info {
  color: #0999ac !important; }

a.text-info:hover, a.text-info:focus {
  color: #055863 !important; }

.text-warning {
  color: #f2a20a !important; }

a.text-warning:hover, a.text-warning:focus {
  color: #a97107 !important; }

.text-danger {
  color: #dc3545 !important; }

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important; }

.text-light {
  color: #f8f9fa !important; }

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important; }

.text-dark {
  color: #161625 !important; }

a.text-dark:hover, a.text-dark:focus {
  color: black !important; }

.text-third {
  color: #0999ac !important; }

a.text-third:hover, a.text-third:focus {
  color: #055863 !important; }

.text-orange {
  color: #f87200 !important; }

a.text-orange:hover, a.text-orange:focus {
  color: #ac4f00 !important; }

.text-light-pink {
  color: rgba(255, 235, 225, 0.5) !important; }

a.text-light-pink:hover, a.text-light-pink:focus {
  color: rgba(255, 184, 149, 0.5) !important; }

.text-pink {
  color: #FFEBE1 !important; }

a.text-pink:hover, a.text-pink:focus {
  color: #ffb895 !important; }

.text-light-green {
  color: #4DC1A2 !important; }

a.text-light-green:hover, a.text-light-green:focus {
  color: #329077 !important; }

.text-light-orange {
  color: rgba(249, 154, 149, 0.3) !important; }

a.text-light-orange:hover, a.text-light-orange:focus {
  color: rgba(245, 85, 77, 0.3) !important; }

.text-dark-green {
  color: #021A19 !important; }

a.text-dark-green:hover, a.text-dark-green:focus {
  color: black !important; }

.text-footer {
  color: #1d1d1d !important; }

a.text-footer:hover, a.text-footer:focus {
  color: black !important; }

.text-gray {
  color: #f6f6f6 !important; }

a.text-gray:hover, a.text-gray:focus {
  color: #d0d0d0 !important; }

.text-cyan {
  color: #0999ac !important; }

a.text-cyan:hover, a.text-cyan:focus {
  color: #055863 !important; }

.text-gray-light {
  color: #f6f6f6 !important; }

a.text-gray-light:hover, a.text-gray-light:focus {
  color: #d0d0d0 !important; }

.text-strong {
  color: #5c6b80 !important; }

a.text-strong:hover, a.text-strong:focus {
  color: #3c4653 !important; }

.text-pagination {
  color: #333 !important; }

a.text-pagination:hover, a.text-pagination:focus {
  color: #0d0d0d !important; }

.text-fond-pagination {
  color: #f5f5f5 !important; }

a.text-fond-pagination:hover, a.text-fond-pagination:focus {
  color: #cfcfcf !important; }

.text-body {
  color: #161625 !important; }

.text-muted {
  color: #999 !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; }

.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; } }

.btn {
  display: inline-block;
  font-weight: 400;
  color: #161625;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  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: #161625;
    text-decoration: none; }
  .btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(248, 114, 0, 0.25); }
  .btn.disabled, .btn:disabled {
    opacity: 0.65; }
  .btn:not(:disabled):not(.disabled) {
    cursor: pointer; }

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none; }

.btn-primary {
  color: #fff;
  background-color: #f87200;
  border-color: #f87200; }
  .btn-primary:hover {
    color: #fff;
    background-color: #d26000;
    border-color: #c55b00; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #d26000;
    border-color: #c55b00;
    box-shadow: 0 0 0 0.2rem rgba(249, 135, 38, 0.5); }
  .btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #f87200;
    border-color: #f87200; }
  .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
  .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #c55b00;
    border-color: #b85500; }
    .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.2rem rgba(249, 135, 38, 0.5); }

.btn-secondary {
  color: #161625;
  background-color: #8eb4e3;
  border-color: #8eb4e3; }
  .btn-secondary:hover {
    color: #161625;
    background-color: #6fa0db;
    border-color: #6599d9; }
  .btn-secondary:focus, .btn-secondary.focus {
    color: #161625;
    background-color: #6fa0db;
    border-color: #6599d9;
    box-shadow: 0 0 0 0.2rem rgba(124, 156, 199, 0.5); }
  .btn-secondary.disabled, .btn-secondary:disabled {
    color: #161625;
    background-color: #8eb4e3;
    border-color: #8eb4e3; }
  .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
  .show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6599d9;
    border-color: #5b92d6; }
    .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.2rem rgba(124, 156, 199, 0.5); }

.btn-success {
  color: #fff;
  background-color: #3c8b89;
  border-color: #3c8b89; }
  .btn-success:hover {
    color: #fff;
    background-color: #30706f;
    border-color: #2d6766; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #30706f;
    border-color: #2d6766;
    box-shadow: 0 0 0 0.2rem rgba(89, 156, 155, 0.5); }
  .btn-success.disabled, .btn-success:disabled {
    color: #fff;
    background-color: #3c8b89;
    border-color: #3c8b89; }
  .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
  .show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #2d6766;
    border-color: #295e5d; }
    .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.2rem rgba(89, 156, 155, 0.5); }

.btn-info {
  color: #fff;
  background-color: #0999ac;
  border-color: #0999ac; }
  .btn-info:hover {
    color: #fff;
    background-color: #077988;
    border-color: #066e7c; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #077988;
    border-color: #066e7c;
    box-shadow: 0 0 0 0.2rem rgba(46, 168, 184, 0.5); }
  .btn-info.disabled, .btn-info:disabled {
    color: #fff;
    background-color: #0999ac;
    border-color: #0999ac; }
  .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
  .show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #066e7c;
    border-color: #06636f; }
    .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.2rem rgba(46, 168, 184, 0.5); }

.btn-warning {
  color: #161625;
  background-color: #f2a20a;
  border-color: #f2a20a; }
  .btn-warning:hover {
    color: #fff;
    background-color: #cd8908;
    border-color: #c18108; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #cd8908;
    border-color: #c18108;
    box-shadow: 0 0 0 0.2rem rgba(209, 141, 14, 0.5); }
  .btn-warning.disabled, .btn-warning:disabled {
    color: #161625;
    background-color: #f2a20a;
    border-color: #f2a20a; }
  .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
  .show > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #c18108;
    border-color: #b57907; }
    .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.2rem rgba(209, 141, 14, 0.5); }

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545; }
  .btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
    box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); }
  .btn-danger.disabled, .btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545; }
  .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
  .show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d; }
    .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
    .show > .btn-danger.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); }

.btn-light {
  color: #161625;
  background-color: #f8f9fa;
  border-color: #f8f9fa; }
  .btn-light:hover {
    color: #161625;
    background-color: #e2e6ea;
    border-color: #dae0e5; }
  .btn-light:focus, .btn-light.focus {
    color: #161625;
    background-color: #e2e6ea;
    border-color: #dae0e5;
    box-shadow: 0 0 0 0.2rem rgba(214, 215, 218, 0.5); }
  .btn-light.disabled, .btn-light:disabled {
    color: #161625;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
  .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
  .show > .btn-light.dropdown-toggle {
    color: #161625;
    background-color: #dae0e5;
    border-color: #d3d9df; }
    .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.2rem rgba(214, 215, 218, 0.5); }

.btn-dark {
  color: #fff;
  background-color: #161625;
  border-color: #161625; }
  .btn-dark:hover {
    color: #fff;
    background-color: #08080d;
    border-color: #030305; }
  .btn-dark:focus, .btn-dark.focus {
    color: #fff;
    background-color: #08080d;
    border-color: #030305;
    box-shadow: 0 0 0 0.2rem rgba(57, 57, 70, 0.5); }
  .btn-dark.disabled, .btn-dark:disabled {
    color: #fff;
    background-color: #161625;
    border-color: #161625; }
  .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
  .show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #030305;
    border-color: black; }
    .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.2rem rgba(57, 57, 70, 0.5); }

.btn-third {
  color: #fff;
  background-color: #0999ac;
  border-color: #0999ac; }
  .btn-third:hover {
    color: #fff;
    background-color: #077988;
    border-color: #066e7c; }
  .btn-third:focus, .btn-third.focus {
    color: #fff;
    background-color: #077988;
    border-color: #066e7c;
    box-shadow: 0 0 0 0.2rem rgba(46, 168, 184, 0.5); }
  .btn-third.disabled, .btn-third:disabled {
    color: #fff;
    background-color: #0999ac;
    border-color: #0999ac; }
  .btn-third:not(:disabled):not(.disabled):active, .btn-third:not(:disabled):not(.disabled).active,
  .show > .btn-third.dropdown-toggle {
    color: #fff;
    background-color: #066e7c;
    border-color: #06636f; }
    .btn-third:not(:disabled):not(.disabled):active:focus, .btn-third:not(:disabled):not(.disabled).active:focus,
    .show > .btn-third.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(46, 168, 184, 0.5); }

.btn-orange {
  color: #fff;
  background-color: #f87200;
  border-color: #f87200; }
  .btn-orange:hover {
    color: #fff;
    background-color: #d26000;
    border-color: #c55b00; }
  .btn-orange:focus, .btn-orange.focus {
    color: #fff;
    background-color: #d26000;
    border-color: #c55b00;
    box-shadow: 0 0 0 0.2rem rgba(249, 135, 38, 0.5); }
  .btn-orange.disabled, .btn-orange:disabled {
    color: #fff;
    background-color: #f87200;
    border-color: #f87200; }
  .btn-orange:not(:disabled):not(.disabled):active, .btn-orange:not(:disabled):not(.disabled).active,
  .show > .btn-orange.dropdown-toggle {
    color: #fff;
    background-color: #c55b00;
    border-color: #b85500; }
    .btn-orange:not(:disabled):not(.disabled):active:focus, .btn-orange:not(:disabled):not(.disabled).active:focus,
    .show > .btn-orange.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(249, 135, 38, 0.5); }

.btn-light-pink {
  color: #161625;
  background-color: rgba(255, 235, 225, 0.5);
  border-color: rgba(255, 235, 225, 0.5); }
  .btn-light-pink:hover {
    color: #161625;
    background-color: rgba(255, 210, 187, 0.5);
    border-color: rgba(255, 201, 174, 0.5); }
  .btn-light-pink:focus, .btn-light-pink.focus {
    color: #161625;
    background-color: rgba(255, 210, 187, 0.5);
    border-color: rgba(255, 201, 174, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(174, 161, 160, 0.5); }
  .btn-light-pink.disabled, .btn-light-pink:disabled {
    color: #161625;
    background-color: rgba(255, 235, 225, 0.5);
    border-color: rgba(255, 235, 225, 0.5); }
  .btn-light-pink:not(:disabled):not(.disabled):active, .btn-light-pink:not(:disabled):not(.disabled).active,
  .show > .btn-light-pink.dropdown-toggle {
    color: #161625;
    background-color: rgba(255, 201, 174, 0.5);
    border-color: rgba(255, 193, 161, 0.5); }
    .btn-light-pink:not(:disabled):not(.disabled):active:focus, .btn-light-pink:not(:disabled):not(.disabled).active:focus,
    .show > .btn-light-pink.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(174, 161, 160, 0.5); }

.btn-pink {
  color: #161625;
  background-color: #FFEBE1;
  border-color: #FFEBE1; }
  .btn-pink:hover {
    color: #161625;
    background-color: #ffd2bb;
    border-color: #ffc9ae; }
  .btn-pink:focus, .btn-pink.focus {
    color: #161625;
    background-color: #ffd2bb;
    border-color: #ffc9ae;
    box-shadow: 0 0 0 0.2rem rgba(220, 203, 197, 0.5); }
  .btn-pink.disabled, .btn-pink:disabled {
    color: #161625;
    background-color: #FFEBE1;
    border-color: #FFEBE1; }
  .btn-pink:not(:disabled):not(.disabled):active, .btn-pink:not(:disabled):not(.disabled).active,
  .show > .btn-pink.dropdown-toggle {
    color: #161625;
    background-color: #ffc9ae;
    border-color: #ffc1a1; }
    .btn-pink:not(:disabled):not(.disabled):active:focus, .btn-pink:not(:disabled):not(.disabled).active:focus,
    .show > .btn-pink.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(220, 203, 197, 0.5); }

.btn-light-green {
  color: #161625;
  background-color: #4DC1A2;
  border-color: #4DC1A2; }
  .btn-light-green:hover {
    color: #fff;
    background-color: #3cac8e;
    border-color: #39a286; }
  .btn-light-green:focus, .btn-light-green.focus {
    color: #fff;
    background-color: #3cac8e;
    border-color: #39a286;
    box-shadow: 0 0 0 0.2rem rgba(69, 167, 143, 0.5); }
  .btn-light-green.disabled, .btn-light-green:disabled {
    color: #161625;
    background-color: #4DC1A2;
    border-color: #4DC1A2; }
  .btn-light-green:not(:disabled):not(.disabled):active, .btn-light-green:not(:disabled):not(.disabled).active,
  .show > .btn-light-green.dropdown-toggle {
    color: #fff;
    background-color: #39a286;
    border-color: #35997e; }
    .btn-light-green:not(:disabled):not(.disabled):active:focus, .btn-light-green:not(:disabled):not(.disabled).active:focus,
    .show > .btn-light-green.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(69, 167, 143, 0.5); }

.btn-light-orange {
  color: #161625;
  background-color: rgba(249, 154, 149, 0.3);
  border-color: rgba(249, 154, 149, 0.3); }
  .btn-light-orange:hover {
    color: #161625;
    background-color: rgba(247, 120, 113, 0.3);
    border-color: rgba(246, 108, 101, 0.3); }
  .btn-light-orange:focus, .btn-light-orange.focus {
    color: #161625;
    background-color: rgba(247, 120, 113, 0.3);
    border-color: rgba(246, 108, 101, 0.3);
    box-shadow: 0 0 0 0.2rem rgba(136, 88, 93, 0.5); }
  .btn-light-orange.disabled, .btn-light-orange:disabled {
    color: #161625;
    background-color: rgba(249, 154, 149, 0.3);
    border-color: rgba(249, 154, 149, 0.3); }
  .btn-light-orange:not(:disabled):not(.disabled):active, .btn-light-orange:not(:disabled):not(.disabled).active,
  .show > .btn-light-orange.dropdown-toggle {
    color: #fff;
    background-color: rgba(246, 108, 101, 0.3);
    border-color: rgba(246, 97, 89, 0.3); }
    .btn-light-orange:not(:disabled):not(.disabled):active:focus, .btn-light-orange:not(:disabled):not(.disabled).active:focus,
    .show > .btn-light-orange.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(136, 88, 93, 0.5); }

.btn-dark-green {
  color: #fff;
  background-color: #021A19;
  border-color: #021A19; }
  .btn-dark-green:hover {
    color: #fff;
    background-color: black;
    border-color: black; }
  .btn-dark-green:focus, .btn-dark-green.focus {
    color: #fff;
    background-color: black;
    border-color: black;
    box-shadow: 0 0 0 0.2rem rgba(40, 60, 60, 0.5); }
  .btn-dark-green.disabled, .btn-dark-green:disabled {
    color: #fff;
    background-color: #021A19;
    border-color: #021A19; }
  .btn-dark-green:not(:disabled):not(.disabled):active, .btn-dark-green:not(:disabled):not(.disabled).active,
  .show > .btn-dark-green.dropdown-toggle {
    color: #fff;
    background-color: black;
    border-color: black; }
    .btn-dark-green:not(:disabled):not(.disabled):active:focus, .btn-dark-green:not(:disabled):not(.disabled).active:focus,
    .show > .btn-dark-green.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(40, 60, 60, 0.5); }

.btn-footer {
  color: #fff;
  background-color: #1d1d1d;
  border-color: #1d1d1d; }
  .btn-footer:hover {
    color: #fff;
    background-color: #0a0a0a;
    border-color: #040404; }
  .btn-footer:focus, .btn-footer.focus {
    color: #fff;
    background-color: #0a0a0a;
    border-color: #040404;
    box-shadow: 0 0 0 0.2rem rgba(63, 63, 63, 0.5); }
  .btn-footer.disabled, .btn-footer:disabled {
    color: #fff;
    background-color: #1d1d1d;
    border-color: #1d1d1d; }
  .btn-footer:not(:disabled):not(.disabled):active, .btn-footer:not(:disabled):not(.disabled).active,
  .show > .btn-footer.dropdown-toggle {
    color: #fff;
    background-color: #040404;
    border-color: black; }
    .btn-footer:not(:disabled):not(.disabled):active:focus, .btn-footer:not(:disabled):not(.disabled).active:focus,
    .show > .btn-footer.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(63, 63, 63, 0.5); }

.btn-gray {
  color: #161625;
  background-color: #f6f6f6;
  border-color: #f6f6f6; }
  .btn-gray:hover {
    color: #161625;
    background-color: #e3e3e3;
    border-color: #dddddd; }
  .btn-gray:focus, .btn-gray.focus {
    color: #161625;
    background-color: #e3e3e3;
    border-color: #dddddd;
    box-shadow: 0 0 0 0.2rem rgba(212, 212, 215, 0.5); }
  .btn-gray.disabled, .btn-gray:disabled {
    color: #161625;
    background-color: #f6f6f6;
    border-color: #f6f6f6; }
  .btn-gray:not(:disabled):not(.disabled):active, .btn-gray:not(:disabled):not(.disabled).active,
  .show > .btn-gray.dropdown-toggle {
    color: #161625;
    background-color: #dddddd;
    border-color: #d6d6d6; }
    .btn-gray:not(:disabled):not(.disabled):active:focus, .btn-gray:not(:disabled):not(.disabled).active:focus,
    .show > .btn-gray.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(212, 212, 215, 0.5); }

.btn-cyan {
  color: #fff;
  background-color: #0999ac;
  border-color: #0999ac; }
  .btn-cyan:hover {
    color: #fff;
    background-color: #077988;
    border-color: #066e7c; }
  .btn-cyan:focus, .btn-cyan.focus {
    color: #fff;
    background-color: #077988;
    border-color: #066e7c;
    box-shadow: 0 0 0 0.2rem rgba(46, 168, 184, 0.5); }
  .btn-cyan.disabled, .btn-cyan:disabled {
    color: #fff;
    background-color: #0999ac;
    border-color: #0999ac; }
  .btn-cyan:not(:disabled):not(.disabled):active, .btn-cyan:not(:disabled):not(.disabled).active,
  .show > .btn-cyan.dropdown-toggle {
    color: #fff;
    background-color: #066e7c;
    border-color: #06636f; }
    .btn-cyan:not(:disabled):not(.disabled):active:focus, .btn-cyan:not(:disabled):not(.disabled).active:focus,
    .show > .btn-cyan.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(46, 168, 184, 0.5); }

.btn-gray-light {
  color: #161625;
  background-color: #f6f6f6;
  border-color: #f6f6f6; }
  .btn-gray-light:hover {
    color: #161625;
    background-color: #e3e3e3;
    border-color: #dddddd; }
  .btn-gray-light:focus, .btn-gray-light.focus {
    color: #161625;
    background-color: #e3e3e3;
    border-color: #dddddd;
    box-shadow: 0 0 0 0.2rem rgba(212, 212, 215, 0.5); }
  .btn-gray-light.disabled, .btn-gray-light:disabled {
    color: #161625;
    background-color: #f6f6f6;
    border-color: #f6f6f6; }
  .btn-gray-light:not(:disabled):not(.disabled):active, .btn-gray-light:not(:disabled):not(.disabled).active,
  .show > .btn-gray-light.dropdown-toggle {
    color: #161625;
    background-color: #dddddd;
    border-color: #d6d6d6; }
    .btn-gray-light:not(:disabled):not(.disabled):active:focus, .btn-gray-light:not(:disabled):not(.disabled).active:focus,
    .show > .btn-gray-light.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(212, 212, 215, 0.5); }

.btn-strong {
  color: #fff;
  background-color: #5c6b80;
  border-color: #5c6b80; }
  .btn-strong:hover {
    color: #fff;
    background-color: #4c586a;
    border-color: #475262; }
  .btn-strong:focus, .btn-strong.focus {
    color: #fff;
    background-color: #4c586a;
    border-color: #475262;
    box-shadow: 0 0 0 0.2rem rgba(116, 129, 147, 0.5); }
  .btn-strong.disabled, .btn-strong:disabled {
    color: #fff;
    background-color: #5c6b80;
    border-color: #5c6b80; }
  .btn-strong:not(:disabled):not(.disabled):active, .btn-strong:not(:disabled):not(.disabled).active,
  .show > .btn-strong.dropdown-toggle {
    color: #fff;
    background-color: #475262;
    border-color: #414c5b; }
    .btn-strong:not(:disabled):not(.disabled):active:focus, .btn-strong:not(:disabled):not(.disabled).active:focus,
    .show > .btn-strong.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(116, 129, 147, 0.5); }

.btn-pagination {
  color: #fff;
  background-color: #333;
  border-color: #333; }
  .btn-pagination:hover {
    color: #fff;
    background-color: #202020;
    border-color: #1a1a1a; }
  .btn-pagination:focus, .btn-pagination.focus {
    color: #fff;
    background-color: #202020;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 0.2rem rgba(82, 82, 82, 0.5); }
  .btn-pagination.disabled, .btn-pagination:disabled {
    color: #fff;
    background-color: #333;
    border-color: #333; }
  .btn-pagination:not(:disabled):not(.disabled):active, .btn-pagination:not(:disabled):not(.disabled).active,
  .show > .btn-pagination.dropdown-toggle {
    color: #fff;
    background-color: #1a1a1a;
    border-color: #131313; }
    .btn-pagination:not(:disabled):not(.disabled):active:focus, .btn-pagination:not(:disabled):not(.disabled).active:focus,
    .show > .btn-pagination.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(82, 82, 82, 0.5); }

.btn-fond-pagination {
  color: #161625;
  background-color: #f5f5f5;
  border-color: #f5f5f5; }
  .btn-fond-pagination:hover {
    color: #161625;
    background-color: #e2e2e2;
    border-color: gainsboro; }
  .btn-fond-pagination:focus, .btn-fond-pagination.focus {
    color: #161625;
    background-color: #e2e2e2;
    border-color: gainsboro;
    box-shadow: 0 0 0 0.2rem rgba(212, 212, 214, 0.5); }
  .btn-fond-pagination.disabled, .btn-fond-pagination:disabled {
    color: #161625;
    background-color: #f5f5f5;
    border-color: #f5f5f5; }
  .btn-fond-pagination:not(:disabled):not(.disabled):active, .btn-fond-pagination:not(:disabled):not(.disabled).active,
  .show > .btn-fond-pagination.dropdown-toggle {
    color: #161625;
    background-color: gainsboro;
    border-color: #d5d5d5; }
    .btn-fond-pagination:not(:disabled):not(.disabled):active:focus, .btn-fond-pagination:not(:disabled):not(.disabled).active:focus,
    .show > .btn-fond-pagination.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(212, 212, 214, 0.5); }

.btn-outline-primary {
  color: #f87200;
  border-color: #f87200; }
  .btn-outline-primary:hover {
    color: #fff;
    background-color: #f87200;
    border-color: #f87200; }
  .btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 114, 0, 0.5); }
  .btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #f87200;
    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: #fff;
    background-color: #f87200;
    border-color: #f87200; }
    .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.2rem rgba(248, 114, 0, 0.5); }

.btn-outline-secondary {
  color: #8eb4e3;
  border-color: #8eb4e3; }
  .btn-outline-secondary:hover {
    color: #161625;
    background-color: #8eb4e3;
    border-color: #8eb4e3; }
  .btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(142, 180, 227, 0.5); }
  .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #8eb4e3;
    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: #161625;
    background-color: #8eb4e3;
    border-color: #8eb4e3; }
    .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.2rem rgba(142, 180, 227, 0.5); }

.btn-outline-success {
  color: #3c8b89;
  border-color: #3c8b89; }
  .btn-outline-success:hover {
    color: #fff;
    background-color: #3c8b89;
    border-color: #3c8b89; }
  .btn-outline-success:focus, .btn-outline-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(60, 139, 137, 0.5); }
  .btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #3c8b89;
    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: #fff;
    background-color: #3c8b89;
    border-color: #3c8b89; }
    .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.2rem rgba(60, 139, 137, 0.5); }

.btn-outline-info {
  color: #0999ac;
  border-color: #0999ac; }
  .btn-outline-info:hover {
    color: #fff;
    background-color: #0999ac;
    border-color: #0999ac; }
  .btn-outline-info:focus, .btn-outline-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(9, 153, 172, 0.5); }
  .btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #0999ac;
    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: #fff;
    background-color: #0999ac;
    border-color: #0999ac; }
    .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.2rem rgba(9, 153, 172, 0.5); }

.btn-outline-warning {
  color: #f2a20a;
  border-color: #f2a20a; }
  .btn-outline-warning:hover {
    color: #161625;
    background-color: #f2a20a;
    border-color: #f2a20a; }
  .btn-outline-warning:focus, .btn-outline-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(242, 162, 10, 0.5); }
  .btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #f2a20a;
    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: #161625;
    background-color: #f2a20a;
    border-color: #f2a20a; }
    .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.2rem rgba(242, 162, 10, 0.5); }

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545; }
  .btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545; }
  .btn-outline-danger:focus, .btn-outline-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
  .btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent; }
  .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
  .show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545; }
    .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-danger.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa; }
  .btn-outline-light:hover {
    color: #161625;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
  .btn-outline-light:focus, .btn-outline-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  .btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent; }
  .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
  .show > .btn-outline-light.dropdown-toggle {
    color: #161625;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
    .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.2rem rgba(248, 249, 250, 0.5); }

.btn-outline-dark {
  color: #161625;
  border-color: #161625; }
  .btn-outline-dark:hover {
    color: #fff;
    background-color: #161625;
    border-color: #161625; }
  .btn-outline-dark:focus, .btn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(22, 22, 37, 0.5); }
  .btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #161625;
    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: #fff;
    background-color: #161625;
    border-color: #161625; }
    .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.2rem rgba(22, 22, 37, 0.5); }

.btn-outline-third {
  color: #0999ac;
  border-color: #0999ac; }
  .btn-outline-third:hover {
    color: #fff;
    background-color: #0999ac;
    border-color: #0999ac; }
  .btn-outline-third:focus, .btn-outline-third.focus {
    box-shadow: 0 0 0 0.2rem rgba(9, 153, 172, 0.5); }
  .btn-outline-third.disabled, .btn-outline-third:disabled {
    color: #0999ac;
    background-color: transparent; }
  .btn-outline-third:not(:disabled):not(.disabled):active, .btn-outline-third:not(:disabled):not(.disabled).active,
  .show > .btn-outline-third.dropdown-toggle {
    color: #fff;
    background-color: #0999ac;
    border-color: #0999ac; }
    .btn-outline-third:not(:disabled):not(.disabled):active:focus, .btn-outline-third:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-third.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(9, 153, 172, 0.5); }

.btn-outline-orange {
  color: #f87200;
  border-color: #f87200; }
  .btn-outline-orange:hover {
    color: #fff;
    background-color: #f87200;
    border-color: #f87200; }
  .btn-outline-orange:focus, .btn-outline-orange.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 114, 0, 0.5); }
  .btn-outline-orange.disabled, .btn-outline-orange:disabled {
    color: #f87200;
    background-color: transparent; }
  .btn-outline-orange:not(:disabled):not(.disabled):active, .btn-outline-orange:not(:disabled):not(.disabled).active,
  .show > .btn-outline-orange.dropdown-toggle {
    color: #fff;
    background-color: #f87200;
    border-color: #f87200; }
    .btn-outline-orange:not(:disabled):not(.disabled):active:focus, .btn-outline-orange:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-orange.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(248, 114, 0, 0.5); }

.btn-outline-light-pink {
  color: rgba(255, 235, 225, 0.5);
  border-color: rgba(255, 235, 225, 0.5); }
  .btn-outline-light-pink:hover {
    color: #161625;
    background-color: rgba(255, 235, 225, 0.5);
    border-color: rgba(255, 235, 225, 0.5); }
  .btn-outline-light-pink:focus, .btn-outline-light-pink.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 235, 225, 0.5); }
  .btn-outline-light-pink.disabled, .btn-outline-light-pink:disabled {
    color: rgba(255, 235, 225, 0.5);
    background-color: transparent; }
  .btn-outline-light-pink:not(:disabled):not(.disabled):active, .btn-outline-light-pink:not(:disabled):not(.disabled).active,
  .show > .btn-outline-light-pink.dropdown-toggle {
    color: #161625;
    background-color: rgba(255, 235, 225, 0.5);
    border-color: rgba(255, 235, 225, 0.5); }
    .btn-outline-light-pink:not(:disabled):not(.disabled):active:focus, .btn-outline-light-pink:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-light-pink.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(255, 235, 225, 0.5); }

.btn-outline-pink {
  color: #FFEBE1;
  border-color: #FFEBE1; }
  .btn-outline-pink:hover {
    color: #161625;
    background-color: #FFEBE1;
    border-color: #FFEBE1; }
  .btn-outline-pink:focus, .btn-outline-pink.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 235, 225, 0.5); }
  .btn-outline-pink.disabled, .btn-outline-pink:disabled {
    color: #FFEBE1;
    background-color: transparent; }
  .btn-outline-pink:not(:disabled):not(.disabled):active, .btn-outline-pink:not(:disabled):not(.disabled).active,
  .show > .btn-outline-pink.dropdown-toggle {
    color: #161625;
    background-color: #FFEBE1;
    border-color: #FFEBE1; }
    .btn-outline-pink:not(:disabled):not(.disabled):active:focus, .btn-outline-pink:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-pink.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(255, 235, 225, 0.5); }

.btn-outline-light-green {
  color: #4DC1A2;
  border-color: #4DC1A2; }
  .btn-outline-light-green:hover {
    color: #161625;
    background-color: #4DC1A2;
    border-color: #4DC1A2; }
  .btn-outline-light-green:focus, .btn-outline-light-green.focus {
    box-shadow: 0 0 0 0.2rem rgba(77, 193, 162, 0.5); }
  .btn-outline-light-green.disabled, .btn-outline-light-green:disabled {
    color: #4DC1A2;
    background-color: transparent; }
  .btn-outline-light-green:not(:disabled):not(.disabled):active, .btn-outline-light-green:not(:disabled):not(.disabled).active,
  .show > .btn-outline-light-green.dropdown-toggle {
    color: #161625;
    background-color: #4DC1A2;
    border-color: #4DC1A2; }
    .btn-outline-light-green:not(:disabled):not(.disabled):active:focus, .btn-outline-light-green:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-light-green.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(77, 193, 162, 0.5); }

.btn-outline-light-orange {
  color: rgba(249, 154, 149, 0.3);
  border-color: rgba(249, 154, 149, 0.3); }
  .btn-outline-light-orange:hover {
    color: #161625;
    background-color: rgba(249, 154, 149, 0.3);
    border-color: rgba(249, 154, 149, 0.3); }
  .btn-outline-light-orange:focus, .btn-outline-light-orange.focus {
    box-shadow: 0 0 0 0.2rem rgba(249, 154, 149, 0.5); }
  .btn-outline-light-orange.disabled, .btn-outline-light-orange:disabled {
    color: rgba(249, 154, 149, 0.3);
    background-color: transparent; }
  .btn-outline-light-orange:not(:disabled):not(.disabled):active, .btn-outline-light-orange:not(:disabled):not(.disabled).active,
  .show > .btn-outline-light-orange.dropdown-toggle {
    color: #161625;
    background-color: rgba(249, 154, 149, 0.3);
    border-color: rgba(249, 154, 149, 0.3); }
    .btn-outline-light-orange:not(:disabled):not(.disabled):active:focus, .btn-outline-light-orange:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-light-orange.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(249, 154, 149, 0.5); }

.btn-outline-dark-green {
  color: #021A19;
  border-color: #021A19; }
  .btn-outline-dark-green:hover {
    color: #fff;
    background-color: #021A19;
    border-color: #021A19; }
  .btn-outline-dark-green:focus, .btn-outline-dark-green.focus {
    box-shadow: 0 0 0 0.2rem rgba(2, 26, 25, 0.5); }
  .btn-outline-dark-green.disabled, .btn-outline-dark-green:disabled {
    color: #021A19;
    background-color: transparent; }
  .btn-outline-dark-green:not(:disabled):not(.disabled):active, .btn-outline-dark-green:not(:disabled):not(.disabled).active,
  .show > .btn-outline-dark-green.dropdown-toggle {
    color: #fff;
    background-color: #021A19;
    border-color: #021A19; }
    .btn-outline-dark-green:not(:disabled):not(.disabled):active:focus, .btn-outline-dark-green:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-dark-green.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(2, 26, 25, 0.5); }

.btn-outline-footer {
  color: #1d1d1d;
  border-color: #1d1d1d; }
  .btn-outline-footer:hover {
    color: #fff;
    background-color: #1d1d1d;
    border-color: #1d1d1d; }
  .btn-outline-footer:focus, .btn-outline-footer.focus {
    box-shadow: 0 0 0 0.2rem rgba(29, 29, 29, 0.5); }
  .btn-outline-footer.disabled, .btn-outline-footer:disabled {
    color: #1d1d1d;
    background-color: transparent; }
  .btn-outline-footer:not(:disabled):not(.disabled):active, .btn-outline-footer:not(:disabled):not(.disabled).active,
  .show > .btn-outline-footer.dropdown-toggle {
    color: #fff;
    background-color: #1d1d1d;
    border-color: #1d1d1d; }
    .btn-outline-footer:not(:disabled):not(.disabled):active:focus, .btn-outline-footer:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-footer.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(29, 29, 29, 0.5); }

.btn-outline-gray {
  color: #f6f6f6;
  border-color: #f6f6f6; }
  .btn-outline-gray:hover {
    color: #161625;
    background-color: #f6f6f6;
    border-color: #f6f6f6; }
  .btn-outline-gray:focus, .btn-outline-gray.focus {
    box-shadow: 0 0 0 0.2rem rgba(246, 246, 246, 0.5); }
  .btn-outline-gray.disabled, .btn-outline-gray:disabled {
    color: #f6f6f6;
    background-color: transparent; }
  .btn-outline-gray:not(:disabled):not(.disabled):active, .btn-outline-gray:not(:disabled):not(.disabled).active,
  .show > .btn-outline-gray.dropdown-toggle {
    color: #161625;
    background-color: #f6f6f6;
    border-color: #f6f6f6; }
    .btn-outline-gray:not(:disabled):not(.disabled):active:focus, .btn-outline-gray:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-gray.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(246, 246, 246, 0.5); }

.btn-outline-cyan {
  color: #0999ac;
  border-color: #0999ac; }
  .btn-outline-cyan:hover {
    color: #fff;
    background-color: #0999ac;
    border-color: #0999ac; }
  .btn-outline-cyan:focus, .btn-outline-cyan.focus {
    box-shadow: 0 0 0 0.2rem rgba(9, 153, 172, 0.5); }
  .btn-outline-cyan.disabled, .btn-outline-cyan:disabled {
    color: #0999ac;
    background-color: transparent; }
  .btn-outline-cyan:not(:disabled):not(.disabled):active, .btn-outline-cyan:not(:disabled):not(.disabled).active,
  .show > .btn-outline-cyan.dropdown-toggle {
    color: #fff;
    background-color: #0999ac;
    border-color: #0999ac; }
    .btn-outline-cyan:not(:disabled):not(.disabled):active:focus, .btn-outline-cyan:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-cyan.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(9, 153, 172, 0.5); }

.btn-outline-gray-light {
  color: #f6f6f6;
  border-color: #f6f6f6; }
  .btn-outline-gray-light:hover {
    color: #161625;
    background-color: #f6f6f6;
    border-color: #f6f6f6; }
  .btn-outline-gray-light:focus, .btn-outline-gray-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(246, 246, 246, 0.5); }
  .btn-outline-gray-light.disabled, .btn-outline-gray-light:disabled {
    color: #f6f6f6;
    background-color: transparent; }
  .btn-outline-gray-light:not(:disabled):not(.disabled):active, .btn-outline-gray-light:not(:disabled):not(.disabled).active,
  .show > .btn-outline-gray-light.dropdown-toggle {
    color: #161625;
    background-color: #f6f6f6;
    border-color: #f6f6f6; }
    .btn-outline-gray-light:not(:disabled):not(.disabled):active:focus, .btn-outline-gray-light:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-gray-light.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(246, 246, 246, 0.5); }

.btn-outline-strong {
  color: #5c6b80;
  border-color: #5c6b80; }
  .btn-outline-strong:hover {
    color: #fff;
    background-color: #5c6b80;
    border-color: #5c6b80; }
  .btn-outline-strong:focus, .btn-outline-strong.focus {
    box-shadow: 0 0 0 0.2rem rgba(92, 107, 128, 0.5); }
  .btn-outline-strong.disabled, .btn-outline-strong:disabled {
    color: #5c6b80;
    background-color: transparent; }
  .btn-outline-strong:not(:disabled):not(.disabled):active, .btn-outline-strong:not(:disabled):not(.disabled).active,
  .show > .btn-outline-strong.dropdown-toggle {
    color: #fff;
    background-color: #5c6b80;
    border-color: #5c6b80; }
    .btn-outline-strong:not(:disabled):not(.disabled):active:focus, .btn-outline-strong:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-strong.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(92, 107, 128, 0.5); }

.btn-outline-pagination {
  color: #333;
  border-color: #333; }
  .btn-outline-pagination:hover {
    color: #fff;
    background-color: #333;
    border-color: #333; }
  .btn-outline-pagination:focus, .btn-outline-pagination.focus {
    box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5); }
  .btn-outline-pagination.disabled, .btn-outline-pagination:disabled {
    color: #333;
    background-color: transparent; }
  .btn-outline-pagination:not(:disabled):not(.disabled):active, .btn-outline-pagination:not(:disabled):not(.disabled).active,
  .show > .btn-outline-pagination.dropdown-toggle {
    color: #fff;
    background-color: #333;
    border-color: #333; }
    .btn-outline-pagination:not(:disabled):not(.disabled):active:focus, .btn-outline-pagination:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-pagination.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5); }

.btn-outline-fond-pagination {
  color: #f5f5f5;
  border-color: #f5f5f5; }
  .btn-outline-fond-pagination:hover {
    color: #161625;
    background-color: #f5f5f5;
    border-color: #f5f5f5; }
  .btn-outline-fond-pagination:focus, .btn-outline-fond-pagination.focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5); }
  .btn-outline-fond-pagination.disabled, .btn-outline-fond-pagination:disabled {
    color: #f5f5f5;
    background-color: transparent; }
  .btn-outline-fond-pagination:not(:disabled):not(.disabled):active, .btn-outline-fond-pagination:not(:disabled):not(.disabled).active,
  .show > .btn-outline-fond-pagination.dropdown-toggle {
    color: #161625;
    background-color: #f5f5f5;
    border-color: #f5f5f5; }
    .btn-outline-fond-pagination:not(:disabled):not(.disabled):active:focus, .btn-outline-fond-pagination:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-fond-pagination.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5); }

.btn-link {
  font-weight: 400;
  color: #f87200;
  text-decoration: none; }
  .btn-link:hover {
    color: #ac4f00;
    text-decoration: underline; }
  .btn-link:focus, .btn-link.focus {
    text-decoration: underline; }
  .btn-link:disabled, .btn-link.disabled {
    color: #999;
    pointer-events: none; }

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem; }

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem; }

.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%; }

.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: #999;
    pointer-events: none;
    cursor: default; }

.nav-tabs {
  border-bottom: 1px solid #f1f1f1; }
  .nav-tabs .nav-link {
    margin-bottom: -1px;
    background-color: transparent;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem; }
    .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
      isolation: isolate;
      border-color: #cecece #cecece #f1f1f1; }
    .nav-tabs .nav-link.disabled {
      color: #999;
      background-color: transparent;
      border-color: transparent; }
  .nav-tabs .nav-link.active,
  .nav-tabs .nav-item.show .nav-link {
    color: #4c4c4c;
    background-color: #fff;
    border-color: #f1f1f1 #f1f1f1 #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.25rem; }

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #f87200; }

.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; }

.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: 1rem;
  color: #161625;
  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.25rem; }

.dropdown-menu-left {
  right: auto;
  left: 0; }

.dropdown-menu-right {
  right: 0;
  left: auto; }

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0; }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto; } }

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0; }
  .dropdown-menu-md-right {
    right: 0;
    left: auto; } }

@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0; }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto; } }

@media (min-width: 1230px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0; }
  .dropdown-menu-xl-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 #cecece; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #161625;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0; }
  .dropdown-item:hover, .dropdown-item:focus {
    color: #0c0c15;
    text-decoration: none;
    background-color: #cecece; }
  .dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #f87200; }
  .dropdown-item.disabled, .dropdown-item:disabled {
    color: #f6f6f6;
    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: 0.875rem;
  color: #999;
  white-space: nowrap; }

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #161625; }

.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-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0; }
  .navbar-nav .dropdown-menu {
    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: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem; }
  .navbar-toggler:hover, .navbar-toggler:focus {
    text-decoration: none; }

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50% / 100% 100% no-repeat; }

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto; }

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    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-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
      flex-wrap: nowrap; }
    .navbar-expand-sm .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-sm .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-sm .navbar-toggler {
      display: none; } }

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    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-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
      flex-wrap: nowrap; }
    .navbar-expand-md .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-md .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-md .navbar-toggler {
      display: none; } }

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    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-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
      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: 1229.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 1230px) {
  .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-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
      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; } }

.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start; }
  .navbar-expand > .container,
  .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
    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-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
    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; }

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: 2.5rem; }

h2, .h2 {
  font-size: 2rem; }

h3, .h3 {
  font-size: 1.75rem; }

h4, .h4 {
  font-size: 1.5rem; }

h5, .h5 {
  font-size: 1.25rem; }

h6, .h6 {
  font-size: 1rem; }

.lead {
  font-size: 1.25rem;
  font-weight: 300; }

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2; }

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2; }

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2; }

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2; }

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid 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: 1.25rem; }

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #999; }
  .blockquote-footer::before {
    content: "\2014\00A0"; }

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #4c4c4c;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #5c6b80;
  border-radius: 0.25rem;
  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: #4c4c4c;
    background-color: #fff;
    border-color: #ffb679;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(248, 114, 0, 0.25); }
  .form-control::placeholder {
    color: #f87200;
    opacity: 1; }
  .form-control:disabled, .form-control[readonly] {
    background-color: #cecece;
    opacity: 1; }

input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
  appearance: none; }

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #4c4c4c; }

select.form-control:focus::-ms-value {
  color: #4c4c4c;
  background-color: #fff; }

.form-control-file,
.form-control-range {
  display: block;
  width: 100%; }

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5; }

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5; }

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5; }

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #161625;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0; }
  .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0; }

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem; }

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem; }

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: #999; }

.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: #3c8b89; }

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(60, 139, 137, 0.9);
  border-radius: 0.25rem; }
  .form-row > .col > .valid-tooltip,
  .form-row > [class*="col-"] > .valid-tooltip {
    left: 5px; }

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block; }

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #3c8b89;
  padding-right: calc(1.5em + 0.75rem) !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='%233c8b89' 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.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
  .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
    border-color: #3c8b89;
    box-shadow: 0 0 0 0.2rem rgba(60, 139, 137, 0.25); }

.was-validated select.form-control:valid, select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center; }

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); }

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #3c8b89;
  padding-right: calc(0.75em + 2.3125rem) !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='%23221f47' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff 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='%233c8b89' 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 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat; }
  .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
    border-color: #3c8b89;
    box-shadow: 0 0 0 0.2rem rgba(60, 139, 137, 0.25); }

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #3c8b89; }

.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: #3c8b89; }
  .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
    border-color: #3c8b89; }

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #4bafac;
  background-color: #4bafac; }

.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.2rem rgba(60, 139, 137, 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: #3c8b89; }

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #3c8b89; }

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #3c8b89;
  box-shadow: 0 0 0 0.2rem rgba(60, 139, 137, 0.25); }

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545; }

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem; }
  .form-row > .col > .invalid-tooltip,
  .form-row > [class*="col-"] > .invalid-tooltip {
    left: 5px; }

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block; }

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' 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='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
  .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }

.was-validated select.form-control:invalid, select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center; }

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); }

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem) !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='%23221f47' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' 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='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat; }
  .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545; }

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block; }

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545; }
  .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
    border-color: #dc3545; }

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d; }

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 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: #dc3545; }

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545; }

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 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; } }

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%; }
  .input-group > .form-control,
  .input-group > .form-control-plaintext,
  .input-group > .custom-select,
  .input-group > .custom-file {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0; }
    .input-group > .form-control + .form-control,
    .input-group > .form-control + .custom-select,
    .input-group > .form-control + .custom-file,
    .input-group > .form-control-plaintext + .form-control,
    .input-group > .form-control-plaintext + .custom-select,
    .input-group > .form-control-plaintext + .custom-file,
    .input-group > .custom-select + .form-control,
    .input-group > .custom-select + .custom-select,
    .input-group > .custom-select + .custom-file,
    .input-group > .custom-file + .form-control,
    .input-group > .custom-file + .custom-select,
    .input-group > .custom-file + .custom-file {
      margin-left: -1px; }
  .input-group > .form-control:focus,
  .input-group > .custom-select:focus,
  .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
    z-index: 3; }
  .input-group > .custom-file .custom-file-input:focus {
    z-index: 4; }
  .input-group > .form-control:not(:first-child),
  .input-group > .custom-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .input-group > .custom-file {
    display: flex;
    align-items: center; }
    .input-group > .custom-file:not(:last-child) .custom-file-label,
    .input-group > .custom-file:not(:last-child) .custom-file-label::after {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
    .input-group > .custom-file:not(:first-child) .custom-file-label {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }
  .input-group:not(.has-validation) > .form-control:not(:last-child),
  .input-group:not(.has-validation) > .custom-select:not(:last-child),
  .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
  .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .input-group.has-validation > .form-control:nth-last-child(n + 3),
  .input-group.has-validation > .custom-select:nth-last-child(n + 3),
  .input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label,
  .input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }

.input-group-prepend,
.input-group-append {
  display: flex; }
  .input-group-prepend .btn,
  .input-group-append .btn {
    position: relative;
    z-index: 2; }
    .input-group-prepend .btn:focus,
    .input-group-append .btn:focus {
      z-index: 3; }
  .input-group-prepend .btn + .btn,
  .input-group-prepend .btn + .input-group-text,
  .input-group-prepend .input-group-text + .input-group-text,
  .input-group-prepend .input-group-text + .btn,
  .input-group-append .btn + .btn,
  .input-group-append .btn + .input-group-text,
  .input-group-append .input-group-text + .input-group-text,
  .input-group-append .input-group-text + .btn {
    margin-left: -1px; }

.input-group-prepend {
  margin-right: -1px; }

.input-group-append {
  margin-left: -1px; }

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #4c4c4c;
  text-align: center;
  white-space: nowrap;
  background-color: #cecece;
  border: 1px solid #5c6b80;
  border-radius: 0.25rem; }
  .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 + 2px); }

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem; }

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px); }

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem; }

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem; }

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  print-color-adjust: exact; }

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem; }

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0; }
  .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #f87200;
    background-color: #f87200; }
  .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(248, 114, 0, 0.25); }
  .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #ffb679; }
  .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    color: #fff;
    background-color: #ffd2ac;
    border-color: #ffd2ac; }
  .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
    color: #999; }
    .custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
      background-color: #cecece; }

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top; }
  .custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: 1px solid #f6f6f6; }
  .custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: 50% / 50% 50% no-repeat; }

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem; }

.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='%23fff' 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: #f87200;
  background-color: #f87200; }

.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='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); }

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(248, 114, 0, 0.5); }

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(248, 114, 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='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); }

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(248, 114, 0, 0.5); }

.custom-switch {
  padding-left: 2.25rem; }
  .custom-switch .custom-control-label::before {
    left: -2.25rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: 0.5rem; }
  .custom-switch .custom-control-label::after {
    top: calc(0.25rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #f6f6f6;
    border-radius: 0.5rem;
    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: #fff;
    transform: translateX(0.75rem); }
  .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(248, 114, 0, 0.5); }

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #4c4c4c;
  vertical-align: middle;
  background: #fff 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='%23221f47' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #5c6b80;
  border-radius: 0.25rem;
  appearance: none; }
  .custom-select:focus {
    border-color: #ffb679;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(248, 114, 0, 0.25); }
    .custom-select:focus::-ms-value {
      color: #4c4c4c;
      background-color: #fff; }
  .custom-select[multiple], .custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none; }
  .custom-select:disabled {
    color: #999;
    background-color: #cecece; }
  .custom-select::-ms-expand {
    display: none; }
  .custom-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #4c4c4c; }

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem; }

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem; }

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0; }

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0; }
  .custom-file-input:focus ~ .custom-file-label {
    border-color: #ffb679;
    box-shadow: 0 0 0 0.2rem rgba(248, 114, 0, 0.25); }
  .custom-file-input[disabled] ~ .custom-file-label,
  .custom-file-input:disabled ~ .custom-file-label {
    background-color: #cecece; }
  .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 + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #4c4c4c;
  background-color: #fff;
  border: 1px solid #5c6b80;
  border-radius: 0.25rem; }
  .custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + 0.75rem);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #4c4c4c;
    content: "Browse";
    background-color: #cecece;
    border-left: inherit;
    border-radius: 0 0.25rem 0.25rem 0; }

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  appearance: none; }
  .custom-range:focus {
    outline: 0; }
    .custom-range:focus::-webkit-slider-thumb {
      box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(248, 114, 0, 0.25); }
    .custom-range:focus::-moz-range-thumb {
      box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(248, 114, 0, 0.25); }
    .custom-range:focus::-ms-thumb {
      box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(248, 114, 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: #f87200;
    border: 0;
    border-radius: 1rem;
    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::-webkit-slider-thumb {
        transition: none; } }
    .custom-range::-webkit-slider-thumb:active {
      background-color: #ffd2ac; }
  .custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #f1f1f1;
    border-color: transparent;
    border-radius: 1rem; }
  .custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #f87200;
    border: 0;
    border-radius: 1rem;
    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::-moz-range-thumb {
        transition: none; } }
    .custom-range::-moz-range-thumb:active {
      background-color: #ffd2ac; }
  .custom-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #f1f1f1;
    border-color: transparent;
    border-radius: 1rem; }
  .custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: 0.2rem;
    margin-left: 0.2rem;
    background-color: #f87200;
    border: 0;
    border-radius: 1rem;
    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 {
        transition: none; } }
    .custom-range::-ms-thumb:active {
      background-color: #ffd2ac; }
  .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: #f1f1f1;
    border-radius: 1rem; }
  .custom-range::-ms-fill-upper {
    margin-right: 15px;
    background-color: #f1f1f1;
    border-radius: 1rem; }
  .custom-range:disabled::-webkit-slider-thumb {
    background-color: #f6f6f6; }
  .custom-range:disabled::-webkit-slider-runnable-track {
    cursor: default; }
  .custom-range:disabled::-moz-range-thumb {
    background-color: #f6f6f6; }
  .custom-range:disabled::-moz-range-track {
    cursor: default; }
  .custom-range:disabled::-ms-thumb {
    background-color: #f6f6f6; }

.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; } }

.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: 10px;
    height: 10px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .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; }

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem; }

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #f87200;
  background-color: #fff;
  border: 1px solid #f1f1f1; }
  .page-link:hover {
    z-index: 2;
    color: #ac4f00;
    text-decoration: none;
    background-color: #cecece;
    border-color: #f1f1f1; }
  .page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(248, 114, 0, 0.25); }

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem; }

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem; }

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #f87200;
  border-color: #f87200; }

.page-item.disabled .page-link {
  color: #999;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #f1f1f1; }

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5; }

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem; }

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem; }

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5; }

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem; }

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem; }

.img-fluid {
  max-width: 100%;
  height: auto; }

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto; }

.figure {
  display: inline-block; }

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1; }

.figure-caption {
  font-size: 90%;
  color: #999; }

.w-25 {
  width: 25% !important; }

.max-w-25 {
  max-width: 25% !important; }

.min-w-25 {
  min-width: 25% !important; }

.w-50 {
  width: 50% !important; }

.max-w-50 {
  max-width: 50% !important; }

.min-w-50 {
  min-width: 50% !important; }

.w-75 {
  width: 75% !important; }

.max-w-75 {
  max-width: 75% !important; }

.min-w-75 {
  min-width: 75% !important; }

.w-100 {
  width: 100% !important; }

.max-w-100 {
  max-width: 100% !important; }

.min-w-100 {
  min-width: 100% !important; }

.w-auto {
  width: auto !important; }

.max-w-auto {
  max-width: auto !important; }

.min-w-auto {
  min-width: auto !important; }

.w-1 r {
  width: 1rem !important; }

.max-w-1 r {
  max-width: 1rem !important; }

.min-w-1 r {
  min-width: 1rem !important; }

.w-5 {
  width: 5% !important; }

.max-w-5 {
  max-width: 5% !important; }

.min-w-5 {
  min-width: 5% !important; }

.w-10 {
  width: 10% !important; }

.max-w-10 {
  max-width: 10% !important; }

.min-w-10 {
  min-width: 10% !important; }

.w-15 {
  width: 15% !important; }

.max-w-15 {
  max-width: 15% !important; }

.min-w-15 {
  min-width: 15% !important; }

.w-20 {
  width: 20% !important; }

.max-w-20 {
  max-width: 20% !important; }

.min-w-20 {
  min-width: 20% !important; }

.w-30 {
  width: 30% !important; }

.max-w-30 {
  max-width: 30% !important; }

.min-w-30 {
  min-width: 30% !important; }

.w-35 {
  width: 35% !important; }

.max-w-35 {
  max-width: 35% !important; }

.min-w-35 {
  min-width: 35% !important; }

.w-40 {
  width: 40% !important; }

.max-w-40 {
  max-width: 40% !important; }

.min-w-40 {
  min-width: 40% !important; }

.w-45 {
  width: 45% !important; }

.max-w-45 {
  max-width: 45% !important; }

.min-w-45 {
  min-width: 45% !important; }

.w-55 {
  width: 55% !important; }

.max-w-55 {
  max-width: 55% !important; }

.min-w-55 {
  min-width: 55% !important; }

.w-60 {
  width: 60% !important; }

.max-w-60 {
  max-width: 60% !important; }

.min-w-60 {
  min-width: 60% !important; }

.w-65 {
  width: 65% !important; }

.max-w-65 {
  max-width: 65% !important; }

.min-w-65 {
  min-width: 65% !important; }

.w-70 {
  width: 70% !important; }

.max-w-70 {
  max-width: 70% !important; }

.min-w-70 {
  min-width: 70% !important; }

.w-80 {
  width: 80% !important; }

.max-w-80 {
  max-width: 80% !important; }

.min-w-80 {
  min-width: 80% !important; }

.w-85 {
  width: 85% !important; }

.max-w-85 {
  max-width: 85% !important; }

.min-w-85 {
  min-width: 85% !important; }

.w-90 {
  width: 90% !important; }

.max-w-90 {
  max-width: 90% !important; }

.min-w-90 {
  min-width: 90% !important; }

.w-95 {
  width: 95% !important; }

.max-w-95 {
  max-width: 95% !important; }

.min-w-95 {
  min-width: 95% !important; }

.w-15px {
  width: 15px !important; }

.max-w-15px {
  max-width: 15px !important; }

.min-w-15px {
  min-width: 15px !important; }

.w-25px {
  width: 25px !important; }

.max-w-25px {
  max-width: 25px !important; }

.min-w-25px {
  min-width: 25px !important; }

.w-32px {
  width: 32px !important; }

.max-w-32px {
  max-width: 32px !important; }

.min-w-32px {
  min-width: 32px !important; }

.w-35px {
  width: 35px !important; }

.max-w-35px {
  max-width: 35px !important; }

.min-w-35px {
  min-width: 35px !important; }

.w-50px {
  width: 50px !important; }

.max-w-50px {
  max-width: 50px !important; }

.min-w-50px {
  min-width: 50px !important; }

.w-75px {
  width: 75px !important; }

.max-w-75px {
  max-width: 75px !important; }

.min-w-75px {
  min-width: 75px !important; }

.w-100px {
  width: 100px !important; }

.max-w-100px {
  max-width: 100px !important; }

.min-w-100px {
  min-width: 100px !important; }

.w-150px {
  width: 150px !important; }

.max-w-150px {
  max-width: 150px !important; }

.min-w-150px {
  min-width: 150px !important; }

.w-200px {
  width: 200px !important; }

.max-w-200px {
  max-width: 200px !important; }

.min-w-200px {
  min-width: 200px !important; }

.w-230px {
  width: 230px !important; }

.max-w-230px {
  max-width: 230px !important; }

.min-w-230px {
  min-width: 230px !important; }

.w-250px {
  width: 250px !important; }

.max-w-250px {
  max-width: 250px !important; }

.min-w-250px {
  min-width: 250px !important; }

.w-275px {
  width: 275px !important; }

.max-w-275px {
  max-width: 275px !important; }

.min-w-275px {
  min-width: 275px !important; }

.w-300px {
  width: 300px !important; }

.max-w-300px {
  max-width: 300px !important; }

.min-w-300px {
  min-width: 300px !important; }

.w-350px {
  width: 350px !important; }

.max-w-350px {
  max-width: 350px !important; }

.min-w-350px {
  min-width: 350px !important; }

.w-400px {
  width: 400px !important; }

.max-w-400px {
  max-width: 400px !important; }

.min-w-400px {
  min-width: 400px !important; }

.w-450px {
  width: 450px !important; }

.max-w-450px {
  max-width: 450px !important; }

.min-w-450px {
  min-width: 450px !important; }

.w-475px {
  width: 475px !important; }

.max-w-475px {
  max-width: 475px !important; }

.min-w-475px {
  min-width: 475px !important; }

.w-500px {
  width: 500px !important; }

.max-w-500px {
  max-width: 500px !important; }

.min-w-500px {
  min-width: 500px !important; }

.w-600px {
  width: 600px !important; }

.max-w-600px {
  max-width: 600px !important; }

.min-w-600px {
  min-width: 600px !important; }

.w-650px {
  width: 650px !important; }

.max-w-650px {
  max-width: 650px !important; }

.min-w-650px {
  min-width: 650px !important; }

.w-700px {
  width: 700px !important; }

.max-w-700px {
  max-width: 700px !important; }

.min-w-700px {
  min-width: 700px !important; }

.w-3r {
  width: 3rem !important; }

.max-w-3r {
  max-width: 3rem !important; }

.min-w-3r {
  min-width: 3rem !important; }

.w-4r {
  width: 4rem !important; }

.max-w-4r {
  max-width: 4rem !important; }

.min-w-4r {
  min-width: 4rem !important; }

.h-25 {
  height: 25% !important; }

.max-h-25 {
  max-height: 25% !important; }

.min-h-25 {
  min-height: 25% !important; }

.h-50 {
  height: 50% !important; }

.max-h-50 {
  max-height: 50% !important; }

.min-h-50 {
  min-height: 50% !important; }

.h-75 {
  height: 75% !important; }

.max-h-75 {
  max-height: 75% !important; }

.min-h-75 {
  min-height: 75% !important; }

.h-100 {
  height: 100% !important; }

.max-h-100 {
  max-height: 100% !important; }

.min-h-100 {
  min-height: 100% !important; }

.h-auto {
  height: auto !important; }

.max-h-auto {
  max-height: auto !important; }

.min-h-auto {
  min-height: auto !important; }

.h-1 r {
  height: 1rem !important; }

.max-h-1 r {
  max-height: 1rem !important; }

.min-h-1 r {
  min-height: 1rem !important; }

.h-5 {
  height: 5% !important; }

.max-h-5 {
  max-height: 5% !important; }

.min-h-5 {
  min-height: 5% !important; }

.h-10 {
  height: 10% !important; }

.max-h-10 {
  max-height: 10% !important; }

.min-h-10 {
  min-height: 10% !important; }

.h-15 {
  height: 15% !important; }

.max-h-15 {
  max-height: 15% !important; }

.min-h-15 {
  min-height: 15% !important; }

.h-20 {
  height: 20% !important; }

.max-h-20 {
  max-height: 20% !important; }

.min-h-20 {
  min-height: 20% !important; }

.h-30 {
  height: 30% !important; }

.max-h-30 {
  max-height: 30% !important; }

.min-h-30 {
  min-height: 30% !important; }

.h-35 {
  height: 35% !important; }

.max-h-35 {
  max-height: 35% !important; }

.min-h-35 {
  min-height: 35% !important; }

.h-40 {
  height: 40% !important; }

.max-h-40 {
  max-height: 40% !important; }

.min-h-40 {
  min-height: 40% !important; }

.h-45 {
  height: 45% !important; }

.max-h-45 {
  max-height: 45% !important; }

.min-h-45 {
  min-height: 45% !important; }

.h-55 {
  height: 55% !important; }

.max-h-55 {
  max-height: 55% !important; }

.min-h-55 {
  min-height: 55% !important; }

.h-60 {
  height: 60% !important; }

.max-h-60 {
  max-height: 60% !important; }

.min-h-60 {
  min-height: 60% !important; }

.h-65 {
  height: 65% !important; }

.max-h-65 {
  max-height: 65% !important; }

.min-h-65 {
  min-height: 65% !important; }

.h-70 {
  height: 70% !important; }

.max-h-70 {
  max-height: 70% !important; }

.min-h-70 {
  min-height: 70% !important; }

.h-80 {
  height: 80% !important; }

.max-h-80 {
  max-height: 80% !important; }

.min-h-80 {
  min-height: 80% !important; }

.h-85 {
  height: 85% !important; }

.max-h-85 {
  max-height: 85% !important; }

.min-h-85 {
  min-height: 85% !important; }

.h-90 {
  height: 90% !important; }

.max-h-90 {
  max-height: 90% !important; }

.min-h-90 {
  min-height: 90% !important; }

.h-95 {
  height: 95% !important; }

.max-h-95 {
  max-height: 95% !important; }

.min-h-95 {
  min-height: 95% !important; }

.h-15px {
  height: 15px !important; }

.max-h-15px {
  max-height: 15px !important; }

.min-h-15px {
  min-height: 15px !important; }

.h-25px {
  height: 25px !important; }

.max-h-25px {
  max-height: 25px !important; }

.min-h-25px {
  min-height: 25px !important; }

.h-32px {
  height: 32px !important; }

.max-h-32px {
  max-height: 32px !important; }

.min-h-32px {
  min-height: 32px !important; }

.h-35px {
  height: 35px !important; }

.max-h-35px {
  max-height: 35px !important; }

.min-h-35px {
  min-height: 35px !important; }

.h-50px {
  height: 50px !important; }

.max-h-50px {
  max-height: 50px !important; }

.min-h-50px {
  min-height: 50px !important; }

.h-75px {
  height: 75px !important; }

.max-h-75px {
  max-height: 75px !important; }

.min-h-75px {
  min-height: 75px !important; }

.h-100px {
  height: 100px !important; }

.max-h-100px {
  max-height: 100px !important; }

.min-h-100px {
  min-height: 100px !important; }

.h-150px {
  height: 150px !important; }

.max-h-150px {
  max-height: 150px !important; }

.min-h-150px {
  min-height: 150px !important; }

.h-200px {
  height: 200px !important; }

.max-h-200px {
  max-height: 200px !important; }

.min-h-200px {
  min-height: 200px !important; }

.h-230px {
  height: 230px !important; }

.max-h-230px {
  max-height: 230px !important; }

.min-h-230px {
  min-height: 230px !important; }

.h-250px {
  height: 250px !important; }

.max-h-250px {
  max-height: 250px !important; }

.min-h-250px {
  min-height: 250px !important; }

.h-275px {
  height: 275px !important; }

.max-h-275px {
  max-height: 275px !important; }

.min-h-275px {
  min-height: 275px !important; }

.h-300px {
  height: 300px !important; }

.max-h-300px {
  max-height: 300px !important; }

.min-h-300px {
  min-height: 300px !important; }

.h-350px {
  height: 350px !important; }

.max-h-350px {
  max-height: 350px !important; }

.min-h-350px {
  min-height: 350px !important; }

.h-400px {
  height: 400px !important; }

.max-h-400px {
  max-height: 400px !important; }

.min-h-400px {
  min-height: 400px !important; }

.h-450px {
  height: 450px !important; }

.max-h-450px {
  max-height: 450px !important; }

.min-h-450px {
  min-height: 450px !important; }

.h-475px {
  height: 475px !important; }

.max-h-475px {
  max-height: 475px !important; }

.min-h-475px {
  min-height: 475px !important; }

.h-500px {
  height: 500px !important; }

.max-h-500px {
  max-height: 500px !important; }

.min-h-500px {
  min-height: 500px !important; }

.h-600px {
  height: 600px !important; }

.max-h-600px {
  max-height: 600px !important; }

.min-h-600px {
  min-height: 600px !important; }

.h-650px {
  height: 650px !important; }

.max-h-650px {
  max-height: 650px !important; }

.min-h-650px {
  min-height: 650px !important; }

.h-700px {
  height: 700px !important; }

.max-h-700px {
  max-height: 700px !important; }

.min-h-700px {
  min-height: 700px !important; }

.h-3r {
  height: 3rem !important; }

.max-h-3r {
  max-height: 3rem !important; }

.min-h-3r {
  min-height: 3rem !important; }

.h-4r {
  height: 4rem !important; }

.max-h-4r {
  max-height: 4rem !important; }

.min-h-4r {
  min-height: 4rem !important; }

@media (min-width: 576px) {
  .w-sm-25 {
    width: 25% !important; }
  .max-w-sm-25 {
    max-width: 25% !important; }
  .min-w-sm-25 {
    min-width: 25% !important; }
  .w-sm-50 {
    width: 50% !important; }
  .max-w-sm-50 {
    max-width: 50% !important; }
  .min-w-sm-50 {
    min-width: 50% !important; }
  .w-sm-75 {
    width: 75% !important; }
  .max-w-sm-75 {
    max-width: 75% !important; }
  .min-w-sm-75 {
    min-width: 75% !important; }
  .w-sm-100 {
    width: 100% !important; }
  .max-w-sm-100 {
    max-width: 100% !important; }
  .min-w-sm-100 {
    min-width: 100% !important; }
  .w-sm-auto {
    width: auto !important; }
  .max-w-sm-auto {
    max-width: auto !important; }
  .min-w-sm-auto {
    min-width: auto !important; }
  .w-sm-1 r {
    width: 1rem !important; }
  .max-w-sm-1 r {
    max-width: 1rem !important; }
  .min-w-sm-1 r {
    min-width: 1rem !important; }
  .w-sm-5 {
    width: 5% !important; }
  .max-w-sm-5 {
    max-width: 5% !important; }
  .min-w-sm-5 {
    min-width: 5% !important; }
  .w-sm-10 {
    width: 10% !important; }
  .max-w-sm-10 {
    max-width: 10% !important; }
  .min-w-sm-10 {
    min-width: 10% !important; }
  .w-sm-15 {
    width: 15% !important; }
  .max-w-sm-15 {
    max-width: 15% !important; }
  .min-w-sm-15 {
    min-width: 15% !important; }
  .w-sm-20 {
    width: 20% !important; }
  .max-w-sm-20 {
    max-width: 20% !important; }
  .min-w-sm-20 {
    min-width: 20% !important; }
  .w-sm-30 {
    width: 30% !important; }
  .max-w-sm-30 {
    max-width: 30% !important; }
  .min-w-sm-30 {
    min-width: 30% !important; }
  .w-sm-35 {
    width: 35% !important; }
  .max-w-sm-35 {
    max-width: 35% !important; }
  .min-w-sm-35 {
    min-width: 35% !important; }
  .w-sm-40 {
    width: 40% !important; }
  .max-w-sm-40 {
    max-width: 40% !important; }
  .min-w-sm-40 {
    min-width: 40% !important; }
  .w-sm-45 {
    width: 45% !important; }
  .max-w-sm-45 {
    max-width: 45% !important; }
  .min-w-sm-45 {
    min-width: 45% !important; }
  .w-sm-55 {
    width: 55% !important; }
  .max-w-sm-55 {
    max-width: 55% !important; }
  .min-w-sm-55 {
    min-width: 55% !important; }
  .w-sm-60 {
    width: 60% !important; }
  .max-w-sm-60 {
    max-width: 60% !important; }
  .min-w-sm-60 {
    min-width: 60% !important; }
  .w-sm-65 {
    width: 65% !important; }
  .max-w-sm-65 {
    max-width: 65% !important; }
  .min-w-sm-65 {
    min-width: 65% !important; }
  .w-sm-70 {
    width: 70% !important; }
  .max-w-sm-70 {
    max-width: 70% !important; }
  .min-w-sm-70 {
    min-width: 70% !important; }
  .w-sm-80 {
    width: 80% !important; }
  .max-w-sm-80 {
    max-width: 80% !important; }
  .min-w-sm-80 {
    min-width: 80% !important; }
  .w-sm-85 {
    width: 85% !important; }
  .max-w-sm-85 {
    max-width: 85% !important; }
  .min-w-sm-85 {
    min-width: 85% !important; }
  .w-sm-90 {
    width: 90% !important; }
  .max-w-sm-90 {
    max-width: 90% !important; }
  .min-w-sm-90 {
    min-width: 90% !important; }
  .w-sm-95 {
    width: 95% !important; }
  .max-w-sm-95 {
    max-width: 95% !important; }
  .min-w-sm-95 {
    min-width: 95% !important; }
  .w-sm-15px {
    width: 15px !important; }
  .max-w-sm-15px {
    max-width: 15px !important; }
  .min-w-sm-15px {
    min-width: 15px !important; }
  .w-sm-25px {
    width: 25px !important; }
  .max-w-sm-25px {
    max-width: 25px !important; }
  .min-w-sm-25px {
    min-width: 25px !important; }
  .w-sm-32px {
    width: 32px !important; }
  .max-w-sm-32px {
    max-width: 32px !important; }
  .min-w-sm-32px {
    min-width: 32px !important; }
  .w-sm-35px {
    width: 35px !important; }
  .max-w-sm-35px {
    max-width: 35px !important; }
  .min-w-sm-35px {
    min-width: 35px !important; }
  .w-sm-50px {
    width: 50px !important; }
  .max-w-sm-50px {
    max-width: 50px !important; }
  .min-w-sm-50px {
    min-width: 50px !important; }
  .w-sm-75px {
    width: 75px !important; }
  .max-w-sm-75px {
    max-width: 75px !important; }
  .min-w-sm-75px {
    min-width: 75px !important; }
  .w-sm-100px {
    width: 100px !important; }
  .max-w-sm-100px {
    max-width: 100px !important; }
  .min-w-sm-100px {
    min-width: 100px !important; }
  .w-sm-150px {
    width: 150px !important; }
  .max-w-sm-150px {
    max-width: 150px !important; }
  .min-w-sm-150px {
    min-width: 150px !important; }
  .w-sm-200px {
    width: 200px !important; }
  .max-w-sm-200px {
    max-width: 200px !important; }
  .min-w-sm-200px {
    min-width: 200px !important; }
  .w-sm-230px {
    width: 230px !important; }
  .max-w-sm-230px {
    max-width: 230px !important; }
  .min-w-sm-230px {
    min-width: 230px !important; }
  .w-sm-250px {
    width: 250px !important; }
  .max-w-sm-250px {
    max-width: 250px !important; }
  .min-w-sm-250px {
    min-width: 250px !important; }
  .w-sm-275px {
    width: 275px !important; }
  .max-w-sm-275px {
    max-width: 275px !important; }
  .min-w-sm-275px {
    min-width: 275px !important; }
  .w-sm-300px {
    width: 300px !important; }
  .max-w-sm-300px {
    max-width: 300px !important; }
  .min-w-sm-300px {
    min-width: 300px !important; }
  .w-sm-350px {
    width: 350px !important; }
  .max-w-sm-350px {
    max-width: 350px !important; }
  .min-w-sm-350px {
    min-width: 350px !important; }
  .w-sm-400px {
    width: 400px !important; }
  .max-w-sm-400px {
    max-width: 400px !important; }
  .min-w-sm-400px {
    min-width: 400px !important; }
  .w-sm-450px {
    width: 450px !important; }
  .max-w-sm-450px {
    max-width: 450px !important; }
  .min-w-sm-450px {
    min-width: 450px !important; }
  .w-sm-475px {
    width: 475px !important; }
  .max-w-sm-475px {
    max-width: 475px !important; }
  .min-w-sm-475px {
    min-width: 475px !important; }
  .w-sm-500px {
    width: 500px !important; }
  .max-w-sm-500px {
    max-width: 500px !important; }
  .min-w-sm-500px {
    min-width: 500px !important; }
  .w-sm-600px {
    width: 600px !important; }
  .max-w-sm-600px {
    max-width: 600px !important; }
  .min-w-sm-600px {
    min-width: 600px !important; }
  .w-sm-650px {
    width: 650px !important; }
  .max-w-sm-650px {
    max-width: 650px !important; }
  .min-w-sm-650px {
    min-width: 650px !important; }
  .w-sm-700px {
    width: 700px !important; }
  .max-w-sm-700px {
    max-width: 700px !important; }
  .min-w-sm-700px {
    min-width: 700px !important; }
  .w-sm-3r {
    width: 3rem !important; }
  .max-w-sm-3r {
    max-width: 3rem !important; }
  .min-w-sm-3r {
    min-width: 3rem !important; }
  .w-sm-4r {
    width: 4rem !important; }
  .max-w-sm-4r {
    max-width: 4rem !important; }
  .min-w-sm-4r {
    min-width: 4rem !important; }
  .h-sm-25 {
    height: 25% !important; }
  .max-h-sm-25 {
    max-height: 25% !important; }
  .min-h-sm-25 {
    min-height: 25% !important; }
  .h-sm-50 {
    height: 50% !important; }
  .max-h-sm-50 {
    max-height: 50% !important; }
  .min-h-sm-50 {
    min-height: 50% !important; }
  .h-sm-75 {
    height: 75% !important; }
  .max-h-sm-75 {
    max-height: 75% !important; }
  .min-h-sm-75 {
    min-height: 75% !important; }
  .h-sm-100 {
    height: 100% !important; }
  .max-h-sm-100 {
    max-height: 100% !important; }
  .min-h-sm-100 {
    min-height: 100% !important; }
  .h-sm-auto {
    height: auto !important; }
  .max-h-sm-auto {
    max-height: auto !important; }
  .min-h-sm-auto {
    min-height: auto !important; }
  .h-sm-1 r {
    height: 1rem !important; }
  .max-h-sm-1 r {
    max-height: 1rem !important; }
  .min-h-sm-1 r {
    min-height: 1rem !important; }
  .h-sm-5 {
    height: 5% !important; }
  .max-h-sm-5 {
    max-height: 5% !important; }
  .min-h-sm-5 {
    min-height: 5% !important; }
  .h-sm-10 {
    height: 10% !important; }
  .max-h-sm-10 {
    max-height: 10% !important; }
  .min-h-sm-10 {
    min-height: 10% !important; }
  .h-sm-15 {
    height: 15% !important; }
  .max-h-sm-15 {
    max-height: 15% !important; }
  .min-h-sm-15 {
    min-height: 15% !important; }
  .h-sm-20 {
    height: 20% !important; }
  .max-h-sm-20 {
    max-height: 20% !important; }
  .min-h-sm-20 {
    min-height: 20% !important; }
  .h-sm-30 {
    height: 30% !important; }
  .max-h-sm-30 {
    max-height: 30% !important; }
  .min-h-sm-30 {
    min-height: 30% !important; }
  .h-sm-35 {
    height: 35% !important; }
  .max-h-sm-35 {
    max-height: 35% !important; }
  .min-h-sm-35 {
    min-height: 35% !important; }
  .h-sm-40 {
    height: 40% !important; }
  .max-h-sm-40 {
    max-height: 40% !important; }
  .min-h-sm-40 {
    min-height: 40% !important; }
  .h-sm-45 {
    height: 45% !important; }
  .max-h-sm-45 {
    max-height: 45% !important; }
  .min-h-sm-45 {
    min-height: 45% !important; }
  .h-sm-55 {
    height: 55% !important; }
  .max-h-sm-55 {
    max-height: 55% !important; }
  .min-h-sm-55 {
    min-height: 55% !important; }
  .h-sm-60 {
    height: 60% !important; }
  .max-h-sm-60 {
    max-height: 60% !important; }
  .min-h-sm-60 {
    min-height: 60% !important; }
  .h-sm-65 {
    height: 65% !important; }
  .max-h-sm-65 {
    max-height: 65% !important; }
  .min-h-sm-65 {
    min-height: 65% !important; }
  .h-sm-70 {
    height: 70% !important; }
  .max-h-sm-70 {
    max-height: 70% !important; }
  .min-h-sm-70 {
    min-height: 70% !important; }
  .h-sm-80 {
    height: 80% !important; }
  .max-h-sm-80 {
    max-height: 80% !important; }
  .min-h-sm-80 {
    min-height: 80% !important; }
  .h-sm-85 {
    height: 85% !important; }
  .max-h-sm-85 {
    max-height: 85% !important; }
  .min-h-sm-85 {
    min-height: 85% !important; }
  .h-sm-90 {
    height: 90% !important; }
  .max-h-sm-90 {
    max-height: 90% !important; }
  .min-h-sm-90 {
    min-height: 90% !important; }
  .h-sm-95 {
    height: 95% !important; }
  .max-h-sm-95 {
    max-height: 95% !important; }
  .min-h-sm-95 {
    min-height: 95% !important; }
  .h-sm-15px {
    height: 15px !important; }
  .max-h-sm-15px {
    max-height: 15px !important; }
  .min-h-sm-15px {
    min-height: 15px !important; }
  .h-sm-25px {
    height: 25px !important; }
  .max-h-sm-25px {
    max-height: 25px !important; }
  .min-h-sm-25px {
    min-height: 25px !important; }
  .h-sm-32px {
    height: 32px !important; }
  .max-h-sm-32px {
    max-height: 32px !important; }
  .min-h-sm-32px {
    min-height: 32px !important; }
  .h-sm-35px {
    height: 35px !important; }
  .max-h-sm-35px {
    max-height: 35px !important; }
  .min-h-sm-35px {
    min-height: 35px !important; }
  .h-sm-50px {
    height: 50px !important; }
  .max-h-sm-50px {
    max-height: 50px !important; }
  .min-h-sm-50px {
    min-height: 50px !important; }
  .h-sm-75px {
    height: 75px !important; }
  .max-h-sm-75px {
    max-height: 75px !important; }
  .min-h-sm-75px {
    min-height: 75px !important; }
  .h-sm-100px {
    height: 100px !important; }
  .max-h-sm-100px {
    max-height: 100px !important; }
  .min-h-sm-100px {
    min-height: 100px !important; }
  .h-sm-150px {
    height: 150px !important; }
  .max-h-sm-150px {
    max-height: 150px !important; }
  .min-h-sm-150px {
    min-height: 150px !important; }
  .h-sm-200px {
    height: 200px !important; }
  .max-h-sm-200px {
    max-height: 200px !important; }
  .min-h-sm-200px {
    min-height: 200px !important; }
  .h-sm-230px {
    height: 230px !important; }
  .max-h-sm-230px {
    max-height: 230px !important; }
  .min-h-sm-230px {
    min-height: 230px !important; }
  .h-sm-250px {
    height: 250px !important; }
  .max-h-sm-250px {
    max-height: 250px !important; }
  .min-h-sm-250px {
    min-height: 250px !important; }
  .h-sm-275px {
    height: 275px !important; }
  .max-h-sm-275px {
    max-height: 275px !important; }
  .min-h-sm-275px {
    min-height: 275px !important; }
  .h-sm-300px {
    height: 300px !important; }
  .max-h-sm-300px {
    max-height: 300px !important; }
  .min-h-sm-300px {
    min-height: 300px !important; }
  .h-sm-350px {
    height: 350px !important; }
  .max-h-sm-350px {
    max-height: 350px !important; }
  .min-h-sm-350px {
    min-height: 350px !important; }
  .h-sm-400px {
    height: 400px !important; }
  .max-h-sm-400px {
    max-height: 400px !important; }
  .min-h-sm-400px {
    min-height: 400px !important; }
  .h-sm-450px {
    height: 450px !important; }
  .max-h-sm-450px {
    max-height: 450px !important; }
  .min-h-sm-450px {
    min-height: 450px !important; }
  .h-sm-475px {
    height: 475px !important; }
  .max-h-sm-475px {
    max-height: 475px !important; }
  .min-h-sm-475px {
    min-height: 475px !important; }
  .h-sm-500px {
    height: 500px !important; }
  .max-h-sm-500px {
    max-height: 500px !important; }
  .min-h-sm-500px {
    min-height: 500px !important; }
  .h-sm-600px {
    height: 600px !important; }
  .max-h-sm-600px {
    max-height: 600px !important; }
  .min-h-sm-600px {
    min-height: 600px !important; }
  .h-sm-650px {
    height: 650px !important; }
  .max-h-sm-650px {
    max-height: 650px !important; }
  .min-h-sm-650px {
    min-height: 650px !important; }
  .h-sm-700px {
    height: 700px !important; }
  .max-h-sm-700px {
    max-height: 700px !important; }
  .min-h-sm-700px {
    min-height: 700px !important; }
  .h-sm-3r {
    height: 3rem !important; }
  .max-h-sm-3r {
    max-height: 3rem !important; }
  .min-h-sm-3r {
    min-height: 3rem !important; }
  .h-sm-4r {
    height: 4rem !important; }
  .max-h-sm-4r {
    max-height: 4rem !important; }
  .min-h-sm-4r {
    min-height: 4rem !important; } }

@media (min-width: 768px) {
  .w-md-25 {
    width: 25% !important; }
  .max-w-md-25 {
    max-width: 25% !important; }
  .min-w-md-25 {
    min-width: 25% !important; }
  .w-md-50 {
    width: 50% !important; }
  .max-w-md-50 {
    max-width: 50% !important; }
  .min-w-md-50 {
    min-width: 50% !important; }
  .w-md-75 {
    width: 75% !important; }
  .max-w-md-75 {
    max-width: 75% !important; }
  .min-w-md-75 {
    min-width: 75% !important; }
  .w-md-100 {
    width: 100% !important; }
  .max-w-md-100 {
    max-width: 100% !important; }
  .min-w-md-100 {
    min-width: 100% !important; }
  .w-md-auto {
    width: auto !important; }
  .max-w-md-auto {
    max-width: auto !important; }
  .min-w-md-auto {
    min-width: auto !important; }
  .w-md-1 r {
    width: 1rem !important; }
  .max-w-md-1 r {
    max-width: 1rem !important; }
  .min-w-md-1 r {
    min-width: 1rem !important; }
  .w-md-5 {
    width: 5% !important; }
  .max-w-md-5 {
    max-width: 5% !important; }
  .min-w-md-5 {
    min-width: 5% !important; }
  .w-md-10 {
    width: 10% !important; }
  .max-w-md-10 {
    max-width: 10% !important; }
  .min-w-md-10 {
    min-width: 10% !important; }
  .w-md-15 {
    width: 15% !important; }
  .max-w-md-15 {
    max-width: 15% !important; }
  .min-w-md-15 {
    min-width: 15% !important; }
  .w-md-20 {
    width: 20% !important; }
  .max-w-md-20 {
    max-width: 20% !important; }
  .min-w-md-20 {
    min-width: 20% !important; }
  .w-md-30 {
    width: 30% !important; }
  .max-w-md-30 {
    max-width: 30% !important; }
  .min-w-md-30 {
    min-width: 30% !important; }
  .w-md-35 {
    width: 35% !important; }
  .max-w-md-35 {
    max-width: 35% !important; }
  .min-w-md-35 {
    min-width: 35% !important; }
  .w-md-40 {
    width: 40% !important; }
  .max-w-md-40 {
    max-width: 40% !important; }
  .min-w-md-40 {
    min-width: 40% !important; }
  .w-md-45 {
    width: 45% !important; }
  .max-w-md-45 {
    max-width: 45% !important; }
  .min-w-md-45 {
    min-width: 45% !important; }
  .w-md-55 {
    width: 55% !important; }
  .max-w-md-55 {
    max-width: 55% !important; }
  .min-w-md-55 {
    min-width: 55% !important; }
  .w-md-60 {
    width: 60% !important; }
  .max-w-md-60 {
    max-width: 60% !important; }
  .min-w-md-60 {
    min-width: 60% !important; }
  .w-md-65 {
    width: 65% !important; }
  .max-w-md-65 {
    max-width: 65% !important; }
  .min-w-md-65 {
    min-width: 65% !important; }
  .w-md-70 {
    width: 70% !important; }
  .max-w-md-70 {
    max-width: 70% !important; }
  .min-w-md-70 {
    min-width: 70% !important; }
  .w-md-80 {
    width: 80% !important; }
  .max-w-md-80 {
    max-width: 80% !important; }
  .min-w-md-80 {
    min-width: 80% !important; }
  .w-md-85 {
    width: 85% !important; }
  .max-w-md-85 {
    max-width: 85% !important; }
  .min-w-md-85 {
    min-width: 85% !important; }
  .w-md-90 {
    width: 90% !important; }
  .max-w-md-90 {
    max-width: 90% !important; }
  .min-w-md-90 {
    min-width: 90% !important; }
  .w-md-95 {
    width: 95% !important; }
  .max-w-md-95 {
    max-width: 95% !important; }
  .min-w-md-95 {
    min-width: 95% !important; }
  .w-md-15px {
    width: 15px !important; }
  .max-w-md-15px {
    max-width: 15px !important; }
  .min-w-md-15px {
    min-width: 15px !important; }
  .w-md-25px {
    width: 25px !important; }
  .max-w-md-25px {
    max-width: 25px !important; }
  .min-w-md-25px {
    min-width: 25px !important; }
  .w-md-32px {
    width: 32px !important; }
  .max-w-md-32px {
    max-width: 32px !important; }
  .min-w-md-32px {
    min-width: 32px !important; }
  .w-md-35px {
    width: 35px !important; }
  .max-w-md-35px {
    max-width: 35px !important; }
  .min-w-md-35px {
    min-width: 35px !important; }
  .w-md-50px {
    width: 50px !important; }
  .max-w-md-50px {
    max-width: 50px !important; }
  .min-w-md-50px {
    min-width: 50px !important; }
  .w-md-75px {
    width: 75px !important; }
  .max-w-md-75px {
    max-width: 75px !important; }
  .min-w-md-75px {
    min-width: 75px !important; }
  .w-md-100px {
    width: 100px !important; }
  .max-w-md-100px {
    max-width: 100px !important; }
  .min-w-md-100px {
    min-width: 100px !important; }
  .w-md-150px {
    width: 150px !important; }
  .max-w-md-150px {
    max-width: 150px !important; }
  .min-w-md-150px {
    min-width: 150px !important; }
  .w-md-200px {
    width: 200px !important; }
  .max-w-md-200px {
    max-width: 200px !important; }
  .min-w-md-200px {
    min-width: 200px !important; }
  .w-md-230px {
    width: 230px !important; }
  .max-w-md-230px {
    max-width: 230px !important; }
  .min-w-md-230px {
    min-width: 230px !important; }
  .w-md-250px {
    width: 250px !important; }
  .max-w-md-250px {
    max-width: 250px !important; }
  .min-w-md-250px {
    min-width: 250px !important; }
  .w-md-275px {
    width: 275px !important; }
  .max-w-md-275px {
    max-width: 275px !important; }
  .min-w-md-275px {
    min-width: 275px !important; }
  .w-md-300px {
    width: 300px !important; }
  .max-w-md-300px {
    max-width: 300px !important; }
  .min-w-md-300px {
    min-width: 300px !important; }
  .w-md-350px {
    width: 350px !important; }
  .max-w-md-350px {
    max-width: 350px !important; }
  .min-w-md-350px {
    min-width: 350px !important; }
  .w-md-400px {
    width: 400px !important; }
  .max-w-md-400px {
    max-width: 400px !important; }
  .min-w-md-400px {
    min-width: 400px !important; }
  .w-md-450px {
    width: 450px !important; }
  .max-w-md-450px {
    max-width: 450px !important; }
  .min-w-md-450px {
    min-width: 450px !important; }
  .w-md-475px {
    width: 475px !important; }
  .max-w-md-475px {
    max-width: 475px !important; }
  .min-w-md-475px {
    min-width: 475px !important; }
  .w-md-500px {
    width: 500px !important; }
  .max-w-md-500px {
    max-width: 500px !important; }
  .min-w-md-500px {
    min-width: 500px !important; }
  .w-md-600px {
    width: 600px !important; }
  .max-w-md-600px {
    max-width: 600px !important; }
  .min-w-md-600px {
    min-width: 600px !important; }
  .w-md-650px {
    width: 650px !important; }
  .max-w-md-650px {
    max-width: 650px !important; }
  .min-w-md-650px {
    min-width: 650px !important; }
  .w-md-700px {
    width: 700px !important; }
  .max-w-md-700px {
    max-width: 700px !important; }
  .min-w-md-700px {
    min-width: 700px !important; }
  .w-md-3r {
    width: 3rem !important; }
  .max-w-md-3r {
    max-width: 3rem !important; }
  .min-w-md-3r {
    min-width: 3rem !important; }
  .w-md-4r {
    width: 4rem !important; }
  .max-w-md-4r {
    max-width: 4rem !important; }
  .min-w-md-4r {
    min-width: 4rem !important; }
  .h-md-25 {
    height: 25% !important; }
  .max-h-md-25 {
    max-height: 25% !important; }
  .min-h-md-25 {
    min-height: 25% !important; }
  .h-md-50 {
    height: 50% !important; }
  .max-h-md-50 {
    max-height: 50% !important; }
  .min-h-md-50 {
    min-height: 50% !important; }
  .h-md-75 {
    height: 75% !important; }
  .max-h-md-75 {
    max-height: 75% !important; }
  .min-h-md-75 {
    min-height: 75% !important; }
  .h-md-100 {
    height: 100% !important; }
  .max-h-md-100 {
    max-height: 100% !important; }
  .min-h-md-100 {
    min-height: 100% !important; }
  .h-md-auto {
    height: auto !important; }
  .max-h-md-auto {
    max-height: auto !important; }
  .min-h-md-auto {
    min-height: auto !important; }
  .h-md-1 r {
    height: 1rem !important; }
  .max-h-md-1 r {
    max-height: 1rem !important; }
  .min-h-md-1 r {
    min-height: 1rem !important; }
  .h-md-5 {
    height: 5% !important; }
  .max-h-md-5 {
    max-height: 5% !important; }
  .min-h-md-5 {
    min-height: 5% !important; }
  .h-md-10 {
    height: 10% !important; }
  .max-h-md-10 {
    max-height: 10% !important; }
  .min-h-md-10 {
    min-height: 10% !important; }
  .h-md-15 {
    height: 15% !important; }
  .max-h-md-15 {
    max-height: 15% !important; }
  .min-h-md-15 {
    min-height: 15% !important; }
  .h-md-20 {
    height: 20% !important; }
  .max-h-md-20 {
    max-height: 20% !important; }
  .min-h-md-20 {
    min-height: 20% !important; }
  .h-md-30 {
    height: 30% !important; }
  .max-h-md-30 {
    max-height: 30% !important; }
  .min-h-md-30 {
    min-height: 30% !important; }
  .h-md-35 {
    height: 35% !important; }
  .max-h-md-35 {
    max-height: 35% !important; }
  .min-h-md-35 {
    min-height: 35% !important; }
  .h-md-40 {
    height: 40% !important; }
  .max-h-md-40 {
    max-height: 40% !important; }
  .min-h-md-40 {
    min-height: 40% !important; }
  .h-md-45 {
    height: 45% !important; }
  .max-h-md-45 {
    max-height: 45% !important; }
  .min-h-md-45 {
    min-height: 45% !important; }
  .h-md-55 {
    height: 55% !important; }
  .max-h-md-55 {
    max-height: 55% !important; }
  .min-h-md-55 {
    min-height: 55% !important; }
  .h-md-60 {
    height: 60% !important; }
  .max-h-md-60 {
    max-height: 60% !important; }
  .min-h-md-60 {
    min-height: 60% !important; }
  .h-md-65 {
    height: 65% !important; }
  .max-h-md-65 {
    max-height: 65% !important; }
  .min-h-md-65 {
    min-height: 65% !important; }
  .h-md-70 {
    height: 70% !important; }
  .max-h-md-70 {
    max-height: 70% !important; }
  .min-h-md-70 {
    min-height: 70% !important; }
  .h-md-80 {
    height: 80% !important; }
  .max-h-md-80 {
    max-height: 80% !important; }
  .min-h-md-80 {
    min-height: 80% !important; }
  .h-md-85 {
    height: 85% !important; }
  .max-h-md-85 {
    max-height: 85% !important; }
  .min-h-md-85 {
    min-height: 85% !important; }
  .h-md-90 {
    height: 90% !important; }
  .max-h-md-90 {
    max-height: 90% !important; }
  .min-h-md-90 {
    min-height: 90% !important; }
  .h-md-95 {
    height: 95% !important; }
  .max-h-md-95 {
    max-height: 95% !important; }
  .min-h-md-95 {
    min-height: 95% !important; }
  .h-md-15px {
    height: 15px !important; }
  .max-h-md-15px {
    max-height: 15px !important; }
  .min-h-md-15px {
    min-height: 15px !important; }
  .h-md-25px {
    height: 25px !important; }
  .max-h-md-25px {
    max-height: 25px !important; }
  .min-h-md-25px {
    min-height: 25px !important; }
  .h-md-32px {
    height: 32px !important; }
  .max-h-md-32px {
    max-height: 32px !important; }
  .min-h-md-32px {
    min-height: 32px !important; }
  .h-md-35px {
    height: 35px !important; }
  .max-h-md-35px {
    max-height: 35px !important; }
  .min-h-md-35px {
    min-height: 35px !important; }
  .h-md-50px {
    height: 50px !important; }
  .max-h-md-50px {
    max-height: 50px !important; }
  .min-h-md-50px {
    min-height: 50px !important; }
  .h-md-75px {
    height: 75px !important; }
  .max-h-md-75px {
    max-height: 75px !important; }
  .min-h-md-75px {
    min-height: 75px !important; }
  .h-md-100px {
    height: 100px !important; }
  .max-h-md-100px {
    max-height: 100px !important; }
  .min-h-md-100px {
    min-height: 100px !important; }
  .h-md-150px {
    height: 150px !important; }
  .max-h-md-150px {
    max-height: 150px !important; }
  .min-h-md-150px {
    min-height: 150px !important; }
  .h-md-200px {
    height: 200px !important; }
  .max-h-md-200px {
    max-height: 200px !important; }
  .min-h-md-200px {
    min-height: 200px !important; }
  .h-md-230px {
    height: 230px !important; }
  .max-h-md-230px {
    max-height: 230px !important; }
  .min-h-md-230px {
    min-height: 230px !important; }
  .h-md-250px {
    height: 250px !important; }
  .max-h-md-250px {
    max-height: 250px !important; }
  .min-h-md-250px {
    min-height: 250px !important; }
  .h-md-275px {
    height: 275px !important; }
  .max-h-md-275px {
    max-height: 275px !important; }
  .min-h-md-275px {
    min-height: 275px !important; }
  .h-md-300px {
    height: 300px !important; }
  .max-h-md-300px {
    max-height: 300px !important; }
  .min-h-md-300px {
    min-height: 300px !important; }
  .h-md-350px {
    height: 350px !important; }
  .max-h-md-350px {
    max-height: 350px !important; }
  .min-h-md-350px {
    min-height: 350px !important; }
  .h-md-400px {
    height: 400px !important; }
  .max-h-md-400px {
    max-height: 400px !important; }
  .min-h-md-400px {
    min-height: 400px !important; }
  .h-md-450px {
    height: 450px !important; }
  .max-h-md-450px {
    max-height: 450px !important; }
  .min-h-md-450px {
    min-height: 450px !important; }
  .h-md-475px {
    height: 475px !important; }
  .max-h-md-475px {
    max-height: 475px !important; }
  .min-h-md-475px {
    min-height: 475px !important; }
  .h-md-500px {
    height: 500px !important; }
  .max-h-md-500px {
    max-height: 500px !important; }
  .min-h-md-500px {
    min-height: 500px !important; }
  .h-md-600px {
    height: 600px !important; }
  .max-h-md-600px {
    max-height: 600px !important; }
  .min-h-md-600px {
    min-height: 600px !important; }
  .h-md-650px {
    height: 650px !important; }
  .max-h-md-650px {
    max-height: 650px !important; }
  .min-h-md-650px {
    min-height: 650px !important; }
  .h-md-700px {
    height: 700px !important; }
  .max-h-md-700px {
    max-height: 700px !important; }
  .min-h-md-700px {
    min-height: 700px !important; }
  .h-md-3r {
    height: 3rem !important; }
  .max-h-md-3r {
    max-height: 3rem !important; }
  .min-h-md-3r {
    min-height: 3rem !important; }
  .h-md-4r {
    height: 4rem !important; }
  .max-h-md-4r {
    max-height: 4rem !important; }
  .min-h-md-4r {
    min-height: 4rem !important; } }

@media (min-width: 992px) {
  .w-lg-25 {
    width: 25% !important; }
  .max-w-lg-25 {
    max-width: 25% !important; }
  .min-w-lg-25 {
    min-width: 25% !important; }
  .w-lg-50 {
    width: 50% !important; }
  .max-w-lg-50 {
    max-width: 50% !important; }
  .min-w-lg-50 {
    min-width: 50% !important; }
  .w-lg-75 {
    width: 75% !important; }
  .max-w-lg-75 {
    max-width: 75% !important; }
  .min-w-lg-75 {
    min-width: 75% !important; }
  .w-lg-100 {
    width: 100% !important; }
  .max-w-lg-100 {
    max-width: 100% !important; }
  .min-w-lg-100 {
    min-width: 100% !important; }
  .w-lg-auto {
    width: auto !important; }
  .max-w-lg-auto {
    max-width: auto !important; }
  .min-w-lg-auto {
    min-width: auto !important; }
  .w-lg-1 r {
    width: 1rem !important; }
  .max-w-lg-1 r {
    max-width: 1rem !important; }
  .min-w-lg-1 r {
    min-width: 1rem !important; }
  .w-lg-5 {
    width: 5% !important; }
  .max-w-lg-5 {
    max-width: 5% !important; }
  .min-w-lg-5 {
    min-width: 5% !important; }
  .w-lg-10 {
    width: 10% !important; }
  .max-w-lg-10 {
    max-width: 10% !important; }
  .min-w-lg-10 {
    min-width: 10% !important; }
  .w-lg-15 {
    width: 15% !important; }
  .max-w-lg-15 {
    max-width: 15% !important; }
  .min-w-lg-15 {
    min-width: 15% !important; }
  .w-lg-20 {
    width: 20% !important; }
  .max-w-lg-20 {
    max-width: 20% !important; }
  .min-w-lg-20 {
    min-width: 20% !important; }
  .w-lg-30 {
    width: 30% !important; }
  .max-w-lg-30 {
    max-width: 30% !important; }
  .min-w-lg-30 {
    min-width: 30% !important; }
  .w-lg-35 {
    width: 35% !important; }
  .max-w-lg-35 {
    max-width: 35% !important; }
  .min-w-lg-35 {
    min-width: 35% !important; }
  .w-lg-40 {
    width: 40% !important; }
  .max-w-lg-40 {
    max-width: 40% !important; }
  .min-w-lg-40 {
    min-width: 40% !important; }
  .w-lg-45 {
    width: 45% !important; }
  .max-w-lg-45 {
    max-width: 45% !important; }
  .min-w-lg-45 {
    min-width: 45% !important; }
  .w-lg-55 {
    width: 55% !important; }
  .max-w-lg-55 {
    max-width: 55% !important; }
  .min-w-lg-55 {
    min-width: 55% !important; }
  .w-lg-60 {
    width: 60% !important; }
  .max-w-lg-60 {
    max-width: 60% !important; }
  .min-w-lg-60 {
    min-width: 60% !important; }
  .w-lg-65 {
    width: 65% !important; }
  .max-w-lg-65 {
    max-width: 65% !important; }
  .min-w-lg-65 {
    min-width: 65% !important; }
  .w-lg-70 {
    width: 70% !important; }
  .max-w-lg-70 {
    max-width: 70% !important; }
  .min-w-lg-70 {
    min-width: 70% !important; }
  .w-lg-80 {
    width: 80% !important; }
  .max-w-lg-80 {
    max-width: 80% !important; }
  .min-w-lg-80 {
    min-width: 80% !important; }
  .w-lg-85 {
    width: 85% !important; }
  .max-w-lg-85 {
    max-width: 85% !important; }
  .min-w-lg-85 {
    min-width: 85% !important; }
  .w-lg-90 {
    width: 90% !important; }
  .max-w-lg-90 {
    max-width: 90% !important; }
  .min-w-lg-90 {
    min-width: 90% !important; }
  .w-lg-95 {
    width: 95% !important; }
  .max-w-lg-95 {
    max-width: 95% !important; }
  .min-w-lg-95 {
    min-width: 95% !important; }
  .w-lg-15px {
    width: 15px !important; }
  .max-w-lg-15px {
    max-width: 15px !important; }
  .min-w-lg-15px {
    min-width: 15px !important; }
  .w-lg-25px {
    width: 25px !important; }
  .max-w-lg-25px {
    max-width: 25px !important; }
  .min-w-lg-25px {
    min-width: 25px !important; }
  .w-lg-32px {
    width: 32px !important; }
  .max-w-lg-32px {
    max-width: 32px !important; }
  .min-w-lg-32px {
    min-width: 32px !important; }
  .w-lg-35px {
    width: 35px !important; }
  .max-w-lg-35px {
    max-width: 35px !important; }
  .min-w-lg-35px {
    min-width: 35px !important; }
  .w-lg-50px {
    width: 50px !important; }
  .max-w-lg-50px {
    max-width: 50px !important; }
  .min-w-lg-50px {
    min-width: 50px !important; }
  .w-lg-75px {
    width: 75px !important; }
  .max-w-lg-75px {
    max-width: 75px !important; }
  .min-w-lg-75px {
    min-width: 75px !important; }
  .w-lg-100px {
    width: 100px !important; }
  .max-w-lg-100px {
    max-width: 100px !important; }
  .min-w-lg-100px {
    min-width: 100px !important; }
  .w-lg-150px {
    width: 150px !important; }
  .max-w-lg-150px {
    max-width: 150px !important; }
  .min-w-lg-150px {
    min-width: 150px !important; }
  .w-lg-200px {
    width: 200px !important; }
  .max-w-lg-200px {
    max-width: 200px !important; }
  .min-w-lg-200px {
    min-width: 200px !important; }
  .w-lg-230px {
    width: 230px !important; }
  .max-w-lg-230px {
    max-width: 230px !important; }
  .min-w-lg-230px {
    min-width: 230px !important; }
  .w-lg-250px {
    width: 250px !important; }
  .max-w-lg-250px {
    max-width: 250px !important; }
  .min-w-lg-250px {
    min-width: 250px !important; }
  .w-lg-275px {
    width: 275px !important; }
  .max-w-lg-275px {
    max-width: 275px !important; }
  .min-w-lg-275px {
    min-width: 275px !important; }
  .w-lg-300px {
    width: 300px !important; }
  .max-w-lg-300px {
    max-width: 300px !important; }
  .min-w-lg-300px {
    min-width: 300px !important; }
  .w-lg-350px {
    width: 350px !important; }
  .max-w-lg-350px {
    max-width: 350px !important; }
  .min-w-lg-350px {
    min-width: 350px !important; }
  .w-lg-400px {
    width: 400px !important; }
  .max-w-lg-400px {
    max-width: 400px !important; }
  .min-w-lg-400px {
    min-width: 400px !important; }
  .w-lg-450px {
    width: 450px !important; }
  .max-w-lg-450px {
    max-width: 450px !important; }
  .min-w-lg-450px {
    min-width: 450px !important; }
  .w-lg-475px {
    width: 475px !important; }
  .max-w-lg-475px {
    max-width: 475px !important; }
  .min-w-lg-475px {
    min-width: 475px !important; }
  .w-lg-500px {
    width: 500px !important; }
  .max-w-lg-500px {
    max-width: 500px !important; }
  .min-w-lg-500px {
    min-width: 500px !important; }
  .w-lg-600px {
    width: 600px !important; }
  .max-w-lg-600px {
    max-width: 600px !important; }
  .min-w-lg-600px {
    min-width: 600px !important; }
  .w-lg-650px {
    width: 650px !important; }
  .max-w-lg-650px {
    max-width: 650px !important; }
  .min-w-lg-650px {
    min-width: 650px !important; }
  .w-lg-700px {
    width: 700px !important; }
  .max-w-lg-700px {
    max-width: 700px !important; }
  .min-w-lg-700px {
    min-width: 700px !important; }
  .w-lg-3r {
    width: 3rem !important; }
  .max-w-lg-3r {
    max-width: 3rem !important; }
  .min-w-lg-3r {
    min-width: 3rem !important; }
  .w-lg-4r {
    width: 4rem !important; }
  .max-w-lg-4r {
    max-width: 4rem !important; }
  .min-w-lg-4r {
    min-width: 4rem !important; }
  .h-lg-25 {
    height: 25% !important; }
  .max-h-lg-25 {
    max-height: 25% !important; }
  .min-h-lg-25 {
    min-height: 25% !important; }
  .h-lg-50 {
    height: 50% !important; }
  .max-h-lg-50 {
    max-height: 50% !important; }
  .min-h-lg-50 {
    min-height: 50% !important; }
  .h-lg-75 {
    height: 75% !important; }
  .max-h-lg-75 {
    max-height: 75% !important; }
  .min-h-lg-75 {
    min-height: 75% !important; }
  .h-lg-100 {
    height: 100% !important; }
  .max-h-lg-100 {
    max-height: 100% !important; }
  .min-h-lg-100 {
    min-height: 100% !important; }
  .h-lg-auto {
    height: auto !important; }
  .max-h-lg-auto {
    max-height: auto !important; }
  .min-h-lg-auto {
    min-height: auto !important; }
  .h-lg-1 r {
    height: 1rem !important; }
  .max-h-lg-1 r {
    max-height: 1rem !important; }
  .min-h-lg-1 r {
    min-height: 1rem !important; }
  .h-lg-5 {
    height: 5% !important; }
  .max-h-lg-5 {
    max-height: 5% !important; }
  .min-h-lg-5 {
    min-height: 5% !important; }
  .h-lg-10 {
    height: 10% !important; }
  .max-h-lg-10 {
    max-height: 10% !important; }
  .min-h-lg-10 {
    min-height: 10% !important; }
  .h-lg-15 {
    height: 15% !important; }
  .max-h-lg-15 {
    max-height: 15% !important; }
  .min-h-lg-15 {
    min-height: 15% !important; }
  .h-lg-20 {
    height: 20% !important; }
  .max-h-lg-20 {
    max-height: 20% !important; }
  .min-h-lg-20 {
    min-height: 20% !important; }
  .h-lg-30 {
    height: 30% !important; }
  .max-h-lg-30 {
    max-height: 30% !important; }
  .min-h-lg-30 {
    min-height: 30% !important; }
  .h-lg-35 {
    height: 35% !important; }
  .max-h-lg-35 {
    max-height: 35% !important; }
  .min-h-lg-35 {
    min-height: 35% !important; }
  .h-lg-40 {
    height: 40% !important; }
  .max-h-lg-40 {
    max-height: 40% !important; }
  .min-h-lg-40 {
    min-height: 40% !important; }
  .h-lg-45 {
    height: 45% !important; }
  .max-h-lg-45 {
    max-height: 45% !important; }
  .min-h-lg-45 {
    min-height: 45% !important; }
  .h-lg-55 {
    height: 55% !important; }
  .max-h-lg-55 {
    max-height: 55% !important; }
  .min-h-lg-55 {
    min-height: 55% !important; }
  .h-lg-60 {
    height: 60% !important; }
  .max-h-lg-60 {
    max-height: 60% !important; }
  .min-h-lg-60 {
    min-height: 60% !important; }
  .h-lg-65 {
    height: 65% !important; }
  .max-h-lg-65 {
    max-height: 65% !important; }
  .min-h-lg-65 {
    min-height: 65% !important; }
  .h-lg-70 {
    height: 70% !important; }
  .max-h-lg-70 {
    max-height: 70% !important; }
  .min-h-lg-70 {
    min-height: 70% !important; }
  .h-lg-80 {
    height: 80% !important; }
  .max-h-lg-80 {
    max-height: 80% !important; }
  .min-h-lg-80 {
    min-height: 80% !important; }
  .h-lg-85 {
    height: 85% !important; }
  .max-h-lg-85 {
    max-height: 85% !important; }
  .min-h-lg-85 {
    min-height: 85% !important; }
  .h-lg-90 {
    height: 90% !important; }
  .max-h-lg-90 {
    max-height: 90% !important; }
  .min-h-lg-90 {
    min-height: 90% !important; }
  .h-lg-95 {
    height: 95% !important; }
  .max-h-lg-95 {
    max-height: 95% !important; }
  .min-h-lg-95 {
    min-height: 95% !important; }
  .h-lg-15px {
    height: 15px !important; }
  .max-h-lg-15px {
    max-height: 15px !important; }
  .min-h-lg-15px {
    min-height: 15px !important; }
  .h-lg-25px {
    height: 25px !important; }
  .max-h-lg-25px {
    max-height: 25px !important; }
  .min-h-lg-25px {
    min-height: 25px !important; }
  .h-lg-32px {
    height: 32px !important; }
  .max-h-lg-32px {
    max-height: 32px !important; }
  .min-h-lg-32px {
    min-height: 32px !important; }
  .h-lg-35px {
    height: 35px !important; }
  .max-h-lg-35px {
    max-height: 35px !important; }
  .min-h-lg-35px {
    min-height: 35px !important; }
  .h-lg-50px {
    height: 50px !important; }
  .max-h-lg-50px {
    max-height: 50px !important; }
  .min-h-lg-50px {
    min-height: 50px !important; }
  .h-lg-75px {
    height: 75px !important; }
  .max-h-lg-75px {
    max-height: 75px !important; }
  .min-h-lg-75px {
    min-height: 75px !important; }
  .h-lg-100px {
    height: 100px !important; }
  .max-h-lg-100px {
    max-height: 100px !important; }
  .min-h-lg-100px {
    min-height: 100px !important; }
  .h-lg-150px {
    height: 150px !important; }
  .max-h-lg-150px {
    max-height: 150px !important; }
  .min-h-lg-150px {
    min-height: 150px !important; }
  .h-lg-200px {
    height: 200px !important; }
  .max-h-lg-200px {
    max-height: 200px !important; }
  .min-h-lg-200px {
    min-height: 200px !important; }
  .h-lg-230px {
    height: 230px !important; }
  .max-h-lg-230px {
    max-height: 230px !important; }
  .min-h-lg-230px {
    min-height: 230px !important; }
  .h-lg-250px {
    height: 250px !important; }
  .max-h-lg-250px {
    max-height: 250px !important; }
  .min-h-lg-250px {
    min-height: 250px !important; }
  .h-lg-275px {
    height: 275px !important; }
  .max-h-lg-275px {
    max-height: 275px !important; }
  .min-h-lg-275px {
    min-height: 275px !important; }
  .h-lg-300px {
    height: 300px !important; }
  .max-h-lg-300px {
    max-height: 300px !important; }
  .min-h-lg-300px {
    min-height: 300px !important; }
  .h-lg-350px {
    height: 350px !important; }
  .max-h-lg-350px {
    max-height: 350px !important; }
  .min-h-lg-350px {
    min-height: 350px !important; }
  .h-lg-400px {
    height: 400px !important; }
  .max-h-lg-400px {
    max-height: 400px !important; }
  .min-h-lg-400px {
    min-height: 400px !important; }
  .h-lg-450px {
    height: 450px !important; }
  .max-h-lg-450px {
    max-height: 450px !important; }
  .min-h-lg-450px {
    min-height: 450px !important; }
  .h-lg-475px {
    height: 475px !important; }
  .max-h-lg-475px {
    max-height: 475px !important; }
  .min-h-lg-475px {
    min-height: 475px !important; }
  .h-lg-500px {
    height: 500px !important; }
  .max-h-lg-500px {
    max-height: 500px !important; }
  .min-h-lg-500px {
    min-height: 500px !important; }
  .h-lg-600px {
    height: 600px !important; }
  .max-h-lg-600px {
    max-height: 600px !important; }
  .min-h-lg-600px {
    min-height: 600px !important; }
  .h-lg-650px {
    height: 650px !important; }
  .max-h-lg-650px {
    max-height: 650px !important; }
  .min-h-lg-650px {
    min-height: 650px !important; }
  .h-lg-700px {
    height: 700px !important; }
  .max-h-lg-700px {
    max-height: 700px !important; }
  .min-h-lg-700px {
    min-height: 700px !important; }
  .h-lg-3r {
    height: 3rem !important; }
  .max-h-lg-3r {
    max-height: 3rem !important; }
  .min-h-lg-3r {
    min-height: 3rem !important; }
  .h-lg-4r {
    height: 4rem !important; }
  .max-h-lg-4r {
    max-height: 4rem !important; }
  .min-h-lg-4r {
    min-height: 4rem !important; } }

@media (min-width: 1230px) {
  .w-xl-25 {
    width: 25% !important; }
  .max-w-xl-25 {
    max-width: 25% !important; }
  .min-w-xl-25 {
    min-width: 25% !important; }
  .w-xl-50 {
    width: 50% !important; }
  .max-w-xl-50 {
    max-width: 50% !important; }
  .min-w-xl-50 {
    min-width: 50% !important; }
  .w-xl-75 {
    width: 75% !important; }
  .max-w-xl-75 {
    max-width: 75% !important; }
  .min-w-xl-75 {
    min-width: 75% !important; }
  .w-xl-100 {
    width: 100% !important; }
  .max-w-xl-100 {
    max-width: 100% !important; }
  .min-w-xl-100 {
    min-width: 100% !important; }
  .w-xl-auto {
    width: auto !important; }
  .max-w-xl-auto {
    max-width: auto !important; }
  .min-w-xl-auto {
    min-width: auto !important; }
  .w-xl-1 r {
    width: 1rem !important; }
  .max-w-xl-1 r {
    max-width: 1rem !important; }
  .min-w-xl-1 r {
    min-width: 1rem !important; }
  .w-xl-5 {
    width: 5% !important; }
  .max-w-xl-5 {
    max-width: 5% !important; }
  .min-w-xl-5 {
    min-width: 5% !important; }
  .w-xl-10 {
    width: 10% !important; }
  .max-w-xl-10 {
    max-width: 10% !important; }
  .min-w-xl-10 {
    min-width: 10% !important; }
  .w-xl-15 {
    width: 15% !important; }
  .max-w-xl-15 {
    max-width: 15% !important; }
  .min-w-xl-15 {
    min-width: 15% !important; }
  .w-xl-20 {
    width: 20% !important; }
  .max-w-xl-20 {
    max-width: 20% !important; }
  .min-w-xl-20 {
    min-width: 20% !important; }
  .w-xl-30 {
    width: 30% !important; }
  .max-w-xl-30 {
    max-width: 30% !important; }
  .min-w-xl-30 {
    min-width: 30% !important; }
  .w-xl-35 {
    width: 35% !important; }
  .max-w-xl-35 {
    max-width: 35% !important; }
  .min-w-xl-35 {
    min-width: 35% !important; }
  .w-xl-40 {
    width: 40% !important; }
  .max-w-xl-40 {
    max-width: 40% !important; }
  .min-w-xl-40 {
    min-width: 40% !important; }
  .w-xl-45 {
    width: 45% !important; }
  .max-w-xl-45 {
    max-width: 45% !important; }
  .min-w-xl-45 {
    min-width: 45% !important; }
  .w-xl-55 {
    width: 55% !important; }
  .max-w-xl-55 {
    max-width: 55% !important; }
  .min-w-xl-55 {
    min-width: 55% !important; }
  .w-xl-60 {
    width: 60% !important; }
  .max-w-xl-60 {
    max-width: 60% !important; }
  .min-w-xl-60 {
    min-width: 60% !important; }
  .w-xl-65 {
    width: 65% !important; }
  .max-w-xl-65 {
    max-width: 65% !important; }
  .min-w-xl-65 {
    min-width: 65% !important; }
  .w-xl-70 {
    width: 70% !important; }
  .max-w-xl-70 {
    max-width: 70% !important; }
  .min-w-xl-70 {
    min-width: 70% !important; }
  .w-xl-80 {
    width: 80% !important; }
  .max-w-xl-80 {
    max-width: 80% !important; }
  .min-w-xl-80 {
    min-width: 80% !important; }
  .w-xl-85 {
    width: 85% !important; }
  .max-w-xl-85 {
    max-width: 85% !important; }
  .min-w-xl-85 {
    min-width: 85% !important; }
  .w-xl-90 {
    width: 90% !important; }
  .max-w-xl-90 {
    max-width: 90% !important; }
  .min-w-xl-90 {
    min-width: 90% !important; }
  .w-xl-95 {
    width: 95% !important; }
  .max-w-xl-95 {
    max-width: 95% !important; }
  .min-w-xl-95 {
    min-width: 95% !important; }
  .w-xl-15px {
    width: 15px !important; }
  .max-w-xl-15px {
    max-width: 15px !important; }
  .min-w-xl-15px {
    min-width: 15px !important; }
  .w-xl-25px {
    width: 25px !important; }
  .max-w-xl-25px {
    max-width: 25px !important; }
  .min-w-xl-25px {
    min-width: 25px !important; }
  .w-xl-32px {
    width: 32px !important; }
  .max-w-xl-32px {
    max-width: 32px !important; }
  .min-w-xl-32px {
    min-width: 32px !important; }
  .w-xl-35px {
    width: 35px !important; }
  .max-w-xl-35px {
    max-width: 35px !important; }
  .min-w-xl-35px {
    min-width: 35px !important; }
  .w-xl-50px {
    width: 50px !important; }
  .max-w-xl-50px {
    max-width: 50px !important; }
  .min-w-xl-50px {
    min-width: 50px !important; }
  .w-xl-75px {
    width: 75px !important; }
  .max-w-xl-75px {
    max-width: 75px !important; }
  .min-w-xl-75px {
    min-width: 75px !important; }
  .w-xl-100px {
    width: 100px !important; }
  .max-w-xl-100px {
    max-width: 100px !important; }
  .min-w-xl-100px {
    min-width: 100px !important; }
  .w-xl-150px {
    width: 150px !important; }
  .max-w-xl-150px {
    max-width: 150px !important; }
  .min-w-xl-150px {
    min-width: 150px !important; }
  .w-xl-200px {
    width: 200px !important; }
  .max-w-xl-200px {
    max-width: 200px !important; }
  .min-w-xl-200px {
    min-width: 200px !important; }
  .w-xl-230px {
    width: 230px !important; }
  .max-w-xl-230px {
    max-width: 230px !important; }
  .min-w-xl-230px {
    min-width: 230px !important; }
  .w-xl-250px {
    width: 250px !important; }
  .max-w-xl-250px {
    max-width: 250px !important; }
  .min-w-xl-250px {
    min-width: 250px !important; }
  .w-xl-275px {
    width: 275px !important; }
  .max-w-xl-275px {
    max-width: 275px !important; }
  .min-w-xl-275px {
    min-width: 275px !important; }
  .w-xl-300px {
    width: 300px !important; }
  .max-w-xl-300px {
    max-width: 300px !important; }
  .min-w-xl-300px {
    min-width: 300px !important; }
  .w-xl-350px {
    width: 350px !important; }
  .max-w-xl-350px {
    max-width: 350px !important; }
  .min-w-xl-350px {
    min-width: 350px !important; }
  .w-xl-400px {
    width: 400px !important; }
  .max-w-xl-400px {
    max-width: 400px !important; }
  .min-w-xl-400px {
    min-width: 400px !important; }
  .w-xl-450px {
    width: 450px !important; }
  .max-w-xl-450px {
    max-width: 450px !important; }
  .min-w-xl-450px {
    min-width: 450px !important; }
  .w-xl-475px {
    width: 475px !important; }
  .max-w-xl-475px {
    max-width: 475px !important; }
  .min-w-xl-475px {
    min-width: 475px !important; }
  .w-xl-500px {
    width: 500px !important; }
  .max-w-xl-500px {
    max-width: 500px !important; }
  .min-w-xl-500px {
    min-width: 500px !important; }
  .w-xl-600px {
    width: 600px !important; }
  .max-w-xl-600px {
    max-width: 600px !important; }
  .min-w-xl-600px {
    min-width: 600px !important; }
  .w-xl-650px {
    width: 650px !important; }
  .max-w-xl-650px {
    max-width: 650px !important; }
  .min-w-xl-650px {
    min-width: 650px !important; }
  .w-xl-700px {
    width: 700px !important; }
  .max-w-xl-700px {
    max-width: 700px !important; }
  .min-w-xl-700px {
    min-width: 700px !important; }
  .w-xl-3r {
    width: 3rem !important; }
  .max-w-xl-3r {
    max-width: 3rem !important; }
  .min-w-xl-3r {
    min-width: 3rem !important; }
  .w-xl-4r {
    width: 4rem !important; }
  .max-w-xl-4r {
    max-width: 4rem !important; }
  .min-w-xl-4r {
    min-width: 4rem !important; }
  .h-xl-25 {
    height: 25% !important; }
  .max-h-xl-25 {
    max-height: 25% !important; }
  .min-h-xl-25 {
    min-height: 25% !important; }
  .h-xl-50 {
    height: 50% !important; }
  .max-h-xl-50 {
    max-height: 50% !important; }
  .min-h-xl-50 {
    min-height: 50% !important; }
  .h-xl-75 {
    height: 75% !important; }
  .max-h-xl-75 {
    max-height: 75% !important; }
  .min-h-xl-75 {
    min-height: 75% !important; }
  .h-xl-100 {
    height: 100% !important; }
  .max-h-xl-100 {
    max-height: 100% !important; }
  .min-h-xl-100 {
    min-height: 100% !important; }
  .h-xl-auto {
    height: auto !important; }
  .max-h-xl-auto {
    max-height: auto !important; }
  .min-h-xl-auto {
    min-height: auto !important; }
  .h-xl-1 r {
    height: 1rem !important; }
  .max-h-xl-1 r {
    max-height: 1rem !important; }
  .min-h-xl-1 r {
    min-height: 1rem !important; }
  .h-xl-5 {
    height: 5% !important; }
  .max-h-xl-5 {
    max-height: 5% !important; }
  .min-h-xl-5 {
    min-height: 5% !important; }
  .h-xl-10 {
    height: 10% !important; }
  .max-h-xl-10 {
    max-height: 10% !important; }
  .min-h-xl-10 {
    min-height: 10% !important; }
  .h-xl-15 {
    height: 15% !important; }
  .max-h-xl-15 {
    max-height: 15% !important; }
  .min-h-xl-15 {
    min-height: 15% !important; }
  .h-xl-20 {
    height: 20% !important; }
  .max-h-xl-20 {
    max-height: 20% !important; }
  .min-h-xl-20 {
    min-height: 20% !important; }
  .h-xl-30 {
    height: 30% !important; }
  .max-h-xl-30 {
    max-height: 30% !important; }
  .min-h-xl-30 {
    min-height: 30% !important; }
  .h-xl-35 {
    height: 35% !important; }
  .max-h-xl-35 {
    max-height: 35% !important; }
  .min-h-xl-35 {
    min-height: 35% !important; }
  .h-xl-40 {
    height: 40% !important; }
  .max-h-xl-40 {
    max-height: 40% !important; }
  .min-h-xl-40 {
    min-height: 40% !important; }
  .h-xl-45 {
    height: 45% !important; }
  .max-h-xl-45 {
    max-height: 45% !important; }
  .min-h-xl-45 {
    min-height: 45% !important; }
  .h-xl-55 {
    height: 55% !important; }
  .max-h-xl-55 {
    max-height: 55% !important; }
  .min-h-xl-55 {
    min-height: 55% !important; }
  .h-xl-60 {
    height: 60% !important; }
  .max-h-xl-60 {
    max-height: 60% !important; }
  .min-h-xl-60 {
    min-height: 60% !important; }
  .h-xl-65 {
    height: 65% !important; }
  .max-h-xl-65 {
    max-height: 65% !important; }
  .min-h-xl-65 {
    min-height: 65% !important; }
  .h-xl-70 {
    height: 70% !important; }
  .max-h-xl-70 {
    max-height: 70% !important; }
  .min-h-xl-70 {
    min-height: 70% !important; }
  .h-xl-80 {
    height: 80% !important; }
  .max-h-xl-80 {
    max-height: 80% !important; }
  .min-h-xl-80 {
    min-height: 80% !important; }
  .h-xl-85 {
    height: 85% !important; }
  .max-h-xl-85 {
    max-height: 85% !important; }
  .min-h-xl-85 {
    min-height: 85% !important; }
  .h-xl-90 {
    height: 90% !important; }
  .max-h-xl-90 {
    max-height: 90% !important; }
  .min-h-xl-90 {
    min-height: 90% !important; }
  .h-xl-95 {
    height: 95% !important; }
  .max-h-xl-95 {
    max-height: 95% !important; }
  .min-h-xl-95 {
    min-height: 95% !important; }
  .h-xl-15px {
    height: 15px !important; }
  .max-h-xl-15px {
    max-height: 15px !important; }
  .min-h-xl-15px {
    min-height: 15px !important; }
  .h-xl-25px {
    height: 25px !important; }
  .max-h-xl-25px {
    max-height: 25px !important; }
  .min-h-xl-25px {
    min-height: 25px !important; }
  .h-xl-32px {
    height: 32px !important; }
  .max-h-xl-32px {
    max-height: 32px !important; }
  .min-h-xl-32px {
    min-height: 32px !important; }
  .h-xl-35px {
    height: 35px !important; }
  .max-h-xl-35px {
    max-height: 35px !important; }
  .min-h-xl-35px {
    min-height: 35px !important; }
  .h-xl-50px {
    height: 50px !important; }
  .max-h-xl-50px {
    max-height: 50px !important; }
  .min-h-xl-50px {
    min-height: 50px !important; }
  .h-xl-75px {
    height: 75px !important; }
  .max-h-xl-75px {
    max-height: 75px !important; }
  .min-h-xl-75px {
    min-height: 75px !important; }
  .h-xl-100px {
    height: 100px !important; }
  .max-h-xl-100px {
    max-height: 100px !important; }
  .min-h-xl-100px {
    min-height: 100px !important; }
  .h-xl-150px {
    height: 150px !important; }
  .max-h-xl-150px {
    max-height: 150px !important; }
  .min-h-xl-150px {
    min-height: 150px !important; }
  .h-xl-200px {
    height: 200px !important; }
  .max-h-xl-200px {
    max-height: 200px !important; }
  .min-h-xl-200px {
    min-height: 200px !important; }
  .h-xl-230px {
    height: 230px !important; }
  .max-h-xl-230px {
    max-height: 230px !important; }
  .min-h-xl-230px {
    min-height: 230px !important; }
  .h-xl-250px {
    height: 250px !important; }
  .max-h-xl-250px {
    max-height: 250px !important; }
  .min-h-xl-250px {
    min-height: 250px !important; }
  .h-xl-275px {
    height: 275px !important; }
  .max-h-xl-275px {
    max-height: 275px !important; }
  .min-h-xl-275px {
    min-height: 275px !important; }
  .h-xl-300px {
    height: 300px !important; }
  .max-h-xl-300px {
    max-height: 300px !important; }
  .min-h-xl-300px {
    min-height: 300px !important; }
  .h-xl-350px {
    height: 350px !important; }
  .max-h-xl-350px {
    max-height: 350px !important; }
  .min-h-xl-350px {
    min-height: 350px !important; }
  .h-xl-400px {
    height: 400px !important; }
  .max-h-xl-400px {
    max-height: 400px !important; }
  .min-h-xl-400px {
    min-height: 400px !important; }
  .h-xl-450px {
    height: 450px !important; }
  .max-h-xl-450px {
    max-height: 450px !important; }
  .min-h-xl-450px {
    min-height: 450px !important; }
  .h-xl-475px {
    height: 475px !important; }
  .max-h-xl-475px {
    max-height: 475px !important; }
  .min-h-xl-475px {
    min-height: 475px !important; }
  .h-xl-500px {
    height: 500px !important; }
  .max-h-xl-500px {
    max-height: 500px !important; }
  .min-h-xl-500px {
    min-height: 500px !important; }
  .h-xl-600px {
    height: 600px !important; }
  .max-h-xl-600px {
    max-height: 600px !important; }
  .min-h-xl-600px {
    min-height: 600px !important; }
  .h-xl-650px {
    height: 650px !important; }
  .max-h-xl-650px {
    max-height: 650px !important; }
  .min-h-xl-650px {
    min-height: 650px !important; }
  .h-xl-700px {
    height: 700px !important; }
  .max-h-xl-700px {
    max-height: 700px !important; }
  .min-h-xl-700px {
    min-height: 700px !important; }
  .h-xl-3r {
    height: 3rem !important; }
  .max-h-xl-3r {
    max-height: 3rem !important; }
  .min-h-xl-3r {
    min-height: 3rem !important; }
  .h-xl-4r {
    height: 4rem !important; }
  .max-h-xl-4r {
    max-height: 4rem !important; }
  .min-h-xl-4r {
    min-height: 4rem !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; }

.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; } }

.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; }

.a-unset {
  top: unset !important;
  bottom: unset !important;
  left: unset !important;
  right: unset !important; }

.a-0 {
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important; }

.at-0,
.ay-0 {
  top: 0 !important; }

.ar-0,
.ax-0 {
  right: 0 !important; }

.ab-0,
.ay-0 {
  bottom: 0 !important; }

.al-0,
.ax-0 {
  left: 0 !important; }

.a-1 {
  top: 0.25rem !important;
  bottom: 0.25rem !important;
  left: 0.25rem !important;
  right: 0.25rem !important; }

.at-1,
.ay-1 {
  top: 0.25rem !important; }

.ar-1,
.ax-1 {
  right: 0.25rem !important; }

.ab-1,
.ay-1 {
  bottom: 0.25rem !important; }

.al-1,
.ax-1 {
  left: 0.25rem !important; }

.a-2 {
  top: 0.5rem !important;
  bottom: 0.5rem !important;
  left: 0.5rem !important;
  right: 0.5rem !important; }

.at-2,
.ay-2 {
  top: 0.5rem !important; }

.ar-2,
.ax-2 {
  right: 0.5rem !important; }

.ab-2,
.ay-2 {
  bottom: 0.5rem !important; }

.al-2,
.ax-2 {
  left: 0.5rem !important; }

.a-3 {
  top: 1rem !important;
  bottom: 1rem !important;
  left: 1rem !important;
  right: 1rem !important; }

.at-3,
.ay-3 {
  top: 1rem !important; }

.ar-3,
.ax-3 {
  right: 1rem !important; }

.ab-3,
.ay-3 {
  bottom: 1rem !important; }

.al-3,
.ax-3 {
  left: 1rem !important; }

.a-4 {
  top: 1.5rem !important;
  bottom: 1.5rem !important;
  left: 1.5rem !important;
  right: 1.5rem !important; }

.at-4,
.ay-4 {
  top: 1.5rem !important; }

.ar-4,
.ax-4 {
  right: 1.5rem !important; }

.ab-4,
.ay-4 {
  bottom: 1.5rem !important; }

.al-4,
.ax-4 {
  left: 1.5rem !important; }

.a-5 {
  top: 3rem !important;
  bottom: 3rem !important;
  left: 3rem !important;
  right: 3rem !important; }

.at-5,
.ay-5 {
  top: 3rem !important; }

.ar-5,
.ax-5 {
  right: 3rem !important; }

.ab-5,
.ay-5 {
  bottom: 3rem !important; }

.al-5,
.ax-5 {
  left: 3rem !important; }

.a-4-5 {
  top: 4.5rem !important;
  bottom: 4.5rem !important;
  left: 4.5rem !important;
  right: 4.5rem !important; }

.at-4-5,
.ay-4-5 {
  top: 4.5rem !important; }

.ar-4-5,
.ax-4-5 {
  right: 4.5rem !important; }

.ab-4-5,
.ay-4-5 {
  bottom: 4.5rem !important; }

.al-4-5,
.ax-4-5 {
  left: 4.5rem !important; }

.a-5-5 {
  top: 4rem !important;
  bottom: 4rem !important;
  left: 4rem !important;
  right: 4rem !important; }

.at-5-5,
.ay-5-5 {
  top: 4rem !important; }

.ar-5-5,
.ax-5-5 {
  right: 4rem !important; }

.ab-5-5,
.ay-5-5 {
  bottom: 4rem !important; }

.al-5-5,
.ax-5-5 {
  left: 4rem !important; }

.a-6 {
  top: 6rem !important;
  bottom: 6rem !important;
  left: 6rem !important;
  right: 6rem !important; }

.at-6,
.ay-6 {
  top: 6rem !important; }

.ar-6,
.ax-6 {
  right: 6rem !important; }

.ab-6,
.ay-6 {
  bottom: 6rem !important; }

.al-6,
.ax-6 {
  left: 6rem !important; }

.a-7 {
  top: 7rem !important;
  bottom: 7rem !important;
  left: 7rem !important;
  right: 7rem !important; }

.at-7,
.ay-7 {
  top: 7rem !important; }

.ar-7,
.ax-7 {
  right: 7rem !important; }

.ab-7,
.ay-7 {
  bottom: 7rem !important; }

.al-7,
.ax-7 {
  left: 7rem !important; }

.a-8 {
  top: 8rem !important;
  bottom: 8rem !important;
  left: 8rem !important;
  right: 8rem !important; }

.at-8,
.ay-8 {
  top: 8rem !important; }

.ar-8,
.ax-8 {
  right: 8rem !important; }

.ab-8,
.ay-8 {
  bottom: 8rem !important; }

.al-8,
.ax-8 {
  left: 8rem !important; }

.a-9 {
  top: 9rem !important;
  bottom: 9rem !important;
  left: 9rem !important;
  right: 9rem !important; }

.at-9,
.ay-9 {
  top: 9rem !important; }

.ar-9,
.ax-9 {
  right: 9rem !important; }

.ab-9,
.ay-9 {
  bottom: 9rem !important; }

.al-9,
.ax-9 {
  left: 9rem !important; }

.a-10 {
  top: 10rem !important;
  bottom: 10rem !important;
  left: 10rem !important;
  right: 10rem !important; }

.at-10,
.ay-10 {
  top: 10rem !important; }

.ar-10,
.ax-10 {
  right: 10rem !important; }

.ab-10,
.ay-10 {
  bottom: 10rem !important; }

.al-10,
.ax-10 {
  left: 10rem !important; }

.a-15 {
  top: 15rem !important;
  bottom: 15rem !important;
  left: 15rem !important;
  right: 15rem !important; }

.at-15,
.ay-15 {
  top: 15rem !important; }

.ar-15,
.ax-15 {
  right: 15rem !important; }

.ab-15,
.ay-15 {
  bottom: 15rem !important; }

.al-15,
.ax-15 {
  left: 15rem !important; }

.a-20 {
  top: 20rem !important;
  bottom: 20rem !important;
  left: 20rem !important;
  right: 20rem !important; }

.at-20,
.ay-20 {
  top: 20rem !important; }

.ar-20,
.ax-20 {
  right: 20rem !important; }

.ab-20,
.ay-20 {
  bottom: 20rem !important; }

.al-20,
.ax-20 {
  left: 20rem !important; }

.a-25 {
  top: 25rem !important;
  bottom: 25rem !important;
  left: 25rem !important;
  right: 25rem !important; }

.at-25,
.ay-25 {
  top: 25rem !important; }

.ar-25,
.ax-25 {
  right: 25rem !important; }

.ab-25,
.ay-25 {
  bottom: 25rem !important; }

.al-25,
.ax-25 {
  left: 25rem !important; }

.a-10p {
  top: 10% !important;
  bottom: 10% !important;
  left: 10% !important;
  right: 10% !important; }

.at-10p,
.ay-10p {
  top: 10% !important; }

.ar-10p,
.ax-10p {
  right: 10% !important; }

.ab-10p,
.ay-10p {
  bottom: 10% !important; }

.al-10p,
.ax-10p {
  left: 10% !important; }

.a-15p {
  top: 15% !important;
  bottom: 15% !important;
  left: 15% !important;
  right: 15% !important; }

.at-15p,
.ay-15p {
  top: 15% !important; }

.ar-15p,
.ax-15p {
  right: 15% !important; }

.ab-15p,
.ay-15p {
  bottom: 15% !important; }

.al-15p,
.ax-15p {
  left: 15% !important; }

.a-20p {
  top: 20% !important;
  bottom: 20% !important;
  left: 20% !important;
  right: 20% !important; }

.at-20p,
.ay-20p {
  top: 20% !important; }

.ar-20p,
.ax-20p {
  right: 20% !important; }

.ab-20p,
.ay-20p {
  bottom: 20% !important; }

.al-20p,
.ax-20p {
  left: 20% !important; }

.a-25p {
  top: 25% !important;
  bottom: 25% !important;
  left: 25% !important;
  right: 25% !important; }

.at-25p,
.ay-25p {
  top: 25% !important; }

.ar-25p,
.ax-25p {
  right: 25% !important; }

.ab-25p,
.ay-25p {
  bottom: 25% !important; }

.al-25p,
.ax-25p {
  left: 25% !important; }

.a-30p {
  top: 30% !important;
  bottom: 30% !important;
  left: 30% !important;
  right: 30% !important; }

.at-30p,
.ay-30p {
  top: 30% !important; }

.ar-30p,
.ax-30p {
  right: 30% !important; }

.ab-30p,
.ay-30p {
  bottom: 30% !important; }

.al-30p,
.ax-30p {
  left: 30% !important; }

.a-40p {
  top: 40% !important;
  bottom: 40% !important;
  left: 40% !important;
  right: 40% !important; }

.at-40p,
.ay-40p {
  top: 40% !important; }

.ar-40p,
.ax-40p {
  right: 40% !important; }

.ab-40p,
.ay-40p {
  bottom: 40% !important; }

.al-40p,
.ax-40p {
  left: 40% !important; }

.a-50p {
  top: 50% !important;
  bottom: 50% !important;
  left: 50% !important;
  right: 50% !important; }

.at-50p,
.ay-50p {
  top: 50% !important; }

.ar-50p,
.ax-50p {
  right: 50% !important; }

.ab-50p,
.ay-50p {
  bottom: 50% !important; }

.al-50p,
.ax-50p {
  left: 50% !important; }

.a-60p {
  top: 60% !important;
  bottom: 60% !important;
  left: 60% !important;
  right: 60% !important; }

.at-60p,
.ay-60p {
  top: 60% !important; }

.ar-60p,
.ax-60p {
  right: 60% !important; }

.ab-60p,
.ay-60p {
  bottom: 60% !important; }

.al-60p,
.ax-60p {
  left: 60% !important; }

.a-n1 {
  top: -0.25rem !important;
  bottom: -0.25rem !important;
  left: -0.25rem !important;
  right: -0.25rem !important; }

.at-n1,
.ay-n1 {
  top: -0.25rem !important; }

.ar-n1,
.ax-n1 {
  right: -0.25rem !important; }

.ab-n1,
.ay-n1 {
  bottom: -0.25rem !important; }

.al-n1,
.ax-n1 {
  left: -0.25rem !important; }

.a-n2 {
  top: -0.5rem !important;
  bottom: -0.5rem !important;
  left: -0.5rem !important;
  right: -0.5rem !important; }

.at-n2,
.ay-n2 {
  top: -0.5rem !important; }

.ar-n2,
.ax-n2 {
  right: -0.5rem !important; }

.ab-n2,
.ay-n2 {
  bottom: -0.5rem !important; }

.al-n2,
.ax-n2 {
  left: -0.5rem !important; }

.a-n3 {
  top: -1rem !important;
  bottom: -1rem !important;
  left: -1rem !important;
  right: -1rem !important; }

.at-n3,
.ay-n3 {
  top: -1rem !important; }

.ar-n3,
.ax-n3 {
  right: -1rem !important; }

.ab-n3,
.ay-n3 {
  bottom: -1rem !important; }

.al-n3,
.ax-n3 {
  left: -1rem !important; }

.a-n4 {
  top: -1.5rem !important;
  bottom: -1.5rem !important;
  left: -1.5rem !important;
  right: -1.5rem !important; }

.at-n4,
.ay-n4 {
  top: -1.5rem !important; }

.ar-n4,
.ax-n4 {
  right: -1.5rem !important; }

.ab-n4,
.ay-n4 {
  bottom: -1.5rem !important; }

.al-n4,
.ax-n4 {
  left: -1.5rem !important; }

.a-n5 {
  top: -3rem !important;
  bottom: -3rem !important;
  left: -3rem !important;
  right: -3rem !important; }

.at-n5,
.ay-n5 {
  top: -3rem !important; }

.ar-n5,
.ax-n5 {
  right: -3rem !important; }

.ab-n5,
.ay-n5 {
  bottom: -3rem !important; }

.al-n5,
.ax-n5 {
  left: -3rem !important; }

.a-n4-5 {
  top: -4.5rem !important;
  bottom: -4.5rem !important;
  left: -4.5rem !important;
  right: -4.5rem !important; }

.at-n4-5,
.ay-n4-5 {
  top: -4.5rem !important; }

.ar-n4-5,
.ax-n4-5 {
  right: -4.5rem !important; }

.ab-n4-5,
.ay-n4-5 {
  bottom: -4.5rem !important; }

.al-n4-5,
.ax-n4-5 {
  left: -4.5rem !important; }

.a-n5-5 {
  top: -4rem !important;
  bottom: -4rem !important;
  left: -4rem !important;
  right: -4rem !important; }

.at-n5-5,
.ay-n5-5 {
  top: -4rem !important; }

.ar-n5-5,
.ax-n5-5 {
  right: -4rem !important; }

.ab-n5-5,
.ay-n5-5 {
  bottom: -4rem !important; }

.al-n5-5,
.ax-n5-5 {
  left: -4rem !important; }

.a-n6 {
  top: -6rem !important;
  bottom: -6rem !important;
  left: -6rem !important;
  right: -6rem !important; }

.at-n6,
.ay-n6 {
  top: -6rem !important; }

.ar-n6,
.ax-n6 {
  right: -6rem !important; }

.ab-n6,
.ay-n6 {
  bottom: -6rem !important; }

.al-n6,
.ax-n6 {
  left: -6rem !important; }

.a-n7 {
  top: -7rem !important;
  bottom: -7rem !important;
  left: -7rem !important;
  right: -7rem !important; }

.at-n7,
.ay-n7 {
  top: -7rem !important; }

.ar-n7,
.ax-n7 {
  right: -7rem !important; }

.ab-n7,
.ay-n7 {
  bottom: -7rem !important; }

.al-n7,
.ax-n7 {
  left: -7rem !important; }

.a-n8 {
  top: -8rem !important;
  bottom: -8rem !important;
  left: -8rem !important;
  right: -8rem !important; }

.at-n8,
.ay-n8 {
  top: -8rem !important; }

.ar-n8,
.ax-n8 {
  right: -8rem !important; }

.ab-n8,
.ay-n8 {
  bottom: -8rem !important; }

.al-n8,
.ax-n8 {
  left: -8rem !important; }

.a-n9 {
  top: -9rem !important;
  bottom: -9rem !important;
  left: -9rem !important;
  right: -9rem !important; }

.at-n9,
.ay-n9 {
  top: -9rem !important; }

.ar-n9,
.ax-n9 {
  right: -9rem !important; }

.ab-n9,
.ay-n9 {
  bottom: -9rem !important; }

.al-n9,
.ax-n9 {
  left: -9rem !important; }

.a-n10 {
  top: -10rem !important;
  bottom: -10rem !important;
  left: -10rem !important;
  right: -10rem !important; }

.at-n10,
.ay-n10 {
  top: -10rem !important; }

.ar-n10,
.ax-n10 {
  right: -10rem !important; }

.ab-n10,
.ay-n10 {
  bottom: -10rem !important; }

.al-n10,
.ax-n10 {
  left: -10rem !important; }

.a-n15 {
  top: -15rem !important;
  bottom: -15rem !important;
  left: -15rem !important;
  right: -15rem !important; }

.at-n15,
.ay-n15 {
  top: -15rem !important; }

.ar-n15,
.ax-n15 {
  right: -15rem !important; }

.ab-n15,
.ay-n15 {
  bottom: -15rem !important; }

.al-n15,
.ax-n15 {
  left: -15rem !important; }

.a-n20 {
  top: -20rem !important;
  bottom: -20rem !important;
  left: -20rem !important;
  right: -20rem !important; }

.at-n20,
.ay-n20 {
  top: -20rem !important; }

.ar-n20,
.ax-n20 {
  right: -20rem !important; }

.ab-n20,
.ay-n20 {
  bottom: -20rem !important; }

.al-n20,
.ax-n20 {
  left: -20rem !important; }

.a-n25 {
  top: -25rem !important;
  bottom: -25rem !important;
  left: -25rem !important;
  right: -25rem !important; }

.at-n25,
.ay-n25 {
  top: -25rem !important; }

.ar-n25,
.ax-n25 {
  right: -25rem !important; }

.ab-n25,
.ay-n25 {
  bottom: -25rem !important; }

.al-n25,
.ax-n25 {
  left: -25rem !important; }

.a-n10p {
  top: -10% !important;
  bottom: -10% !important;
  left: -10% !important;
  right: -10% !important; }

.at-n10p,
.ay-n10p {
  top: -10% !important; }

.ar-n10p,
.ax-n10p {
  right: -10% !important; }

.ab-n10p,
.ay-n10p {
  bottom: -10% !important; }

.al-n10p,
.ax-n10p {
  left: -10% !important; }

.a-n15p {
  top: -15% !important;
  bottom: -15% !important;
  left: -15% !important;
  right: -15% !important; }

.at-n15p,
.ay-n15p {
  top: -15% !important; }

.ar-n15p,
.ax-n15p {
  right: -15% !important; }

.ab-n15p,
.ay-n15p {
  bottom: -15% !important; }

.al-n15p,
.ax-n15p {
  left: -15% !important; }

.a-n20p {
  top: -20% !important;
  bottom: -20% !important;
  left: -20% !important;
  right: -20% !important; }

.at-n20p,
.ay-n20p {
  top: -20% !important; }

.ar-n20p,
.ax-n20p {
  right: -20% !important; }

.ab-n20p,
.ay-n20p {
  bottom: -20% !important; }

.al-n20p,
.ax-n20p {
  left: -20% !important; }

.a-n25p {
  top: -25% !important;
  bottom: -25% !important;
  left: -25% !important;
  right: -25% !important; }

.at-n25p,
.ay-n25p {
  top: -25% !important; }

.ar-n25p,
.ax-n25p {
  right: -25% !important; }

.ab-n25p,
.ay-n25p {
  bottom: -25% !important; }

.al-n25p,
.ax-n25p {
  left: -25% !important; }

.a-n30p {
  top: -30% !important;
  bottom: -30% !important;
  left: -30% !important;
  right: -30% !important; }

.at-n30p,
.ay-n30p {
  top: -30% !important; }

.ar-n30p,
.ax-n30p {
  right: -30% !important; }

.ab-n30p,
.ay-n30p {
  bottom: -30% !important; }

.al-n30p,
.ax-n30p {
  left: -30% !important; }

.a-n40p {
  top: -40% !important;
  bottom: -40% !important;
  left: -40% !important;
  right: -40% !important; }

.at-n40p,
.ay-n40p {
  top: -40% !important; }

.ar-n40p,
.ax-n40p {
  right: -40% !important; }

.ab-n40p,
.ay-n40p {
  bottom: -40% !important; }

.al-n40p,
.ax-n40p {
  left: -40% !important; }

.a-n50p {
  top: -50% !important;
  bottom: -50% !important;
  left: -50% !important;
  right: -50% !important; }

.at-n50p,
.ay-n50p {
  top: -50% !important; }

.ar-n50p,
.ax-n50p {
  right: -50% !important; }

.ab-n50p,
.ay-n50p {
  bottom: -50% !important; }

.al-n50p,
.ax-n50p {
  left: -50% !important; }

.a-n60p {
  top: -60% !important;
  bottom: -60% !important;
  left: -60% !important;
  right: -60% !important; }

.at-n60p,
.ay-n60p {
  top: -60% !important; }

.ar-n60p,
.ax-n60p {
  right: -60% !important; }

.ab-n60p,
.ay-n60p {
  bottom: -60% !important; }

.al-n60p,
.ax-n60p {
  left: -60% !important; }

.a-auto {
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important; }

.at-auto,
.ay-auto {
  top: auto !important; }

.ar-auto,
.ax-auto {
  right: auto !important; }

.ab-auto,
.ay-auto {
  bottom: auto !important; }

.al-auto,
.ax-auto {
  left: auto !important; }

.al-30 {
  left: 30% !important; }

@media (min-width: 576px) {
  .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; }
  .a-sm-unset {
    top: unset !important;
    bottom: unset !important;
    left: unset !important;
    right: unset !important; }
  .a-sm-0 {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important; }
  .at-sm-0,
  .ay-sm-0 {
    top: 0 !important; }
  .ar-sm-0,
  .ax-sm-0 {
    right: 0 !important; }
  .ab-sm-0,
  .ay-sm-0 {
    bottom: 0 !important; }
  .al-sm-0,
  .ax-sm-0 {
    left: 0 !important; }
  .a-sm-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
    right: 0.25rem !important; }
  .at-sm-1,
  .ay-sm-1 {
    top: 0.25rem !important; }
  .ar-sm-1,
  .ax-sm-1 {
    right: 0.25rem !important; }
  .ab-sm-1,
  .ay-sm-1 {
    bottom: 0.25rem !important; }
  .al-sm-1,
  .ax-sm-1 {
    left: 0.25rem !important; }
  .a-sm-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
    right: 0.5rem !important; }
  .at-sm-2,
  .ay-sm-2 {
    top: 0.5rem !important; }
  .ar-sm-2,
  .ax-sm-2 {
    right: 0.5rem !important; }
  .ab-sm-2,
  .ay-sm-2 {
    bottom: 0.5rem !important; }
  .al-sm-2,
  .ax-sm-2 {
    left: 0.5rem !important; }
  .a-sm-3 {
    top: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
    right: 1rem !important; }
  .at-sm-3,
  .ay-sm-3 {
    top: 1rem !important; }
  .ar-sm-3,
  .ax-sm-3 {
    right: 1rem !important; }
  .ab-sm-3,
  .ay-sm-3 {
    bottom: 1rem !important; }
  .al-sm-3,
  .ax-sm-3 {
    left: 1rem !important; }
  .a-sm-4 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
    right: 1.5rem !important; }
  .at-sm-4,
  .ay-sm-4 {
    top: 1.5rem !important; }
  .ar-sm-4,
  .ax-sm-4 {
    right: 1.5rem !important; }
  .ab-sm-4,
  .ay-sm-4 {
    bottom: 1.5rem !important; }
  .al-sm-4,
  .ax-sm-4 {
    left: 1.5rem !important; }
  .a-sm-5 {
    top: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
    right: 3rem !important; }
  .at-sm-5,
  .ay-sm-5 {
    top: 3rem !important; }
  .ar-sm-5,
  .ax-sm-5 {
    right: 3rem !important; }
  .ab-sm-5,
  .ay-sm-5 {
    bottom: 3rem !important; }
  .al-sm-5,
  .ax-sm-5 {
    left: 3rem !important; }
  .a-sm-4-5 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
    right: 4.5rem !important; }
  .at-sm-4-5,
  .ay-sm-4-5 {
    top: 4.5rem !important; }
  .ar-sm-4-5,
  .ax-sm-4-5 {
    right: 4.5rem !important; }
  .ab-sm-4-5,
  .ay-sm-4-5 {
    bottom: 4.5rem !important; }
  .al-sm-4-5,
  .ax-sm-4-5 {
    left: 4.5rem !important; }
  .a-sm-5-5 {
    top: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
    right: 4rem !important; }
  .at-sm-5-5,
  .ay-sm-5-5 {
    top: 4rem !important; }
  .ar-sm-5-5,
  .ax-sm-5-5 {
    right: 4rem !important; }
  .ab-sm-5-5,
  .ay-sm-5-5 {
    bottom: 4rem !important; }
  .al-sm-5-5,
  .ax-sm-5-5 {
    left: 4rem !important; }
  .a-sm-6 {
    top: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
    right: 6rem !important; }
  .at-sm-6,
  .ay-sm-6 {
    top: 6rem !important; }
  .ar-sm-6,
  .ax-sm-6 {
    right: 6rem !important; }
  .ab-sm-6,
  .ay-sm-6 {
    bottom: 6rem !important; }
  .al-sm-6,
  .ax-sm-6 {
    left: 6rem !important; }
  .a-sm-7 {
    top: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
    right: 7rem !important; }
  .at-sm-7,
  .ay-sm-7 {
    top: 7rem !important; }
  .ar-sm-7,
  .ax-sm-7 {
    right: 7rem !important; }
  .ab-sm-7,
  .ay-sm-7 {
    bottom: 7rem !important; }
  .al-sm-7,
  .ax-sm-7 {
    left: 7rem !important; }
  .a-sm-8 {
    top: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
    right: 8rem !important; }
  .at-sm-8,
  .ay-sm-8 {
    top: 8rem !important; }
  .ar-sm-8,
  .ax-sm-8 {
    right: 8rem !important; }
  .ab-sm-8,
  .ay-sm-8 {
    bottom: 8rem !important; }
  .al-sm-8,
  .ax-sm-8 {
    left: 8rem !important; }
  .a-sm-9 {
    top: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
    right: 9rem !important; }
  .at-sm-9,
  .ay-sm-9 {
    top: 9rem !important; }
  .ar-sm-9,
  .ax-sm-9 {
    right: 9rem !important; }
  .ab-sm-9,
  .ay-sm-9 {
    bottom: 9rem !important; }
  .al-sm-9,
  .ax-sm-9 {
    left: 9rem !important; }
  .a-sm-10 {
    top: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
    right: 10rem !important; }
  .at-sm-10,
  .ay-sm-10 {
    top: 10rem !important; }
  .ar-sm-10,
  .ax-sm-10 {
    right: 10rem !important; }
  .ab-sm-10,
  .ay-sm-10 {
    bottom: 10rem !important; }
  .al-sm-10,
  .ax-sm-10 {
    left: 10rem !important; }
  .a-sm-15 {
    top: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
    right: 15rem !important; }
  .at-sm-15,
  .ay-sm-15 {
    top: 15rem !important; }
  .ar-sm-15,
  .ax-sm-15 {
    right: 15rem !important; }
  .ab-sm-15,
  .ay-sm-15 {
    bottom: 15rem !important; }
  .al-sm-15,
  .ax-sm-15 {
    left: 15rem !important; }
  .a-sm-20 {
    top: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
    right: 20rem !important; }
  .at-sm-20,
  .ay-sm-20 {
    top: 20rem !important; }
  .ar-sm-20,
  .ax-sm-20 {
    right: 20rem !important; }
  .ab-sm-20,
  .ay-sm-20 {
    bottom: 20rem !important; }
  .al-sm-20,
  .ax-sm-20 {
    left: 20rem !important; }
  .a-sm-25 {
    top: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
    right: 25rem !important; }
  .at-sm-25,
  .ay-sm-25 {
    top: 25rem !important; }
  .ar-sm-25,
  .ax-sm-25 {
    right: 25rem !important; }
  .ab-sm-25,
  .ay-sm-25 {
    bottom: 25rem !important; }
  .al-sm-25,
  .ax-sm-25 {
    left: 25rem !important; }
  .a-sm-10p {
    top: 10% !important;
    bottom: 10% !important;
    left: 10% !important;
    right: 10% !important; }
  .at-sm-10p,
  .ay-sm-10p {
    top: 10% !important; }
  .ar-sm-10p,
  .ax-sm-10p {
    right: 10% !important; }
  .ab-sm-10p,
  .ay-sm-10p {
    bottom: 10% !important; }
  .al-sm-10p,
  .ax-sm-10p {
    left: 10% !important; }
  .a-sm-15p {
    top: 15% !important;
    bottom: 15% !important;
    left: 15% !important;
    right: 15% !important; }
  .at-sm-15p,
  .ay-sm-15p {
    top: 15% !important; }
  .ar-sm-15p,
  .ax-sm-15p {
    right: 15% !important; }
  .ab-sm-15p,
  .ay-sm-15p {
    bottom: 15% !important; }
  .al-sm-15p,
  .ax-sm-15p {
    left: 15% !important; }
  .a-sm-20p {
    top: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
    right: 20% !important; }
  .at-sm-20p,
  .ay-sm-20p {
    top: 20% !important; }
  .ar-sm-20p,
  .ax-sm-20p {
    right: 20% !important; }
  .ab-sm-20p,
  .ay-sm-20p {
    bottom: 20% !important; }
  .al-sm-20p,
  .ax-sm-20p {
    left: 20% !important; }
  .a-sm-25p {
    top: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
    right: 25% !important; }
  .at-sm-25p,
  .ay-sm-25p {
    top: 25% !important; }
  .ar-sm-25p,
  .ax-sm-25p {
    right: 25% !important; }
  .ab-sm-25p,
  .ay-sm-25p {
    bottom: 25% !important; }
  .al-sm-25p,
  .ax-sm-25p {
    left: 25% !important; }
  .a-sm-30p {
    top: 30% !important;
    bottom: 30% !important;
    left: 30% !important;
    right: 30% !important; }
  .at-sm-30p,
  .ay-sm-30p {
    top: 30% !important; }
  .ar-sm-30p,
  .ax-sm-30p {
    right: 30% !important; }
  .ab-sm-30p,
  .ay-sm-30p {
    bottom: 30% !important; }
  .al-sm-30p,
  .ax-sm-30p {
    left: 30% !important; }
  .a-sm-40p {
    top: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
    right: 40% !important; }
  .at-sm-40p,
  .ay-sm-40p {
    top: 40% !important; }
  .ar-sm-40p,
  .ax-sm-40p {
    right: 40% !important; }
  .ab-sm-40p,
  .ay-sm-40p {
    bottom: 40% !important; }
  .al-sm-40p,
  .ax-sm-40p {
    left: 40% !important; }
  .a-sm-50p {
    top: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
    right: 50% !important; }
  .at-sm-50p,
  .ay-sm-50p {
    top: 50% !important; }
  .ar-sm-50p,
  .ax-sm-50p {
    right: 50% !important; }
  .ab-sm-50p,
  .ay-sm-50p {
    bottom: 50% !important; }
  .al-sm-50p,
  .ax-sm-50p {
    left: 50% !important; }
  .a-sm-60p {
    top: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
    right: 60% !important; }
  .at-sm-60p,
  .ay-sm-60p {
    top: 60% !important; }
  .ar-sm-60p,
  .ax-sm-60p {
    right: 60% !important; }
  .ab-sm-60p,
  .ay-sm-60p {
    bottom: 60% !important; }
  .al-sm-60p,
  .ax-sm-60p {
    left: 60% !important; }
  .a-sm-n1 {
    top: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
    right: -0.25rem !important; }
  .at-sm-n1,
  .ay-sm-n1 {
    top: -0.25rem !important; }
  .ar-sm-n1,
  .ax-sm-n1 {
    right: -0.25rem !important; }
  .ab-sm-n1,
  .ay-sm-n1 {
    bottom: -0.25rem !important; }
  .al-sm-n1,
  .ax-sm-n1 {
    left: -0.25rem !important; }
  .a-sm-n2 {
    top: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
    right: -0.5rem !important; }
  .at-sm-n2,
  .ay-sm-n2 {
    top: -0.5rem !important; }
  .ar-sm-n2,
  .ax-sm-n2 {
    right: -0.5rem !important; }
  .ab-sm-n2,
  .ay-sm-n2 {
    bottom: -0.5rem !important; }
  .al-sm-n2,
  .ax-sm-n2 {
    left: -0.5rem !important; }
  .a-sm-n3 {
    top: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
    right: -1rem !important; }
  .at-sm-n3,
  .ay-sm-n3 {
    top: -1rem !important; }
  .ar-sm-n3,
  .ax-sm-n3 {
    right: -1rem !important; }
  .ab-sm-n3,
  .ay-sm-n3 {
    bottom: -1rem !important; }
  .al-sm-n3,
  .ax-sm-n3 {
    left: -1rem !important; }
  .a-sm-n4 {
    top: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
    right: -1.5rem !important; }
  .at-sm-n4,
  .ay-sm-n4 {
    top: -1.5rem !important; }
  .ar-sm-n4,
  .ax-sm-n4 {
    right: -1.5rem !important; }
  .ab-sm-n4,
  .ay-sm-n4 {
    bottom: -1.5rem !important; }
  .al-sm-n4,
  .ax-sm-n4 {
    left: -1.5rem !important; }
  .a-sm-n5 {
    top: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
    right: -3rem !important; }
  .at-sm-n5,
  .ay-sm-n5 {
    top: -3rem !important; }
  .ar-sm-n5,
  .ax-sm-n5 {
    right: -3rem !important; }
  .ab-sm-n5,
  .ay-sm-n5 {
    bottom: -3rem !important; }
  .al-sm-n5,
  .ax-sm-n5 {
    left: -3rem !important; }
  .a-sm-n4-5 {
    top: -4.5rem !important;
    bottom: -4.5rem !important;
    left: -4.5rem !important;
    right: -4.5rem !important; }
  .at-sm-n4-5,
  .ay-sm-n4-5 {
    top: -4.5rem !important; }
  .ar-sm-n4-5,
  .ax-sm-n4-5 {
    right: -4.5rem !important; }
  .ab-sm-n4-5,
  .ay-sm-n4-5 {
    bottom: -4.5rem !important; }
  .al-sm-n4-5,
  .ax-sm-n4-5 {
    left: -4.5rem !important; }
  .a-sm-n5-5 {
    top: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
    right: -4rem !important; }
  .at-sm-n5-5,
  .ay-sm-n5-5 {
    top: -4rem !important; }
  .ar-sm-n5-5,
  .ax-sm-n5-5 {
    right: -4rem !important; }
  .ab-sm-n5-5,
  .ay-sm-n5-5 {
    bottom: -4rem !important; }
  .al-sm-n5-5,
  .ax-sm-n5-5 {
    left: -4rem !important; }
  .a-sm-n6 {
    top: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
    right: -6rem !important; }
  .at-sm-n6,
  .ay-sm-n6 {
    top: -6rem !important; }
  .ar-sm-n6,
  .ax-sm-n6 {
    right: -6rem !important; }
  .ab-sm-n6,
  .ay-sm-n6 {
    bottom: -6rem !important; }
  .al-sm-n6,
  .ax-sm-n6 {
    left: -6rem !important; }
  .a-sm-n7 {
    top: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
    right: -7rem !important; }
  .at-sm-n7,
  .ay-sm-n7 {
    top: -7rem !important; }
  .ar-sm-n7,
  .ax-sm-n7 {
    right: -7rem !important; }
  .ab-sm-n7,
  .ay-sm-n7 {
    bottom: -7rem !important; }
  .al-sm-n7,
  .ax-sm-n7 {
    left: -7rem !important; }
  .a-sm-n8 {
    top: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
    right: -8rem !important; }
  .at-sm-n8,
  .ay-sm-n8 {
    top: -8rem !important; }
  .ar-sm-n8,
  .ax-sm-n8 {
    right: -8rem !important; }
  .ab-sm-n8,
  .ay-sm-n8 {
    bottom: -8rem !important; }
  .al-sm-n8,
  .ax-sm-n8 {
    left: -8rem !important; }
  .a-sm-n9 {
    top: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
    right: -9rem !important; }
  .at-sm-n9,
  .ay-sm-n9 {
    top: -9rem !important; }
  .ar-sm-n9,
  .ax-sm-n9 {
    right: -9rem !important; }
  .ab-sm-n9,
  .ay-sm-n9 {
    bottom: -9rem !important; }
  .al-sm-n9,
  .ax-sm-n9 {
    left: -9rem !important; }
  .a-sm-n10 {
    top: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
    right: -10rem !important; }
  .at-sm-n10,
  .ay-sm-n10 {
    top: -10rem !important; }
  .ar-sm-n10,
  .ax-sm-n10 {
    right: -10rem !important; }
  .ab-sm-n10,
  .ay-sm-n10 {
    bottom: -10rem !important; }
  .al-sm-n10,
  .ax-sm-n10 {
    left: -10rem !important; }
  .a-sm-n15 {
    top: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
    right: -15rem !important; }
  .at-sm-n15,
  .ay-sm-n15 {
    top: -15rem !important; }
  .ar-sm-n15,
  .ax-sm-n15 {
    right: -15rem !important; }
  .ab-sm-n15,
  .ay-sm-n15 {
    bottom: -15rem !important; }
  .al-sm-n15,
  .ax-sm-n15 {
    left: -15rem !important; }
  .a-sm-n20 {
    top: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
    right: -20rem !important; }
  .at-sm-n20,
  .ay-sm-n20 {
    top: -20rem !important; }
  .ar-sm-n20,
  .ax-sm-n20 {
    right: -20rem !important; }
  .ab-sm-n20,
  .ay-sm-n20 {
    bottom: -20rem !important; }
  .al-sm-n20,
  .ax-sm-n20 {
    left: -20rem !important; }
  .a-sm-n25 {
    top: -25rem !important;
    bottom: -25rem !important;
    left: -25rem !important;
    right: -25rem !important; }
  .at-sm-n25,
  .ay-sm-n25 {
    top: -25rem !important; }
  .ar-sm-n25,
  .ax-sm-n25 {
    right: -25rem !important; }
  .ab-sm-n25,
  .ay-sm-n25 {
    bottom: -25rem !important; }
  .al-sm-n25,
  .ax-sm-n25 {
    left: -25rem !important; }
  .a-sm-n10p {
    top: -10% !important;
    bottom: -10% !important;
    left: -10% !important;
    right: -10% !important; }
  .at-sm-n10p,
  .ay-sm-n10p {
    top: -10% !important; }
  .ar-sm-n10p,
  .ax-sm-n10p {
    right: -10% !important; }
  .ab-sm-n10p,
  .ay-sm-n10p {
    bottom: -10% !important; }
  .al-sm-n10p,
  .ax-sm-n10p {
    left: -10% !important; }
  .a-sm-n15p {
    top: -15% !important;
    bottom: -15% !important;
    left: -15% !important;
    right: -15% !important; }
  .at-sm-n15p,
  .ay-sm-n15p {
    top: -15% !important; }
  .ar-sm-n15p,
  .ax-sm-n15p {
    right: -15% !important; }
  .ab-sm-n15p,
  .ay-sm-n15p {
    bottom: -15% !important; }
  .al-sm-n15p,
  .ax-sm-n15p {
    left: -15% !important; }
  .a-sm-n20p {
    top: -20% !important;
    bottom: -20% !important;
    left: -20% !important;
    right: -20% !important; }
  .at-sm-n20p,
  .ay-sm-n20p {
    top: -20% !important; }
  .ar-sm-n20p,
  .ax-sm-n20p {
    right: -20% !important; }
  .ab-sm-n20p,
  .ay-sm-n20p {
    bottom: -20% !important; }
  .al-sm-n20p,
  .ax-sm-n20p {
    left: -20% !important; }
  .a-sm-n25p {
    top: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
    right: -25% !important; }
  .at-sm-n25p,
  .ay-sm-n25p {
    top: -25% !important; }
  .ar-sm-n25p,
  .ax-sm-n25p {
    right: -25% !important; }
  .ab-sm-n25p,
  .ay-sm-n25p {
    bottom: -25% !important; }
  .al-sm-n25p,
  .ax-sm-n25p {
    left: -25% !important; }
  .a-sm-n30p {
    top: -30% !important;
    bottom: -30% !important;
    left: -30% !important;
    right: -30% !important; }
  .at-sm-n30p,
  .ay-sm-n30p {
    top: -30% !important; }
  .ar-sm-n30p,
  .ax-sm-n30p {
    right: -30% !important; }
  .ab-sm-n30p,
  .ay-sm-n30p {
    bottom: -30% !important; }
  .al-sm-n30p,
  .ax-sm-n30p {
    left: -30% !important; }
  .a-sm-n40p {
    top: -40% !important;
    bottom: -40% !important;
    left: -40% !important;
    right: -40% !important; }
  .at-sm-n40p,
  .ay-sm-n40p {
    top: -40% !important; }
  .ar-sm-n40p,
  .ax-sm-n40p {
    right: -40% !important; }
  .ab-sm-n40p,
  .ay-sm-n40p {
    bottom: -40% !important; }
  .al-sm-n40p,
  .ax-sm-n40p {
    left: -40% !important; }
  .a-sm-n50p {
    top: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
    right: -50% !important; }
  .at-sm-n50p,
  .ay-sm-n50p {
    top: -50% !important; }
  .ar-sm-n50p,
  .ax-sm-n50p {
    right: -50% !important; }
  .ab-sm-n50p,
  .ay-sm-n50p {
    bottom: -50% !important; }
  .al-sm-n50p,
  .ax-sm-n50p {
    left: -50% !important; }
  .a-sm-n60p {
    top: -60% !important;
    bottom: -60% !important;
    left: -60% !important;
    right: -60% !important; }
  .at-sm-n60p,
  .ay-sm-n60p {
    top: -60% !important; }
  .ar-sm-n60p,
  .ax-sm-n60p {
    right: -60% !important; }
  .ab-sm-n60p,
  .ay-sm-n60p {
    bottom: -60% !important; }
  .al-sm-n60p,
  .ax-sm-n60p {
    left: -60% !important; }
  .a-sm-auto {
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important; }
  .at-sm-auto,
  .ay-sm-auto {
    top: auto !important; }
  .ar-sm-auto,
  .ax-sm-auto {
    right: auto !important; }
  .ab-sm-auto,
  .ay-sm-auto {
    bottom: auto !important; }
  .al-sm-auto,
  .ax-sm-auto {
    left: auto !important; }
  .al-sm-30 {
    left: 30% !important; } }

@media (min-width: 768px) {
  .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; }
  .a-md-unset {
    top: unset !important;
    bottom: unset !important;
    left: unset !important;
    right: unset !important; }
  .a-md-0 {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important; }
  .at-md-0,
  .ay-md-0 {
    top: 0 !important; }
  .ar-md-0,
  .ax-md-0 {
    right: 0 !important; }
  .ab-md-0,
  .ay-md-0 {
    bottom: 0 !important; }
  .al-md-0,
  .ax-md-0 {
    left: 0 !important; }
  .a-md-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
    right: 0.25rem !important; }
  .at-md-1,
  .ay-md-1 {
    top: 0.25rem !important; }
  .ar-md-1,
  .ax-md-1 {
    right: 0.25rem !important; }
  .ab-md-1,
  .ay-md-1 {
    bottom: 0.25rem !important; }
  .al-md-1,
  .ax-md-1 {
    left: 0.25rem !important; }
  .a-md-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
    right: 0.5rem !important; }
  .at-md-2,
  .ay-md-2 {
    top: 0.5rem !important; }
  .ar-md-2,
  .ax-md-2 {
    right: 0.5rem !important; }
  .ab-md-2,
  .ay-md-2 {
    bottom: 0.5rem !important; }
  .al-md-2,
  .ax-md-2 {
    left: 0.5rem !important; }
  .a-md-3 {
    top: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
    right: 1rem !important; }
  .at-md-3,
  .ay-md-3 {
    top: 1rem !important; }
  .ar-md-3,
  .ax-md-3 {
    right: 1rem !important; }
  .ab-md-3,
  .ay-md-3 {
    bottom: 1rem !important; }
  .al-md-3,
  .ax-md-3 {
    left: 1rem !important; }
  .a-md-4 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
    right: 1.5rem !important; }
  .at-md-4,
  .ay-md-4 {
    top: 1.5rem !important; }
  .ar-md-4,
  .ax-md-4 {
    right: 1.5rem !important; }
  .ab-md-4,
  .ay-md-4 {
    bottom: 1.5rem !important; }
  .al-md-4,
  .ax-md-4 {
    left: 1.5rem !important; }
  .a-md-5 {
    top: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
    right: 3rem !important; }
  .at-md-5,
  .ay-md-5 {
    top: 3rem !important; }
  .ar-md-5,
  .ax-md-5 {
    right: 3rem !important; }
  .ab-md-5,
  .ay-md-5 {
    bottom: 3rem !important; }
  .al-md-5,
  .ax-md-5 {
    left: 3rem !important; }
  .a-md-4-5 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
    right: 4.5rem !important; }
  .at-md-4-5,
  .ay-md-4-5 {
    top: 4.5rem !important; }
  .ar-md-4-5,
  .ax-md-4-5 {
    right: 4.5rem !important; }
  .ab-md-4-5,
  .ay-md-4-5 {
    bottom: 4.5rem !important; }
  .al-md-4-5,
  .ax-md-4-5 {
    left: 4.5rem !important; }
  .a-md-5-5 {
    top: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
    right: 4rem !important; }
  .at-md-5-5,
  .ay-md-5-5 {
    top: 4rem !important; }
  .ar-md-5-5,
  .ax-md-5-5 {
    right: 4rem !important; }
  .ab-md-5-5,
  .ay-md-5-5 {
    bottom: 4rem !important; }
  .al-md-5-5,
  .ax-md-5-5 {
    left: 4rem !important; }
  .a-md-6 {
    top: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
    right: 6rem !important; }
  .at-md-6,
  .ay-md-6 {
    top: 6rem !important; }
  .ar-md-6,
  .ax-md-6 {
    right: 6rem !important; }
  .ab-md-6,
  .ay-md-6 {
    bottom: 6rem !important; }
  .al-md-6,
  .ax-md-6 {
    left: 6rem !important; }
  .a-md-7 {
    top: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
    right: 7rem !important; }
  .at-md-7,
  .ay-md-7 {
    top: 7rem !important; }
  .ar-md-7,
  .ax-md-7 {
    right: 7rem !important; }
  .ab-md-7,
  .ay-md-7 {
    bottom: 7rem !important; }
  .al-md-7,
  .ax-md-7 {
    left: 7rem !important; }
  .a-md-8 {
    top: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
    right: 8rem !important; }
  .at-md-8,
  .ay-md-8 {
    top: 8rem !important; }
  .ar-md-8,
  .ax-md-8 {
    right: 8rem !important; }
  .ab-md-8,
  .ay-md-8 {
    bottom: 8rem !important; }
  .al-md-8,
  .ax-md-8 {
    left: 8rem !important; }
  .a-md-9 {
    top: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
    right: 9rem !important; }
  .at-md-9,
  .ay-md-9 {
    top: 9rem !important; }
  .ar-md-9,
  .ax-md-9 {
    right: 9rem !important; }
  .ab-md-9,
  .ay-md-9 {
    bottom: 9rem !important; }
  .al-md-9,
  .ax-md-9 {
    left: 9rem !important; }
  .a-md-10 {
    top: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
    right: 10rem !important; }
  .at-md-10,
  .ay-md-10 {
    top: 10rem !important; }
  .ar-md-10,
  .ax-md-10 {
    right: 10rem !important; }
  .ab-md-10,
  .ay-md-10 {
    bottom: 10rem !important; }
  .al-md-10,
  .ax-md-10 {
    left: 10rem !important; }
  .a-md-15 {
    top: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
    right: 15rem !important; }
  .at-md-15,
  .ay-md-15 {
    top: 15rem !important; }
  .ar-md-15,
  .ax-md-15 {
    right: 15rem !important; }
  .ab-md-15,
  .ay-md-15 {
    bottom: 15rem !important; }
  .al-md-15,
  .ax-md-15 {
    left: 15rem !important; }
  .a-md-20 {
    top: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
    right: 20rem !important; }
  .at-md-20,
  .ay-md-20 {
    top: 20rem !important; }
  .ar-md-20,
  .ax-md-20 {
    right: 20rem !important; }
  .ab-md-20,
  .ay-md-20 {
    bottom: 20rem !important; }
  .al-md-20,
  .ax-md-20 {
    left: 20rem !important; }
  .a-md-25 {
    top: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
    right: 25rem !important; }
  .at-md-25,
  .ay-md-25 {
    top: 25rem !important; }
  .ar-md-25,
  .ax-md-25 {
    right: 25rem !important; }
  .ab-md-25,
  .ay-md-25 {
    bottom: 25rem !important; }
  .al-md-25,
  .ax-md-25 {
    left: 25rem !important; }
  .a-md-10p {
    top: 10% !important;
    bottom: 10% !important;
    left: 10% !important;
    right: 10% !important; }
  .at-md-10p,
  .ay-md-10p {
    top: 10% !important; }
  .ar-md-10p,
  .ax-md-10p {
    right: 10% !important; }
  .ab-md-10p,
  .ay-md-10p {
    bottom: 10% !important; }
  .al-md-10p,
  .ax-md-10p {
    left: 10% !important; }
  .a-md-15p {
    top: 15% !important;
    bottom: 15% !important;
    left: 15% !important;
    right: 15% !important; }
  .at-md-15p,
  .ay-md-15p {
    top: 15% !important; }
  .ar-md-15p,
  .ax-md-15p {
    right: 15% !important; }
  .ab-md-15p,
  .ay-md-15p {
    bottom: 15% !important; }
  .al-md-15p,
  .ax-md-15p {
    left: 15% !important; }
  .a-md-20p {
    top: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
    right: 20% !important; }
  .at-md-20p,
  .ay-md-20p {
    top: 20% !important; }
  .ar-md-20p,
  .ax-md-20p {
    right: 20% !important; }
  .ab-md-20p,
  .ay-md-20p {
    bottom: 20% !important; }
  .al-md-20p,
  .ax-md-20p {
    left: 20% !important; }
  .a-md-25p {
    top: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
    right: 25% !important; }
  .at-md-25p,
  .ay-md-25p {
    top: 25% !important; }
  .ar-md-25p,
  .ax-md-25p {
    right: 25% !important; }
  .ab-md-25p,
  .ay-md-25p {
    bottom: 25% !important; }
  .al-md-25p,
  .ax-md-25p {
    left: 25% !important; }
  .a-md-30p {
    top: 30% !important;
    bottom: 30% !important;
    left: 30% !important;
    right: 30% !important; }
  .at-md-30p,
  .ay-md-30p {
    top: 30% !important; }
  .ar-md-30p,
  .ax-md-30p {
    right: 30% !important; }
  .ab-md-30p,
  .ay-md-30p {
    bottom: 30% !important; }
  .al-md-30p,
  .ax-md-30p {
    left: 30% !important; }
  .a-md-40p {
    top: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
    right: 40% !important; }
  .at-md-40p,
  .ay-md-40p {
    top: 40% !important; }
  .ar-md-40p,
  .ax-md-40p {
    right: 40% !important; }
  .ab-md-40p,
  .ay-md-40p {
    bottom: 40% !important; }
  .al-md-40p,
  .ax-md-40p {
    left: 40% !important; }
  .a-md-50p {
    top: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
    right: 50% !important; }
  .at-md-50p,
  .ay-md-50p {
    top: 50% !important; }
  .ar-md-50p,
  .ax-md-50p {
    right: 50% !important; }
  .ab-md-50p,
  .ay-md-50p {
    bottom: 50% !important; }
  .al-md-50p,
  .ax-md-50p {
    left: 50% !important; }
  .a-md-60p {
    top: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
    right: 60% !important; }
  .at-md-60p,
  .ay-md-60p {
    top: 60% !important; }
  .ar-md-60p,
  .ax-md-60p {
    right: 60% !important; }
  .ab-md-60p,
  .ay-md-60p {
    bottom: 60% !important; }
  .al-md-60p,
  .ax-md-60p {
    left: 60% !important; }
  .a-md-n1 {
    top: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
    right: -0.25rem !important; }
  .at-md-n1,
  .ay-md-n1 {
    top: -0.25rem !important; }
  .ar-md-n1,
  .ax-md-n1 {
    right: -0.25rem !important; }
  .ab-md-n1,
  .ay-md-n1 {
    bottom: -0.25rem !important; }
  .al-md-n1,
  .ax-md-n1 {
    left: -0.25rem !important; }
  .a-md-n2 {
    top: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
    right: -0.5rem !important; }
  .at-md-n2,
  .ay-md-n2 {
    top: -0.5rem !important; }
  .ar-md-n2,
  .ax-md-n2 {
    right: -0.5rem !important; }
  .ab-md-n2,
  .ay-md-n2 {
    bottom: -0.5rem !important; }
  .al-md-n2,
  .ax-md-n2 {
    left: -0.5rem !important; }
  .a-md-n3 {
    top: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
    right: -1rem !important; }
  .at-md-n3,
  .ay-md-n3 {
    top: -1rem !important; }
  .ar-md-n3,
  .ax-md-n3 {
    right: -1rem !important; }
  .ab-md-n3,
  .ay-md-n3 {
    bottom: -1rem !important; }
  .al-md-n3,
  .ax-md-n3 {
    left: -1rem !important; }
  .a-md-n4 {
    top: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
    right: -1.5rem !important; }
  .at-md-n4,
  .ay-md-n4 {
    top: -1.5rem !important; }
  .ar-md-n4,
  .ax-md-n4 {
    right: -1.5rem !important; }
  .ab-md-n4,
  .ay-md-n4 {
    bottom: -1.5rem !important; }
  .al-md-n4,
  .ax-md-n4 {
    left: -1.5rem !important; }
  .a-md-n5 {
    top: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
    right: -3rem !important; }
  .at-md-n5,
  .ay-md-n5 {
    top: -3rem !important; }
  .ar-md-n5,
  .ax-md-n5 {
    right: -3rem !important; }
  .ab-md-n5,
  .ay-md-n5 {
    bottom: -3rem !important; }
  .al-md-n5,
  .ax-md-n5 {
    left: -3rem !important; }
  .a-md-n4-5 {
    top: -4.5rem !important;
    bottom: -4.5rem !important;
    left: -4.5rem !important;
    right: -4.5rem !important; }
  .at-md-n4-5,
  .ay-md-n4-5 {
    top: -4.5rem !important; }
  .ar-md-n4-5,
  .ax-md-n4-5 {
    right: -4.5rem !important; }
  .ab-md-n4-5,
  .ay-md-n4-5 {
    bottom: -4.5rem !important; }
  .al-md-n4-5,
  .ax-md-n4-5 {
    left: -4.5rem !important; }
  .a-md-n5-5 {
    top: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
    right: -4rem !important; }
  .at-md-n5-5,
  .ay-md-n5-5 {
    top: -4rem !important; }
  .ar-md-n5-5,
  .ax-md-n5-5 {
    right: -4rem !important; }
  .ab-md-n5-5,
  .ay-md-n5-5 {
    bottom: -4rem !important; }
  .al-md-n5-5,
  .ax-md-n5-5 {
    left: -4rem !important; }
  .a-md-n6 {
    top: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
    right: -6rem !important; }
  .at-md-n6,
  .ay-md-n6 {
    top: -6rem !important; }
  .ar-md-n6,
  .ax-md-n6 {
    right: -6rem !important; }
  .ab-md-n6,
  .ay-md-n6 {
    bottom: -6rem !important; }
  .al-md-n6,
  .ax-md-n6 {
    left: -6rem !important; }
  .a-md-n7 {
    top: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
    right: -7rem !important; }
  .at-md-n7,
  .ay-md-n7 {
    top: -7rem !important; }
  .ar-md-n7,
  .ax-md-n7 {
    right: -7rem !important; }
  .ab-md-n7,
  .ay-md-n7 {
    bottom: -7rem !important; }
  .al-md-n7,
  .ax-md-n7 {
    left: -7rem !important; }
  .a-md-n8 {
    top: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
    right: -8rem !important; }
  .at-md-n8,
  .ay-md-n8 {
    top: -8rem !important; }
  .ar-md-n8,
  .ax-md-n8 {
    right: -8rem !important; }
  .ab-md-n8,
  .ay-md-n8 {
    bottom: -8rem !important; }
  .al-md-n8,
  .ax-md-n8 {
    left: -8rem !important; }
  .a-md-n9 {
    top: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
    right: -9rem !important; }
  .at-md-n9,
  .ay-md-n9 {
    top: -9rem !important; }
  .ar-md-n9,
  .ax-md-n9 {
    right: -9rem !important; }
  .ab-md-n9,
  .ay-md-n9 {
    bottom: -9rem !important; }
  .al-md-n9,
  .ax-md-n9 {
    left: -9rem !important; }
  .a-md-n10 {
    top: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
    right: -10rem !important; }
  .at-md-n10,
  .ay-md-n10 {
    top: -10rem !important; }
  .ar-md-n10,
  .ax-md-n10 {
    right: -10rem !important; }
  .ab-md-n10,
  .ay-md-n10 {
    bottom: -10rem !important; }
  .al-md-n10,
  .ax-md-n10 {
    left: -10rem !important; }
  .a-md-n15 {
    top: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
    right: -15rem !important; }
  .at-md-n15,
  .ay-md-n15 {
    top: -15rem !important; }
  .ar-md-n15,
  .ax-md-n15 {
    right: -15rem !important; }
  .ab-md-n15,
  .ay-md-n15 {
    bottom: -15rem !important; }
  .al-md-n15,
  .ax-md-n15 {
    left: -15rem !important; }
  .a-md-n20 {
    top: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
    right: -20rem !important; }
  .at-md-n20,
  .ay-md-n20 {
    top: -20rem !important; }
  .ar-md-n20,
  .ax-md-n20 {
    right: -20rem !important; }
  .ab-md-n20,
  .ay-md-n20 {
    bottom: -20rem !important; }
  .al-md-n20,
  .ax-md-n20 {
    left: -20rem !important; }
  .a-md-n25 {
    top: -25rem !important;
    bottom: -25rem !important;
    left: -25rem !important;
    right: -25rem !important; }
  .at-md-n25,
  .ay-md-n25 {
    top: -25rem !important; }
  .ar-md-n25,
  .ax-md-n25 {
    right: -25rem !important; }
  .ab-md-n25,
  .ay-md-n25 {
    bottom: -25rem !important; }
  .al-md-n25,
  .ax-md-n25 {
    left: -25rem !important; }
  .a-md-n10p {
    top: -10% !important;
    bottom: -10% !important;
    left: -10% !important;
    right: -10% !important; }
  .at-md-n10p,
  .ay-md-n10p {
    top: -10% !important; }
  .ar-md-n10p,
  .ax-md-n10p {
    right: -10% !important; }
  .ab-md-n10p,
  .ay-md-n10p {
    bottom: -10% !important; }
  .al-md-n10p,
  .ax-md-n10p {
    left: -10% !important; }
  .a-md-n15p {
    top: -15% !important;
    bottom: -15% !important;
    left: -15% !important;
    right: -15% !important; }
  .at-md-n15p,
  .ay-md-n15p {
    top: -15% !important; }
  .ar-md-n15p,
  .ax-md-n15p {
    right: -15% !important; }
  .ab-md-n15p,
  .ay-md-n15p {
    bottom: -15% !important; }
  .al-md-n15p,
  .ax-md-n15p {
    left: -15% !important; }
  .a-md-n20p {
    top: -20% !important;
    bottom: -20% !important;
    left: -20% !important;
    right: -20% !important; }
  .at-md-n20p,
  .ay-md-n20p {
    top: -20% !important; }
  .ar-md-n20p,
  .ax-md-n20p {
    right: -20% !important; }
  .ab-md-n20p,
  .ay-md-n20p {
    bottom: -20% !important; }
  .al-md-n20p,
  .ax-md-n20p {
    left: -20% !important; }
  .a-md-n25p {
    top: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
    right: -25% !important; }
  .at-md-n25p,
  .ay-md-n25p {
    top: -25% !important; }
  .ar-md-n25p,
  .ax-md-n25p {
    right: -25% !important; }
  .ab-md-n25p,
  .ay-md-n25p {
    bottom: -25% !important; }
  .al-md-n25p,
  .ax-md-n25p {
    left: -25% !important; }
  .a-md-n30p {
    top: -30% !important;
    bottom: -30% !important;
    left: -30% !important;
    right: -30% !important; }
  .at-md-n30p,
  .ay-md-n30p {
    top: -30% !important; }
  .ar-md-n30p,
  .ax-md-n30p {
    right: -30% !important; }
  .ab-md-n30p,
  .ay-md-n30p {
    bottom: -30% !important; }
  .al-md-n30p,
  .ax-md-n30p {
    left: -30% !important; }
  .a-md-n40p {
    top: -40% !important;
    bottom: -40% !important;
    left: -40% !important;
    right: -40% !important; }
  .at-md-n40p,
  .ay-md-n40p {
    top: -40% !important; }
  .ar-md-n40p,
  .ax-md-n40p {
    right: -40% !important; }
  .ab-md-n40p,
  .ay-md-n40p {
    bottom: -40% !important; }
  .al-md-n40p,
  .ax-md-n40p {
    left: -40% !important; }
  .a-md-n50p {
    top: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
    right: -50% !important; }
  .at-md-n50p,
  .ay-md-n50p {
    top: -50% !important; }
  .ar-md-n50p,
  .ax-md-n50p {
    right: -50% !important; }
  .ab-md-n50p,
  .ay-md-n50p {
    bottom: -50% !important; }
  .al-md-n50p,
  .ax-md-n50p {
    left: -50% !important; }
  .a-md-n60p {
    top: -60% !important;
    bottom: -60% !important;
    left: -60% !important;
    right: -60% !important; }
  .at-md-n60p,
  .ay-md-n60p {
    top: -60% !important; }
  .ar-md-n60p,
  .ax-md-n60p {
    right: -60% !important; }
  .ab-md-n60p,
  .ay-md-n60p {
    bottom: -60% !important; }
  .al-md-n60p,
  .ax-md-n60p {
    left: -60% !important; }
  .a-md-auto {
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important; }
  .at-md-auto,
  .ay-md-auto {
    top: auto !important; }
  .ar-md-auto,
  .ax-md-auto {
    right: auto !important; }
  .ab-md-auto,
  .ay-md-auto {
    bottom: auto !important; }
  .al-md-auto,
  .ax-md-auto {
    left: auto !important; }
  .al-md-30 {
    left: 30% !important; } }

@media (min-width: 992px) {
  .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; }
  .a-lg-unset {
    top: unset !important;
    bottom: unset !important;
    left: unset !important;
    right: unset !important; }
  .a-lg-0 {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important; }
  .at-lg-0,
  .ay-lg-0 {
    top: 0 !important; }
  .ar-lg-0,
  .ax-lg-0 {
    right: 0 !important; }
  .ab-lg-0,
  .ay-lg-0 {
    bottom: 0 !important; }
  .al-lg-0,
  .ax-lg-0 {
    left: 0 !important; }
  .a-lg-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
    right: 0.25rem !important; }
  .at-lg-1,
  .ay-lg-1 {
    top: 0.25rem !important; }
  .ar-lg-1,
  .ax-lg-1 {
    right: 0.25rem !important; }
  .ab-lg-1,
  .ay-lg-1 {
    bottom: 0.25rem !important; }
  .al-lg-1,
  .ax-lg-1 {
    left: 0.25rem !important; }
  .a-lg-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
    right: 0.5rem !important; }
  .at-lg-2,
  .ay-lg-2 {
    top: 0.5rem !important; }
  .ar-lg-2,
  .ax-lg-2 {
    right: 0.5rem !important; }
  .ab-lg-2,
  .ay-lg-2 {
    bottom: 0.5rem !important; }
  .al-lg-2,
  .ax-lg-2 {
    left: 0.5rem !important; }
  .a-lg-3 {
    top: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
    right: 1rem !important; }
  .at-lg-3,
  .ay-lg-3 {
    top: 1rem !important; }
  .ar-lg-3,
  .ax-lg-3 {
    right: 1rem !important; }
  .ab-lg-3,
  .ay-lg-3 {
    bottom: 1rem !important; }
  .al-lg-3,
  .ax-lg-3 {
    left: 1rem !important; }
  .a-lg-4 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
    right: 1.5rem !important; }
  .at-lg-4,
  .ay-lg-4 {
    top: 1.5rem !important; }
  .ar-lg-4,
  .ax-lg-4 {
    right: 1.5rem !important; }
  .ab-lg-4,
  .ay-lg-4 {
    bottom: 1.5rem !important; }
  .al-lg-4,
  .ax-lg-4 {
    left: 1.5rem !important; }
  .a-lg-5 {
    top: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
    right: 3rem !important; }
  .at-lg-5,
  .ay-lg-5 {
    top: 3rem !important; }
  .ar-lg-5,
  .ax-lg-5 {
    right: 3rem !important; }
  .ab-lg-5,
  .ay-lg-5 {
    bottom: 3rem !important; }
  .al-lg-5,
  .ax-lg-5 {
    left: 3rem !important; }
  .a-lg-4-5 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
    right: 4.5rem !important; }
  .at-lg-4-5,
  .ay-lg-4-5 {
    top: 4.5rem !important; }
  .ar-lg-4-5,
  .ax-lg-4-5 {
    right: 4.5rem !important; }
  .ab-lg-4-5,
  .ay-lg-4-5 {
    bottom: 4.5rem !important; }
  .al-lg-4-5,
  .ax-lg-4-5 {
    left: 4.5rem !important; }
  .a-lg-5-5 {
    top: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
    right: 4rem !important; }
  .at-lg-5-5,
  .ay-lg-5-5 {
    top: 4rem !important; }
  .ar-lg-5-5,
  .ax-lg-5-5 {
    right: 4rem !important; }
  .ab-lg-5-5,
  .ay-lg-5-5 {
    bottom: 4rem !important; }
  .al-lg-5-5,
  .ax-lg-5-5 {
    left: 4rem !important; }
  .a-lg-6 {
    top: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
    right: 6rem !important; }
  .at-lg-6,
  .ay-lg-6 {
    top: 6rem !important; }
  .ar-lg-6,
  .ax-lg-6 {
    right: 6rem !important; }
  .ab-lg-6,
  .ay-lg-6 {
    bottom: 6rem !important; }
  .al-lg-6,
  .ax-lg-6 {
    left: 6rem !important; }
  .a-lg-7 {
    top: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
    right: 7rem !important; }
  .at-lg-7,
  .ay-lg-7 {
    top: 7rem !important; }
  .ar-lg-7,
  .ax-lg-7 {
    right: 7rem !important; }
  .ab-lg-7,
  .ay-lg-7 {
    bottom: 7rem !important; }
  .al-lg-7,
  .ax-lg-7 {
    left: 7rem !important; }
  .a-lg-8 {
    top: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
    right: 8rem !important; }
  .at-lg-8,
  .ay-lg-8 {
    top: 8rem !important; }
  .ar-lg-8,
  .ax-lg-8 {
    right: 8rem !important; }
  .ab-lg-8,
  .ay-lg-8 {
    bottom: 8rem !important; }
  .al-lg-8,
  .ax-lg-8 {
    left: 8rem !important; }
  .a-lg-9 {
    top: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
    right: 9rem !important; }
  .at-lg-9,
  .ay-lg-9 {
    top: 9rem !important; }
  .ar-lg-9,
  .ax-lg-9 {
    right: 9rem !important; }
  .ab-lg-9,
  .ay-lg-9 {
    bottom: 9rem !important; }
  .al-lg-9,
  .ax-lg-9 {
    left: 9rem !important; }
  .a-lg-10 {
    top: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
    right: 10rem !important; }
  .at-lg-10,
  .ay-lg-10 {
    top: 10rem !important; }
  .ar-lg-10,
  .ax-lg-10 {
    right: 10rem !important; }
  .ab-lg-10,
  .ay-lg-10 {
    bottom: 10rem !important; }
  .al-lg-10,
  .ax-lg-10 {
    left: 10rem !important; }
  .a-lg-15 {
    top: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
    right: 15rem !important; }
  .at-lg-15,
  .ay-lg-15 {
    top: 15rem !important; }
  .ar-lg-15,
  .ax-lg-15 {
    right: 15rem !important; }
  .ab-lg-15,
  .ay-lg-15 {
    bottom: 15rem !important; }
  .al-lg-15,
  .ax-lg-15 {
    left: 15rem !important; }
  .a-lg-20 {
    top: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
    right: 20rem !important; }
  .at-lg-20,
  .ay-lg-20 {
    top: 20rem !important; }
  .ar-lg-20,
  .ax-lg-20 {
    right: 20rem !important; }
  .ab-lg-20,
  .ay-lg-20 {
    bottom: 20rem !important; }
  .al-lg-20,
  .ax-lg-20 {
    left: 20rem !important; }
  .a-lg-25 {
    top: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
    right: 25rem !important; }
  .at-lg-25,
  .ay-lg-25 {
    top: 25rem !important; }
  .ar-lg-25,
  .ax-lg-25 {
    right: 25rem !important; }
  .ab-lg-25,
  .ay-lg-25 {
    bottom: 25rem !important; }
  .al-lg-25,
  .ax-lg-25 {
    left: 25rem !important; }
  .a-lg-10p {
    top: 10% !important;
    bottom: 10% !important;
    left: 10% !important;
    right: 10% !important; }
  .at-lg-10p,
  .ay-lg-10p {
    top: 10% !important; }
  .ar-lg-10p,
  .ax-lg-10p {
    right: 10% !important; }
  .ab-lg-10p,
  .ay-lg-10p {
    bottom: 10% !important; }
  .al-lg-10p,
  .ax-lg-10p {
    left: 10% !important; }
  .a-lg-15p {
    top: 15% !important;
    bottom: 15% !important;
    left: 15% !important;
    right: 15% !important; }
  .at-lg-15p,
  .ay-lg-15p {
    top: 15% !important; }
  .ar-lg-15p,
  .ax-lg-15p {
    right: 15% !important; }
  .ab-lg-15p,
  .ay-lg-15p {
    bottom: 15% !important; }
  .al-lg-15p,
  .ax-lg-15p {
    left: 15% !important; }
  .a-lg-20p {
    top: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
    right: 20% !important; }
  .at-lg-20p,
  .ay-lg-20p {
    top: 20% !important; }
  .ar-lg-20p,
  .ax-lg-20p {
    right: 20% !important; }
  .ab-lg-20p,
  .ay-lg-20p {
    bottom: 20% !important; }
  .al-lg-20p,
  .ax-lg-20p {
    left: 20% !important; }
  .a-lg-25p {
    top: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
    right: 25% !important; }
  .at-lg-25p,
  .ay-lg-25p {
    top: 25% !important; }
  .ar-lg-25p,
  .ax-lg-25p {
    right: 25% !important; }
  .ab-lg-25p,
  .ay-lg-25p {
    bottom: 25% !important; }
  .al-lg-25p,
  .ax-lg-25p {
    left: 25% !important; }
  .a-lg-30p {
    top: 30% !important;
    bottom: 30% !important;
    left: 30% !important;
    right: 30% !important; }
  .at-lg-30p,
  .ay-lg-30p {
    top: 30% !important; }
  .ar-lg-30p,
  .ax-lg-30p {
    right: 30% !important; }
  .ab-lg-30p,
  .ay-lg-30p {
    bottom: 30% !important; }
  .al-lg-30p,
  .ax-lg-30p {
    left: 30% !important; }
  .a-lg-40p {
    top: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
    right: 40% !important; }
  .at-lg-40p,
  .ay-lg-40p {
    top: 40% !important; }
  .ar-lg-40p,
  .ax-lg-40p {
    right: 40% !important; }
  .ab-lg-40p,
  .ay-lg-40p {
    bottom: 40% !important; }
  .al-lg-40p,
  .ax-lg-40p {
    left: 40% !important; }
  .a-lg-50p {
    top: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
    right: 50% !important; }
  .at-lg-50p,
  .ay-lg-50p {
    top: 50% !important; }
  .ar-lg-50p,
  .ax-lg-50p {
    right: 50% !important; }
  .ab-lg-50p,
  .ay-lg-50p {
    bottom: 50% !important; }
  .al-lg-50p,
  .ax-lg-50p {
    left: 50% !important; }
  .a-lg-60p {
    top: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
    right: 60% !important; }
  .at-lg-60p,
  .ay-lg-60p {
    top: 60% !important; }
  .ar-lg-60p,
  .ax-lg-60p {
    right: 60% !important; }
  .ab-lg-60p,
  .ay-lg-60p {
    bottom: 60% !important; }
  .al-lg-60p,
  .ax-lg-60p {
    left: 60% !important; }
  .a-lg-n1 {
    top: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
    right: -0.25rem !important; }
  .at-lg-n1,
  .ay-lg-n1 {
    top: -0.25rem !important; }
  .ar-lg-n1,
  .ax-lg-n1 {
    right: -0.25rem !important; }
  .ab-lg-n1,
  .ay-lg-n1 {
    bottom: -0.25rem !important; }
  .al-lg-n1,
  .ax-lg-n1 {
    left: -0.25rem !important; }
  .a-lg-n2 {
    top: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
    right: -0.5rem !important; }
  .at-lg-n2,
  .ay-lg-n2 {
    top: -0.5rem !important; }
  .ar-lg-n2,
  .ax-lg-n2 {
    right: -0.5rem !important; }
  .ab-lg-n2,
  .ay-lg-n2 {
    bottom: -0.5rem !important; }
  .al-lg-n2,
  .ax-lg-n2 {
    left: -0.5rem !important; }
  .a-lg-n3 {
    top: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
    right: -1rem !important; }
  .at-lg-n3,
  .ay-lg-n3 {
    top: -1rem !important; }
  .ar-lg-n3,
  .ax-lg-n3 {
    right: -1rem !important; }
  .ab-lg-n3,
  .ay-lg-n3 {
    bottom: -1rem !important; }
  .al-lg-n3,
  .ax-lg-n3 {
    left: -1rem !important; }
  .a-lg-n4 {
    top: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
    right: -1.5rem !important; }
  .at-lg-n4,
  .ay-lg-n4 {
    top: -1.5rem !important; }
  .ar-lg-n4,
  .ax-lg-n4 {
    right: -1.5rem !important; }
  .ab-lg-n4,
  .ay-lg-n4 {
    bottom: -1.5rem !important; }
  .al-lg-n4,
  .ax-lg-n4 {
    left: -1.5rem !important; }
  .a-lg-n5 {
    top: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
    right: -3rem !important; }
  .at-lg-n5,
  .ay-lg-n5 {
    top: -3rem !important; }
  .ar-lg-n5,
  .ax-lg-n5 {
    right: -3rem !important; }
  .ab-lg-n5,
  .ay-lg-n5 {
    bottom: -3rem !important; }
  .al-lg-n5,
  .ax-lg-n5 {
    left: -3rem !important; }
  .a-lg-n4-5 {
    top: -4.5rem !important;
    bottom: -4.5rem !important;
    left: -4.5rem !important;
    right: -4.5rem !important; }
  .at-lg-n4-5,
  .ay-lg-n4-5 {
    top: -4.5rem !important; }
  .ar-lg-n4-5,
  .ax-lg-n4-5 {
    right: -4.5rem !important; }
  .ab-lg-n4-5,
  .ay-lg-n4-5 {
    bottom: -4.5rem !important; }
  .al-lg-n4-5,
  .ax-lg-n4-5 {
    left: -4.5rem !important; }
  .a-lg-n5-5 {
    top: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
    right: -4rem !important; }
  .at-lg-n5-5,
  .ay-lg-n5-5 {
    top: -4rem !important; }
  .ar-lg-n5-5,
  .ax-lg-n5-5 {
    right: -4rem !important; }
  .ab-lg-n5-5,
  .ay-lg-n5-5 {
    bottom: -4rem !important; }
  .al-lg-n5-5,
  .ax-lg-n5-5 {
    left: -4rem !important; }
  .a-lg-n6 {
    top: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
    right: -6rem !important; }
  .at-lg-n6,
  .ay-lg-n6 {
    top: -6rem !important; }
  .ar-lg-n6,
  .ax-lg-n6 {
    right: -6rem !important; }
  .ab-lg-n6,
  .ay-lg-n6 {
    bottom: -6rem !important; }
  .al-lg-n6,
  .ax-lg-n6 {
    left: -6rem !important; }
  .a-lg-n7 {
    top: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
    right: -7rem !important; }
  .at-lg-n7,
  .ay-lg-n7 {
    top: -7rem !important; }
  .ar-lg-n7,
  .ax-lg-n7 {
    right: -7rem !important; }
  .ab-lg-n7,
  .ay-lg-n7 {
    bottom: -7rem !important; }
  .al-lg-n7,
  .ax-lg-n7 {
    left: -7rem !important; }
  .a-lg-n8 {
    top: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
    right: -8rem !important; }
  .at-lg-n8,
  .ay-lg-n8 {
    top: -8rem !important; }
  .ar-lg-n8,
  .ax-lg-n8 {
    right: -8rem !important; }
  .ab-lg-n8,
  .ay-lg-n8 {
    bottom: -8rem !important; }
  .al-lg-n8,
  .ax-lg-n8 {
    left: -8rem !important; }
  .a-lg-n9 {
    top: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
    right: -9rem !important; }
  .at-lg-n9,
  .ay-lg-n9 {
    top: -9rem !important; }
  .ar-lg-n9,
  .ax-lg-n9 {
    right: -9rem !important; }
  .ab-lg-n9,
  .ay-lg-n9 {
    bottom: -9rem !important; }
  .al-lg-n9,
  .ax-lg-n9 {
    left: -9rem !important; }
  .a-lg-n10 {
    top: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
    right: -10rem !important; }
  .at-lg-n10,
  .ay-lg-n10 {
    top: -10rem !important; }
  .ar-lg-n10,
  .ax-lg-n10 {
    right: -10rem !important; }
  .ab-lg-n10,
  .ay-lg-n10 {
    bottom: -10rem !important; }
  .al-lg-n10,
  .ax-lg-n10 {
    left: -10rem !important; }
  .a-lg-n15 {
    top: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
    right: -15rem !important; }
  .at-lg-n15,
  .ay-lg-n15 {
    top: -15rem !important; }
  .ar-lg-n15,
  .ax-lg-n15 {
    right: -15rem !important; }
  .ab-lg-n15,
  .ay-lg-n15 {
    bottom: -15rem !important; }
  .al-lg-n15,
  .ax-lg-n15 {
    left: -15rem !important; }
  .a-lg-n20 {
    top: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
    right: -20rem !important; }
  .at-lg-n20,
  .ay-lg-n20 {
    top: -20rem !important; }
  .ar-lg-n20,
  .ax-lg-n20 {
    right: -20rem !important; }
  .ab-lg-n20,
  .ay-lg-n20 {
    bottom: -20rem !important; }
  .al-lg-n20,
  .ax-lg-n20 {
    left: -20rem !important; }
  .a-lg-n25 {
    top: -25rem !important;
    bottom: -25rem !important;
    left: -25rem !important;
    right: -25rem !important; }
  .at-lg-n25,
  .ay-lg-n25 {
    top: -25rem !important; }
  .ar-lg-n25,
  .ax-lg-n25 {
    right: -25rem !important; }
  .ab-lg-n25,
  .ay-lg-n25 {
    bottom: -25rem !important; }
  .al-lg-n25,
  .ax-lg-n25 {
    left: -25rem !important; }
  .a-lg-n10p {
    top: -10% !important;
    bottom: -10% !important;
    left: -10% !important;
    right: -10% !important; }
  .at-lg-n10p,
  .ay-lg-n10p {
    top: -10% !important; }
  .ar-lg-n10p,
  .ax-lg-n10p {
    right: -10% !important; }
  .ab-lg-n10p,
  .ay-lg-n10p {
    bottom: -10% !important; }
  .al-lg-n10p,
  .ax-lg-n10p {
    left: -10% !important; }
  .a-lg-n15p {
    top: -15% !important;
    bottom: -15% !important;
    left: -15% !important;
    right: -15% !important; }
  .at-lg-n15p,
  .ay-lg-n15p {
    top: -15% !important; }
  .ar-lg-n15p,
  .ax-lg-n15p {
    right: -15% !important; }
  .ab-lg-n15p,
  .ay-lg-n15p {
    bottom: -15% !important; }
  .al-lg-n15p,
  .ax-lg-n15p {
    left: -15% !important; }
  .a-lg-n20p {
    top: -20% !important;
    bottom: -20% !important;
    left: -20% !important;
    right: -20% !important; }
  .at-lg-n20p,
  .ay-lg-n20p {
    top: -20% !important; }
  .ar-lg-n20p,
  .ax-lg-n20p {
    right: -20% !important; }
  .ab-lg-n20p,
  .ay-lg-n20p {
    bottom: -20% !important; }
  .al-lg-n20p,
  .ax-lg-n20p {
    left: -20% !important; }
  .a-lg-n25p {
    top: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
    right: -25% !important; }
  .at-lg-n25p,
  .ay-lg-n25p {
    top: -25% !important; }
  .ar-lg-n25p,
  .ax-lg-n25p {
    right: -25% !important; }
  .ab-lg-n25p,
  .ay-lg-n25p {
    bottom: -25% !important; }
  .al-lg-n25p,
  .ax-lg-n25p {
    left: -25% !important; }
  .a-lg-n30p {
    top: -30% !important;
    bottom: -30% !important;
    left: -30% !important;
    right: -30% !important; }
  .at-lg-n30p,
  .ay-lg-n30p {
    top: -30% !important; }
  .ar-lg-n30p,
  .ax-lg-n30p {
    right: -30% !important; }
  .ab-lg-n30p,
  .ay-lg-n30p {
    bottom: -30% !important; }
  .al-lg-n30p,
  .ax-lg-n30p {
    left: -30% !important; }
  .a-lg-n40p {
    top: -40% !important;
    bottom: -40% !important;
    left: -40% !important;
    right: -40% !important; }
  .at-lg-n40p,
  .ay-lg-n40p {
    top: -40% !important; }
  .ar-lg-n40p,
  .ax-lg-n40p {
    right: -40% !important; }
  .ab-lg-n40p,
  .ay-lg-n40p {
    bottom: -40% !important; }
  .al-lg-n40p,
  .ax-lg-n40p {
    left: -40% !important; }
  .a-lg-n50p {
    top: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
    right: -50% !important; }
  .at-lg-n50p,
  .ay-lg-n50p {
    top: -50% !important; }
  .ar-lg-n50p,
  .ax-lg-n50p {
    right: -50% !important; }
  .ab-lg-n50p,
  .ay-lg-n50p {
    bottom: -50% !important; }
  .al-lg-n50p,
  .ax-lg-n50p {
    left: -50% !important; }
  .a-lg-n60p {
    top: -60% !important;
    bottom: -60% !important;
    left: -60% !important;
    right: -60% !important; }
  .at-lg-n60p,
  .ay-lg-n60p {
    top: -60% !important; }
  .ar-lg-n60p,
  .ax-lg-n60p {
    right: -60% !important; }
  .ab-lg-n60p,
  .ay-lg-n60p {
    bottom: -60% !important; }
  .al-lg-n60p,
  .ax-lg-n60p {
    left: -60% !important; }
  .a-lg-auto {
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important; }
  .at-lg-auto,
  .ay-lg-auto {
    top: auto !important; }
  .ar-lg-auto,
  .ax-lg-auto {
    right: auto !important; }
  .ab-lg-auto,
  .ay-lg-auto {
    bottom: auto !important; }
  .al-lg-auto,
  .ax-lg-auto {
    left: auto !important; }
  .al-lg-30 {
    left: 30% !important; } }

@media (min-width: 1230px) {
  .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; }
  .a-xl-unset {
    top: unset !important;
    bottom: unset !important;
    left: unset !important;
    right: unset !important; }
  .a-xl-0 {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important; }
  .at-xl-0,
  .ay-xl-0 {
    top: 0 !important; }
  .ar-xl-0,
  .ax-xl-0 {
    right: 0 !important; }
  .ab-xl-0,
  .ay-xl-0 {
    bottom: 0 !important; }
  .al-xl-0,
  .ax-xl-0 {
    left: 0 !important; }
  .a-xl-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
    right: 0.25rem !important; }
  .at-xl-1,
  .ay-xl-1 {
    top: 0.25rem !important; }
  .ar-xl-1,
  .ax-xl-1 {
    right: 0.25rem !important; }
  .ab-xl-1,
  .ay-xl-1 {
    bottom: 0.25rem !important; }
  .al-xl-1,
  .ax-xl-1 {
    left: 0.25rem !important; }
  .a-xl-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
    right: 0.5rem !important; }
  .at-xl-2,
  .ay-xl-2 {
    top: 0.5rem !important; }
  .ar-xl-2,
  .ax-xl-2 {
    right: 0.5rem !important; }
  .ab-xl-2,
  .ay-xl-2 {
    bottom: 0.5rem !important; }
  .al-xl-2,
  .ax-xl-2 {
    left: 0.5rem !important; }
  .a-xl-3 {
    top: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
    right: 1rem !important; }
  .at-xl-3,
  .ay-xl-3 {
    top: 1rem !important; }
  .ar-xl-3,
  .ax-xl-3 {
    right: 1rem !important; }
  .ab-xl-3,
  .ay-xl-3 {
    bottom: 1rem !important; }
  .al-xl-3,
  .ax-xl-3 {
    left: 1rem !important; }
  .a-xl-4 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
    right: 1.5rem !important; }
  .at-xl-4,
  .ay-xl-4 {
    top: 1.5rem !important; }
  .ar-xl-4,
  .ax-xl-4 {
    right: 1.5rem !important; }
  .ab-xl-4,
  .ay-xl-4 {
    bottom: 1.5rem !important; }
  .al-xl-4,
  .ax-xl-4 {
    left: 1.5rem !important; }
  .a-xl-5 {
    top: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
    right: 3rem !important; }
  .at-xl-5,
  .ay-xl-5 {
    top: 3rem !important; }
  .ar-xl-5,
  .ax-xl-5 {
    right: 3rem !important; }
  .ab-xl-5,
  .ay-xl-5 {
    bottom: 3rem !important; }
  .al-xl-5,
  .ax-xl-5 {
    left: 3rem !important; }
  .a-xl-4-5 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
    right: 4.5rem !important; }
  .at-xl-4-5,
  .ay-xl-4-5 {
    top: 4.5rem !important; }
  .ar-xl-4-5,
  .ax-xl-4-5 {
    right: 4.5rem !important; }
  .ab-xl-4-5,
  .ay-xl-4-5 {
    bottom: 4.5rem !important; }
  .al-xl-4-5,
  .ax-xl-4-5 {
    left: 4.5rem !important; }
  .a-xl-5-5 {
    top: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
    right: 4rem !important; }
  .at-xl-5-5,
  .ay-xl-5-5 {
    top: 4rem !important; }
  .ar-xl-5-5,
  .ax-xl-5-5 {
    right: 4rem !important; }
  .ab-xl-5-5,
  .ay-xl-5-5 {
    bottom: 4rem !important; }
  .al-xl-5-5,
  .ax-xl-5-5 {
    left: 4rem !important; }
  .a-xl-6 {
    top: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
    right: 6rem !important; }
  .at-xl-6,
  .ay-xl-6 {
    top: 6rem !important; }
  .ar-xl-6,
  .ax-xl-6 {
    right: 6rem !important; }
  .ab-xl-6,
  .ay-xl-6 {
    bottom: 6rem !important; }
  .al-xl-6,
  .ax-xl-6 {
    left: 6rem !important; }
  .a-xl-7 {
    top: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
    right: 7rem !important; }
  .at-xl-7,
  .ay-xl-7 {
    top: 7rem !important; }
  .ar-xl-7,
  .ax-xl-7 {
    right: 7rem !important; }
  .ab-xl-7,
  .ay-xl-7 {
    bottom: 7rem !important; }
  .al-xl-7,
  .ax-xl-7 {
    left: 7rem !important; }
  .a-xl-8 {
    top: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
    right: 8rem !important; }
  .at-xl-8,
  .ay-xl-8 {
    top: 8rem !important; }
  .ar-xl-8,
  .ax-xl-8 {
    right: 8rem !important; }
  .ab-xl-8,
  .ay-xl-8 {
    bottom: 8rem !important; }
  .al-xl-8,
  .ax-xl-8 {
    left: 8rem !important; }
  .a-xl-9 {
    top: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
    right: 9rem !important; }
  .at-xl-9,
  .ay-xl-9 {
    top: 9rem !important; }
  .ar-xl-9,
  .ax-xl-9 {
    right: 9rem !important; }
  .ab-xl-9,
  .ay-xl-9 {
    bottom: 9rem !important; }
  .al-xl-9,
  .ax-xl-9 {
    left: 9rem !important; }
  .a-xl-10 {
    top: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
    right: 10rem !important; }
  .at-xl-10,
  .ay-xl-10 {
    top: 10rem !important; }
  .ar-xl-10,
  .ax-xl-10 {
    right: 10rem !important; }
  .ab-xl-10,
  .ay-xl-10 {
    bottom: 10rem !important; }
  .al-xl-10,
  .ax-xl-10 {
    left: 10rem !important; }
  .a-xl-15 {
    top: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
    right: 15rem !important; }
  .at-xl-15,
  .ay-xl-15 {
    top: 15rem !important; }
  .ar-xl-15,
  .ax-xl-15 {
    right: 15rem !important; }
  .ab-xl-15,
  .ay-xl-15 {
    bottom: 15rem !important; }
  .al-xl-15,
  .ax-xl-15 {
    left: 15rem !important; }
  .a-xl-20 {
    top: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
    right: 20rem !important; }
  .at-xl-20,
  .ay-xl-20 {
    top: 20rem !important; }
  .ar-xl-20,
  .ax-xl-20 {
    right: 20rem !important; }
  .ab-xl-20,
  .ay-xl-20 {
    bottom: 20rem !important; }
  .al-xl-20,
  .ax-xl-20 {
    left: 20rem !important; }
  .a-xl-25 {
    top: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
    right: 25rem !important; }
  .at-xl-25,
  .ay-xl-25 {
    top: 25rem !important; }
  .ar-xl-25,
  .ax-xl-25 {
    right: 25rem !important; }
  .ab-xl-25,
  .ay-xl-25 {
    bottom: 25rem !important; }
  .al-xl-25,
  .ax-xl-25 {
    left: 25rem !important; }
  .a-xl-10p {
    top: 10% !important;
    bottom: 10% !important;
    left: 10% !important;
    right: 10% !important; }
  .at-xl-10p,
  .ay-xl-10p {
    top: 10% !important; }
  .ar-xl-10p,
  .ax-xl-10p {
    right: 10% !important; }
  .ab-xl-10p,
  .ay-xl-10p {
    bottom: 10% !important; }
  .al-xl-10p,
  .ax-xl-10p {
    left: 10% !important; }
  .a-xl-15p {
    top: 15% !important;
    bottom: 15% !important;
    left: 15% !important;
    right: 15% !important; }
  .at-xl-15p,
  .ay-xl-15p {
    top: 15% !important; }
  .ar-xl-15p,
  .ax-xl-15p {
    right: 15% !important; }
  .ab-xl-15p,
  .ay-xl-15p {
    bottom: 15% !important; }
  .al-xl-15p,
  .ax-xl-15p {
    left: 15% !important; }
  .a-xl-20p {
    top: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
    right: 20% !important; }
  .at-xl-20p,
  .ay-xl-20p {
    top: 20% !important; }
  .ar-xl-20p,
  .ax-xl-20p {
    right: 20% !important; }
  .ab-xl-20p,
  .ay-xl-20p {
    bottom: 20% !important; }
  .al-xl-20p,
  .ax-xl-20p {
    left: 20% !important; }
  .a-xl-25p {
    top: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
    right: 25% !important; }
  .at-xl-25p,
  .ay-xl-25p {
    top: 25% !important; }
  .ar-xl-25p,
  .ax-xl-25p {
    right: 25% !important; }
  .ab-xl-25p,
  .ay-xl-25p {
    bottom: 25% !important; }
  .al-xl-25p,
  .ax-xl-25p {
    left: 25% !important; }
  .a-xl-30p {
    top: 30% !important;
    bottom: 30% !important;
    left: 30% !important;
    right: 30% !important; }
  .at-xl-30p,
  .ay-xl-30p {
    top: 30% !important; }
  .ar-xl-30p,
  .ax-xl-30p {
    right: 30% !important; }
  .ab-xl-30p,
  .ay-xl-30p {
    bottom: 30% !important; }
  .al-xl-30p,
  .ax-xl-30p {
    left: 30% !important; }
  .a-xl-40p {
    top: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
    right: 40% !important; }
  .at-xl-40p,
  .ay-xl-40p {
    top: 40% !important; }
  .ar-xl-40p,
  .ax-xl-40p {
    right: 40% !important; }
  .ab-xl-40p,
  .ay-xl-40p {
    bottom: 40% !important; }
  .al-xl-40p,
  .ax-xl-40p {
    left: 40% !important; }
  .a-xl-50p {
    top: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
    right: 50% !important; }
  .at-xl-50p,
  .ay-xl-50p {
    top: 50% !important; }
  .ar-xl-50p,
  .ax-xl-50p {
    right: 50% !important; }
  .ab-xl-50p,
  .ay-xl-50p {
    bottom: 50% !important; }
  .al-xl-50p,
  .ax-xl-50p {
    left: 50% !important; }
  .a-xl-60p {
    top: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
    right: 60% !important; }
  .at-xl-60p,
  .ay-xl-60p {
    top: 60% !important; }
  .ar-xl-60p,
  .ax-xl-60p {
    right: 60% !important; }
  .ab-xl-60p,
  .ay-xl-60p {
    bottom: 60% !important; }
  .al-xl-60p,
  .ax-xl-60p {
    left: 60% !important; }
  .a-xl-n1 {
    top: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
    right: -0.25rem !important; }
  .at-xl-n1,
  .ay-xl-n1 {
    top: -0.25rem !important; }
  .ar-xl-n1,
  .ax-xl-n1 {
    right: -0.25rem !important; }
  .ab-xl-n1,
  .ay-xl-n1 {
    bottom: -0.25rem !important; }
  .al-xl-n1,
  .ax-xl-n1 {
    left: -0.25rem !important; }
  .a-xl-n2 {
    top: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
    right: -0.5rem !important; }
  .at-xl-n2,
  .ay-xl-n2 {
    top: -0.5rem !important; }
  .ar-xl-n2,
  .ax-xl-n2 {
    right: -0.5rem !important; }
  .ab-xl-n2,
  .ay-xl-n2 {
    bottom: -0.5rem !important; }
  .al-xl-n2,
  .ax-xl-n2 {
    left: -0.5rem !important; }
  .a-xl-n3 {
    top: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
    right: -1rem !important; }
  .at-xl-n3,
  .ay-xl-n3 {
    top: -1rem !important; }
  .ar-xl-n3,
  .ax-xl-n3 {
    right: -1rem !important; }
  .ab-xl-n3,
  .ay-xl-n3 {
    bottom: -1rem !important; }
  .al-xl-n3,
  .ax-xl-n3 {
    left: -1rem !important; }
  .a-xl-n4 {
    top: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
    right: -1.5rem !important; }
  .at-xl-n4,
  .ay-xl-n4 {
    top: -1.5rem !important; }
  .ar-xl-n4,
  .ax-xl-n4 {
    right: -1.5rem !important; }
  .ab-xl-n4,
  .ay-xl-n4 {
    bottom: -1.5rem !important; }
  .al-xl-n4,
  .ax-xl-n4 {
    left: -1.5rem !important; }
  .a-xl-n5 {
    top: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
    right: -3rem !important; }
  .at-xl-n5,
  .ay-xl-n5 {
    top: -3rem !important; }
  .ar-xl-n5,
  .ax-xl-n5 {
    right: -3rem !important; }
  .ab-xl-n5,
  .ay-xl-n5 {
    bottom: -3rem !important; }
  .al-xl-n5,
  .ax-xl-n5 {
    left: -3rem !important; }
  .a-xl-n4-5 {
    top: -4.5rem !important;
    bottom: -4.5rem !important;
    left: -4.5rem !important;
    right: -4.5rem !important; }
  .at-xl-n4-5,
  .ay-xl-n4-5 {
    top: -4.5rem !important; }
  .ar-xl-n4-5,
  .ax-xl-n4-5 {
    right: -4.5rem !important; }
  .ab-xl-n4-5,
  .ay-xl-n4-5 {
    bottom: -4.5rem !important; }
  .al-xl-n4-5,
  .ax-xl-n4-5 {
    left: -4.5rem !important; }
  .a-xl-n5-5 {
    top: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
    right: -4rem !important; }
  .at-xl-n5-5,
  .ay-xl-n5-5 {
    top: -4rem !important; }
  .ar-xl-n5-5,
  .ax-xl-n5-5 {
    right: -4rem !important; }
  .ab-xl-n5-5,
  .ay-xl-n5-5 {
    bottom: -4rem !important; }
  .al-xl-n5-5,
  .ax-xl-n5-5 {
    left: -4rem !important; }
  .a-xl-n6 {
    top: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
    right: -6rem !important; }
  .at-xl-n6,
  .ay-xl-n6 {
    top: -6rem !important; }
  .ar-xl-n6,
  .ax-xl-n6 {
    right: -6rem !important; }
  .ab-xl-n6,
  .ay-xl-n6 {
    bottom: -6rem !important; }
  .al-xl-n6,
  .ax-xl-n6 {
    left: -6rem !important; }
  .a-xl-n7 {
    top: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
    right: -7rem !important; }
  .at-xl-n7,
  .ay-xl-n7 {
    top: -7rem !important; }
  .ar-xl-n7,
  .ax-xl-n7 {
    right: -7rem !important; }
  .ab-xl-n7,
  .ay-xl-n7 {
    bottom: -7rem !important; }
  .al-xl-n7,
  .ax-xl-n7 {
    left: -7rem !important; }
  .a-xl-n8 {
    top: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
    right: -8rem !important; }
  .at-xl-n8,
  .ay-xl-n8 {
    top: -8rem !important; }
  .ar-xl-n8,
  .ax-xl-n8 {
    right: -8rem !important; }
  .ab-xl-n8,
  .ay-xl-n8 {
    bottom: -8rem !important; }
  .al-xl-n8,
  .ax-xl-n8 {
    left: -8rem !important; }
  .a-xl-n9 {
    top: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
    right: -9rem !important; }
  .at-xl-n9,
  .ay-xl-n9 {
    top: -9rem !important; }
  .ar-xl-n9,
  .ax-xl-n9 {
    right: -9rem !important; }
  .ab-xl-n9,
  .ay-xl-n9 {
    bottom: -9rem !important; }
  .al-xl-n9,
  .ax-xl-n9 {
    left: -9rem !important; }
  .a-xl-n10 {
    top: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
    right: -10rem !important; }
  .at-xl-n10,
  .ay-xl-n10 {
    top: -10rem !important; }
  .ar-xl-n10,
  .ax-xl-n10 {
    right: -10rem !important; }
  .ab-xl-n10,
  .ay-xl-n10 {
    bottom: -10rem !important; }
  .al-xl-n10,
  .ax-xl-n10 {
    left: -10rem !important; }
  .a-xl-n15 {
    top: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
    right: -15rem !important; }
  .at-xl-n15,
  .ay-xl-n15 {
    top: -15rem !important; }
  .ar-xl-n15,
  .ax-xl-n15 {
    right: -15rem !important; }
  .ab-xl-n15,
  .ay-xl-n15 {
    bottom: -15rem !important; }
  .al-xl-n15,
  .ax-xl-n15 {
    left: -15rem !important; }
  .a-xl-n20 {
    top: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
    right: -20rem !important; }
  .at-xl-n20,
  .ay-xl-n20 {
    top: -20rem !important; }
  .ar-xl-n20,
  .ax-xl-n20 {
    right: -20rem !important; }
  .ab-xl-n20,
  .ay-xl-n20 {
    bottom: -20rem !important; }
  .al-xl-n20,
  .ax-xl-n20 {
    left: -20rem !important; }
  .a-xl-n25 {
    top: -25rem !important;
    bottom: -25rem !important;
    left: -25rem !important;
    right: -25rem !important; }
  .at-xl-n25,
  .ay-xl-n25 {
    top: -25rem !important; }
  .ar-xl-n25,
  .ax-xl-n25 {
    right: -25rem !important; }
  .ab-xl-n25,
  .ay-xl-n25 {
    bottom: -25rem !important; }
  .al-xl-n25,
  .ax-xl-n25 {
    left: -25rem !important; }
  .a-xl-n10p {
    top: -10% !important;
    bottom: -10% !important;
    left: -10% !important;
    right: -10% !important; }
  .at-xl-n10p,
  .ay-xl-n10p {
    top: -10% !important; }
  .ar-xl-n10p,
  .ax-xl-n10p {
    right: -10% !important; }
  .ab-xl-n10p,
  .ay-xl-n10p {
    bottom: -10% !important; }
  .al-xl-n10p,
  .ax-xl-n10p {
    left: -10% !important; }
  .a-xl-n15p {
    top: -15% !important;
    bottom: -15% !important;
    left: -15% !important;
    right: -15% !important; }
  .at-xl-n15p,
  .ay-xl-n15p {
    top: -15% !important; }
  .ar-xl-n15p,
  .ax-xl-n15p {
    right: -15% !important; }
  .ab-xl-n15p,
  .ay-xl-n15p {
    bottom: -15% !important; }
  .al-xl-n15p,
  .ax-xl-n15p {
    left: -15% !important; }
  .a-xl-n20p {
    top: -20% !important;
    bottom: -20% !important;
    left: -20% !important;
    right: -20% !important; }
  .at-xl-n20p,
  .ay-xl-n20p {
    top: -20% !important; }
  .ar-xl-n20p,
  .ax-xl-n20p {
    right: -20% !important; }
  .ab-xl-n20p,
  .ay-xl-n20p {
    bottom: -20% !important; }
  .al-xl-n20p,
  .ax-xl-n20p {
    left: -20% !important; }
  .a-xl-n25p {
    top: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
    right: -25% !important; }
  .at-xl-n25p,
  .ay-xl-n25p {
    top: -25% !important; }
  .ar-xl-n25p,
  .ax-xl-n25p {
    right: -25% !important; }
  .ab-xl-n25p,
  .ay-xl-n25p {
    bottom: -25% !important; }
  .al-xl-n25p,
  .ax-xl-n25p {
    left: -25% !important; }
  .a-xl-n30p {
    top: -30% !important;
    bottom: -30% !important;
    left: -30% !important;
    right: -30% !important; }
  .at-xl-n30p,
  .ay-xl-n30p {
    top: -30% !important; }
  .ar-xl-n30p,
  .ax-xl-n30p {
    right: -30% !important; }
  .ab-xl-n30p,
  .ay-xl-n30p {
    bottom: -30% !important; }
  .al-xl-n30p,
  .ax-xl-n30p {
    left: -30% !important; }
  .a-xl-n40p {
    top: -40% !important;
    bottom: -40% !important;
    left: -40% !important;
    right: -40% !important; }
  .at-xl-n40p,
  .ay-xl-n40p {
    top: -40% !important; }
  .ar-xl-n40p,
  .ax-xl-n40p {
    right: -40% !important; }
  .ab-xl-n40p,
  .ay-xl-n40p {
    bottom: -40% !important; }
  .al-xl-n40p,
  .ax-xl-n40p {
    left: -40% !important; }
  .a-xl-n50p {
    top: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
    right: -50% !important; }
  .at-xl-n50p,
  .ay-xl-n50p {
    top: -50% !important; }
  .ar-xl-n50p,
  .ax-xl-n50p {
    right: -50% !important; }
  .ab-xl-n50p,
  .ay-xl-n50p {
    bottom: -50% !important; }
  .al-xl-n50p,
  .ax-xl-n50p {
    left: -50% !important; }
  .a-xl-n60p {
    top: -60% !important;
    bottom: -60% !important;
    left: -60% !important;
    right: -60% !important; }
  .at-xl-n60p,
  .ay-xl-n60p {
    top: -60% !important; }
  .ar-xl-n60p,
  .ax-xl-n60p {
    right: -60% !important; }
  .ab-xl-n60p,
  .ay-xl-n60p {
    bottom: -60% !important; }
  .al-xl-n60p,
  .ax-xl-n60p {
    left: -60% !important; }
  .a-xl-auto {
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important; }
  .at-xl-auto,
  .ay-xl-auto {
    top: auto !important; }
  .ar-xl-auto,
  .ax-xl-auto {
    right: auto !important; }
  .ab-xl-auto,
  .ay-xl-auto {
    bottom: auto !important; }
  .al-xl-auto,
  .ax-xl-auto {
    left: auto !important; }
  .al-xl-30 {
    left: 30% !important; } }

.bg-primary {
  background-color: #f87200 !important; }

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #c55b00 !important; }

.bg-secondary {
  background-color: #8eb4e3 !important; }

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #6599d9 !important; }

.bg-success {
  background-color: #3c8b89 !important; }

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #2d6766 !important; }

.bg-info {
  background-color: #0999ac !important; }

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #066e7c !important; }

.bg-warning {
  background-color: #f2a20a !important; }

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #c18108 !important; }

.bg-danger {
  background-color: #dc3545 !important; }

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important; }

.bg-light {
  background-color: #f8f9fa !important; }

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important; }

.bg-dark {
  background-color: #161625 !important; }

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #030305 !important; }

.bg-third {
  background-color: #0999ac !important; }

a.bg-third:hover, a.bg-third:focus,
button.bg-third:hover,
button.bg-third:focus {
  background-color: #066e7c !important; }

.bg-orange {
  background-color: #f87200 !important; }

a.bg-orange:hover, a.bg-orange:focus,
button.bg-orange:hover,
button.bg-orange:focus {
  background-color: #c55b00 !important; }

.bg-light-pink {
  background-color: rgba(255, 235, 225, 0.5) !important; }

a.bg-light-pink:hover, a.bg-light-pink:focus,
button.bg-light-pink:hover,
button.bg-light-pink:focus {
  background-color: rgba(255, 201, 174, 0.5) !important; }

.bg-pink {
  background-color: #FFEBE1 !important; }

a.bg-pink:hover, a.bg-pink:focus,
button.bg-pink:hover,
button.bg-pink:focus {
  background-color: #ffc9ae !important; }

.bg-light-green {
  background-color: #4DC1A2 !important; }

a.bg-light-green:hover, a.bg-light-green:focus,
button.bg-light-green:hover,
button.bg-light-green:focus {
  background-color: #39a286 !important; }

.bg-light-orange {
  background-color: rgba(249, 154, 149, 0.3) !important; }

a.bg-light-orange:hover, a.bg-light-orange:focus,
button.bg-light-orange:hover,
button.bg-light-orange:focus {
  background-color: rgba(246, 108, 101, 0.3) !important; }

.bg-dark-green {
  background-color: #021A19 !important; }

a.bg-dark-green:hover, a.bg-dark-green:focus,
button.bg-dark-green:hover,
button.bg-dark-green:focus {
  background-color: black !important; }

.bg-footer {
  background-color: #1d1d1d !important; }

a.bg-footer:hover, a.bg-footer:focus,
button.bg-footer:hover,
button.bg-footer:focus {
  background-color: #040404 !important; }

.bg-gray {
  background-color: #f6f6f6 !important; }

a.bg-gray:hover, a.bg-gray:focus,
button.bg-gray:hover,
button.bg-gray:focus {
  background-color: #dddddd !important; }

.bg-cyan {
  background-color: #0999ac !important; }

a.bg-cyan:hover, a.bg-cyan:focus,
button.bg-cyan:hover,
button.bg-cyan:focus {
  background-color: #066e7c !important; }

.bg-gray-light {
  background-color: #f6f6f6 !important; }

a.bg-gray-light:hover, a.bg-gray-light:focus,
button.bg-gray-light:hover,
button.bg-gray-light:focus {
  background-color: #dddddd !important; }

.bg-strong {
  background-color: #5c6b80 !important; }

a.bg-strong:hover, a.bg-strong:focus,
button.bg-strong:hover,
button.bg-strong:focus {
  background-color: #475262 !important; }

.bg-pagination {
  background-color: #333 !important; }

a.bg-pagination:hover, a.bg-pagination:focus,
button.bg-pagination:hover,
button.bg-pagination:focus {
  background-color: #1a1a1a !important; }

.bg-fond-pagination {
  background-color: #f5f5f5 !important; }

a.bg-fond-pagination:hover, a.bg-fond-pagination:focus,
button.bg-fond-pagination:hover,
button.bg-fond-pagination:focus {
  background-color: gainsboro !important; }

.bg-white {
  background-color: white !important; }
  .bg-white--50 {
    background-color: white !important; }
  .bg-white--60 {
    background-color: white !important; }
  .bg-white--70 {
    background-color: white !important; }
  .bg-white--80 {
    background-color: white !important; }
  .bg-white--90 {
    background-color: white !important; }

.bg-transparent {
  background-color: transparent !important; }

.bg-size--cover {
  background-size: cover; }

.bg-size--contain {
  background-size: contain; }

.bg-position--m {
  background-position: center; }

.bg-position--tm {
  background-position: top center; }

.bg--no-repeat {
  background-repeat: no-repeat; }

.bg-shadow {
  position: relative; }
  .bg-shadow:after {
    content: ' ';
    z-index: 0;
    display: block;
    position: absolute;
    transition: all 0.2s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .bg-shadow:after {
        transition: none; } }
  .bg-shadow--50:after {
    background-color: black; }
  .bg-shadow--50:hover:after {
    background-color: black; }
  .bg-shadow--40:after {
    background-color: black; }
  .bg-shadow--40:hover:after {
    background-color: black; }

.bg-bubbles {
  background-position: top right;
  background-repeat: no-repeat; }
  @media (max-width: 1229.98px) {
    .bg-bubbles {
      background-image: none; } }

.bg-station-carebox {
  background-position: top right;
  background-repeat: no-repeat; }

.backg {
  background-repeat: no-repeat;
  background-position: calc(100% + 200px) bottom;
  background-position: calc(100% + 300px) bottom; }

.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; } }

.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; }

.a-unset {
  top: unset !important;
  bottom: unset !important;
  left: unset !important;
  right: unset !important; }

.a-0 {
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important; }

.at-0,
.ay-0 {
  top: 0 !important; }

.ar-0,
.ax-0 {
  right: 0 !important; }

.ab-0,
.ay-0 {
  bottom: 0 !important; }

.al-0,
.ax-0 {
  left: 0 !important; }

.a-1 {
  top: 0.25rem !important;
  bottom: 0.25rem !important;
  left: 0.25rem !important;
  right: 0.25rem !important; }

.at-1,
.ay-1 {
  top: 0.25rem !important; }

.ar-1,
.ax-1 {
  right: 0.25rem !important; }

.ab-1,
.ay-1 {
  bottom: 0.25rem !important; }

.al-1,
.ax-1 {
  left: 0.25rem !important; }

.a-2 {
  top: 0.5rem !important;
  bottom: 0.5rem !important;
  left: 0.5rem !important;
  right: 0.5rem !important; }

.at-2,
.ay-2 {
  top: 0.5rem !important; }

.ar-2,
.ax-2 {
  right: 0.5rem !important; }

.ab-2,
.ay-2 {
  bottom: 0.5rem !important; }

.al-2,
.ax-2 {
  left: 0.5rem !important; }

.a-3 {
  top: 1rem !important;
  bottom: 1rem !important;
  left: 1rem !important;
  right: 1rem !important; }

.at-3,
.ay-3 {
  top: 1rem !important; }

.ar-3,
.ax-3 {
  right: 1rem !important; }

.ab-3,
.ay-3 {
  bottom: 1rem !important; }

.al-3,
.ax-3 {
  left: 1rem !important; }

.a-4 {
  top: 1.5rem !important;
  bottom: 1.5rem !important;
  left: 1.5rem !important;
  right: 1.5rem !important; }

.at-4,
.ay-4 {
  top: 1.5rem !important; }

.ar-4,
.ax-4 {
  right: 1.5rem !important; }

.ab-4,
.ay-4 {
  bottom: 1.5rem !important; }

.al-4,
.ax-4 {
  left: 1.5rem !important; }

.a-5 {
  top: 3rem !important;
  bottom: 3rem !important;
  left: 3rem !important;
  right: 3rem !important; }

.at-5,
.ay-5 {
  top: 3rem !important; }

.ar-5,
.ax-5 {
  right: 3rem !important; }

.ab-5,
.ay-5 {
  bottom: 3rem !important; }

.al-5,
.ax-5 {
  left: 3rem !important; }

.a-4-5 {
  top: 4.5rem !important;
  bottom: 4.5rem !important;
  left: 4.5rem !important;
  right: 4.5rem !important; }

.at-4-5,
.ay-4-5 {
  top: 4.5rem !important; }

.ar-4-5,
.ax-4-5 {
  right: 4.5rem !important; }

.ab-4-5,
.ay-4-5 {
  bottom: 4.5rem !important; }

.al-4-5,
.ax-4-5 {
  left: 4.5rem !important; }

.a-5-5 {
  top: 4rem !important;
  bottom: 4rem !important;
  left: 4rem !important;
  right: 4rem !important; }

.at-5-5,
.ay-5-5 {
  top: 4rem !important; }

.ar-5-5,
.ax-5-5 {
  right: 4rem !important; }

.ab-5-5,
.ay-5-5 {
  bottom: 4rem !important; }

.al-5-5,
.ax-5-5 {
  left: 4rem !important; }

.a-6 {
  top: 6rem !important;
  bottom: 6rem !important;
  left: 6rem !important;
  right: 6rem !important; }

.at-6,
.ay-6 {
  top: 6rem !important; }

.ar-6,
.ax-6 {
  right: 6rem !important; }

.ab-6,
.ay-6 {
  bottom: 6rem !important; }

.al-6,
.ax-6 {
  left: 6rem !important; }

.a-7 {
  top: 7rem !important;
  bottom: 7rem !important;
  left: 7rem !important;
  right: 7rem !important; }

.at-7,
.ay-7 {
  top: 7rem !important; }

.ar-7,
.ax-7 {
  right: 7rem !important; }

.ab-7,
.ay-7 {
  bottom: 7rem !important; }

.al-7,
.ax-7 {
  left: 7rem !important; }

.a-8 {
  top: 8rem !important;
  bottom: 8rem !important;
  left: 8rem !important;
  right: 8rem !important; }

.at-8,
.ay-8 {
  top: 8rem !important; }

.ar-8,
.ax-8 {
  right: 8rem !important; }

.ab-8,
.ay-8 {
  bottom: 8rem !important; }

.al-8,
.ax-8 {
  left: 8rem !important; }

.a-9 {
  top: 9rem !important;
  bottom: 9rem !important;
  left: 9rem !important;
  right: 9rem !important; }

.at-9,
.ay-9 {
  top: 9rem !important; }

.ar-9,
.ax-9 {
  right: 9rem !important; }

.ab-9,
.ay-9 {
  bottom: 9rem !important; }

.al-9,
.ax-9 {
  left: 9rem !important; }

.a-10 {
  top: 10rem !important;
  bottom: 10rem !important;
  left: 10rem !important;
  right: 10rem !important; }

.at-10,
.ay-10 {
  top: 10rem !important; }

.ar-10,
.ax-10 {
  right: 10rem !important; }

.ab-10,
.ay-10 {
  bottom: 10rem !important; }

.al-10,
.ax-10 {
  left: 10rem !important; }

.a-15 {
  top: 15rem !important;
  bottom: 15rem !important;
  left: 15rem !important;
  right: 15rem !important; }

.at-15,
.ay-15 {
  top: 15rem !important; }

.ar-15,
.ax-15 {
  right: 15rem !important; }

.ab-15,
.ay-15 {
  bottom: 15rem !important; }

.al-15,
.ax-15 {
  left: 15rem !important; }

.a-20 {
  top: 20rem !important;
  bottom: 20rem !important;
  left: 20rem !important;
  right: 20rem !important; }

.at-20,
.ay-20 {
  top: 20rem !important; }

.ar-20,
.ax-20 {
  right: 20rem !important; }

.ab-20,
.ay-20 {
  bottom: 20rem !important; }

.al-20,
.ax-20 {
  left: 20rem !important; }

.a-25 {
  top: 25rem !important;
  bottom: 25rem !important;
  left: 25rem !important;
  right: 25rem !important; }

.at-25,
.ay-25 {
  top: 25rem !important; }

.ar-25,
.ax-25 {
  right: 25rem !important; }

.ab-25,
.ay-25 {
  bottom: 25rem !important; }

.al-25,
.ax-25 {
  left: 25rem !important; }

.a-10p {
  top: 10% !important;
  bottom: 10% !important;
  left: 10% !important;
  right: 10% !important; }

.at-10p,
.ay-10p {
  top: 10% !important; }

.ar-10p,
.ax-10p {
  right: 10% !important; }

.ab-10p,
.ay-10p {
  bottom: 10% !important; }

.al-10p,
.ax-10p {
  left: 10% !important; }

.a-15p {
  top: 15% !important;
  bottom: 15% !important;
  left: 15% !important;
  right: 15% !important; }

.at-15p,
.ay-15p {
  top: 15% !important; }

.ar-15p,
.ax-15p {
  right: 15% !important; }

.ab-15p,
.ay-15p {
  bottom: 15% !important; }

.al-15p,
.ax-15p {
  left: 15% !important; }

.a-20p {
  top: 20% !important;
  bottom: 20% !important;
  left: 20% !important;
  right: 20% !important; }

.at-20p,
.ay-20p {
  top: 20% !important; }

.ar-20p,
.ax-20p {
  right: 20% !important; }

.ab-20p,
.ay-20p {
  bottom: 20% !important; }

.al-20p,
.ax-20p {
  left: 20% !important; }

.a-25p {
  top: 25% !important;
  bottom: 25% !important;
  left: 25% !important;
  right: 25% !important; }

.at-25p,
.ay-25p {
  top: 25% !important; }

.ar-25p,
.ax-25p {
  right: 25% !important; }

.ab-25p,
.ay-25p {
  bottom: 25% !important; }

.al-25p,
.ax-25p {
  left: 25% !important; }

.a-30p {
  top: 30% !important;
  bottom: 30% !important;
  left: 30% !important;
  right: 30% !important; }

.at-30p,
.ay-30p {
  top: 30% !important; }

.ar-30p,
.ax-30p {
  right: 30% !important; }

.ab-30p,
.ay-30p {
  bottom: 30% !important; }

.al-30p,
.ax-30p {
  left: 30% !important; }

.a-40p {
  top: 40% !important;
  bottom: 40% !important;
  left: 40% !important;
  right: 40% !important; }

.at-40p,
.ay-40p {
  top: 40% !important; }

.ar-40p,
.ax-40p {
  right: 40% !important; }

.ab-40p,
.ay-40p {
  bottom: 40% !important; }

.al-40p,
.ax-40p {
  left: 40% !important; }

.a-50p {
  top: 50% !important;
  bottom: 50% !important;
  left: 50% !important;
  right: 50% !important; }

.at-50p,
.ay-50p {
  top: 50% !important; }

.ar-50p,
.ax-50p {
  right: 50% !important; }

.ab-50p,
.ay-50p {
  bottom: 50% !important; }

.al-50p,
.ax-50p {
  left: 50% !important; }

.a-60p {
  top: 60% !important;
  bottom: 60% !important;
  left: 60% !important;
  right: 60% !important; }

.at-60p,
.ay-60p {
  top: 60% !important; }

.ar-60p,
.ax-60p {
  right: 60% !important; }

.ab-60p,
.ay-60p {
  bottom: 60% !important; }

.al-60p,
.ax-60p {
  left: 60% !important; }

.a-n1 {
  top: -0.25rem !important;
  bottom: -0.25rem !important;
  left: -0.25rem !important;
  right: -0.25rem !important; }

.at-n1,
.ay-n1 {
  top: -0.25rem !important; }

.ar-n1,
.ax-n1 {
  right: -0.25rem !important; }

.ab-n1,
.ay-n1 {
  bottom: -0.25rem !important; }

.al-n1,
.ax-n1 {
  left: -0.25rem !important; }

.a-n2 {
  top: -0.5rem !important;
  bottom: -0.5rem !important;
  left: -0.5rem !important;
  right: -0.5rem !important; }

.at-n2,
.ay-n2 {
  top: -0.5rem !important; }

.ar-n2,
.ax-n2 {
  right: -0.5rem !important; }

.ab-n2,
.ay-n2 {
  bottom: -0.5rem !important; }

.al-n2,
.ax-n2 {
  left: -0.5rem !important; }

.a-n3 {
  top: -1rem !important;
  bottom: -1rem !important;
  left: -1rem !important;
  right: -1rem !important; }

.at-n3,
.ay-n3 {
  top: -1rem !important; }

.ar-n3,
.ax-n3 {
  right: -1rem !important; }

.ab-n3,
.ay-n3 {
  bottom: -1rem !important; }

.al-n3,
.ax-n3 {
  left: -1rem !important; }

.a-n4 {
  top: -1.5rem !important;
  bottom: -1.5rem !important;
  left: -1.5rem !important;
  right: -1.5rem !important; }

.at-n4,
.ay-n4 {
  top: -1.5rem !important; }

.ar-n4,
.ax-n4 {
  right: -1.5rem !important; }

.ab-n4,
.ay-n4 {
  bottom: -1.5rem !important; }

.al-n4,
.ax-n4 {
  left: -1.5rem !important; }

.a-n5 {
  top: -3rem !important;
  bottom: -3rem !important;
  left: -3rem !important;
  right: -3rem !important; }

.at-n5,
.ay-n5 {
  top: -3rem !important; }

.ar-n5,
.ax-n5 {
  right: -3rem !important; }

.ab-n5,
.ay-n5 {
  bottom: -3rem !important; }

.al-n5,
.ax-n5 {
  left: -3rem !important; }

.a-n4-5 {
  top: -4.5rem !important;
  bottom: -4.5rem !important;
  left: -4.5rem !important;
  right: -4.5rem !important; }

.at-n4-5,
.ay-n4-5 {
  top: -4.5rem !important; }

.ar-n4-5,
.ax-n4-5 {
  right: -4.5rem !important; }

.ab-n4-5,
.ay-n4-5 {
  bottom: -4.5rem !important; }

.al-n4-5,
.ax-n4-5 {
  left: -4.5rem !important; }

.a-n5-5 {
  top: -4rem !important;
  bottom: -4rem !important;
  left: -4rem !important;
  right: -4rem !important; }

.at-n5-5,
.ay-n5-5 {
  top: -4rem !important; }

.ar-n5-5,
.ax-n5-5 {
  right: -4rem !important; }

.ab-n5-5,
.ay-n5-5 {
  bottom: -4rem !important; }

.al-n5-5,
.ax-n5-5 {
  left: -4rem !important; }

.a-n6 {
  top: -6rem !important;
  bottom: -6rem !important;
  left: -6rem !important;
  right: -6rem !important; }

.at-n6,
.ay-n6 {
  top: -6rem !important; }

.ar-n6,
.ax-n6 {
  right: -6rem !important; }

.ab-n6,
.ay-n6 {
  bottom: -6rem !important; }

.al-n6,
.ax-n6 {
  left: -6rem !important; }

.a-n7 {
  top: -7rem !important;
  bottom: -7rem !important;
  left: -7rem !important;
  right: -7rem !important; }

.at-n7,
.ay-n7 {
  top: -7rem !important; }

.ar-n7,
.ax-n7 {
  right: -7rem !important; }

.ab-n7,
.ay-n7 {
  bottom: -7rem !important; }

.al-n7,
.ax-n7 {
  left: -7rem !important; }

.a-n8 {
  top: -8rem !important;
  bottom: -8rem !important;
  left: -8rem !important;
  right: -8rem !important; }

.at-n8,
.ay-n8 {
  top: -8rem !important; }

.ar-n8,
.ax-n8 {
  right: -8rem !important; }

.ab-n8,
.ay-n8 {
  bottom: -8rem !important; }

.al-n8,
.ax-n8 {
  left: -8rem !important; }

.a-n9 {
  top: -9rem !important;
  bottom: -9rem !important;
  left: -9rem !important;
  right: -9rem !important; }

.at-n9,
.ay-n9 {
  top: -9rem !important; }

.ar-n9,
.ax-n9 {
  right: -9rem !important; }

.ab-n9,
.ay-n9 {
  bottom: -9rem !important; }

.al-n9,
.ax-n9 {
  left: -9rem !important; }

.a-n10 {
  top: -10rem !important;
  bottom: -10rem !important;
  left: -10rem !important;
  right: -10rem !important; }

.at-n10,
.ay-n10 {
  top: -10rem !important; }

.ar-n10,
.ax-n10 {
  right: -10rem !important; }

.ab-n10,
.ay-n10 {
  bottom: -10rem !important; }

.al-n10,
.ax-n10 {
  left: -10rem !important; }

.a-n15 {
  top: -15rem !important;
  bottom: -15rem !important;
  left: -15rem !important;
  right: -15rem !important; }

.at-n15,
.ay-n15 {
  top: -15rem !important; }

.ar-n15,
.ax-n15 {
  right: -15rem !important; }

.ab-n15,
.ay-n15 {
  bottom: -15rem !important; }

.al-n15,
.ax-n15 {
  left: -15rem !important; }

.a-n20 {
  top: -20rem !important;
  bottom: -20rem !important;
  left: -20rem !important;
  right: -20rem !important; }

.at-n20,
.ay-n20 {
  top: -20rem !important; }

.ar-n20,
.ax-n20 {
  right: -20rem !important; }

.ab-n20,
.ay-n20 {
  bottom: -20rem !important; }

.al-n20,
.ax-n20 {
  left: -20rem !important; }

.a-n25 {
  top: -25rem !important;
  bottom: -25rem !important;
  left: -25rem !important;
  right: -25rem !important; }

.at-n25,
.ay-n25 {
  top: -25rem !important; }

.ar-n25,
.ax-n25 {
  right: -25rem !important; }

.ab-n25,
.ay-n25 {
  bottom: -25rem !important; }

.al-n25,
.ax-n25 {
  left: -25rem !important; }

.a-n10p {
  top: -10% !important;
  bottom: -10% !important;
  left: -10% !important;
  right: -10% !important; }

.at-n10p,
.ay-n10p {
  top: -10% !important; }

.ar-n10p,
.ax-n10p {
  right: -10% !important; }

.ab-n10p,
.ay-n10p {
  bottom: -10% !important; }

.al-n10p,
.ax-n10p {
  left: -10% !important; }

.a-n15p {
  top: -15% !important;
  bottom: -15% !important;
  left: -15% !important;
  right: -15% !important; }

.at-n15p,
.ay-n15p {
  top: -15% !important; }

.ar-n15p,
.ax-n15p {
  right: -15% !important; }

.ab-n15p,
.ay-n15p {
  bottom: -15% !important; }

.al-n15p,
.ax-n15p {
  left: -15% !important; }

.a-n20p {
  top: -20% !important;
  bottom: -20% !important;
  left: -20% !important;
  right: -20% !important; }

.at-n20p,
.ay-n20p {
  top: -20% !important; }

.ar-n20p,
.ax-n20p {
  right: -20% !important; }

.ab-n20p,
.ay-n20p {
  bottom: -20% !important; }

.al-n20p,
.ax-n20p {
  left: -20% !important; }

.a-n25p {
  top: -25% !important;
  bottom: -25% !important;
  left: -25% !important;
  right: -25% !important; }

.at-n25p,
.ay-n25p {
  top: -25% !important; }

.ar-n25p,
.ax-n25p {
  right: -25% !important; }

.ab-n25p,
.ay-n25p {
  bottom: -25% !important; }

.al-n25p,
.ax-n25p {
  left: -25% !important; }

.a-n30p {
  top: -30% !important;
  bottom: -30% !important;
  left: -30% !important;
  right: -30% !important; }

.at-n30p,
.ay-n30p {
  top: -30% !important; }

.ar-n30p,
.ax-n30p {
  right: -30% !important; }

.ab-n30p,
.ay-n30p {
  bottom: -30% !important; }

.al-n30p,
.ax-n30p {
  left: -30% !important; }

.a-n40p {
  top: -40% !important;
  bottom: -40% !important;
  left: -40% !important;
  right: -40% !important; }

.at-n40p,
.ay-n40p {
  top: -40% !important; }

.ar-n40p,
.ax-n40p {
  right: -40% !important; }

.ab-n40p,
.ay-n40p {
  bottom: -40% !important; }

.al-n40p,
.ax-n40p {
  left: -40% !important; }

.a-n50p {
  top: -50% !important;
  bottom: -50% !important;
  left: -50% !important;
  right: -50% !important; }

.at-n50p,
.ay-n50p {
  top: -50% !important; }

.ar-n50p,
.ax-n50p {
  right: -50% !important; }

.ab-n50p,
.ay-n50p {
  bottom: -50% !important; }

.al-n50p,
.ax-n50p {
  left: -50% !important; }

.a-n60p {
  top: -60% !important;
  bottom: -60% !important;
  left: -60% !important;
  right: -60% !important; }

.at-n60p,
.ay-n60p {
  top: -60% !important; }

.ar-n60p,
.ax-n60p {
  right: -60% !important; }

.ab-n60p,
.ay-n60p {
  bottom: -60% !important; }

.al-n60p,
.ax-n60p {
  left: -60% !important; }

.a-auto {
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important; }

.at-auto,
.ay-auto {
  top: auto !important; }

.ar-auto,
.ax-auto {
  right: auto !important; }

.ab-auto,
.ay-auto {
  bottom: auto !important; }

.al-auto,
.ax-auto {
  left: auto !important; }

.al-30 {
  left: 30% !important; }

@media (min-width: 576px) {
  .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; }
  .a-sm-unset {
    top: unset !important;
    bottom: unset !important;
    left: unset !important;
    right: unset !important; }
  .a-sm-0 {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important; }
  .at-sm-0,
  .ay-sm-0 {
    top: 0 !important; }
  .ar-sm-0,
  .ax-sm-0 {
    right: 0 !important; }
  .ab-sm-0,
  .ay-sm-0 {
    bottom: 0 !important; }
  .al-sm-0,
  .ax-sm-0 {
    left: 0 !important; }
  .a-sm-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
    right: 0.25rem !important; }
  .at-sm-1,
  .ay-sm-1 {
    top: 0.25rem !important; }
  .ar-sm-1,
  .ax-sm-1 {
    right: 0.25rem !important; }
  .ab-sm-1,
  .ay-sm-1 {
    bottom: 0.25rem !important; }
  .al-sm-1,
  .ax-sm-1 {
    left: 0.25rem !important; }
  .a-sm-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
    right: 0.5rem !important; }
  .at-sm-2,
  .ay-sm-2 {
    top: 0.5rem !important; }
  .ar-sm-2,
  .ax-sm-2 {
    right: 0.5rem !important; }
  .ab-sm-2,
  .ay-sm-2 {
    bottom: 0.5rem !important; }
  .al-sm-2,
  .ax-sm-2 {
    left: 0.5rem !important; }
  .a-sm-3 {
    top: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
    right: 1rem !important; }
  .at-sm-3,
  .ay-sm-3 {
    top: 1rem !important; }
  .ar-sm-3,
  .ax-sm-3 {
    right: 1rem !important; }
  .ab-sm-3,
  .ay-sm-3 {
    bottom: 1rem !important; }
  .al-sm-3,
  .ax-sm-3 {
    left: 1rem !important; }
  .a-sm-4 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
    right: 1.5rem !important; }
  .at-sm-4,
  .ay-sm-4 {
    top: 1.5rem !important; }
  .ar-sm-4,
  .ax-sm-4 {
    right: 1.5rem !important; }
  .ab-sm-4,
  .ay-sm-4 {
    bottom: 1.5rem !important; }
  .al-sm-4,
  .ax-sm-4 {
    left: 1.5rem !important; }
  .a-sm-5 {
    top: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
    right: 3rem !important; }
  .at-sm-5,
  .ay-sm-5 {
    top: 3rem !important; }
  .ar-sm-5,
  .ax-sm-5 {
    right: 3rem !important; }
  .ab-sm-5,
  .ay-sm-5 {
    bottom: 3rem !important; }
  .al-sm-5,
  .ax-sm-5 {
    left: 3rem !important; }
  .a-sm-4-5 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
    right: 4.5rem !important; }
  .at-sm-4-5,
  .ay-sm-4-5 {
    top: 4.5rem !important; }
  .ar-sm-4-5,
  .ax-sm-4-5 {
    right: 4.5rem !important; }
  .ab-sm-4-5,
  .ay-sm-4-5 {
    bottom: 4.5rem !important; }
  .al-sm-4-5,
  .ax-sm-4-5 {
    left: 4.5rem !important; }
  .a-sm-5-5 {
    top: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
    right: 4rem !important; }
  .at-sm-5-5,
  .ay-sm-5-5 {
    top: 4rem !important; }
  .ar-sm-5-5,
  .ax-sm-5-5 {
    right: 4rem !important; }
  .ab-sm-5-5,
  .ay-sm-5-5 {
    bottom: 4rem !important; }
  .al-sm-5-5,
  .ax-sm-5-5 {
    left: 4rem !important; }
  .a-sm-6 {
    top: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
    right: 6rem !important; }
  .at-sm-6,
  .ay-sm-6 {
    top: 6rem !important; }
  .ar-sm-6,
  .ax-sm-6 {
    right: 6rem !important; }
  .ab-sm-6,
  .ay-sm-6 {
    bottom: 6rem !important; }
  .al-sm-6,
  .ax-sm-6 {
    left: 6rem !important; }
  .a-sm-7 {
    top: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
    right: 7rem !important; }
  .at-sm-7,
  .ay-sm-7 {
    top: 7rem !important; }
  .ar-sm-7,
  .ax-sm-7 {
    right: 7rem !important; }
  .ab-sm-7,
  .ay-sm-7 {
    bottom: 7rem !important; }
  .al-sm-7,
  .ax-sm-7 {
    left: 7rem !important; }
  .a-sm-8 {
    top: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
    right: 8rem !important; }
  .at-sm-8,
  .ay-sm-8 {
    top: 8rem !important; }
  .ar-sm-8,
  .ax-sm-8 {
    right: 8rem !important; }
  .ab-sm-8,
  .ay-sm-8 {
    bottom: 8rem !important; }
  .al-sm-8,
  .ax-sm-8 {
    left: 8rem !important; }
  .a-sm-9 {
    top: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
    right: 9rem !important; }
  .at-sm-9,
  .ay-sm-9 {
    top: 9rem !important; }
  .ar-sm-9,
  .ax-sm-9 {
    right: 9rem !important; }
  .ab-sm-9,
  .ay-sm-9 {
    bottom: 9rem !important; }
  .al-sm-9,
  .ax-sm-9 {
    left: 9rem !important; }
  .a-sm-10 {
    top: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
    right: 10rem !important; }
  .at-sm-10,
  .ay-sm-10 {
    top: 10rem !important; }
  .ar-sm-10,
  .ax-sm-10 {
    right: 10rem !important; }
  .ab-sm-10,
  .ay-sm-10 {
    bottom: 10rem !important; }
  .al-sm-10,
  .ax-sm-10 {
    left: 10rem !important; }
  .a-sm-15 {
    top: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
    right: 15rem !important; }
  .at-sm-15,
  .ay-sm-15 {
    top: 15rem !important; }
  .ar-sm-15,
  .ax-sm-15 {
    right: 15rem !important; }
  .ab-sm-15,
  .ay-sm-15 {
    bottom: 15rem !important; }
  .al-sm-15,
  .ax-sm-15 {
    left: 15rem !important; }
  .a-sm-20 {
    top: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
    right: 20rem !important; }
  .at-sm-20,
  .ay-sm-20 {
    top: 20rem !important; }
  .ar-sm-20,
  .ax-sm-20 {
    right: 20rem !important; }
  .ab-sm-20,
  .ay-sm-20 {
    bottom: 20rem !important; }
  .al-sm-20,
  .ax-sm-20 {
    left: 20rem !important; }
  .a-sm-25 {
    top: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
    right: 25rem !important; }
  .at-sm-25,
  .ay-sm-25 {
    top: 25rem !important; }
  .ar-sm-25,
  .ax-sm-25 {
    right: 25rem !important; }
  .ab-sm-25,
  .ay-sm-25 {
    bottom: 25rem !important; }
  .al-sm-25,
  .ax-sm-25 {
    left: 25rem !important; }
  .a-sm-10p {
    top: 10% !important;
    bottom: 10% !important;
    left: 10% !important;
    right: 10% !important; }
  .at-sm-10p,
  .ay-sm-10p {
    top: 10% !important; }
  .ar-sm-10p,
  .ax-sm-10p {
    right: 10% !important; }
  .ab-sm-10p,
  .ay-sm-10p {
    bottom: 10% !important; }
  .al-sm-10p,
  .ax-sm-10p {
    left: 10% !important; }
  .a-sm-15p {
    top: 15% !important;
    bottom: 15% !important;
    left: 15% !important;
    right: 15% !important; }
  .at-sm-15p,
  .ay-sm-15p {
    top: 15% !important; }
  .ar-sm-15p,
  .ax-sm-15p {
    right: 15% !important; }
  .ab-sm-15p,
  .ay-sm-15p {
    bottom: 15% !important; }
  .al-sm-15p,
  .ax-sm-15p {
    left: 15% !important; }
  .a-sm-20p {
    top: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
    right: 20% !important; }
  .at-sm-20p,
  .ay-sm-20p {
    top: 20% !important; }
  .ar-sm-20p,
  .ax-sm-20p {
    right: 20% !important; }
  .ab-sm-20p,
  .ay-sm-20p {
    bottom: 20% !important; }
  .al-sm-20p,
  .ax-sm-20p {
    left: 20% !important; }
  .a-sm-25p {
    top: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
    right: 25% !important; }
  .at-sm-25p,
  .ay-sm-25p {
    top: 25% !important; }
  .ar-sm-25p,
  .ax-sm-25p {
    right: 25% !important; }
  .ab-sm-25p,
  .ay-sm-25p {
    bottom: 25% !important; }
  .al-sm-25p,
  .ax-sm-25p {
    left: 25% !important; }
  .a-sm-30p {
    top: 30% !important;
    bottom: 30% !important;
    left: 30% !important;
    right: 30% !important; }
  .at-sm-30p,
  .ay-sm-30p {
    top: 30% !important; }
  .ar-sm-30p,
  .ax-sm-30p {
    right: 30% !important; }
  .ab-sm-30p,
  .ay-sm-30p {
    bottom: 30% !important; }
  .al-sm-30p,
  .ax-sm-30p {
    left: 30% !important; }
  .a-sm-40p {
    top: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
    right: 40% !important; }
  .at-sm-40p,
  .ay-sm-40p {
    top: 40% !important; }
  .ar-sm-40p,
  .ax-sm-40p {
    right: 40% !important; }
  .ab-sm-40p,
  .ay-sm-40p {
    bottom: 40% !important; }
  .al-sm-40p,
  .ax-sm-40p {
    left: 40% !important; }
  .a-sm-50p {
    top: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
    right: 50% !important; }
  .at-sm-50p,
  .ay-sm-50p {
    top: 50% !important; }
  .ar-sm-50p,
  .ax-sm-50p {
    right: 50% !important; }
  .ab-sm-50p,
  .ay-sm-50p {
    bottom: 50% !important; }
  .al-sm-50p,
  .ax-sm-50p {
    left: 50% !important; }
  .a-sm-60p {
    top: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
    right: 60% !important; }
  .at-sm-60p,
  .ay-sm-60p {
    top: 60% !important; }
  .ar-sm-60p,
  .ax-sm-60p {
    right: 60% !important; }
  .ab-sm-60p,
  .ay-sm-60p {
    bottom: 60% !important; }
  .al-sm-60p,
  .ax-sm-60p {
    left: 60% !important; }
  .a-sm-n1 {
    top: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
    right: -0.25rem !important; }
  .at-sm-n1,
  .ay-sm-n1 {
    top: -0.25rem !important; }
  .ar-sm-n1,
  .ax-sm-n1 {
    right: -0.25rem !important; }
  .ab-sm-n1,
  .ay-sm-n1 {
    bottom: -0.25rem !important; }
  .al-sm-n1,
  .ax-sm-n1 {
    left: -0.25rem !important; }
  .a-sm-n2 {
    top: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
    right: -0.5rem !important; }
  .at-sm-n2,
  .ay-sm-n2 {
    top: -0.5rem !important; }
  .ar-sm-n2,
  .ax-sm-n2 {
    right: -0.5rem !important; }
  .ab-sm-n2,
  .ay-sm-n2 {
    bottom: -0.5rem !important; }
  .al-sm-n2,
  .ax-sm-n2 {
    left: -0.5rem !important; }
  .a-sm-n3 {
    top: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
    right: -1rem !important; }
  .at-sm-n3,
  .ay-sm-n3 {
    top: -1rem !important; }
  .ar-sm-n3,
  .ax-sm-n3 {
    right: -1rem !important; }
  .ab-sm-n3,
  .ay-sm-n3 {
    bottom: -1rem !important; }
  .al-sm-n3,
  .ax-sm-n3 {
    left: -1rem !important; }
  .a-sm-n4 {
    top: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
    right: -1.5rem !important; }
  .at-sm-n4,
  .ay-sm-n4 {
    top: -1.5rem !important; }
  .ar-sm-n4,
  .ax-sm-n4 {
    right: -1.5rem !important; }
  .ab-sm-n4,
  .ay-sm-n4 {
    bottom: -1.5rem !important; }
  .al-sm-n4,
  .ax-sm-n4 {
    left: -1.5rem !important; }
  .a-sm-n5 {
    top: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
    right: -3rem !important; }
  .at-sm-n5,
  .ay-sm-n5 {
    top: -3rem !important; }
  .ar-sm-n5,
  .ax-sm-n5 {
    right: -3rem !important; }
  .ab-sm-n5,
  .ay-sm-n5 {
    bottom: -3rem !important; }
  .al-sm-n5,
  .ax-sm-n5 {
    left: -3rem !important; }
  .a-sm-n4-5 {
    top: -4.5rem !important;
    bottom: -4.5rem !important;
    left: -4.5rem !important;
    right: -4.5rem !important; }
  .at-sm-n4-5,
  .ay-sm-n4-5 {
    top: -4.5rem !important; }
  .ar-sm-n4-5,
  .ax-sm-n4-5 {
    right: -4.5rem !important; }
  .ab-sm-n4-5,
  .ay-sm-n4-5 {
    bottom: -4.5rem !important; }
  .al-sm-n4-5,
  .ax-sm-n4-5 {
    left: -4.5rem !important; }
  .a-sm-n5-5 {
    top: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
    right: -4rem !important; }
  .at-sm-n5-5,
  .ay-sm-n5-5 {
    top: -4rem !important; }
  .ar-sm-n5-5,
  .ax-sm-n5-5 {
    right: -4rem !important; }
  .ab-sm-n5-5,
  .ay-sm-n5-5 {
    bottom: -4rem !important; }
  .al-sm-n5-5,
  .ax-sm-n5-5 {
    left: -4rem !important; }
  .a-sm-n6 {
    top: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
    right: -6rem !important; }
  .at-sm-n6,
  .ay-sm-n6 {
    top: -6rem !important; }
  .ar-sm-n6,
  .ax-sm-n6 {
    right: -6rem !important; }
  .ab-sm-n6,
  .ay-sm-n6 {
    bottom: -6rem !important; }
  .al-sm-n6,
  .ax-sm-n6 {
    left: -6rem !important; }
  .a-sm-n7 {
    top: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
    right: -7rem !important; }
  .at-sm-n7,
  .ay-sm-n7 {
    top: -7rem !important; }
  .ar-sm-n7,
  .ax-sm-n7 {
    right: -7rem !important; }
  .ab-sm-n7,
  .ay-sm-n7 {
    bottom: -7rem !important; }
  .al-sm-n7,
  .ax-sm-n7 {
    left: -7rem !important; }
  .a-sm-n8 {
    top: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
    right: -8rem !important; }
  .at-sm-n8,
  .ay-sm-n8 {
    top: -8rem !important; }
  .ar-sm-n8,
  .ax-sm-n8 {
    right: -8rem !important; }
  .ab-sm-n8,
  .ay-sm-n8 {
    bottom: -8rem !important; }
  .al-sm-n8,
  .ax-sm-n8 {
    left: -8rem !important; }
  .a-sm-n9 {
    top: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
    right: -9rem !important; }
  .at-sm-n9,
  .ay-sm-n9 {
    top: -9rem !important; }
  .ar-sm-n9,
  .ax-sm-n9 {
    right: -9rem !important; }
  .ab-sm-n9,
  .ay-sm-n9 {
    bottom: -9rem !important; }
  .al-sm-n9,
  .ax-sm-n9 {
    left: -9rem !important; }
  .a-sm-n10 {
    top: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
    right: -10rem !important; }
  .at-sm-n10,
  .ay-sm-n10 {
    top: -10rem !important; }
  .ar-sm-n10,
  .ax-sm-n10 {
    right: -10rem !important; }
  .ab-sm-n10,
  .ay-sm-n10 {
    bottom: -10rem !important; }
  .al-sm-n10,
  .ax-sm-n10 {
    left: -10rem !important; }
  .a-sm-n15 {
    top: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
    right: -15rem !important; }
  .at-sm-n15,
  .ay-sm-n15 {
    top: -15rem !important; }
  .ar-sm-n15,
  .ax-sm-n15 {
    right: -15rem !important; }
  .ab-sm-n15,
  .ay-sm-n15 {
    bottom: -15rem !important; }
  .al-sm-n15,
  .ax-sm-n15 {
    left: -15rem !important; }
  .a-sm-n20 {
    top: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
    right: -20rem !important; }
  .at-sm-n20,
  .ay-sm-n20 {
    top: -20rem !important; }
  .ar-sm-n20,
  .ax-sm-n20 {
    right: -20rem !important; }
  .ab-sm-n20,
  .ay-sm-n20 {
    bottom: -20rem !important; }
  .al-sm-n20,
  .ax-sm-n20 {
    left: -20rem !important; }
  .a-sm-n25 {
    top: -25rem !important;
    bottom: -25rem !important;
    left: -25rem !important;
    right: -25rem !important; }
  .at-sm-n25,
  .ay-sm-n25 {
    top: -25rem !important; }
  .ar-sm-n25,
  .ax-sm-n25 {
    right: -25rem !important; }
  .ab-sm-n25,
  .ay-sm-n25 {
    bottom: -25rem !important; }
  .al-sm-n25,
  .ax-sm-n25 {
    left: -25rem !important; }
  .a-sm-n10p {
    top: -10% !important;
    bottom: -10% !important;
    left: -10% !important;
    right: -10% !important; }
  .at-sm-n10p,
  .ay-sm-n10p {
    top: -10% !important; }
  .ar-sm-n10p,
  .ax-sm-n10p {
    right: -10% !important; }
  .ab-sm-n10p,
  .ay-sm-n10p {
    bottom: -10% !important; }
  .al-sm-n10p,
  .ax-sm-n10p {
    left: -10% !important; }
  .a-sm-n15p {
    top: -15% !important;
    bottom: -15% !important;
    left: -15% !important;
    right: -15% !important; }
  .at-sm-n15p,
  .ay-sm-n15p {
    top: -15% !important; }
  .ar-sm-n15p,
  .ax-sm-n15p {
    right: -15% !important; }
  .ab-sm-n15p,
  .ay-sm-n15p {
    bottom: -15% !important; }
  .al-sm-n15p,
  .ax-sm-n15p {
    left: -15% !important; }
  .a-sm-n20p {
    top: -20% !important;
    bottom: -20% !important;
    left: -20% !important;
    right: -20% !important; }
  .at-sm-n20p,
  .ay-sm-n20p {
    top: -20% !important; }
  .ar-sm-n20p,
  .ax-sm-n20p {
    right: -20% !important; }
  .ab-sm-n20p,
  .ay-sm-n20p {
    bottom: -20% !important; }
  .al-sm-n20p,
  .ax-sm-n20p {
    left: -20% !important; }
  .a-sm-n25p {
    top: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
    right: -25% !important; }
  .at-sm-n25p,
  .ay-sm-n25p {
    top: -25% !important; }
  .ar-sm-n25p,
  .ax-sm-n25p {
    right: -25% !important; }
  .ab-sm-n25p,
  .ay-sm-n25p {
    bottom: -25% !important; }
  .al-sm-n25p,
  .ax-sm-n25p {
    left: -25% !important; }
  .a-sm-n30p {
    top: -30% !important;
    bottom: -30% !important;
    left: -30% !important;
    right: -30% !important; }
  .at-sm-n30p,
  .ay-sm-n30p {
    top: -30% !important; }
  .ar-sm-n30p,
  .ax-sm-n30p {
    right: -30% !important; }
  .ab-sm-n30p,
  .ay-sm-n30p {
    bottom: -30% !important; }
  .al-sm-n30p,
  .ax-sm-n30p {
    left: -30% !important; }
  .a-sm-n40p {
    top: -40% !important;
    bottom: -40% !important;
    left: -40% !important;
    right: -40% !important; }
  .at-sm-n40p,
  .ay-sm-n40p {
    top: -40% !important; }
  .ar-sm-n40p,
  .ax-sm-n40p {
    right: -40% !important; }
  .ab-sm-n40p,
  .ay-sm-n40p {
    bottom: -40% !important; }
  .al-sm-n40p,
  .ax-sm-n40p {
    left: -40% !important; }
  .a-sm-n50p {
    top: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
    right: -50% !important; }
  .at-sm-n50p,
  .ay-sm-n50p {
    top: -50% !important; }
  .ar-sm-n50p,
  .ax-sm-n50p {
    right: -50% !important; }
  .ab-sm-n50p,
  .ay-sm-n50p {
    bottom: -50% !important; }
  .al-sm-n50p,
  .ax-sm-n50p {
    left: -50% !important; }
  .a-sm-n60p {
    top: -60% !important;
    bottom: -60% !important;
    left: -60% !important;
    right: -60% !important; }
  .at-sm-n60p,
  .ay-sm-n60p {
    top: -60% !important; }
  .ar-sm-n60p,
  .ax-sm-n60p {
    right: -60% !important; }
  .ab-sm-n60p,
  .ay-sm-n60p {
    bottom: -60% !important; }
  .al-sm-n60p,
  .ax-sm-n60p {
    left: -60% !important; }
  .a-sm-auto {
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important; }
  .at-sm-auto,
  .ay-sm-auto {
    top: auto !important; }
  .ar-sm-auto,
  .ax-sm-auto {
    right: auto !important; }
  .ab-sm-auto,
  .ay-sm-auto {
    bottom: auto !important; }
  .al-sm-auto,
  .ax-sm-auto {
    left: auto !important; }
  .al-sm-30 {
    left: 30% !important; } }

@media (min-width: 768px) {
  .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; }
  .a-md-unset {
    top: unset !important;
    bottom: unset !important;
    left: unset !important;
    right: unset !important; }
  .a-md-0 {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important; }
  .at-md-0,
  .ay-md-0 {
    top: 0 !important; }
  .ar-md-0,
  .ax-md-0 {
    right: 0 !important; }
  .ab-md-0,
  .ay-md-0 {
    bottom: 0 !important; }
  .al-md-0,
  .ax-md-0 {
    left: 0 !important; }
  .a-md-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
    right: 0.25rem !important; }
  .at-md-1,
  .ay-md-1 {
    top: 0.25rem !important; }
  .ar-md-1,
  .ax-md-1 {
    right: 0.25rem !important; }
  .ab-md-1,
  .ay-md-1 {
    bottom: 0.25rem !important; }
  .al-md-1,
  .ax-md-1 {
    left: 0.25rem !important; }
  .a-md-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
    right: 0.5rem !important; }
  .at-md-2,
  .ay-md-2 {
    top: 0.5rem !important; }
  .ar-md-2,
  .ax-md-2 {
    right: 0.5rem !important; }
  .ab-md-2,
  .ay-md-2 {
    bottom: 0.5rem !important; }
  .al-md-2,
  .ax-md-2 {
    left: 0.5rem !important; }
  .a-md-3 {
    top: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
    right: 1rem !important; }
  .at-md-3,
  .ay-md-3 {
    top: 1rem !important; }
  .ar-md-3,
  .ax-md-3 {
    right: 1rem !important; }
  .ab-md-3,
  .ay-md-3 {
    bottom: 1rem !important; }
  .al-md-3,
  .ax-md-3 {
    left: 1rem !important; }
  .a-md-4 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
    right: 1.5rem !important; }
  .at-md-4,
  .ay-md-4 {
    top: 1.5rem !important; }
  .ar-md-4,
  .ax-md-4 {
    right: 1.5rem !important; }
  .ab-md-4,
  .ay-md-4 {
    bottom: 1.5rem !important; }
  .al-md-4,
  .ax-md-4 {
    left: 1.5rem !important; }
  .a-md-5 {
    top: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
    right: 3rem !important; }
  .at-md-5,
  .ay-md-5 {
    top: 3rem !important; }
  .ar-md-5,
  .ax-md-5 {
    right: 3rem !important; }
  .ab-md-5,
  .ay-md-5 {
    bottom: 3rem !important; }
  .al-md-5,
  .ax-md-5 {
    left: 3rem !important; }
  .a-md-4-5 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
    right: 4.5rem !important; }
  .at-md-4-5,
  .ay-md-4-5 {
    top: 4.5rem !important; }
  .ar-md-4-5,
  .ax-md-4-5 {
    right: 4.5rem !important; }
  .ab-md-4-5,
  .ay-md-4-5 {
    bottom: 4.5rem !important; }
  .al-md-4-5,
  .ax-md-4-5 {
    left: 4.5rem !important; }
  .a-md-5-5 {
    top: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
    right: 4rem !important; }
  .at-md-5-5,
  .ay-md-5-5 {
    top: 4rem !important; }
  .ar-md-5-5,
  .ax-md-5-5 {
    right: 4rem !important; }
  .ab-md-5-5,
  .ay-md-5-5 {
    bottom: 4rem !important; }
  .al-md-5-5,
  .ax-md-5-5 {
    left: 4rem !important; }
  .a-md-6 {
    top: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
    right: 6rem !important; }
  .at-md-6,
  .ay-md-6 {
    top: 6rem !important; }
  .ar-md-6,
  .ax-md-6 {
    right: 6rem !important; }
  .ab-md-6,
  .ay-md-6 {
    bottom: 6rem !important; }
  .al-md-6,
  .ax-md-6 {
    left: 6rem !important; }
  .a-md-7 {
    top: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
    right: 7rem !important; }
  .at-md-7,
  .ay-md-7 {
    top: 7rem !important; }
  .ar-md-7,
  .ax-md-7 {
    right: 7rem !important; }
  .ab-md-7,
  .ay-md-7 {
    bottom: 7rem !important; }
  .al-md-7,
  .ax-md-7 {
    left: 7rem !important; }
  .a-md-8 {
    top: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
    right: 8rem !important; }
  .at-md-8,
  .ay-md-8 {
    top: 8rem !important; }
  .ar-md-8,
  .ax-md-8 {
    right: 8rem !important; }
  .ab-md-8,
  .ay-md-8 {
    bottom: 8rem !important; }
  .al-md-8,
  .ax-md-8 {
    left: 8rem !important; }
  .a-md-9 {
    top: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
    right: 9rem !important; }
  .at-md-9,
  .ay-md-9 {
    top: 9rem !important; }
  .ar-md-9,
  .ax-md-9 {
    right: 9rem !important; }
  .ab-md-9,
  .ay-md-9 {
    bottom: 9rem !important; }
  .al-md-9,
  .ax-md-9 {
    left: 9rem !important; }
  .a-md-10 {
    top: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
    right: 10rem !important; }
  .at-md-10,
  .ay-md-10 {
    top: 10rem !important; }
  .ar-md-10,
  .ax-md-10 {
    right: 10rem !important; }
  .ab-md-10,
  .ay-md-10 {
    bottom: 10rem !important; }
  .al-md-10,
  .ax-md-10 {
    left: 10rem !important; }
  .a-md-15 {
    top: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
    right: 15rem !important; }
  .at-md-15,
  .ay-md-15 {
    top: 15rem !important; }
  .ar-md-15,
  .ax-md-15 {
    right: 15rem !important; }
  .ab-md-15,
  .ay-md-15 {
    bottom: 15rem !important; }
  .al-md-15,
  .ax-md-15 {
    left: 15rem !important; }
  .a-md-20 {
    top: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
    right: 20rem !important; }
  .at-md-20,
  .ay-md-20 {
    top: 20rem !important; }
  .ar-md-20,
  .ax-md-20 {
    right: 20rem !important; }
  .ab-md-20,
  .ay-md-20 {
    bottom: 20rem !important; }
  .al-md-20,
  .ax-md-20 {
    left: 20rem !important; }
  .a-md-25 {
    top: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
    right: 25rem !important; }
  .at-md-25,
  .ay-md-25 {
    top: 25rem !important; }
  .ar-md-25,
  .ax-md-25 {
    right: 25rem !important; }
  .ab-md-25,
  .ay-md-25 {
    bottom: 25rem !important; }
  .al-md-25,
  .ax-md-25 {
    left: 25rem !important; }
  .a-md-10p {
    top: 10% !important;
    bottom: 10% !important;
    left: 10% !important;
    right: 10% !important; }
  .at-md-10p,
  .ay-md-10p {
    top: 10% !important; }
  .ar-md-10p,
  .ax-md-10p {
    right: 10% !important; }
  .ab-md-10p,
  .ay-md-10p {
    bottom: 10% !important; }
  .al-md-10p,
  .ax-md-10p {
    left: 10% !important; }
  .a-md-15p {
    top: 15% !important;
    bottom: 15% !important;
    left: 15% !important;
    right: 15% !important; }
  .at-md-15p,
  .ay-md-15p {
    top: 15% !important; }
  .ar-md-15p,
  .ax-md-15p {
    right: 15% !important; }
  .ab-md-15p,
  .ay-md-15p {
    bottom: 15% !important; }
  .al-md-15p,
  .ax-md-15p {
    left: 15% !important; }
  .a-md-20p {
    top: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
    right: 20% !important; }
  .at-md-20p,
  .ay-md-20p {
    top: 20% !important; }
  .ar-md-20p,
  .ax-md-20p {
    right: 20% !important; }
  .ab-md-20p,
  .ay-md-20p {
    bottom: 20% !important; }
  .al-md-20p,
  .ax-md-20p {
    left: 20% !important; }
  .a-md-25p {
    top: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
    right: 25% !important; }
  .at-md-25p,
  .ay-md-25p {
    top: 25% !important; }
  .ar-md-25p,
  .ax-md-25p {
    right: 25% !important; }
  .ab-md-25p,
  .ay-md-25p {
    bottom: 25% !important; }
  .al-md-25p,
  .ax-md-25p {
    left: 25% !important; }
  .a-md-30p {
    top: 30% !important;
    bottom: 30% !important;
    left: 30% !important;
    right: 30% !important; }
  .at-md-30p,
  .ay-md-30p {
    top: 30% !important; }
  .ar-md-30p,
  .ax-md-30p {
    right: 30% !important; }
  .ab-md-30p,
  .ay-md-30p {
    bottom: 30% !important; }
  .al-md-30p,
  .ax-md-30p {
    left: 30% !important; }
  .a-md-40p {
    top: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
    right: 40% !important; }
  .at-md-40p,
  .ay-md-40p {
    top: 40% !important; }
  .ar-md-40p,
  .ax-md-40p {
    right: 40% !important; }
  .ab-md-40p,
  .ay-md-40p {
    bottom: 40% !important; }
  .al-md-40p,
  .ax-md-40p {
    left: 40% !important; }
  .a-md-50p {
    top: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
    right: 50% !important; }
  .at-md-50p,
  .ay-md-50p {
    top: 50% !important; }
  .ar-md-50p,
  .ax-md-50p {
    right: 50% !important; }
  .ab-md-50p,
  .ay-md-50p {
    bottom: 50% !important; }
  .al-md-50p,
  .ax-md-50p {
    left: 50% !important; }
  .a-md-60p {
    top: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
    right: 60% !important; }
  .at-md-60p,
  .ay-md-60p {
    top: 60% !important; }
  .ar-md-60p,
  .ax-md-60p {
    right: 60% !important; }
  .ab-md-60p,
  .ay-md-60p {
    bottom: 60% !important; }
  .al-md-60p,
  .ax-md-60p {
    left: 60% !important; }
  .a-md-n1 {
    top: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
    right: -0.25rem !important; }
  .at-md-n1,
  .ay-md-n1 {
    top: -0.25rem !important; }
  .ar-md-n1,
  .ax-md-n1 {
    right: -0.25rem !important; }
  .ab-md-n1,
  .ay-md-n1 {
    bottom: -0.25rem !important; }
  .al-md-n1,
  .ax-md-n1 {
    left: -0.25rem !important; }
  .a-md-n2 {
    top: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
    right: -0.5rem !important; }
  .at-md-n2,
  .ay-md-n2 {
    top: -0.5rem !important; }
  .ar-md-n2,
  .ax-md-n2 {
    right: -0.5rem !important; }
  .ab-md-n2,
  .ay-md-n2 {
    bottom: -0.5rem !important; }
  .al-md-n2,
  .ax-md-n2 {
    left: -0.5rem !important; }
  .a-md-n3 {
    top: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
    right: -1rem !important; }
  .at-md-n3,
  .ay-md-n3 {
    top: -1rem !important; }
  .ar-md-n3,
  .ax-md-n3 {
    right: -1rem !important; }
  .ab-md-n3,
  .ay-md-n3 {
    bottom: -1rem !important; }
  .al-md-n3,
  .ax-md-n3 {
    left: -1rem !important; }
  .a-md-n4 {
    top: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
    right: -1.5rem !important; }
  .at-md-n4,
  .ay-md-n4 {
    top: -1.5rem !important; }
  .ar-md-n4,
  .ax-md-n4 {
    right: -1.5rem !important; }
  .ab-md-n4,
  .ay-md-n4 {
    bottom: -1.5rem !important; }
  .al-md-n4,
  .ax-md-n4 {
    left: -1.5rem !important; }
  .a-md-n5 {
    top: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
    right: -3rem !important; }
  .at-md-n5,
  .ay-md-n5 {
    top: -3rem !important; }
  .ar-md-n5,
  .ax-md-n5 {
    right: -3rem !important; }
  .ab-md-n5,
  .ay-md-n5 {
    bottom: -3rem !important; }
  .al-md-n5,
  .ax-md-n5 {
    left: -3rem !important; }
  .a-md-n4-5 {
    top: -4.5rem !important;
    bottom: -4.5rem !important;
    left: -4.5rem !important;
    right: -4.5rem !important; }
  .at-md-n4-5,
  .ay-md-n4-5 {
    top: -4.5rem !important; }
  .ar-md-n4-5,
  .ax-md-n4-5 {
    right: -4.5rem !important; }
  .ab-md-n4-5,
  .ay-md-n4-5 {
    bottom: -4.5rem !important; }
  .al-md-n4-5,
  .ax-md-n4-5 {
    left: -4.5rem !important; }
  .a-md-n5-5 {
    top: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
    right: -4rem !important; }
  .at-md-n5-5,
  .ay-md-n5-5 {
    top: -4rem !important; }
  .ar-md-n5-5,
  .ax-md-n5-5 {
    right: -4rem !important; }
  .ab-md-n5-5,
  .ay-md-n5-5 {
    bottom: -4rem !important; }
  .al-md-n5-5,
  .ax-md-n5-5 {
    left: -4rem !important; }
  .a-md-n6 {
    top: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
    right: -6rem !important; }
  .at-md-n6,
  .ay-md-n6 {
    top: -6rem !important; }
  .ar-md-n6,
  .ax-md-n6 {
    right: -6rem !important; }
  .ab-md-n6,
  .ay-md-n6 {
    bottom: -6rem !important; }
  .al-md-n6,
  .ax-md-n6 {
    left: -6rem !important; }
  .a-md-n7 {
    top: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
    right: -7rem !important; }
  .at-md-n7,
  .ay-md-n7 {
    top: -7rem !important; }
  .ar-md-n7,
  .ax-md-n7 {
    right: -7rem !important; }
  .ab-md-n7,
  .ay-md-n7 {
    bottom: -7rem !important; }
  .al-md-n7,
  .ax-md-n7 {
    left: -7rem !important; }
  .a-md-n8 {
    top: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
    right: -8rem !important; }
  .at-md-n8,
  .ay-md-n8 {
    top: -8rem !important; }
  .ar-md-n8,
  .ax-md-n8 {
    right: -8rem !important; }
  .ab-md-n8,
  .ay-md-n8 {
    bottom: -8rem !important; }
  .al-md-n8,
  .ax-md-n8 {
    left: -8rem !important; }
  .a-md-n9 {
    top: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
    right: -9rem !important; }
  .at-md-n9,
  .ay-md-n9 {
    top: -9rem !important; }
  .ar-md-n9,
  .ax-md-n9 {
    right: -9rem !important; }
  .ab-md-n9,
  .ay-md-n9 {
    bottom: -9rem !important; }
  .al-md-n9,
  .ax-md-n9 {
    left: -9rem !important; }
  .a-md-n10 {
    top: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
    right: -10rem !important; }
  .at-md-n10,
  .ay-md-n10 {
    top: -10rem !important; }
  .ar-md-n10,
  .ax-md-n10 {
    right: -10rem !important; }
  .ab-md-n10,
  .ay-md-n10 {
    bottom: -10rem !important; }
  .al-md-n10,
  .ax-md-n10 {
    left: -10rem !important; }
  .a-md-n15 {
    top: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
    right: -15rem !important; }
  .at-md-n15,
  .ay-md-n15 {
    top: -15rem !important; }
  .ar-md-n15,
  .ax-md-n15 {
    right: -15rem !important; }
  .ab-md-n15,
  .ay-md-n15 {
    bottom: -15rem !important; }
  .al-md-n15,
  .ax-md-n15 {
    left: -15rem !important; }
  .a-md-n20 {
    top: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
    right: -20rem !important; }
  .at-md-n20,
  .ay-md-n20 {
    top: -20rem !important; }
  .ar-md-n20,
  .ax-md-n20 {
    right: -20rem !important; }
  .ab-md-n20,
  .ay-md-n20 {
    bottom: -20rem !important; }
  .al-md-n20,
  .ax-md-n20 {
    left: -20rem !important; }
  .a-md-n25 {
    top: -25rem !important;
    bottom: -25rem !important;
    left: -25rem !important;
    right: -25rem !important; }
  .at-md-n25,
  .ay-md-n25 {
    top: -25rem !important; }
  .ar-md-n25,
  .ax-md-n25 {
    right: -25rem !important; }
  .ab-md-n25,
  .ay-md-n25 {
    bottom: -25rem !important; }
  .al-md-n25,
  .ax-md-n25 {
    left: -25rem !important; }
  .a-md-n10p {
    top: -10% !important;
    bottom: -10% !important;
    left: -10% !important;
    right: -10% !important; }
  .at-md-n10p,
  .ay-md-n10p {
    top: -10% !important; }
  .ar-md-n10p,
  .ax-md-n10p {
    right: -10% !important; }
  .ab-md-n10p,
  .ay-md-n10p {
    bottom: -10% !important; }
  .al-md-n10p,
  .ax-md-n10p {
    left: -10% !important; }
  .a-md-n15p {
    top: -15% !important;
    bottom: -15% !important;
    left: -15% !important;
    right: -15% !important; }
  .at-md-n15p,
  .ay-md-n15p {
    top: -15% !important; }
  .ar-md-n15p,
  .ax-md-n15p {
    right: -15% !important; }
  .ab-md-n15p,
  .ay-md-n15p {
    bottom: -15% !important; }
  .al-md-n15p,
  .ax-md-n15p {
    left: -15% !important; }
  .a-md-n20p {
    top: -20% !important;
    bottom: -20% !important;
    left: -20% !important;
    right: -20% !important; }
  .at-md-n20p,
  .ay-md-n20p {
    top: -20% !important; }
  .ar-md-n20p,
  .ax-md-n20p {
    right: -20% !important; }
  .ab-md-n20p,
  .ay-md-n20p {
    bottom: -20% !important; }
  .al-md-n20p,
  .ax-md-n20p {
    left: -20% !important; }
  .a-md-n25p {
    top: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
    right: -25% !important; }
  .at-md-n25p,
  .ay-md-n25p {
    top: -25% !important; }
  .ar-md-n25p,
  .ax-md-n25p {
    right: -25% !important; }
  .ab-md-n25p,
  .ay-md-n25p {
    bottom: -25% !important; }
  .al-md-n25p,
  .ax-md-n25p {
    left: -25% !important; }
  .a-md-n30p {
    top: -30% !important;
    bottom: -30% !important;
    left: -30% !important;
    right: -30% !important; }
  .at-md-n30p,
  .ay-md-n30p {
    top: -30% !important; }
  .ar-md-n30p,
  .ax-md-n30p {
    right: -30% !important; }
  .ab-md-n30p,
  .ay-md-n30p {
    bottom: -30% !important; }
  .al-md-n30p,
  .ax-md-n30p {
    left: -30% !important; }
  .a-md-n40p {
    top: -40% !important;
    bottom: -40% !important;
    left: -40% !important;
    right: -40% !important; }
  .at-md-n40p,
  .ay-md-n40p {
    top: -40% !important; }
  .ar-md-n40p,
  .ax-md-n40p {
    right: -40% !important; }
  .ab-md-n40p,
  .ay-md-n40p {
    bottom: -40% !important; }
  .al-md-n40p,
  .ax-md-n40p {
    left: -40% !important; }
  .a-md-n50p {
    top: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
    right: -50% !important; }
  .at-md-n50p,
  .ay-md-n50p {
    top: -50% !important; }
  .ar-md-n50p,
  .ax-md-n50p {
    right: -50% !important; }
  .ab-md-n50p,
  .ay-md-n50p {
    bottom: -50% !important; }
  .al-md-n50p,
  .ax-md-n50p {
    left: -50% !important; }
  .a-md-n60p {
    top: -60% !important;
    bottom: -60% !important;
    left: -60% !important;
    right: -60% !important; }
  .at-md-n60p,
  .ay-md-n60p {
    top: -60% !important; }
  .ar-md-n60p,
  .ax-md-n60p {
    right: -60% !important; }
  .ab-md-n60p,
  .ay-md-n60p {
    bottom: -60% !important; }
  .al-md-n60p,
  .ax-md-n60p {
    left: -60% !important; }
  .a-md-auto {
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important; }
  .at-md-auto,
  .ay-md-auto {
    top: auto !important; }
  .ar-md-auto,
  .ax-md-auto {
    right: auto !important; }
  .ab-md-auto,
  .ay-md-auto {
    bottom: auto !important; }
  .al-md-auto,
  .ax-md-auto {
    left: auto !important; }
  .al-md-30 {
    left: 30% !important; } }

@media (min-width: 992px) {
  .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; }
  .a-lg-unset {
    top: unset !important;
    bottom: unset !important;
    left: unset !important;
    right: unset !important; }
  .a-lg-0 {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important; }
  .at-lg-0,
  .ay-lg-0 {
    top: 0 !important; }
  .ar-lg-0,
  .ax-lg-0 {
    right: 0 !important; }
  .ab-lg-0,
  .ay-lg-0 {
    bottom: 0 !important; }
  .al-lg-0,
  .ax-lg-0 {
    left: 0 !important; }
  .a-lg-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
    right: 0.25rem !important; }
  .at-lg-1,
  .ay-lg-1 {
    top: 0.25rem !important; }
  .ar-lg-1,
  .ax-lg-1 {
    right: 0.25rem !important; }
  .ab-lg-1,
  .ay-lg-1 {
    bottom: 0.25rem !important; }
  .al-lg-1,
  .ax-lg-1 {
    left: 0.25rem !important; }
  .a-lg-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
    right: 0.5rem !important; }
  .at-lg-2,
  .ay-lg-2 {
    top: 0.5rem !important; }
  .ar-lg-2,
  .ax-lg-2 {
    right: 0.5rem !important; }
  .ab-lg-2,
  .ay-lg-2 {
    bottom: 0.5rem !important; }
  .al-lg-2,
  .ax-lg-2 {
    left: 0.5rem !important; }
  .a-lg-3 {
    top: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
    right: 1rem !important; }
  .at-lg-3,
  .ay-lg-3 {
    top: 1rem !important; }
  .ar-lg-3,
  .ax-lg-3 {
    right: 1rem !important; }
  .ab-lg-3,
  .ay-lg-3 {
    bottom: 1rem !important; }
  .al-lg-3,
  .ax-lg-3 {
    left: 1rem !important; }
  .a-lg-4 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
    right: 1.5rem !important; }
  .at-lg-4,
  .ay-lg-4 {
    top: 1.5rem !important; }
  .ar-lg-4,
  .ax-lg-4 {
    right: 1.5rem !important; }
  .ab-lg-4,
  .ay-lg-4 {
    bottom: 1.5rem !important; }
  .al-lg-4,
  .ax-lg-4 {
    left: 1.5rem !important; }
  .a-lg-5 {
    top: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
    right: 3rem !important; }
  .at-lg-5,
  .ay-lg-5 {
    top: 3rem !important; }
  .ar-lg-5,
  .ax-lg-5 {
    right: 3rem !important; }
  .ab-lg-5,
  .ay-lg-5 {
    bottom: 3rem !important; }
  .al-lg-5,
  .ax-lg-5 {
    left: 3rem !important; }
  .a-lg-4-5 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
    right: 4.5rem !important; }
  .at-lg-4-5,
  .ay-lg-4-5 {
    top: 4.5rem !important; }
  .ar-lg-4-5,
  .ax-lg-4-5 {
    right: 4.5rem !important; }
  .ab-lg-4-5,
  .ay-lg-4-5 {
    bottom: 4.5rem !important; }
  .al-lg-4-5,
  .ax-lg-4-5 {
    left: 4.5rem !important; }
  .a-lg-5-5 {
    top: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
    right: 4rem !important; }
  .at-lg-5-5,
  .ay-lg-5-5 {
    top: 4rem !important; }
  .ar-lg-5-5,
  .ax-lg-5-5 {
    right: 4rem !important; }
  .ab-lg-5-5,
  .ay-lg-5-5 {
    bottom: 4rem !important; }
  .al-lg-5-5,
  .ax-lg-5-5 {
    left: 4rem !important; }
  .a-lg-6 {
    top: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
    right: 6rem !important; }
  .at-lg-6,
  .ay-lg-6 {
    top: 6rem !important; }
  .ar-lg-6,
  .ax-lg-6 {
    right: 6rem !important; }
  .ab-lg-6,
  .ay-lg-6 {
    bottom: 6rem !important; }
  .al-lg-6,
  .ax-lg-6 {
    left: 6rem !important; }
  .a-lg-7 {
    top: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
    right: 7rem !important; }
  .at-lg-7,
  .ay-lg-7 {
    top: 7rem !important; }
  .ar-lg-7,
  .ax-lg-7 {
    right: 7rem !important; }
  .ab-lg-7,
  .ay-lg-7 {
    bottom: 7rem !important; }
  .al-lg-7,
  .ax-lg-7 {
    left: 7rem !important; }
  .a-lg-8 {
    top: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
    right: 8rem !important; }
  .at-lg-8,
  .ay-lg-8 {
    top: 8rem !important; }
  .ar-lg-8,
  .ax-lg-8 {
    right: 8rem !important; }
  .ab-lg-8,
  .ay-lg-8 {
    bottom: 8rem !important; }
  .al-lg-8,
  .ax-lg-8 {
    left: 8rem !important; }
  .a-lg-9 {
    top: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
    right: 9rem !important; }
  .at-lg-9,
  .ay-lg-9 {
    top: 9rem !important; }
  .ar-lg-9,
  .ax-lg-9 {
    right: 9rem !important; }
  .ab-lg-9,
  .ay-lg-9 {
    bottom: 9rem !important; }
  .al-lg-9,
  .ax-lg-9 {
    left: 9rem !important; }
  .a-lg-10 {
    top: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
    right: 10rem !important; }
  .at-lg-10,
  .ay-lg-10 {
    top: 10rem !important; }
  .ar-lg-10,
  .ax-lg-10 {
    right: 10rem !important; }
  .ab-lg-10,
  .ay-lg-10 {
    bottom: 10rem !important; }
  .al-lg-10,
  .ax-lg-10 {
    left: 10rem !important; }
  .a-lg-15 {
    top: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
    right: 15rem !important; }
  .at-lg-15,
  .ay-lg-15 {
    top: 15rem !important; }
  .ar-lg-15,
  .ax-lg-15 {
    right: 15rem !important; }
  .ab-lg-15,
  .ay-lg-15 {
    bottom: 15rem !important; }
  .al-lg-15,
  .ax-lg-15 {
    left: 15rem !important; }
  .a-lg-20 {
    top: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
    right: 20rem !important; }
  .at-lg-20,
  .ay-lg-20 {
    top: 20rem !important; }
  .ar-lg-20,
  .ax-lg-20 {
    right: 20rem !important; }
  .ab-lg-20,
  .ay-lg-20 {
    bottom: 20rem !important; }
  .al-lg-20,
  .ax-lg-20 {
    left: 20rem !important; }
  .a-lg-25 {
    top: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
    right: 25rem !important; }
  .at-lg-25,
  .ay-lg-25 {
    top: 25rem !important; }
  .ar-lg-25,
  .ax-lg-25 {
    right: 25rem !important; }
  .ab-lg-25,
  .ay-lg-25 {
    bottom: 25rem !important; }
  .al-lg-25,
  .ax-lg-25 {
    left: 25rem !important; }
  .a-lg-10p {
    top: 10% !important;
    bottom: 10% !important;
    left: 10% !important;
    right: 10% !important; }
  .at-lg-10p,
  .ay-lg-10p {
    top: 10% !important; }
  .ar-lg-10p,
  .ax-lg-10p {
    right: 10% !important; }
  .ab-lg-10p,
  .ay-lg-10p {
    bottom: 10% !important; }
  .al-lg-10p,
  .ax-lg-10p {
    left: 10% !important; }
  .a-lg-15p {
    top: 15% !important;
    bottom: 15% !important;
    left: 15% !important;
    right: 15% !important; }
  .at-lg-15p,
  .ay-lg-15p {
    top: 15% !important; }
  .ar-lg-15p,
  .ax-lg-15p {
    right: 15% !important; }
  .ab-lg-15p,
  .ay-lg-15p {
    bottom: 15% !important; }
  .al-lg-15p,
  .ax-lg-15p {
    left: 15% !important; }
  .a-lg-20p {
    top: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
    right: 20% !important; }
  .at-lg-20p,
  .ay-lg-20p {
    top: 20% !important; }
  .ar-lg-20p,
  .ax-lg-20p {
    right: 20% !important; }
  .ab-lg-20p,
  .ay-lg-20p {
    bottom: 20% !important; }
  .al-lg-20p,
  .ax-lg-20p {
    left: 20% !important; }
  .a-lg-25p {
    top: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
    right: 25% !important; }
  .at-lg-25p,
  .ay-lg-25p {
    top: 25% !important; }
  .ar-lg-25p,
  .ax-lg-25p {
    right: 25% !important; }
  .ab-lg-25p,
  .ay-lg-25p {
    bottom: 25% !important; }
  .al-lg-25p,
  .ax-lg-25p {
    left: 25% !important; }
  .a-lg-30p {
    top: 30% !important;
    bottom: 30% !important;
    left: 30% !important;
    right: 30% !important; }
  .at-lg-30p,
  .ay-lg-30p {
    top: 30% !important; }
  .ar-lg-30p,
  .ax-lg-30p {
    right: 30% !important; }
  .ab-lg-30p,
  .ay-lg-30p {
    bottom: 30% !important; }
  .al-lg-30p,
  .ax-lg-30p {
    left: 30% !important; }
  .a-lg-40p {
    top: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
    right: 40% !important; }
  .at-lg-40p,
  .ay-lg-40p {
    top: 40% !important; }
  .ar-lg-40p,
  .ax-lg-40p {
    right: 40% !important; }
  .ab-lg-40p,
  .ay-lg-40p {
    bottom: 40% !important; }
  .al-lg-40p,
  .ax-lg-40p {
    left: 40% !important; }
  .a-lg-50p {
    top: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
    right: 50% !important; }
  .at-lg-50p,
  .ay-lg-50p {
    top: 50% !important; }
  .ar-lg-50p,
  .ax-lg-50p {
    right: 50% !important; }
  .ab-lg-50p,
  .ay-lg-50p {
    bottom: 50% !important; }
  .al-lg-50p,
  .ax-lg-50p {
    left: 50% !important; }
  .a-lg-60p {
    top: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
    right: 60% !important; }
  .at-lg-60p,
  .ay-lg-60p {
    top: 60% !important; }
  .ar-lg-60p,
  .ax-lg-60p {
    right: 60% !important; }
  .ab-lg-60p,
  .ay-lg-60p {
    bottom: 60% !important; }
  .al-lg-60p,
  .ax-lg-60p {
    left: 60% !important; }
  .a-lg-n1 {
    top: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
    right: -0.25rem !important; }
  .at-lg-n1,
  .ay-lg-n1 {
    top: -0.25rem !important; }
  .ar-lg-n1,
  .ax-lg-n1 {
    right: -0.25rem !important; }
  .ab-lg-n1,
  .ay-lg-n1 {
    bottom: -0.25rem !important; }
  .al-lg-n1,
  .ax-lg-n1 {
    left: -0.25rem !important; }
  .a-lg-n2 {
    top: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
    right: -0.5rem !important; }
  .at-lg-n2,
  .ay-lg-n2 {
    top: -0.5rem !important; }
  .ar-lg-n2,
  .ax-lg-n2 {
    right: -0.5rem !important; }
  .ab-lg-n2,
  .ay-lg-n2 {
    bottom: -0.5rem !important; }
  .al-lg-n2,
  .ax-lg-n2 {
    left: -0.5rem !important; }
  .a-lg-n3 {
    top: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
    right: -1rem !important; }
  .at-lg-n3,
  .ay-lg-n3 {
    top: -1rem !important; }
  .ar-lg-n3,
  .ax-lg-n3 {
    right: -1rem !important; }
  .ab-lg-n3,
  .ay-lg-n3 {
    bottom: -1rem !important; }
  .al-lg-n3,
  .ax-lg-n3 {
    left: -1rem !important; }
  .a-lg-n4 {
    top: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
    right: -1.5rem !important; }
  .at-lg-n4,
  .ay-lg-n4 {
    top: -1.5rem !important; }
  .ar-lg-n4,
  .ax-lg-n4 {
    right: -1.5rem !important; }
  .ab-lg-n4,
  .ay-lg-n4 {
    bottom: -1.5rem !important; }
  .al-lg-n4,
  .ax-lg-n4 {
    left: -1.5rem !important; }
  .a-lg-n5 {
    top: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
    right: -3rem !important; }
  .at-lg-n5,
  .ay-lg-n5 {
    top: -3rem !important; }
  .ar-lg-n5,
  .ax-lg-n5 {
    right: -3rem !important; }
  .ab-lg-n5,
  .ay-lg-n5 {
    bottom: -3rem !important; }
  .al-lg-n5,
  .ax-lg-n5 {
    left: -3rem !important; }
  .a-lg-n4-5 {
    top: -4.5rem !important;
    bottom: -4.5rem !important;
    left: -4.5rem !important;
    right: -4.5rem !important; }
  .at-lg-n4-5,
  .ay-lg-n4-5 {
    top: -4.5rem !important; }
  .ar-lg-n4-5,
  .ax-lg-n4-5 {
    right: -4.5rem !important; }
  .ab-lg-n4-5,
  .ay-lg-n4-5 {
    bottom: -4.5rem !important; }
  .al-lg-n4-5,
  .ax-lg-n4-5 {
    left: -4.5rem !important; }
  .a-lg-n5-5 {
    top: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
    right: -4rem !important; }
  .at-lg-n5-5,
  .ay-lg-n5-5 {
    top: -4rem !important; }
  .ar-lg-n5-5,
  .ax-lg-n5-5 {
    right: -4rem !important; }
  .ab-lg-n5-5,
  .ay-lg-n5-5 {
    bottom: -4rem !important; }
  .al-lg-n5-5,
  .ax-lg-n5-5 {
    left: -4rem !important; }
  .a-lg-n6 {
    top: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
    right: -6rem !important; }
  .at-lg-n6,
  .ay-lg-n6 {
    top: -6rem !important; }
  .ar-lg-n6,
  .ax-lg-n6 {
    right: -6rem !important; }
  .ab-lg-n6,
  .ay-lg-n6 {
    bottom: -6rem !important; }
  .al-lg-n6,
  .ax-lg-n6 {
    left: -6rem !important; }
  .a-lg-n7 {
    top: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
    right: -7rem !important; }
  .at-lg-n7,
  .ay-lg-n7 {
    top: -7rem !important; }
  .ar-lg-n7,
  .ax-lg-n7 {
    right: -7rem !important; }
  .ab-lg-n7,
  .ay-lg-n7 {
    bottom: -7rem !important; }
  .al-lg-n7,
  .ax-lg-n7 {
    left: -7rem !important; }
  .a-lg-n8 {
    top: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
    right: -8rem !important; }
  .at-lg-n8,
  .ay-lg-n8 {
    top: -8rem !important; }
  .ar-lg-n8,
  .ax-lg-n8 {
    right: -8rem !important; }
  .ab-lg-n8,
  .ay-lg-n8 {
    bottom: -8rem !important; }
  .al-lg-n8,
  .ax-lg-n8 {
    left: -8rem !important; }
  .a-lg-n9 {
    top: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
    right: -9rem !important; }
  .at-lg-n9,
  .ay-lg-n9 {
    top: -9rem !important; }
  .ar-lg-n9,
  .ax-lg-n9 {
    right: -9rem !important; }
  .ab-lg-n9,
  .ay-lg-n9 {
    bottom: -9rem !important; }
  .al-lg-n9,
  .ax-lg-n9 {
    left: -9rem !important; }
  .a-lg-n10 {
    top: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
    right: -10rem !important; }
  .at-lg-n10,
  .ay-lg-n10 {
    top: -10rem !important; }
  .ar-lg-n10,
  .ax-lg-n10 {
    right: -10rem !important; }
  .ab-lg-n10,
  .ay-lg-n10 {
    bottom: -10rem !important; }
  .al-lg-n10,
  .ax-lg-n10 {
    left: -10rem !important; }
  .a-lg-n15 {
    top: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
    right: -15rem !important; }
  .at-lg-n15,
  .ay-lg-n15 {
    top: -15rem !important; }
  .ar-lg-n15,
  .ax-lg-n15 {
    right: -15rem !important; }
  .ab-lg-n15,
  .ay-lg-n15 {
    bottom: -15rem !important; }
  .al-lg-n15,
  .ax-lg-n15 {
    left: -15rem !important; }
  .a-lg-n20 {
    top: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
    right: -20rem !important; }
  .at-lg-n20,
  .ay-lg-n20 {
    top: -20rem !important; }
  .ar-lg-n20,
  .ax-lg-n20 {
    right: -20rem !important; }
  .ab-lg-n20,
  .ay-lg-n20 {
    bottom: -20rem !important; }
  .al-lg-n20,
  .ax-lg-n20 {
    left: -20rem !important; }
  .a-lg-n25 {
    top: -25rem !important;
    bottom: -25rem !important;
    left: -25rem !important;
    right: -25rem !important; }
  .at-lg-n25,
  .ay-lg-n25 {
    top: -25rem !important; }
  .ar-lg-n25,
  .ax-lg-n25 {
    right: -25rem !important; }
  .ab-lg-n25,
  .ay-lg-n25 {
    bottom: -25rem !important; }
  .al-lg-n25,
  .ax-lg-n25 {
    left: -25rem !important; }
  .a-lg-n10p {
    top: -10% !important;
    bottom: -10% !important;
    left: -10% !important;
    right: -10% !important; }
  .at-lg-n10p,
  .ay-lg-n10p {
    top: -10% !important; }
  .ar-lg-n10p,
  .ax-lg-n10p {
    right: -10% !important; }
  .ab-lg-n10p,
  .ay-lg-n10p {
    bottom: -10% !important; }
  .al-lg-n10p,
  .ax-lg-n10p {
    left: -10% !important; }
  .a-lg-n15p {
    top: -15% !important;
    bottom: -15% !important;
    left: -15% !important;
    right: -15% !important; }
  .at-lg-n15p,
  .ay-lg-n15p {
    top: -15% !important; }
  .ar-lg-n15p,
  .ax-lg-n15p {
    right: -15% !important; }
  .ab-lg-n15p,
  .ay-lg-n15p {
    bottom: -15% !important; }
  .al-lg-n15p,
  .ax-lg-n15p {
    left: -15% !important; }
  .a-lg-n20p {
    top: -20% !important;
    bottom: -20% !important;
    left: -20% !important;
    right: -20% !important; }
  .at-lg-n20p,
  .ay-lg-n20p {
    top: -20% !important; }
  .ar-lg-n20p,
  .ax-lg-n20p {
    right: -20% !important; }
  .ab-lg-n20p,
  .ay-lg-n20p {
    bottom: -20% !important; }
  .al-lg-n20p,
  .ax-lg-n20p {
    left: -20% !important; }
  .a-lg-n25p {
    top: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
    right: -25% !important; }
  .at-lg-n25p,
  .ay-lg-n25p {
    top: -25% !important; }
  .ar-lg-n25p,
  .ax-lg-n25p {
    right: -25% !important; }
  .ab-lg-n25p,
  .ay-lg-n25p {
    bottom: -25% !important; }
  .al-lg-n25p,
  .ax-lg-n25p {
    left: -25% !important; }
  .a-lg-n30p {
    top: -30% !important;
    bottom: -30% !important;
    left: -30% !important;
    right: -30% !important; }
  .at-lg-n30p,
  .ay-lg-n30p {
    top: -30% !important; }
  .ar-lg-n30p,
  .ax-lg-n30p {
    right: -30% !important; }
  .ab-lg-n30p,
  .ay-lg-n30p {
    bottom: -30% !important; }
  .al-lg-n30p,
  .ax-lg-n30p {
    left: -30% !important; }
  .a-lg-n40p {
    top: -40% !important;
    bottom: -40% !important;
    left: -40% !important;
    right: -40% !important; }
  .at-lg-n40p,
  .ay-lg-n40p {
    top: -40% !important; }
  .ar-lg-n40p,
  .ax-lg-n40p {
    right: -40% !important; }
  .ab-lg-n40p,
  .ay-lg-n40p {
    bottom: -40% !important; }
  .al-lg-n40p,
  .ax-lg-n40p {
    left: -40% !important; }
  .a-lg-n50p {
    top: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
    right: -50% !important; }
  .at-lg-n50p,
  .ay-lg-n50p {
    top: -50% !important; }
  .ar-lg-n50p,
  .ax-lg-n50p {
    right: -50% !important; }
  .ab-lg-n50p,
  .ay-lg-n50p {
    bottom: -50% !important; }
  .al-lg-n50p,
  .ax-lg-n50p {
    left: -50% !important; }
  .a-lg-n60p {
    top: -60% !important;
    bottom: -60% !important;
    left: -60% !important;
    right: -60% !important; }
  .at-lg-n60p,
  .ay-lg-n60p {
    top: -60% !important; }
  .ar-lg-n60p,
  .ax-lg-n60p {
    right: -60% !important; }
  .ab-lg-n60p,
  .ay-lg-n60p {
    bottom: -60% !important; }
  .al-lg-n60p,
  .ax-lg-n60p {
    left: -60% !important; }
  .a-lg-auto {
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important; }
  .at-lg-auto,
  .ay-lg-auto {
    top: auto !important; }
  .ar-lg-auto,
  .ax-lg-auto {
    right: auto !important; }
  .ab-lg-auto,
  .ay-lg-auto {
    bottom: auto !important; }
  .al-lg-auto,
  .ax-lg-auto {
    left: auto !important; }
  .al-lg-30 {
    left: 30% !important; } }

@media (min-width: 1230px) {
  .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; }
  .a-xl-unset {
    top: unset !important;
    bottom: unset !important;
    left: unset !important;
    right: unset !important; }
  .a-xl-0 {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important; }
  .at-xl-0,
  .ay-xl-0 {
    top: 0 !important; }
  .ar-xl-0,
  .ax-xl-0 {
    right: 0 !important; }
  .ab-xl-0,
  .ay-xl-0 {
    bottom: 0 !important; }
  .al-xl-0,
  .ax-xl-0 {
    left: 0 !important; }
  .a-xl-1 {
    top: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
    right: 0.25rem !important; }
  .at-xl-1,
  .ay-xl-1 {
    top: 0.25rem !important; }
  .ar-xl-1,
  .ax-xl-1 {
    right: 0.25rem !important; }
  .ab-xl-1,
  .ay-xl-1 {
    bottom: 0.25rem !important; }
  .al-xl-1,
  .ax-xl-1 {
    left: 0.25rem !important; }
  .a-xl-2 {
    top: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
    right: 0.5rem !important; }
  .at-xl-2,
  .ay-xl-2 {
    top: 0.5rem !important; }
  .ar-xl-2,
  .ax-xl-2 {
    right: 0.5rem !important; }
  .ab-xl-2,
  .ay-xl-2 {
    bottom: 0.5rem !important; }
  .al-xl-2,
  .ax-xl-2 {
    left: 0.5rem !important; }
  .a-xl-3 {
    top: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
    right: 1rem !important; }
  .at-xl-3,
  .ay-xl-3 {
    top: 1rem !important; }
  .ar-xl-3,
  .ax-xl-3 {
    right: 1rem !important; }
  .ab-xl-3,
  .ay-xl-3 {
    bottom: 1rem !important; }
  .al-xl-3,
  .ax-xl-3 {
    left: 1rem !important; }
  .a-xl-4 {
    top: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
    right: 1.5rem !important; }
  .at-xl-4,
  .ay-xl-4 {
    top: 1.5rem !important; }
  .ar-xl-4,
  .ax-xl-4 {
    right: 1.5rem !important; }
  .ab-xl-4,
  .ay-xl-4 {
    bottom: 1.5rem !important; }
  .al-xl-4,
  .ax-xl-4 {
    left: 1.5rem !important; }
  .a-xl-5 {
    top: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
    right: 3rem !important; }
  .at-xl-5,
  .ay-xl-5 {
    top: 3rem !important; }
  .ar-xl-5,
  .ax-xl-5 {
    right: 3rem !important; }
  .ab-xl-5,
  .ay-xl-5 {
    bottom: 3rem !important; }
  .al-xl-5,
  .ax-xl-5 {
    left: 3rem !important; }
  .a-xl-4-5 {
    top: 4.5rem !important;
    bottom: 4.5rem !important;
    left: 4.5rem !important;
    right: 4.5rem !important; }
  .at-xl-4-5,
  .ay-xl-4-5 {
    top: 4.5rem !important; }
  .ar-xl-4-5,
  .ax-xl-4-5 {
    right: 4.5rem !important; }
  .ab-xl-4-5,
  .ay-xl-4-5 {
    bottom: 4.5rem !important; }
  .al-xl-4-5,
  .ax-xl-4-5 {
    left: 4.5rem !important; }
  .a-xl-5-5 {
    top: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
    right: 4rem !important; }
  .at-xl-5-5,
  .ay-xl-5-5 {
    top: 4rem !important; }
  .ar-xl-5-5,
  .ax-xl-5-5 {
    right: 4rem !important; }
  .ab-xl-5-5,
  .ay-xl-5-5 {
    bottom: 4rem !important; }
  .al-xl-5-5,
  .ax-xl-5-5 {
    left: 4rem !important; }
  .a-xl-6 {
    top: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
    right: 6rem !important; }
  .at-xl-6,
  .ay-xl-6 {
    top: 6rem !important; }
  .ar-xl-6,
  .ax-xl-6 {
    right: 6rem !important; }
  .ab-xl-6,
  .ay-xl-6 {
    bottom: 6rem !important; }
  .al-xl-6,
  .ax-xl-6 {
    left: 6rem !important; }
  .a-xl-7 {
    top: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
    right: 7rem !important; }
  .at-xl-7,
  .ay-xl-7 {
    top: 7rem !important; }
  .ar-xl-7,
  .ax-xl-7 {
    right: 7rem !important; }
  .ab-xl-7,
  .ay-xl-7 {
    bottom: 7rem !important; }
  .al-xl-7,
  .ax-xl-7 {
    left: 7rem !important; }
  .a-xl-8 {
    top: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
    right: 8rem !important; }
  .at-xl-8,
  .ay-xl-8 {
    top: 8rem !important; }
  .ar-xl-8,
  .ax-xl-8 {
    right: 8rem !important; }
  .ab-xl-8,
  .ay-xl-8 {
    bottom: 8rem !important; }
  .al-xl-8,
  .ax-xl-8 {
    left: 8rem !important; }
  .a-xl-9 {
    top: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
    right: 9rem !important; }
  .at-xl-9,
  .ay-xl-9 {
    top: 9rem !important; }
  .ar-xl-9,
  .ax-xl-9 {
    right: 9rem !important; }
  .ab-xl-9,
  .ay-xl-9 {
    bottom: 9rem !important; }
  .al-xl-9,
  .ax-xl-9 {
    left: 9rem !important; }
  .a-xl-10 {
    top: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
    right: 10rem !important; }
  .at-xl-10,
  .ay-xl-10 {
    top: 10rem !important; }
  .ar-xl-10,
  .ax-xl-10 {
    right: 10rem !important; }
  .ab-xl-10,
  .ay-xl-10 {
    bottom: 10rem !important; }
  .al-xl-10,
  .ax-xl-10 {
    left: 10rem !important; }
  .a-xl-15 {
    top: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
    right: 15rem !important; }
  .at-xl-15,
  .ay-xl-15 {
    top: 15rem !important; }
  .ar-xl-15,
  .ax-xl-15 {
    right: 15rem !important; }
  .ab-xl-15,
  .ay-xl-15 {
    bottom: 15rem !important; }
  .al-xl-15,
  .ax-xl-15 {
    left: 15rem !important; }
  .a-xl-20 {
    top: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
    right: 20rem !important; }
  .at-xl-20,
  .ay-xl-20 {
    top: 20rem !important; }
  .ar-xl-20,
  .ax-xl-20 {
    right: 20rem !important; }
  .ab-xl-20,
  .ay-xl-20 {
    bottom: 20rem !important; }
  .al-xl-20,
  .ax-xl-20 {
    left: 20rem !important; }
  .a-xl-25 {
    top: 25rem !important;
    bottom: 25rem !important;
    left: 25rem !important;
    right: 25rem !important; }
  .at-xl-25,
  .ay-xl-25 {
    top: 25rem !important; }
  .ar-xl-25,
  .ax-xl-25 {
    right: 25rem !important; }
  .ab-xl-25,
  .ay-xl-25 {
    bottom: 25rem !important; }
  .al-xl-25,
  .ax-xl-25 {
    left: 25rem !important; }
  .a-xl-10p {
    top: 10% !important;
    bottom: 10% !important;
    left: 10% !important;
    right: 10% !important; }
  .at-xl-10p,
  .ay-xl-10p {
    top: 10% !important; }
  .ar-xl-10p,
  .ax-xl-10p {
    right: 10% !important; }
  .ab-xl-10p,
  .ay-xl-10p {
    bottom: 10% !important; }
  .al-xl-10p,
  .ax-xl-10p {
    left: 10% !important; }
  .a-xl-15p {
    top: 15% !important;
    bottom: 15% !important;
    left: 15% !important;
    right: 15% !important; }
  .at-xl-15p,
  .ay-xl-15p {
    top: 15% !important; }
  .ar-xl-15p,
  .ax-xl-15p {
    right: 15% !important; }
  .ab-xl-15p,
  .ay-xl-15p {
    bottom: 15% !important; }
  .al-xl-15p,
  .ax-xl-15p {
    left: 15% !important; }
  .a-xl-20p {
    top: 20% !important;
    bottom: 20% !important;
    left: 20% !important;
    right: 20% !important; }
  .at-xl-20p,
  .ay-xl-20p {
    top: 20% !important; }
  .ar-xl-20p,
  .ax-xl-20p {
    right: 20% !important; }
  .ab-xl-20p,
  .ay-xl-20p {
    bottom: 20% !important; }
  .al-xl-20p,
  .ax-xl-20p {
    left: 20% !important; }
  .a-xl-25p {
    top: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
    right: 25% !important; }
  .at-xl-25p,
  .ay-xl-25p {
    top: 25% !important; }
  .ar-xl-25p,
  .ax-xl-25p {
    right: 25% !important; }
  .ab-xl-25p,
  .ay-xl-25p {
    bottom: 25% !important; }
  .al-xl-25p,
  .ax-xl-25p {
    left: 25% !important; }
  .a-xl-30p {
    top: 30% !important;
    bottom: 30% !important;
    left: 30% !important;
    right: 30% !important; }
  .at-xl-30p,
  .ay-xl-30p {
    top: 30% !important; }
  .ar-xl-30p,
  .ax-xl-30p {
    right: 30% !important; }
  .ab-xl-30p,
  .ay-xl-30p {
    bottom: 30% !important; }
  .al-xl-30p,
  .ax-xl-30p {
    left: 30% !important; }
  .a-xl-40p {
    top: 40% !important;
    bottom: 40% !important;
    left: 40% !important;
    right: 40% !important; }
  .at-xl-40p,
  .ay-xl-40p {
    top: 40% !important; }
  .ar-xl-40p,
  .ax-xl-40p {
    right: 40% !important; }
  .ab-xl-40p,
  .ay-xl-40p {
    bottom: 40% !important; }
  .al-xl-40p,
  .ax-xl-40p {
    left: 40% !important; }
  .a-xl-50p {
    top: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
    right: 50% !important; }
  .at-xl-50p,
  .ay-xl-50p {
    top: 50% !important; }
  .ar-xl-50p,
  .ax-xl-50p {
    right: 50% !important; }
  .ab-xl-50p,
  .ay-xl-50p {
    bottom: 50% !important; }
  .al-xl-50p,
  .ax-xl-50p {
    left: 50% !important; }
  .a-xl-60p {
    top: 60% !important;
    bottom: 60% !important;
    left: 60% !important;
    right: 60% !important; }
  .at-xl-60p,
  .ay-xl-60p {
    top: 60% !important; }
  .ar-xl-60p,
  .ax-xl-60p {
    right: 60% !important; }
  .ab-xl-60p,
  .ay-xl-60p {
    bottom: 60% !important; }
  .al-xl-60p,
  .ax-xl-60p {
    left: 60% !important; }
  .a-xl-n1 {
    top: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
    right: -0.25rem !important; }
  .at-xl-n1,
  .ay-xl-n1 {
    top: -0.25rem !important; }
  .ar-xl-n1,
  .ax-xl-n1 {
    right: -0.25rem !important; }
  .ab-xl-n1,
  .ay-xl-n1 {
    bottom: -0.25rem !important; }
  .al-xl-n1,
  .ax-xl-n1 {
    left: -0.25rem !important; }
  .a-xl-n2 {
    top: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
    right: -0.5rem !important; }
  .at-xl-n2,
  .ay-xl-n2 {
    top: -0.5rem !important; }
  .ar-xl-n2,
  .ax-xl-n2 {
    right: -0.5rem !important; }
  .ab-xl-n2,
  .ay-xl-n2 {
    bottom: -0.5rem !important; }
  .al-xl-n2,
  .ax-xl-n2 {
    left: -0.5rem !important; }
  .a-xl-n3 {
    top: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
    right: -1rem !important; }
  .at-xl-n3,
  .ay-xl-n3 {
    top: -1rem !important; }
  .ar-xl-n3,
  .ax-xl-n3 {
    right: -1rem !important; }
  .ab-xl-n3,
  .ay-xl-n3 {
    bottom: -1rem !important; }
  .al-xl-n3,
  .ax-xl-n3 {
    left: -1rem !important; }
  .a-xl-n4 {
    top: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
    right: -1.5rem !important; }
  .at-xl-n4,
  .ay-xl-n4 {
    top: -1.5rem !important; }
  .ar-xl-n4,
  .ax-xl-n4 {
    right: -1.5rem !important; }
  .ab-xl-n4,
  .ay-xl-n4 {
    bottom: -1.5rem !important; }
  .al-xl-n4,
  .ax-xl-n4 {
    left: -1.5rem !important; }
  .a-xl-n5 {
    top: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
    right: -3rem !important; }
  .at-xl-n5,
  .ay-xl-n5 {
    top: -3rem !important; }
  .ar-xl-n5,
  .ax-xl-n5 {
    right: -3rem !important; }
  .ab-xl-n5,
  .ay-xl-n5 {
    bottom: -3rem !important; }
  .al-xl-n5,
  .ax-xl-n5 {
    left: -3rem !important; }
  .a-xl-n4-5 {
    top: -4.5rem !important;
    bottom: -4.5rem !important;
    left: -4.5rem !important;
    right: -4.5rem !important; }
  .at-xl-n4-5,
  .ay-xl-n4-5 {
    top: -4.5rem !important; }
  .ar-xl-n4-5,
  .ax-xl-n4-5 {
    right: -4.5rem !important; }
  .ab-xl-n4-5,
  .ay-xl-n4-5 {
    bottom: -4.5rem !important; }
  .al-xl-n4-5,
  .ax-xl-n4-5 {
    left: -4.5rem !important; }
  .a-xl-n5-5 {
    top: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
    right: -4rem !important; }
  .at-xl-n5-5,
  .ay-xl-n5-5 {
    top: -4rem !important; }
  .ar-xl-n5-5,
  .ax-xl-n5-5 {
    right: -4rem !important; }
  .ab-xl-n5-5,
  .ay-xl-n5-5 {
    bottom: -4rem !important; }
  .al-xl-n5-5,
  .ax-xl-n5-5 {
    left: -4rem !important; }
  .a-xl-n6 {
    top: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
    right: -6rem !important; }
  .at-xl-n6,
  .ay-xl-n6 {
    top: -6rem !important; }
  .ar-xl-n6,
  .ax-xl-n6 {
    right: -6rem !important; }
  .ab-xl-n6,
  .ay-xl-n6 {
    bottom: -6rem !important; }
  .al-xl-n6,
  .ax-xl-n6 {
    left: -6rem !important; }
  .a-xl-n7 {
    top: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
    right: -7rem !important; }
  .at-xl-n7,
  .ay-xl-n7 {
    top: -7rem !important; }
  .ar-xl-n7,
  .ax-xl-n7 {
    right: -7rem !important; }
  .ab-xl-n7,
  .ay-xl-n7 {
    bottom: -7rem !important; }
  .al-xl-n7,
  .ax-xl-n7 {
    left: -7rem !important; }
  .a-xl-n8 {
    top: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
    right: -8rem !important; }
  .at-xl-n8,
  .ay-xl-n8 {
    top: -8rem !important; }
  .ar-xl-n8,
  .ax-xl-n8 {
    right: -8rem !important; }
  .ab-xl-n8,
  .ay-xl-n8 {
    bottom: -8rem !important; }
  .al-xl-n8,
  .ax-xl-n8 {
    left: -8rem !important; }
  .a-xl-n9 {
    top: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
    right: -9rem !important; }
  .at-xl-n9,
  .ay-xl-n9 {
    top: -9rem !important; }
  .ar-xl-n9,
  .ax-xl-n9 {
    right: -9rem !important; }
  .ab-xl-n9,
  .ay-xl-n9 {
    bottom: -9rem !important; }
  .al-xl-n9,
  .ax-xl-n9 {
    left: -9rem !important; }
  .a-xl-n10 {
    top: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
    right: -10rem !important; }
  .at-xl-n10,
  .ay-xl-n10 {
    top: -10rem !important; }
  .ar-xl-n10,
  .ax-xl-n10 {
    right: -10rem !important; }
  .ab-xl-n10,
  .ay-xl-n10 {
    bottom: -10rem !important; }
  .al-xl-n10,
  .ax-xl-n10 {
    left: -10rem !important; }
  .a-xl-n15 {
    top: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
    right: -15rem !important; }
  .at-xl-n15,
  .ay-xl-n15 {
    top: -15rem !important; }
  .ar-xl-n15,
  .ax-xl-n15 {
    right: -15rem !important; }
  .ab-xl-n15,
  .ay-xl-n15 {
    bottom: -15rem !important; }
  .al-xl-n15,
  .ax-xl-n15 {
    left: -15rem !important; }
  .a-xl-n20 {
    top: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
    right: -20rem !important; }
  .at-xl-n20,
  .ay-xl-n20 {
    top: -20rem !important; }
  .ar-xl-n20,
  .ax-xl-n20 {
    right: -20rem !important; }
  .ab-xl-n20,
  .ay-xl-n20 {
    bottom: -20rem !important; }
  .al-xl-n20,
  .ax-xl-n20 {
    left: -20rem !important; }
  .a-xl-n25 {
    top: -25rem !important;
    bottom: -25rem !important;
    left: -25rem !important;
    right: -25rem !important; }
  .at-xl-n25,
  .ay-xl-n25 {
    top: -25rem !important; }
  .ar-xl-n25,
  .ax-xl-n25 {
    right: -25rem !important; }
  .ab-xl-n25,
  .ay-xl-n25 {
    bottom: -25rem !important; }
  .al-xl-n25,
  .ax-xl-n25 {
    left: -25rem !important; }
  .a-xl-n10p {
    top: -10% !important;
    bottom: -10% !important;
    left: -10% !important;
    right: -10% !important; }
  .at-xl-n10p,
  .ay-xl-n10p {
    top: -10% !important; }
  .ar-xl-n10p,
  .ax-xl-n10p {
    right: -10% !important; }
  .ab-xl-n10p,
  .ay-xl-n10p {
    bottom: -10% !important; }
  .al-xl-n10p,
  .ax-xl-n10p {
    left: -10% !important; }
  .a-xl-n15p {
    top: -15% !important;
    bottom: -15% !important;
    left: -15% !important;
    right: -15% !important; }
  .at-xl-n15p,
  .ay-xl-n15p {
    top: -15% !important; }
  .ar-xl-n15p,
  .ax-xl-n15p {
    right: -15% !important; }
  .ab-xl-n15p,
  .ay-xl-n15p {
    bottom: -15% !important; }
  .al-xl-n15p,
  .ax-xl-n15p {
    left: -15% !important; }
  .a-xl-n20p {
    top: -20% !important;
    bottom: -20% !important;
    left: -20% !important;
    right: -20% !important; }
  .at-xl-n20p,
  .ay-xl-n20p {
    top: -20% !important; }
  .ar-xl-n20p,
  .ax-xl-n20p {
    right: -20% !important; }
  .ab-xl-n20p,
  .ay-xl-n20p {
    bottom: -20% !important; }
  .al-xl-n20p,
  .ax-xl-n20p {
    left: -20% !important; }
  .a-xl-n25p {
    top: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
    right: -25% !important; }
  .at-xl-n25p,
  .ay-xl-n25p {
    top: -25% !important; }
  .ar-xl-n25p,
  .ax-xl-n25p {
    right: -25% !important; }
  .ab-xl-n25p,
  .ay-xl-n25p {
    bottom: -25% !important; }
  .al-xl-n25p,
  .ax-xl-n25p {
    left: -25% !important; }
  .a-xl-n30p {
    top: -30% !important;
    bottom: -30% !important;
    left: -30% !important;
    right: -30% !important; }
  .at-xl-n30p,
  .ay-xl-n30p {
    top: -30% !important; }
  .ar-xl-n30p,
  .ax-xl-n30p {
    right: -30% !important; }
  .ab-xl-n30p,
  .ay-xl-n30p {
    bottom: -30% !important; }
  .al-xl-n30p,
  .ax-xl-n30p {
    left: -30% !important; }
  .a-xl-n40p {
    top: -40% !important;
    bottom: -40% !important;
    left: -40% !important;
    right: -40% !important; }
  .at-xl-n40p,
  .ay-xl-n40p {
    top: -40% !important; }
  .ar-xl-n40p,
  .ax-xl-n40p {
    right: -40% !important; }
  .ab-xl-n40p,
  .ay-xl-n40p {
    bottom: -40% !important; }
  .al-xl-n40p,
  .ax-xl-n40p {
    left: -40% !important; }
  .a-xl-n50p {
    top: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
    right: -50% !important; }
  .at-xl-n50p,
  .ay-xl-n50p {
    top: -50% !important; }
  .ar-xl-n50p,
  .ax-xl-n50p {
    right: -50% !important; }
  .ab-xl-n50p,
  .ay-xl-n50p {
    bottom: -50% !important; }
  .al-xl-n50p,
  .ax-xl-n50p {
    left: -50% !important; }
  .a-xl-n60p {
    top: -60% !important;
    bottom: -60% !important;
    left: -60% !important;
    right: -60% !important; }
  .at-xl-n60p,
  .ay-xl-n60p {
    top: -60% !important; }
  .ar-xl-n60p,
  .ax-xl-n60p {
    right: -60% !important; }
  .ab-xl-n60p,
  .ay-xl-n60p {
    bottom: -60% !important; }
  .al-xl-n60p,
  .ax-xl-n60p {
    left: -60% !important; }
  .a-xl-auto {
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important; }
  .at-xl-auto,
  .ay-xl-auto {
    top: auto !important; }
  .ar-xl-auto,
  .ax-xl-auto {
    right: auto !important; }
  .ab-xl-auto,
  .ay-xl-auto {
    bottom: auto !important; }
  .al-xl-auto,
  .ax-xl-auto {
    left: auto !important; }
  .al-xl-30 {
    left: 30% !important; } }

.w-25 {
  width: 25% !important; }

.max-w-25 {
  max-width: 25% !important; }

.min-w-25 {
  min-width: 25% !important; }

.w-50 {
  width: 50% !important; }

.max-w-50 {
  max-width: 50% !important; }

.min-w-50 {
  min-width: 50% !important; }

.w-75 {
  width: 75% !important; }

.max-w-75 {
  max-width: 75% !important; }

.min-w-75 {
  min-width: 75% !important; }

.w-100 {
  width: 100% !important; }

.max-w-100 {
  max-width: 100% !important; }

.min-w-100 {
  min-width: 100% !important; }

.w-auto {
  width: auto !important; }

.max-w-auto {
  max-width: auto !important; }

.min-w-auto {
  min-width: auto !important; }

.w-1 r {
  width: 1rem !important; }

.max-w-1 r {
  max-width: 1rem !important; }

.min-w-1 r {
  min-width: 1rem !important; }

.w-5 {
  width: 5% !important; }

.max-w-5 {
  max-width: 5% !important; }

.min-w-5 {
  min-width: 5% !important; }

.w-10 {
  width: 10% !important; }

.max-w-10 {
  max-width: 10% !important; }

.min-w-10 {
  min-width: 10% !important; }

.w-15 {
  width: 15% !important; }

.max-w-15 {
  max-width: 15% !important; }

.min-w-15 {
  min-width: 15% !important; }

.w-20 {
  width: 20% !important; }

.max-w-20 {
  max-width: 20% !important; }

.min-w-20 {
  min-width: 20% !important; }

.w-30 {
  width: 30% !important; }

.max-w-30 {
  max-width: 30% !important; }

.min-w-30 {
  min-width: 30% !important; }

.w-35 {
  width: 35% !important; }

.max-w-35 {
  max-width: 35% !important; }

.min-w-35 {
  min-width: 35% !important; }

.w-40 {
  width: 40% !important; }

.max-w-40 {
  max-width: 40% !important; }

.min-w-40 {
  min-width: 40% !important; }

.w-45 {
  width: 45% !important; }

.max-w-45 {
  max-width: 45% !important; }

.min-w-45 {
  min-width: 45% !important; }

.w-55 {
  width: 55% !important; }

.max-w-55 {
  max-width: 55% !important; }

.min-w-55 {
  min-width: 55% !important; }

.w-60 {
  width: 60% !important; }

.max-w-60 {
  max-width: 60% !important; }

.min-w-60 {
  min-width: 60% !important; }

.w-65 {
  width: 65% !important; }

.max-w-65 {
  max-width: 65% !important; }

.min-w-65 {
  min-width: 65% !important; }

.w-70 {
  width: 70% !important; }

.max-w-70 {
  max-width: 70% !important; }

.min-w-70 {
  min-width: 70% !important; }

.w-80 {
  width: 80% !important; }

.max-w-80 {
  max-width: 80% !important; }

.min-w-80 {
  min-width: 80% !important; }

.w-85 {
  width: 85% !important; }

.max-w-85 {
  max-width: 85% !important; }

.min-w-85 {
  min-width: 85% !important; }

.w-90 {
  width: 90% !important; }

.max-w-90 {
  max-width: 90% !important; }

.min-w-90 {
  min-width: 90% !important; }

.w-95 {
  width: 95% !important; }

.max-w-95 {
  max-width: 95% !important; }

.min-w-95 {
  min-width: 95% !important; }

.w-15px {
  width: 15px !important; }

.max-w-15px {
  max-width: 15px !important; }

.min-w-15px {
  min-width: 15px !important; }

.w-25px {
  width: 25px !important; }

.max-w-25px {
  max-width: 25px !important; }

.min-w-25px {
  min-width: 25px !important; }

.w-32px {
  width: 32px !important; }

.max-w-32px {
  max-width: 32px !important; }

.min-w-32px {
  min-width: 32px !important; }

.w-35px {
  width: 35px !important; }

.max-w-35px {
  max-width: 35px !important; }

.min-w-35px {
  min-width: 35px !important; }

.w-50px {
  width: 50px !important; }

.max-w-50px {
  max-width: 50px !important; }

.min-w-50px {
  min-width: 50px !important; }

.w-75px {
  width: 75px !important; }

.max-w-75px {
  max-width: 75px !important; }

.min-w-75px {
  min-width: 75px !important; }

.w-100px {
  width: 100px !important; }

.max-w-100px {
  max-width: 100px !important; }

.min-w-100px {
  min-width: 100px !important; }

.w-150px {
  width: 150px !important; }

.max-w-150px {
  max-width: 150px !important; }

.min-w-150px {
  min-width: 150px !important; }

.w-200px {
  width: 200px !important; }

.max-w-200px {
  max-width: 200px !important; }

.min-w-200px {
  min-width: 200px !important; }

.w-230px {
  width: 230px !important; }

.max-w-230px {
  max-width: 230px !important; }

.min-w-230px {
  min-width: 230px !important; }

.w-250px {
  width: 250px !important; }

.max-w-250px {
  max-width: 250px !important; }

.min-w-250px {
  min-width: 250px !important; }

.w-275px {
  width: 275px !important; }

.max-w-275px {
  max-width: 275px !important; }

.min-w-275px {
  min-width: 275px !important; }

.w-300px {
  width: 300px !important; }

.max-w-300px {
  max-width: 300px !important; }

.min-w-300px {
  min-width: 300px !important; }

.w-350px {
  width: 350px !important; }

.max-w-350px {
  max-width: 350px !important; }

.min-w-350px {
  min-width: 350px !important; }

.w-400px {
  width: 400px !important; }

.max-w-400px {
  max-width: 400px !important; }

.min-w-400px {
  min-width: 400px !important; }

.w-450px {
  width: 450px !important; }

.max-w-450px {
  max-width: 450px !important; }

.min-w-450px {
  min-width: 450px !important; }

.w-475px {
  width: 475px !important; }

.max-w-475px {
  max-width: 475px !important; }

.min-w-475px {
  min-width: 475px !important; }

.w-500px {
  width: 500px !important; }

.max-w-500px {
  max-width: 500px !important; }

.min-w-500px {
  min-width: 500px !important; }

.w-600px {
  width: 600px !important; }

.max-w-600px {
  max-width: 600px !important; }

.min-w-600px {
  min-width: 600px !important; }

.w-650px {
  width: 650px !important; }

.max-w-650px {
  max-width: 650px !important; }

.min-w-650px {
  min-width: 650px !important; }

.w-700px {
  width: 700px !important; }

.max-w-700px {
  max-width: 700px !important; }

.min-w-700px {
  min-width: 700px !important; }

.w-3r {
  width: 3rem !important; }

.max-w-3r {
  max-width: 3rem !important; }

.min-w-3r {
  min-width: 3rem !important; }

.w-4r {
  width: 4rem !important; }

.max-w-4r {
  max-width: 4rem !important; }

.min-w-4r {
  min-width: 4rem !important; }

.h-25 {
  height: 25% !important; }

.max-h-25 {
  max-height: 25% !important; }

.min-h-25 {
  min-height: 25% !important; }

.h-50 {
  height: 50% !important; }

.max-h-50 {
  max-height: 50% !important; }

.min-h-50 {
  min-height: 50% !important; }

.h-75 {
  height: 75% !important; }

.max-h-75 {
  max-height: 75% !important; }

.min-h-75 {
  min-height: 75% !important; }

.h-100 {
  height: 100% !important; }

.max-h-100 {
  max-height: 100% !important; }

.min-h-100 {
  min-height: 100% !important; }

.h-auto {
  height: auto !important; }

.max-h-auto {
  max-height: auto !important; }

.min-h-auto {
  min-height: auto !important; }

.h-1 r {
  height: 1rem !important; }

.max-h-1 r {
  max-height: 1rem !important; }

.min-h-1 r {
  min-height: 1rem !important; }

.h-5 {
  height: 5% !important; }

.max-h-5 {
  max-height: 5% !important; }

.min-h-5 {
  min-height: 5% !important; }

.h-10 {
  height: 10% !important; }

.max-h-10 {
  max-height: 10% !important; }

.min-h-10 {
  min-height: 10% !important; }

.h-15 {
  height: 15% !important; }

.max-h-15 {
  max-height: 15% !important; }

.min-h-15 {
  min-height: 15% !important; }

.h-20 {
  height: 20% !important; }

.max-h-20 {
  max-height: 20% !important; }

.min-h-20 {
  min-height: 20% !important; }

.h-30 {
  height: 30% !important; }

.max-h-30 {
  max-height: 30% !important; }

.min-h-30 {
  min-height: 30% !important; }

.h-35 {
  height: 35% !important; }

.max-h-35 {
  max-height: 35% !important; }

.min-h-35 {
  min-height: 35% !important; }

.h-40 {
  height: 40% !important; }

.max-h-40 {
  max-height: 40% !important; }

.min-h-40 {
  min-height: 40% !important; }

.h-45 {
  height: 45% !important; }

.max-h-45 {
  max-height: 45% !important; }

.min-h-45 {
  min-height: 45% !important; }

.h-55 {
  height: 55% !important; }

.max-h-55 {
  max-height: 55% !important; }

.min-h-55 {
  min-height: 55% !important; }

.h-60 {
  height: 60% !important; }

.max-h-60 {
  max-height: 60% !important; }

.min-h-60 {
  min-height: 60% !important; }

.h-65 {
  height: 65% !important; }

.max-h-65 {
  max-height: 65% !important; }

.min-h-65 {
  min-height: 65% !important; }

.h-70 {
  height: 70% !important; }

.max-h-70 {
  max-height: 70% !important; }

.min-h-70 {
  min-height: 70% !important; }

.h-80 {
  height: 80% !important; }

.max-h-80 {
  max-height: 80% !important; }

.min-h-80 {
  min-height: 80% !important; }

.h-85 {
  height: 85% !important; }

.max-h-85 {
  max-height: 85% !important; }

.min-h-85 {
  min-height: 85% !important; }

.h-90 {
  height: 90% !important; }

.max-h-90 {
  max-height: 90% !important; }

.min-h-90 {
  min-height: 90% !important; }

.h-95 {
  height: 95% !important; }

.max-h-95 {
  max-height: 95% !important; }

.min-h-95 {
  min-height: 95% !important; }

.h-15px {
  height: 15px !important; }

.max-h-15px {
  max-height: 15px !important; }

.min-h-15px {
  min-height: 15px !important; }

.h-25px {
  height: 25px !important; }

.max-h-25px {
  max-height: 25px !important; }

.min-h-25px {
  min-height: 25px !important; }

.h-32px {
  height: 32px !important; }

.max-h-32px {
  max-height: 32px !important; }

.min-h-32px {
  min-height: 32px !important; }

.h-35px {
  height: 35px !important; }

.max-h-35px {
  max-height: 35px !important; }

.min-h-35px {
  min-height: 35px !important; }

.h-50px {
  height: 50px !important; }

.max-h-50px {
  max-height: 50px !important; }

.min-h-50px {
  min-height: 50px !important; }

.h-75px {
  height: 75px !important; }

.max-h-75px {
  max-height: 75px !important; }

.min-h-75px {
  min-height: 75px !important; }

.h-100px {
  height: 100px !important; }

.max-h-100px {
  max-height: 100px !important; }

.min-h-100px {
  min-height: 100px !important; }

.h-150px {
  height: 150px !important; }

.max-h-150px {
  max-height: 150px !important; }

.min-h-150px {
  min-height: 150px !important; }

.h-200px {
  height: 200px !important; }

.max-h-200px {
  max-height: 200px !important; }

.min-h-200px {
  min-height: 200px !important; }

.h-230px {
  height: 230px !important; }

.max-h-230px {
  max-height: 230px !important; }

.min-h-230px {
  min-height: 230px !important; }

.h-250px {
  height: 250px !important; }

.max-h-250px {
  max-height: 250px !important; }

.min-h-250px {
  min-height: 250px !important; }

.h-275px {
  height: 275px !important; }

.max-h-275px {
  max-height: 275px !important; }

.min-h-275px {
  min-height: 275px !important; }

.h-300px {
  height: 300px !important; }

.max-h-300px {
  max-height: 300px !important; }

.min-h-300px {
  min-height: 300px !important; }

.h-350px {
  height: 350px !important; }

.max-h-350px {
  max-height: 350px !important; }

.min-h-350px {
  min-height: 350px !important; }

.h-400px {
  height: 400px !important; }

.max-h-400px {
  max-height: 400px !important; }

.min-h-400px {
  min-height: 400px !important; }

.h-450px {
  height: 450px !important; }

.max-h-450px {
  max-height: 450px !important; }

.min-h-450px {
  min-height: 450px !important; }

.h-475px {
  height: 475px !important; }

.max-h-475px {
  max-height: 475px !important; }

.min-h-475px {
  min-height: 475px !important; }

.h-500px {
  height: 500px !important; }

.max-h-500px {
  max-height: 500px !important; }

.min-h-500px {
  min-height: 500px !important; }

.h-600px {
  height: 600px !important; }

.max-h-600px {
  max-height: 600px !important; }

.min-h-600px {
  min-height: 600px !important; }

.h-650px {
  height: 650px !important; }

.max-h-650px {
  max-height: 650px !important; }

.min-h-650px {
  min-height: 650px !important; }

.h-700px {
  height: 700px !important; }

.max-h-700px {
  max-height: 700px !important; }

.min-h-700px {
  min-height: 700px !important; }

.h-3r {
  height: 3rem !important; }

.max-h-3r {
  max-height: 3rem !important; }

.min-h-3r {
  min-height: 3rem !important; }

.h-4r {
  height: 4rem !important; }

.max-h-4r {
  max-height: 4rem !important; }

.min-h-4r {
  min-height: 4rem !important; }

@media (min-width: 576px) {
  .w-sm-25 {
    width: 25% !important; }
  .max-w-sm-25 {
    max-width: 25% !important; }
  .min-w-sm-25 {
    min-width: 25% !important; }
  .w-sm-50 {
    width: 50% !important; }
  .max-w-sm-50 {
    max-width: 50% !important; }
  .min-w-sm-50 {
    min-width: 50% !important; }
  .w-sm-75 {
    width: 75% !important; }
  .max-w-sm-75 {
    max-width: 75% !important; }
  .min-w-sm-75 {
    min-width: 75% !important; }
  .w-sm-100 {
    width: 100% !important; }
  .max-w-sm-100 {
    max-width: 100% !important; }
  .min-w-sm-100 {
    min-width: 100% !important; }
  .w-sm-auto {
    width: auto !important; }
  .max-w-sm-auto {
    max-width: auto !important; }
  .min-w-sm-auto {
    min-width: auto !important; }
  .w-sm-1 r {
    width: 1rem !important; }
  .max-w-sm-1 r {
    max-width: 1rem !important; }
  .min-w-sm-1 r {
    min-width: 1rem !important; }
  .w-sm-5 {
    width: 5% !important; }
  .max-w-sm-5 {
    max-width: 5% !important; }
  .min-w-sm-5 {
    min-width: 5% !important; }
  .w-sm-10 {
    width: 10% !important; }
  .max-w-sm-10 {
    max-width: 10% !important; }
  .min-w-sm-10 {
    min-width: 10% !important; }
  .w-sm-15 {
    width: 15% !important; }
  .max-w-sm-15 {
    max-width: 15% !important; }
  .min-w-sm-15 {
    min-width: 15% !important; }
  .w-sm-20 {
    width: 20% !important; }
  .max-w-sm-20 {
    max-width: 20% !important; }
  .min-w-sm-20 {
    min-width: 20% !important; }
  .w-sm-30 {
    width: 30% !important; }
  .max-w-sm-30 {
    max-width: 30% !important; }
  .min-w-sm-30 {
    min-width: 30% !important; }
  .w-sm-35 {
    width: 35% !important; }
  .max-w-sm-35 {
    max-width: 35% !important; }
  .min-w-sm-35 {
    min-width: 35% !important; }
  .w-sm-40 {
    width: 40% !important; }
  .max-w-sm-40 {
    max-width: 40% !important; }
  .min-w-sm-40 {
    min-width: 40% !important; }
  .w-sm-45 {
    width: 45% !important; }
  .max-w-sm-45 {
    max-width: 45% !important; }
  .min-w-sm-45 {
    min-width: 45% !important; }
  .w-sm-55 {
    width: 55% !important; }
  .max-w-sm-55 {
    max-width: 55% !important; }
  .min-w-sm-55 {
    min-width: 55% !important; }
  .w-sm-60 {
    width: 60% !important; }
  .max-w-sm-60 {
    max-width: 60% !important; }
  .min-w-sm-60 {
    min-width: 60% !important; }
  .w-sm-65 {
    width: 65% !important; }
  .max-w-sm-65 {
    max-width: 65% !important; }
  .min-w-sm-65 {
    min-width: 65% !important; }
  .w-sm-70 {
    width: 70% !important; }
  .max-w-sm-70 {
    max-width: 70% !important; }
  .min-w-sm-70 {
    min-width: 70% !important; }
  .w-sm-80 {
    width: 80% !important; }
  .max-w-sm-80 {
    max-width: 80% !important; }
  .min-w-sm-80 {
    min-width: 80% !important; }
  .w-sm-85 {
    width: 85% !important; }
  .max-w-sm-85 {
    max-width: 85% !important; }
  .min-w-sm-85 {
    min-width: 85% !important; }
  .w-sm-90 {
    width: 90% !important; }
  .max-w-sm-90 {
    max-width: 90% !important; }
  .min-w-sm-90 {
    min-width: 90% !important; }
  .w-sm-95 {
    width: 95% !important; }
  .max-w-sm-95 {
    max-width: 95% !important; }
  .min-w-sm-95 {
    min-width: 95% !important; }
  .w-sm-15px {
    width: 15px !important; }
  .max-w-sm-15px {
    max-width: 15px !important; }
  .min-w-sm-15px {
    min-width: 15px !important; }
  .w-sm-25px {
    width: 25px !important; }
  .max-w-sm-25px {
    max-width: 25px !important; }
  .min-w-sm-25px {
    min-width: 25px !important; }
  .w-sm-32px {
    width: 32px !important; }
  .max-w-sm-32px {
    max-width: 32px !important; }
  .min-w-sm-32px {
    min-width: 32px !important; }
  .w-sm-35px {
    width: 35px !important; }
  .max-w-sm-35px {
    max-width: 35px !important; }
  .min-w-sm-35px {
    min-width: 35px !important; }
  .w-sm-50px {
    width: 50px !important; }
  .max-w-sm-50px {
    max-width: 50px !important; }
  .min-w-sm-50px {
    min-width: 50px !important; }
  .w-sm-75px {
    width: 75px !important; }
  .max-w-sm-75px {
    max-width: 75px !important; }
  .min-w-sm-75px {
    min-width: 75px !important; }
  .w-sm-100px {
    width: 100px !important; }
  .max-w-sm-100px {
    max-width: 100px !important; }
  .min-w-sm-100px {
    min-width: 100px !important; }
  .w-sm-150px {
    width: 150px !important; }
  .max-w-sm-150px {
    max-width: 150px !important; }
  .min-w-sm-150px {
    min-width: 150px !important; }
  .w-sm-200px {
    width: 200px !important; }
  .max-w-sm-200px {
    max-width: 200px !important; }
  .min-w-sm-200px {
    min-width: 200px !important; }
  .w-sm-230px {
    width: 230px !important; }
  .max-w-sm-230px {
    max-width: 230px !important; }
  .min-w-sm-230px {
    min-width: 230px !important; }
  .w-sm-250px {
    width: 250px !important; }
  .max-w-sm-250px {
    max-width: 250px !important; }
  .min-w-sm-250px {
    min-width: 250px !important; }
  .w-sm-275px {
    width: 275px !important; }
  .max-w-sm-275px {
    max-width: 275px !important; }
  .min-w-sm-275px {
    min-width: 275px !important; }
  .w-sm-300px {
    width: 300px !important; }
  .max-w-sm-300px {
    max-width: 300px !important; }
  .min-w-sm-300px {
    min-width: 300px !important; }
  .w-sm-350px {
    width: 350px !important; }
  .max-w-sm-350px {
    max-width: 350px !important; }
  .min-w-sm-350px {
    min-width: 350px !important; }
  .w-sm-400px {
    width: 400px !important; }
  .max-w-sm-400px {
    max-width: 400px !important; }
  .min-w-sm-400px {
    min-width: 400px !important; }
  .w-sm-450px {
    width: 450px !important; }
  .max-w-sm-450px {
    max-width: 450px !important; }
  .min-w-sm-450px {
    min-width: 450px !important; }
  .w-sm-475px {
    width: 475px !important; }
  .max-w-sm-475px {
    max-width: 475px !important; }
  .min-w-sm-475px {
    min-width: 475px !important; }
  .w-sm-500px {
    width: 500px !important; }
  .max-w-sm-500px {
    max-width: 500px !important; }
  .min-w-sm-500px {
    min-width: 500px !important; }
  .w-sm-600px {
    width: 600px !important; }
  .max-w-sm-600px {
    max-width: 600px !important; }
  .min-w-sm-600px {
    min-width: 600px !important; }
  .w-sm-650px {
    width: 650px !important; }
  .max-w-sm-650px {
    max-width: 650px !important; }
  .min-w-sm-650px {
    min-width: 650px !important; }
  .w-sm-700px {
    width: 700px !important; }
  .max-w-sm-700px {
    max-width: 700px !important; }
  .min-w-sm-700px {
    min-width: 700px !important; }
  .w-sm-3r {
    width: 3rem !important; }
  .max-w-sm-3r {
    max-width: 3rem !important; }
  .min-w-sm-3r {
    min-width: 3rem !important; }
  .w-sm-4r {
    width: 4rem !important; }
  .max-w-sm-4r {
    max-width: 4rem !important; }
  .min-w-sm-4r {
    min-width: 4rem !important; }
  .h-sm-25 {
    height: 25% !important; }
  .max-h-sm-25 {
    max-height: 25% !important; }
  .min-h-sm-25 {
    min-height: 25% !important; }
  .h-sm-50 {
    height: 50% !important; }
  .max-h-sm-50 {
    max-height: 50% !important; }
  .min-h-sm-50 {
    min-height: 50% !important; }
  .h-sm-75 {
    height: 75% !important; }
  .max-h-sm-75 {
    max-height: 75% !important; }
  .min-h-sm-75 {
    min-height: 75% !important; }
  .h-sm-100 {
    height: 100% !important; }
  .max-h-sm-100 {
    max-height: 100% !important; }
  .min-h-sm-100 {
    min-height: 100% !important; }
  .h-sm-auto {
    height: auto !important; }
  .max-h-sm-auto {
    max-height: auto !important; }
  .min-h-sm-auto {
    min-height: auto !important; }
  .h-sm-1 r {
    height: 1rem !important; }
  .max-h-sm-1 r {
    max-height: 1rem !important; }
  .min-h-sm-1 r {
    min-height: 1rem !important; }
  .h-sm-5 {
    height: 5% !important; }
  .max-h-sm-5 {
    max-height: 5% !important; }
  .min-h-sm-5 {
    min-height: 5% !important; }
  .h-sm-10 {
    height: 10% !important; }
  .max-h-sm-10 {
    max-height: 10% !important; }
  .min-h-sm-10 {
    min-height: 10% !important; }
  .h-sm-15 {
    height: 15% !important; }
  .max-h-sm-15 {
    max-height: 15% !important; }
  .min-h-sm-15 {
    min-height: 15% !important; }
  .h-sm-20 {
    height: 20% !important; }
  .max-h-sm-20 {
    max-height: 20% !important; }
  .min-h-sm-20 {
    min-height: 20% !important; }
  .h-sm-30 {
    height: 30% !important; }
  .max-h-sm-30 {
    max-height: 30% !important; }
  .min-h-sm-30 {
    min-height: 30% !important; }
  .h-sm-35 {
    height: 35% !important; }
  .max-h-sm-35 {
    max-height: 35% !important; }
  .min-h-sm-35 {
    min-height: 35% !important; }
  .h-sm-40 {
    height: 40% !important; }
  .max-h-sm-40 {
    max-height: 40% !important; }
  .min-h-sm-40 {
    min-height: 40% !important; }
  .h-sm-45 {
    height: 45% !important; }
  .max-h-sm-45 {
    max-height: 45% !important; }
  .min-h-sm-45 {
    min-height: 45% !important; }
  .h-sm-55 {
    height: 55% !important; }
  .max-h-sm-55 {
    max-height: 55% !important; }
  .min-h-sm-55 {
    min-height: 55% !important; }
  .h-sm-60 {
    height: 60% !important; }
  .max-h-sm-60 {
    max-height: 60% !important; }
  .min-h-sm-60 {
    min-height: 60% !important; }
  .h-sm-65 {
    height: 65% !important; }
  .max-h-sm-65 {
    max-height: 65% !important; }
  .min-h-sm-65 {
    min-height: 65% !important; }
  .h-sm-70 {
    height: 70% !important; }
  .max-h-sm-70 {
    max-height: 70% !important; }
  .min-h-sm-70 {
    min-height: 70% !important; }
  .h-sm-80 {
    height: 80% !important; }
  .max-h-sm-80 {
    max-height: 80% !important; }
  .min-h-sm-80 {
    min-height: 80% !important; }
  .h-sm-85 {
    height: 85% !important; }
  .max-h-sm-85 {
    max-height: 85% !important; }
  .min-h-sm-85 {
    min-height: 85% !important; }
  .h-sm-90 {
    height: 90% !important; }
  .max-h-sm-90 {
    max-height: 90% !important; }
  .min-h-sm-90 {
    min-height: 90% !important; }
  .h-sm-95 {
    height: 95% !important; }
  .max-h-sm-95 {
    max-height: 95% !important; }
  .min-h-sm-95 {
    min-height: 95% !important; }
  .h-sm-15px {
    height: 15px !important; }
  .max-h-sm-15px {
    max-height: 15px !important; }
  .min-h-sm-15px {
    min-height: 15px !important; }
  .h-sm-25px {
    height: 25px !important; }
  .max-h-sm-25px {
    max-height: 25px !important; }
  .min-h-sm-25px {
    min-height: 25px !important; }
  .h-sm-32px {
    height: 32px !important; }
  .max-h-sm-32px {
    max-height: 32px !important; }
  .min-h-sm-32px {
    min-height: 32px !important; }
  .h-sm-35px {
    height: 35px !important; }
  .max-h-sm-35px {
    max-height: 35px !important; }
  .min-h-sm-35px {
    min-height: 35px !important; }
  .h-sm-50px {
    height: 50px !important; }
  .max-h-sm-50px {
    max-height: 50px !important; }
  .min-h-sm-50px {
    min-height: 50px !important; }
  .h-sm-75px {
    height: 75px !important; }
  .max-h-sm-75px {
    max-height: 75px !important; }
  .min-h-sm-75px {
    min-height: 75px !important; }
  .h-sm-100px {
    height: 100px !important; }
  .max-h-sm-100px {
    max-height: 100px !important; }
  .min-h-sm-100px {
    min-height: 100px !important; }
  .h-sm-150px {
    height: 150px !important; }
  .max-h-sm-150px {
    max-height: 150px !important; }
  .min-h-sm-150px {
    min-height: 150px !important; }
  .h-sm-200px {
    height: 200px !important; }
  .max-h-sm-200px {
    max-height: 200px !important; }
  .min-h-sm-200px {
    min-height: 200px !important; }
  .h-sm-230px {
    height: 230px !important; }
  .max-h-sm-230px {
    max-height: 230px !important; }
  .min-h-sm-230px {
    min-height: 230px !important; }
  .h-sm-250px {
    height: 250px !important; }
  .max-h-sm-250px {
    max-height: 250px !important; }
  .min-h-sm-250px {
    min-height: 250px !important; }
  .h-sm-275px {
    height: 275px !important; }
  .max-h-sm-275px {
    max-height: 275px !important; }
  .min-h-sm-275px {
    min-height: 275px !important; }
  .h-sm-300px {
    height: 300px !important; }
  .max-h-sm-300px {
    max-height: 300px !important; }
  .min-h-sm-300px {
    min-height: 300px !important; }
  .h-sm-350px {
    height: 350px !important; }
  .max-h-sm-350px {
    max-height: 350px !important; }
  .min-h-sm-350px {
    min-height: 350px !important; }
  .h-sm-400px {
    height: 400px !important; }
  .max-h-sm-400px {
    max-height: 400px !important; }
  .min-h-sm-400px {
    min-height: 400px !important; }
  .h-sm-450px {
    height: 450px !important; }
  .max-h-sm-450px {
    max-height: 450px !important; }
  .min-h-sm-450px {
    min-height: 450px !important; }
  .h-sm-475px {
    height: 475px !important; }
  .max-h-sm-475px {
    max-height: 475px !important; }
  .min-h-sm-475px {
    min-height: 475px !important; }
  .h-sm-500px {
    height: 500px !important; }
  .max-h-sm-500px {
    max-height: 500px !important; }
  .min-h-sm-500px {
    min-height: 500px !important; }
  .h-sm-600px {
    height: 600px !important; }
  .max-h-sm-600px {
    max-height: 600px !important; }
  .min-h-sm-600px {
    min-height: 600px !important; }
  .h-sm-650px {
    height: 650px !important; }
  .max-h-sm-650px {
    max-height: 650px !important; }
  .min-h-sm-650px {
    min-height: 650px !important; }
  .h-sm-700px {
    height: 700px !important; }
  .max-h-sm-700px {
    max-height: 700px !important; }
  .min-h-sm-700px {
    min-height: 700px !important; }
  .h-sm-3r {
    height: 3rem !important; }
  .max-h-sm-3r {
    max-height: 3rem !important; }
  .min-h-sm-3r {
    min-height: 3rem !important; }
  .h-sm-4r {
    height: 4rem !important; }
  .max-h-sm-4r {
    max-height: 4rem !important; }
  .min-h-sm-4r {
    min-height: 4rem !important; } }

@media (min-width: 768px) {
  .w-md-25 {
    width: 25% !important; }
  .max-w-md-25 {
    max-width: 25% !important; }
  .min-w-md-25 {
    min-width: 25% !important; }
  .w-md-50 {
    width: 50% !important; }
  .max-w-md-50 {
    max-width: 50% !important; }
  .min-w-md-50 {
    min-width: 50% !important; }
  .w-md-75 {
    width: 75% !important; }
  .max-w-md-75 {
    max-width: 75% !important; }
  .min-w-md-75 {
    min-width: 75% !important; }
  .w-md-100 {
    width: 100% !important; }
  .max-w-md-100 {
    max-width: 100% !important; }
  .min-w-md-100 {
    min-width: 100% !important; }
  .w-md-auto {
    width: auto !important; }
  .max-w-md-auto {
    max-width: auto !important; }
  .min-w-md-auto {
    min-width: auto !important; }
  .w-md-1 r {
    width: 1rem !important; }
  .max-w-md-1 r {
    max-width: 1rem !important; }
  .min-w-md-1 r {
    min-width: 1rem !important; }
  .w-md-5 {
    width: 5% !important; }
  .max-w-md-5 {
    max-width: 5% !important; }
  .min-w-md-5 {
    min-width: 5% !important; }
  .w-md-10 {
    width: 10% !important; }
  .max-w-md-10 {
    max-width: 10% !important; }
  .min-w-md-10 {
    min-width: 10% !important; }
  .w-md-15 {
    width: 15% !important; }
  .max-w-md-15 {
    max-width: 15% !important; }
  .min-w-md-15 {
    min-width: 15% !important; }
  .w-md-20 {
    width: 20% !important; }
  .max-w-md-20 {
    max-width: 20% !important; }
  .min-w-md-20 {
    min-width: 20% !important; }
  .w-md-30 {
    width: 30% !important; }
  .max-w-md-30 {
    max-width: 30% !important; }
  .min-w-md-30 {
    min-width: 30% !important; }
  .w-md-35 {
    width: 35% !important; }
  .max-w-md-35 {
    max-width: 35% !important; }
  .min-w-md-35 {
    min-width: 35% !important; }
  .w-md-40 {
    width: 40% !important; }
  .max-w-md-40 {
    max-width: 40% !important; }
  .min-w-md-40 {
    min-width: 40% !important; }
  .w-md-45 {
    width: 45% !important; }
  .max-w-md-45 {
    max-width: 45% !important; }
  .min-w-md-45 {
    min-width: 45% !important; }
  .w-md-55 {
    width: 55% !important; }
  .max-w-md-55 {
    max-width: 55% !important; }
  .min-w-md-55 {
    min-width: 55% !important; }
  .w-md-60 {
    width: 60% !important; }
  .max-w-md-60 {
    max-width: 60% !important; }
  .min-w-md-60 {
    min-width: 60% !important; }
  .w-md-65 {
    width: 65% !important; }
  .max-w-md-65 {
    max-width: 65% !important; }
  .min-w-md-65 {
    min-width: 65% !important; }
  .w-md-70 {
    width: 70% !important; }
  .max-w-md-70 {
    max-width: 70% !important; }
  .min-w-md-70 {
    min-width: 70% !important; }
  .w-md-80 {
    width: 80% !important; }
  .max-w-md-80 {
    max-width: 80% !important; }
  .min-w-md-80 {
    min-width: 80% !important; }
  .w-md-85 {
    width: 85% !important; }
  .max-w-md-85 {
    max-width: 85% !important; }
  .min-w-md-85 {
    min-width: 85% !important; }
  .w-md-90 {
    width: 90% !important; }
  .max-w-md-90 {
    max-width: 90% !important; }
  .min-w-md-90 {
    min-width: 90% !important; }
  .w-md-95 {
    width: 95% !important; }
  .max-w-md-95 {
    max-width: 95% !important; }
  .min-w-md-95 {
    min-width: 95% !important; }
  .w-md-15px {
    width: 15px !important; }
  .max-w-md-15px {
    max-width: 15px !important; }
  .min-w-md-15px {
    min-width: 15px !important; }
  .w-md-25px {
    width: 25px !important; }
  .max-w-md-25px {
    max-width: 25px !important; }
  .min-w-md-25px {
    min-width: 25px !important; }
  .w-md-32px {
    width: 32px !important; }
  .max-w-md-32px {
    max-width: 32px !important; }
  .min-w-md-32px {
    min-width: 32px !important; }
  .w-md-35px {
    width: 35px !important; }
  .max-w-md-35px {
    max-width: 35px !important; }
  .min-w-md-35px {
    min-width: 35px !important; }
  .w-md-50px {
    width: 50px !important; }
  .max-w-md-50px {
    max-width: 50px !important; }
  .min-w-md-50px {
    min-width: 50px !important; }
  .w-md-75px {
    width: 75px !important; }
  .max-w-md-75px {
    max-width: 75px !important; }
  .min-w-md-75px {
    min-width: 75px !important; }
  .w-md-100px {
    width: 100px !important; }
  .max-w-md-100px {
    max-width: 100px !important; }
  .min-w-md-100px {
    min-width: 100px !important; }
  .w-md-150px {
    width: 150px !important; }
  .max-w-md-150px {
    max-width: 150px !important; }
  .min-w-md-150px {
    min-width: 150px !important; }
  .w-md-200px {
    width: 200px !important; }
  .max-w-md-200px {
    max-width: 200px !important; }
  .min-w-md-200px {
    min-width: 200px !important; }
  .w-md-230px {
    width: 230px !important; }
  .max-w-md-230px {
    max-width: 230px !important; }
  .min-w-md-230px {
    min-width: 230px !important; }
  .w-md-250px {
    width: 250px !important; }
  .max-w-md-250px {
    max-width: 250px !important; }
  .min-w-md-250px {
    min-width: 250px !important; }
  .w-md-275px {
    width: 275px !important; }
  .max-w-md-275px {
    max-width: 275px !important; }
  .min-w-md-275px {
    min-width: 275px !important; }
  .w-md-300px {
    width: 300px !important; }
  .max-w-md-300px {
    max-width: 300px !important; }
  .min-w-md-300px {
    min-width: 300px !important; }
  .w-md-350px {
    width: 350px !important; }
  .max-w-md-350px {
    max-width: 350px !important; }
  .min-w-md-350px {
    min-width: 350px !important; }
  .w-md-400px {
    width: 400px !important; }
  .max-w-md-400px {
    max-width: 400px !important; }
  .min-w-md-400px {
    min-width: 400px !important; }
  .w-md-450px {
    width: 450px !important; }
  .max-w-md-450px {
    max-width: 450px !important; }
  .min-w-md-450px {
    min-width: 450px !important; }
  .w-md-475px {
    width: 475px !important; }
  .max-w-md-475px {
    max-width: 475px !important; }
  .min-w-md-475px {
    min-width: 475px !important; }
  .w-md-500px {
    width: 500px !important; }
  .max-w-md-500px {
    max-width: 500px !important; }
  .min-w-md-500px {
    min-width: 500px !important; }
  .w-md-600px {
    width: 600px !important; }
  .max-w-md-600px {
    max-width: 600px !important; }
  .min-w-md-600px {
    min-width: 600px !important; }
  .w-md-650px {
    width: 650px !important; }
  .max-w-md-650px {
    max-width: 650px !important; }
  .min-w-md-650px {
    min-width: 650px !important; }
  .w-md-700px {
    width: 700px !important; }
  .max-w-md-700px {
    max-width: 700px !important; }
  .min-w-md-700px {
    min-width: 700px !important; }
  .w-md-3r {
    width: 3rem !important; }
  .max-w-md-3r {
    max-width: 3rem !important; }
  .min-w-md-3r {
    min-width: 3rem !important; }
  .w-md-4r {
    width: 4rem !important; }
  .max-w-md-4r {
    max-width: 4rem !important; }
  .min-w-md-4r {
    min-width: 4rem !important; }
  .h-md-25 {
    height: 25% !important; }
  .max-h-md-25 {
    max-height: 25% !important; }
  .min-h-md-25 {
    min-height: 25% !important; }
  .h-md-50 {
    height: 50% !important; }
  .max-h-md-50 {
    max-height: 50% !important; }
  .min-h-md-50 {
    min-height: 50% !important; }
  .h-md-75 {
    height: 75% !important; }
  .max-h-md-75 {
    max-height: 75% !important; }
  .min-h-md-75 {
    min-height: 75% !important; }
  .h-md-100 {
    height: 100% !important; }
  .max-h-md-100 {
    max-height: 100% !important; }
  .min-h-md-100 {
    min-height: 100% !important; }
  .h-md-auto {
    height: auto !important; }
  .max-h-md-auto {
    max-height: auto !important; }
  .min-h-md-auto {
    min-height: auto !important; }
  .h-md-1 r {
    height: 1rem !important; }
  .max-h-md-1 r {
    max-height: 1rem !important; }
  .min-h-md-1 r {
    min-height: 1rem !important; }
  .h-md-5 {
    height: 5% !important; }
  .max-h-md-5 {
    max-height: 5% !important; }
  .min-h-md-5 {
    min-height: 5% !important; }
  .h-md-10 {
    height: 10% !important; }
  .max-h-md-10 {
    max-height: 10% !important; }
  .min-h-md-10 {
    min-height: 10% !important; }
  .h-md-15 {
    height: 15% !important; }
  .max-h-md-15 {
    max-height: 15% !important; }
  .min-h-md-15 {
    min-height: 15% !important; }
  .h-md-20 {
    height: 20% !important; }
  .max-h-md-20 {
    max-height: 20% !important; }
  .min-h-md-20 {
    min-height: 20% !important; }
  .h-md-30 {
    height: 30% !important; }
  .max-h-md-30 {
    max-height: 30% !important; }
  .min-h-md-30 {
    min-height: 30% !important; }
  .h-md-35 {
    height: 35% !important; }
  .max-h-md-35 {
    max-height: 35% !important; }
  .min-h-md-35 {
    min-height: 35% !important; }
  .h-md-40 {
    height: 40% !important; }
  .max-h-md-40 {
    max-height: 40% !important; }
  .min-h-md-40 {
    min-height: 40% !important; }
  .h-md-45 {
    height: 45% !important; }
  .max-h-md-45 {
    max-height: 45% !important; }
  .min-h-md-45 {
    min-height: 45% !important; }
  .h-md-55 {
    height: 55% !important; }
  .max-h-md-55 {
    max-height: 55% !important; }
  .min-h-md-55 {
    min-height: 55% !important; }
  .h-md-60 {
    height: 60% !important; }
  .max-h-md-60 {
    max-height: 60% !important; }
  .min-h-md-60 {
    min-height: 60% !important; }
  .h-md-65 {
    height: 65% !important; }
  .max-h-md-65 {
    max-height: 65% !important; }
  .min-h-md-65 {
    min-height: 65% !important; }
  .h-md-70 {
    height: 70% !important; }
  .max-h-md-70 {
    max-height: 70% !important; }
  .min-h-md-70 {
    min-height: 70% !important; }
  .h-md-80 {
    height: 80% !important; }
  .max-h-md-80 {
    max-height: 80% !important; }
  .min-h-md-80 {
    min-height: 80% !important; }
  .h-md-85 {
    height: 85% !important; }
  .max-h-md-85 {
    max-height: 85% !important; }
  .min-h-md-85 {
    min-height: 85% !important; }
  .h-md-90 {
    height: 90% !important; }
  .max-h-md-90 {
    max-height: 90% !important; }
  .min-h-md-90 {
    min-height: 90% !important; }
  .h-md-95 {
    height: 95% !important; }
  .max-h-md-95 {
    max-height: 95% !important; }
  .min-h-md-95 {
    min-height: 95% !important; }
  .h-md-15px {
    height: 15px !important; }
  .max-h-md-15px {
    max-height: 15px !important; }
  .min-h-md-15px {
    min-height: 15px !important; }
  .h-md-25px {
    height: 25px !important; }
  .max-h-md-25px {
    max-height: 25px !important; }
  .min-h-md-25px {
    min-height: 25px !important; }
  .h-md-32px {
    height: 32px !important; }
  .max-h-md-32px {
    max-height: 32px !important; }
  .min-h-md-32px {
    min-height: 32px !important; }
  .h-md-35px {
    height: 35px !important; }
  .max-h-md-35px {
    max-height: 35px !important; }
  .min-h-md-35px {
    min-height: 35px !important; }
  .h-md-50px {
    height: 50px !important; }
  .max-h-md-50px {
    max-height: 50px !important; }
  .min-h-md-50px {
    min-height: 50px !important; }
  .h-md-75px {
    height: 75px !important; }
  .max-h-md-75px {
    max-height: 75px !important; }
  .min-h-md-75px {
    min-height: 75px !important; }
  .h-md-100px {
    height: 100px !important; }
  .max-h-md-100px {
    max-height: 100px !important; }
  .min-h-md-100px {
    min-height: 100px !important; }
  .h-md-150px {
    height: 150px !important; }
  .max-h-md-150px {
    max-height: 150px !important; }
  .min-h-md-150px {
    min-height: 150px !important; }
  .h-md-200px {
    height: 200px !important; }
  .max-h-md-200px {
    max-height: 200px !important; }
  .min-h-md-200px {
    min-height: 200px !important; }
  .h-md-230px {
    height: 230px !important; }
  .max-h-md-230px {
    max-height: 230px !important; }
  .min-h-md-230px {
    min-height: 230px !important; }
  .h-md-250px {
    height: 250px !important; }
  .max-h-md-250px {
    max-height: 250px !important; }
  .min-h-md-250px {
    min-height: 250px !important; }
  .h-md-275px {
    height: 275px !important; }
  .max-h-md-275px {
    max-height: 275px !important; }
  .min-h-md-275px {
    min-height: 275px !important; }
  .h-md-300px {
    height: 300px !important; }
  .max-h-md-300px {
    max-height: 300px !important; }
  .min-h-md-300px {
    min-height: 300px !important; }
  .h-md-350px {
    height: 350px !important; }
  .max-h-md-350px {
    max-height: 350px !important; }
  .min-h-md-350px {
    min-height: 350px !important; }
  .h-md-400px {
    height: 400px !important; }
  .max-h-md-400px {
    max-height: 400px !important; }
  .min-h-md-400px {
    min-height: 400px !important; }
  .h-md-450px {
    height: 450px !important; }
  .max-h-md-450px {
    max-height: 450px !important; }
  .min-h-md-450px {
    min-height: 450px !important; }
  .h-md-475px {
    height: 475px !important; }
  .max-h-md-475px {
    max-height: 475px !important; }
  .min-h-md-475px {
    min-height: 475px !important; }
  .h-md-500px {
    height: 500px !important; }
  .max-h-md-500px {
    max-height: 500px !important; }
  .min-h-md-500px {
    min-height: 500px !important; }
  .h-md-600px {
    height: 600px !important; }
  .max-h-md-600px {
    max-height: 600px !important; }
  .min-h-md-600px {
    min-height: 600px !important; }
  .h-md-650px {
    height: 650px !important; }
  .max-h-md-650px {
    max-height: 650px !important; }
  .min-h-md-650px {
    min-height: 650px !important; }
  .h-md-700px {
    height: 700px !important; }
  .max-h-md-700px {
    max-height: 700px !important; }
  .min-h-md-700px {
    min-height: 700px !important; }
  .h-md-3r {
    height: 3rem !important; }
  .max-h-md-3r {
    max-height: 3rem !important; }
  .min-h-md-3r {
    min-height: 3rem !important; }
  .h-md-4r {
    height: 4rem !important; }
  .max-h-md-4r {
    max-height: 4rem !important; }
  .min-h-md-4r {
    min-height: 4rem !important; } }

@media (min-width: 992px) {
  .w-lg-25 {
    width: 25% !important; }
  .max-w-lg-25 {
    max-width: 25% !important; }
  .min-w-lg-25 {
    min-width: 25% !important; }
  .w-lg-50 {
    width: 50% !important; }
  .max-w-lg-50 {
    max-width: 50% !important; }
  .min-w-lg-50 {
    min-width: 50% !important; }
  .w-lg-75 {
    width: 75% !important; }
  .max-w-lg-75 {
    max-width: 75% !important; }
  .min-w-lg-75 {
    min-width: 75% !important; }
  .w-lg-100 {
    width: 100% !important; }
  .max-w-lg-100 {
    max-width: 100% !important; }
  .min-w-lg-100 {
    min-width: 100% !important; }
  .w-lg-auto {
    width: auto !important; }
  .max-w-lg-auto {
    max-width: auto !important; }
  .min-w-lg-auto {
    min-width: auto !important; }
  .w-lg-1 r {
    width: 1rem !important; }
  .max-w-lg-1 r {
    max-width: 1rem !important; }
  .min-w-lg-1 r {
    min-width: 1rem !important; }
  .w-lg-5 {
    width: 5% !important; }
  .max-w-lg-5 {
    max-width: 5% !important; }
  .min-w-lg-5 {
    min-width: 5% !important; }
  .w-lg-10 {
    width: 10% !important; }
  .max-w-lg-10 {
    max-width: 10% !important; }
  .min-w-lg-10 {
    min-width: 10% !important; }
  .w-lg-15 {
    width: 15% !important; }
  .max-w-lg-15 {
    max-width: 15% !important; }
  .min-w-lg-15 {
    min-width: 15% !important; }
  .w-lg-20 {
    width: 20% !important; }
  .max-w-lg-20 {
    max-width: 20% !important; }
  .min-w-lg-20 {
    min-width: 20% !important; }
  .w-lg-30 {
    width: 30% !important; }
  .max-w-lg-30 {
    max-width: 30% !important; }
  .min-w-lg-30 {
    min-width: 30% !important; }
  .w-lg-35 {
    width: 35% !important; }
  .max-w-lg-35 {
    max-width: 35% !important; }
  .min-w-lg-35 {
    min-width: 35% !important; }
  .w-lg-40 {
    width: 40% !important; }
  .max-w-lg-40 {
    max-width: 40% !important; }
  .min-w-lg-40 {
    min-width: 40% !important; }
  .w-lg-45 {
    width: 45% !important; }
  .max-w-lg-45 {
    max-width: 45% !important; }
  .min-w-lg-45 {
    min-width: 45% !important; }
  .w-lg-55 {
    width: 55% !important; }
  .max-w-lg-55 {
    max-width: 55% !important; }
  .min-w-lg-55 {
    min-width: 55% !important; }
  .w-lg-60 {
    width: 60% !important; }
  .max-w-lg-60 {
    max-width: 60% !important; }
  .min-w-lg-60 {
    min-width: 60% !important; }
  .w-lg-65 {
    width: 65% !important; }
  .max-w-lg-65 {
    max-width: 65% !important; }
  .min-w-lg-65 {
    min-width: 65% !important; }
  .w-lg-70 {
    width: 70% !important; }
  .max-w-lg-70 {
    max-width: 70% !important; }
  .min-w-lg-70 {
    min-width: 70% !important; }
  .w-lg-80 {
    width: 80% !important; }
  .max-w-lg-80 {
    max-width: 80% !important; }
  .min-w-lg-80 {
    min-width: 80% !important; }
  .w-lg-85 {
    width: 85% !important; }
  .max-w-lg-85 {
    max-width: 85% !important; }
  .min-w-lg-85 {
    min-width: 85% !important; }
  .w-lg-90 {
    width: 90% !important; }
  .max-w-lg-90 {
    max-width: 90% !important; }
  .min-w-lg-90 {
    min-width: 90% !important; }
  .w-lg-95 {
    width: 95% !important; }
  .max-w-lg-95 {
    max-width: 95% !important; }
  .min-w-lg-95 {
    min-width: 95% !important; }
  .w-lg-15px {
    width: 15px !important; }
  .max-w-lg-15px {
    max-width: 15px !important; }
  .min-w-lg-15px {
    min-width: 15px !important; }
  .w-lg-25px {
    width: 25px !important; }
  .max-w-lg-25px {
    max-width: 25px !important; }
  .min-w-lg-25px {
    min-width: 25px !important; }
  .w-lg-32px {
    width: 32px !important; }
  .max-w-lg-32px {
    max-width: 32px !important; }
  .min-w-lg-32px {
    min-width: 32px !important; }
  .w-lg-35px {
    width: 35px !important; }
  .max-w-lg-35px {
    max-width: 35px !important; }
  .min-w-lg-35px {
    min-width: 35px !important; }
  .w-lg-50px {
    width: 50px !important; }
  .max-w-lg-50px {
    max-width: 50px !important; }
  .min-w-lg-50px {
    min-width: 50px !important; }
  .w-lg-75px {
    width: 75px !important; }
  .max-w-lg-75px {
    max-width: 75px !important; }
  .min-w-lg-75px {
    min-width: 75px !important; }
  .w-lg-100px {
    width: 100px !important; }
  .max-w-lg-100px {
    max-width: 100px !important; }
  .min-w-lg-100px {
    min-width: 100px !important; }
  .w-lg-150px {
    width: 150px !important; }
  .max-w-lg-150px {
    max-width: 150px !important; }
  .min-w-lg-150px {
    min-width: 150px !important; }
  .w-lg-200px {
    width: 200px !important; }
  .max-w-lg-200px {
    max-width: 200px !important; }
  .min-w-lg-200px {
    min-width: 200px !important; }
  .w-lg-230px {
    width: 230px !important; }
  .max-w-lg-230px {
    max-width: 230px !important; }
  .min-w-lg-230px {
    min-width: 230px !important; }
  .w-lg-250px {
    width: 250px !important; }
  .max-w-lg-250px {
    max-width: 250px !important; }
  .min-w-lg-250px {
    min-width: 250px !important; }
  .w-lg-275px {
    width: 275px !important; }
  .max-w-lg-275px {
    max-width: 275px !important; }
  .min-w-lg-275px {
    min-width: 275px !important; }
  .w-lg-300px {
    width: 300px !important; }
  .max-w-lg-300px {
    max-width: 300px !important; }
  .min-w-lg-300px {
    min-width: 300px !important; }
  .w-lg-350px {
    width: 350px !important; }
  .max-w-lg-350px {
    max-width: 350px !important; }
  .min-w-lg-350px {
    min-width: 350px !important; }
  .w-lg-400px {
    width: 400px !important; }
  .max-w-lg-400px {
    max-width: 400px !important; }
  .min-w-lg-400px {
    min-width: 400px !important; }
  .w-lg-450px {
    width: 450px !important; }
  .max-w-lg-450px {
    max-width: 450px !important; }
  .min-w-lg-450px {
    min-width: 450px !important; }
  .w-lg-475px {
    width: 475px !important; }
  .max-w-lg-475px {
    max-width: 475px !important; }
  .min-w-lg-475px {
    min-width: 475px !important; }
  .w-lg-500px {
    width: 500px !important; }
  .max-w-lg-500px {
    max-width: 500px !important; }
  .min-w-lg-500px {
    min-width: 500px !important; }
  .w-lg-600px {
    width: 600px !important; }
  .max-w-lg-600px {
    max-width: 600px !important; }
  .min-w-lg-600px {
    min-width: 600px !important; }
  .w-lg-650px {
    width: 650px !important; }
  .max-w-lg-650px {
    max-width: 650px !important; }
  .min-w-lg-650px {
    min-width: 650px !important; }
  .w-lg-700px {
    width: 700px !important; }
  .max-w-lg-700px {
    max-width: 700px !important; }
  .min-w-lg-700px {
    min-width: 700px !important; }
  .w-lg-3r {
    width: 3rem !important; }
  .max-w-lg-3r {
    max-width: 3rem !important; }
  .min-w-lg-3r {
    min-width: 3rem !important; }
  .w-lg-4r {
    width: 4rem !important; }
  .max-w-lg-4r {
    max-width: 4rem !important; }
  .min-w-lg-4r {
    min-width: 4rem !important; }
  .h-lg-25 {
    height: 25% !important; }
  .max-h-lg-25 {
    max-height: 25% !important; }
  .min-h-lg-25 {
    min-height: 25% !important; }
  .h-lg-50 {
    height: 50% !important; }
  .max-h-lg-50 {
    max-height: 50% !important; }
  .min-h-lg-50 {
    min-height: 50% !important; }
  .h-lg-75 {
    height: 75% !important; }
  .max-h-lg-75 {
    max-height: 75% !important; }
  .min-h-lg-75 {
    min-height: 75% !important; }
  .h-lg-100 {
    height: 100% !important; }
  .max-h-lg-100 {
    max-height: 100% !important; }
  .min-h-lg-100 {
    min-height: 100% !important; }
  .h-lg-auto {
    height: auto !important; }
  .max-h-lg-auto {
    max-height: auto !important; }
  .min-h-lg-auto {
    min-height: auto !important; }
  .h-lg-1 r {
    height: 1rem !important; }
  .max-h-lg-1 r {
    max-height: 1rem !important; }
  .min-h-lg-1 r {
    min-height: 1rem !important; }
  .h-lg-5 {
    height: 5% !important; }
  .max-h-lg-5 {
    max-height: 5% !important; }
  .min-h-lg-5 {
    min-height: 5% !important; }
  .h-lg-10 {
    height: 10% !important; }
  .max-h-lg-10 {
    max-height: 10% !important; }
  .min-h-lg-10 {
    min-height: 10% !important; }
  .h-lg-15 {
    height: 15% !important; }
  .max-h-lg-15 {
    max-height: 15% !important; }
  .min-h-lg-15 {
    min-height: 15% !important; }
  .h-lg-20 {
    height: 20% !important; }
  .max-h-lg-20 {
    max-height: 20% !important; }
  .min-h-lg-20 {
    min-height: 20% !important; }
  .h-lg-30 {
    height: 30% !important; }
  .max-h-lg-30 {
    max-height: 30% !important; }
  .min-h-lg-30 {
    min-height: 30% !important; }
  .h-lg-35 {
    height: 35% !important; }
  .max-h-lg-35 {
    max-height: 35% !important; }
  .min-h-lg-35 {
    min-height: 35% !important; }
  .h-lg-40 {
    height: 40% !important; }
  .max-h-lg-40 {
    max-height: 40% !important; }
  .min-h-lg-40 {
    min-height: 40% !important; }
  .h-lg-45 {
    height: 45% !important; }
  .max-h-lg-45 {
    max-height: 45% !important; }
  .min-h-lg-45 {
    min-height: 45% !important; }
  .h-lg-55 {
    height: 55% !important; }
  .max-h-lg-55 {
    max-height: 55% !important; }
  .min-h-lg-55 {
    min-height: 55% !important; }
  .h-lg-60 {
    height: 60% !important; }
  .max-h-lg-60 {
    max-height: 60% !important; }
  .min-h-lg-60 {
    min-height: 60% !important; }
  .h-lg-65 {
    height: 65% !important; }
  .max-h-lg-65 {
    max-height: 65% !important; }
  .min-h-lg-65 {
    min-height: 65% !important; }
  .h-lg-70 {
    height: 70% !important; }
  .max-h-lg-70 {
    max-height: 70% !important; }
  .min-h-lg-70 {
    min-height: 70% !important; }
  .h-lg-80 {
    height: 80% !important; }
  .max-h-lg-80 {
    max-height: 80% !important; }
  .min-h-lg-80 {
    min-height: 80% !important; }
  .h-lg-85 {
    height: 85% !important; }
  .max-h-lg-85 {
    max-height: 85% !important; }
  .min-h-lg-85 {
    min-height: 85% !important; }
  .h-lg-90 {
    height: 90% !important; }
  .max-h-lg-90 {
    max-height: 90% !important; }
  .min-h-lg-90 {
    min-height: 90% !important; }
  .h-lg-95 {
    height: 95% !important; }
  .max-h-lg-95 {
    max-height: 95% !important; }
  .min-h-lg-95 {
    min-height: 95% !important; }
  .h-lg-15px {
    height: 15px !important; }
  .max-h-lg-15px {
    max-height: 15px !important; }
  .min-h-lg-15px {
    min-height: 15px !important; }
  .h-lg-25px {
    height: 25px !important; }
  .max-h-lg-25px {
    max-height: 25px !important; }
  .min-h-lg-25px {
    min-height: 25px !important; }
  .h-lg-32px {
    height: 32px !important; }
  .max-h-lg-32px {
    max-height: 32px !important; }
  .min-h-lg-32px {
    min-height: 32px !important; }
  .h-lg-35px {
    height: 35px !important; }
  .max-h-lg-35px {
    max-height: 35px !important; }
  .min-h-lg-35px {
    min-height: 35px !important; }
  .h-lg-50px {
    height: 50px !important; }
  .max-h-lg-50px {
    max-height: 50px !important; }
  .min-h-lg-50px {
    min-height: 50px !important; }
  .h-lg-75px {
    height: 75px !important; }
  .max-h-lg-75px {
    max-height: 75px !important; }
  .min-h-lg-75px {
    min-height: 75px !important; }
  .h-lg-100px {
    height: 100px !important; }
  .max-h-lg-100px {
    max-height: 100px !important; }
  .min-h-lg-100px {
    min-height: 100px !important; }
  .h-lg-150px {
    height: 150px !important; }
  .max-h-lg-150px {
    max-height: 150px !important; }
  .min-h-lg-150px {
    min-height: 150px !important; }
  .h-lg-200px {
    height: 200px !important; }
  .max-h-lg-200px {
    max-height: 200px !important; }
  .min-h-lg-200px {
    min-height: 200px !important; }
  .h-lg-230px {
    height: 230px !important; }
  .max-h-lg-230px {
    max-height: 230px !important; }
  .min-h-lg-230px {
    min-height: 230px !important; }
  .h-lg-250px {
    height: 250px !important; }
  .max-h-lg-250px {
    max-height: 250px !important; }
  .min-h-lg-250px {
    min-height: 250px !important; }
  .h-lg-275px {
    height: 275px !important; }
  .max-h-lg-275px {
    max-height: 275px !important; }
  .min-h-lg-275px {
    min-height: 275px !important; }
  .h-lg-300px {
    height: 300px !important; }
  .max-h-lg-300px {
    max-height: 300px !important; }
  .min-h-lg-300px {
    min-height: 300px !important; }
  .h-lg-350px {
    height: 350px !important; }
  .max-h-lg-350px {
    max-height: 350px !important; }
  .min-h-lg-350px {
    min-height: 350px !important; }
  .h-lg-400px {
    height: 400px !important; }
  .max-h-lg-400px {
    max-height: 400px !important; }
  .min-h-lg-400px {
    min-height: 400px !important; }
  .h-lg-450px {
    height: 450px !important; }
  .max-h-lg-450px {
    max-height: 450px !important; }
  .min-h-lg-450px {
    min-height: 450px !important; }
  .h-lg-475px {
    height: 475px !important; }
  .max-h-lg-475px {
    max-height: 475px !important; }
  .min-h-lg-475px {
    min-height: 475px !important; }
  .h-lg-500px {
    height: 500px !important; }
  .max-h-lg-500px {
    max-height: 500px !important; }
  .min-h-lg-500px {
    min-height: 500px !important; }
  .h-lg-600px {
    height: 600px !important; }
  .max-h-lg-600px {
    max-height: 600px !important; }
  .min-h-lg-600px {
    min-height: 600px !important; }
  .h-lg-650px {
    height: 650px !important; }
  .max-h-lg-650px {
    max-height: 650px !important; }
  .min-h-lg-650px {
    min-height: 650px !important; }
  .h-lg-700px {
    height: 700px !important; }
  .max-h-lg-700px {
    max-height: 700px !important; }
  .min-h-lg-700px {
    min-height: 700px !important; }
  .h-lg-3r {
    height: 3rem !important; }
  .max-h-lg-3r {
    max-height: 3rem !important; }
  .min-h-lg-3r {
    min-height: 3rem !important; }
  .h-lg-4r {
    height: 4rem !important; }
  .max-h-lg-4r {
    max-height: 4rem !important; }
  .min-h-lg-4r {
    min-height: 4rem !important; } }

@media (min-width: 1230px) {
  .w-xl-25 {
    width: 25% !important; }
  .max-w-xl-25 {
    max-width: 25% !important; }
  .min-w-xl-25 {
    min-width: 25% !important; }
  .w-xl-50 {
    width: 50% !important; }
  .max-w-xl-50 {
    max-width: 50% !important; }
  .min-w-xl-50 {
    min-width: 50% !important; }
  .w-xl-75 {
    width: 75% !important; }
  .max-w-xl-75 {
    max-width: 75% !important; }
  .min-w-xl-75 {
    min-width: 75% !important; }
  .w-xl-100 {
    width: 100% !important; }
  .max-w-xl-100 {
    max-width: 100% !important; }
  .min-w-xl-100 {
    min-width: 100% !important; }
  .w-xl-auto {
    width: auto !important; }
  .max-w-xl-auto {
    max-width: auto !important; }
  .min-w-xl-auto {
    min-width: auto !important; }
  .w-xl-1 r {
    width: 1rem !important; }
  .max-w-xl-1 r {
    max-width: 1rem !important; }
  .min-w-xl-1 r {
    min-width: 1rem !important; }
  .w-xl-5 {
    width: 5% !important; }
  .max-w-xl-5 {
    max-width: 5% !important; }
  .min-w-xl-5 {
    min-width: 5% !important; }
  .w-xl-10 {
    width: 10% !important; }
  .max-w-xl-10 {
    max-width: 10% !important; }
  .min-w-xl-10 {
    min-width: 10% !important; }
  .w-xl-15 {
    width: 15% !important; }
  .max-w-xl-15 {
    max-width: 15% !important; }
  .min-w-xl-15 {
    min-width: 15% !important; }
  .w-xl-20 {
    width: 20% !important; }
  .max-w-xl-20 {
    max-width: 20% !important; }
  .min-w-xl-20 {
    min-width: 20% !important; }
  .w-xl-30 {
    width: 30% !important; }
  .max-w-xl-30 {
    max-width: 30% !important; }
  .min-w-xl-30 {
    min-width: 30% !important; }
  .w-xl-35 {
    width: 35% !important; }
  .max-w-xl-35 {
    max-width: 35% !important; }
  .min-w-xl-35 {
    min-width: 35% !important; }
  .w-xl-40 {
    width: 40% !important; }
  .max-w-xl-40 {
    max-width: 40% !important; }
  .min-w-xl-40 {
    min-width: 40% !important; }
  .w-xl-45 {
    width: 45% !important; }
  .max-w-xl-45 {
    max-width: 45% !important; }
  .min-w-xl-45 {
    min-width: 45% !important; }
  .w-xl-55 {
    width: 55% !important; }
  .max-w-xl-55 {
    max-width: 55% !important; }
  .min-w-xl-55 {
    min-width: 55% !important; }
  .w-xl-60 {
    width: 60% !important; }
  .max-w-xl-60 {
    max-width: 60% !important; }
  .min-w-xl-60 {
    min-width: 60% !important; }
  .w-xl-65 {
    width: 65% !important; }
  .max-w-xl-65 {
    max-width: 65% !important; }
  .min-w-xl-65 {
    min-width: 65% !important; }
  .w-xl-70 {
    width: 70% !important; }
  .max-w-xl-70 {
    max-width: 70% !important; }
  .min-w-xl-70 {
    min-width: 70% !important; }
  .w-xl-80 {
    width: 80% !important; }
  .max-w-xl-80 {
    max-width: 80% !important; }
  .min-w-xl-80 {
    min-width: 80% !important; }
  .w-xl-85 {
    width: 85% !important; }
  .max-w-xl-85 {
    max-width: 85% !important; }
  .min-w-xl-85 {
    min-width: 85% !important; }
  .w-xl-90 {
    width: 90% !important; }
  .max-w-xl-90 {
    max-width: 90% !important; }
  .min-w-xl-90 {
    min-width: 90% !important; }
  .w-xl-95 {
    width: 95% !important; }
  .max-w-xl-95 {
    max-width: 95% !important; }
  .min-w-xl-95 {
    min-width: 95% !important; }
  .w-xl-15px {
    width: 15px !important; }
  .max-w-xl-15px {
    max-width: 15px !important; }
  .min-w-xl-15px {
    min-width: 15px !important; }
  .w-xl-25px {
    width: 25px !important; }
  .max-w-xl-25px {
    max-width: 25px !important; }
  .min-w-xl-25px {
    min-width: 25px !important; }
  .w-xl-32px {
    width: 32px !important; }
  .max-w-xl-32px {
    max-width: 32px !important; }
  .min-w-xl-32px {
    min-width: 32px !important; }
  .w-xl-35px {
    width: 35px !important; }
  .max-w-xl-35px {
    max-width: 35px !important; }
  .min-w-xl-35px {
    min-width: 35px !important; }
  .w-xl-50px {
    width: 50px !important; }
  .max-w-xl-50px {
    max-width: 50px !important; }
  .min-w-xl-50px {
    min-width: 50px !important; }
  .w-xl-75px {
    width: 75px !important; }
  .max-w-xl-75px {
    max-width: 75px !important; }
  .min-w-xl-75px {
    min-width: 75px !important; }
  .w-xl-100px {
    width: 100px !important; }
  .max-w-xl-100px {
    max-width: 100px !important; }
  .min-w-xl-100px {
    min-width: 100px !important; }
  .w-xl-150px {
    width: 150px !important; }
  .max-w-xl-150px {
    max-width: 150px !important; }
  .min-w-xl-150px {
    min-width: 150px !important; }
  .w-xl-200px {
    width: 200px !important; }
  .max-w-xl-200px {
    max-width: 200px !important; }
  .min-w-xl-200px {
    min-width: 200px !important; }
  .w-xl-230px {
    width: 230px !important; }
  .max-w-xl-230px {
    max-width: 230px !important; }
  .min-w-xl-230px {
    min-width: 230px !important; }
  .w-xl-250px {
    width: 250px !important; }
  .max-w-xl-250px {
    max-width: 250px !important; }
  .min-w-xl-250px {
    min-width: 250px !important; }
  .w-xl-275px {
    width: 275px !important; }
  .max-w-xl-275px {
    max-width: 275px !important; }
  .min-w-xl-275px {
    min-width: 275px !important; }
  .w-xl-300px {
    width: 300px !important; }
  .max-w-xl-300px {
    max-width: 300px !important; }
  .min-w-xl-300px {
    min-width: 300px !important; }
  .w-xl-350px {
    width: 350px !important; }
  .max-w-xl-350px {
    max-width: 350px !important; }
  .min-w-xl-350px {
    min-width: 350px !important; }
  .w-xl-400px {
    width: 400px !important; }
  .max-w-xl-400px {
    max-width: 400px !important; }
  .min-w-xl-400px {
    min-width: 400px !important; }
  .w-xl-450px {
    width: 450px !important; }
  .max-w-xl-450px {
    max-width: 450px !important; }
  .min-w-xl-450px {
    min-width: 450px !important; }
  .w-xl-475px {
    width: 475px !important; }
  .max-w-xl-475px {
    max-width: 475px !important; }
  .min-w-xl-475px {
    min-width: 475px !important; }
  .w-xl-500px {
    width: 500px !important; }
  .max-w-xl-500px {
    max-width: 500px !important; }
  .min-w-xl-500px {
    min-width: 500px !important; }
  .w-xl-600px {
    width: 600px !important; }
  .max-w-xl-600px {
    max-width: 600px !important; }
  .min-w-xl-600px {
    min-width: 600px !important; }
  .w-xl-650px {
    width: 650px !important; }
  .max-w-xl-650px {
    max-width: 650px !important; }
  .min-w-xl-650px {
    min-width: 650px !important; }
  .w-xl-700px {
    width: 700px !important; }
  .max-w-xl-700px {
    max-width: 700px !important; }
  .min-w-xl-700px {
    min-width: 700px !important; }
  .w-xl-3r {
    width: 3rem !important; }
  .max-w-xl-3r {
    max-width: 3rem !important; }
  .min-w-xl-3r {
    min-width: 3rem !important; }
  .w-xl-4r {
    width: 4rem !important; }
  .max-w-xl-4r {
    max-width: 4rem !important; }
  .min-w-xl-4r {
    min-width: 4rem !important; }
  .h-xl-25 {
    height: 25% !important; }
  .max-h-xl-25 {
    max-height: 25% !important; }
  .min-h-xl-25 {
    min-height: 25% !important; }
  .h-xl-50 {
    height: 50% !important; }
  .max-h-xl-50 {
    max-height: 50% !important; }
  .min-h-xl-50 {
    min-height: 50% !important; }
  .h-xl-75 {
    height: 75% !important; }
  .max-h-xl-75 {
    max-height: 75% !important; }
  .min-h-xl-75 {
    min-height: 75% !important; }
  .h-xl-100 {
    height: 100% !important; }
  .max-h-xl-100 {
    max-height: 100% !important; }
  .min-h-xl-100 {
    min-height: 100% !important; }
  .h-xl-auto {
    height: auto !important; }
  .max-h-xl-auto {
    max-height: auto !important; }
  .min-h-xl-auto {
    min-height: auto !important; }
  .h-xl-1 r {
    height: 1rem !important; }
  .max-h-xl-1 r {
    max-height: 1rem !important; }
  .min-h-xl-1 r {
    min-height: 1rem !important; }
  .h-xl-5 {
    height: 5% !important; }
  .max-h-xl-5 {
    max-height: 5% !important; }
  .min-h-xl-5 {
    min-height: 5% !important; }
  .h-xl-10 {
    height: 10% !important; }
  .max-h-xl-10 {
    max-height: 10% !important; }
  .min-h-xl-10 {
    min-height: 10% !important; }
  .h-xl-15 {
    height: 15% !important; }
  .max-h-xl-15 {
    max-height: 15% !important; }
  .min-h-xl-15 {
    min-height: 15% !important; }
  .h-xl-20 {
    height: 20% !important; }
  .max-h-xl-20 {
    max-height: 20% !important; }
  .min-h-xl-20 {
    min-height: 20% !important; }
  .h-xl-30 {
    height: 30% !important; }
  .max-h-xl-30 {
    max-height: 30% !important; }
  .min-h-xl-30 {
    min-height: 30% !important; }
  .h-xl-35 {
    height: 35% !important; }
  .max-h-xl-35 {
    max-height: 35% !important; }
  .min-h-xl-35 {
    min-height: 35% !important; }
  .h-xl-40 {
    height: 40% !important; }
  .max-h-xl-40 {
    max-height: 40% !important; }
  .min-h-xl-40 {
    min-height: 40% !important; }
  .h-xl-45 {
    height: 45% !important; }
  .max-h-xl-45 {
    max-height: 45% !important; }
  .min-h-xl-45 {
    min-height: 45% !important; }
  .h-xl-55 {
    height: 55% !important; }
  .max-h-xl-55 {
    max-height: 55% !important; }
  .min-h-xl-55 {
    min-height: 55% !important; }
  .h-xl-60 {
    height: 60% !important; }
  .max-h-xl-60 {
    max-height: 60% !important; }
  .min-h-xl-60 {
    min-height: 60% !important; }
  .h-xl-65 {
    height: 65% !important; }
  .max-h-xl-65 {
    max-height: 65% !important; }
  .min-h-xl-65 {
    min-height: 65% !important; }
  .h-xl-70 {
    height: 70% !important; }
  .max-h-xl-70 {
    max-height: 70% !important; }
  .min-h-xl-70 {
    min-height: 70% !important; }
  .h-xl-80 {
    height: 80% !important; }
  .max-h-xl-80 {
    max-height: 80% !important; }
  .min-h-xl-80 {
    min-height: 80% !important; }
  .h-xl-85 {
    height: 85% !important; }
  .max-h-xl-85 {
    max-height: 85% !important; }
  .min-h-xl-85 {
    min-height: 85% !important; }
  .h-xl-90 {
    height: 90% !important; }
  .max-h-xl-90 {
    max-height: 90% !important; }
  .min-h-xl-90 {
    min-height: 90% !important; }
  .h-xl-95 {
    height: 95% !important; }
  .max-h-xl-95 {
    max-height: 95% !important; }
  .min-h-xl-95 {
    min-height: 95% !important; }
  .h-xl-15px {
    height: 15px !important; }
  .max-h-xl-15px {
    max-height: 15px !important; }
  .min-h-xl-15px {
    min-height: 15px !important; }
  .h-xl-25px {
    height: 25px !important; }
  .max-h-xl-25px {
    max-height: 25px !important; }
  .min-h-xl-25px {
    min-height: 25px !important; }
  .h-xl-32px {
    height: 32px !important; }
  .max-h-xl-32px {
    max-height: 32px !important; }
  .min-h-xl-32px {
    min-height: 32px !important; }
  .h-xl-35px {
    height: 35px !important; }
  .max-h-xl-35px {
    max-height: 35px !important; }
  .min-h-xl-35px {
    min-height: 35px !important; }
  .h-xl-50px {
    height: 50px !important; }
  .max-h-xl-50px {
    max-height: 50px !important; }
  .min-h-xl-50px {
    min-height: 50px !important; }
  .h-xl-75px {
    height: 75px !important; }
  .max-h-xl-75px {
    max-height: 75px !important; }
  .min-h-xl-75px {
    min-height: 75px !important; }
  .h-xl-100px {
    height: 100px !important; }
  .max-h-xl-100px {
    max-height: 100px !important; }
  .min-h-xl-100px {
    min-height: 100px !important; }
  .h-xl-150px {
    height: 150px !important; }
  .max-h-xl-150px {
    max-height: 150px !important; }
  .min-h-xl-150px {
    min-height: 150px !important; }
  .h-xl-200px {
    height: 200px !important; }
  .max-h-xl-200px {
    max-height: 200px !important; }
  .min-h-xl-200px {
    min-height: 200px !important; }
  .h-xl-230px {
    height: 230px !important; }
  .max-h-xl-230px {
    max-height: 230px !important; }
  .min-h-xl-230px {
    min-height: 230px !important; }
  .h-xl-250px {
    height: 250px !important; }
  .max-h-xl-250px {
    max-height: 250px !important; }
  .min-h-xl-250px {
    min-height: 250px !important; }
  .h-xl-275px {
    height: 275px !important; }
  .max-h-xl-275px {
    max-height: 275px !important; }
  .min-h-xl-275px {
    min-height: 275px !important; }
  .h-xl-300px {
    height: 300px !important; }
  .max-h-xl-300px {
    max-height: 300px !important; }
  .min-h-xl-300px {
    min-height: 300px !important; }
  .h-xl-350px {
    height: 350px !important; }
  .max-h-xl-350px {
    max-height: 350px !important; }
  .min-h-xl-350px {
    min-height: 350px !important; }
  .h-xl-400px {
    height: 400px !important; }
  .max-h-xl-400px {
    max-height: 400px !important; }
  .min-h-xl-400px {
    min-height: 400px !important; }
  .h-xl-450px {
    height: 450px !important; }
  .max-h-xl-450px {
    max-height: 450px !important; }
  .min-h-xl-450px {
    min-height: 450px !important; }
  .h-xl-475px {
    height: 475px !important; }
  .max-h-xl-475px {
    max-height: 475px !important; }
  .min-h-xl-475px {
    min-height: 475px !important; }
  .h-xl-500px {
    height: 500px !important; }
  .max-h-xl-500px {
    max-height: 500px !important; }
  .min-h-xl-500px {
    min-height: 500px !important; }
  .h-xl-600px {
    height: 600px !important; }
  .max-h-xl-600px {
    max-height: 600px !important; }
  .min-h-xl-600px {
    min-height: 600px !important; }
  .h-xl-650px {
    height: 650px !important; }
  .max-h-xl-650px {
    max-height: 650px !important; }
  .min-h-xl-650px {
    min-height: 650px !important; }
  .h-xl-700px {
    height: 700px !important; }
  .max-h-xl-700px {
    max-height: 700px !important; }
  .min-h-xl-700px {
    min-height: 700px !important; }
  .h-xl-3r {
    height: 3rem !important; }
  .max-h-xl-3r {
    max-height: 3rem !important; }
  .min-h-xl-3r {
    min-height: 3rem !important; }
  .h-xl-4r {
    height: 4rem !important; }
  .max-h-xl-4r {
    max-height: 4rem !important; }
  .min-h-xl-4r {
    min-height: 4rem !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; }

.center-underline {
  width: 100%;
  justify-content: center; }
  .center-underline:after {
    width: 30px;
    height: 3px;
    display: inline-block;
    background-color: #0999ac;
    content: '';
    margin-top: 1rem; }

@font-face {
  font-family: 'Pacifico';
  src: url("fonts/Pacifico-Regular.eot");
  src: url("fonts/Pacifico-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Pacifico-Regular.woff2") format("woff2"), url("fonts/Pacifico-Regular.woff") format("woff"), url("fonts/Pacifico-Regular.ttf") format("truetype"), url("fonts/Pacifico-Regular.svg#Pacifico-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Lato';
  src: url("fonts/Lato-Bold.eot");
  src: url("fonts/Lato-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-Bold.woff2") format("woff2"), url("fonts/Lato-Bold.woff") format("woff"), url("fonts/Lato-Bold.ttf") format("truetype"), url("fonts/Lato-Bold.svg#Lato-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Lato';
  src: url("fonts/Lato-BlackItalic.eot");
  src: url("fonts/Lato-BlackItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-BlackItalic.woff2") format("woff2"), url("fonts/Lato-BlackItalic.woff") format("woff"), url("fonts/Lato-BlackItalic.ttf") format("truetype"), url("fonts/Lato-BlackItalic.svg#Lato-BlackItalic") format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Lato';
  src: url("fonts/Lato-Black.eot");
  src: url("fonts/Lato-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-Black.woff2") format("woff2"), url("fonts/Lato-Black.woff") format("woff"), url("fonts/Lato-Black.ttf") format("truetype"), url("fonts/Lato-Black.svg#Lato-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Lato';
  src: url("fonts/Lato-BoldItalic.eot");
  src: url("fonts/Lato-BoldItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-BoldItalic.woff2") format("woff2"), url("fonts/Lato-BoldItalic.woff") format("woff"), url("fonts/Lato-BoldItalic.ttf") format("truetype"), url("fonts/Lato-BoldItalic.svg#Lato-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Lato';
  src: url("fonts/Lato-Regular.eot");
  src: url("fonts/Lato-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-Regular.woff2") format("woff2"), url("fonts/Lato-Regular.woff") format("woff"), url("fonts/Lato-Regular.ttf") format("truetype"), url("fonts/Lato-Regular.svg#Lato-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Lato';
  src: url("fonts/Lato-Light.eot");
  src: url("fonts/Lato-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-Light.woff2") format("woff2"), url("fonts/Lato-Light.woff") format("woff"), url("fonts/Lato-Light.ttf") format("truetype"), url("fonts/Lato-Light.svg#Lato-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Lato';
  src: url("fonts/Lato-Italic.eot");
  src: url("fonts/Lato-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-Italic.woff2") format("woff2"), url("fonts/Lato-Italic.woff") format("woff"), url("fonts/Lato-Italic.ttf") format("truetype"), url("fonts/Lato-Italic.svg#Lato-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Lato';
  src: url("fonts/Lato-LightItalic.eot");
  src: url("fonts/Lato-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-LightItalic.woff2") format("woff2"), url("fonts/Lato-LightItalic.woff") format("woff"), url("fonts/Lato-LightItalic.ttf") format("truetype"), url("fonts/Lato-LightItalic.svg#Lato-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Lato Hairline';
  src: url("fonts/Lato-Hairline.eot");
  src: url("fonts/Lato-Hairline.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-Hairline.woff2") format("woff2"), url("fonts/Lato-Hairline.woff") format("woff"), url("fonts/Lato-Hairline.ttf") format("truetype"), url("fonts/Lato-Hairline.svg#Lato-Hairline") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Lato Hairline';
  src: url("fonts/Lato-HairlineItalic.eot");
  src: url("fonts/Lato-HairlineItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-HairlineItalic.woff2") format("woff2"), url("fonts/Lato-HairlineItalic.woff") format("woff"), url("fonts/Lato-HairlineItalic.ttf") format("truetype"), url("fonts/Lato-HairlineItalic.svg#Lato-HairlineItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Bree Serif';
  src: url("fonts/BreeSerif-Regular.eot");
  src: url("fonts/BreeSerif-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/BreeSerif-Regular.woff2") format("woff2"), url("fonts/BreeSerif-Regular.woff") format("woff"), url("fonts/BreeSerif-Regular.ttf") format("truetype"), url("fonts/BreeSerif-Regular.svg#BreeSerif-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-BoldItalic.eot");
  src: url("fonts/Roboto-BoldItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-BoldItalic.woff2") format("woff2"), url("fonts/Roboto-BoldItalic.woff") format("woff"), url("fonts/Roboto-BoldItalic.ttf") format("truetype"), url("fonts/Roboto-BoldItalic.svg#Roboto-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Black.eot");
  src: url("fonts/Roboto-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Black.woff2") format("woff2"), url("fonts/Roboto-Black.woff") format("woff"), url("fonts/Roboto-Black.ttf") format("truetype"), url("fonts/Roboto-Black.svg#Roboto-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-BlackItalic.eot");
  src: url("fonts/Roboto-BlackItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-BlackItalic.woff2") format("woff2"), url("fonts/Roboto-BlackItalic.woff") format("woff"), url("fonts/Roboto-BlackItalic.ttf") format("truetype"), url("fonts/Roboto-BlackItalic.svg#Roboto-BlackItalic") format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Italic.eot");
  src: url("fonts/Roboto-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Italic.woff2") format("woff2"), url("fonts/Roboto-Italic.woff") format("woff"), url("fonts/Roboto-Italic.ttf") format("truetype"), url("fonts/Roboto-Italic.svg#Roboto-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Bold.eot");
  src: url("fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Bold.woff2") format("woff2"), url("fonts/Roboto-Bold.woff") format("woff"), url("fonts/Roboto-Bold.ttf") format("truetype"), url("fonts/Roboto-Bold.svg#Roboto-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-MediumItalic.eot");
  src: url("fonts/Roboto-MediumItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-MediumItalic.woff2") format("woff2"), url("fonts/Roboto-MediumItalic.woff") format("woff"), url("fonts/Roboto-MediumItalic.ttf") format("truetype"), url("fonts/Roboto-MediumItalic.svg#Roboto-MediumItalic") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-LightItalic.eot");
  src: url("fonts/Roboto-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-LightItalic.woff2") format("woff2"), url("fonts/Roboto-LightItalic.woff") format("woff"), url("fonts/Roboto-LightItalic.ttf") format("truetype"), url("fonts/Roboto-LightItalic.svg#Roboto-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Light.eot");
  src: url("fonts/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Light.woff2") format("woff2"), url("fonts/Roboto-Light.woff") format("woff"), url("fonts/Roboto-Light.ttf") format("truetype"), url("fonts/Roboto-Light.svg#Roboto-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Medium.eot");
  src: url("fonts/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Medium.woff2") format("woff2"), url("fonts/Roboto-Medium.woff") format("woff"), url("fonts/Roboto-Medium.ttf") format("truetype"), url("fonts/Roboto-Medium.svg#Roboto-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-ThinItalic.eot");
  src: url("fonts/Roboto-ThinItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-ThinItalic.woff2") format("woff2"), url("fonts/Roboto-ThinItalic.woff") format("woff"), url("fonts/Roboto-ThinItalic.ttf") format("truetype"), url("fonts/Roboto-ThinItalic.svg#Roboto-ThinItalic") format("svg");
  font-weight: 100;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Regular.eot");
  src: url("fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Regular.woff2") format("woff2"), url("fonts/Roboto-Regular.woff") format("woff"), url("fonts/Roboto-Regular.ttf") format("truetype"), url("fonts/Roboto-Regular.svg#Roboto-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Thin.eot");
  src: url("fonts/Roboto-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Thin.woff2") format("woff2"), url("fonts/Roboto-Thin.woff") format("woff"), url("fonts/Roboto-Thin.ttf") format("truetype"), url("fonts/Roboto-Thin.svg#Roboto-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap; }

body {
  font-family: 'Lato';
  color: #999; }

a:hover {
  text-decoration: none;
  filter: brightness(85%); }

h1 {
  font-weight: 700; }

h2 {
  font-size: 3.25rem;
  text-transform: uppercase;
  color: #161625;
  font-weight: 900;
  margin-top: 1rem; }
  @media (max-width: 991.98px) {
    h2 {
      font-size: 1.5rem; } }

.subtitle {
  color: #f87200;
  font-family: 'Pacifico';
  font-size: 1.875rem !important;
  margin-bottom: 0; }
  @media (max-width: 991.98px) {
    .subtitle {
      font-size: 1.2rem; } }
  .subtitle.white {
    color: #fff; }

.liste:not(.liste-image):not(.liste-palmares):not(.liste-num):not(.liste-image-ronde) li {
  position: relative;
  padding-bottom: 30px; }
  .liste:not(.liste-image):not(.liste-palmares):not(.liste-num):not(.liste-image-ronde) li:before {
    position: absolute;
    left: 0px;
    top: 3px;
    background-color: #fff;
    border: solid 5px #f87200;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    content: '';
    margin-left: -45px; }

.liste h2 {
  font-size: 1.25rem !important;
  font-weight: 900 !important;
  margin: 0 0 1rem 0 !important; }

.liste.liste-palmares li {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  min-height: 85px;
  list-style: none; }
  .liste.liste-palmares li div:first-of-type {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 6rem; }
    @media (max-width: 991.98px) {
      .liste.liste-palmares li div:first-of-type {
        padding-left: 2rem; } }
    .liste.liste-palmares li div:first-of-type div:not(.palmares) {
      display: flex;
      flex-direction: column; }
      .liste.liste-palmares li div:first-of-type div:not(.palmares) div {
        padding-left: 0;
        align-items: flex-start; }
        .liste.liste-palmares li div:first-of-type div:not(.palmares) div div {
          padding-left: 0;
          line-height: 1.5; }
    .liste.liste-palmares li div:first-of-type .palmares {
      padding: 5px;
      border-radius: 5px;
      background-color: #f87200;
      color: #fff;
      margin-right: 1.5rem;
      display: flex; }

.liste.liste-palmares li > div {
  display: flex !important;
  align-items: start !important; }

.liste.liste-num {
  padding-left: 0; }
  .liste.liste-num li {
    position: relative;
    counter-increment: numero;
    list-style-type: none;
    list-style-position: outside;
    padding: 20px 0;
    border-bottom: 1px solid #eee; }
    .liste.liste-num li div:first-of-type {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      margin-bottom: 2rem;
      color: #5c6b80 !important; }
      @media (max-width: 991.98px) {
        .liste.liste-num li div:first-of-type {
          margin-bottom: .5rem; } }
  .liste.liste-num:not(.liste-image-ronde):not(.liste-image) li {
    display: flex !important;
    flex-direction: row !important;
    padding: 30px 0; }
    .liste.liste-num:not(.liste-image-ronde):not(.liste-image) li div:first-of-type {
      padding-left: 75px;
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 0 !important; }
      .liste.liste-num:not(.liste-image-ronde):not(.liste-image) li div:first-of-type:before {
        position: absolute;
        left: 0px;
        top: 27px;
        content: counter(numero);
        font-size: 1.2rem;
        font-family: Arial;
        line-height: 2.2rem;
        background-color: #f87200;
        color: #fff;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900; }
    .liste.liste-num:not(.liste-image-ronde):not(.liste-image) li h2 {
      margin-bottom: .5rem !important; }
  .liste.liste-num.liste-image li {
    display: flex !important;
    flex-direction: row !important;
    padding: 30px 0;
    border: none; }
    .liste.liste-num.liste-image li div:first-of-type {
      margin-bottom: 0 !important; }
      .liste.liste-num.liste-image li div:first-of-type:before {
        position: absolute;
        left: -19px;
        top: 42px;
        content: counter(numero);
        font-size: 1.2rem;
        font-family: Arial;
        line-height: 2.2rem;
        background-color: #f87200;
        color: #fff;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900; }
        @media (max-width: 767.98px) {
          .liste.liste-num.liste-image li div:first-of-type:before {
            left: -13px; } }
    .liste.liste-num.liste-image li .img-pic {
      margin-right: 30px; }
      .liste.liste-num.liste-image li .img-pic img {
        width: 150px;
        height: 150px !important;
        object-fit: cover; }

.liste.liste-image-ronde {
  padding-left: 0; }
  .liste.liste-image-ronde li {
    border: none;
    list-style: none;
    padding: 30px 0;
    border-bottom: 1px solid #eee; }
    .liste.liste-image-ronde li:before {
      display: none; }
    .liste.liste-image-ronde li div:first-of-type {
      padding-left: 0;
      align-items: center;
      display: flex !important;
      flex-direction: row !important; }
      @media (max-width: 991.98px) {
        .liste.liste-image-ronde li div:first-of-type {
          flex-direction: column;
          align-items: flex-start; } }
      @media (max-width: 991.98px) {
        .liste.liste-image-ronde li div:first-of-type h2 {
          text-align: left; } }
  .liste.liste-image-ronde .img-pic {
    width: 130px;
    margin-right: 1.5rem;
    border-radius: 50%;
    height: 130px !important;
    display: flex;
    align-items: center;
    justify-content: center; }
    .liste.liste-image-ronde .img-pic img {
      height: 130px !important;
      object-fit: cover;
      border-radius: 50%; }

.home header .header-edito {
  height: 650px; }

header {
  min-height: 110px; }
  @media (max-width: 991.98px) {
    header {
      min-height: 0; } }
  header .header-edito {
    background-position: center bottom;
    -webkit-background-size: cover;
    background-size: cover; }
    @media (max-width: 991.98px) {
      header .header-edito .navbar {
        z-index: 1000; } }
    header .header-edito .navbar a, header .header-edito .navbar .dropdown-item, header .header-edito .navbar .nav-link {
      color: #fff !important;
      font-weight: 700;
      transition: .3s all; }
      @media (max-width: 991.98px) {
        header .header-edito .navbar a, header .header-edito .navbar .dropdown-item, header .header-edito .navbar .nav-link {
          font-weight: 400; } }
      header .header-edito .navbar a:hover, header .header-edito .navbar a:active, header .header-edito .navbar a:focus, header .header-edito .navbar .dropdown-item:hover, header .header-edito .navbar .dropdown-item:active, header .header-edito .navbar .dropdown-item:focus, header .header-edito .navbar .nav-link:hover, header .header-edito .navbar .nav-link:active, header .header-edito .navbar .nav-link:focus {
        color: #f87200 !important;
        background: transparent; }
    header .header-edito .navbar .dropdown-item {
      font-size: .875rem; }
      @media (max-width: 991.98px) {
        header .header-edito .navbar .dropdown-item {
          padding: 0.25rem 0; } }
    header .header-edito .navbar .nav-link {
      text-transform: uppercase;
      font-size: .875rem; }
      header .header-edito .navbar .nav-link.second-level {
        text-transform: none !important; }
        header .header-edito .navbar .nav-link.second-level:after {
          display: inline-block;
          transition: .5s all;
          border: none;
          content: "\f0da";
          text-transform: none;
          font-family: "Font Awesome 5 free";
          margin-left: 0.5em;
          vertical-align: 0; }
      @media (max-width: 991.98px) {
        header .header-edito .navbar .nav-link {
          display: flex;
          align-items: center;
          text-transform: none;
          color: #fff !important;
          padding: 15px 0; } }
      header .header-edito .navbar .nav-link i {
        color: #f87200;
        margin-right: 5px; }
    header .header-edito .navbar .dropdown-toggle:after {
      display: none;
      transition: .5s all; }
    @media (max-width: 991.98px) {
      header .header-edito .navbar .dropdown-toggle:after {
        display: inline-block;
        content: '\f105';
        font-family: 'Font Awesome 5 Free';
        border: none !important;
        margin-left: 10px;
        font-weight: 600; } }
    header .header-edito .navbar .dropdown {
      margin-right: 5px; }
      header .header-edito .navbar .dropdown .dropdown-menu {
        margin-top: 0;
        -webkit-transition: all .3s ease-in;
        transition-duration: .3s;
        background-color: #222222;
        min-width: 300px; }
        @media (max-width: 991.98px) {
          header .header-edito .navbar .dropdown .dropdown-menu {
            opacity: 1;
            padding-top: 0; } }
        header .header-edito .navbar .dropdown .dropdown-menu .menu-item {
          border-bottom: 1px solid #333;
          padding: 0.875rem;
          line-height: 1.5rem; }
          header .header-edito .navbar .dropdown .dropdown-menu .menu-item.active a {
            color: #f87200;
            background: transparent; }
        header .header-edito .navbar .dropdown .dropdown-menu .menu-item-has-children {
          padding-left: 2rem; }
          header .header-edito .navbar .dropdown .dropdown-menu .menu-item-has-children .dropdown-menu {
            padding-left: 1.5rem; }
    @media (max-width: 991.98px) {
      header .header-edito .navbar .navbar-collapse {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #222222;
        z-index: 999; } }
    header .header-edito .nav-toggle {
      position: absolute;
      padding: 10px;
      background: transparent;
      border: 1px solid transparent;
      margin: 7px 0;
      top: -1%;
      right: -18px;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      display: none; }
      @media (max-width: 991.98px) {
        header .header-edito .nav-toggle {
          display: block; } }
      header .header-edito .nav-toggle [class*='bar-'] {
        background: #fff;
        display: block;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .2s ease all;
        transition: .2s ease all;
        height: 3px;
        margin-bottom: 1px;
        width: 15px; }
        header .header-edito .nav-toggle [class*='bar-']:focus {
          outline-width: 0; }
      header .header-edito .nav-toggle.opened .bar-top {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transform-origin: 15% 6%;
        transform-origin: 15% 6%; }
      header .header-edito .nav-toggle.opened .bar-mid {
        opacity: 0; }
      header .header-edito .nav-toggle.opened .bar-bot {
        -webkit-transform: rotate(45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 1% 88%;
        transform-origin: 1% 88%; }
      header .header-edito .nav-toggle .bar-bot {
        margin-bottom: 0; }
    header .header-edito .dropend .dropdown-toggle {
      color: #8eb4e3;
      margin-left: 1em; }
    header .header-edito .dropdown-item:hover {
      background-color: #8eb4e3;
      color: #f87200; }
    header .header-edito .dropdown .dropdown-menu {
      display: none; }
    header .header-edito .dropdown:hover > .dropdown-menu,
    header .header-edito .dropend:hover > .dropdown-menu {
      display: flex;
      flex-direction: column;
      margin-top: 0.125em;
      margin-left: 0.125em; }
      header .header-edito .dropdown:hover > .dropdown-menu .dropdown-menu,
      header .header-edito .dropend:hover > .dropdown-menu .dropdown-menu {
        left: 100%;
        top: 0; }
    @media screen and (min-width: 769px) {
      header .header-edito .dropend:hover > .dropdown-menu {
        position: relative;
        top: 0;
        left: 100%; }
      header .header-edito .dropend .dropdown-toggle {
        margin-left: 0.5em; } }

a.button, body a.btn {
  background-color: #f87200;
  color: #fff;
  padding: 3px 5px;
  border-radius: 3px; }
  a.button:hover, body a.btn:hover {
    filter: brightness(85%);
    color: #fff; }
  a.button.home-button, body a.btn {
    padding: 1.3rem 2.3rem;
    font-size: 1.5rem;
    font-weight: 900; }
    a.button.home-button i:before, body a.btn i:before {
      margin-right: 5px; }
    @media (max-width: 991.98px) {
      a.button.home-button, body a.btn {
        padding: 1.5rem;
        font-size: 1rem; } }
  a.button.product-button, body a.product-button.btn {
    font-size: 1rem;
    padding: 1rem 3.5rem;
    font-weight: 900;
    display: flex;
    flex-direction: row;
    text-transform: uppercase;
    align-items: center;
    background-color: #f87200; }
    @media (max-width: 991.98px) {
      a.button.product-button, body a.product-button.btn {
        padding: 1rem 0;
        justify-content: center;
        width: 100%;
        font-size: .8rem; } }
    a.button.product-button i, body a.product-button.btn i {
      margin-right: 10px; }

a.button-max {
  border-radius: 3px;
  border: 2px solid #f87200;
  padding: 15px 30px;
  color: #f87200;
  font-weight: 700; }

#navPages .pagination {
  width: 100%;
  display: flex;
  align-items: center; }
  @media (max-width: 991.98px) {
    #navPages .pagination {
      flex-wrap: wrap; } }
  #navPages .pagination a, #navPages .pagination .page-item .page-link {
    border: none;
    color: #333;
    background-color: #f5f5f5;
    height: 42px;
    border-radius: 0;
    margin-left: 5px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    font-weight: 600; }
    #navPages .pagination a.current, #navPages .pagination a:hover, #navPages .pagination a:focus, #navPages .pagination .page-item .page-link.current, #navPages .pagination .page-item .page-link:hover, #navPages .pagination .page-item .page-link:focus {
      color: #fff;
      background-color: #333; }

body {
  /* Small Devices, Tablets */ }
  body * {
    box-sizing: border-box; }
  body .video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    margin-bottom: 20px;
    height: 0; }
    body .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  body:not(.home) h1 {
    font-family: 'Pacifico';
    color: #f87200;
    font-size: 1.875rem;
    font-weight: 400; }
  body strong {
    display: contents; }
  body.page ol {
    color: #5c6b80; }
  body.page .subtitle {
    width: 100%;
    text-align: center;
    font-family: 'Pacifico';
    margin-bottom: 1.5rem;
    color: #f87200 !important;
    text-transform: none;
    font-weight: 400; }
    @media (max-width: 991.98px) {
      body.page .subtitle {
        font-size: 1.5rem; } }
  body.page h1 {
    color: #161625;
    font-family: 'Roboto';
    width: 100%;
    text-align: center;
    font-size: 3.25rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-transform: uppercase; }
    @media (max-width: 991.98px) {
      body.page h1 {
        font-size: 1.875rem; } }
  body.page h2 {
    font-weight: 900;
    color: #f87200;
    letter-spacing: 1px;
    font-size: 1.25rem;
    text-transform: none;
    margin-bottom: 1.5rem;
    margin-top: 0; }
  body.page p, body.page ul {
    color: #5c6b80; }
  body.page hr {
    height: 10px;
    margin: 3rem 0; }
  body.page .equipe-wrap .equipe .container .eight {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 2rem; }
    @media (max-width: 991.98px) {
      body.page .equipe-wrap .equipe .container .eight {
        flex-direction: column; } }
    body.page .equipe-wrap .equipe .container .eight .b_style {
      width: 20%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 20px; }
      @media (max-width: 991.98px) {
        body.page .equipe-wrap .equipe .container .eight .b_style {
          width: 100%; } }
      body.page .equipe-wrap .equipe .container .eight .b_style img {
        border-radius: 50%;
        width: 130px;
        height: 130px; }
    body.page .equipe-wrap .equipe .container .eight .author_text {
      width: 80%; }
      @media (max-width: 991.98px) {
        body.page .equipe-wrap .equipe .container .eight .author_text {
          width: 100%; } }
      body.page .equipe-wrap .equipe .container .eight .author_text .name_st {
        font-weight: 900;
        color: #f87200;
        letter-spacing: 1px;
        font-size: 1.25rem;
        text-transform: none;
        margin-bottom: 1.5rem; }
      body.page .equipe-wrap .equipe .container .eight .author_text .job_st {
        color: #000;
        margin-bottom: 1.5rem; }
        @media (max-width: 991.98px) {
          body.page .equipe-wrap .equipe .container .eight .author_text .job_st {
            text-align: center; } }
  body.page #pricePlans {
    color: #000; }
    body.page #pricePlans ul {
      list-style-type: none; }
    body.page #pricePlans #plans {
      display: flex;
      flex-direction: row;
      margin: 3rem 0;
      padding-left: 0; }
      @media (max-width: 991.98px) {
        body.page #pricePlans #plans {
          flex-direction: column; } }
      body.page #pricePlans #plans .plan {
        width: 32%;
        margin-right: 2%;
        background-color: #eee;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        height: 100%; }
        @media (max-width: 991.98px) {
          body.page #pricePlans #plans .plan {
            width: 100%;
            margin-right: 0;
            margin-bottom: 2rem; } }
        @media (max-width: 991.98px) {
          body.page #pricePlans #plans .plan:first-of-type {
            display: none; } }
        body.page #pricePlans #plans .plan:last-of-type {
          margin-right: 0; }
        body.page #pricePlans #plans .plan .planContainer {
          padding-left: 0;
          display: flex;
          flex-direction: column;
          height: 100%; }
          body.page #pricePlans #plans .plan .planContainer .title {
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: center; }
            body.page #pricePlans #plans .plan .planContainer .title h2 {
              font-size: 1.5rem;
              text-transform: none;
              font-weight: 600;
              letter-spacing: 1px;
              width: 100%;
              text-align: center; }
              body.page #pricePlans #plans .plan .planContainer .title h2 i {
                color: #f87200; }
          body.page #pricePlans #plans .plan .planContainer .price {
            width: 100%;
            text-align: center;
            color: #8eb4e3;
            font-weight: 600;
            padding-bottom: 1rem;
            border-bottom: 1px solid #b7b7b7; }
          body.page #pricePlans #plans .plan .planContainer .options {
            display: flex;
            flex-direction: column;
            padding: 0 1.5rem;
            min-height: 400px; }
            @media (max-width: 991.98px) {
              body.page #pricePlans #plans .plan .planContainer .options {
                min-height: 0; } }
            body.page #pricePlans #plans .plan .planContainer .options .sb {
              padding: 30px 0 0;
              font-weight: bold; }
          body.page #pricePlans #plans .plan .planContainer .button, body.page #pricePlans #plans .plan .planContainer .btn {
            display: flex;
            align-items: center;
            margin: 15px 0 2rem; }
            body.page #pricePlans #plans .plan .planContainer .button a, body.page #pricePlans #plans .plan .planContainer .btn a {
              width: 80%;
              margin: 0 auto;
              background-color: #f87200;
              justify-content: center;
              align-items: center;
              display: flex;
              color: #fff;
              padding: 7px 15px;
              font-weight: 700;
              border-radius: 3px;
              transition: .5s all; }
              body.page #pricePlans #plans .plan .planContainer .button a:hover, body.page #pricePlans #plans .plan .planContainer .btn a:hover {
                background-color: #f87200; }
              body.page #pricePlans #plans .plan .planContainer .button a i, body.page #pricePlans #plans .plan .planContainer .btn a i {
                font-size: .813rem; }
  body.page .entry ul li {
    color: #5c6b80; }
  body.page .entry .liste .h2, body.page .entry .liste h2 {
    margin-bottom: 0; }
  body.page .entry .liste li > div {
    padding-left: 7rem;
    margin-top: -51px; }
  body.page .entry .liste li {
    position: relative;
    counter-increment: numero;
    list-style-type: none;
    list-style-position: outside;
    padding: 3em 0 1em 0;
    border-bottom: 1px solid #eee; }
    body.page .entry .liste li:before {
      content: "●";
      font-size: 3em;
      line-height: 0.26em;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background-color: #f26c13;
      font-weight: bold;
      text-align: center;
      padding-top: 7px;
      color: white;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      z-index: 1;
      display: inline-block; }
    body.page .entry .liste li a.h2 {
      border-bottom: 1px dotted;
      padding-bottom: 5px;
      display: inline-block; }
  body.page .entry .liste.rp.liste-num li:nth-child(n+4)::before {
    list-style: none !important;
    background-color: transparent;
    content: "";
    display: none; }
  body.page .entry .liste.rp.liste-num li:nth-child(n+4) > div {
    margin-top: 0em; }
  body.page .entry .liste-num li:before {
    content: counter(numero);
    font-size: 2rem;
    font-family: arial;
    line-height: 2.2rem; }
  body.page .entry .liste-image li {
    border: none;
    margin: 1em 0;
    position: relative; }
    body.page .entry .liste-image li:before {
      -webkit-transform: inherit;
      transform: inherit;
      top: 0;
      left: -17px;
      position: relative;
      z-index: 9; }
  body.page .entry .liste-image li > div {
    display: flex;
    padding-left: 0; }
  body.page .entry .liste-image .img-pic {
    width: 250px;
    max-width: 250px; }
    body.page .entry .liste-image .img-pic img {
      border-radius: 3px;
      width: 100%;
      max-width: 100%; }
  body.page .entry .liste-image .img-pic + div {
    flex: 2;
    margin-left: 2rem; }
  body.page .entry .liste-rond li {
    border-bottom: 1px solid #eee; }
    body.page .entry .liste-rond li:before {
      display: none; }
    body.page .entry .liste-rond li div {
      padding-top: 1rem; }
  body.page .entry .liste-rond .img-pic {
    width: 15rem; }
    body.page .entry .liste-rond .img-pic img {
      border-radius: 50%;
      max-width: 15rem; }
  body.page .entry .liste-rond .img-pic + div {
    width: 68%;
    margin-left: 2rem; }
  body.page .entry .liste-simple p {
    margin: 1.5rem 0; }
  body .searchandfilter {
    display: flex;
    justify-content: center;
    background-color: rgba(24, 24, 24, 0.1);
    padding: 1rem 10px;
    align-items: center;
    width: 100%;
    margin-bottom: 0; }
    body .searchandfilter div, body .searchandfilter ul {
      display: block;
      width: 100%;
      text-align: center;
      margin-bottom: 0;
      padding-left: 0; }
    body .searchandfilter li {
      padding-right: 0.3rem !important;
      display: inline-block; }
      @media (max-width: 991.98px) {
        body .searchandfilter li {
          display: flex;
          padding-right: 0 !important; } }
      body .searchandfilter li:first-child {
        width: 50%; }
        @media (max-width: 991.98px) {
          body .searchandfilter li:first-child {
            width: 100%; } }
      body .searchandfilter li:nth-child(2) {
        width: 35%; }
        @media (max-width: 991.98px) {
          body .searchandfilter li:nth-child(2) {
            width: 100%; } }
      body .searchandfilter li:last-child {
        width: 15%;
        padding-right: 0rem !important; }
        @media (max-width: 991.98px) {
          body .searchandfilter li:last-child {
            width: 100%; } }
      body .searchandfilter li input, body .searchandfilter li select {
        padding: .8rem 1rem;
        background-color: #fff;
        color: #5c6b80;
        border-radius: 3px !important;
        font-size: 1rem;
        margin: 0;
        width: 100%;
        height: 48px;
        border: 1px solid #ccc !important; }
      body .searchandfilter li input::placeholder {
        color: #000;
        opacity: 1; }
      body .searchandfilter li input:focus {
        outline: none !important;
        border: 1px solid #999; }
      body .searchandfilter li input[type="submit"] {
        background-color: #f87200;
        color: #fff;
        width: 100%;
        border-radius: 3px !important;
        cursor: pointer;
        font-weight: bold;
        text-transform: uppercase;
        padding: 0;
        border: none; }
  body .projet {
    margin-top: 5rem;
    display: flex; }
    body .projet .slides {
      margin: 0rem;
      padding: 0 2rem 0 0;
      list-style-type: none; }
      body .projet .slides li {
        list-style-type: none; }
        body .projet .slides li:before {
          content: ""; }
      body .projet .slides img {
        max-width: 100%;
        height: auto; }
    body .projet .btn {
      margin-top: 2rem; }
    body .projet .span4, body .projet .span8 {
      width: 49%;
      line-height: 20px; }
    body .projet .project-info h2 {
      margin: 0 0 1rem;
      font-size: 1rem; }
      body .projet .project-info h2:nth-child(2n) {
        margin-top: 1rem; }
    body .projet .project-info ul {
      margin-top: 1rem; }
    body .projet .page-template-default .content .entry-title {
      display: block !important; }
    body .projet .page-template-page-wfooter #contact-btn {
      display: block !important; }
  body .btn-wrap {
    display: flex;
    width: 100%;
    justify-content: center; }
  @media only screen and (max-width: 768px) {
    body .animate__animated {
      /*CSS animations*/
      -webkit-animation: none !important;
      -moz-animation: none !important;
      -o-animation: none !important;
      -ms-animation: none !important;
      animation: none !important;
      /*CSS transforms*/
      -o-transform: none !important;
      -moz-transform: none !important;
      -ms-transform: none !important;
      -webkit-transform: none !important;
      transform: none !important;
      /*CSS transitions*/
      -o-transition-property: none !important;
      -moz-transition-property: none !important;
      -ms-transition-property: none !important;
      -webkit-transition-property: none !important;
      transition-property: none !important; } }

.blurb {
  border: 4px solid #f87200;
  padding: 1rem 2rem;
  align-items: center !important; }
  .blurb h2, .blurb p, .blurb .wp-block-buttons .wp-block-button {
    margin: 0;
    width: 100%; }

.blurb h2 {
  color: #5c6b80 !important;
  margin-bottom: 0px !important; }

.blurb .wp-block-column:last-child {
  text-align: center; }

.blurb .wp-block-button__link {
  background-color: #f87200;
  display: block; }

#contact-btn {
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  padding: 1rem;
  border-radius: 50%;
  background-color: #f87200;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4);
  color: #fff;
  transition: none;
  font-size: 16px;
  font-weight: bold !important;
  line-height: 18px;
  text-align: center;
  cursor: pointer; }
  #contact-btn:hover {
    filter: brightness(0.9); }

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100; }

.modal .content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  border-radius: 5px;
  margin: auto;
  padding: 20px;
  overflow-y: inherit; }

.modal .close {
  font-size: 22px;
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  padding: 5px 10px; }

.advisor-img {
  position: absolute;
  bottom: 0;
  left: 9%;
  height: 13vh;
  z-index: 9; }

#modal-chatbot .content {
  width: 80%;
  max-width: 960px;
  height: 80vh;
  margin-top: auto; }

#modal-telephone .content,
#modal-courrier .content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 450px;
  height: 450px;
  color: #000; }

#modal-courrier .content p {
  color: #dc3545;
  margin: 5px 0;
  font-weight: bold; }

.modal .content h5 {
  font-size: 20px;
  color: #000; }

/*Chatbot*/
:root {
  --linkColor: $primary;
  --addlinkColor: #777777; }

#chat_moomoot * {
  font-family: 'Open Sans';
  font-weight: 600;
  font-size: 16px;
  touch-action: manipulation;
  position: relative; }

#chat_moomoot i {
  font-family: 'Font Awesome 5 Pro' !important; }

#chat_moomoot .avatar {
  background: url("https://www.heptasearch.fr/images/guider.png");
  background-repeat: no-repeat;
  position: fixed;
  z-index: 99999;
  width: 100px;
  height: 100px;
  left: 10vh; }

#chat_moomoot iframe {
  margin: 0; }

/*#chat_moomoot .ariane {
  height: 16px;
 }*/
#chat_moomoot .ariane a {
  font-size: 12px;
  position: relative; }

#chat_moomoot .ariane a:first-child {
  display: flex;
  align-items: center; }

#chat_moomoot .ariane a:nth-child(2) {
  margin-left: 1rem !important; }

#chat_moomoot .ariane i {
  font-family: 'Font Awesome 5 Pro' !important;
  color: #cecece; }

#chat_moomoot li, #chat_moomoot p {
  font-family: 'Open Sans' !important;
  color: #4b4f56; }

#chat_moomoot .container p {
  margin-bottom: 1em; }

#chat_moomoot .bot > .container, .user > .container {
  display: inline-block;
  min-width: 100px;
  max-width: 500px;
  width: auto;
  padding: 1em 1.5em;
  text-align: left;
  color: #4b4f56;
  position: relative;
  font-family: 'Open Sans';
  font-size: 16px;
  border-radius: 30px;
  border: solid 4px  #8eb4e3;
  padding: 8px 14px;
  margin-bottom: 15px; }

#chat_moomoot .mt-20 {
  margin-top: 20px; }

#chat_moomoot .title span {
  font-size: 3rem;
  font-weight: 800; }

#chatbot_historique {
  padding: 20px 20px 0 20px;
  max-height: 70vh;
  height: 70vh;
  min-height: 70vh;
  flex: 1;
  overflow: auto; }

#modal-chatbot#modal-chatbot #chatbot_historique {
  max-height: 65vh;
  height: 65vh;
  min-height: 65vh; }

#chat_moomoot #botinput {
  background: #fff;
  padding: 2rem 0;
  margin-top: 0;
  display: flex !important;
  justify-content: center;
  bottom: 0;
  position: fixed; }

#chat_moomoot .bot, .user {
  margin-bottom: 1rem; }

#chat_moomoot a {
  font-weight: bolder;
  text-decoration: underline; }

#chat_moomoot .container p {
  font-weight: 400 !important;
  color: #4b4f56; }

#chat_moomoot .bot .buttons button {
  display: inline-block;
  padding: 20px 15px;
  border-radius: 5px;
  border: 1px solid #d8d8d8;
  margin: 1em 1em 1.5em;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  background-color: transparent;
  color: #f87200;
  box-shadow: 0px 3px 7px -3px #BCBCBC; }

#chat_moomoot .bot .buttons button i {
  margin-right: 10px; }

#chat_moomoot .bot button i {
  font-family: 'Font Awesome 5 Pro' !important; }

#chat_moomoot .bot button:hover {
  color: #999; }

#chat_moomoot .bot-boutons button:hover {
  background-color: #4080ff;
  color: #fff; }

#chat_moomoot .bot-boutons button {
  background-color: #4080ff;
  color: #fff; }

#chat_moomoot .botinput button {
  background-color: transparent;
  padding: 0;
  border: 0; }

#chat_moomoot #botinput.botinput div button i {
  font-size: 16px;
  color: #999;
  border: 1px solid #999;
  border-radius: 50%;
  margin: 0 5px 0 0; }

#chat_moomoot #botinput.botinput div button i:hover {
  background-color: #999;
  color: #fff; }

#chat_moomoot #botinput.botinput div button.hidden {
  display: none; }

#chat_moomoot .user {
  text-align: right; }

#chat_moomoot .user .container {
  background-color: #8eb4e3;
  color: #fff;
  font-size: 16px; }

#chat_moomoot .bot .container:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-right-color: #8eb4e3;
  border-left: 0;
  border-bottom: 0;
  margin-top: -10px;
  margin-left: -20px; }

#chat_moomoot .container.scenario:after {
  display: none; }

#chat_moomoot .user .container:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-left-color: #8eb4e3;
  border-right: 0;
  border-bottom: 0;
  margin-top: -10px;
  margin-right: -20px; }

#chat_moomoot .listing li {
  padding: 1em; }

#chat_moomoot .listing li:hover {
  background-color: #eee; }

#chat_moomoot .listing .image-wrap {
  overflow: hidden;
  width: 75px;
  height: 75px;
  margin-right: 2em;
  margin-top: 0;
  position: relative; }

#chat_moomoot .listing .image-wrap img {
  position: absolute;
  left: -1000%;
  right: -1000%;
  top: -1000%;
  bottom: -1000%;
  margin: auto;
  width: 100%;
  width: 75px;
  height: 75px;
  border-radius: 5px; }

#chat_moomoot .listing li div {
  display: inline-block;
  vertical-align: top;
  max-width: 68%;
  font-weight: 700; }

#chat_moomoot .listing li a {
  display: block; }

#chat_moomoot .bot .listingBlocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

#chat_moomoot .bot .listingBlocks li {
  display: inline-block;
  width: 29%;
  padding: 20px 15px;
  border-radius: 5px;
  margin: 1em 0 1.5em;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  background-color: transparent;
  box-shadow: 0px 5px 7px  #BCBCBC; }

#chat_moomoot .bot .listingBlocks li .container {
  background-color: transparent;
  padding: 0;
  color: #4b4f56; }

#chat_moomoot .bot .listingBlocks li img {
  max-width: 60%;
  margin-top: 16px; }

/*chat_moomoot*/
#chat_moomoot .bot a {
  display: inline-block;
  margin-left: 0.5em;
  color: var(--primary);
  text-decoration: none;
  vertical-align: super; }

#chat_moomoot .bot .addlink {
  text-align: right; }

#chat_moomoot .bot .addlink a {
  text-align: right;
  color: var(--addlinkColor);
  font-weight: normal; }

#chat_moomoot .bot img, #chat_moomoot_historique img:first-child {
  display: inline-block;
  max-width: 250px;
  content: "";
  vertical-align: top; }

#chat_moomoot .bot img.gmap {
  max-width: 500px; }

#chat_moomoot .bot-boutons button {
  display: inline-block;
  border: solid 3px #4080ff;
  padding: 1.5em 1em;
  border-radius: 10px;
  margin-top: 1em;
  cursor: pointer;
  background-color: transparent;
  margin-bottom: 1.5em;
  color: #4080ff; }

#chat_moomoot .bot button {
  border: none;
  background-color: transparent;
  font-size: 16px;
  margin-left: 0.5em;
  color: #bcbcbc;
  cursor: pointer; }

#chat_moomoot .bot button:hover {
  color: #999; }

#chat_moomoot .bot .bot-btn {
  margin: 1em 0; }

.botinput {
  text-align: right; }

.botinput::placeholder {
  font-size: 16px; }

#chat_moomoot .bot .bot-btn button {
  display: inline-block;
  color: #f87200;
  border: 2px solid;
  padding: 0.2em 0.5em;
  border-radius: 22px; }

#chat_moomoot .bot button[id^=vote_btn] {
  padding: 15px; }

#chat_moomoot .bot .bot-btn button:hover {
  background-color: #f87200;
  color: #fff; }

#chat_moomoot .user {
  text-align: right; }

#chat_moomoot #botinput {
  margin-top: 2rem;
  background-color: #f0f0f0;
  position: absolute;
  bottom: 0rem;
  width: 100%;
  height: 62px;
  padding: 1rem;
  position: fixed;
  bottom: 5vh;
  left: 0;
  right: 0;
  text-align: center; }

#botinput div {
  display: inline-flex;
  justify-content: center; }

#botinput input {
  box-sizing: border-box;
  padding-left: 1em;
  margin: 0 auto;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  height: 57px;
  line-height: 40px;
  color: #8a8a8a;
  vertical-align: middle;
  box-shadow: none;
  background-color: #F0F4F8 !important;
  max-width: 1024px;
  width: 50vw !important;
  border-radius: 30px !important;
  background-color: #fff !important;
  height: 42px;
  color: #4b4f56;
  font-weight: 600; }

#chat_moomoot .listing li {
  padding: 1em; }

#chat_moomoot .listing li:hover {
  background-color: #eee; }

#chat_moomoot .listing .image-wrap {
  overflow: hidden;
  width: 75px;
  height: 75px;
  margin-right: 2em;
  margin-top: 0;
  position: relative; }

#chat_moomoot .listing .image-wrap img {
  position: absolute;
  left: -1000%;
  right: -1000%;
  top: -1000%;
  bottom: -1000%;
  margin: auto;
  width: 100%;
  width: 75px;
  height: 75px;
  border-radius: 5px; }

#chat_moomoot .listing li div {
  display: inline-block;
  vertical-align: top;
  max-width: 68%;
  font-weight: 700;
  overflow: hidden; }

#chat_moomoot .listing li a {
  display: block; }

#chat_moomoot .container.scenario .choices > div:first-child {
  margin-top: 0px; }

#chat_moomoot .choices > div:not(.texte) {
  display: block;
  background-color: #f87200;
  border-radius: 7px;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
  width: 455px; }

#chat_moomoot .container.scenario {
  border: none; }

#chat_moomoot .choices p {
  color: #fff;
  margin: 0;
  word-break: break-word; }

#chat_moomoot .choices span {
  vertical-align: middle;
  font-size: 16px; }

#genesis-footer-widgets {
  z-index: 999999999; }

#chat_moomoot .choices a {
  text-decoration: none;
  width: 100%; }

#chat_moomoot .choices i {
  display: inline-block;
  margin-right: 10px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 18px;
  color: #f87200;
  font-family: 'Font Awesome 5 Pro'; }

#chat_moomoot .choices div a:hover {
  color: #f87200; }

#chat_moomoot .form_block {
  background-color: transparent !important;
  padding: 1.5em 1em !important;
  position: relative;
  max-width: 500px;
  width: 100%  !important;
  box-sizing: border-box; }

#chat_moomoot .form_block .formIntContainer p {
  color: #5c6b80; }

#chat_moomoot .formIntLine span {
  display: block;
  max-width: 100%;
  margin-bottom: 10px;
  font-weight: 600; }

#chat_moomoot .formIntLine input, #chat_moomoot .formIntLine textarea {
  display: block;
  min-height: 40px;
  line-height: 40px;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #5c6b80;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  background-color: #F6F6F6 !important;
  box-sizing: border-box;
  vertical-align: top; }

#chat_moomoot .formIntContainer button {
  background-color: #8eb4e3;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
  font-size: 16px;
  margin-left: 0px;
  border: none; }

#chat_moomoot .formIntContainer button.close {
  color: #8eb4e3;
  background-color: transparent;
  position: absolute;
  z-index: 9999;
  right: -1em;
  top: -1.75em; }

#chat_moomoot .formIntContainer p {
  font-weight: bold !important;
  color: #4b4f56; }

#chat_moomoot .choices .texte p {
  color: #4b4f56; }

#chat_moomoot .formIntContainer button:hover {
  filter: brightness(90%);
  color: #ffffff; }

#chat_moomoot .bot .vote_return p {
  font-weight: 400;
  font-style: italic;
  font-size: 1.4rem;
  margin-top: 2rem; }

#chat_moomoot .bot .vote_return li {
  display: inline-block;
  padding: 1rem;
  list-style-type: none;
  border: 2px solid #636363;
  border-radius: 5px;
  color: #636363;
  margin-left: 1rem;
  cursor: pointer; }

#chat_moomoot .bot .vote_return li:hover {
  color: #fff;
  background-color: #636363; }

#chat_moomoot .item {
  margin: 1rem 0;
  max-height: 100px;
  overflow: hidden; }

#chat_moomoot .item:hover {
  background-color: #fce0cf;
  border-radius: 7px; }

#chat_moomoot .item img {
  width: 100px;
  height: 100px;
  border-radius: 7px; }

#chat_moomoot .item_text h3 {
  margin-bottom: 1rem; }

#chat_moomoot .item_text .prix {
  display: block;
  color: #8a8a8a; }

#chat_moomoot .item a {
  margin-left: 0px; }

#chat_moomoot .item_text {
  max-width: 347px;
  display: inline-block;
  padding: 1rem; }

#chat_moomoot .item_text .prix {
  display: block;
  color: #8a8a8a; }

#chat_moomoot .copyright {
  position: fixed;
  bottom: 1vh;
  text-align: center;
  left: 0;
  right: 0;
  font-size: 12px;
  line-height: 12px; }

#chat_moomoot .copyright a {
  color: #cecece;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none; }

/* Modal
---------------------------------------------------------------------------------------------------- */
body.modal-open {
  overflow: hidden; }

#modal-chatbot {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  margin-left: 0;
  padding: 5rem;
  box-sizing: border-box;
  z-index: 99999; }

#modal-chatbot .content {
  background: #fff;
  border-radius: 5px;
  display: flex;
  height: 85%;
  max-width: 1000px; }

#modal-chatbot #chat_moomoot #botinput {
  position: absolute; }

#modal-chatbot #chat_moomoot {
  flex: 1;
  overflow: hidden;
  padding: 20px 20px 0px 20px; }

#modal-chatbot #chatbot {
  height: 100%;
  display: flex;
  flex-direction: column; }

#modal-chatbot #chat_moomoot #botinput {
  padding-bottom: 0;
  bottom: 0; }

/*Produits*/
#chat_moomoot .bot .img_front {
  border: none; }

#chat_moomoot .bot .img_front::after {
  border-color: transparent; }

#chat_moomoot .bot .produits {
  display: flex;
  max-width: 100%;
  border: none;
  overflow: auto; }

#chat_moomoot .bot .produits::after {
  border-color: transparent; }

#chat_moomoot .bot .produits {
  display: flex;
  max-width: 100%;
  border: none; }

#chat_moomoot .bot .produit {
  min-width: 250px;
  margin-right: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden; }

#chat_moomoot .bot .produit:hover {
  background: #dbe9f9; }

#chat_moomoot .bot .produits .imgwrap {
  max-width: 100%;
  margin-bottom: 1em;
  max-height: 148px;
  overflow: hidden; }

#chat_moomoot .bot .produits a {
  margin: 0;
  height: 100%; }

#chat_moomoot .bot .produits .description,
#chat_moomoot .bot .produits .shortdesc,
#chat_moomoot .bot .produits .price,
#chat_moomoot .bot .produits h3 {
  padding: 0 0.8em; }

#chat_moomoot .bot .produits .imgwrap img {
  width: 100%;
  height: auto;
  border-radius: 0; }

#chat_moomoot .bot .produits h3 {
  color: #4b4f56; }

#chat_moomoot .bot .produits .description {
  font-weight: 400;
  font-size: 14px;
  color: #4b4f56;
  margin-bottom: 2.5em; }

#chat_moomoot .bot .produits .shortdesc {
  font-weight: 400;
  font-size: 14px;
  color: #ccc;
  position: absolute;
  bottom: 12px; }

#chat_moomoot .rating .fa-star {
  margin-right: 5px; }

#chat_moomoot .rating button {
  margin-left: 15px !important; }

#chat_moomoot .user .bot_form_group {
  display: flex;
  align-items: center; }

#chat_moomoot .user .bot_form_group .inpt_form {
  border-radius: 15px;
  padding: 10px 15px;
  margin-right: 15px; }

#chat_moomoot .user button {
  border-radius: 15px;
  padding: 10px 15px;
  margin-right: 15px;
  background-color: transparent;
  border: 1px solid white; }

#chat_moomoot .user button:hover {
  color: #8eb4c3;
  background-color: #fff; }

#chat_moomoot .user button.btn_edit {
  padding: 4px 10px; }

#chat_moomoot .user .human_response {
  display: flex;
  align-items: center; }

#chat_moomoot .user .bot_form_group .range-wrap {
  margin-right: 20px;
  padding: 5px; }

#chat_moomoot .user .bot_form_group .range-wrap output {
  position: relative;
  left: 0 !important;
  width: 35px; }

#chat_moomoot .column {
  display: flex;
  flex-direction: column; }

#chatbot .bot_form_group.column {
  align-items: baseline; }

#chatbot .bot_form_group.column div {
  display: flex;
  align-items: center; }

#chatbot .produits.cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: auto; }

#chatbot .produits.cta .produit {
  margin-bottom: 10px;
  padding: 0.5em 1em 0.3em;
  min-width: 200px;
  border: 1px solid var(--linkColor);
  width: auto; }

#chat_moomoot .bot .produits.cta .description {
  font-weight: 600;
  color: var(--linkColor);
  position: relative;
  width: 100%;
  padding-left: 24px;
  font-size: 16px; }

#chat_moomoot .bot .produits.cta .description::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: 'Font Awesome 5 Pro' !important;
  content: "\f002";
  font-size: 16px; }

@media screen and (max-width: 1024px) {
  #botinput input {
    width: 80vw !important; } }

@media screen and (max-width: 594px) {
  #chat_moomoot .copyright {
    bottom: 5px;
    display: none;
    line-height: 14px; }
  #modal-chatbot#modal-chatbot #chatbot_historique {
    padding: 1.5em; }
  #chat_moomoot .choices > div:not(.texte) {
    width: 100%; } }

@media screen and (max-width: 400px) {
  #chatbot_historique {
    padding: 0 12px; }
  #chat_moomoot .bot > .container, .user > .container {
    min-width: auto; }
  #chat_moomoot .container.scenario {
    padding: 0; }
  #chat_moomoot .choices > div:not(.texte) {
    padding: 10px 5px; }
  #chat_moomoot .bot > .container, .user > .container, #chat_moomoot * {
    font-size: 1.2rem !important; }
  #chat_moomoot .bot, .user {
    margin-bottom: 1em; }
  #chat_moomoot .choices > div:not(.texte) {
    width: 100%; }
  #botinput input {
    width: 95vw !important; }
  #chat_moomoot .title {
    margin: 1rem; }
  #chat_moomoot .title {
    margin: 1rem; }
  #chat_moomoot .bot, #chat_moomoot .user, #chat_moomoot .bot, #chat_moomoot .user {
    margin: 0.25rem; }
  #chat_moomoot .bot > .container, .user > .container {
    margin-bottom: 10px !important; } }

:root {
  --color1: $primary;
  --color2: #EDEDED;
  --color3: #fcf3ea; }

#chat_moomoot {
  height: 100%; }

#chat_moomoot *, #chat_moomoot *::before, #chat_moomoot *::after {
  box-sizing: initial;
  vertical-align: inherit; }

#chat_moomoot input, #chat_moomoot select, #chat_moomoot textarea {
  width: inherit; }

#chatbot {
  height: 100%;
  display: flex;
  flex-direction: column; }

#chatbot_historique {
  padding: 20px 20px 0 20px;
  min-height: 67vh;
  flex: 1; }

#chat_moomoot #botinput {
  background: #fff;
  padding: 2rem 0;
  margin-top: 0;
  display: flex !important;
  justify-content: center;
  bottom: 0; }

#chat_moomoot #botinput textarea {
  box-sizing: border-box;
  margin: 0 auto;
  font-size: 16px;
  outline: none;
  /*height: 42px;*/
  color: #8a8a8a;
  vertical-align: middle;
  box-shadow: none;
  max-width: 850px;
  width: 80vw;
  color: #4b4f56;
  font-weight: 600;
  border: 0;
  background-color: #F6F6F6 !important;
  border-radius: 90px !important;
  padding: 15px 30px;
  max-height: 90px;
  resize: none; }

#chat_moomoot #botinput div i {
  color: #FF7900;
  margin-left: 10px;
  font-family: 'Font Awesome 5 Pro';
  color: #999;
  font-size: 26px;
  padding: 0.5rem;
  cursor: pointer; }

#chat_moomoot #botinput > div {
  display: flex;
  align-items: center; }

#chat_moomoot .user .container {
  background-color: var(--color1) !important;
  border-color: var(--color1) !important; }

#chat_moomoot .user .container:after {
  border-left-color: var(--color1) !important; }

#chat_moomoot .human_response button {
  position: absolute;
  left: -55px;
  color: var(--color1);
  border: 0; }

#chat_moomoot .user .bot_form_group .inpt_form {
  border: 0; }

/* Customize the label (the container) */
#chat_moomoot .wrap_custom_checkbox {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-top: 5px;
  cursor: pointer;
  font-size: 16px;
  line-height: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/* Hide the browser's default checkbox */
#chat_moomoot .wrap_custom_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

/* Create a custom checkbox */
#chat_moomoot .wrap_custom_checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee; }

/* On mouse-over, add a grey background color */
#chat_moomoot .wrap_custom_checkbox:hover input ~ .checkmark {
  background-color: #ccc; }

/* When the checkbox is checked, add a blue background */
#chat_moomoot .wrap_custom_checkbox input:checked ~ .checkmark {
  background-color: #eee; }

/* Create the checkmark/indicator (hidden when not checked) */
#chat_moomoot .wrap_custom_checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Show the checkmark when checked */
#chat_moomoot .wrap_custom_checkbox input:checked ~ .checkmark:after {
  display: block; }

/* Style the checkmark/indicator */
#chat_moomoot .wrap_custom_checkbox .checkmark:after {
  left: 7px;
  top: 2px;
  width: 4px;
  height: 10px;
  border: solid var(--color1);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

/* Customize the label (the container) */
#chat_moomoot .wrap_custom_radio {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-top: 5px;
  cursor: pointer;
  font-size: 16px;
  line-height: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/* Hide the browser's default radio button */
#chat_moomoot .wrap_custom_radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

/* Create a custom radio button */
#chat_moomoot .wrap_custom_radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%; }

/* On mouse-over, add a grey background color */
#chat_moomoot .wrap_custom_radio:hover input ~ .checkmark {
  background-color: #ccc; }

/* When the radio button is checked, add a blue background */
#chat_moomoot .wrap_custom_radio input:checked ~ .checkmark {
  background-color: #fff; }

/* Create the indicator (the dot/circle - hidden when not checked) */
#chat_moomoot .wrap_custom_radio .checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Show the indicator (dot/circle) when checked */
#chat_moomoot .wrap_custom_radio input:checked ~ .checkmark:after {
  display: block; }

/* Style the indicator (dot/circle) */
#chat_moomoot .wrap_custom_radio .checkmark:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color1); }

#chat_moomoot .user button {
  background-color: #fff !important;
  color: var(--color1);
  border: 1px solid var(--color1); }

#chat_moomoot .bot > .container, .user > .container {
  border-color: var(--color2);
  background-color: var(--color2); }

#chat_moomoot .bot .container:after {
  border-right-color: var(--color2); }

#chat_moomoot .container.scenario {
  background-color: transparent !important; }

#chat_moomoot .container.rating {
  background-color: transparent !important;
  padding: 20px 30px;
  border-width: 1px; }

#chat_moomoot .container.rating.human-view {
  background-color: var(--color1) !important;
  padding: 8px 14px; }

#chat_moomoot .container.rating.human-view .btn_edit {
  left: -72px; }

#chat_moomoot .bot_form_group_rating {
  display: flex;
  flex-direction: column; }

#chat_moomoot .wrap-stars i {
  font-size: 28px; }

#chat_moomoot button.btn_edit {
  border: 0; }

#chat_moomoot input[type='range'] {
  -webkit-appearance: none;
  background-color: #ddd;
  height: 20px;
  overflow: hidden;
  width: 300px;
  padding: 0 !important; }

#chat_moomoot input[type='range']::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 20px; }

#chat_moomoot input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #333;
  border-radius: 50%;
  box-shadow: -210px 0 0 200px #666;
  cursor: pointer;
  height: 20px;
  width: 20px;
  border: 0; }

#chat_moomoot input[type='range']::-moz-range-thumb {
  background: #333;
  border-radius: 50%;
  box-shadow: -1010px 0 0 1000px #666;
  cursor: pointer;
  height: 20px;
  width: 20px;
  border: 0; }

#chat_moomoot input[type="range"]::-moz-range-track {
  background-color: #ddd; }

#chat_moomoot input[type="range"]::-moz-range-progress {
  background-color: #666;
  height: 20px; }

#chat_moomoot input[type="range"]::-ms-fill-upper {
  background-color: #ddd; }

#chat_moomoot input[type="range"]::-ms-fill-lower {
  background-color: #666; }

#chat_moomoot .parent-range-wrap {
  display: flex;
  flex-direction: column;
  align-items: center; }

#chat_moomoot select, #chat_moomoot option {
  -webkit-appearance: none;
  background-color: #fff; }

#chat_moomoot option:hover {
  background-color: orange !important; }

#chat_moomoot .custom-select {
  position: relative;
  display: inline-block; }

#chat_moomoot .custom-select select {
  padding-right: 30px !important;
  background-image: linear-gradient(45deg, transparent 50%, var(--color1) 50%), linear-gradient(135deg, var(--color1) 50%, transparent 50%);
  background-position: calc(100% - 16px) 19px, calc(100% - 10px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat; }

#chat_moomoot .user .bot_form_group .range-wrap {
  overflow: hidden;
  display: flex;
  align-items: center; }

#chat_moomoot .parent-range-wrap > div:last-child {
  padding-top: 10px; }

#chat_moomoot .bot .img_front {
  padding: 0;
  background-color: transparent !important;
  border: 1px solid var(--color2);
  overflow: hidden; }

#chat_moomoot .bot .img_front img {
  margin-bottom: 5px; }

#chat_moomoot .bot .img_front .description {
  padding: 10px 10px 20px; }

#chat_moomoot .bot > .container, .user > .container {
  border-radius: 10px; }

#chat_moomoot .bot .cta {
  background-color: transparent;
  border: 0; }

#chatbot .produits.cta .produit {
  border: 1px solid var(--color1);
  padding: 0;
  border-radius: 10px; }

#chatbot .produits.cta .produit a {
  color: var(--color1);
  padding: 0.7em;
  width: 100%; }

#chatbot .produits.cta .produit .description {
  margin: 0;
  color: var(--color1);
  padding-top: 0;
  box-sizing: border-box; }

#chatbot .produits.cta .produit:hover, #chat_moomoot .choices > div:not(.texte):hover {
  background-color: var(--color3); }

#chat_moomoot .bot > .container.produits {
  background-color: transparent;
  border: 0; }

#chat_moomoot .bot .produit {
  border-radius: 10px;
  min-width: 200px;
  max-width: 250px;
  display: flex; }

#chat_moomoot .bot .produits h3 {
  margin: 10px 0 0 0; }

#chat_moomoot .bot .produits a {
  width: 100%;
  padding-bottom: 30px;
  height: auto; }

#chat_moomoot .bot .produits .imgwrap {
  height: 220px;
  max-height: inherit;
  position: relative;
  margin-bottom: 0; }

#chat_moomoot .bot .produits .imgwrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; }

#chat_moomoot .bot .produits .description {
  margin-bottom: 1.5rem;
  padding-top: 10px; }

#chat_moomoot .bot .produit:hover {
  background-color: var(--color3); }

#chat_moomoot .bot .produits .price {
  color: var(--color1); }

#chat_moomoot .bot img.gmap {
  border-radius: 10px; }

#chat_moomoot iframe {
  border-radius: 10px; }

#chat_moomoot .bot img, #chat_moomoot_historique img:first-child {
  content: none; }

#chat_moomoot .container .ariane {
  display: flex;
  align-items: center; }

#chat_moomoot .spinner {
  margin: 0 auto;
  width: 60px;
  text-align: center;
  display: flex;
  justify-content: center; }

#chat_moomoot .spinner > div {
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both; }

#chat_moomoot .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s; }

#chat_moomoot .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s; }

#chat_moomoot #botinput img {
  margin-left: 5px; }

#chat_moomoot .container.scenario {
  padding: 0; }

#chat_moomoot .choices > div:not(.texte) {
  box-sizing: border-box;
  background: var(--color1); }

#chat_moomoot .container.produits {
  padding: 0; }

#chat_moomoot .send-btn {
  width: 32px;
  height: 32px;
  background-image: url("send.png");
  background-repeat: no-repeat;
  background-position: top center;
  cursor: pointer;
  margin-left: 5px; }

#chat_moomoot .send-btn:hover {
  filter: brightness(85%); }

#chat_moomoot .scenario .choices {
  display: flex;
  flex-wrap: wrap; }

#chat_moomoot .container.scenario .choices > div:first-child {
  margin-top: 0.5rem; }

#chat_moomoot .scenario .choices div {
  display: inline-block;
  max-width: 20%;
  min-width: 197px;
  padding: 1em;
  border-radius: 5px;
  margin: 0.5rem;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  background-color: #F7F7F7;
  border: 2px solid #eee;
  font-weight: 400; }

#chat_moomoot .bot > .container.scenario {
  max-width: 100%;
  width: 100%; }

#chat_moomoot .scenario .choices a {
  margin-left: 0; }

#chat_moomoot .scenario .choices div i {
  display: block;
  font-size: 32px;
  margin: 0 auto  1rem auto; }

#chat_moomoot .scenario .choices div span {
  color: #4b4f56; }

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0); }
  40% {
    -webkit-transform: scale(1); } }

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@media screen and (max-width: 1200px) {
  #chat_moomoot #botinput textarea {
    width: 65vw; } }

@media screen and (max-width: 768px) {
  #chat_moomoot #botinput > div {
    flex: 1;
    margin: 0 10px; }
  #chat_moomoot #botinput textarea {
    flex: 1; }
  #chat_moomoot input[type='range'] {
    width: 100%; } }

@media screen and (max-width: 576px) {
  #chat_moomoot .scenario .choices div {
    max-width: inherit;
    min-width: inherit;
    flex-grow: 0;
    flex-basis: 48%;
    margin: 1%; }
  #chat_moomoot .container.scenario .choices > div:first-child {
    margin-top: 1%; }
  #modal-chatbot {
    padding: 2rem; }
  #modal-chatbot .content {
    padding: 0; }
  #modal-chatbot.modal .close {
    top: -11px;
    right: -5px; }
  #modal-chatbot #chat_moomoot {
    padding: 20px 0 0 0; }
  #modal-chatbot#modal-chatbot #chatbot_historique {
    padding: 0 10px; }
  #chat_moomoot #botinput {
    padding-top: 0.5rem; }
  #chat_moomoot .user .container:after,
  #chat_moomoot .bot .container:after {
    display: none; } }

@media screen and (max-width: 400px) {
  #chat_moomoot .bot > .container, .user > .container, #chat_moomoot * {
    font-size: 16px !important; }
  #chat_moomoot .user .container:after,
  #chat_moomoot .bot .container:after {
    display: none; }
  #chat_moomoot #botinput {
    padding: 5px 0; }
  #chat_moomoot #botinput > div {
    margin: 0 5px; }
  #chat_moomoot #botinput textarea {
    width: 100%; }
  #chat_moomoot .bot_form_group {
    display: flex;
    flex-direction: column; }
  #chat_moomoot .wrap-btn {
    margin-top: 10px; }
  #chat_moomoot .wrap-stars {
    padding-bottom: 20px; }
  #chat_moomoot .wrap-stars i {
    font-size: 22px !important; }
  #chat_moomoot .custom-select select {
    background-image: linear-gradient(45deg, transparent 50%, var(--color1) 50%), linear-gradient(135deg, var(--color1) 50%, transparent 50%);
    background-position: calc(100% - 15px) 17px, calc(100% - 10px) 17px; }
  #chat_moomoot .choices > div:not(.texte) {
    padding: 10px; } }

/************************************/
/*** OVERRIDE END Charles-Antoine ***/
/************************************/
.navigation .ariane {
  color: #f87200; }

@media (max-width: 1229.98px) {
  .heptaScen .choices {
    justify-content: flex-start !important; } }

.heptaScen .choices .choice {
  margin-left: 0 !important;
  margin-right: 13px; }
  .heptaScen .choices .choice:nth-of-type(4n+4) {
    margin-right: 0; }
  @media (max-width: 1229.98px) {
    .heptaScen .choices .choice:nth-of-type(4n+4) {
      margin-right: 13px !important; } }

footer {
  background: #222; }
  footer h3 {
    font-family: 'Pacifico';
    color: #fff;
    font-size: 1.56rem; }
  footer ul {
    list-style-type: none;
    padding-left: 0; }
    footer ul li {
      border-bottom: 1px solid #373737;
      padding: 12px 0;
      color: #999;
      font-size: .93rem;
      line-height: 1.5rem; }
      footer ul li a {
        color: #999; }
        footer ul li a:hover {
          color: #f87200;
          filter: none; }
  footer .block-3 li {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 0 !important; }
    footer .block-3 li img {
      width: 75px;
      height: 75px;
      border-radius: 50%; }
    footer .block-3 li a {
      margin-left: 15px;
      line-height: 1.5rem; }
  footer #custom_html-4 i {
    color: #f87200;
    width: 40px; }

.site-footer {
  padding-bottom: 40px;
  background-color: #262626 !important; }
  .site-footer p {
    margin-bottom: 0;
    color: #999 !important;
    font-size: .9rem;
    font-weight: 400; }

.prefooter, .listingprojets {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap; }

.prefooter div {
  width: auto;
  width: 33.33333333%;
  border: 1px solid #dbdbdb;
  flex-grow: inherit;
  padding: 2em;
  margin-top: -1px;
  margin-right: -1px; }
  @media (max-width: 991.98px) {
    .prefooter div {
      width: 100%; } }
  .prefooter div h2 {
    text-align: left;
    margin: 0 0 0.35em 0; }
    .prefooter div h2 a {
      display: flex;
      align-items: center;
      color: #4c4c4c;
      font-size: 1rem;
      font-weight: 600; }
      .prefooter div h2 a:hover {
        color: #f87200;
        filter: brightness(1); }
    .prefooter div h2 i {
      margin-right: 0.5em;
      color: #f87200; }

.prefooter ul {
  padding-left: 0px;
  text-align: left;
  margin-bottom: 0px !important; }
  .prefooter ul li {
    list-style-type: none !important;
    line-height: 1.2rem; }
    .prefooter ul li a {
      color: #999;
      font-size: 15px; }
      .prefooter ul li a:before {
        content: '-';
        padding-right: 1em; }
      .prefooter ul li a:hover {
        color: #f87200;
        filter: brightness(1); }

.prefooter .h5 {
  font-weight: 600;
  font-size: 2rem;
  margin: 0 0 2rem 0;
  text-transform: uppercase; }

.spacer-big {
  margin-top: 3rem; }

#back_top {
  border-radius: 50%;
  bottom: 30px;
  cursor: pointer;
  display: none;
  height: 40px;
  padding-top: 8px;
  position: fixed;
  right: 30px;
  text-align: center;
  width: 40px;
  z-index: 9998; }
  #back_top:hover {
    background-color: #4DC1A2 !important; }

.home .title h1 {
  font-size: 4.375rem;
  text-transform: uppercase;
  color: #f87200;
  font-weight: 900; }
  @media (max-width: 991.98px) {
    .home .title h1 {
      font-size: 1.875rem; } }

.home .title .subtitle {
  color: #fff !important;
  margin-bottom: 1rem !important; }

.home h2 {
  font-family: 'Lato' !important;
  color: #161625 !important;
  text-transform: uppercase !important;
  font-size: 3.25rem !important; }
  @media (max-width: 991.98px) {
    .home h2 {
      font-size: 1.875rem !important;
      line-height: 2.5rem !important; } }

article.post {
  width: 320px;
  margin-bottom: 2rem;
  margin-right: calc((100% - 960px) / 2); }
  article.post:nth-of-type(3n+3) {
    margin-right: 0; }
  @media (max-width: 1229.98px) {
    article.post {
      width: 32%;
      margin-right: 2%; }
      article.post:nth-of-type(3n+3) {
        margin-right: 0; } }
  @media (max-width: 767.98px) {
    article.post {
      width: 100%; } }
  article.post .cat {
    background-color: #f87200;
    border-radius: 3px;
    padding: 3px 5px;
    color: #fff;
    display: inline-flex;
    font-size: .8rem;
    align-items: center;
    align-self: baseline; }
  article.post .image {
    width: 100%;
    height: 195px;
    display: flex; }
    article.post .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  article.post .actu-content {
    min-height: 120px; }
    @media (max-width: 1229.98px) {
      article.post .actu-content {
        min-height: 150px; } }
    @media (max-width: 991.98px) {
      article.post .actu-content {
        min-height: 0; } }
  article.post h3 {
    font-size: 1rem;
    line-height: 1.875rem;
    letter-spacing: 1px;
    font-weight: normal !important; }
    article.post h3 a {
      color: #4c4c4c;
      transition: .2s all; }
      article.post h3 a:hover {
        filter: none;
        color: #8eb4e3; }

.single-post, .single-produit, .single-projet, .single-profil {
  color: #5c6b80; }
  .single-post header .header-edito, .single-produit header .header-edito, .single-projet header .header-edito, .single-profil header .header-edito {
    padding-bottom: 350px; }
    @media (max-width: 991.98px) {
      .single-post header .header-edito, .single-produit header .header-edito, .single-projet header .header-edito, .single-profil header .header-edito {
        padding-bottom: 250px; } }
  .single-post .content .container, .single-produit .content .container, .single-projet .content .container, .single-profil .content .container {
    margin-top: -250px;
    border-top: 5px solid #f87200;
    margin-bottom: 40px;
    z-index: 999; }
    .single-post .content .container h1, .single-produit .content .container h1, .single-projet .content .container h1, .single-profil .content .container h1 {
      font-family: 'Bree Serif';
      color: #4c4c4c;
      font-size: 2.5rem;
      font-weight: 700;
      display: flex;
      width: 100%; }
      @media (max-width: 991.98px) {
        .single-post .content .container h1, .single-produit .content .container h1, .single-projet .content .container h1, .single-profil .content .container h1 {
          font-size: 1.75rem; } }
    .single-post .content .container .socials, .single-produit .content .container .socials, .single-projet .content .container .socials, .single-profil .content .container .socials {
      border-top: 1px solid #c1c1c1;
      border-bottom: 1px solid #c1c1c1; }
      .single-post .content .container .socials a, .single-produit .content .container .socials a, .single-projet .content .container .socials a, .single-profil .content .container .socials a {
        font-size: 0.875rem; }
        .single-post .content .container .socials a i, .single-produit .content .container .socials a i, .single-projet .content .container .socials a i, .single-profil .content .container .socials a i {
          margin-right: 5px;
          color: #72797d;
          width: 32px;
          height: 32px;
          line-height: 32px;
          text-align: center;
          background: #ebebec;
          border-radius: 50%; }
    .single-post .content .container .contenu strong, .single-produit .content .container .contenu strong, .single-projet .content .container .contenu strong, .single-profil .content .container .contenu strong {
      color: #5c6b80; }
    .single-post .content .container .contenu h2, .single-produit .content .container .contenu h2, .single-projet .content .container .contenu h2, .single-profil .content .container .contenu h2 {
      color: #f87200;
      font-size: 1.25rem;
      font-weight: 900;
      text-transform: none;
      margin-top: 2rem;
      margin-bottom: 2rem;
      letter-spacing: 1px; }
      @media (max-width: 991.98px) {
        .single-post .content .container .contenu h2, .single-produit .content .container .contenu h2, .single-projet .content .container .contenu h2, .single-profil .content .container .contenu h2 {
          margin: 1rem 0; } }
    .single-post .content .container .contenu h3, .single-produit .content .container .contenu h3, .single-projet .content .container .contenu h3, .single-profil .content .container .contenu h3 {
      font-size: 1rem;
      line-height: 1.375rem;
      font-weight: 900;
      color: #5c6b80;
      letter-spacing: 1px; }
    .single-post .content .container .contenu .separator, .single-produit .content .container .contenu .separator, .single-projet .content .container .contenu .separator, .single-profil .content .container .contenu .separator {
      background-color: #eee;
      padding: 1.5rem;
      margin-bottom: 1.5rem; }
      .single-post .content .container .contenu .separator p, .single-produit .content .container .contenu .separator p, .single-projet .content .container .contenu .separator p, .single-profil .content .container .contenu .separator p {
        margin: 0;
        color: #5c6b80; }
    .single-post .content .container .contenu li, .single-produit .content .container .contenu li, .single-projet .content .container .contenu li, .single-profil .content .container .contenu li {
      color: #5c6b80; }
      .single-post .content .container .contenu li .img-pic img, .single-produit .content .container .contenu li .img-pic img, .single-projet .content .container .contenu li .img-pic img, .single-profil .content .container .contenu li .img-pic img {
        height: 150px !important;
        max-width: none; }
      .single-post .content .container .contenu li a strong, .single-produit .content .container .contenu li a strong, .single-projet .content .container .contenu li a strong, .single-profil .content .container .contenu li a strong {
        color: #f87200 !important; }
    .single-post .content .container .contenu ul.liste li, .single-produit .content .container .contenu ul.liste li, .single-projet .content .container .contenu ul.liste li, .single-profil .content .container .contenu ul.liste li {
      list-style-type: none; }
    .single-post .content .container .contenu img, .single-produit .content .container .contenu img, .single-projet .content .container .contenu img, .single-profil .content .container .contenu img {
      max-width: 100%;
      height: auto; }
    .single-post .content .container .contenu .postmetas, .single-produit .content .container .contenu .postmetas, .single-projet .content .container .contenu .postmetas, .single-profil .content .container .contenu .postmetas {
      color: #000; }
      .single-post .content .container .contenu .postmetas div, .single-produit .content .container .contenu .postmetas div, .single-projet .content .container .contenu .postmetas div, .single-profil .content .container .contenu .postmetas div {
        margin-left: 2rem; }
        @media (max-width: 991.98px) {
          .single-post .content .container .contenu .postmetas div, .single-produit .content .container .contenu .postmetas div, .single-projet .content .container .contenu .postmetas div, .single-profil .content .container .contenu .postmetas div {
            margin-left: 0; } }
        .single-post .content .container .contenu .postmetas div i, .single-produit .content .container .contenu .postmetas div i, .single-projet .content .container .contenu .postmetas div i, .single-profil .content .container .contenu .postmetas div i {
          margin-right: 10px; }
  .single-post footer, .single-produit footer, .single-projet footer, .single-profil footer {
    margin-top: 0; }

.single-post .separator {
  border-radius: 9px; }

.single-projet .separator {
  color: #000; }
  .single-projet .separator p {
    color: #000 !important; }
    .single-projet .separator p b {
      font-weight: 800; }

#besoins .besoin-link {
  transition: all .5s; }
  #besoins .besoin-link:hover {
    background-color: #eeeeee; }
  #besoins .besoin-link .image_b {
    width: 212px;
    height: 180px; }
    #besoins .besoin-link .image_b img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  #besoins .besoin-link h2 {
    color: #666 !important;
    font-size: 1.125rem !important;
    font-weight: 800 !important;
    line-height: 1.7rem;
    text-transform: none !important;
    text-align: center; }

.produit {
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #e1e1e1; }
  .produit:hover {
    border-color: #f87200;
    filter: none !important; }
  .produit .image {
    width: 190px;
    height: 115px; }
    @media (max-width: 991.98px) {
      .produit .image {
        margin-bottom: 1rem;
        width: 100%;
        height: auto; } }
    .produit .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .produit h3 {
    font-weight: 900;
    font-size: 1.125rem;
    color: #f87200; }
  .produit .cat {
    background-color: #f87200;
    border-radius: 3px;
    padding: 3px 5px;
    color: #fff;
    display: inline-flex;
    font-size: .8rem;
    align-items: center;
    align-self: baseline;
    margin-right: 10px; }
  .produit .description {
    background-color: #f1f1f1;
    padding: 12px 20px;
    color: #161625; }

.price {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.625rem; }

.single-produit .image {
  width: 100%; }
  .single-produit .image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.single-produit .price {
  font-size: 2.188rem; }

.single-produit .date-fin {
  color: #5c6b80; }
  .single-produit .date-fin i {
    margin-right: 5px;
    color: #72797d;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #ebebec;
    border-radius: 50%; }

.single-projet p {
  color: #5c6b80; }

.single-projet .socials a.button, .single-projet .socials body a.btn, body .single-projet .socials a.btn {
  padding: .5rem 1rem !important;
  font-weight: 700 !important;
  font-size: 1rem !important; }

.single-projet .socials a i.fa-search-plus {
  color: #fff !important;
  background-color: transparent !important;
  margin-right: 0 !important; }

.single-projet .home-button, .single-projet body .btn, body .single-projet .btn {
  font-size: 1.5rem;
  padding: 1rem 2.5rem; }

.single-profil .image {
  width: 100%; }
  .single-profil .image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.single-profil .title p {
  color: #5c6b80 !important; }

.single-profil .coords i {
  margin-right: 5px;
  color: #72797d;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: #ebebec;
  border-radius: 50%; }

.single-nos_offres .header-edito, .nos-offres .header-edito {
  background-position: center bottom;
  -webkit-background-size: cover;
  background-size: cover; }
  .single-nos_offres .header-edito .home-button, .single-nos_offres .header-edito body .btn, body .single-nos_offres .header-edito .btn, .nos-offres .header-edito .home-button, .nos-offres .header-edito body .btn, body .nos-offres .header-edito .btn {
    align-items: center;
    display: flex;
    padding: 15px 60px; }
    @media (max-width: 991.98px) {
      .single-nos_offres .header-edito .home-button, .single-nos_offres .header-edito body .btn, body .single-nos_offres .header-edito .btn, .nos-offres .header-edito .home-button, .nos-offres .header-edito body .btn, body .nos-offres .header-edito .btn {
        padding: 15px 30px; } }
    .single-nos_offres .header-edito .home-button i, .single-nos_offres .header-edito body .btn i, body .single-nos_offres .header-edito .btn i, .nos-offres .header-edito .home-button i, .nos-offres .header-edito body .btn i, body .nos-offres .header-edito .btn i {
      color: #fff;
      font-size: 2.75rem;
      margin-right: .5rem; }
      @media (max-width: 991.98px) {
        .single-nos_offres .header-edito .home-button i, .single-nos_offres .header-edito body .btn i, body .single-nos_offres .header-edito .btn i, .nos-offres .header-edito .home-button i, .nos-offres .header-edito body .btn i, body .nos-offres .header-edito .btn i {
          font-size: 2.5rem; } }

.single-nos_offres h1, .single-nos_offres h2.h1, .nos-offres h1, .nos-offres h2.h1 {
  font-family: 'Roboto' !important;
  color: #fff !important;
  font-size: 3.25rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  line-height: 1.2; }
  @media (max-width: 991.98px) {
    .single-nos_offres h1, .single-nos_offres h2.h1, .nos-offres h1, .nos-offres h2.h1 {
      font-size: 1.875rem !important; } }

.single-nos_offres .sous-titre, .nos-offres .sous-titre {
  font-family: "Roboto";
  font-size: 1.5rem;
  font-weight: 400;
  color: #f0f0f0;
  line-height: 2.375rem; }
  @media (max-width: 991.98px) {
    .single-nos_offres .sous-titre, .nos-offres .sous-titre {
      font-size: 1.25rem;
      text-align: center;
      line-height: 1.25rem; } }

.single-nos_offres .container h2, .single-nos_offres .container h3, .nos-offres .container h2, .nos-offres .container h3 {
  color: #f87200;
  font-weight: 900;
  font-size: 1.125rem;
  text-transform: none !important; }

.single-nos_offres .container h2, .nos-offres .container h2 {
  font-size: 1.5rem; }
  .single-nos_offres .container h2.h1, .nos-offres .container h2.h1 {
    color: #000 !important;
    text-transform: uppercase !important;
    margin-bottom: 2.5rem; }

@media (max-width: 991.98px) {
  .single-nos_offres .container .col-md-11, .nos-offres .container .col-md-11 {
    padding-right: 0; } }

.single-nos_offres .container .arguments, .nos-offres .container .arguments {
  margin-bottom: 3.5rem; }
  .single-nos_offres .container .arguments h3, .nos-offres .container .arguments h3 {
    margin-bottom: 1.5rem; }
  .single-nos_offres .container .arguments p, .nos-offres .container .arguments p {
    margin-bottom: 0 !important;
    color: #5c6b80; }
  .single-nos_offres .container .arguments .icone i, .nos-offres .container .arguments .icone i {
    font-size: 3.75rem !important;
    color: #cacccd; }

@media (max-width: 991.98px) {
  .single-nos_offres .container .title h3, .nos-offres .container .title h3 {
    font-size: 1.5rem;
    line-height: 1.5; } }

* {
  box-sizing: border-box; }

