@import url(https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,300;0,400;0,700;1,400&display=swap);@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  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);
    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);
    transform: translate3d(0, -30px, 0);
  }

  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);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  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);
    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);
    transform: translate3d(0, -30px, 0);
  }

  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);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  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;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

  to {
    transform: scale3d(1, 1, 1);
  }
}

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

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

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

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

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

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

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

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

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

  to {
    transform: scale3d(1, 1, 1);
  }
}

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

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

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

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

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

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

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

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

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

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

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

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

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

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

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

  50% {
    transform: translateX(0);
  }
}

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

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

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

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

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

  50% {
    transform: translateX(0);
  }
}

.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% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

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

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

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

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

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

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

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

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

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

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

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

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

  to {
    transform: scale3d(1, 1, 1);
  }
}

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

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

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

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

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

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

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

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

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

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

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

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

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

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

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

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

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

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}

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

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-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;
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

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

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

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

  to {
    opacity: 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;
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

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

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

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

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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;
    transform: translate3d(0, -3000px, 0);
  }

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

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

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    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;
    transform: translate3d(0, -3000px, 0);
  }

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

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

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.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;
    transform: translate3d(-3000px, 0, 0);
  }

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

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

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    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;
    transform: translate3d(-3000px, 0, 0);
  }

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

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

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.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;
    transform: translate3d(3000px, 0, 0);
  }

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

  75% {
    transform: translate3d(10px, 0, 0);
  }

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

  to {
    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;
    transform: translate3d(3000px, 0, 0);
  }

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

  75% {
    transform: translate3d(10px, 0, 0);
  }

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

.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;
    transform: translate3d(0, 3000px, 0);
  }

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

  75% {
    transform: translate3d(0, 10px, 0);
  }

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

  to {
    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;
    transform: translate3d(0, 3000px, 0);
  }

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

  75% {
    transform: translate3d(0, 10px, 0);
  }

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

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

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

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

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

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

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

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

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

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

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

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

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

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    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% {
    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% {
    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% {
    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 {
    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 {
    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% {
    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% {
    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% {
    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 {
    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;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

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

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

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

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

  to {
    transform: perspective(400px);
  }
}

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

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

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

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

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

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

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

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

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

  to {
    transform: perspective(400px);
  }
}

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

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

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

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

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

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

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

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

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

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

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

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

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

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

  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

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

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

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

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

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

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

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

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

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

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

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.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;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

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

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 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;
    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;
    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;
    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);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 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;
    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;
    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;
    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);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 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;
    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;
    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;
    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);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 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;
    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;
    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;
    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);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    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;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -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;
    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;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -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);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

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

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

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

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

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

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    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;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -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;
    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;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -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);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

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

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

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

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

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

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

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

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
.cc-window{opacity:1;transition:opacity 1s ease}.cc-window.cc-invisible{opacity:0}.cc-animate.cc-revoke{transition:transform 1s ease}.cc-animate.cc-revoke.cc-top{transform:translateY(-2em)}.cc-animate.cc-revoke.cc-bottom{transform:translateY(2em)}.cc-animate.cc-revoke.cc-active.cc-top{transform:translateY(0)}.cc-animate.cc-revoke.cc-active.cc-bottom{transform:translateY(0)}.cc-revoke:hover{transform:translateY(0)}.cc-grower{max-height:0;overflow:hidden;transition:max-height 1s}
.cc-revoke,.cc-window{position:fixed;overflow:hidden;box-sizing:border-box;font-family:Helvetica,Calibri,Arial,sans-serif;font-size:16px;line-height:1.5em;display:flex;flex-wrap:nowrap;z-index:9999}.cc-window.cc-static{position:static}.cc-window.cc-floating{padding:2em;max-width:24em;flex-direction:column}.cc-window.cc-banner{padding:1em 1.8em;width:100%;flex-direction:row}.cc-revoke{padding:.5em}.cc-revoke:hover{text-decoration:underline}.cc-header{font-size:18px;font-weight:700}.cc-btn,.cc-close,.cc-link,.cc-revoke{cursor:pointer}.cc-link{opacity:.8;display:inline-block;padding:.2em;text-decoration:underline}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}.cc-highlight .cc-btn:first-child{background-color:transparent;border-color:transparent}.cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover{background-color:transparent;text-decoration:underline}.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}.cc-close:focus,.cc-close:hover{opacity:1}
.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}.cc-revoke.cc-bottom{bottom:0;left:3em;border-top-left-radius:.5em;border-top-right-radius:.5em}.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:1em}.cc-floating>.cc-link{margin-bottom:1em}.cc-floating .cc-message{display:block;margin-bottom:1em}.cc-window.cc-floating .cc-compliance{flex:1 0 auto}.cc-window.cc-banner{align-items:center}.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:0}.cc-banner .cc-message{display:block;flex:1 1 auto;max-width:100%;margin-right:1em}.cc-compliance{display:flex;align-items:center;align-content:space-between}.cc-floating .cc-compliance>.cc-btn{flex:1}.cc-btn+.cc-btn{margin-left:.5em}
@media print{.cc-revoke,.cc-window{display:none}}@media screen and (max-width:900px){.cc-btn{white-space:normal}}@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){.cc-window.cc-top{top:0}.cc-window.cc-bottom{bottom:0}.cc-window.cc-banner,.cc-window.cc-floating,.cc-window.cc-left,.cc-window.cc-right{left:0;right:0}.cc-window.cc-banner{flex-direction:column}.cc-window.cc-banner .cc-compliance{flex:1 1 auto}.cc-window.cc-floating{max-width:none}.cc-window .cc-message{margin-bottom:1em}.cc-window.cc-banner{align-items:unset}.cc-window.cc-banner .cc-message{margin-right:0}}
.cc-floating.cc-theme-classic{padding:1.2em;border-radius:5px}.cc-floating.cc-type-info.cc-theme-classic .cc-compliance{text-align:center;display:inline;flex:none}.cc-theme-classic .cc-btn{border-radius:5px}.cc-theme-classic .cc-btn:last-child{min-width:140px}.cc-floating.cc-type-info.cc-theme-classic .cc-btn{display:inline-block}
.cc-theme-edgeless.cc-window{padding:0}.cc-floating.cc-theme-edgeless .cc-message{margin:2em;margin-bottom:1.5em}.cc-banner.cc-theme-edgeless .cc-btn{margin:0;padding:.8em 1.8em;height:100%}.cc-banner.cc-theme-edgeless .cc-message{margin-left:1em}.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn{margin-left:0}/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px); }
  100% {
    opacity: 0;
    transform: translateY(-40px); } }
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px); }
  100% {
    opacity: 0;
    transform: translateY(-40px); } }
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  30% {
    opacity: 1;
    transform: translateY(0px); } }
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  30% {
    opacity: 1;
    transform: translateY(0px); } }
@-webkit-keyframes pulse {
  0% {
    transform: scale(1); }
  10% {
    transform: scale(1.1); }
  20% {
    transform: scale(1); } }
@keyframes pulse {
  0% {
    transform: scale(1); }
  10% {
    transform: scale(1.1); }
  20% {
    transform: scale(1); } }
.dropzone, .dropzone * {
  box-sizing: border-box; }

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px; }
  .dropzone.dz-clickable {
    cursor: pointer; }
    .dropzone.dz-clickable * {
      cursor: default; }
    .dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
      cursor: pointer; }
  .dropzone.dz-started .dz-message {
    display: none; }
  .dropzone.dz-drag-hover {
    border-style: solid; }
    .dropzone.dz-drag-hover .dz-message {
      opacity: 0.5; }
  .dropzone .dz-message {
    text-align: center;
    margin: 2em 0; }
    .dropzone .dz-message .dz-button {
      background: none;
      color: inherit;
      border: none;
      padding: 0;
      font: inherit;
      cursor: pointer;
      outline: inherit; }
  .dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px; }
    .dropzone .dz-preview:hover {
      z-index: 1000; }
      .dropzone .dz-preview:hover .dz-details {
        opacity: 1; }
    .dropzone .dz-preview.dz-file-preview .dz-image {
      border-radius: 20px;
      background: #999;
      background: linear-gradient(to bottom, #eee, #ddd); }
    .dropzone .dz-preview.dz-file-preview .dz-details {
      opacity: 1; }
    .dropzone .dz-preview.dz-image-preview {
      background: white; }
      .dropzone .dz-preview.dz-image-preview .dz-details {
        transition: opacity 0.2s linear; }
    .dropzone .dz-preview .dz-remove {
      font-size: 14px;
      text-align: center;
      display: block;
      cursor: pointer;
      border: none; }
      .dropzone .dz-preview .dz-remove:hover {
        text-decoration: underline; }
    .dropzone .dz-preview:hover .dz-details {
      opacity: 1; }
    .dropzone .dz-preview .dz-details {
      z-index: 20;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      font-size: 13px;
      min-width: 100%;
      max-width: 100%;
      padding: 2em 1em;
      text-align: center;
      color: rgba(0, 0, 0, 0.9);
      line-height: 150%; }
      .dropzone .dz-preview .dz-details .dz-size {
        margin-bottom: 1em;
        font-size: 16px; }
      .dropzone .dz-preview .dz-details .dz-filename {
        white-space: nowrap; }
        .dropzone .dz-preview .dz-details .dz-filename:hover span {
          border: 1px solid rgba(200, 200, 200, 0.8);
          background-color: rgba(255, 255, 255, 0.8); }
        .dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
          overflow: hidden;
          text-overflow: ellipsis; }
          .dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
            border: 1px solid transparent; }
      .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
        background-color: rgba(255, 255, 255, 0.4);
        padding: 0 0.4em;
        border-radius: 3px; }
    .dropzone .dz-preview:hover .dz-image img {
      transform: scale(1.05, 1.05);
      -webkit-filter: blur(8px);
      filter: blur(8px); }
    .dropzone .dz-preview .dz-image {
      border-radius: 20px;
      overflow: hidden;
      width: 120px;
      height: 120px;
      position: relative;
      display: block;
      z-index: 10; }
      .dropzone .dz-preview .dz-image img {
        display: block; }
    .dropzone .dz-preview.dz-success .dz-success-mark {
      -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview.dz-error .dz-error-mark {
      opacity: 1;
      -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
      animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
      pointer-events: none;
      opacity: 0;
      z-index: 500;
      position: absolute;
      display: block;
      top: 50%;
      left: 50%;
      margin-left: -27px;
      margin-top: -27px; }
      .dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
        display: block;
        width: 54px;
        height: 54px; }
    .dropzone .dz-preview.dz-processing .dz-progress {
      opacity: 1;
      transition: all 0.2s linear; }
    .dropzone .dz-preview.dz-complete .dz-progress {
      opacity: 0;
      transition: opacity 0.4s ease-in; }
    .dropzone .dz-preview:not(.dz-processing) .dz-progress {
      -webkit-animation: pulse 6s ease infinite;
      animation: pulse 6s ease infinite; }
    .dropzone .dz-preview .dz-progress {
      opacity: 1;
      z-index: 1000;
      pointer-events: none;
      position: absolute;
      height: 16px;
      left: 50%;
      top: 50%;
      margin-top: -8px;
      width: 80px;
      margin-left: -40px;
      background: rgba(255, 255, 255, 0.9);
      -webkit-transform: scale(1);
      border-radius: 8px;
      overflow: hidden; }
      .dropzone .dz-preview .dz-progress .dz-upload {
        background: #333;
        background: linear-gradient(to bottom, #666, #444);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 0;
        transition: width 300ms ease-in-out; }
    .dropzone .dz-preview.dz-error .dz-error-message {
      display: block; }
    .dropzone .dz-preview.dz-error:hover .dz-error-message {
      opacity: 1;
      pointer-events: auto; }
    .dropzone .dz-preview .dz-error-message {
      pointer-events: none;
      z-index: 1000;
      position: absolute;
      display: block;
      display: none;
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 8px;
      font-size: 13px;
      top: 130px;
      left: -10px;
      width: 140px;
      background: #be2626;
      background: linear-gradient(to bottom, #be2626, #a92222);
      padding: 0.5em 1.2em;
      color: white; }
      .dropzone .dz-preview .dz-error-message:after {
        content: '';
        position: absolute;
        top: -6px;
        left: 64px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #be2626; }
@charset "UTF-8";
/* Bootstrap Override */
.text-underline {
  text-decoration: underline !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          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: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}
.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(38, 143, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.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(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.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(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 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: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.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(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  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: #007bff;
  border-color: #007bff;
}
.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(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  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: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.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(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  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: #17a2b8;
  border-color: #17a2b8;
}
.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(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 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: #212529;
  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: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  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: #343a40;
  border-color: #343a40;
}
.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(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}
.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  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%;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.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: #007bff;
  background-color: #007bff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

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

.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: #007bff;
  background-color: #007bff;
}
.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(0, 123, 255, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 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(0, 123, 255, 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: #adb5bd;
  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(0, 123, 255, 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: #495057;
  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='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-select:focus::-ms-value {
  color: #495057;
  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: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.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;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  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: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-range:focus {
  outline: none;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: none;
  }
}

.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: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 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: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1356px) {
  .dropdown-menu-xxl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1920px) {
  .dropdown-menu-ql-left {
    right: auto;
    left: 0;
  }

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

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

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

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

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

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  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: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.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: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  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:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #495057;
  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: #212529;
  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: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  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='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: 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: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.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: #28a745;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, 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='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 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: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

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

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.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);
  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 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);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, 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") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.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;
  }
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

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

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.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-ql,
.col-ql-auto, .col-ql-12, .col-ql-11, .col-ql-10, .col-ql-9, .col-ql-8, .col-ql-7, .col-ql-6, .col-ql-5, .col-ql-4, .col-ql-3, .col-ql-2, .col-ql-1, .col-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

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

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

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

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

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1356px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

  .row-cols-xxl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xxl-first {
    order: -1;
  }

  .order-xxl-last {
    order: 13;
  }

  .order-xxl-0 {
    order: 0;
  }

  .order-xxl-1 {
    order: 1;
  }

  .order-xxl-2 {
    order: 2;
  }

  .order-xxl-3 {
    order: 3;
  }

  .order-xxl-4 {
    order: 4;
  }

  .order-xxl-5 {
    order: 5;
  }

  .order-xxl-6 {
    order: 6;
  }

  .order-xxl-7 {
    order: 7;
  }

  .order-xxl-8 {
    order: 8;
  }

  .order-xxl-9 {
    order: 9;
  }

  .order-xxl-10 {
    order: 10;
  }

  .order-xxl-11 {
    order: 11;
  }

  .order-xxl-12 {
    order: 12;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1920px) {
  .col-ql {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

  .row-cols-ql-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-ql-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-ql-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-ql-first {
    order: -1;
  }

  .order-ql-last {
    order: 13;
  }

  .order-ql-0 {
    order: 0;
  }

  .order-ql-1 {
    order: 1;
  }

  .order-ql-2 {
    order: 2;
  }

  .order-ql-3 {
    order: 3;
  }

  .order-ql-4 {
    order: 4;
  }

  .order-ql-5 {
    order: 5;
  }

  .order-ql-6 {
    order: 6;
  }

  .order-ql-7 {
    order: 7;
  }

  .order-ql-8 {
    order: 8;
  }

  .order-ql-9 {
    order: 9;
  }

  .order-ql-10 {
    order: 10;
  }

  .order-ql-11 {
    order: 11;
  }

  .order-ql-12 {
    order: 12;
  }

  .offset-ql-0 {
    margin-left: 0;
  }

  .offset-ql-1 {
    margin-left: 8.3333333333%;
  }

  .offset-ql-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-ql-4 {
    margin-left: 33.3333333333%;
  }

  .offset-ql-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-ql-7 {
    margin-left: 58.3333333333%;
  }

  .offset-ql-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-ql-10 {
    margin-left: 83.3333333333%;
  }

  .offset-ql-11 {
    margin-left: 91.6666666667%;
  }
}
.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 0%;
  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(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.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-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: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  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 > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .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;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

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

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

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

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

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

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

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: 80%;
  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: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "\2014\A0";
}

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

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

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

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

.bg-success {
  background-color: #28a745 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

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

.border-success {
  border-color: #28a745 !important;
}

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

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

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

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

.border-dark {
  border-color: #343a40 !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: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1356px) {
  .d-xxl-none {
    display: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1920px) {
  .d-ql-none {
    display: none !important;
  }

  .d-ql-inline {
    display: inline !important;
  }

  .d-ql-inline-block {
    display: inline-block !important;
  }

  .d-ql-block {
    display: block !important;
  }

  .d-ql-table {
    display: table !important;
  }

  .d-ql-table-row {
    display: table-row !important;
  }

  .d-ql-table-cell {
    display: table-cell !important;
  }

  .d-ql-flex {
    display: flex !important;
  }

  .d-ql-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.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1356px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1920px) {
  .flex-ql-row {
    flex-direction: row !important;
  }

  .flex-ql-column {
    flex-direction: column !important;
  }

  .flex-ql-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-ql-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-ql-wrap {
    flex-wrap: wrap !important;
  }

  .flex-ql-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-ql-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-ql-fill {
    flex: 1 1 auto !important;
  }

  .flex-ql-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-ql-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-ql-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-ql-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-ql-start {
    justify-content: flex-start !important;
  }

  .justify-content-ql-end {
    justify-content: flex-end !important;
  }

  .justify-content-ql-center {
    justify-content: center !important;
  }

  .justify-content-ql-between {
    justify-content: space-between !important;
  }

  .justify-content-ql-around {
    justify-content: space-around !important;
  }

  .align-items-ql-start {
    align-items: flex-start !important;
  }

  .align-items-ql-end {
    align-items: flex-end !important;
  }

  .align-items-ql-center {
    align-items: center !important;
  }

  .align-items-ql-baseline {
    align-items: baseline !important;
  }

  .align-items-ql-stretch {
    align-items: stretch !important;
  }

  .align-content-ql-start {
    align-content: flex-start !important;
  }

  .align-content-ql-end {
    align-content: flex-end !important;
  }

  .align-content-ql-center {
    align-content: center !important;
  }

  .align-content-ql-between {
    align-content: space-between !important;
  }

  .align-content-ql-around {
    align-content: space-around !important;
  }

  .align-content-ql-stretch {
    align-content: stretch !important;
  }

  .align-self-ql-auto {
    align-self: auto !important;
  }

  .align-self-ql-start {
    align-self: flex-start !important;
  }

  .align-self-ql-end {
    align-self: flex-end !important;
  }

  .align-self-ql-center {
    align-self: center !important;
  }

  .align-self-ql-baseline {
    align-self: baseline !important;
  }

  .align-self-ql-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}
@media (min-width: 1356px) {
  .float-xxl-left {
    float: left !important;
  }

  .float-xxl-right {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }
}
@media (min-width: 1920px) {
  .float-ql-left {
    float: left !important;
  }

  .float-ql-right {
    float: right !important;
  }

  .float-ql-none {
    float: 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: -webkit-sticky !important;
  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: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

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

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.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);
}

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

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

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

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

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

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

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

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

  .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-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.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;
  }

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

  .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-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1356px) {
  .m-xxl-0 {
    margin: 0 !important;
  }

  .mt-xxl-0,
.my-xxl-0 {
    margin-top: 0 !important;
  }

  .mr-xxl-0,
.mx-xxl-0 {
    margin-right: 0 !important;
  }

  .mb-xxl-0,
.my-xxl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xxl-0,
.mx-xxl-0 {
    margin-left: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .p-xxl-0 {
    padding: 0 !important;
  }

  .pt-xxl-0,
.py-xxl-0 {
    padding-top: 0 !important;
  }

  .pr-xxl-0,
.px-xxl-0 {
    padding-right: 0 !important;
  }

  .pb-xxl-0,
.py-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xxl-0,
.px-xxl-0 {
    padding-left: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-xxl-auto {
    margin: auto !important;
  }

  .mt-xxl-auto,
.my-xxl-auto {
    margin-top: auto !important;
  }

  .mr-xxl-auto,
.mx-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-auto,
.my-xxl-auto {
    margin-bottom: auto !important;
  }

  .ml-xxl-auto,
.mx-xxl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1920px) {
  .m-ql-0 {
    margin: 0 !important;
  }

  .mt-ql-0,
.my-ql-0 {
    margin-top: 0 !important;
  }

  .mr-ql-0,
.mx-ql-0 {
    margin-right: 0 !important;
  }

  .mb-ql-0,
.my-ql-0 {
    margin-bottom: 0 !important;
  }

  .ml-ql-0,
.mx-ql-0 {
    margin-left: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .p-ql-0 {
    padding: 0 !important;
  }

  .pt-ql-0,
.py-ql-0 {
    padding-top: 0 !important;
  }

  .pr-ql-0,
.px-ql-0 {
    padding-right: 0 !important;
  }

  .pb-ql-0,
.py-ql-0 {
    padding-bottom: 0 !important;
  }

  .pl-ql-0,
.px-ql-0 {
    padding-left: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-ql-auto {
    margin: auto !important;
  }

  .mt-ql-auto,
.my-ql-auto {
    margin-top: auto !important;
  }

  .mr-ql-auto,
.mx-ql-auto {
    margin-right: auto !important;
  }

  .mb-ql-auto,
.my-ql-auto {
    margin-bottom: auto !important;
  }

  .ml-ql-auto,
.mx-ql-auto {
    margin-left: auto !important;
  }
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1356px) {
  .text-xxl-left {
    text-align: left !important;
  }

  .text-xxl-right {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1920px) {
  .text-ql-left {
    text-align: left !important;
  }

  .text-ql-right {
    text-align: right !important;
  }

  .text-ql-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: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

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

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

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

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

/* Animate.css */
/* hierarchy-select */
.hierarchy-select.dropdown .hs-searchbox {
  padding: 0 5px 4px;
}
.hierarchy-select.dropdown .dropdown-menu a[data-level="2"] {
  padding-left: 40px;
}
.hierarchy-select.dropdown .dropdown-menu a[data-level="3"] {
  padding-left: 60px;
}
.hierarchy-select.dropdown .dropdown-menu a[data-level="4"] {
  padding-left: 80px;
}
.hierarchy-select.dropdown .dropdown-menu a[data-level="5"] {
  padding-left: 100px;
}
.hierarchy-select.dropdown .dropdown-menu a[data-level="6"] {
  padding-left: 120px;
}
.hierarchy-select.dropdown .dropdown-menu a[data-level="7"] {
  padding-left: 140px;
}
.hierarchy-select.dropdown .dropdown-menu a[data-level="8"] {
  padding-left: 160px;
}
.hierarchy-select.dropdown .dropdown-menu a[data-level="9"] {
  padding-left: 180px;
}
.hierarchy-select.dropdown .dropdown-menu a[data-level="10"] {
  padding-left: 200px;
}

/* CookieConsent */
/* Swiper */
/* Import config file */
/* Import init file */
html, body {
  line-height: 1.4;
  margin: 0;
  padding: 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1356px) {
  .container {
    max-width: 1326px;
  }
}
.user-select--none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

p {
  line-height: 1.4;
}

a {
  color: #CD0405;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (min-width: 992px) {
  a:hover {
    color: #CD0405 !important;
    text-decoration: none;
  }
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

iframe, img, object {
  max-width: 100%;
}

hr {
  border-color: #CCCCCC;
}

.text-select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mw-100px {
  max-width: 100px !important;
}

.rk-image {
  max-width: 70% !important;
}

.remove-product {
  background-image: url(/images/svg/icon_product_delete.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  height: 15px;
  width: 15px;
  position: absolute;
  right: 20px;
  bottom: -12px;
}

.errorGroup form {
  border-color: rgba(170, 22, 23, 0.24) !important;
  box-shadow: 0 0 18px rgba(170, 22, 23, 0.24) !important;
}

#tab-widget-wrapper {
  display: none;
}

body.showChat #tab-widget-wrapper {
  display: block;
}

/* Base - vars, fonts, etc. */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.form-group {
  margin-bottom: 1.875rem;
}

.form-control {
  border: 1px solid #CCCCCC;
  border-radius: 0;
  color: #000;
}
.form-control:focus {
  background-color: #fff;
  border-color: #CCCCCC;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.24);
  color: #000;
  outline: 0;
}

.dropzone {
  border: 1px solid #CCCCCC;
}

.form-check {
  padding: 0;
}
.form-check__label {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  min-width: 200px;
  padding: 400px 0 0 0;
  position: relative;
}
.form-check__label--inline {
  cursor: pointer;
  line-height: 1;
  padding: 0 0 0 40px;
  position: relative;
}
.form-check__input {
  cursor: pointer;
  height: 0;
  opacity: 0;
  position: absolute;
  width: 0;
}
.form-check__input:checked ~ .form-check__checkmark {
  background-color: #2D963A;
}
.form-check__input:checked ~ .form-check__checkmark::before {
  width: 0;
}
.form-check__input:checked ~ .form-check__checkmark::after {
  display: block;
}
.form-check__checkmark {
  background-color: #fff;
  border: 1px solid #CCCCCC;
  border-radius: 0;
  margin: auto;
  position: absolute;
  transition: all 0.3s ease;
}
.form-check__checkmark::before {
  background-color: #fff;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 2;
  transition: width 0.2s 0.05s ease;
}
.form-check__checkmark::after {
  border: solid #fff;
  border-radius: 0;
  border-width: 0 2px 2px 0;
  bottom: 4px;
  content: "";
  display: none;
  height: 12px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 5px;
  transform: rotate(45deg);
}
.form-check__checkmark--inline {
  bottom: 0;
  height: 25px;
  left: 0;
  top: 0;
  width: 25px;
}

.form-select {
  margin-bottom: 1.875rem;
}
.form-select .dropdown-toggle {
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #CCCCCC;
  border-radius: 0;
  color: #000;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  height: calc(1.5em + 0.75rem + 2px);
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
  position: relative;
  text-align: left;
  width: 100%;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-select .dropdown-toggle:focus {
  background-color: #fff;
  border-color: #CCCCCC;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.24);
  color: #000;
  outline: 0;
}
.form-select .dropdown-toggle[aria-expanded=true]::before {
  right: 15px;
}
.form-select .dropdown-toggle[aria-expanded=true]::after {
  right: 21px;
}
.form-select .dropdown-toggle::before, .form-select .dropdown-toggle::after {
  background-color: #343434;
  border: 0;
  bottom: 0;
  content: "";
  height: 2px;
  margin: auto;
  position: absolute;
  right: 15px;
  top: 0;
  width: 10px;
  transition: all 0.3s ease;
}
.form-select .dropdown-toggle::before {
  right: 21px;
  transform: rotate(45deg);
}
.form-select .dropdown-toggle::after {
  transform: rotate(-45deg);
}

.errorGroup input, .errorGroup button, .errorGroup textarea {
  border-color: rgba(170, 22, 23, 0.24) !important;
  box-shadow: 0 0 18px rgba(170, 22, 23, 0.24) !important;
}

.wine-block label {
  padding-left: 4px;
  padding-right: 4px;
}
.wine-block .form-group, .wine-block .form-select {
  margin-bottom: 10px;
}
.wine-block .dropdown {
  min-width: 0px !important;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?3er1lc");
  src: url("../fonts/icomoon.eot?3er1lc#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?3er1lc") format("truetype"), url("../fonts/icomoon.woff?3er1lc") format("woff"), url("../fonts/icomoon.svg?3er1lc#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn {
  background-color: #CD0405;
  align-items: center;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: -ms-inline-flex;
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 700;
  height: 3.75rem;
  justify-content: center;
  margin: 0 0 0.5rem;
  padding: 0 5rem 0 2rem;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn--small {
  font-size: 14px;
  height: 2rem;
}
.btn:hover {
  background-color: #AA1617;
  color: #fff !important;
}
.btn:hover::before, .btn:hover::after {
  right: 1.5rem;
}
.btn::before, .btn::after {
  background-color: #fff;
  bottom: 0;
  content: "";
  height: 2px;
  margin: auto;
  position: absolute;
  right: 2rem;
  top: 0;
  width: 8px;
  transition: all 0.3s ease;
}
.btn::before {
  top: -4px;
  transform: rotate(45deg);
}
.btn::after {
  top: 4px;
  transform: rotate(-45deg);
}
.btn--transparent {
  background-color: transparent;
  color: #000;
  font-size: 1rem;
}
.btn--transparent:hover {
  background-color: transparent;
  color: #CD0405 !important;
}
.btn--transparent::before, .btn--transparent::after {
  background-color: #CD0405;
}
.btn--reverse:hover::before, .btn--reverse:hover::after {
  right: 1rem;
}
.btn--reverse::before, .btn--reverse::after {
  right: 0;
}
.btn--reverse::before {
  transform: rotate(-45deg);
}
.btn--reverse::after {
  transform: rotate(45deg);
}
.btn--green {
  background-color: #2D963A;
}
.btn--green:hover {
  background-color: #2D963A;
  color: #fff !important;
}
.btn--green:hover::before, .btn--green:hover::after {
  right: 1.5rem;
}

/* Components */
.c-404 {
  position: relative;
  height: 100vh;
}
.c-404 h1 {
  position: relative;
}
.c-404 h1::after {
  background: #007bff;
  border-radius: 2px;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  width: 100px;
}
.c-404__text {
  flex: 0 0 100%;
  margin-top: auto;
  margin-bottom: auto;
}
@media (min-width: 992px) {
  .c-404__text {
    flex: 0 0 50%;
  }
}
.c-404__text__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 41.25rem;
}
.c-404__image {
  height: 100%;
  overflow: hidden;
  width: 50%;
}
.c-404__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.c-alert__item::before {
  background-color: #CD0405;
  border-radius: 50%;
  color: #fff;
  content: "i";
  height: 24px;
  left: 0;
  line-height: 24px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 24px;
}

.c-footer__link {
  display: inline-block;
  position: relative;
}
.c-footer__link:last-child::after {
  display: none;
}
.c-footer__link::after {
  bottom: 0;
  content: "\2022";
  color: #fff;
  height: 26px;
  margin: auto;
  position: absolute;
  right: -4px;
  top: 0;
}

.c-frontpage__hero {
  position: relative;
}
.c-frontpage__hero__left {
  position: relative;
  transform: translateY(-20px);
}
@media (min-width: 992px) {
  .c-frontpage__hero__left {
    position: relative;
    z-index: 2;
    transform: translateY(-40px);
  }
}
.c-frontpage__hero__right {
  background-image: url(/images/hero.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  position: relative;
  transform: translateY(-20px);
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-width: 768px) {
  .c-frontpage__hero__right {
    background-image: url(/images/hero@2x.jpg);
  }
}
@media (min-width: 992px) {
  .c-frontpage__hero__right {
    background-position: right center;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 66.66666667%;
    z-index: 1;
    transform: translateY(0);
  }
}
.c-frontpage__bottom__right {
  background-image: url(/images/frontpage_bottom_image.jpg);
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-width: 768px) {
  .c-frontpage__bottom__right {
    background-image: url(/images/frontpage_bottom_image@2x.jpg);
  }
}
@media (min-width: 992px) {
  .c-frontpage__bottom__right {
    height: 100%;
  }
}

.loader {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  display: flex;
  align-items: center;
}
.loader.show {
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.modal-backdrop {
  background-color: #fff;
  transition: all 0.3s ease;
}
.modal-backdrop.show {
  opacity: 0.9;
}

.modal-dialog {
  transition: all 0.3s ease;
}
.modal.show .modal-dialog {
  transform: translate(0, 25%);
}

.modal-content {
  background-color: #F5F5F5;
  border: 0;
  border-radius: 0;
}

.modal-header, .modal-footer {
  border: 0;
  padding: 1.875rem;
}

.modal-body {
  border: 0;
  padding: 0.625rem 1.875rem;
}

.modal-header .close {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.modal-header .close:focus {
  outline: none;
}
.modal-header .close span {
  font-family: "Nunito Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.c-modify {
  cursor: pointer;
  position: relative;
}
.c-modify:hover .c-modify__badge {
  opacity: 1;
}
.c-modify__badge {
  background-color: #F5F5F5;
  background-image: url(/images/svg/icon_modify_red.svg);
  background-position: 3px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  bottom: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
}
.c-modify__badge::before {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f5f5f5+0,f5f5f5+100&0+0,1+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(245, 245, 245, 0) 0%, whitesmoke 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00f5f5f5", endColorstr="#f5f5f5",GradientType=1 );
  /* IE6-9 */
  content: "";
  height: 100%;
  left: -54px;
  position: absolute;
  width: 54px;
}

.section-success--content {
  min-height: calc(100vh - 500px);
}
@media (min-width: 576px) {
  .section-success--content {
    min-height: calc(100vh - 467px);
  }
}
@media (min-width: 768px) {
  .section-success--content {
    min-height: calc(100vh - 375px);
  }
}
@media (min-width: 992px) {
  .section-success--content {
    min-height: calc(100vh - 456px);
  }
}
@media (min-width: 992px) {
  .section-success--content {
    min-height: calc(100vh - 421px);
  }
}

.spinner {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  -webkit-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  border-radius: 100%;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.dot1 {
  background-color: #2D963A;
}

.dot2 {
  background-color: #CD0405;
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.c-signup__info-icon {
  background-color: #CCCCCC;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  height: 1rem;
  line-height: 1rem;
  text-align: center;
  vertical-align: middle;
  width: 1rem;
  transition: all 0.3s ease;
}
.c-signup__info-icon:hover {
  background-color: #343434;
}

.bs-tooltip-top .tooltip-inner, .bs-tooltip-auto[x-placement^=top] .tooltip-inner {
  background-color: rgba(52, 52, 52, 0.97);
  border: 1px solid #343434 !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  opacity: 1 !important;
  padding: 10px !important;
  text-align: left !important;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #343434 !important;
}
.bs-tooltip-top.fade, .fade.bs-tooltip-auto[x-placement^=top], .bs-tooltip-top.show, .show.bs-tooltip-auto[x-placement^=top] {
  opacity: 1 !important;
}

.dropzone {
  min-height: auto;
  padding: 16px;
}
.dropzone .dz__holder {
  border: 1px dashed #CCCCCC;
}
.dropzone .dz__cloud {
  height: 16px;
  margin: 0 auto 15px;
  width: 24px;
}
.dropzone .dz__cloud img {
  display: block;
  height: auto;
  width: 100%;
}
.dropzone .dz-message {
  margin: 0;
  padding: 40px;
}
.dropzone .file-top {
  transition: opacity 0.3s ease;
}
.dropzone .file-type {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
}
.dropzone .image .file-type {
  background-image: url(/images/svg/icon_file_image.svg);
}
.dropzone .pdf .file-type {
  background-image: url(/images/svg/icon_file_pdf.svg);
}
.dropzone .size strong {
  font-weight: 400;
}
.dropzone .name {
  word-break: break-all;
}
.dropzone .file-delete {
  background-image: url(/images/svg/icon_file_delete.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  height: 15px;
  width: 15px;
}
.dropzone .progress {
  height: 4px;
}
.dropzone .progress .progress-bar {
  background-color: #343434;
  transition: all 0.3s ease;
}
.dropzone .dz-processing .file-top {
  opacity: 0.54;
}
.dropzone .dz-success .file-top, .dropzone .dz-complete .file-top {
  opacity: 1;
}
.dropzone .dz-success .progress, .dropzone .dz-complete .progress {
  background-color: #CCCCCC;
}
.dropzone .dz-success .progress .progress-bar, .dropzone .dz-complete .progress .progress-bar {
  background-color: #2D963A;
}

.c-image-uploaded {
  border: 1px solid #CCCCCC;
}
.c-image-uploaded__icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
}
.c-image-uploaded--file .c-image-uploaded__icon {
  background-image: url(/images/svg/icon_file_pdf_red.svg);
}
.c-image-uploaded--image .c-image-uploaded__icon {
  background-image: url(/images/svg/icon_file_image_red.svg);
}
.c-image-uploaded__text {
  word-break: break-all;
}

.dropdown-item.parent {
  color: #CCCCCC;
}
.dropdown-item.parent:hover {
  background-color: #fff;
  color: #CCCCCC !important;
}
.dropdown-item.child:hover, .dropdown-item.child:focus {
  background-color: #CCCCCC;
}
.dropdown-item.active, .dropdown-item:active {
  background-color: #2D963A;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

/* Helpers */
.h-bg--none {
  background-color: transparent !important;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .h-bgh--none:hover {
    background-color: transparent !important;
    transition: all 0.3s ease;
  }
}

.h-bg--white {
  background-color: #fff !important;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .h-bgh--white:hover {
    background-color: #fff !important;
    transition: all 0.3s ease;
  }
}

.h-bg--gray-lighter {
  background-color: #F5F5F5 !important;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .h-bgh--gray-lighter:hover {
    background-color: #F5F5F5 !important;
    transition: all 0.3s ease;
  }
}

.h-bg--gray-darker {
  background-color: #343434 !important;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .h-bgh--gray-darker:hover {
    background-color: #343434 !important;
    transition: all 0.3s ease;
  }
}

@media screen and (min-width: 0) {
  .h-bg--xs--none {
    background-color: transparent !important;
  }
}

@media screen and (min-width: 0) {
  .h-bg--xs--white {
    background-color: #fff !important;
  }
}

@media screen and (min-width: 0) {
  .h-bg--xs--gray-lighter {
    background-color: #F5F5F5 !important;
  }
}

@media screen and (min-width: 0) {
  .h-bg--xs--gray-darker {
    background-color: #343434 !important;
  }
}

@media screen and (min-width: 576px) {
  .h-bg--sm--none {
    background-color: transparent !important;
  }
}

@media screen and (min-width: 576px) {
  .h-bg--sm--white {
    background-color: #fff !important;
  }
}

@media screen and (min-width: 576px) {
  .h-bg--sm--gray-lighter {
    background-color: #F5F5F5 !important;
  }
}

@media screen and (min-width: 576px) {
  .h-bg--sm--gray-darker {
    background-color: #343434 !important;
  }
}

@media screen and (min-width: 768px) {
  .h-bg--md--none {
    background-color: transparent !important;
  }
}

@media screen and (min-width: 768px) {
  .h-bg--md--white {
    background-color: #fff !important;
  }
}

@media screen and (min-width: 768px) {
  .h-bg--md--gray-lighter {
    background-color: #F5F5F5 !important;
  }
}

@media screen and (min-width: 768px) {
  .h-bg--md--gray-darker {
    background-color: #343434 !important;
  }
}

@media screen and (min-width: 992px) {
  .h-bg--lg--none {
    background-color: transparent !important;
  }
}

@media screen and (min-width: 992px) {
  .h-bg--lg--white {
    background-color: #fff !important;
  }
}

@media screen and (min-width: 992px) {
  .h-bg--lg--gray-lighter {
    background-color: #F5F5F5 !important;
  }
}

@media screen and (min-width: 992px) {
  .h-bg--lg--gray-darker {
    background-color: #343434 !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-bg--xl--none {
    background-color: transparent !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-bg--xl--white {
    background-color: #fff !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-bg--xl--gray-lighter {
    background-color: #F5F5F5 !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-bg--xl--gray-darker {
    background-color: #343434 !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-bg--xxl--none {
    background-color: transparent !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-bg--xxl--white {
    background-color: #fff !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-bg--xxl--gray-lighter {
    background-color: #F5F5F5 !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-bg--xxl--gray-darker {
    background-color: #343434 !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-bg--ql--none {
    background-color: transparent !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-bg--ql--white {
    background-color: #fff !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-bg--ql--gray-lighter {
    background-color: #F5F5F5 !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-bg--ql--gray-darker {
    background-color: #343434 !important;
  }
}

.h-bd-c--none {
  border-width: 0.0625rem;
  border-style: solid;
  border-color: transparent !important;
}

.h-bd-c--white {
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff !important;
}

@media screen and (min-width: 0) {
  .h-bd-c--xs--none {
    border-width: 0.0625rem;
    border-style: solid;
    border-color: transparent !important;
  }
}

@media screen and (min-width: 0) {
  .h-bd-c--xs--white {
    border-width: 0.0625rem;
    border-style: solid;
    border-color: #fff !important;
  }
}

@media screen and (min-width: 576px) {
  .h-bd-c--sm--none {
    border-width: 0.0625rem;
    border-style: solid;
    border-color: transparent !important;
  }
}

@media screen and (min-width: 576px) {
  .h-bd-c--sm--white {
    border-width: 0.0625rem;
    border-style: solid;
    border-color: #fff !important;
  }
}

@media screen and (min-width: 768px) {
  .h-bd-c--md--none {
    border-width: 0.0625rem;
    border-style: solid;
    border-color: transparent !important;
  }
}

@media screen and (min-width: 768px) {
  .h-bd-c--md--white {
    border-width: 0.0625rem;
    border-style: solid;
    border-color: #fff !important;
  }
}

@media screen and (min-width: 992px) {
  .h-bd-c--lg--none {
    border-width: 0.0625rem;
    border-style: solid;
    border-color: transparent !important;
  }
}

@media screen and (min-width: 992px) {
  .h-bd-c--lg--white {
    border-width: 0.0625rem;
    border-style: solid;
    border-color: #fff !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-bd-c--xl--none {
    border-width: 0.0625rem;
    border-style: solid;
    border-color: transparent !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-bd-c--xl--white {
    border-width: 0.0625rem;
    border-style: solid;
    border-color: #fff !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-bd-c--xxl--none {
    border-width: 0.0625rem;
    border-style: solid;
    border-color: transparent !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-bd-c--xxl--white {
    border-width: 0.0625rem;
    border-style: solid;
    border-color: #fff !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-bd-c--ql--none {
    border-width: 0.0625rem;
    border-style: solid;
    border-color: transparent !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-bd-c--ql--white {
    border-width: 0.0625rem;
    border-style: solid;
    border-color: #fff !important;
  }
}

.h-bd-w--1 {
  border-width: 0.0625rem !important;
}

.h-bd-w--2 {
  border-width: 0.125rem !important;
}

@media screen and (min-width: 1) {
  .h-bd-w--xs--1 {
    border-width: 0.0625rem !important;
  }
}

@media screen and (min-width: 2) {
  .h-bd-w--xs--2 {
    border-width: 0.125rem !important;
  }
}

@media screen and (min-width: 1) {
  .h-bd-w--sm--1 {
    border-width: 0.0625rem !important;
  }
}

@media screen and (min-width: 2) {
  .h-bd-w--sm--2 {
    border-width: 0.125rem !important;
  }
}

@media screen and (min-width: 1) {
  .h-bd-w--md--1 {
    border-width: 0.0625rem !important;
  }
}

@media screen and (min-width: 2) {
  .h-bd-w--md--2 {
    border-width: 0.125rem !important;
  }
}

@media screen and (min-width: 1) {
  .h-bd-w--lg--1 {
    border-width: 0.0625rem !important;
  }
}

@media screen and (min-width: 2) {
  .h-bd-w--lg--2 {
    border-width: 0.125rem !important;
  }
}

@media screen and (min-width: 1) {
  .h-bd-w--xl--1 {
    border-width: 0.0625rem !important;
  }
}

@media screen and (min-width: 2) {
  .h-bd-w--xl--2 {
    border-width: 0.125rem !important;
  }
}

@media screen and (min-width: 1) {
  .h-bd-w--xxl--1 {
    border-width: 0.0625rem !important;
  }
}

@media screen and (min-width: 2) {
  .h-bd-w--xxl--2 {
    border-width: 0.125rem !important;
  }
}

@media screen and (min-width: 1) {
  .h-bd-w--ql--1 {
    border-width: 0.0625rem !important;
  }
}

@media screen and (min-width: 2) {
  .h-bd-w--ql--2 {
    border-width: 0.125rem !important;
  }
}

.h-fs--12 {
  font-size: 0.75rem !important;
}

.h-fs--14 {
  font-size: 0.875rem !important;
}

.h-fs--16 {
  font-size: 1rem !important;
}

.h-fs--18 {
  font-size: 1.125rem !important;
}

.h-fs--20 {
  font-size: 1.25rem !important;
}

.h-fs--24 {
  font-size: 1.5rem !important;
}

.h-fs--40 {
  font-size: 2.5rem !important;
}

@media screen and (min-width: 0) {
  .h-fs--xs--12 {
    font-size: 0.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-fs--xs--14 {
    font-size: 0.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-fs--xs--16 {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-fs--xs--18 {
    font-size: 1.125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-fs--xs--20 {
    font-size: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-fs--xs--24 {
    font-size: 1.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-fs--xs--40 {
    font-size: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-fs--sm--12 {
    font-size: 0.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-fs--sm--14 {
    font-size: 0.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-fs--sm--16 {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-fs--sm--18 {
    font-size: 1.125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-fs--sm--20 {
    font-size: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-fs--sm--24 {
    font-size: 1.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-fs--sm--40 {
    font-size: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-fs--md--12 {
    font-size: 0.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-fs--md--14 {
    font-size: 0.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-fs--md--16 {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-fs--md--18 {
    font-size: 1.125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-fs--md--20 {
    font-size: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-fs--md--24 {
    font-size: 1.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-fs--md--40 {
    font-size: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-fs--lg--12 {
    font-size: 0.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-fs--lg--14 {
    font-size: 0.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-fs--lg--16 {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-fs--lg--18 {
    font-size: 1.125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-fs--lg--20 {
    font-size: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-fs--lg--24 {
    font-size: 1.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-fs--lg--40 {
    font-size: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-fs--xl--12 {
    font-size: 0.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-fs--xl--14 {
    font-size: 0.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-fs--xl--16 {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-fs--xl--18 {
    font-size: 1.125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-fs--xl--20 {
    font-size: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-fs--xl--24 {
    font-size: 1.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-fs--xl--40 {
    font-size: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-fs--xxl--12 {
    font-size: 0.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-fs--xxl--14 {
    font-size: 0.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-fs--xxl--16 {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-fs--xxl--18 {
    font-size: 1.125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-fs--xxl--20 {
    font-size: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-fs--xxl--24 {
    font-size: 1.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-fs--xxl--40 {
    font-size: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-fs--ql--12 {
    font-size: 0.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-fs--ql--14 {
    font-size: 0.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-fs--ql--16 {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-fs--ql--18 {
    font-size: 1.125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-fs--ql--20 {
    font-size: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-fs--ql--24 {
    font-size: 1.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-fs--ql--40 {
    font-size: 2.5rem !important;
  }
}

.h-fs--italic {
  font-style: italic !important;
}

.h-fw--300 {
  font-weight: 300 !important;
}

.h-fw--400 {
  font-weight: 400 !important;
}

.h-fw--700 {
  font-weight: 700 !important;
}

@media screen and (min-width: 0) {
  .h-fw--xs--300 {
    font-weight: 300 !important;
  }
}

@media screen and (min-width: 0) {
  .h-fw--xs--400 {
    font-weight: 400 !important;
  }
}

@media screen and (min-width: 0) {
  .h-fw--xs--700 {
    font-weight: 700 !important;
  }
}

@media screen and (min-width: 576px) {
  .h-fw--sm--300 {
    font-weight: 300 !important;
  }
}

@media screen and (min-width: 576px) {
  .h-fw--sm--400 {
    font-weight: 400 !important;
  }
}

@media screen and (min-width: 576px) {
  .h-fw--sm--700 {
    font-weight: 700 !important;
  }
}

@media screen and (min-width: 768px) {
  .h-fw--md--300 {
    font-weight: 300 !important;
  }
}

@media screen and (min-width: 768px) {
  .h-fw--md--400 {
    font-weight: 400 !important;
  }
}

@media screen and (min-width: 768px) {
  .h-fw--md--700 {
    font-weight: 700 !important;
  }
}

@media screen and (min-width: 992px) {
  .h-fw--lg--300 {
    font-weight: 300 !important;
  }
}

@media screen and (min-width: 992px) {
  .h-fw--lg--400 {
    font-weight: 400 !important;
  }
}

@media screen and (min-width: 992px) {
  .h-fw--lg--700 {
    font-weight: 700 !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-fw--xl--300 {
    font-weight: 300 !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-fw--xl--400 {
    font-weight: 400 !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-fw--xl--700 {
    font-weight: 700 !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-fw--xxl--300 {
    font-weight: 300 !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-fw--xxl--400 {
    font-weight: 400 !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-fw--xxl--700 {
    font-weight: 700 !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-fw--ql--300 {
    font-weight: 300 !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-fw--ql--400 {
    font-weight: 400 !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-fw--ql--700 {
    font-weight: 700 !important;
  }
}

.h-r-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.h-lh--16 {
  line-height: 1rem !important;
}

.h-lh--14 {
  line-height: 0.875rem !important;
}

@media screen and (min-width: 0) {
  .h-lh--xs--16 {
    line-height: 1rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-lh--xs--14 {
    line-height: 0.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-lh--sm--16 {
    line-height: 1rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-lh--sm--14 {
    line-height: 0.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-lh--md--16 {
    line-height: 1rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-lh--md--14 {
    line-height: 0.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-lh--lg--16 {
    line-height: 1rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-lh--lg--14 {
    line-height: 0.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-lh--xl--16 {
    line-height: 1rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-lh--xl--14 {
    line-height: 0.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-lh--xxl--16 {
    line-height: 1rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-lh--xxl--14 {
    line-height: 0.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-lh--ql--16 {
    line-height: 1rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-lh--ql--14 {
    line-height: 0.875rem !important;
  }
}

.h-p--0 {
  padding: 0rem !important;
}

.h-px--0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.h-py--0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.h-pt--0 {
  padding-top: 0rem !important;
}

.h-pr--0 {
  padding-right: 0rem !important;
}

.h-pb--0 {
  padding-bottom: 0rem !important;
}

.h-pl--0 {
  padding-left: 0rem !important;
}

.h-m--0 {
  margin: 0rem !important;
}

.h-mx--0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.h-my--0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.h-mt--0 {
  margin-top: 0rem !important;
}

.h-mr--0 {
  margin-right: 0rem !important;
}

.h-mb--0 {
  margin-bottom: 0rem !important;
}

.h-ml--0 {
  margin-left: 0rem !important;
}

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

.h-px--3 {
  padding-left: 0.1875rem !important;
  padding-right: 0.1875rem !important;
}

.h-py--3 {
  padding-top: 0.1875rem !important;
  padding-bottom: 0.1875rem !important;
}

.h-pt--3 {
  padding-top: 0.1875rem !important;
}

.h-pr--3 {
  padding-right: 0.1875rem !important;
}

.h-pb--3 {
  padding-bottom: 0.1875rem !important;
}

.h-pl--3 {
  padding-left: 0.1875rem !important;
}

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

.h-mx--3 {
  margin-left: 0.1875rem !important;
  margin-right: 0.1875rem !important;
}

.h-my--3 {
  margin-top: 0.1875rem !important;
  margin-bottom: 0.1875rem !important;
}

.h-mt--3 {
  margin-top: 0.1875rem !important;
}

.h-mr--3 {
  margin-right: 0.1875rem !important;
}

.h-mb--3 {
  margin-bottom: 0.1875rem !important;
}

.h-ml--3 {
  margin-left: 0.1875rem !important;
}

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

.h-px--5 {
  padding-left: 0.3125rem !important;
  padding-right: 0.3125rem !important;
}

.h-py--5 {
  padding-top: 0.3125rem !important;
  padding-bottom: 0.3125rem !important;
}

.h-pt--5 {
  padding-top: 0.3125rem !important;
}

.h-pr--5 {
  padding-right: 0.3125rem !important;
}

.h-pb--5 {
  padding-bottom: 0.3125rem !important;
}

.h-pl--5 {
  padding-left: 0.3125rem !important;
}

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

.h-mx--5 {
  margin-left: 0.3125rem !important;
  margin-right: 0.3125rem !important;
}

.h-my--5 {
  margin-top: 0.3125rem !important;
  margin-bottom: 0.3125rem !important;
}

.h-mt--5 {
  margin-top: 0.3125rem !important;
}

.h-mr--5 {
  margin-right: 0.3125rem !important;
}

.h-mb--5 {
  margin-bottom: 0.3125rem !important;
}

.h-ml--5 {
  margin-left: 0.3125rem !important;
}

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

.h-px--10 {
  padding-left: 0.625rem !important;
  padding-right: 0.625rem !important;
}

.h-py--10 {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
}

.h-pt--10 {
  padding-top: 0.625rem !important;
}

.h-pr--10 {
  padding-right: 0.625rem !important;
}

.h-pb--10 {
  padding-bottom: 0.625rem !important;
}

.h-pl--10 {
  padding-left: 0.625rem !important;
}

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

.h-mx--10 {
  margin-left: 0.625rem !important;
  margin-right: 0.625rem !important;
}

.h-my--10 {
  margin-top: 0.625rem !important;
  margin-bottom: 0.625rem !important;
}

.h-mt--10 {
  margin-top: 0.625rem !important;
}

.h-mr--10 {
  margin-right: 0.625rem !important;
}

.h-mb--10 {
  margin-bottom: 0.625rem !important;
}

.h-ml--10 {
  margin-left: 0.625rem !important;
}

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

.h-px--15 {
  padding-left: 0.9375rem !important;
  padding-right: 0.9375rem !important;
}

.h-py--15 {
  padding-top: 0.9375rem !important;
  padding-bottom: 0.9375rem !important;
}

.h-pt--15 {
  padding-top: 0.9375rem !important;
}

.h-pr--15 {
  padding-right: 0.9375rem !important;
}

.h-pb--15 {
  padding-bottom: 0.9375rem !important;
}

.h-pl--15 {
  padding-left: 0.9375rem !important;
}

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

.h-mx--15 {
  margin-left: 0.9375rem !important;
  margin-right: 0.9375rem !important;
}

.h-my--15 {
  margin-top: 0.9375rem !important;
  margin-bottom: 0.9375rem !important;
}

.h-mt--15 {
  margin-top: 0.9375rem !important;
}

.h-mr--15 {
  margin-right: 0.9375rem !important;
}

.h-mb--15 {
  margin-bottom: 0.9375rem !important;
}

.h-ml--15 {
  margin-left: 0.9375rem !important;
}

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

.h-px--17 {
  padding-left: 1.0625rem !important;
  padding-right: 1.0625rem !important;
}

.h-py--17 {
  padding-top: 1.0625rem !important;
  padding-bottom: 1.0625rem !important;
}

.h-pt--17 {
  padding-top: 1.0625rem !important;
}

.h-pr--17 {
  padding-right: 1.0625rem !important;
}

.h-pb--17 {
  padding-bottom: 1.0625rem !important;
}

.h-pl--17 {
  padding-left: 1.0625rem !important;
}

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

.h-mx--17 {
  margin-left: 1.0625rem !important;
  margin-right: 1.0625rem !important;
}

.h-my--17 {
  margin-top: 1.0625rem !important;
  margin-bottom: 1.0625rem !important;
}

.h-mt--17 {
  margin-top: 1.0625rem !important;
}

.h-mr--17 {
  margin-right: 1.0625rem !important;
}

.h-mb--17 {
  margin-bottom: 1.0625rem !important;
}

.h-ml--17 {
  margin-left: 1.0625rem !important;
}

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

.h-px--20 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.h-py--20 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.h-pt--20 {
  padding-top: 1.25rem !important;
}

.h-pr--20 {
  padding-right: 1.25rem !important;
}

.h-pb--20 {
  padding-bottom: 1.25rem !important;
}

.h-pl--20 {
  padding-left: 1.25rem !important;
}

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

.h-mx--20 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.h-my--20 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.h-mt--20 {
  margin-top: 1.25rem !important;
}

.h-mr--20 {
  margin-right: 1.25rem !important;
}

.h-mb--20 {
  margin-bottom: 1.25rem !important;
}

.h-ml--20 {
  margin-left: 1.25rem !important;
}

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

.h-px--25 {
  padding-left: 1.5625rem !important;
  padding-right: 1.5625rem !important;
}

.h-py--25 {
  padding-top: 1.5625rem !important;
  padding-bottom: 1.5625rem !important;
}

.h-pt--25 {
  padding-top: 1.5625rem !important;
}

.h-pr--25 {
  padding-right: 1.5625rem !important;
}

.h-pb--25 {
  padding-bottom: 1.5625rem !important;
}

.h-pl--25 {
  padding-left: 1.5625rem !important;
}

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

.h-mx--25 {
  margin-left: 1.5625rem !important;
  margin-right: 1.5625rem !important;
}

.h-my--25 {
  margin-top: 1.5625rem !important;
  margin-bottom: 1.5625rem !important;
}

.h-mt--25 {
  margin-top: 1.5625rem !important;
}

.h-mr--25 {
  margin-right: 1.5625rem !important;
}

.h-mb--25 {
  margin-bottom: 1.5625rem !important;
}

.h-ml--25 {
  margin-left: 1.5625rem !important;
}

.h-p--28 {
  padding: 1.75rem !important;
}

.h-px--28 {
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
}

.h-py--28 {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.h-pt--28 {
  padding-top: 1.75rem !important;
}

.h-pr--28 {
  padding-right: 1.75rem !important;
}

.h-pb--28 {
  padding-bottom: 1.75rem !important;
}

.h-pl--28 {
  padding-left: 1.75rem !important;
}

.h-m--28 {
  margin: 1.75rem !important;
}

.h-mx--28 {
  margin-left: 1.75rem !important;
  margin-right: 1.75rem !important;
}

.h-my--28 {
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}

.h-mt--28 {
  margin-top: 1.75rem !important;
}

.h-mr--28 {
  margin-right: 1.75rem !important;
}

.h-mb--28 {
  margin-bottom: 1.75rem !important;
}

.h-ml--28 {
  margin-left: 1.75rem !important;
}

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

.h-px--30 {
  padding-left: 1.875rem !important;
  padding-right: 1.875rem !important;
}

.h-py--30 {
  padding-top: 1.875rem !important;
  padding-bottom: 1.875rem !important;
}

.h-pt--30 {
  padding-top: 1.875rem !important;
}

.h-pr--30 {
  padding-right: 1.875rem !important;
}

.h-pb--30 {
  padding-bottom: 1.875rem !important;
}

.h-pl--30 {
  padding-left: 1.875rem !important;
}

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

.h-mx--30 {
  margin-left: 1.875rem !important;
  margin-right: 1.875rem !important;
}

.h-my--30 {
  margin-top: 1.875rem !important;
  margin-bottom: 1.875rem !important;
}

.h-mt--30 {
  margin-top: 1.875rem !important;
}

.h-mr--30 {
  margin-right: 1.875rem !important;
}

.h-mb--30 {
  margin-bottom: 1.875rem !important;
}

.h-ml--30 {
  margin-left: 1.875rem !important;
}

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

.h-px--40 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.h-py--40 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.h-pt--40 {
  padding-top: 2.5rem !important;
}

.h-pr--40 {
  padding-right: 2.5rem !important;
}

.h-pb--40 {
  padding-bottom: 2.5rem !important;
}

.h-pl--40 {
  padding-left: 2.5rem !important;
}

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

.h-mx--40 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.h-my--40 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.h-mt--40 {
  margin-top: 2.5rem !important;
}

.h-mr--40 {
  margin-right: 2.5rem !important;
}

.h-mb--40 {
  margin-bottom: 2.5rem !important;
}

.h-ml--40 {
  margin-left: 2.5rem !important;
}

.h-p--60 {
  padding: 3.75rem !important;
}

.h-px--60 {
  padding-left: 3.75rem !important;
  padding-right: 3.75rem !important;
}

.h-py--60 {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}

.h-pt--60 {
  padding-top: 3.75rem !important;
}

.h-pr--60 {
  padding-right: 3.75rem !important;
}

.h-pb--60 {
  padding-bottom: 3.75rem !important;
}

.h-pl--60 {
  padding-left: 3.75rem !important;
}

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

.h-mx--60 {
  margin-left: 3.75rem !important;
  margin-right: 3.75rem !important;
}

.h-my--60 {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}

.h-mt--60 {
  margin-top: 3.75rem !important;
}

.h-mr--60 {
  margin-right: 3.75rem !important;
}

.h-mb--60 {
  margin-bottom: 3.75rem !important;
}

.h-ml--60 {
  margin-left: 3.75rem !important;
}

.h-p--68 {
  padding: 4.25rem !important;
}

.h-px--68 {
  padding-left: 4.25rem !important;
  padding-right: 4.25rem !important;
}

.h-py--68 {
  padding-top: 4.25rem !important;
  padding-bottom: 4.25rem !important;
}

.h-pt--68 {
  padding-top: 4.25rem !important;
}

.h-pr--68 {
  padding-right: 4.25rem !important;
}

.h-pb--68 {
  padding-bottom: 4.25rem !important;
}

.h-pl--68 {
  padding-left: 4.25rem !important;
}

.h-m--68 {
  margin: 4.25rem !important;
}

.h-mx--68 {
  margin-left: 4.25rem !important;
  margin-right: 4.25rem !important;
}

.h-my--68 {
  margin-top: 4.25rem !important;
  margin-bottom: 4.25rem !important;
}

.h-mt--68 {
  margin-top: 4.25rem !important;
}

.h-mr--68 {
  margin-right: 4.25rem !important;
}

.h-mb--68 {
  margin-bottom: 4.25rem !important;
}

.h-ml--68 {
  margin-left: 4.25rem !important;
}

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

.h-px--80 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.h-py--80 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.h-pt--80 {
  padding-top: 5rem !important;
}

.h-pr--80 {
  padding-right: 5rem !important;
}

.h-pb--80 {
  padding-bottom: 5rem !important;
}

.h-pl--80 {
  padding-left: 5rem !important;
}

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

.h-mx--80 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.h-my--80 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.h-mt--80 {
  margin-top: 5rem !important;
}

.h-mr--80 {
  margin-right: 5rem !important;
}

.h-mb--80 {
  margin-bottom: 5rem !important;
}

.h-ml--80 {
  margin-left: 5rem !important;
}

@media screen and (min-width: 0) {
  .h-p--xs--0 {
    padding: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--0 {
    padding-top: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--0 {
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--0 {
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--0 {
    padding-left: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--0 {
    margin: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--0 {
    margin-top: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--0 {
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--0 {
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--0 {
    margin-left: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--3 {
    padding: 0.1875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--3 {
    padding-left: 0.1875rem !important;
    padding-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--3 {
    padding-top: 0.1875rem !important;
    padding-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--3 {
    padding-top: 0.1875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--3 {
    padding-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--3 {
    padding-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--3 {
    padding-left: 0.1875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--3 {
    margin: 0.1875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--3 {
    margin-left: 0.1875rem !important;
    margin-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--3 {
    margin-top: 0.1875rem !important;
    margin-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--3 {
    margin-top: 0.1875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--3 {
    margin-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--3 {
    margin-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--3 {
    margin-left: 0.1875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--5 {
    padding: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--5 {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--5 {
    padding-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--5 {
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--5 {
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--5 {
    padding-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--5 {
    margin: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--5 {
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--5 {
    margin-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--5 {
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--5 {
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--5 {
    margin-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--10 {
    padding: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--10 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--10 {
    padding-top: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--10 {
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--10 {
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--10 {
    padding-left: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--10 {
    margin: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--10 {
    margin-top: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--10 {
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--10 {
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--10 {
    margin-left: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--15 {
    padding: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--15 {
    padding-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--15 {
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--15 {
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--15 {
    padding-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--15 {
    margin: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--15 {
    margin-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--15 {
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--15 {
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--15 {
    margin-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--17 {
    padding: 1.0625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--17 {
    padding-left: 1.0625rem !important;
    padding-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--17 {
    padding-top: 1.0625rem !important;
    padding-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--17 {
    padding-top: 1.0625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--17 {
    padding-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--17 {
    padding-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--17 {
    padding-left: 1.0625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--17 {
    margin: 1.0625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--17 {
    margin-left: 1.0625rem !important;
    margin-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--17 {
    margin-top: 1.0625rem !important;
    margin-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--17 {
    margin-top: 1.0625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--17 {
    margin-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--17 {
    margin-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--17 {
    margin-left: 1.0625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--20 {
    padding: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--20 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--20 {
    padding-top: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--20 {
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--20 {
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--20 {
    padding-left: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--20 {
    margin: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--20 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--20 {
    margin-top: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--20 {
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--20 {
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--20 {
    margin-left: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--25 {
    padding: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--25 {
    padding-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--25 {
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--25 {
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--25 {
    padding-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--25 {
    margin: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--25 {
    margin-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--25 {
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--25 {
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--25 {
    margin-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--28 {
    padding: 1.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--28 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--28 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--28 {
    padding-top: 1.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--28 {
    padding-right: 1.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--28 {
    padding-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--28 {
    padding-left: 1.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--28 {
    margin: 1.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--28 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--28 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--28 {
    margin-top: 1.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--28 {
    margin-right: 1.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--28 {
    margin-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--28 {
    margin-left: 1.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--30 {
    padding: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--30 {
    padding-top: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--30 {
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--30 {
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--30 {
    padding-left: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--30 {
    margin: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--30 {
    margin-top: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--30 {
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--30 {
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--30 {
    margin-left: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--40 {
    padding: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--40 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--40 {
    padding-top: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--40 {
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--40 {
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--40 {
    padding-left: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--40 {
    margin: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--40 {
    margin-top: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--40 {
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--40 {
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--40 {
    margin-left: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--60 {
    padding: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--60 {
    padding-top: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--60 {
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--60 {
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--60 {
    padding-left: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--60 {
    margin: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--60 {
    margin-top: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--60 {
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--60 {
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--60 {
    margin-left: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--68 {
    padding: 4.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--68 {
    padding-left: 4.25rem !important;
    padding-right: 4.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--68 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--68 {
    padding-top: 4.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--68 {
    padding-right: 4.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--68 {
    padding-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--68 {
    padding-left: 4.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--68 {
    margin: 4.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--68 {
    margin-left: 4.25rem !important;
    margin-right: 4.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--68 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--68 {
    margin-top: 4.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--68 {
    margin-right: 4.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--68 {
    margin-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--68 {
    margin-left: 4.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--80 {
    padding: 5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--80 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--80 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--80 {
    padding-top: 5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--80 {
    padding-right: 5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--80 {
    padding-bottom: 5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--80 {
    padding-left: 5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--80 {
    margin: 5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--80 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--80 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--80 {
    margin-top: 5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--80 {
    margin-right: 5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--80 {
    margin-bottom: 5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--80 {
    margin-left: 5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--0 {
    padding: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--0 {
    padding-top: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--0 {
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--0 {
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--0 {
    padding-left: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--0 {
    margin: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--0 {
    margin-top: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--0 {
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--0 {
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--0 {
    margin-left: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--3 {
    padding: 0.1875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--3 {
    padding-left: 0.1875rem !important;
    padding-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--3 {
    padding-top: 0.1875rem !important;
    padding-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--3 {
    padding-top: 0.1875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--3 {
    padding-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--3 {
    padding-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--3 {
    padding-left: 0.1875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--3 {
    margin: 0.1875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--3 {
    margin-left: 0.1875rem !important;
    margin-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--3 {
    margin-top: 0.1875rem !important;
    margin-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--3 {
    margin-top: 0.1875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--3 {
    margin-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--3 {
    margin-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--3 {
    margin-left: 0.1875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--5 {
    padding: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--5 {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--5 {
    padding-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--5 {
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--5 {
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--5 {
    padding-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--5 {
    margin: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--5 {
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--5 {
    margin-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--5 {
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--5 {
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--5 {
    margin-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--10 {
    padding: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--10 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--10 {
    padding-top: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--10 {
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--10 {
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--10 {
    padding-left: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--10 {
    margin: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--10 {
    margin-top: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--10 {
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--10 {
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--10 {
    margin-left: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--15 {
    padding: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--15 {
    padding-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--15 {
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--15 {
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--15 {
    padding-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--15 {
    margin: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--15 {
    margin-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--15 {
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--15 {
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--15 {
    margin-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--17 {
    padding: 1.0625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--17 {
    padding-left: 1.0625rem !important;
    padding-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--17 {
    padding-top: 1.0625rem !important;
    padding-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--17 {
    padding-top: 1.0625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--17 {
    padding-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--17 {
    padding-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--17 {
    padding-left: 1.0625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--17 {
    margin: 1.0625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--17 {
    margin-left: 1.0625rem !important;
    margin-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--17 {
    margin-top: 1.0625rem !important;
    margin-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--17 {
    margin-top: 1.0625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--17 {
    margin-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--17 {
    margin-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--17 {
    margin-left: 1.0625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--20 {
    padding: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--20 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--20 {
    padding-top: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--20 {
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--20 {
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--20 {
    padding-left: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--20 {
    margin: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--20 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--20 {
    margin-top: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--20 {
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--20 {
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--20 {
    margin-left: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--25 {
    padding: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--25 {
    padding-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--25 {
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--25 {
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--25 {
    padding-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--25 {
    margin: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--25 {
    margin-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--25 {
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--25 {
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--25 {
    margin-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--28 {
    padding: 1.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--28 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--28 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--28 {
    padding-top: 1.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--28 {
    padding-right: 1.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--28 {
    padding-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--28 {
    padding-left: 1.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--28 {
    margin: 1.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--28 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--28 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--28 {
    margin-top: 1.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--28 {
    margin-right: 1.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--28 {
    margin-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--28 {
    margin-left: 1.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--30 {
    padding: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--30 {
    padding-top: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--30 {
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--30 {
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--30 {
    padding-left: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--30 {
    margin: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--30 {
    margin-top: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--30 {
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--30 {
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--30 {
    margin-left: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--40 {
    padding: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--40 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--40 {
    padding-top: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--40 {
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--40 {
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--40 {
    padding-left: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--40 {
    margin: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--40 {
    margin-top: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--40 {
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--40 {
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--40 {
    margin-left: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--60 {
    padding: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--60 {
    padding-top: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--60 {
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--60 {
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--60 {
    padding-left: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--60 {
    margin: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--60 {
    margin-top: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--60 {
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--60 {
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--60 {
    margin-left: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--68 {
    padding: 4.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--68 {
    padding-left: 4.25rem !important;
    padding-right: 4.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--68 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--68 {
    padding-top: 4.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--68 {
    padding-right: 4.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--68 {
    padding-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--68 {
    padding-left: 4.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--68 {
    margin: 4.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--68 {
    margin-left: 4.25rem !important;
    margin-right: 4.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--68 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--68 {
    margin-top: 4.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--68 {
    margin-right: 4.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--68 {
    margin-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--68 {
    margin-left: 4.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--80 {
    padding: 5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--80 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--80 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--80 {
    padding-top: 5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--80 {
    padding-right: 5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--80 {
    padding-bottom: 5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--80 {
    padding-left: 5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--80 {
    margin: 5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--80 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--80 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--80 {
    margin-top: 5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--80 {
    margin-right: 5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--80 {
    margin-bottom: 5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--80 {
    margin-left: 5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--0 {
    padding: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--0 {
    padding-top: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--0 {
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--0 {
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--0 {
    padding-left: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--0 {
    margin: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--0 {
    margin-top: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--0 {
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--0 {
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--0 {
    margin-left: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--3 {
    padding: 0.1875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--3 {
    padding-left: 0.1875rem !important;
    padding-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--3 {
    padding-top: 0.1875rem !important;
    padding-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--3 {
    padding-top: 0.1875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--3 {
    padding-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--3 {
    padding-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--3 {
    padding-left: 0.1875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--3 {
    margin: 0.1875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--3 {
    margin-left: 0.1875rem !important;
    margin-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--3 {
    margin-top: 0.1875rem !important;
    margin-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--3 {
    margin-top: 0.1875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--3 {
    margin-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--3 {
    margin-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--3 {
    margin-left: 0.1875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--5 {
    padding: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--5 {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--5 {
    padding-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--5 {
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--5 {
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--5 {
    padding-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--5 {
    margin: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--5 {
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--5 {
    margin-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--5 {
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--5 {
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--5 {
    margin-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--10 {
    padding: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--10 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--10 {
    padding-top: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--10 {
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--10 {
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--10 {
    padding-left: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--10 {
    margin: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--10 {
    margin-top: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--10 {
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--10 {
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--10 {
    margin-left: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--15 {
    padding: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--15 {
    padding-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--15 {
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--15 {
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--15 {
    padding-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--15 {
    margin: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--15 {
    margin-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--15 {
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--15 {
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--15 {
    margin-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--17 {
    padding: 1.0625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--17 {
    padding-left: 1.0625rem !important;
    padding-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--17 {
    padding-top: 1.0625rem !important;
    padding-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--17 {
    padding-top: 1.0625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--17 {
    padding-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--17 {
    padding-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--17 {
    padding-left: 1.0625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--17 {
    margin: 1.0625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--17 {
    margin-left: 1.0625rem !important;
    margin-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--17 {
    margin-top: 1.0625rem !important;
    margin-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--17 {
    margin-top: 1.0625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--17 {
    margin-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--17 {
    margin-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--17 {
    margin-left: 1.0625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--20 {
    padding: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--20 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--20 {
    padding-top: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--20 {
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--20 {
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--20 {
    padding-left: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--20 {
    margin: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--20 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--20 {
    margin-top: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--20 {
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--20 {
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--20 {
    margin-left: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--25 {
    padding: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--25 {
    padding-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--25 {
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--25 {
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--25 {
    padding-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--25 {
    margin: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--25 {
    margin-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--25 {
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--25 {
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--25 {
    margin-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--28 {
    padding: 1.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--28 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--28 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--28 {
    padding-top: 1.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--28 {
    padding-right: 1.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--28 {
    padding-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--28 {
    padding-left: 1.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--28 {
    margin: 1.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--28 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--28 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--28 {
    margin-top: 1.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--28 {
    margin-right: 1.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--28 {
    margin-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--28 {
    margin-left: 1.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--30 {
    padding: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--30 {
    padding-top: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--30 {
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--30 {
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--30 {
    padding-left: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--30 {
    margin: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--30 {
    margin-top: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--30 {
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--30 {
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--30 {
    margin-left: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--40 {
    padding: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--40 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--40 {
    padding-top: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--40 {
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--40 {
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--40 {
    padding-left: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--40 {
    margin: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--40 {
    margin-top: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--40 {
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--40 {
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--40 {
    margin-left: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--60 {
    padding: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--60 {
    padding-top: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--60 {
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--60 {
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--60 {
    padding-left: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--60 {
    margin: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--60 {
    margin-top: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--60 {
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--60 {
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--60 {
    margin-left: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--68 {
    padding: 4.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--68 {
    padding-left: 4.25rem !important;
    padding-right: 4.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--68 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--68 {
    padding-top: 4.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--68 {
    padding-right: 4.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--68 {
    padding-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--68 {
    padding-left: 4.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--68 {
    margin: 4.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--68 {
    margin-left: 4.25rem !important;
    margin-right: 4.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--68 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--68 {
    margin-top: 4.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--68 {
    margin-right: 4.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--68 {
    margin-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--68 {
    margin-left: 4.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--80 {
    padding: 5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--80 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--80 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--80 {
    padding-top: 5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--80 {
    padding-right: 5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--80 {
    padding-bottom: 5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--80 {
    padding-left: 5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--80 {
    margin: 5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--80 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--80 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--80 {
    margin-top: 5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--80 {
    margin-right: 5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--80 {
    margin-bottom: 5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--80 {
    margin-left: 5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--0 {
    padding: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--0 {
    padding-top: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--0 {
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--0 {
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--0 {
    padding-left: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--0 {
    margin: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--0 {
    margin-top: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--0 {
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--0 {
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--0 {
    margin-left: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--3 {
    padding: 0.1875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--3 {
    padding-left: 0.1875rem !important;
    padding-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--3 {
    padding-top: 0.1875rem !important;
    padding-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--3 {
    padding-top: 0.1875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--3 {
    padding-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--3 {
    padding-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--3 {
    padding-left: 0.1875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--3 {
    margin: 0.1875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--3 {
    margin-left: 0.1875rem !important;
    margin-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--3 {
    margin-top: 0.1875rem !important;
    margin-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--3 {
    margin-top: 0.1875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--3 {
    margin-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--3 {
    margin-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--3 {
    margin-left: 0.1875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--5 {
    padding: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--5 {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--5 {
    padding-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--5 {
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--5 {
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--5 {
    padding-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--5 {
    margin: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--5 {
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--5 {
    margin-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--5 {
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--5 {
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--5 {
    margin-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--10 {
    padding: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--10 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--10 {
    padding-top: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--10 {
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--10 {
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--10 {
    padding-left: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--10 {
    margin: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--10 {
    margin-top: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--10 {
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--10 {
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--10 {
    margin-left: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--15 {
    padding: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--15 {
    padding-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--15 {
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--15 {
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--15 {
    padding-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--15 {
    margin: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--15 {
    margin-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--15 {
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--15 {
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--15 {
    margin-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--17 {
    padding: 1.0625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--17 {
    padding-left: 1.0625rem !important;
    padding-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--17 {
    padding-top: 1.0625rem !important;
    padding-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--17 {
    padding-top: 1.0625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--17 {
    padding-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--17 {
    padding-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--17 {
    padding-left: 1.0625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--17 {
    margin: 1.0625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--17 {
    margin-left: 1.0625rem !important;
    margin-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--17 {
    margin-top: 1.0625rem !important;
    margin-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--17 {
    margin-top: 1.0625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--17 {
    margin-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--17 {
    margin-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--17 {
    margin-left: 1.0625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--20 {
    padding: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--20 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--20 {
    padding-top: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--20 {
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--20 {
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--20 {
    padding-left: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--20 {
    margin: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--20 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--20 {
    margin-top: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--20 {
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--20 {
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--20 {
    margin-left: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--25 {
    padding: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--25 {
    padding-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--25 {
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--25 {
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--25 {
    padding-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--25 {
    margin: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--25 {
    margin-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--25 {
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--25 {
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--25 {
    margin-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--28 {
    padding: 1.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--28 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--28 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--28 {
    padding-top: 1.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--28 {
    padding-right: 1.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--28 {
    padding-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--28 {
    padding-left: 1.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--28 {
    margin: 1.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--28 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--28 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--28 {
    margin-top: 1.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--28 {
    margin-right: 1.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--28 {
    margin-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--28 {
    margin-left: 1.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--30 {
    padding: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--30 {
    padding-top: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--30 {
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--30 {
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--30 {
    padding-left: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--30 {
    margin: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--30 {
    margin-top: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--30 {
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--30 {
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--30 {
    margin-left: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--40 {
    padding: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--40 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--40 {
    padding-top: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--40 {
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--40 {
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--40 {
    padding-left: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--40 {
    margin: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--40 {
    margin-top: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--40 {
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--40 {
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--40 {
    margin-left: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--60 {
    padding: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--60 {
    padding-top: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--60 {
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--60 {
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--60 {
    padding-left: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--60 {
    margin: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--60 {
    margin-top: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--60 {
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--60 {
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--60 {
    margin-left: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--68 {
    padding: 4.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--68 {
    padding-left: 4.25rem !important;
    padding-right: 4.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--68 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--68 {
    padding-top: 4.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--68 {
    padding-right: 4.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--68 {
    padding-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--68 {
    padding-left: 4.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--68 {
    margin: 4.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--68 {
    margin-left: 4.25rem !important;
    margin-right: 4.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--68 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--68 {
    margin-top: 4.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--68 {
    margin-right: 4.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--68 {
    margin-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--68 {
    margin-left: 4.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--80 {
    padding: 5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--80 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--80 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--80 {
    padding-top: 5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--80 {
    padding-right: 5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--80 {
    padding-bottom: 5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--80 {
    padding-left: 5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--80 {
    margin: 5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--80 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--80 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--80 {
    margin-top: 5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--80 {
    margin-right: 5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--80 {
    margin-bottom: 5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--80 {
    margin-left: 5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--0 {
    padding: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--0 {
    padding-top: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--0 {
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--0 {
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--0 {
    padding-left: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--0 {
    margin: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--0 {
    margin-top: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--0 {
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--0 {
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--0 {
    margin-left: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--3 {
    padding: 0.1875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--3 {
    padding-left: 0.1875rem !important;
    padding-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--3 {
    padding-top: 0.1875rem !important;
    padding-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--3 {
    padding-top: 0.1875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--3 {
    padding-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--3 {
    padding-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--3 {
    padding-left: 0.1875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--3 {
    margin: 0.1875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--3 {
    margin-left: 0.1875rem !important;
    margin-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--3 {
    margin-top: 0.1875rem !important;
    margin-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--3 {
    margin-top: 0.1875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--3 {
    margin-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--3 {
    margin-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--3 {
    margin-left: 0.1875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--5 {
    padding: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--5 {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--5 {
    padding-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--5 {
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--5 {
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--5 {
    padding-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--5 {
    margin: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--5 {
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--5 {
    margin-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--5 {
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--5 {
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--5 {
    margin-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--10 {
    padding: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--10 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--10 {
    padding-top: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--10 {
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--10 {
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--10 {
    padding-left: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--10 {
    margin: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--10 {
    margin-top: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--10 {
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--10 {
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--10 {
    margin-left: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--15 {
    padding: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--15 {
    padding-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--15 {
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--15 {
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--15 {
    padding-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--15 {
    margin: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--15 {
    margin-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--15 {
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--15 {
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--15 {
    margin-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--17 {
    padding: 1.0625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--17 {
    padding-left: 1.0625rem !important;
    padding-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--17 {
    padding-top: 1.0625rem !important;
    padding-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--17 {
    padding-top: 1.0625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--17 {
    padding-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--17 {
    padding-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--17 {
    padding-left: 1.0625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--17 {
    margin: 1.0625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--17 {
    margin-left: 1.0625rem !important;
    margin-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--17 {
    margin-top: 1.0625rem !important;
    margin-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--17 {
    margin-top: 1.0625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--17 {
    margin-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--17 {
    margin-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--17 {
    margin-left: 1.0625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--20 {
    padding: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--20 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--20 {
    padding-top: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--20 {
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--20 {
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--20 {
    padding-left: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--20 {
    margin: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--20 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--20 {
    margin-top: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--20 {
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--20 {
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--20 {
    margin-left: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--25 {
    padding: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--25 {
    padding-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--25 {
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--25 {
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--25 {
    padding-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--25 {
    margin: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--25 {
    margin-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--25 {
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--25 {
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--25 {
    margin-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--28 {
    padding: 1.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--28 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--28 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--28 {
    padding-top: 1.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--28 {
    padding-right: 1.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--28 {
    padding-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--28 {
    padding-left: 1.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--28 {
    margin: 1.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--28 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--28 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--28 {
    margin-top: 1.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--28 {
    margin-right: 1.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--28 {
    margin-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--28 {
    margin-left: 1.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--30 {
    padding: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--30 {
    padding-top: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--30 {
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--30 {
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--30 {
    padding-left: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--30 {
    margin: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--30 {
    margin-top: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--30 {
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--30 {
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--30 {
    margin-left: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--40 {
    padding: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--40 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--40 {
    padding-top: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--40 {
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--40 {
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--40 {
    padding-left: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--40 {
    margin: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--40 {
    margin-top: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--40 {
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--40 {
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--40 {
    margin-left: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--60 {
    padding: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--60 {
    padding-top: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--60 {
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--60 {
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--60 {
    padding-left: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--60 {
    margin: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--60 {
    margin-top: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--60 {
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--60 {
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--60 {
    margin-left: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--68 {
    padding: 4.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--68 {
    padding-left: 4.25rem !important;
    padding-right: 4.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--68 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--68 {
    padding-top: 4.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--68 {
    padding-right: 4.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--68 {
    padding-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--68 {
    padding-left: 4.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--68 {
    margin: 4.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--68 {
    margin-left: 4.25rem !important;
    margin-right: 4.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--68 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--68 {
    margin-top: 4.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--68 {
    margin-right: 4.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--68 {
    margin-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--68 {
    margin-left: 4.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--80 {
    padding: 5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--80 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--80 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--80 {
    padding-top: 5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--80 {
    padding-right: 5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--80 {
    padding-bottom: 5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--80 {
    padding-left: 5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--80 {
    margin: 5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--80 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--80 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--80 {
    margin-top: 5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--80 {
    margin-right: 5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--80 {
    margin-bottom: 5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--80 {
    margin-left: 5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--0 {
    padding: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--0 {
    padding-top: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--0 {
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--0 {
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--0 {
    padding-left: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--0 {
    margin: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--0 {
    margin-top: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--0 {
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--0 {
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--0 {
    margin-left: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--3 {
    padding: 0.1875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--3 {
    padding-left: 0.1875rem !important;
    padding-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--3 {
    padding-top: 0.1875rem !important;
    padding-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--3 {
    padding-top: 0.1875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--3 {
    padding-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--3 {
    padding-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--3 {
    padding-left: 0.1875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--3 {
    margin: 0.1875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--3 {
    margin-left: 0.1875rem !important;
    margin-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--3 {
    margin-top: 0.1875rem !important;
    margin-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--3 {
    margin-top: 0.1875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--3 {
    margin-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--3 {
    margin-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--3 {
    margin-left: 0.1875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--5 {
    padding: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--5 {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--5 {
    padding-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--5 {
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--5 {
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--5 {
    padding-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--5 {
    margin: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--5 {
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--5 {
    margin-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--5 {
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--5 {
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--5 {
    margin-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--10 {
    padding: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--10 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--10 {
    padding-top: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--10 {
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--10 {
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--10 {
    padding-left: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--10 {
    margin: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--10 {
    margin-top: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--10 {
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--10 {
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--10 {
    margin-left: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--15 {
    padding: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--15 {
    padding-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--15 {
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--15 {
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--15 {
    padding-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--15 {
    margin: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--15 {
    margin-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--15 {
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--15 {
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--15 {
    margin-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--17 {
    padding: 1.0625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--17 {
    padding-left: 1.0625rem !important;
    padding-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--17 {
    padding-top: 1.0625rem !important;
    padding-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--17 {
    padding-top: 1.0625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--17 {
    padding-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--17 {
    padding-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--17 {
    padding-left: 1.0625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--17 {
    margin: 1.0625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--17 {
    margin-left: 1.0625rem !important;
    margin-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--17 {
    margin-top: 1.0625rem !important;
    margin-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--17 {
    margin-top: 1.0625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--17 {
    margin-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--17 {
    margin-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--17 {
    margin-left: 1.0625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--20 {
    padding: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--20 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--20 {
    padding-top: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--20 {
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--20 {
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--20 {
    padding-left: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--20 {
    margin: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--20 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--20 {
    margin-top: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--20 {
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--20 {
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--20 {
    margin-left: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--25 {
    padding: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--25 {
    padding-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--25 {
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--25 {
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--25 {
    padding-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--25 {
    margin: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--25 {
    margin-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--25 {
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--25 {
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--25 {
    margin-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--28 {
    padding: 1.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--28 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--28 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--28 {
    padding-top: 1.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--28 {
    padding-right: 1.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--28 {
    padding-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--28 {
    padding-left: 1.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--28 {
    margin: 1.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--28 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--28 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--28 {
    margin-top: 1.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--28 {
    margin-right: 1.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--28 {
    margin-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--28 {
    margin-left: 1.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--30 {
    padding: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--30 {
    padding-top: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--30 {
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--30 {
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--30 {
    padding-left: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--30 {
    margin: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--30 {
    margin-top: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--30 {
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--30 {
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--30 {
    margin-left: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--40 {
    padding: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--40 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--40 {
    padding-top: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--40 {
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--40 {
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--40 {
    padding-left: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--40 {
    margin: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--40 {
    margin-top: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--40 {
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--40 {
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--40 {
    margin-left: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--60 {
    padding: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--60 {
    padding-top: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--60 {
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--60 {
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--60 {
    padding-left: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--60 {
    margin: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--60 {
    margin-top: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--60 {
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--60 {
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--60 {
    margin-left: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--68 {
    padding: 4.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--68 {
    padding-left: 4.25rem !important;
    padding-right: 4.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--68 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--68 {
    padding-top: 4.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--68 {
    padding-right: 4.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--68 {
    padding-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--68 {
    padding-left: 4.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--68 {
    margin: 4.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--68 {
    margin-left: 4.25rem !important;
    margin-right: 4.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--68 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--68 {
    margin-top: 4.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--68 {
    margin-right: 4.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--68 {
    margin-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--68 {
    margin-left: 4.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--80 {
    padding: 5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--80 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--80 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--80 {
    padding-top: 5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--80 {
    padding-right: 5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--80 {
    padding-bottom: 5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--80 {
    padding-left: 5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--80 {
    margin: 5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--80 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--80 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--80 {
    margin-top: 5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--80 {
    margin-right: 5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--80 {
    margin-bottom: 5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--80 {
    margin-left: 5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--ql--0 {
    padding: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--ql--0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--ql--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--ql--0 {
    padding-top: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--ql--0 {
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--ql--0 {
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--ql--0 {
    padding-left: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--ql--0 {
    margin: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--ql--0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--ql--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--ql--0 {
    margin-top: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--ql--0 {
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--ql--0 {
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--ql--0 {
    margin-left: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--ql--3 {
    padding: 0.1875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--ql--3 {
    padding-left: 0.1875rem !important;
    padding-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--ql--3 {
    padding-top: 0.1875rem !important;
    padding-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--ql--3 {
    padding-top: 0.1875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--ql--3 {
    padding-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--ql--3 {
    padding-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--ql--3 {
    padding-left: 0.1875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--ql--3 {
    margin: 0.1875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--ql--3 {
    margin-left: 0.1875rem !important;
    margin-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--ql--3 {
    margin-top: 0.1875rem !important;
    margin-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--ql--3 {
    margin-top: 0.1875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--ql--3 {
    margin-right: 0.1875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--ql--3 {
    margin-bottom: 0.1875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--ql--3 {
    margin-left: 0.1875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--ql--5 {
    padding: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--ql--5 {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--ql--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--ql--5 {
    padding-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--ql--5 {
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--ql--5 {
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--ql--5 {
    padding-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--ql--5 {
    margin: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--ql--5 {
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--ql--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--ql--5 {
    margin-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--ql--5 {
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--ql--5 {
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--ql--5 {
    margin-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--ql--10 {
    padding: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--ql--10 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--ql--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--ql--10 {
    padding-top: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--ql--10 {
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--ql--10 {
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--ql--10 {
    padding-left: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--ql--10 {
    margin: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--ql--10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--ql--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--ql--10 {
    margin-top: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--ql--10 {
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--ql--10 {
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--ql--10 {
    margin-left: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--ql--15 {
    padding: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--ql--15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--ql--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--ql--15 {
    padding-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--ql--15 {
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--ql--15 {
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--ql--15 {
    padding-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--ql--15 {
    margin: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--ql--15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--ql--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--ql--15 {
    margin-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--ql--15 {
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--ql--15 {
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--ql--15 {
    margin-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--ql--17 {
    padding: 1.0625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--ql--17 {
    padding-left: 1.0625rem !important;
    padding-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--ql--17 {
    padding-top: 1.0625rem !important;
    padding-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--ql--17 {
    padding-top: 1.0625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--ql--17 {
    padding-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--ql--17 {
    padding-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--ql--17 {
    padding-left: 1.0625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--ql--17 {
    margin: 1.0625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--ql--17 {
    margin-left: 1.0625rem !important;
    margin-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--ql--17 {
    margin-top: 1.0625rem !important;
    margin-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--ql--17 {
    margin-top: 1.0625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--ql--17 {
    margin-right: 1.0625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--ql--17 {
    margin-bottom: 1.0625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--ql--17 {
    margin-left: 1.0625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--ql--20 {
    padding: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--ql--20 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--ql--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--ql--20 {
    padding-top: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--ql--20 {
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--ql--20 {
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--ql--20 {
    padding-left: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--ql--20 {
    margin: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--ql--20 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--ql--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--ql--20 {
    margin-top: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--ql--20 {
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--ql--20 {
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--ql--20 {
    margin-left: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--ql--25 {
    padding: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--ql--25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--ql--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--ql--25 {
    padding-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--ql--25 {
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--ql--25 {
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--ql--25 {
    padding-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--ql--25 {
    margin: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--ql--25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--ql--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--ql--25 {
    margin-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--ql--25 {
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--ql--25 {
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--ql--25 {
    margin-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--ql--28 {
    padding: 1.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--ql--28 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--ql--28 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--ql--28 {
    padding-top: 1.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--ql--28 {
    padding-right: 1.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--ql--28 {
    padding-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--ql--28 {
    padding-left: 1.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--ql--28 {
    margin: 1.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--ql--28 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--ql--28 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--ql--28 {
    margin-top: 1.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--ql--28 {
    margin-right: 1.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--ql--28 {
    margin-bottom: 1.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--ql--28 {
    margin-left: 1.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--ql--30 {
    padding: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--ql--30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--ql--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--ql--30 {
    padding-top: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--ql--30 {
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--ql--30 {
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--ql--30 {
    padding-left: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--ql--30 {
    margin: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--ql--30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--ql--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--ql--30 {
    margin-top: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--ql--30 {
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--ql--30 {
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--ql--30 {
    margin-left: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--ql--40 {
    padding: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--ql--40 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--ql--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--ql--40 {
    padding-top: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--ql--40 {
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--ql--40 {
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--ql--40 {
    padding-left: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--ql--40 {
    margin: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--ql--40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--ql--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--ql--40 {
    margin-top: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--ql--40 {
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--ql--40 {
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--ql--40 {
    margin-left: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--ql--60 {
    padding: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--ql--60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--ql--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--ql--60 {
    padding-top: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--ql--60 {
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--ql--60 {
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--ql--60 {
    padding-left: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--ql--60 {
    margin: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--ql--60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--ql--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--ql--60 {
    margin-top: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--ql--60 {
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--ql--60 {
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--ql--60 {
    margin-left: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--ql--68 {
    padding: 4.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--ql--68 {
    padding-left: 4.25rem !important;
    padding-right: 4.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--ql--68 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--ql--68 {
    padding-top: 4.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--ql--68 {
    padding-right: 4.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--ql--68 {
    padding-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--ql--68 {
    padding-left: 4.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--ql--68 {
    margin: 4.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--ql--68 {
    margin-left: 4.25rem !important;
    margin-right: 4.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--ql--68 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--ql--68 {
    margin-top: 4.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--ql--68 {
    margin-right: 4.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--ql--68 {
    margin-bottom: 4.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--ql--68 {
    margin-left: 4.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--ql--80 {
    padding: 5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--ql--80 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--ql--80 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--ql--80 {
    padding-top: 5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--ql--80 {
    padding-right: 5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--ql--80 {
    padding-bottom: 5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--ql--80 {
    padding-left: 5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--ql--80 {
    margin: 5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--ql--80 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--ql--80 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--ql--80 {
    margin-top: 5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--ql--80 {
    margin-right: 5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--ql--80 {
    margin-bottom: 5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--ql--80 {
    margin-left: 5rem !important;
  }
}

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

@media (min-width: 992px) {
  .h-colorh--white:hover {
    color: #fff !important;
  }
}

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

@media (min-width: 992px) {
  .h-colorh--black:hover {
    color: #000 !important;
  }
}

.h-color--green {
  color: #2D963A !important;
}

@media (min-width: 992px) {
  .h-colorh--green:hover {
    color: #2D963A !important;
  }
}

.h-color--red {
  color: #CD0405 !important;
}

@media (min-width: 992px) {
  .h-colorh--red:hover {
    color: #CD0405 !important;
  }
}

.h-color--red-dark {
  color: #AA1617 !important;
}

@media (min-width: 992px) {
  .h-colorh--red-dark:hover {
    color: #AA1617 !important;
  }
}

.h-color--gray-darker {
  color: #343434 !important;
}

@media (min-width: 992px) {
  .h-colorh--gray-darker:hover {
    color: #343434 !important;
  }
}

@media screen and (min-width: 0) {
  .h-color--xs--white {
    color: #fff !important;
  }
}

@media screen and (min-width: 0) {
  .h-color--xs--black {
    color: #000 !important;
  }
}

@media screen and (min-width: 0) {
  .h-color--xs--green {
    color: #2D963A !important;
  }
}

@media screen and (min-width: 0) {
  .h-color--xs--red {
    color: #CD0405 !important;
  }
}

@media screen and (min-width: 0) {
  .h-color--xs--red-dark {
    color: #AA1617 !important;
  }
}

@media screen and (min-width: 0) {
  .h-color--xs--gray-darker {
    color: #343434 !important;
  }
}

@media screen and (min-width: 576px) {
  .h-color--sm--white {
    color: #fff !important;
  }
}

@media screen and (min-width: 576px) {
  .h-color--sm--black {
    color: #000 !important;
  }
}

@media screen and (min-width: 576px) {
  .h-color--sm--green {
    color: #2D963A !important;
  }
}

@media screen and (min-width: 576px) {
  .h-color--sm--red {
    color: #CD0405 !important;
  }
}

@media screen and (min-width: 576px) {
  .h-color--sm--red-dark {
    color: #AA1617 !important;
  }
}

@media screen and (min-width: 576px) {
  .h-color--sm--gray-darker {
    color: #343434 !important;
  }
}

@media screen and (min-width: 768px) {
  .h-color--md--white {
    color: #fff !important;
  }
}

@media screen and (min-width: 768px) {
  .h-color--md--black {
    color: #000 !important;
  }
}

@media screen and (min-width: 768px) {
  .h-color--md--green {
    color: #2D963A !important;
  }
}

@media screen and (min-width: 768px) {
  .h-color--md--red {
    color: #CD0405 !important;
  }
}

@media screen and (min-width: 768px) {
  .h-color--md--red-dark {
    color: #AA1617 !important;
  }
}

@media screen and (min-width: 768px) {
  .h-color--md--gray-darker {
    color: #343434 !important;
  }
}

@media screen and (min-width: 992px) {
  .h-color--lg--white {
    color: #fff !important;
  }
}

@media screen and (min-width: 992px) {
  .h-color--lg--black {
    color: #000 !important;
  }
}

@media screen and (min-width: 992px) {
  .h-color--lg--green {
    color: #2D963A !important;
  }
}

@media screen and (min-width: 992px) {
  .h-color--lg--red {
    color: #CD0405 !important;
  }
}

@media screen and (min-width: 992px) {
  .h-color--lg--red-dark {
    color: #AA1617 !important;
  }
}

@media screen and (min-width: 992px) {
  .h-color--lg--gray-darker {
    color: #343434 !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-color--xl--white {
    color: #fff !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-color--xl--black {
    color: #000 !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-color--xl--green {
    color: #2D963A !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-color--xl--red {
    color: #CD0405 !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-color--xl--red-dark {
    color: #AA1617 !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-color--xl--gray-darker {
    color: #343434 !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-color--xxl--white {
    color: #fff !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-color--xxl--black {
    color: #000 !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-color--xxl--green {
    color: #2D963A !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-color--xxl--red {
    color: #CD0405 !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-color--xxl--red-dark {
    color: #AA1617 !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-color--xxl--gray-darker {
    color: #343434 !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-color--ql--white {
    color: #fff !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-color--ql--black {
    color: #000 !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-color--ql--green {
    color: #2D963A !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-color--ql--red {
    color: #CD0405 !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-color--ql--red-dark {
    color: #AA1617 !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-color--ql--gray-darker {
    color: #343434 !important;
  }
}