/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
/*!
 * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900); }

.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands,
.fa {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto; }

.fas::before,
.far::before,
.fab::before,
.fa-solid::before,
.fa-regular::before,
.fa-brands::before,
.fa::before {
  content: var(--fa); }

.fa-classic,
.fas,
.fa-solid,
.far,
.fa-regular {
  font-family: 'Font Awesome 6 Free'; }

.fa-brands,
.fab {
  font-family: 'Font Awesome 6 Brands'; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em; }

.fa-xs {
  font-size: 0.75em;
  line-height: 0.08333em;
  vertical-align: 0.125em; }

.fa-sm {
  font-size: 0.875em;
  line-height: 0.07143em;
  vertical-align: 0.05357em; }

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em; }

.fa-xl {
  font-size: 1.5em;
  line-height: 0.04167em;
  vertical-align: -0.125em; }

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: calc(-1 * var(--fa-li-width, 2em));
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit; }

.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); }

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em); }

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em); }

.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out); }

.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); }

.fa-fade {
  animation-name: fa-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }

.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }

.fa-flip {
  animation-name: fa-flip;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out); }

.fa-shake {
  animation-name: fa-shake;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear); }

.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear); }

.fa-spin-reverse {
  --fa-animation-direction: reverse; }

.fa-pulse,
.fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8)); }

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s; } }

@keyframes fa-beat {
  0%, 90% {
    transform: scale(1); }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25)); } }

@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0); }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }
  57% {
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }
  64% {
    transform: scale(1, 1) translateY(0); }
  100% {
    transform: scale(1, 1) translateY(0); } }

@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4); } }

@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1); }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125)); } }

@keyframes fa-flip {
  50% {
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }

@keyframes fa-shake {
  0% {
    transform: rotate(-15deg); }
  4% {
    transform: rotate(15deg); }
  8%, 24% {
    transform: rotate(-18deg); }
  12%, 28% {
    transform: rotate(18deg); }
  16% {
    transform: rotate(-22deg); }
  20% {
    transform: rotate(22deg); }
  32% {
    transform: rotate(-12deg); }
  36% {
    transform: rotate(12deg); }
  40%, 100% {
    transform: rotate(0deg); } }

@keyframes fa-spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.fa-rotate-90 {
  transform: rotate(90deg); }

.fa-rotate-180 {
  transform: rotate(180deg); }

.fa-rotate-270 {
  transform: rotate(270deg); }

.fa-flip-horizontal {
  transform: scale(-1, 1); }

.fa-flip-vertical {
  transform: scale(1, -1); }

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1, -1); }

.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, 0)); }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto); }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: var(--fa-inverse, #fff); }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */

.fa-0 {
  --fa: "0"; }

.fa-1 {
  --fa: "1"; }

.fa-2 {
  --fa: "2"; }

.fa-3 {
  --fa: "3"; }

.fa-4 {
  --fa: "4"; }

.fa-5 {
  --fa: "5"; }

.fa-6 {
  --fa: "6"; }

.fa-7 {
  --fa: "7"; }

.fa-8 {
  --fa: "8"; }

.fa-9 {
  --fa: "9"; }

.fa-fill-drip {
  --fa: "\F576"; }

.fa-arrows-to-circle {
  --fa: "\E4BD"; }

.fa-circle-chevron-right {
  --fa: "\F138"; }

.fa-chevron-circle-right {
  --fa: "\F138"; }

.fa-at {
  --fa: "@"; }

.fa-trash-can {
  --fa: "\F2ED"; }

.fa-trash-alt {
  --fa: "\F2ED"; }

.fa-text-height {
  --fa: "\F034"; }

.fa-user-xmark {
  --fa: "\F235"; }

.fa-user-times {
  --fa: "\F235"; }

.fa-stethoscope {
  --fa: "\F0F1"; }

.fa-message {
  --fa: "\F27A"; }

.fa-comment-alt {
  --fa: "\F27A"; }

.fa-info {
  --fa: "\F129"; }

.fa-down-left-and-up-right-to-center {
  --fa: "\F422"; }

.fa-compress-alt {
  --fa: "\F422"; }

.fa-explosion {
  --fa: "\E4E9"; }

.fa-file-lines {
  --fa: "\F15C"; }

.fa-file-alt {
  --fa: "\F15C"; }

.fa-file-text {
  --fa: "\F15C"; }

.fa-wave-square {
  --fa: "\F83E"; }

.fa-ring {
  --fa: "\F70B"; }

.fa-building-un {
  --fa: "\E4D9"; }

.fa-dice-three {
  --fa: "\F527"; }

.fa-calendar-days {
  --fa: "\F073"; }

.fa-calendar-alt {
  --fa: "\F073"; }

.fa-anchor-circle-check {
  --fa: "\E4AA"; }

.fa-building-circle-arrow-right {
  --fa: "\E4D1"; }

.fa-volleyball {
  --fa: "\F45F"; }

.fa-volleyball-ball {
  --fa: "\F45F"; }

.fa-arrows-up-to-line {
  --fa: "\E4C2"; }

.fa-sort-down {
  --fa: "\F0DD"; }

.fa-sort-desc {
  --fa: "\F0DD"; }

.fa-circle-minus {
  --fa: "\F056"; }

.fa-minus-circle {
  --fa: "\F056"; }

.fa-door-open {
  --fa: "\F52B"; }

.fa-right-from-bracket {
  --fa: "\F2F5"; }

.fa-sign-out-alt {
  --fa: "\F2F5"; }

.fa-atom {
  --fa: "\F5D2"; }

.fa-soap {
  --fa: "\E06E"; }

.fa-icons {
  --fa: "\F86D"; }

.fa-heart-music-camera-bolt {
  --fa: "\F86D"; }

.fa-microphone-lines-slash {
  --fa: "\F539"; }

.fa-microphone-alt-slash {
  --fa: "\F539"; }

.fa-bridge-circle-check {
  --fa: "\E4C9"; }

.fa-pump-medical {
  --fa: "\E06A"; }

.fa-fingerprint {
  --fa: "\F577"; }

.fa-hand-point-right {
  --fa: "\F0A4"; }

.fa-magnifying-glass-location {
  --fa: "\F689"; }

.fa-search-location {
  --fa: "\F689"; }

.fa-forward-step {
  --fa: "\F051"; }

.fa-step-forward {
  --fa: "\F051"; }

.fa-face-smile-beam {
  --fa: "\F5B8"; }

.fa-smile-beam {
  --fa: "\F5B8"; }

.fa-flag-checkered {
  --fa: "\F11E"; }

.fa-football {
  --fa: "\F44E"; }

.fa-football-ball {
  --fa: "\F44E"; }

.fa-school-circle-exclamation {
  --fa: "\E56C"; }

.fa-crop {
  --fa: "\F125"; }

.fa-angles-down {
  --fa: "\F103"; }

.fa-angle-double-down {
  --fa: "\F103"; }

.fa-users-rectangle {
  --fa: "\E594"; }

.fa-people-roof {
  --fa: "\E537"; }

.fa-people-line {
  --fa: "\E534"; }

.fa-beer-mug-empty {
  --fa: "\F0FC"; }

.fa-beer {
  --fa: "\F0FC"; }

.fa-diagram-predecessor {
  --fa: "\E477"; }

.fa-arrow-up-long {
  --fa: "\F176"; }

.fa-long-arrow-up {
  --fa: "\F176"; }

.fa-fire-flame-simple {
  --fa: "\F46A"; }

.fa-burn {
  --fa: "\F46A"; }

.fa-person {
  --fa: "\F183"; }

.fa-male {
  --fa: "\F183"; }

.fa-laptop {
  --fa: "\F109"; }

.fa-file-csv {
  --fa: "\F6DD"; }

.fa-menorah {
  --fa: "\F676"; }

.fa-truck-plane {
  --fa: "\E58F"; }

.fa-record-vinyl {
  --fa: "\F8D9"; }

.fa-face-grin-stars {
  --fa: "\F587"; }

.fa-grin-stars {
  --fa: "\F587"; }

.fa-bong {
  --fa: "\F55C"; }

.fa-spaghetti-monster-flying {
  --fa: "\F67B"; }

.fa-pastafarianism {
  --fa: "\F67B"; }

.fa-arrow-down-up-across-line {
  --fa: "\E4AF"; }

.fa-spoon {
  --fa: "\F2E5"; }

.fa-utensil-spoon {
  --fa: "\F2E5"; }

.fa-jar-wheat {
  --fa: "\E517"; }

.fa-envelopes-bulk {
  --fa: "\F674"; }

.fa-mail-bulk {
  --fa: "\F674"; }

.fa-file-circle-exclamation {
  --fa: "\E4EB"; }

.fa-circle-h {
  --fa: "\F47E"; }

.fa-hospital-symbol {
  --fa: "\F47E"; }

.fa-pager {
  --fa: "\F815"; }

.fa-address-book {
  --fa: "\F2B9"; }

.fa-contact-book {
  --fa: "\F2B9"; }

.fa-strikethrough {
  --fa: "\F0CC"; }

.fa-k {
  --fa: "K"; }

.fa-landmark-flag {
  --fa: "\E51C"; }

.fa-pencil {
  --fa: "\F303"; }

.fa-pencil-alt {
  --fa: "\F303"; }

.fa-backward {
  --fa: "\F04A"; }

.fa-caret-right {
  --fa: "\F0DA"; }

.fa-comments {
  --fa: "\F086"; }

.fa-paste {
  --fa: "\F0EA"; }

.fa-file-clipboard {
  --fa: "\F0EA"; }

.fa-code-pull-request {
  --fa: "\E13C"; }

.fa-clipboard-list {
  --fa: "\F46D"; }

.fa-truck-ramp-box {
  --fa: "\F4DE"; }

.fa-truck-loading {
  --fa: "\F4DE"; }

.fa-user-check {
  --fa: "\F4FC"; }

.fa-vial-virus {
  --fa: "\E597"; }

.fa-sheet-plastic {
  --fa: "\E571"; }

.fa-blog {
  --fa: "\F781"; }

.fa-user-ninja {
  --fa: "\F504"; }

.fa-person-arrow-up-from-line {
  --fa: "\E539"; }

.fa-scroll-torah {
  --fa: "\F6A0"; }

.fa-torah {
  --fa: "\F6A0"; }

.fa-broom-ball {
  --fa: "\F458"; }

.fa-quidditch {
  --fa: "\F458"; }

.fa-quidditch-broom-ball {
  --fa: "\F458"; }

.fa-toggle-off {
  --fa: "\F204"; }

.fa-box-archive {
  --fa: "\F187"; }

.fa-archive {
  --fa: "\F187"; }

.fa-person-drowning {
  --fa: "\E545"; }

.fa-arrow-down-9-1 {
  --fa: "\F886"; }

.fa-sort-numeric-desc {
  --fa: "\F886"; }

.fa-sort-numeric-down-alt {
  --fa: "\F886"; }

.fa-face-grin-tongue-squint {
  --fa: "\F58A"; }

.fa-grin-tongue-squint {
  --fa: "\F58A"; }

.fa-spray-can {
  --fa: "\F5BD"; }

.fa-truck-monster {
  --fa: "\F63B"; }

.fa-w {
  --fa: "W"; }

.fa-earth-africa {
  --fa: "\F57C"; }

.fa-globe-africa {
  --fa: "\F57C"; }

.fa-rainbow {
  --fa: "\F75B"; }

.fa-circle-notch {
  --fa: "\F1CE"; }

.fa-tablet-screen-button {
  --fa: "\F3FA"; }

.fa-tablet-alt {
  --fa: "\F3FA"; }

.fa-paw {
  --fa: "\F1B0"; }

.fa-cloud {
  --fa: "\F0C2"; }

.fa-trowel-bricks {
  --fa: "\E58A"; }

.fa-face-flushed {
  --fa: "\F579"; }

.fa-flushed {
  --fa: "\F579"; }

.fa-hospital-user {
  --fa: "\F80D"; }

.fa-tent-arrow-left-right {
  --fa: "\E57F"; }

.fa-gavel {
  --fa: "\F0E3"; }

.fa-legal {
  --fa: "\F0E3"; }

.fa-binoculars {
  --fa: "\F1E5"; }

.fa-microphone-slash {
  --fa: "\F131"; }

.fa-box-tissue {
  --fa: "\E05B"; }

.fa-motorcycle {
  --fa: "\F21C"; }

.fa-bell-concierge {
  --fa: "\F562"; }

.fa-concierge-bell {
  --fa: "\F562"; }

.fa-pen-ruler {
  --fa: "\F5AE"; }

.fa-pencil-ruler {
  --fa: "\F5AE"; }

.fa-people-arrows {
  --fa: "\E068"; }

.fa-people-arrows-left-right {
  --fa: "\E068"; }

.fa-mars-and-venus-burst {
  --fa: "\E523"; }

.fa-square-caret-right {
  --fa: "\F152"; }

.fa-caret-square-right {
  --fa: "\F152"; }

.fa-scissors {
  --fa: "\F0C4"; }

.fa-cut {
  --fa: "\F0C4"; }

.fa-sun-plant-wilt {
  --fa: "\E57A"; }

.fa-toilets-portable {
  --fa: "\E584"; }

.fa-hockey-puck {
  --fa: "\F453"; }

.fa-table {
  --fa: "\F0CE"; }

.fa-magnifying-glass-arrow-right {
  --fa: "\E521"; }

.fa-tachograph-digital {
  --fa: "\F566"; }

.fa-digital-tachograph {
  --fa: "\F566"; }

.fa-users-slash {
  --fa: "\E073"; }

.fa-clover {
  --fa: "\E139"; }

.fa-reply {
  --fa: "\F3E5"; }

.fa-mail-reply {
  --fa: "\F3E5"; }

.fa-star-and-crescent {
  --fa: "\F699"; }

.fa-house-fire {
  --fa: "\E50C"; }

.fa-square-minus {
  --fa: "\F146"; }

.fa-minus-square {
  --fa: "\F146"; }

.fa-helicopter {
  --fa: "\F533"; }

.fa-compass {
  --fa: "\F14E"; }

.fa-square-caret-down {
  --fa: "\F150"; }

.fa-caret-square-down {
  --fa: "\F150"; }

.fa-file-circle-question {
  --fa: "\E4EF"; }

.fa-laptop-code {
  --fa: "\F5FC"; }

.fa-swatchbook {
  --fa: "\F5C3"; }

.fa-prescription-bottle {
  --fa: "\F485"; }

.fa-bars {
  --fa: "\F0C9"; }

.fa-navicon {
  --fa: "\F0C9"; }

.fa-people-group {
  --fa: "\E533"; }

.fa-hourglass-end {
  --fa: "\F253"; }

.fa-hourglass-3 {
  --fa: "\F253"; }

.fa-heart-crack {
  --fa: "\F7A9"; }

.fa-heart-broken {
  --fa: "\F7A9"; }

.fa-square-up-right {
  --fa: "\F360"; }

.fa-external-link-square-alt {
  --fa: "\F360"; }

.fa-face-kiss-beam {
  --fa: "\F597"; }

.fa-kiss-beam {
  --fa: "\F597"; }

.fa-film {
  --fa: "\F008"; }

.fa-ruler-horizontal {
  --fa: "\F547"; }

.fa-people-robbery {
  --fa: "\E536"; }

.fa-lightbulb {
  --fa: "\F0EB"; }

.fa-caret-left {
  --fa: "\F0D9"; }

.fa-circle-exclamation {
  --fa: "\F06A"; }

.fa-exclamation-circle {
  --fa: "\F06A"; }

.fa-school-circle-xmark {
  --fa: "\E56D"; }

.fa-arrow-right-from-bracket {
  --fa: "\F08B"; }

.fa-sign-out {
  --fa: "\F08B"; }

.fa-circle-chevron-down {
  --fa: "\F13A"; }

.fa-chevron-circle-down {
  --fa: "\F13A"; }

.fa-unlock-keyhole {
  --fa: "\F13E"; }

.fa-unlock-alt {
  --fa: "\F13E"; }

.fa-cloud-showers-heavy {
  --fa: "\F740"; }

.fa-headphones-simple {
  --fa: "\F58F"; }

.fa-headphones-alt {
  --fa: "\F58F"; }

.fa-sitemap {
  --fa: "\F0E8"; }

.fa-circle-dollar-to-slot {
  --fa: "\F4B9"; }

.fa-donate {
  --fa: "\F4B9"; }

.fa-memory {
  --fa: "\F538"; }

.fa-road-spikes {
  --fa: "\E568"; }

.fa-fire-burner {
  --fa: "\E4F1"; }

.fa-flag {
  --fa: "\F024"; }

.fa-hanukiah {
  --fa: "\F6E6"; }

.fa-feather {
  --fa: "\F52D"; }

.fa-volume-low {
  --fa: "\F027"; }

.fa-volume-down {
  --fa: "\F027"; }

.fa-comment-slash {
  --fa: "\F4B3"; }

.fa-cloud-sun-rain {
  --fa: "\F743"; }

.fa-compress {
  --fa: "\F066"; }

.fa-wheat-awn {
  --fa: "\E2CD"; }

.fa-wheat-alt {
  --fa: "\E2CD"; }

.fa-ankh {
  --fa: "\F644"; }

.fa-hands-holding-child {
  --fa: "\E4FA"; }

.fa-asterisk {
  --fa: "*"; }

.fa-square-check {
  --fa: "\F14A"; }

.fa-check-square {
  --fa: "\F14A"; }

.fa-peseta-sign {
  --fa: "\E221"; }

.fa-heading {
  --fa: "\F1DC"; }

.fa-header {
  --fa: "\F1DC"; }

.fa-ghost {
  --fa: "\F6E2"; }

.fa-list {
  --fa: "\F03A"; }

.fa-list-squares {
  --fa: "\F03A"; }

.fa-square-phone-flip {
  --fa: "\F87B"; }

.fa-phone-square-alt {
  --fa: "\F87B"; }

.fa-cart-plus {
  --fa: "\F217"; }

.fa-gamepad {
  --fa: "\F11B"; }

.fa-circle-dot {
  --fa: "\F192"; }

.fa-dot-circle {
  --fa: "\F192"; }

.fa-face-dizzy {
  --fa: "\F567"; }

.fa-dizzy {
  --fa: "\F567"; }

.fa-egg {
  --fa: "\F7FB"; }

.fa-house-medical-circle-xmark {
  --fa: "\E513"; }

.fa-campground {
  --fa: "\F6BB"; }

.fa-folder-plus {
  --fa: "\F65E"; }

.fa-futbol {
  --fa: "\F1E3"; }

.fa-futbol-ball {
  --fa: "\F1E3"; }

.fa-soccer-ball {
  --fa: "\F1E3"; }

.fa-paintbrush {
  --fa: "\F1FC"; }

.fa-paint-brush {
  --fa: "\F1FC"; }

.fa-lock {
  --fa: "\F023"; }

.fa-gas-pump {
  --fa: "\F52F"; }

.fa-hot-tub-person {
  --fa: "\F593"; }

.fa-hot-tub {
  --fa: "\F593"; }

.fa-map-location {
  --fa: "\F59F"; }

.fa-map-marked {
  --fa: "\F59F"; }

.fa-house-flood-water {
  --fa: "\E50E"; }

.fa-tree {
  --fa: "\F1BB"; }

.fa-bridge-lock {
  --fa: "\E4CC"; }

.fa-sack-dollar {
  --fa: "\F81D"; }

.fa-pen-to-square {
  --fa: "\F044"; }

.fa-edit {
  --fa: "\F044"; }

.fa-car-side {
  --fa: "\F5E4"; }

.fa-share-nodes {
  --fa: "\F1E0"; }

.fa-share-alt {
  --fa: "\F1E0"; }

.fa-heart-circle-minus {
  --fa: "\E4FF"; }

.fa-hourglass-half {
  --fa: "\F252"; }

.fa-hourglass-2 {
  --fa: "\F252"; }

.fa-microscope {
  --fa: "\F610"; }

.fa-sink {
  --fa: "\E06D"; }

.fa-bag-shopping {
  --fa: "\F290"; }

.fa-shopping-bag {
  --fa: "\F290"; }

.fa-arrow-down-z-a {
  --fa: "\F881"; }

.fa-sort-alpha-desc {
  --fa: "\F881"; }

.fa-sort-alpha-down-alt {
  --fa: "\F881"; }

.fa-mitten {
  --fa: "\F7B5"; }

.fa-person-rays {
  --fa: "\E54D"; }

.fa-users {
  --fa: "\F0C0"; }

.fa-eye-slash {
  --fa: "\F070"; }

.fa-flask-vial {
  --fa: "\E4F3"; }

.fa-hand {
  --fa: "\F256"; }

.fa-hand-paper {
  --fa: "\F256"; }

.fa-om {
  --fa: "\F679"; }

.fa-worm {
  --fa: "\E599"; }

.fa-house-circle-xmark {
  --fa: "\E50B"; }

.fa-plug {
  --fa: "\F1E6"; }

.fa-chevron-up {
  --fa: "\F077"; }

.fa-hand-spock {
  --fa: "\F259"; }

.fa-stopwatch {
  --fa: "\F2F2"; }

.fa-face-kiss {
  --fa: "\F596"; }

.fa-kiss {
  --fa: "\F596"; }

.fa-bridge-circle-xmark {
  --fa: "\E4CB"; }

.fa-face-grin-tongue {
  --fa: "\F589"; }

.fa-grin-tongue {
  --fa: "\F589"; }

.fa-chess-bishop {
  --fa: "\F43A"; }

.fa-face-grin-wink {
  --fa: "\F58C"; }

.fa-grin-wink {
  --fa: "\F58C"; }

.fa-ear-deaf {
  --fa: "\F2A4"; }

.fa-deaf {
  --fa: "\F2A4"; }

.fa-deafness {
  --fa: "\F2A4"; }

.fa-hard-of-hearing {
  --fa: "\F2A4"; }

.fa-road-circle-check {
  --fa: "\E564"; }

.fa-dice-five {
  --fa: "\F523"; }

.fa-square-rss {
  --fa: "\F143"; }

.fa-rss-square {
  --fa: "\F143"; }

.fa-land-mine-on {
  --fa: "\E51B"; }

.fa-i-cursor {
  --fa: "\F246"; }

.fa-stamp {
  --fa: "\F5BF"; }

.fa-stairs {
  --fa: "\E289"; }

.fa-i {
  --fa: "I"; }

.fa-hryvnia-sign {
  --fa: "\F6F2"; }

.fa-hryvnia {
  --fa: "\F6F2"; }

.fa-pills {
  --fa: "\F484"; }

.fa-face-grin-wide {
  --fa: "\F581"; }

.fa-grin-alt {
  --fa: "\F581"; }

.fa-tooth {
  --fa: "\F5C9"; }

.fa-v {
  --fa: "V"; }

.fa-bangladeshi-taka-sign {
  --fa: "\E2E6"; }

.fa-bicycle {
  --fa: "\F206"; }

.fa-staff-snake {
  --fa: "\E579"; }

.fa-rod-asclepius {
  --fa: "\E579"; }

.fa-rod-snake {
  --fa: "\E579"; }

.fa-staff-aesculapius {
  --fa: "\E579"; }

.fa-head-side-cough-slash {
  --fa: "\E062"; }

.fa-truck-medical {
  --fa: "\F0F9"; }

.fa-ambulance {
  --fa: "\F0F9"; }

.fa-wheat-awn-circle-exclamation {
  --fa: "\E598"; }

.fa-snowman {
  --fa: "\F7D0"; }

.fa-mortar-pestle {
  --fa: "\F5A7"; }

.fa-road-barrier {
  --fa: "\E562"; }

.fa-school {
  --fa: "\F549"; }

.fa-igloo {
  --fa: "\F7AE"; }

.fa-joint {
  --fa: "\F595"; }

.fa-angle-right {
  --fa: "\F105"; }

.fa-horse {
  --fa: "\F6F0"; }

.fa-q {
  --fa: "Q"; }

.fa-g {
  --fa: "G"; }

.fa-notes-medical {
  --fa: "\F481"; }

.fa-temperature-half {
  --fa: "\F2C9"; }

.fa-temperature-2 {
  --fa: "\F2C9"; }

.fa-thermometer-2 {
  --fa: "\F2C9"; }

.fa-thermometer-half {
  --fa: "\F2C9"; }

.fa-dong-sign {
  --fa: "\E169"; }

.fa-capsules {
  --fa: "\F46B"; }

.fa-poo-storm {
  --fa: "\F75A"; }

.fa-poo-bolt {
  --fa: "\F75A"; }

.fa-face-frown-open {
  --fa: "\F57A"; }

.fa-frown-open {
  --fa: "\F57A"; }

.fa-hand-point-up {
  --fa: "\F0A6"; }

.fa-money-bill {
  --fa: "\F0D6"; }

.fa-bookmark {
  --fa: "\F02E"; }

.fa-align-justify {
  --fa: "\F039"; }

.fa-umbrella-beach {
  --fa: "\F5CA"; }

.fa-helmet-un {
  --fa: "\E503"; }

.fa-bullseye {
  --fa: "\F140"; }

.fa-bacon {
  --fa: "\F7E5"; }

.fa-hand-point-down {
  --fa: "\F0A7"; }

.fa-arrow-up-from-bracket {
  --fa: "\E09A"; }

.fa-folder {
  --fa: "\F07B"; }

.fa-folder-blank {
  --fa: "\F07B"; }

.fa-file-waveform {
  --fa: "\F478"; }

.fa-file-medical-alt {
  --fa: "\F478"; }

.fa-radiation {
  --fa: "\F7B9"; }

.fa-chart-simple {
  --fa: "\E473"; }

.fa-mars-stroke {
  --fa: "\F229"; }

.fa-vial {
  --fa: "\F492"; }

.fa-gauge {
  --fa: "\F624"; }

.fa-dashboard {
  --fa: "\F624"; }

.fa-gauge-med {
  --fa: "\F624"; }

.fa-tachometer-alt-average {
  --fa: "\F624"; }

.fa-wand-magic-sparkles {
  --fa: "\E2CA"; }

.fa-magic-wand-sparkles {
  --fa: "\E2CA"; }

.fa-e {
  --fa: "E"; }

.fa-pen-clip {
  --fa: "\F305"; }

.fa-pen-alt {
  --fa: "\F305"; }

.fa-bridge-circle-exclamation {
  --fa: "\E4CA"; }

.fa-user {
  --fa: "\F007"; }

.fa-school-circle-check {
  --fa: "\E56B"; }

.fa-dumpster {
  --fa: "\F793"; }

.fa-van-shuttle {
  --fa: "\F5B6"; }

.fa-shuttle-van {
  --fa: "\F5B6"; }

.fa-building-user {
  --fa: "\E4DA"; }

.fa-square-caret-left {
  --fa: "\F191"; }

.fa-caret-square-left {
  --fa: "\F191"; }

.fa-highlighter {
  --fa: "\F591"; }

.fa-key {
  --fa: "\F084"; }

.fa-bullhorn {
  --fa: "\F0A1"; }

.fa-globe {
  --fa: "\F0AC"; }

.fa-synagogue {
  --fa: "\F69B"; }

.fa-person-half-dress {
  --fa: "\E548"; }

.fa-road-bridge {
  --fa: "\E563"; }

.fa-location-arrow {
  --fa: "\F124"; }

.fa-c {
  --fa: "C"; }

.fa-tablet-button {
  --fa: "\F10A"; }

.fa-building-lock {
  --fa: "\E4D6"; }

.fa-pizza-slice {
  --fa: "\F818"; }

.fa-money-bill-wave {
  --fa: "\F53A"; }

.fa-chart-area {
  --fa: "\F1FE"; }

.fa-area-chart {
  --fa: "\F1FE"; }

.fa-house-flag {
  --fa: "\E50D"; }

.fa-person-circle-minus {
  --fa: "\E540"; }

.fa-ban {
  --fa: "\F05E"; }

.fa-cancel {
  --fa: "\F05E"; }

.fa-camera-rotate {
  --fa: "\E0D8"; }

.fa-spray-can-sparkles {
  --fa: "\F5D0"; }

.fa-air-freshener {
  --fa: "\F5D0"; }

.fa-star {
  --fa: "\F005"; }

.fa-repeat {
  --fa: "\F363"; }

.fa-cross {
  --fa: "\F654"; }

.fa-box {
  --fa: "\F466"; }

.fa-venus-mars {
  --fa: "\F228"; }

.fa-arrow-pointer {
  --fa: "\F245"; }

.fa-mouse-pointer {
  --fa: "\F245"; }

.fa-maximize {
  --fa: "\F31E"; }

.fa-expand-arrows-alt {
  --fa: "\F31E"; }

.fa-charging-station {
  --fa: "\F5E7"; }

.fa-shapes {
  --fa: "\F61F"; }

.fa-triangle-circle-square {
  --fa: "\F61F"; }

.fa-shuffle {
  --fa: "\F074"; }

.fa-random {
  --fa: "\F074"; }

.fa-person-running {
  --fa: "\F70C"; }

.fa-running {
  --fa: "\F70C"; }

.fa-mobile-retro {
  --fa: "\E527"; }

.fa-grip-lines-vertical {
  --fa: "\F7A5"; }

.fa-spider {
  --fa: "\F717"; }

.fa-hands-bound {
  --fa: "\E4F9"; }

.fa-file-invoice-dollar {
  --fa: "\F571"; }

.fa-plane-circle-exclamation {
  --fa: "\E556"; }

.fa-x-ray {
  --fa: "\F497"; }

.fa-spell-check {
  --fa: "\F891"; }

.fa-slash {
  --fa: "\F715"; }

.fa-computer-mouse {
  --fa: "\F8CC"; }

.fa-mouse {
  --fa: "\F8CC"; }

.fa-arrow-right-to-bracket {
  --fa: "\F090"; }

.fa-sign-in {
  --fa: "\F090"; }

.fa-shop-slash {
  --fa: "\E070"; }

.fa-store-alt-slash {
  --fa: "\E070"; }

.fa-server {
  --fa: "\F233"; }

.fa-virus-covid-slash {
  --fa: "\E4A9"; }

.fa-shop-lock {
  --fa: "\E4A5"; }

.fa-hourglass-start {
  --fa: "\F251"; }

.fa-hourglass-1 {
  --fa: "\F251"; }

.fa-blender-phone {
  --fa: "\F6B6"; }

.fa-building-wheat {
  --fa: "\E4DB"; }

.fa-person-breastfeeding {
  --fa: "\E53A"; }

.fa-right-to-bracket {
  --fa: "\F2F6"; }

.fa-sign-in-alt {
  --fa: "\F2F6"; }

.fa-venus {
  --fa: "\F221"; }

.fa-passport {
  --fa: "\F5AB"; }

.fa-thumbtack-slash {
  --fa: "\E68F"; }

.fa-thumb-tack-slash {
  --fa: "\E68F"; }

.fa-heart-pulse {
  --fa: "\F21E"; }

.fa-heartbeat {
  --fa: "\F21E"; }

.fa-people-carry-box {
  --fa: "\F4CE"; }

.fa-people-carry {
  --fa: "\F4CE"; }

.fa-temperature-high {
  --fa: "\F769"; }

.fa-microchip {
  --fa: "\F2DB"; }

.fa-crown {
  --fa: "\F521"; }

.fa-weight-hanging {
  --fa: "\F5CD"; }

.fa-xmarks-lines {
  --fa: "\E59A"; }

.fa-file-prescription {
  --fa: "\F572"; }

.fa-weight-scale {
  --fa: "\F496"; }

.fa-weight {
  --fa: "\F496"; }

.fa-user-group {
  --fa: "\F500"; }

.fa-user-friends {
  --fa: "\F500"; }

.fa-arrow-up-a-z {
  --fa: "\F15E"; }

.fa-sort-alpha-up {
  --fa: "\F15E"; }

.fa-chess-knight {
  --fa: "\F441"; }

.fa-face-laugh-squint {
  --fa: "\F59B"; }

.fa-laugh-squint {
  --fa: "\F59B"; }

.fa-wheelchair {
  --fa: "\F193"; }

.fa-circle-arrow-up {
  --fa: "\F0AA"; }

.fa-arrow-circle-up {
  --fa: "\F0AA"; }

.fa-toggle-on {
  --fa: "\F205"; }

.fa-person-walking {
  --fa: "\F554"; }

.fa-walking {
  --fa: "\F554"; }

.fa-l {
  --fa: "L"; }

.fa-fire {
  --fa: "\F06D"; }

.fa-bed-pulse {
  --fa: "\F487"; }

.fa-procedures {
  --fa: "\F487"; }

.fa-shuttle-space {
  --fa: "\F197"; }

.fa-space-shuttle {
  --fa: "\F197"; }

.fa-face-laugh {
  --fa: "\F599"; }

.fa-laugh {
  --fa: "\F599"; }

.fa-folder-open {
  --fa: "\F07C"; }

.fa-heart-circle-plus {
  --fa: "\E500"; }

.fa-code-fork {
  --fa: "\E13B"; }

.fa-city {
  --fa: "\F64F"; }

.fa-microphone-lines {
  --fa: "\F3C9"; }

.fa-microphone-alt {
  --fa: "\F3C9"; }

.fa-pepper-hot {
  --fa: "\F816"; }

.fa-unlock {
  --fa: "\F09C"; }

.fa-colon-sign {
  --fa: "\E140"; }

.fa-headset {
  --fa: "\F590"; }

.fa-store-slash {
  --fa: "\E071"; }

.fa-road-circle-xmark {
  --fa: "\E566"; }

.fa-user-minus {
  --fa: "\F503"; }

.fa-mars-stroke-up {
  --fa: "\F22A"; }

.fa-mars-stroke-v {
  --fa: "\F22A"; }

.fa-champagne-glasses {
  --fa: "\F79F"; }

.fa-glass-cheers {
  --fa: "\F79F"; }

.fa-clipboard {
  --fa: "\F328"; }

.fa-house-circle-exclamation {
  --fa: "\E50A"; }

.fa-file-arrow-up {
  --fa: "\F574"; }

.fa-file-upload {
  --fa: "\F574"; }

.fa-wifi {
  --fa: "\F1EB"; }

.fa-wifi-3 {
  --fa: "\F1EB"; }

.fa-wifi-strong {
  --fa: "\F1EB"; }

.fa-bath {
  --fa: "\F2CD"; }

.fa-bathtub {
  --fa: "\F2CD"; }

.fa-underline {
  --fa: "\F0CD"; }

.fa-user-pen {
  --fa: "\F4FF"; }

.fa-user-edit {
  --fa: "\F4FF"; }

.fa-signature {
  --fa: "\F5B7"; }

.fa-stroopwafel {
  --fa: "\F551"; }

.fa-bold {
  --fa: "\F032"; }

.fa-anchor-lock {
  --fa: "\E4AD"; }

.fa-building-ngo {
  --fa: "\E4D7"; }

.fa-manat-sign {
  --fa: "\E1D5"; }

.fa-not-equal {
  --fa: "\F53E"; }

.fa-border-top-left {
  --fa: "\F853"; }

.fa-border-style {
  --fa: "\F853"; }

.fa-map-location-dot {
  --fa: "\F5A0"; }

.fa-map-marked-alt {
  --fa: "\F5A0"; }

.fa-jedi {
  --fa: "\F669"; }

.fa-square-poll-vertical {
  --fa: "\F681"; }

.fa-poll {
  --fa: "\F681"; }

.fa-mug-hot {
  --fa: "\F7B6"; }

.fa-car-battery {
  --fa: "\F5DF"; }

.fa-battery-car {
  --fa: "\F5DF"; }

.fa-gift {
  --fa: "\F06B"; }

.fa-dice-two {
  --fa: "\F528"; }

.fa-chess-queen {
  --fa: "\F445"; }

.fa-glasses {
  --fa: "\F530"; }

.fa-chess-board {
  --fa: "\F43C"; }

.fa-building-circle-check {
  --fa: "\E4D2"; }

.fa-person-chalkboard {
  --fa: "\E53D"; }

.fa-mars-stroke-right {
  --fa: "\F22B"; }

.fa-mars-stroke-h {
  --fa: "\F22B"; }

.fa-hand-back-fist {
  --fa: "\F255"; }

.fa-hand-rock {
  --fa: "\F255"; }

.fa-square-caret-up {
  --fa: "\F151"; }

.fa-caret-square-up {
  --fa: "\F151"; }

.fa-cloud-showers-water {
  --fa: "\E4E4"; }

.fa-chart-bar {
  --fa: "\F080"; }

.fa-bar-chart {
  --fa: "\F080"; }

.fa-hands-bubbles {
  --fa: "\E05E"; }

.fa-hands-wash {
  --fa: "\E05E"; }

.fa-less-than-equal {
  --fa: "\F537"; }

.fa-train {
  --fa: "\F238"; }

.fa-eye-low-vision {
  --fa: "\F2A8"; }

.fa-low-vision {
  --fa: "\F2A8"; }

.fa-crow {
  --fa: "\F520"; }

.fa-sailboat {
  --fa: "\E445"; }

.fa-window-restore {
  --fa: "\F2D2"; }

.fa-square-plus {
  --fa: "\F0FE"; }

.fa-plus-square {
  --fa: "\F0FE"; }

.fa-torii-gate {
  --fa: "\F6A1"; }

.fa-frog {
  --fa: "\F52E"; }

.fa-bucket {
  --fa: "\E4CF"; }

.fa-image {
  --fa: "\F03E"; }

.fa-microphone {
  --fa: "\F130"; }

.fa-cow {
  --fa: "\F6C8"; }

.fa-caret-up {
  --fa: "\F0D8"; }

.fa-screwdriver {
  --fa: "\F54A"; }

.fa-folder-closed {
  --fa: "\E185"; }

.fa-house-tsunami {
  --fa: "\E515"; }

.fa-square-nfi {
  --fa: "\E576"; }

.fa-arrow-up-from-ground-water {
  --fa: "\E4B5"; }

.fa-martini-glass {
  --fa: "\F57B"; }

.fa-glass-martini-alt {
  --fa: "\F57B"; }

.fa-square-binary {
  --fa: "\E69B"; }

.fa-rotate-left {
  --fa: "\F2EA"; }

.fa-rotate-back {
  --fa: "\F2EA"; }

.fa-rotate-backward {
  --fa: "\F2EA"; }

.fa-undo-alt {
  --fa: "\F2EA"; }

.fa-table-columns {
  --fa: "\F0DB"; }

.fa-columns {
  --fa: "\F0DB"; }

.fa-lemon {
  --fa: "\F094"; }

.fa-head-side-mask {
  --fa: "\E063"; }

.fa-handshake {
  --fa: "\F2B5"; }

.fa-gem {
  --fa: "\F3A5"; }

.fa-dolly {
  --fa: "\F472"; }

.fa-dolly-box {
  --fa: "\F472"; }

.fa-smoking {
  --fa: "\F48D"; }

.fa-minimize {
  --fa: "\F78C"; }

.fa-compress-arrows-alt {
  --fa: "\F78C"; }

.fa-monument {
  --fa: "\F5A6"; }

.fa-snowplow {
  --fa: "\F7D2"; }

.fa-angles-right {
  --fa: "\F101"; }

.fa-angle-double-right {
  --fa: "\F101"; }

.fa-cannabis {
  --fa: "\F55F"; }

.fa-circle-play {
  --fa: "\F144"; }

.fa-play-circle {
  --fa: "\F144"; }

.fa-tablets {
  --fa: "\F490"; }

.fa-ethernet {
  --fa: "\F796"; }

.fa-euro-sign {
  --fa: "\F153"; }

.fa-eur {
  --fa: "\F153"; }

.fa-euro {
  --fa: "\F153"; }

.fa-chair {
  --fa: "\F6C0"; }

.fa-circle-check {
  --fa: "\F058"; }

.fa-check-circle {
  --fa: "\F058"; }

.fa-circle-stop {
  --fa: "\F28D"; }

.fa-stop-circle {
  --fa: "\F28D"; }

.fa-compass-drafting {
  --fa: "\F568"; }

.fa-drafting-compass {
  --fa: "\F568"; }

.fa-plate-wheat {
  --fa: "\E55A"; }

.fa-icicles {
  --fa: "\F7AD"; }

.fa-person-shelter {
  --fa: "\E54F"; }

.fa-neuter {
  --fa: "\F22C"; }

.fa-id-badge {
  --fa: "\F2C1"; }

.fa-marker {
  --fa: "\F5A1"; }

.fa-face-laugh-beam {
  --fa: "\F59A"; }

.fa-laugh-beam {
  --fa: "\F59A"; }

.fa-helicopter-symbol {
  --fa: "\E502"; }

.fa-universal-access {
  --fa: "\F29A"; }

.fa-circle-chevron-up {
  --fa: "\F139"; }

.fa-chevron-circle-up {
  --fa: "\F139"; }

.fa-lari-sign {
  --fa: "\E1C8"; }

.fa-volcano {
  --fa: "\F770"; }

.fa-person-walking-dashed-line-arrow-right {
  --fa: "\E553"; }

.fa-sterling-sign {
  --fa: "\F154"; }

.fa-gbp {
  --fa: "\F154"; }

.fa-pound-sign {
  --fa: "\F154"; }

.fa-viruses {
  --fa: "\E076"; }

.fa-square-person-confined {
  --fa: "\E577"; }

.fa-user-tie {
  --fa: "\F508"; }

.fa-arrow-down-long {
  --fa: "\F175"; }

.fa-long-arrow-down {
  --fa: "\F175"; }

.fa-tent-arrow-down-to-line {
  --fa: "\E57E"; }

.fa-certificate {
  --fa: "\F0A3"; }

.fa-reply-all {
  --fa: "\F122"; }

.fa-mail-reply-all {
  --fa: "\F122"; }

.fa-suitcase {
  --fa: "\F0F2"; }

.fa-person-skating {
  --fa: "\F7C5"; }

.fa-skating {
  --fa: "\F7C5"; }

.fa-filter-circle-dollar {
  --fa: "\F662"; }

.fa-funnel-dollar {
  --fa: "\F662"; }

.fa-camera-retro {
  --fa: "\F083"; }

.fa-circle-arrow-down {
  --fa: "\F0AB"; }

.fa-arrow-circle-down {
  --fa: "\F0AB"; }

.fa-file-import {
  --fa: "\F56F"; }

.fa-arrow-right-to-file {
  --fa: "\F56F"; }

.fa-square-arrow-up-right {
  --fa: "\F14C"; }

.fa-external-link-square {
  --fa: "\F14C"; }

.fa-box-open {
  --fa: "\F49E"; }

.fa-scroll {
  --fa: "\F70E"; }

.fa-spa {
  --fa: "\F5BB"; }

.fa-location-pin-lock {
  --fa: "\E51F"; }

.fa-pause {
  --fa: "\F04C"; }

.fa-hill-avalanche {
  --fa: "\E507"; }

.fa-temperature-empty {
  --fa: "\F2CB"; }

.fa-temperature-0 {
  --fa: "\F2CB"; }

.fa-thermometer-0 {
  --fa: "\F2CB"; }

.fa-thermometer-empty {
  --fa: "\F2CB"; }

.fa-bomb {
  --fa: "\F1E2"; }

.fa-registered {
  --fa: "\F25D"; }

.fa-address-card {
  --fa: "\F2BB"; }

.fa-contact-card {
  --fa: "\F2BB"; }

.fa-vcard {
  --fa: "\F2BB"; }

.fa-scale-unbalanced-flip {
  --fa: "\F516"; }

.fa-balance-scale-right {
  --fa: "\F516"; }

.fa-subscript {
  --fa: "\F12C"; }

.fa-diamond-turn-right {
  --fa: "\F5EB"; }

.fa-directions {
  --fa: "\F5EB"; }

.fa-burst {
  --fa: "\E4DC"; }

.fa-house-laptop {
  --fa: "\E066"; }

.fa-laptop-house {
  --fa: "\E066"; }

.fa-face-tired {
  --fa: "\F5C8"; }

.fa-tired {
  --fa: "\F5C8"; }

.fa-money-bills {
  --fa: "\E1F3"; }

.fa-smog {
  --fa: "\F75F"; }

.fa-crutch {
  --fa: "\F7F7"; }

.fa-cloud-arrow-up {
  --fa: "\F0EE"; }

.fa-cloud-upload {
  --fa: "\F0EE"; }

.fa-cloud-upload-alt {
  --fa: "\F0EE"; }

.fa-palette {
  --fa: "\F53F"; }

.fa-arrows-turn-right {
  --fa: "\E4C0"; }

.fa-vest {
  --fa: "\E085"; }

.fa-ferry {
  --fa: "\E4EA"; }

.fa-arrows-down-to-people {
  --fa: "\E4B9"; }

.fa-seedling {
  --fa: "\F4D8"; }

.fa-sprout {
  --fa: "\F4D8"; }

.fa-left-right {
  --fa: "\F337"; }

.fa-arrows-alt-h {
  --fa: "\F337"; }

.fa-boxes-packing {
  --fa: "\E4C7"; }

.fa-circle-arrow-left {
  --fa: "\F0A8"; }

.fa-arrow-circle-left {
  --fa: "\F0A8"; }

.fa-group-arrows-rotate {
  --fa: "\E4F6"; }

.fa-bowl-food {
  --fa: "\E4C6"; }

.fa-candy-cane {
  --fa: "\F786"; }

.fa-arrow-down-wide-short {
  --fa: "\F160"; }

.fa-sort-amount-asc {
  --fa: "\F160"; }

.fa-sort-amount-down {
  --fa: "\F160"; }

.fa-cloud-bolt {
  --fa: "\F76C"; }

.fa-thunderstorm {
  --fa: "\F76C"; }

.fa-text-slash {
  --fa: "\F87D"; }

.fa-remove-format {
  --fa: "\F87D"; }

.fa-face-smile-wink {
  --fa: "\F4DA"; }

.fa-smile-wink {
  --fa: "\F4DA"; }

.fa-file-word {
  --fa: "\F1C2"; }

.fa-file-powerpoint {
  --fa: "\F1C4"; }

.fa-arrows-left-right {
  --fa: "\F07E"; }

.fa-arrows-h {
  --fa: "\F07E"; }

.fa-house-lock {
  --fa: "\E510"; }

.fa-cloud-arrow-down {
  --fa: "\F0ED"; }

.fa-cloud-download {
  --fa: "\F0ED"; }

.fa-cloud-download-alt {
  --fa: "\F0ED"; }

.fa-children {
  --fa: "\E4E1"; }

.fa-chalkboard {
  --fa: "\F51B"; }

.fa-blackboard {
  --fa: "\F51B"; }

.fa-user-large-slash {
  --fa: "\F4FA"; }

.fa-user-alt-slash {
  --fa: "\F4FA"; }

.fa-envelope-open {
  --fa: "\F2B6"; }

.fa-handshake-simple-slash {
  --fa: "\E05F"; }

.fa-handshake-alt-slash {
  --fa: "\E05F"; }

.fa-mattress-pillow {
  --fa: "\E525"; }

.fa-guarani-sign {
  --fa: "\E19A"; }

.fa-arrows-rotate {
  --fa: "\F021"; }

.fa-refresh {
  --fa: "\F021"; }

.fa-sync {
  --fa: "\F021"; }

.fa-fire-extinguisher {
  --fa: "\F134"; }

.fa-cruzeiro-sign {
  --fa: "\E152"; }

.fa-greater-than-equal {
  --fa: "\F532"; }

.fa-shield-halved {
  --fa: "\F3ED"; }

.fa-shield-alt {
  --fa: "\F3ED"; }

.fa-book-atlas {
  --fa: "\F558"; }

.fa-atlas {
  --fa: "\F558"; }

.fa-virus {
  --fa: "\E074"; }

.fa-envelope-circle-check {
  --fa: "\E4E8"; }

.fa-layer-group {
  --fa: "\F5FD"; }

.fa-arrows-to-dot {
  --fa: "\E4BE"; }

.fa-archway {
  --fa: "\F557"; }

.fa-heart-circle-check {
  --fa: "\E4FD"; }

.fa-house-chimney-crack {
  --fa: "\F6F1"; }

.fa-house-damage {
  --fa: "\F6F1"; }

.fa-file-zipper {
  --fa: "\F1C6"; }

.fa-file-archive {
  --fa: "\F1C6"; }

.fa-square {
  --fa: "\F0C8"; }

.fa-martini-glass-empty {
  --fa: "\F000"; }

.fa-glass-martini {
  --fa: "\F000"; }

.fa-couch {
  --fa: "\F4B8"; }

.fa-cedi-sign {
  --fa: "\E0DF"; }

.fa-italic {
  --fa: "\F033"; }

.fa-table-cells-column-lock {
  --fa: "\E678"; }

.fa-church {
  --fa: "\F51D"; }

.fa-comments-dollar {
  --fa: "\F653"; }

.fa-democrat {
  --fa: "\F747"; }

.fa-z {
  --fa: "Z"; }

.fa-person-skiing {
  --fa: "\F7C9"; }

.fa-skiing {
  --fa: "\F7C9"; }

.fa-road-lock {
  --fa: "\E567"; }

.fa-a {
  --fa: "A"; }

.fa-temperature-arrow-down {
  --fa: "\E03F"; }

.fa-temperature-down {
  --fa: "\E03F"; }

.fa-feather-pointed {
  --fa: "\F56B"; }

.fa-feather-alt {
  --fa: "\F56B"; }

.fa-p {
  --fa: "P"; }

.fa-snowflake {
  --fa: "\F2DC"; }

.fa-newspaper {
  --fa: "\F1EA"; }

.fa-rectangle-ad {
  --fa: "\F641"; }

.fa-ad {
  --fa: "\F641"; }

.fa-circle-arrow-right {
  --fa: "\F0A9"; }

.fa-arrow-circle-right {
  --fa: "\F0A9"; }

.fa-filter-circle-xmark {
  --fa: "\E17B"; }

.fa-locust {
  --fa: "\E520"; }

.fa-sort {
  --fa: "\F0DC"; }

.fa-unsorted {
  --fa: "\F0DC"; }

.fa-list-ol {
  --fa: "\F0CB"; }

.fa-list-1-2 {
  --fa: "\F0CB"; }

.fa-list-numeric {
  --fa: "\F0CB"; }

.fa-person-dress-burst {
  --fa: "\E544"; }

.fa-money-check-dollar {
  --fa: "\F53D"; }

.fa-money-check-alt {
  --fa: "\F53D"; }

.fa-vector-square {
  --fa: "\F5CB"; }

.fa-bread-slice {
  --fa: "\F7EC"; }

.fa-language {
  --fa: "\F1AB"; }

.fa-face-kiss-wink-heart {
  --fa: "\F598"; }

.fa-kiss-wink-heart {
  --fa: "\F598"; }

.fa-filter {
  --fa: "\F0B0"; }

.fa-question {
  --fa: "?"; }

.fa-file-signature {
  --fa: "\F573"; }

.fa-up-down-left-right {
  --fa: "\F0B2"; }

.fa-arrows-alt {
  --fa: "\F0B2"; }

.fa-house-chimney-user {
  --fa: "\E065"; }

.fa-hand-holding-heart {
  --fa: "\F4BE"; }

.fa-puzzle-piece {
  --fa: "\F12E"; }

.fa-money-check {
  --fa: "\F53C"; }

.fa-star-half-stroke {
  --fa: "\F5C0"; }

.fa-star-half-alt {
  --fa: "\F5C0"; }

.fa-code {
  --fa: "\F121"; }

.fa-whiskey-glass {
  --fa: "\F7A0"; }

.fa-glass-whiskey {
  --fa: "\F7A0"; }

.fa-building-circle-exclamation {
  --fa: "\E4D3"; }

.fa-magnifying-glass-chart {
  --fa: "\E522"; }

.fa-arrow-up-right-from-square {
  --fa: "\F08E"; }

.fa-external-link {
  --fa: "\F08E"; }

.fa-cubes-stacked {
  --fa: "\E4E6"; }

.fa-won-sign {
  --fa: "\F159"; }

.fa-krw {
  --fa: "\F159"; }

.fa-won {
  --fa: "\F159"; }

.fa-virus-covid {
  --fa: "\E4A8"; }

.fa-austral-sign {
  --fa: "\E0A9"; }

.fa-f {
  --fa: "F"; }

.fa-leaf {
  --fa: "\F06C"; }

.fa-road {
  --fa: "\F018"; }

.fa-taxi {
  --fa: "\F1BA"; }

.fa-cab {
  --fa: "\F1BA"; }

.fa-person-circle-plus {
  --fa: "\E541"; }

.fa-chart-pie {
  --fa: "\F200"; }

.fa-pie-chart {
  --fa: "\F200"; }

.fa-bolt-lightning {
  --fa: "\E0B7"; }

.fa-sack-xmark {
  --fa: "\E56A"; }

.fa-file-excel {
  --fa: "\F1C3"; }

.fa-file-contract {
  --fa: "\F56C"; }

.fa-fish-fins {
  --fa: "\E4F2"; }

.fa-building-flag {
  --fa: "\E4D5"; }

.fa-face-grin-beam {
  --fa: "\F582"; }

.fa-grin-beam {
  --fa: "\F582"; }

.fa-object-ungroup {
  --fa: "\F248"; }

.fa-poop {
  --fa: "\F619"; }

.fa-location-pin {
  --fa: "\F041"; }

.fa-map-marker {
  --fa: "\F041"; }

.fa-kaaba {
  --fa: "\F66B"; }

.fa-toilet-paper {
  --fa: "\F71E"; }

.fa-helmet-safety {
  --fa: "\F807"; }

.fa-hard-hat {
  --fa: "\F807"; }

.fa-hat-hard {
  --fa: "\F807"; }

.fa-eject {
  --fa: "\F052"; }

.fa-circle-right {
  --fa: "\F35A"; }

.fa-arrow-alt-circle-right {
  --fa: "\F35A"; }

.fa-plane-circle-check {
  --fa: "\E555"; }

.fa-face-rolling-eyes {
  --fa: "\F5A5"; }

.fa-meh-rolling-eyes {
  --fa: "\F5A5"; }

.fa-object-group {
  --fa: "\F247"; }

.fa-chart-line {
  --fa: "\F201"; }

.fa-line-chart {
  --fa: "\F201"; }

.fa-mask-ventilator {
  --fa: "\E524"; }

.fa-arrow-right {
  --fa: "\F061"; }

.fa-signs-post {
  --fa: "\F277"; }

.fa-map-signs {
  --fa: "\F277"; }

.fa-cash-register {
  --fa: "\F788"; }

.fa-person-circle-question {
  --fa: "\E542"; }

.fa-h {
  --fa: "H"; }

.fa-tarp {
  --fa: "\E57B"; }

.fa-screwdriver-wrench {
  --fa: "\F7D9"; }

.fa-tools {
  --fa: "\F7D9"; }

.fa-arrows-to-eye {
  --fa: "\E4BF"; }

.fa-plug-circle-bolt {
  --fa: "\E55B"; }

.fa-heart {
  --fa: "\F004"; }

.fa-mars-and-venus {
  --fa: "\F224"; }

.fa-house-user {
  --fa: "\E1B0"; }

.fa-home-user {
  --fa: "\E1B0"; }

.fa-dumpster-fire {
  --fa: "\F794"; }

.fa-house-crack {
  --fa: "\E3B1"; }

.fa-martini-glass-citrus {
  --fa: "\F561"; }

.fa-cocktail {
  --fa: "\F561"; }

.fa-face-surprise {
  --fa: "\F5C2"; }

.fa-surprise {
  --fa: "\F5C2"; }

.fa-bottle-water {
  --fa: "\E4C5"; }

.fa-circle-pause {
  --fa: "\F28B"; }

.fa-pause-circle {
  --fa: "\F28B"; }

.fa-toilet-paper-slash {
  --fa: "\E072"; }

.fa-apple-whole {
  --fa: "\F5D1"; }

.fa-apple-alt {
  --fa: "\F5D1"; }

.fa-kitchen-set {
  --fa: "\E51A"; }

.fa-r {
  --fa: "R"; }

.fa-temperature-quarter {
  --fa: "\F2CA"; }

.fa-temperature-1 {
  --fa: "\F2CA"; }

.fa-thermometer-1 {
  --fa: "\F2CA"; }

.fa-thermometer-quarter {
  --fa: "\F2CA"; }

.fa-cube {
  --fa: "\F1B2"; }

.fa-bitcoin-sign {
  --fa: "\E0B4"; }

.fa-shield-dog {
  --fa: "\E573"; }

.fa-solar-panel {
  --fa: "\F5BA"; }

.fa-lock-open {
  --fa: "\F3C1"; }

.fa-elevator {
  --fa: "\E16D"; }

.fa-money-bill-transfer {
  --fa: "\E528"; }

.fa-money-bill-trend-up {
  --fa: "\E529"; }

.fa-house-flood-water-circle-arrow-right {
  --fa: "\E50F"; }

.fa-square-poll-horizontal {
  --fa: "\F682"; }

.fa-poll-h {
  --fa: "\F682"; }

.fa-circle {
  --fa: "\F111"; }

.fa-backward-fast {
  --fa: "\F049"; }

.fa-fast-backward {
  --fa: "\F049"; }

.fa-recycle {
  --fa: "\F1B8"; }

.fa-user-astronaut {
  --fa: "\F4FB"; }

.fa-plane-slash {
  --fa: "\E069"; }

.fa-trademark {
  --fa: "\F25C"; }

.fa-basketball {
  --fa: "\F434"; }

.fa-basketball-ball {
  --fa: "\F434"; }

.fa-satellite-dish {
  --fa: "\F7C0"; }

.fa-circle-up {
  --fa: "\F35B"; }

.fa-arrow-alt-circle-up {
  --fa: "\F35B"; }

.fa-mobile-screen-button {
  --fa: "\F3CD"; }

.fa-mobile-alt {
  --fa: "\F3CD"; }

.fa-volume-high {
  --fa: "\F028"; }

.fa-volume-up {
  --fa: "\F028"; }

.fa-users-rays {
  --fa: "\E593"; }

.fa-wallet {
  --fa: "\F555"; }

.fa-clipboard-check {
  --fa: "\F46C"; }

.fa-file-audio {
  --fa: "\F1C7"; }

.fa-burger {
  --fa: "\F805"; }

.fa-hamburger {
  --fa: "\F805"; }

.fa-wrench {
  --fa: "\F0AD"; }

.fa-bugs {
  --fa: "\E4D0"; }

.fa-rupee-sign {
  --fa: "\F156"; }

.fa-rupee {
  --fa: "\F156"; }

.fa-file-image {
  --fa: "\F1C5"; }

.fa-circle-question {
  --fa: "\F059"; }

.fa-question-circle {
  --fa: "\F059"; }

.fa-plane-departure {
  --fa: "\F5B0"; }

.fa-handshake-slash {
  --fa: "\E060"; }

.fa-book-bookmark {
  --fa: "\E0BB"; }

.fa-code-branch {
  --fa: "\F126"; }

.fa-hat-cowboy {
  --fa: "\F8C0"; }

.fa-bridge {
  --fa: "\E4C8"; }

.fa-phone-flip {
  --fa: "\F879"; }

.fa-phone-alt {
  --fa: "\F879"; }

.fa-truck-front {
  --fa: "\E2B7"; }

.fa-cat {
  --fa: "\F6BE"; }

.fa-anchor-circle-exclamation {
  --fa: "\E4AB"; }

.fa-truck-field {
  --fa: "\E58D"; }

.fa-route {
  --fa: "\F4D7"; }

.fa-clipboard-question {
  --fa: "\E4E3"; }

.fa-panorama {
  --fa: "\E209"; }

.fa-comment-medical {
  --fa: "\F7F5"; }

.fa-teeth-open {
  --fa: "\F62F"; }

.fa-file-circle-minus {
  --fa: "\E4ED"; }

.fa-tags {
  --fa: "\F02C"; }

.fa-wine-glass {
  --fa: "\F4E3"; }

.fa-forward-fast {
  --fa: "\F050"; }

.fa-fast-forward {
  --fa: "\F050"; }

.fa-face-meh-blank {
  --fa: "\F5A4"; }

.fa-meh-blank {
  --fa: "\F5A4"; }

.fa-square-parking {
  --fa: "\F540"; }

.fa-parking {
  --fa: "\F540"; }

.fa-house-signal {
  --fa: "\E012"; }

.fa-bars-progress {
  --fa: "\F828"; }

.fa-tasks-alt {
  --fa: "\F828"; }

.fa-faucet-drip {
  --fa: "\E006"; }

.fa-cart-flatbed {
  --fa: "\F474"; }

.fa-dolly-flatbed {
  --fa: "\F474"; }

.fa-ban-smoking {
  --fa: "\F54D"; }

.fa-smoking-ban {
  --fa: "\F54D"; }

.fa-terminal {
  --fa: "\F120"; }

.fa-mobile-button {
  --fa: "\F10B"; }

.fa-house-medical-flag {
  --fa: "\E514"; }

.fa-basket-shopping {
  --fa: "\F291"; }

.fa-shopping-basket {
  --fa: "\F291"; }

.fa-tape {
  --fa: "\F4DB"; }

.fa-bus-simple {
  --fa: "\F55E"; }

.fa-bus-alt {
  --fa: "\F55E"; }

.fa-eye {
  --fa: "\F06E"; }

.fa-face-sad-cry {
  --fa: "\F5B3"; }

.fa-sad-cry {
  --fa: "\F5B3"; }

.fa-audio-description {
  --fa: "\F29E"; }

.fa-person-military-to-person {
  --fa: "\E54C"; }

.fa-file-shield {
  --fa: "\E4F0"; }

.fa-user-slash {
  --fa: "\F506"; }

.fa-pen {
  --fa: "\F304"; }

.fa-tower-observation {
  --fa: "\E586"; }

.fa-file-code {
  --fa: "\F1C9"; }

.fa-signal {
  --fa: "\F012"; }

.fa-signal-5 {
  --fa: "\F012"; }

.fa-signal-perfect {
  --fa: "\F012"; }

.fa-bus {
  --fa: "\F207"; }

.fa-heart-circle-xmark {
  --fa: "\E501"; }

.fa-house-chimney {
  --fa: "\E3AF"; }

.fa-home-lg {
  --fa: "\E3AF"; }

.fa-window-maximize {
  --fa: "\F2D0"; }

.fa-face-frown {
  --fa: "\F119"; }

.fa-frown {
  --fa: "\F119"; }

.fa-prescription {
  --fa: "\F5B1"; }

.fa-shop {
  --fa: "\F54F"; }

.fa-store-alt {
  --fa: "\F54F"; }

.fa-floppy-disk {
  --fa: "\F0C7"; }

.fa-save {
  --fa: "\F0C7"; }

.fa-vihara {
  --fa: "\F6A7"; }

.fa-scale-unbalanced {
  --fa: "\F515"; }

.fa-balance-scale-left {
  --fa: "\F515"; }

.fa-sort-up {
  --fa: "\F0DE"; }

.fa-sort-asc {
  --fa: "\F0DE"; }

.fa-comment-dots {
  --fa: "\F4AD"; }

.fa-commenting {
  --fa: "\F4AD"; }

.fa-plant-wilt {
  --fa: "\E5AA"; }

.fa-diamond {
  --fa: "\F219"; }

.fa-face-grin-squint {
  --fa: "\F585"; }

.fa-grin-squint {
  --fa: "\F585"; }

.fa-hand-holding-dollar {
  --fa: "\F4C0"; }

.fa-hand-holding-usd {
  --fa: "\F4C0"; }

.fa-chart-diagram {
  --fa: "\E695"; }

.fa-bacterium {
  --fa: "\E05A"; }

.fa-hand-pointer {
  --fa: "\F25A"; }

.fa-drum-steelpan {
  --fa: "\F56A"; }

.fa-hand-scissors {
  --fa: "\F257"; }

.fa-hands-praying {
  --fa: "\F684"; }

.fa-praying-hands {
  --fa: "\F684"; }

.fa-arrow-rotate-right {
  --fa: "\F01E"; }

.fa-arrow-right-rotate {
  --fa: "\F01E"; }

.fa-arrow-rotate-forward {
  --fa: "\F01E"; }

.fa-redo {
  --fa: "\F01E"; }

.fa-biohazard {
  --fa: "\F780"; }

.fa-location-crosshairs {
  --fa: "\F601"; }

.fa-location {
  --fa: "\F601"; }

.fa-mars-double {
  --fa: "\F227"; }

.fa-child-dress {
  --fa: "\E59C"; }

.fa-users-between-lines {
  --fa: "\E591"; }

.fa-lungs-virus {
  --fa: "\E067"; }

.fa-face-grin-tears {
  --fa: "\F588"; }

.fa-grin-tears {
  --fa: "\F588"; }

.fa-phone {
  --fa: "\F095"; }

.fa-calendar-xmark {
  --fa: "\F273"; }

.fa-calendar-times {
  --fa: "\F273"; }

.fa-child-reaching {
  --fa: "\E59D"; }

.fa-head-side-virus {
  --fa: "\E064"; }

.fa-user-gear {
  --fa: "\F4FE"; }

.fa-user-cog {
  --fa: "\F4FE"; }

.fa-arrow-up-1-9 {
  --fa: "\F163"; }

.fa-sort-numeric-up {
  --fa: "\F163"; }

.fa-door-closed {
  --fa: "\F52A"; }

.fa-shield-virus {
  --fa: "\E06C"; }

.fa-dice-six {
  --fa: "\F526"; }

.fa-mosquito-net {
  --fa: "\E52C"; }

.fa-file-fragment {
  --fa: "\E697"; }

.fa-bridge-water {
  --fa: "\E4CE"; }

.fa-person-booth {
  --fa: "\F756"; }

.fa-text-width {
  --fa: "\F035"; }

.fa-hat-wizard {
  --fa: "\F6E8"; }

.fa-pen-fancy {
  --fa: "\F5AC"; }

.fa-person-digging {
  --fa: "\F85E"; }

.fa-digging {
  --fa: "\F85E"; }

.fa-trash {
  --fa: "\F1F8"; }

.fa-gauge-simple {
  --fa: "\F629"; }

.fa-gauge-simple-med {
  --fa: "\F629"; }

.fa-tachometer-average {
  --fa: "\F629"; }

.fa-book-medical {
  --fa: "\F7E6"; }

.fa-poo {
  --fa: "\F2FE"; }

.fa-quote-right {
  --fa: "\F10E"; }

.fa-quote-right-alt {
  --fa: "\F10E"; }

.fa-shirt {
  --fa: "\F553"; }

.fa-t-shirt {
  --fa: "\F553"; }

.fa-tshirt {
  --fa: "\F553"; }

.fa-cubes {
  --fa: "\F1B3"; }

.fa-divide {
  --fa: "\F529"; }

.fa-tenge-sign {
  --fa: "\F7D7"; }

.fa-tenge {
  --fa: "\F7D7"; }

.fa-headphones {
  --fa: "\F025"; }

.fa-hands-holding {
  --fa: "\F4C2"; }

.fa-hands-clapping {
  --fa: "\E1A8"; }

.fa-republican {
  --fa: "\F75E"; }

.fa-arrow-left {
  --fa: "\F060"; }

.fa-person-circle-xmark {
  --fa: "\E543"; }

.fa-ruler {
  --fa: "\F545"; }

.fa-align-left {
  --fa: "\F036"; }

.fa-dice-d6 {
  --fa: "\F6D1"; }

.fa-restroom {
  --fa: "\F7BD"; }

.fa-j {
  --fa: "J"; }

.fa-users-viewfinder {
  --fa: "\E595"; }

.fa-file-video {
  --fa: "\F1C8"; }

.fa-up-right-from-square {
  --fa: "\F35D"; }

.fa-external-link-alt {
  --fa: "\F35D"; }

.fa-table-cells {
  --fa: "\F00A"; }

.fa-th {
  --fa: "\F00A"; }

.fa-file-pdf {
  --fa: "\F1C1"; }

.fa-book-bible {
  --fa: "\F647"; }

.fa-bible {
  --fa: "\F647"; }

.fa-o {
  --fa: "O"; }

.fa-suitcase-medical {
  --fa: "\F0FA"; }

.fa-medkit {
  --fa: "\F0FA"; }

.fa-user-secret {
  --fa: "\F21B"; }

.fa-otter {
  --fa: "\F700"; }

.fa-person-dress {
  --fa: "\F182"; }

.fa-female {
  --fa: "\F182"; }

.fa-comment-dollar {
  --fa: "\F651"; }

.fa-business-time {
  --fa: "\F64A"; }

.fa-briefcase-clock {
  --fa: "\F64A"; }

.fa-table-cells-large {
  --fa: "\F009"; }

.fa-th-large {
  --fa: "\F009"; }

.fa-book-tanakh {
  --fa: "\F827"; }

.fa-tanakh {
  --fa: "\F827"; }

.fa-phone-volume {
  --fa: "\F2A0"; }

.fa-volume-control-phone {
  --fa: "\F2A0"; }

.fa-hat-cowboy-side {
  --fa: "\F8C1"; }

.fa-clipboard-user {
  --fa: "\F7F3"; }

.fa-child {
  --fa: "\F1AE"; }

.fa-lira-sign {
  --fa: "\F195"; }

.fa-satellite {
  --fa: "\F7BF"; }

.fa-plane-lock {
  --fa: "\E558"; }

.fa-tag {
  --fa: "\F02B"; }

.fa-comment {
  --fa: "\F075"; }

.fa-cake-candles {
  --fa: "\F1FD"; }

.fa-birthday-cake {
  --fa: "\F1FD"; }

.fa-cake {
  --fa: "\F1FD"; }

.fa-envelope {
  --fa: "\F0E0"; }

.fa-angles-up {
  --fa: "\F102"; }

.fa-angle-double-up {
  --fa: "\F102"; }

.fa-paperclip {
  --fa: "\F0C6"; }

.fa-arrow-right-to-city {
  --fa: "\E4B3"; }

.fa-ribbon {
  --fa: "\F4D6"; }

.fa-lungs {
  --fa: "\F604"; }

.fa-arrow-up-9-1 {
  --fa: "\F887"; }

.fa-sort-numeric-up-alt {
  --fa: "\F887"; }

.fa-litecoin-sign {
  --fa: "\E1D3"; }

.fa-border-none {
  --fa: "\F850"; }

.fa-circle-nodes {
  --fa: "\E4E2"; }

.fa-parachute-box {
  --fa: "\F4CD"; }

.fa-indent {
  --fa: "\F03C"; }

.fa-truck-field-un {
  --fa: "\E58E"; }

.fa-hourglass {
  --fa: "\F254"; }

.fa-hourglass-empty {
  --fa: "\F254"; }

.fa-mountain {
  --fa: "\F6FC"; }

.fa-user-doctor {
  --fa: "\F0F0"; }

.fa-user-md {
  --fa: "\F0F0"; }

.fa-circle-info {
  --fa: "\F05A"; }

.fa-info-circle {
  --fa: "\F05A"; }

.fa-cloud-meatball {
  --fa: "\F73B"; }

.fa-camera {
  --fa: "\F030"; }

.fa-camera-alt {
  --fa: "\F030"; }

.fa-square-virus {
  --fa: "\E578"; }

.fa-meteor {
  --fa: "\F753"; }

.fa-car-on {
  --fa: "\E4DD"; }

.fa-sleigh {
  --fa: "\F7CC"; }

.fa-arrow-down-1-9 {
  --fa: "\F162"; }

.fa-sort-numeric-asc {
  --fa: "\F162"; }

.fa-sort-numeric-down {
  --fa: "\F162"; }

.fa-hand-holding-droplet {
  --fa: "\F4C1"; }

.fa-hand-holding-water {
  --fa: "\F4C1"; }

.fa-water {
  --fa: "\F773"; }

.fa-calendar-check {
  --fa: "\F274"; }

.fa-braille {
  --fa: "\F2A1"; }

.fa-prescription-bottle-medical {
  --fa: "\F486"; }

.fa-prescription-bottle-alt {
  --fa: "\F486"; }

.fa-landmark {
  --fa: "\F66F"; }

.fa-truck {
  --fa: "\F0D1"; }

.fa-crosshairs {
  --fa: "\F05B"; }

.fa-person-cane {
  --fa: "\E53C"; }

.fa-tent {
  --fa: "\E57D"; }

.fa-vest-patches {
  --fa: "\E086"; }

.fa-check-double {
  --fa: "\F560"; }

.fa-arrow-down-a-z {
  --fa: "\F15D"; }

.fa-sort-alpha-asc {
  --fa: "\F15D"; }

.fa-sort-alpha-down {
  --fa: "\F15D"; }

.fa-money-bill-wheat {
  --fa: "\E52A"; }

.fa-cookie {
  --fa: "\F563"; }

.fa-arrow-rotate-left {
  --fa: "\F0E2"; }

.fa-arrow-left-rotate {
  --fa: "\F0E2"; }

.fa-arrow-rotate-back {
  --fa: "\F0E2"; }

.fa-arrow-rotate-backward {
  --fa: "\F0E2"; }

.fa-undo {
  --fa: "\F0E2"; }

.fa-hard-drive {
  --fa: "\F0A0"; }

.fa-hdd {
  --fa: "\F0A0"; }

.fa-face-grin-squint-tears {
  --fa: "\F586"; }

.fa-grin-squint-tears {
  --fa: "\F586"; }

.fa-dumbbell {
  --fa: "\F44B"; }

.fa-rectangle-list {
  --fa: "\F022"; }

.fa-list-alt {
  --fa: "\F022"; }

.fa-tarp-droplet {
  --fa: "\E57C"; }

.fa-house-medical-circle-check {
  --fa: "\E511"; }

.fa-person-skiing-nordic {
  --fa: "\F7CA"; }

.fa-skiing-nordic {
  --fa: "\F7CA"; }

.fa-calendar-plus {
  --fa: "\F271"; }

.fa-plane-arrival {
  --fa: "\F5AF"; }

.fa-circle-left {
  --fa: "\F359"; }

.fa-arrow-alt-circle-left {
  --fa: "\F359"; }

.fa-train-subway {
  --fa: "\F239"; }

.fa-subway {
  --fa: "\F239"; }

.fa-chart-gantt {
  --fa: "\E0E4"; }

.fa-indian-rupee-sign {
  --fa: "\E1BC"; }

.fa-indian-rupee {
  --fa: "\E1BC"; }

.fa-inr {
  --fa: "\E1BC"; }

.fa-crop-simple {
  --fa: "\F565"; }

.fa-crop-alt {
  --fa: "\F565"; }

.fa-money-bill-1 {
  --fa: "\F3D1"; }

.fa-money-bill-alt {
  --fa: "\F3D1"; }

.fa-left-long {
  --fa: "\F30A"; }

.fa-long-arrow-alt-left {
  --fa: "\F30A"; }

.fa-dna {
  --fa: "\F471"; }

.fa-virus-slash {
  --fa: "\E075"; }

.fa-minus {
  --fa: "\F068"; }

.fa-subtract {
  --fa: "\F068"; }

.fa-chess {
  --fa: "\F439"; }

.fa-arrow-left-long {
  --fa: "\F177"; }

.fa-long-arrow-left {
  --fa: "\F177"; }

.fa-plug-circle-check {
  --fa: "\E55C"; }

.fa-street-view {
  --fa: "\F21D"; }

.fa-franc-sign {
  --fa: "\E18F"; }

.fa-volume-off {
  --fa: "\F026"; }

.fa-hands-asl-interpreting {
  --fa: "\F2A3"; }

.fa-american-sign-language-interpreting {
  --fa: "\F2A3"; }

.fa-asl-interpreting {
  --fa: "\F2A3"; }

.fa-hands-american-sign-language-interpreting {
  --fa: "\F2A3"; }

.fa-gear {
  --fa: "\F013"; }

.fa-cog {
  --fa: "\F013"; }

.fa-droplet-slash {
  --fa: "\F5C7"; }

.fa-tint-slash {
  --fa: "\F5C7"; }

.fa-mosque {
  --fa: "\F678"; }

.fa-mosquito {
  --fa: "\E52B"; }

.fa-star-of-david {
  --fa: "\F69A"; }

.fa-person-military-rifle {
  --fa: "\E54B"; }

.fa-cart-shopping {
  --fa: "\F07A"; }

.fa-shopping-cart {
  --fa: "\F07A"; }

.fa-vials {
  --fa: "\F493"; }

.fa-plug-circle-plus {
  --fa: "\E55F"; }

.fa-place-of-worship {
  --fa: "\F67F"; }

.fa-grip-vertical {
  --fa: "\F58E"; }

.fa-hexagon-nodes {
  --fa: "\E699"; }

.fa-arrow-turn-up {
  --fa: "\F148"; }

.fa-level-up {
  --fa: "\F148"; }

.fa-u {
  --fa: "U"; }

.fa-square-root-variable {
  --fa: "\F698"; }

.fa-square-root-alt {
  --fa: "\F698"; }

.fa-clock {
  --fa: "\F017"; }

.fa-clock-four {
  --fa: "\F017"; }

.fa-backward-step {
  --fa: "\F048"; }

.fa-step-backward {
  --fa: "\F048"; }

.fa-pallet {
  --fa: "\F482"; }

.fa-faucet {
  --fa: "\E005"; }

.fa-baseball-bat-ball {
  --fa: "\F432"; }

.fa-s {
  --fa: "S"; }

.fa-timeline {
  --fa: "\E29C"; }

.fa-keyboard {
  --fa: "\F11C"; }

.fa-caret-down {
  --fa: "\F0D7"; }

.fa-house-chimney-medical {
  --fa: "\F7F2"; }

.fa-clinic-medical {
  --fa: "\F7F2"; }

.fa-temperature-three-quarters {
  --fa: "\F2C8"; }

.fa-temperature-3 {
  --fa: "\F2C8"; }

.fa-thermometer-3 {
  --fa: "\F2C8"; }

.fa-thermometer-three-quarters {
  --fa: "\F2C8"; }

.fa-mobile-screen {
  --fa: "\F3CF"; }

.fa-mobile-android-alt {
  --fa: "\F3CF"; }

.fa-plane-up {
  --fa: "\E22D"; }

.fa-piggy-bank {
  --fa: "\F4D3"; }

.fa-battery-half {
  --fa: "\F242"; }

.fa-battery-3 {
  --fa: "\F242"; }

.fa-mountain-city {
  --fa: "\E52E"; }

.fa-coins {
  --fa: "\F51E"; }

.fa-khanda {
  --fa: "\F66D"; }

.fa-sliders {
  --fa: "\F1DE"; }

.fa-sliders-h {
  --fa: "\F1DE"; }

.fa-folder-tree {
  --fa: "\F802"; }

.fa-network-wired {
  --fa: "\F6FF"; }

.fa-map-pin {
  --fa: "\F276"; }

.fa-hamsa {
  --fa: "\F665"; }

.fa-cent-sign {
  --fa: "\E3F5"; }

.fa-flask {
  --fa: "\F0C3"; }

.fa-person-pregnant {
  --fa: "\E31E"; }

.fa-wand-sparkles {
  --fa: "\F72B"; }

.fa-ellipsis-vertical {
  --fa: "\F142"; }

.fa-ellipsis-v {
  --fa: "\F142"; }

.fa-ticket {
  --fa: "\F145"; }

.fa-power-off {
  --fa: "\F011"; }

.fa-right-long {
  --fa: "\F30B"; }

.fa-long-arrow-alt-right {
  --fa: "\F30B"; }

.fa-flag-usa {
  --fa: "\F74D"; }

.fa-laptop-file {
  --fa: "\E51D"; }

.fa-tty {
  --fa: "\F1E4"; }

.fa-teletype {
  --fa: "\F1E4"; }

.fa-diagram-next {
  --fa: "\E476"; }

.fa-person-rifle {
  --fa: "\E54E"; }

.fa-house-medical-circle-exclamation {
  --fa: "\E512"; }

.fa-closed-captioning {
  --fa: "\F20A"; }

.fa-person-hiking {
  --fa: "\F6EC"; }

.fa-hiking {
  --fa: "\F6EC"; }

.fa-venus-double {
  --fa: "\F226"; }

.fa-images {
  --fa: "\F302"; }

.fa-calculator {
  --fa: "\F1EC"; }

.fa-people-pulling {
  --fa: "\E535"; }

.fa-n {
  --fa: "N"; }

.fa-cable-car {
  --fa: "\F7DA"; }

.fa-tram {
  --fa: "\F7DA"; }

.fa-cloud-rain {
  --fa: "\F73D"; }

.fa-building-circle-xmark {
  --fa: "\E4D4"; }

.fa-ship {
  --fa: "\F21A"; }

.fa-arrows-down-to-line {
  --fa: "\E4B8"; }

.fa-download {
  --fa: "\F019"; }

.fa-face-grin {
  --fa: "\F580"; }

.fa-grin {
  --fa: "\F580"; }

.fa-delete-left {
  --fa: "\F55A"; }

.fa-backspace {
  --fa: "\F55A"; }

.fa-eye-dropper {
  --fa: "\F1FB"; }

.fa-eye-dropper-empty {
  --fa: "\F1FB"; }

.fa-eyedropper {
  --fa: "\F1FB"; }

.fa-file-circle-check {
  --fa: "\E5A0"; }

.fa-forward {
  --fa: "\F04E"; }

.fa-mobile {
  --fa: "\F3CE"; }

.fa-mobile-android {
  --fa: "\F3CE"; }

.fa-mobile-phone {
  --fa: "\F3CE"; }

.fa-face-meh {
  --fa: "\F11A"; }

.fa-meh {
  --fa: "\F11A"; }

.fa-align-center {
  --fa: "\F037"; }

.fa-book-skull {
  --fa: "\F6B7"; }

.fa-book-dead {
  --fa: "\F6B7"; }

.fa-id-card {
  --fa: "\F2C2"; }

.fa-drivers-license {
  --fa: "\F2C2"; }

.fa-outdent {
  --fa: "\F03B"; }

.fa-dedent {
  --fa: "\F03B"; }

.fa-heart-circle-exclamation {
  --fa: "\E4FE"; }

.fa-house {
  --fa: "\F015"; }

.fa-home {
  --fa: "\F015"; }

.fa-home-alt {
  --fa: "\F015"; }

.fa-home-lg-alt {
  --fa: "\F015"; }

.fa-calendar-week {
  --fa: "\F784"; }

.fa-laptop-medical {
  --fa: "\F812"; }

.fa-b {
  --fa: "B"; }

.fa-file-medical {
  --fa: "\F477"; }

.fa-dice-one {
  --fa: "\F525"; }

.fa-kiwi-bird {
  --fa: "\F535"; }

.fa-arrow-right-arrow-left {
  --fa: "\F0EC"; }

.fa-exchange {
  --fa: "\F0EC"; }

.fa-rotate-right {
  --fa: "\F2F9"; }

.fa-redo-alt {
  --fa: "\F2F9"; }

.fa-rotate-forward {
  --fa: "\F2F9"; }

.fa-utensils {
  --fa: "\F2E7"; }

.fa-cutlery {
  --fa: "\F2E7"; }

.fa-arrow-up-wide-short {
  --fa: "\F161"; }

.fa-sort-amount-up {
  --fa: "\F161"; }

.fa-mill-sign {
  --fa: "\E1ED"; }

.fa-bowl-rice {
  --fa: "\E2EB"; }

.fa-skull {
  --fa: "\F54C"; }

.fa-tower-broadcast {
  --fa: "\F519"; }

.fa-broadcast-tower {
  --fa: "\F519"; }

.fa-truck-pickup {
  --fa: "\F63C"; }

.fa-up-long {
  --fa: "\F30C"; }

.fa-long-arrow-alt-up {
  --fa: "\F30C"; }

.fa-stop {
  --fa: "\F04D"; }

.fa-code-merge {
  --fa: "\F387"; }

.fa-upload {
  --fa: "\F093"; }

.fa-hurricane {
  --fa: "\F751"; }

.fa-mound {
  --fa: "\E52D"; }

.fa-toilet-portable {
  --fa: "\E583"; }

.fa-compact-disc {
  --fa: "\F51F"; }

.fa-file-arrow-down {
  --fa: "\F56D"; }

.fa-file-download {
  --fa: "\F56D"; }

.fa-caravan {
  --fa: "\F8FF"; }

.fa-shield-cat {
  --fa: "\E572"; }

.fa-bolt {
  --fa: "\F0E7"; }

.fa-zap {
  --fa: "\F0E7"; }

.fa-glass-water {
  --fa: "\E4F4"; }

.fa-oil-well {
  --fa: "\E532"; }

.fa-vault {
  --fa: "\E2C5"; }

.fa-mars {
  --fa: "\F222"; }

.fa-toilet {
  --fa: "\F7D8"; }

.fa-plane-circle-xmark {
  --fa: "\E557"; }

.fa-yen-sign {
  --fa: "\F157"; }

.fa-cny {
  --fa: "\F157"; }

.fa-jpy {
  --fa: "\F157"; }

.fa-rmb {
  --fa: "\F157"; }

.fa-yen {
  --fa: "\F157"; }

.fa-ruble-sign {
  --fa: "\F158"; }

.fa-rouble {
  --fa: "\F158"; }

.fa-rub {
  --fa: "\F158"; }

.fa-ruble {
  --fa: "\F158"; }

.fa-sun {
  --fa: "\F185"; }

.fa-guitar {
  --fa: "\F7A6"; }

.fa-face-laugh-wink {
  --fa: "\F59C"; }

.fa-laugh-wink {
  --fa: "\F59C"; }

.fa-horse-head {
  --fa: "\F7AB"; }

.fa-bore-hole {
  --fa: "\E4C3"; }

.fa-industry {
  --fa: "\F275"; }

.fa-circle-down {
  --fa: "\F358"; }

.fa-arrow-alt-circle-down {
  --fa: "\F358"; }

.fa-arrows-turn-to-dots {
  --fa: "\E4C1"; }

.fa-florin-sign {
  --fa: "\E184"; }

.fa-arrow-down-short-wide {
  --fa: "\F884"; }

.fa-sort-amount-desc {
  --fa: "\F884"; }

.fa-sort-amount-down-alt {
  --fa: "\F884"; }

.fa-less-than {
  --fa: "<"; }

.fa-angle-down {
  --fa: "\F107"; }

.fa-car-tunnel {
  --fa: "\E4DE"; }

.fa-head-side-cough {
  --fa: "\E061"; }

.fa-grip-lines {
  --fa: "\F7A4"; }

.fa-thumbs-down {
  --fa: "\F165"; }

.fa-user-lock {
  --fa: "\F502"; }

.fa-arrow-right-long {
  --fa: "\F178"; }

.fa-long-arrow-right {
  --fa: "\F178"; }

.fa-anchor-circle-xmark {
  --fa: "\E4AC"; }

.fa-ellipsis {
  --fa: "\F141"; }

.fa-ellipsis-h {
  --fa: "\F141"; }

.fa-chess-pawn {
  --fa: "\F443"; }

.fa-kit-medical {
  --fa: "\F479"; }

.fa-first-aid {
  --fa: "\F479"; }

.fa-person-through-window {
  --fa: "\E5A9"; }

.fa-toolbox {
  --fa: "\F552"; }

.fa-hands-holding-circle {
  --fa: "\E4FB"; }

.fa-bug {
  --fa: "\F188"; }

.fa-credit-card {
  --fa: "\F09D"; }

.fa-credit-card-alt {
  --fa: "\F09D"; }

.fa-car {
  --fa: "\F1B9"; }

.fa-automobile {
  --fa: "\F1B9"; }

.fa-hand-holding-hand {
  --fa: "\E4F7"; }

.fa-book-open-reader {
  --fa: "\F5DA"; }

.fa-book-reader {
  --fa: "\F5DA"; }

.fa-mountain-sun {
  --fa: "\E52F"; }

.fa-arrows-left-right-to-line {
  --fa: "\E4BA"; }

.fa-dice-d20 {
  --fa: "\F6CF"; }

.fa-truck-droplet {
  --fa: "\E58C"; }

.fa-file-circle-xmark {
  --fa: "\E5A1"; }

.fa-temperature-arrow-up {
  --fa: "\E040"; }

.fa-temperature-up {
  --fa: "\E040"; }

.fa-medal {
  --fa: "\F5A2"; }

.fa-bed {
  --fa: "\F236"; }

.fa-square-h {
  --fa: "\F0FD"; }

.fa-h-square {
  --fa: "\F0FD"; }

.fa-podcast {
  --fa: "\F2CE"; }

.fa-temperature-full {
  --fa: "\F2C7"; }

.fa-temperature-4 {
  --fa: "\F2C7"; }

.fa-thermometer-4 {
  --fa: "\F2C7"; }

.fa-thermometer-full {
  --fa: "\F2C7"; }

.fa-bell {
  --fa: "\F0F3"; }

.fa-superscript {
  --fa: "\F12B"; }

.fa-plug-circle-xmark {
  --fa: "\E560"; }

.fa-star-of-life {
  --fa: "\F621"; }

.fa-phone-slash {
  --fa: "\F3DD"; }

.fa-paint-roller {
  --fa: "\F5AA"; }

.fa-handshake-angle {
  --fa: "\F4C4"; }

.fa-hands-helping {
  --fa: "\F4C4"; }

.fa-location-dot {
  --fa: "\F3C5"; }

.fa-map-marker-alt {
  --fa: "\F3C5"; }

.fa-file {
  --fa: "\F15B"; }

.fa-greater-than {
  --fa: ">"; }

.fa-person-swimming {
  --fa: "\F5C4"; }

.fa-swimmer {
  --fa: "\F5C4"; }

.fa-arrow-down {
  --fa: "\F063"; }

.fa-droplet {
  --fa: "\F043"; }

.fa-tint {
  --fa: "\F043"; }

.fa-eraser {
  --fa: "\F12D"; }

.fa-earth-americas {
  --fa: "\F57D"; }

.fa-earth {
  --fa: "\F57D"; }

.fa-earth-america {
  --fa: "\F57D"; }

.fa-globe-americas {
  --fa: "\F57D"; }

.fa-person-burst {
  --fa: "\E53B"; }

.fa-dove {
  --fa: "\F4BA"; }

.fa-battery-empty {
  --fa: "\F244"; }

.fa-battery-0 {
  --fa: "\F244"; }

.fa-socks {
  --fa: "\F696"; }

.fa-inbox {
  --fa: "\F01C"; }

.fa-section {
  --fa: "\E447"; }

.fa-gauge-high {
  --fa: "\F625"; }

.fa-tachometer-alt {
  --fa: "\F625"; }

.fa-tachometer-alt-fast {
  --fa: "\F625"; }

.fa-envelope-open-text {
  --fa: "\F658"; }

.fa-hospital {
  --fa: "\F0F8"; }

.fa-hospital-alt {
  --fa: "\F0F8"; }

.fa-hospital-wide {
  --fa: "\F0F8"; }

.fa-wine-bottle {
  --fa: "\F72F"; }

.fa-chess-rook {
  --fa: "\F447"; }

.fa-bars-staggered {
  --fa: "\F550"; }

.fa-reorder {
  --fa: "\F550"; }

.fa-stream {
  --fa: "\F550"; }

.fa-dharmachakra {
  --fa: "\F655"; }

.fa-hotdog {
  --fa: "\F80F"; }

.fa-person-walking-with-cane {
  --fa: "\F29D"; }

.fa-blind {
  --fa: "\F29D"; }

.fa-drum {
  --fa: "\F569"; }

.fa-ice-cream {
  --fa: "\F810"; }

.fa-heart-circle-bolt {
  --fa: "\E4FC"; }

.fa-fax {
  --fa: "\F1AC"; }

.fa-paragraph {
  --fa: "\F1DD"; }

.fa-check-to-slot {
  --fa: "\F772"; }

.fa-vote-yea {
  --fa: "\F772"; }

.fa-star-half {
  --fa: "\F089"; }

.fa-boxes-stacked {
  --fa: "\F468"; }

.fa-boxes {
  --fa: "\F468"; }

.fa-boxes-alt {
  --fa: "\F468"; }

.fa-link {
  --fa: "\F0C1"; }

.fa-chain {
  --fa: "\F0C1"; }

.fa-ear-listen {
  --fa: "\F2A2"; }

.fa-assistive-listening-systems {
  --fa: "\F2A2"; }

.fa-tree-city {
  --fa: "\E587"; }

.fa-play {
  --fa: "\F04B"; }

.fa-font {
  --fa: "\F031"; }

.fa-table-cells-row-lock {
  --fa: "\E67A"; }

.fa-rupiah-sign {
  --fa: "\E23D"; }

.fa-magnifying-glass {
  --fa: "\F002"; }

.fa-search {
  --fa: "\F002"; }

.fa-table-tennis-paddle-ball {
  --fa: "\F45D"; }

.fa-ping-pong-paddle-ball {
  --fa: "\F45D"; }

.fa-table-tennis {
  --fa: "\F45D"; }

.fa-person-dots-from-line {
  --fa: "\F470"; }

.fa-diagnoses {
  --fa: "\F470"; }

.fa-trash-can-arrow-up {
  --fa: "\F82A"; }

.fa-trash-restore-alt {
  --fa: "\F82A"; }

.fa-naira-sign {
  --fa: "\E1F6"; }

.fa-cart-arrow-down {
  --fa: "\F218"; }

.fa-walkie-talkie {
  --fa: "\F8EF"; }

.fa-file-pen {
  --fa: "\F31C"; }

.fa-file-edit {
  --fa: "\F31C"; }

.fa-receipt {
  --fa: "\F543"; }

.fa-square-pen {
  --fa: "\F14B"; }

.fa-pen-square {
  --fa: "\F14B"; }

.fa-pencil-square {
  --fa: "\F14B"; }

.fa-suitcase-rolling {
  --fa: "\F5C1"; }

.fa-person-circle-exclamation {
  --fa: "\E53F"; }

.fa-chevron-down {
  --fa: "\F078"; }

.fa-battery-full {
  --fa: "\F240"; }

.fa-battery {
  --fa: "\F240"; }

.fa-battery-5 {
  --fa: "\F240"; }

.fa-skull-crossbones {
  --fa: "\F714"; }

.fa-code-compare {
  --fa: "\E13A"; }

.fa-list-ul {
  --fa: "\F0CA"; }

.fa-list-dots {
  --fa: "\F0CA"; }

.fa-school-lock {
  --fa: "\E56F"; }

.fa-tower-cell {
  --fa: "\E585"; }

.fa-down-long {
  --fa: "\F309"; }

.fa-long-arrow-alt-down {
  --fa: "\F309"; }

.fa-ranking-star {
  --fa: "\E561"; }

.fa-chess-king {
  --fa: "\F43F"; }

.fa-person-harassing {
  --fa: "\E549"; }

.fa-brazilian-real-sign {
  --fa: "\E46C"; }

.fa-landmark-dome {
  --fa: "\F752"; }

.fa-landmark-alt {
  --fa: "\F752"; }

.fa-arrow-up {
  --fa: "\F062"; }

.fa-tv {
  --fa: "\F26C"; }

.fa-television {
  --fa: "\F26C"; }

.fa-tv-alt {
  --fa: "\F26C"; }

.fa-shrimp {
  --fa: "\E448"; }

.fa-list-check {
  --fa: "\F0AE"; }

.fa-tasks {
  --fa: "\F0AE"; }

.fa-jug-detergent {
  --fa: "\E519"; }

.fa-circle-user {
  --fa: "\F2BD"; }

.fa-user-circle {
  --fa: "\F2BD"; }

.fa-user-shield {
  --fa: "\F505"; }

.fa-wind {
  --fa: "\F72E"; }

.fa-car-burst {
  --fa: "\F5E1"; }

.fa-car-crash {
  --fa: "\F5E1"; }

.fa-y {
  --fa: "Y"; }

.fa-person-snowboarding {
  --fa: "\F7CE"; }

.fa-snowboarding {
  --fa: "\F7CE"; }

.fa-truck-fast {
  --fa: "\F48B"; }

.fa-shipping-fast {
  --fa: "\F48B"; }

.fa-fish {
  --fa: "\F578"; }

.fa-user-graduate {
  --fa: "\F501"; }

.fa-circle-half-stroke {
  --fa: "\F042"; }

.fa-adjust {
  --fa: "\F042"; }

.fa-clapperboard {
  --fa: "\E131"; }

.fa-circle-radiation {
  --fa: "\F7BA"; }

.fa-radiation-alt {
  --fa: "\F7BA"; }

.fa-baseball {
  --fa: "\F433"; }

.fa-baseball-ball {
  --fa: "\F433"; }

.fa-jet-fighter-up {
  --fa: "\E518"; }

.fa-diagram-project {
  --fa: "\F542"; }

.fa-project-diagram {
  --fa: "\F542"; }

.fa-copy {
  --fa: "\F0C5"; }

.fa-volume-xmark {
  --fa: "\F6A9"; }

.fa-volume-mute {
  --fa: "\F6A9"; }

.fa-volume-times {
  --fa: "\F6A9"; }

.fa-hand-sparkles {
  --fa: "\E05D"; }

.fa-grip {
  --fa: "\F58D"; }

.fa-grip-horizontal {
  --fa: "\F58D"; }

.fa-share-from-square {
  --fa: "\F14D"; }

.fa-share-square {
  --fa: "\F14D"; }

.fa-child-combatant {
  --fa: "\E4E0"; }

.fa-child-rifle {
  --fa: "\E4E0"; }

.fa-gun {
  --fa: "\E19B"; }

.fa-square-phone {
  --fa: "\F098"; }

.fa-phone-square {
  --fa: "\F098"; }

.fa-plus {
  --fa: "+"; }

.fa-add {
  --fa: "+"; }

.fa-expand {
  --fa: "\F065"; }

.fa-computer {
  --fa: "\E4E5"; }

.fa-xmark {
  --fa: "\F00D"; }

.fa-close {
  --fa: "\F00D"; }

.fa-multiply {
  --fa: "\F00D"; }

.fa-remove {
  --fa: "\F00D"; }

.fa-times {
  --fa: "\F00D"; }

.fa-arrows-up-down-left-right {
  --fa: "\F047"; }

.fa-arrows {
  --fa: "\F047"; }

.fa-chalkboard-user {
  --fa: "\F51C"; }

.fa-chalkboard-teacher {
  --fa: "\F51C"; }

.fa-peso-sign {
  --fa: "\E222"; }

.fa-building-shield {
  --fa: "\E4D8"; }

.fa-baby {
  --fa: "\F77C"; }

.fa-users-line {
  --fa: "\E592"; }

.fa-quote-left {
  --fa: "\F10D"; }

.fa-quote-left-alt {
  --fa: "\F10D"; }

.fa-tractor {
  --fa: "\F722"; }

.fa-trash-arrow-up {
  --fa: "\F829"; }

.fa-trash-restore {
  --fa: "\F829"; }

.fa-arrow-down-up-lock {
  --fa: "\E4B0"; }

.fa-lines-leaning {
  --fa: "\E51E"; }

.fa-ruler-combined {
  --fa: "\F546"; }

.fa-copyright {
  --fa: "\F1F9"; }

.fa-equals {
  --fa: "="; }

.fa-blender {
  --fa: "\F517"; }

.fa-teeth {
  --fa: "\F62E"; }

.fa-shekel-sign {
  --fa: "\F20B"; }

.fa-ils {
  --fa: "\F20B"; }

.fa-shekel {
  --fa: "\F20B"; }

.fa-sheqel {
  --fa: "\F20B"; }

.fa-sheqel-sign {
  --fa: "\F20B"; }

.fa-map {
  --fa: "\F279"; }

.fa-rocket {
  --fa: "\F135"; }

.fa-photo-film {
  --fa: "\F87C"; }

.fa-photo-video {
  --fa: "\F87C"; }

.fa-folder-minus {
  --fa: "\F65D"; }

.fa-hexagon-nodes-bolt {
  --fa: "\E69A"; }

.fa-store {
  --fa: "\F54E"; }

.fa-arrow-trend-up {
  --fa: "\E098"; }

.fa-plug-circle-minus {
  --fa: "\E55E"; }

.fa-sign-hanging {
  --fa: "\F4D9"; }

.fa-sign {
  --fa: "\F4D9"; }

.fa-bezier-curve {
  --fa: "\F55B"; }

.fa-bell-slash {
  --fa: "\F1F6"; }

.fa-tablet {
  --fa: "\F3FB"; }

.fa-tablet-android {
  --fa: "\F3FB"; }

.fa-school-flag {
  --fa: "\E56E"; }

.fa-fill {
  --fa: "\F575"; }

.fa-angle-up {
  --fa: "\F106"; }

.fa-drumstick-bite {
  --fa: "\F6D7"; }

.fa-holly-berry {
  --fa: "\F7AA"; }

.fa-chevron-left {
  --fa: "\F053"; }

.fa-bacteria {
  --fa: "\E059"; }

.fa-hand-lizard {
  --fa: "\F258"; }

.fa-notdef {
  --fa: "\E1FE"; }

.fa-disease {
  --fa: "\F7FA"; }

.fa-briefcase-medical {
  --fa: "\F469"; }

.fa-genderless {
  --fa: "\F22D"; }

.fa-chevron-right {
  --fa: "\F054"; }

.fa-retweet {
  --fa: "\F079"; }

.fa-car-rear {
  --fa: "\F5DE"; }

.fa-car-alt {
  --fa: "\F5DE"; }

.fa-pump-soap {
  --fa: "\E06B"; }

.fa-video-slash {
  --fa: "\F4E2"; }

.fa-battery-quarter {
  --fa: "\F243"; }

.fa-battery-2 {
  --fa: "\F243"; }

.fa-radio {
  --fa: "\F8D7"; }

.fa-baby-carriage {
  --fa: "\F77D"; }

.fa-carriage-baby {
  --fa: "\F77D"; }

.fa-traffic-light {
  --fa: "\F637"; }

.fa-thermometer {
  --fa: "\F491"; }

.fa-vr-cardboard {
  --fa: "\F729"; }

.fa-hand-middle-finger {
  --fa: "\F806"; }

.fa-percent {
  --fa: "%"; }

.fa-percentage {
  --fa: "%"; }

.fa-truck-moving {
  --fa: "\F4DF"; }

.fa-glass-water-droplet {
  --fa: "\E4F5"; }

.fa-display {
  --fa: "\E163"; }

.fa-face-smile {
  --fa: "\F118"; }

.fa-smile {
  --fa: "\F118"; }

.fa-thumbtack {
  --fa: "\F08D"; }

.fa-thumb-tack {
  --fa: "\F08D"; }

.fa-trophy {
  --fa: "\F091"; }

.fa-person-praying {
  --fa: "\F683"; }

.fa-pray {
  --fa: "\F683"; }

.fa-hammer {
  --fa: "\F6E3"; }

.fa-hand-peace {
  --fa: "\F25B"; }

.fa-rotate {
  --fa: "\F2F1"; }

.fa-sync-alt {
  --fa: "\F2F1"; }

.fa-spinner {
  --fa: "\F110"; }

.fa-robot {
  --fa: "\F544"; }

.fa-peace {
  --fa: "\F67C"; }

.fa-gears {
  --fa: "\F085"; }

.fa-cogs {
  --fa: "\F085"; }

.fa-warehouse {
  --fa: "\F494"; }

.fa-arrow-up-right-dots {
  --fa: "\E4B7"; }

.fa-splotch {
  --fa: "\F5BC"; }

.fa-face-grin-hearts {
  --fa: "\F584"; }

.fa-grin-hearts {
  --fa: "\F584"; }

.fa-dice-four {
  --fa: "\F524"; }

.fa-sim-card {
  --fa: "\F7C4"; }

.fa-transgender {
  --fa: "\F225"; }

.fa-transgender-alt {
  --fa: "\F225"; }

.fa-mercury {
  --fa: "\F223"; }

.fa-arrow-turn-down {
  --fa: "\F149"; }

.fa-level-down {
  --fa: "\F149"; }

.fa-person-falling-burst {
  --fa: "\E547"; }

.fa-award {
  --fa: "\F559"; }

.fa-ticket-simple {
  --fa: "\F3FF"; }

.fa-ticket-alt {
  --fa: "\F3FF"; }

.fa-building {
  --fa: "\F1AD"; }

.fa-angles-left {
  --fa: "\F100"; }

.fa-angle-double-left {
  --fa: "\F100"; }

.fa-qrcode {
  --fa: "\F029"; }

.fa-clock-rotate-left {
  --fa: "\F1DA"; }

.fa-history {
  --fa: "\F1DA"; }

.fa-face-grin-beam-sweat {
  --fa: "\F583"; }

.fa-grin-beam-sweat {
  --fa: "\F583"; }

.fa-file-export {
  --fa: "\F56E"; }

.fa-arrow-right-from-file {
  --fa: "\F56E"; }

.fa-shield {
  --fa: "\F132"; }

.fa-shield-blank {
  --fa: "\F132"; }

.fa-arrow-up-short-wide {
  --fa: "\F885"; }

.fa-sort-amount-up-alt {
  --fa: "\F885"; }

.fa-comment-nodes {
  --fa: "\E696"; }

.fa-house-medical {
  --fa: "\E3B2"; }

.fa-golf-ball-tee {
  --fa: "\F450"; }

.fa-golf-ball {
  --fa: "\F450"; }

.fa-circle-chevron-left {
  --fa: "\F137"; }

.fa-chevron-circle-left {
  --fa: "\F137"; }

.fa-house-chimney-window {
  --fa: "\E00D"; }

.fa-pen-nib {
  --fa: "\F5AD"; }

.fa-tent-arrow-turn-left {
  --fa: "\E580"; }

.fa-tents {
  --fa: "\E582"; }

.fa-wand-magic {
  --fa: "\F0D0"; }

.fa-magic {
  --fa: "\F0D0"; }

.fa-dog {
  --fa: "\F6D3"; }

.fa-carrot {
  --fa: "\F787"; }

.fa-moon {
  --fa: "\F186"; }

.fa-wine-glass-empty {
  --fa: "\F5CE"; }

.fa-wine-glass-alt {
  --fa: "\F5CE"; }

.fa-cheese {
  --fa: "\F7EF"; }

.fa-yin-yang {
  --fa: "\F6AD"; }

.fa-music {
  --fa: "\F001"; }

.fa-code-commit {
  --fa: "\F386"; }

.fa-temperature-low {
  --fa: "\F76B"; }

.fa-person-biking {
  --fa: "\F84A"; }

.fa-biking {
  --fa: "\F84A"; }

.fa-broom {
  --fa: "\F51A"; }

.fa-shield-heart {
  --fa: "\E574"; }

.fa-gopuram {
  --fa: "\F664"; }

.fa-earth-oceania {
  --fa: "\E47B"; }

.fa-globe-oceania {
  --fa: "\E47B"; }

.fa-square-xmark {
  --fa: "\F2D3"; }

.fa-times-square {
  --fa: "\F2D3"; }

.fa-xmark-square {
  --fa: "\F2D3"; }

.fa-hashtag {
  --fa: "#"; }

.fa-up-right-and-down-left-from-center {
  --fa: "\F424"; }

.fa-expand-alt {
  --fa: "\F424"; }

.fa-oil-can {
  --fa: "\F613"; }

.fa-t {
  --fa: "T"; }

.fa-hippo {
  --fa: "\F6ED"; }

.fa-chart-column {
  --fa: "\E0E3"; }

.fa-infinity {
  --fa: "\F534"; }

.fa-vial-circle-check {
  --fa: "\E596"; }

.fa-person-arrow-down-to-line {
  --fa: "\E538"; }

.fa-voicemail {
  --fa: "\F897"; }

.fa-fan {
  --fa: "\F863"; }

.fa-person-walking-luggage {
  --fa: "\E554"; }

.fa-up-down {
  --fa: "\F338"; }

.fa-arrows-alt-v {
  --fa: "\F338"; }

.fa-cloud-moon-rain {
  --fa: "\F73C"; }

.fa-calendar {
  --fa: "\F133"; }

.fa-trailer {
  --fa: "\E041"; }

.fa-bahai {
  --fa: "\F666"; }

.fa-haykal {
  --fa: "\F666"; }

.fa-sd-card {
  --fa: "\F7C2"; }

.fa-dragon {
  --fa: "\F6D5"; }

.fa-shoe-prints {
  --fa: "\F54B"; }

.fa-circle-plus {
  --fa: "\F055"; }

.fa-plus-circle {
  --fa: "\F055"; }

.fa-face-grin-tongue-wink {
  --fa: "\F58B"; }

.fa-grin-tongue-wink {
  --fa: "\F58B"; }

.fa-hand-holding {
  --fa: "\F4BD"; }

.fa-plug-circle-exclamation {
  --fa: "\E55D"; }

.fa-link-slash {
  --fa: "\F127"; }

.fa-chain-broken {
  --fa: "\F127"; }

.fa-chain-slash {
  --fa: "\F127"; }

.fa-unlink {
  --fa: "\F127"; }

.fa-clone {
  --fa: "\F24D"; }

.fa-person-walking-arrow-loop-left {
  --fa: "\E551"; }

.fa-arrow-up-z-a {
  --fa: "\F882"; }

.fa-sort-alpha-up-alt {
  --fa: "\F882"; }

.fa-fire-flame-curved {
  --fa: "\F7E4"; }

.fa-fire-alt {
  --fa: "\F7E4"; }

.fa-tornado {
  --fa: "\F76F"; }

.fa-file-circle-plus {
  --fa: "\E494"; }

.fa-book-quran {
  --fa: "\F687"; }

.fa-quran {
  --fa: "\F687"; }

.fa-anchor {
  --fa: "\F13D"; }

.fa-border-all {
  --fa: "\F84C"; }

.fa-face-angry {
  --fa: "\F556"; }

.fa-angry {
  --fa: "\F556"; }

.fa-cookie-bite {
  --fa: "\F564"; }

.fa-arrow-trend-down {
  --fa: "\E097"; }

.fa-rss {
  --fa: "\F09E"; }

.fa-feed {
  --fa: "\F09E"; }

.fa-draw-polygon {
  --fa: "\F5EE"; }

.fa-scale-balanced {
  --fa: "\F24E"; }

.fa-balance-scale {
  --fa: "\F24E"; }

.fa-gauge-simple-high {
  --fa: "\F62A"; }

.fa-tachometer {
  --fa: "\F62A"; }

.fa-tachometer-fast {
  --fa: "\F62A"; }

.fa-shower {
  --fa: "\F2CC"; }

.fa-desktop {
  --fa: "\F390"; }

.fa-desktop-alt {
  --fa: "\F390"; }

.fa-m {
  --fa: "M"; }

.fa-table-list {
  --fa: "\F00B"; }

.fa-th-list {
  --fa: "\F00B"; }

.fa-comment-sms {
  --fa: "\F7CD"; }

.fa-sms {
  --fa: "\F7CD"; }

.fa-book {
  --fa: "\F02D"; }

.fa-user-plus {
  --fa: "\F234"; }

.fa-check {
  --fa: "\F00C"; }

.fa-battery-three-quarters {
  --fa: "\F241"; }

.fa-battery-4 {
  --fa: "\F241"; }

.fa-house-circle-check {
  --fa: "\E509"; }

.fa-angle-left {
  --fa: "\F104"; }

.fa-diagram-successor {
  --fa: "\E47A"; }

.fa-truck-arrow-right {
  --fa: "\E58B"; }

.fa-arrows-split-up-and-left {
  --fa: "\E4BC"; }

.fa-hand-fist {
  --fa: "\F6DE"; }

.fa-fist-raised {
  --fa: "\F6DE"; }

.fa-cloud-moon {
  --fa: "\F6C3"; }

.fa-briefcase {
  --fa: "\F0B1"; }

.fa-person-falling {
  --fa: "\E546"; }

.fa-image-portrait {
  --fa: "\F3E0"; }

.fa-portrait {
  --fa: "\F3E0"; }

.fa-user-tag {
  --fa: "\F507"; }

.fa-rug {
  --fa: "\E569"; }

.fa-earth-europe {
  --fa: "\F7A2"; }

.fa-globe-europe {
  --fa: "\F7A2"; }

.fa-cart-flatbed-suitcase {
  --fa: "\F59D"; }

.fa-luggage-cart {
  --fa: "\F59D"; }

.fa-rectangle-xmark {
  --fa: "\F410"; }

.fa-rectangle-times {
  --fa: "\F410"; }

.fa-times-rectangle {
  --fa: "\F410"; }

.fa-window-close {
  --fa: "\F410"; }

.fa-baht-sign {
  --fa: "\E0AC"; }

.fa-book-open {
  --fa: "\F518"; }

.fa-book-journal-whills {
  --fa: "\F66A"; }

.fa-journal-whills {
  --fa: "\F66A"; }

.fa-handcuffs {
  --fa: "\E4F8"; }

.fa-triangle-exclamation {
  --fa: "\F071"; }

.fa-exclamation-triangle {
  --fa: "\F071"; }

.fa-warning {
  --fa: "\F071"; }

.fa-database {
  --fa: "\F1C0"; }

.fa-share {
  --fa: "\F064"; }

.fa-mail-forward {
  --fa: "\F064"; }

.fa-bottle-droplet {
  --fa: "\E4C4"; }

.fa-mask-face {
  --fa: "\E1D7"; }

.fa-hill-rockslide {
  --fa: "\E508"; }

.fa-right-left {
  --fa: "\F362"; }

.fa-exchange-alt {
  --fa: "\F362"; }

.fa-paper-plane {
  --fa: "\F1D8"; }

.fa-road-circle-exclamation {
  --fa: "\E565"; }

.fa-dungeon {
  --fa: "\F6D9"; }

.fa-align-right {
  --fa: "\F038"; }

.fa-money-bill-1-wave {
  --fa: "\F53B"; }

.fa-money-bill-wave-alt {
  --fa: "\F53B"; }

.fa-life-ring {
  --fa: "\F1CD"; }

.fa-hands {
  --fa: "\F2A7"; }

.fa-sign-language {
  --fa: "\F2A7"; }

.fa-signing {
  --fa: "\F2A7"; }

.fa-calendar-day {
  --fa: "\F783"; }

.fa-water-ladder {
  --fa: "\F5C5"; }

.fa-ladder-water {
  --fa: "\F5C5"; }

.fa-swimming-pool {
  --fa: "\F5C5"; }

.fa-arrows-up-down {
  --fa: "\F07D"; }

.fa-arrows-v {
  --fa: "\F07D"; }

.fa-face-grimace {
  --fa: "\F57F"; }

.fa-grimace {
  --fa: "\F57F"; }

.fa-wheelchair-move {
  --fa: "\E2CE"; }

.fa-wheelchair-alt {
  --fa: "\E2CE"; }

.fa-turn-down {
  --fa: "\F3BE"; }

.fa-level-down-alt {
  --fa: "\F3BE"; }

.fa-person-walking-arrow-right {
  --fa: "\E552"; }

.fa-square-envelope {
  --fa: "\F199"; }

.fa-envelope-square {
  --fa: "\F199"; }

.fa-dice {
  --fa: "\F522"; }

.fa-bowling-ball {
  --fa: "\F436"; }

.fa-brain {
  --fa: "\F5DC"; }

.fa-bandage {
  --fa: "\F462"; }

.fa-band-aid {
  --fa: "\F462"; }

.fa-calendar-minus {
  --fa: "\F272"; }

.fa-circle-xmark {
  --fa: "\F057"; }

.fa-times-circle {
  --fa: "\F057"; }

.fa-xmark-circle {
  --fa: "\F057"; }

.fa-gifts {
  --fa: "\F79C"; }

.fa-hotel {
  --fa: "\F594"; }

.fa-earth-asia {
  --fa: "\F57E"; }

.fa-globe-asia {
  --fa: "\F57E"; }

.fa-id-card-clip {
  --fa: "\F47F"; }

.fa-id-card-alt {
  --fa: "\F47F"; }

.fa-magnifying-glass-plus {
  --fa: "\F00E"; }

.fa-search-plus {
  --fa: "\F00E"; }

.fa-thumbs-up {
  --fa: "\F164"; }

.fa-user-clock {
  --fa: "\F4FD"; }

.fa-hand-dots {
  --fa: "\F461"; }

.fa-allergies {
  --fa: "\F461"; }

.fa-file-invoice {
  --fa: "\F570"; }

.fa-window-minimize {
  --fa: "\F2D1"; }

.fa-mug-saucer {
  --fa: "\F0F4"; }

.fa-coffee {
  --fa: "\F0F4"; }

.fa-brush {
  --fa: "\F55D"; }

.fa-file-half-dashed {
  --fa: "\E698"; }

.fa-mask {
  --fa: "\F6FA"; }

.fa-magnifying-glass-minus {
  --fa: "\F010"; }

.fa-search-minus {
  --fa: "\F010"; }

.fa-ruler-vertical {
  --fa: "\F548"; }

.fa-user-large {
  --fa: "\F406"; }

.fa-user-alt {
  --fa: "\F406"; }

.fa-train-tram {
  --fa: "\E5B4"; }

.fa-user-nurse {
  --fa: "\F82F"; }

.fa-syringe {
  --fa: "\F48E"; }

.fa-cloud-sun {
  --fa: "\F6C4"; }

.fa-stopwatch-20 {
  --fa: "\E06F"; }

.fa-square-full {
  --fa: "\F45C"; }

.fa-magnet {
  --fa: "\F076"; }

.fa-jar {
  --fa: "\E516"; }

.fa-note-sticky {
  --fa: "\F249"; }

.fa-sticky-note {
  --fa: "\F249"; }

.fa-bug-slash {
  --fa: "\E490"; }

.fa-arrow-up-from-water-pump {
  --fa: "\E4B6"; }

.fa-bone {
  --fa: "\F5D7"; }

.fa-table-cells-row-unlock {
  --fa: "\E691"; }

.fa-user-injured {
  --fa: "\F728"; }

.fa-face-sad-tear {
  --fa: "\F5B4"; }

.fa-sad-tear {
  --fa: "\F5B4"; }

.fa-plane {
  --fa: "\F072"; }

.fa-tent-arrows-down {
  --fa: "\E581"; }

.fa-exclamation {
  --fa: "!"; }

.fa-arrows-spin {
  --fa: "\E4BB"; }

.fa-print {
  --fa: "\F02F"; }

.fa-turkish-lira-sign {
  --fa: "\E2BB"; }

.fa-try {
  --fa: "\E2BB"; }

.fa-turkish-lira {
  --fa: "\E2BB"; }

.fa-dollar-sign {
  --fa: "$"; }

.fa-dollar {
  --fa: "$"; }

.fa-usd {
  --fa: "$"; }

.fa-x {
  --fa: "X"; }

.fa-magnifying-glass-dollar {
  --fa: "\F688"; }

.fa-search-dollar {
  --fa: "\F688"; }

.fa-users-gear {
  --fa: "\F509"; }

.fa-users-cog {
  --fa: "\F509"; }

.fa-person-military-pointing {
  --fa: "\E54A"; }

.fa-building-columns {
  --fa: "\F19C"; }

.fa-bank {
  --fa: "\F19C"; }

.fa-institution {
  --fa: "\F19C"; }

.fa-museum {
  --fa: "\F19C"; }

.fa-university {
  --fa: "\F19C"; }

.fa-umbrella {
  --fa: "\F0E9"; }

.fa-trowel {
  --fa: "\E589"; }

.fa-d {
  --fa: "D"; }

.fa-stapler {
  --fa: "\E5AF"; }

.fa-masks-theater {
  --fa: "\F630"; }

.fa-theater-masks {
  --fa: "\F630"; }

.fa-kip-sign {
  --fa: "\E1C4"; }

.fa-hand-point-left {
  --fa: "\F0A5"; }

.fa-handshake-simple {
  --fa: "\F4C6"; }

.fa-handshake-alt {
  --fa: "\F4C6"; }

.fa-jet-fighter {
  --fa: "\F0FB"; }

.fa-fighter-jet {
  --fa: "\F0FB"; }

.fa-square-share-nodes {
  --fa: "\F1E1"; }

.fa-share-alt-square {
  --fa: "\F1E1"; }

.fa-barcode {
  --fa: "\F02A"; }

.fa-plus-minus {
  --fa: "\E43C"; }

.fa-video {
  --fa: "\F03D"; }

.fa-video-camera {
  --fa: "\F03D"; }

.fa-graduation-cap {
  --fa: "\F19D"; }

.fa-mortar-board {
  --fa: "\F19D"; }

.fa-hand-holding-medical {
  --fa: "\E05C"; }

.fa-person-circle-check {
  --fa: "\E53E"; }

.fa-turn-up {
  --fa: "\F3BF"; }

.fa-level-up-alt {
  --fa: "\F3BF"; }

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; }

.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; }
:root, :host {
  --fa-style-family-brands: 'Font Awesome 6 Brands';
  --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; }

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/fe/dist/css/../fonts/fa-brands-400.woff2) format("woff2"), url(/fe/dist/css/../fonts/fa-brands-400.ttf) format("truetype"); }

.fab,
.fa-brands {
  font-weight: 400; }

.fa-monero {
  --fa: "\F3D0"; }

.fa-hooli {
  --fa: "\F427"; }

.fa-yelp {
  --fa: "\F1E9"; }

.fa-cc-visa {
  --fa: "\F1F0"; }

.fa-lastfm {
  --fa: "\F202"; }

.fa-shopware {
  --fa: "\F5B5"; }

.fa-creative-commons-nc {
  --fa: "\F4E8"; }

.fa-aws {
  --fa: "\F375"; }

.fa-redhat {
  --fa: "\F7BC"; }

.fa-yoast {
  --fa: "\F2B1"; }

.fa-cloudflare {
  --fa: "\E07D"; }

.fa-ups {
  --fa: "\F7E0"; }

.fa-pixiv {
  --fa: "\E640"; }

.fa-wpexplorer {
  --fa: "\F2DE"; }

.fa-dyalog {
  --fa: "\F399"; }

.fa-bity {
  --fa: "\F37A"; }

.fa-stackpath {
  --fa: "\F842"; }

.fa-buysellads {
  --fa: "\F20D"; }

.fa-first-order {
  --fa: "\F2B0"; }

.fa-modx {
  --fa: "\F285"; }

.fa-guilded {
  --fa: "\E07E"; }

.fa-vnv {
  --fa: "\F40B"; }

.fa-square-js {
  --fa: "\F3B9"; }

.fa-js-square {
  --fa: "\F3B9"; }

.fa-microsoft {
  --fa: "\F3CA"; }

.fa-qq {
  --fa: "\F1D6"; }

.fa-orcid {
  --fa: "\F8D2"; }

.fa-java {
  --fa: "\F4E4"; }

.fa-invision {
  --fa: "\F7B0"; }

.fa-creative-commons-pd-alt {
  --fa: "\F4ED"; }

.fa-centercode {
  --fa: "\F380"; }

.fa-glide-g {
  --fa: "\F2A6"; }

.fa-drupal {
  --fa: "\F1A9"; }

.fa-jxl {
  --fa: "\E67B"; }

.fa-dart-lang {
  --fa: "\E693"; }

.fa-hire-a-helper {
  --fa: "\F3B0"; }

.fa-creative-commons-by {
  --fa: "\F4E7"; }

.fa-unity {
  --fa: "\E049"; }

.fa-whmcs {
  --fa: "\F40D"; }

.fa-rocketchat {
  --fa: "\F3E8"; }

.fa-vk {
  --fa: "\F189"; }

.fa-untappd {
  --fa: "\F405"; }

.fa-mailchimp {
  --fa: "\F59E"; }

.fa-css3-alt {
  --fa: "\F38B"; }

.fa-square-reddit {
  --fa: "\F1A2"; }

.fa-reddit-square {
  --fa: "\F1A2"; }

.fa-vimeo-v {
  --fa: "\F27D"; }

.fa-contao {
  --fa: "\F26D"; }

.fa-square-font-awesome {
  --fa: "\E5AD"; }

.fa-deskpro {
  --fa: "\F38F"; }

.fa-brave {
  --fa: "\E63C"; }

.fa-sistrix {
  --fa: "\F3EE"; }

.fa-square-instagram {
  --fa: "\E055"; }

.fa-instagram-square {
  --fa: "\E055"; }

.fa-battle-net {
  --fa: "\F835"; }

.fa-the-red-yeti {
  --fa: "\F69D"; }

.fa-square-hacker-news {
  --fa: "\F3AF"; }

.fa-hacker-news-square {
  --fa: "\F3AF"; }

.fa-edge {
  --fa: "\F282"; }

.fa-threads {
  --fa: "\E618"; }

.fa-napster {
  --fa: "\F3D2"; }

.fa-square-snapchat {
  --fa: "\F2AD"; }

.fa-snapchat-square {
  --fa: "\F2AD"; }

.fa-google-plus-g {
  --fa: "\F0D5"; }

.fa-artstation {
  --fa: "\F77A"; }

.fa-markdown {
  --fa: "\F60F"; }

.fa-sourcetree {
  --fa: "\F7D3"; }

.fa-google-plus {
  --fa: "\F2B3"; }

.fa-diaspora {
  --fa: "\F791"; }

.fa-foursquare {
  --fa: "\F180"; }

.fa-stack-overflow {
  --fa: "\F16C"; }

.fa-github-alt {
  --fa: "\F113"; }

.fa-phoenix-squadron {
  --fa: "\F511"; }

.fa-pagelines {
  --fa: "\F18C"; }

.fa-algolia {
  --fa: "\F36C"; }

.fa-red-river {
  --fa: "\F3E3"; }

.fa-creative-commons-sa {
  --fa: "\F4EF"; }

.fa-safari {
  --fa: "\F267"; }

.fa-google {
  --fa: "\F1A0"; }

.fa-square-font-awesome-stroke {
  --fa: "\F35C"; }

.fa-font-awesome-alt {
  --fa: "\F35C"; }

.fa-atlassian {
  --fa: "\F77B"; }

.fa-linkedin-in {
  --fa: "\F0E1"; }

.fa-digital-ocean {
  --fa: "\F391"; }

.fa-nimblr {
  --fa: "\F5A8"; }

.fa-chromecast {
  --fa: "\F838"; }

.fa-evernote {
  --fa: "\F839"; }

.fa-hacker-news {
  --fa: "\F1D4"; }

.fa-creative-commons-sampling {
  --fa: "\F4F0"; }

.fa-adversal {
  --fa: "\F36A"; }

.fa-creative-commons {
  --fa: "\F25E"; }

.fa-watchman-monitoring {
  --fa: "\E087"; }

.fa-fonticons {
  --fa: "\F280"; }

.fa-weixin {
  --fa: "\F1D7"; }

.fa-shirtsinbulk {
  --fa: "\F214"; }

.fa-codepen {
  --fa: "\F1CB"; }

.fa-git-alt {
  --fa: "\F841"; }

.fa-lyft {
  --fa: "\F3C3"; }

.fa-rev {
  --fa: "\F5B2"; }

.fa-windows {
  --fa: "\F17A"; }

.fa-wizards-of-the-coast {
  --fa: "\F730"; }

.fa-square-viadeo {
  --fa: "\F2AA"; }

.fa-viadeo-square {
  --fa: "\F2AA"; }

.fa-meetup {
  --fa: "\F2E0"; }

.fa-centos {
  --fa: "\F789"; }

.fa-adn {
  --fa: "\F170"; }

.fa-cloudsmith {
  --fa: "\F384"; }

.fa-opensuse {
  --fa: "\E62B"; }

.fa-pied-piper-alt {
  --fa: "\F1A8"; }

.fa-square-dribbble {
  --fa: "\F397"; }

.fa-dribbble-square {
  --fa: "\F397"; }

.fa-codiepie {
  --fa: "\F284"; }

.fa-node {
  --fa: "\F419"; }

.fa-mix {
  --fa: "\F3CB"; }

.fa-steam {
  --fa: "\F1B6"; }

.fa-cc-apple-pay {
  --fa: "\F416"; }

.fa-scribd {
  --fa: "\F28A"; }

.fa-debian {
  --fa: "\E60B"; }

.fa-openid {
  --fa: "\F19B"; }

.fa-instalod {
  --fa: "\E081"; }

.fa-files-pinwheel {
  --fa: "\E69F"; }

.fa-expeditedssl {
  --fa: "\F23E"; }

.fa-sellcast {
  --fa: "\F2DA"; }

.fa-square-twitter {
  --fa: "\F081"; }

.fa-twitter-square {
  --fa: "\F081"; }

.fa-r-project {
  --fa: "\F4F7"; }

.fa-delicious {
  --fa: "\F1A5"; }

.fa-freebsd {
  --fa: "\F3A4"; }

.fa-vuejs {
  --fa: "\F41F"; }

.fa-accusoft {
  --fa: "\F369"; }

.fa-ioxhost {
  --fa: "\F208"; }

.fa-fonticons-fi {
  --fa: "\F3A2"; }

.fa-app-store {
  --fa: "\F36F"; }

.fa-cc-mastercard {
  --fa: "\F1F1"; }

.fa-itunes-note {
  --fa: "\F3B5"; }

.fa-golang {
  --fa: "\E40F"; }

.fa-kickstarter {
  --fa: "\F3BB"; }

.fa-square-kickstarter {
  --fa: "\F3BB"; }

.fa-grav {
  --fa: "\F2D6"; }

.fa-weibo {
  --fa: "\F18A"; }

.fa-uncharted {
  --fa: "\E084"; }

.fa-firstdraft {
  --fa: "\F3A1"; }

.fa-square-youtube {
  --fa: "\F431"; }

.fa-youtube-square {
  --fa: "\F431"; }

.fa-wikipedia-w {
  --fa: "\F266"; }

.fa-wpressr {
  --fa: "\F3E4"; }

.fa-rendact {
  --fa: "\F3E4"; }

.fa-angellist {
  --fa: "\F209"; }

.fa-galactic-republic {
  --fa: "\F50C"; }

.fa-nfc-directional {
  --fa: "\E530"; }

.fa-skype {
  --fa: "\F17E"; }

.fa-joget {
  --fa: "\F3B7"; }

.fa-fedora {
  --fa: "\F798"; }

.fa-stripe-s {
  --fa: "\F42A"; }

.fa-meta {
  --fa: "\E49B"; }

.fa-laravel {
  --fa: "\F3BD"; }

.fa-hotjar {
  --fa: "\F3B1"; }

.fa-bluetooth-b {
  --fa: "\F294"; }

.fa-square-letterboxd {
  --fa: "\E62E"; }

.fa-sticker-mule {
  --fa: "\F3F7"; }

.fa-creative-commons-zero {
  --fa: "\F4F3"; }

.fa-hips {
  --fa: "\F452"; }

.fa-css {
  --fa: "\E6A2"; }

.fa-behance {
  --fa: "\F1B4"; }

.fa-reddit {
  --fa: "\F1A1"; }

.fa-discord {
  --fa: "\F392"; }

.fa-chrome {
  --fa: "\F268"; }

.fa-app-store-ios {
  --fa: "\F370"; }

.fa-cc-discover {
  --fa: "\F1F2"; }

.fa-wpbeginner {
  --fa: "\F297"; }

.fa-confluence {
  --fa: "\F78D"; }

.fa-shoelace {
  --fa: "\E60C"; }

.fa-mdb {
  --fa: "\F8CA"; }

.fa-dochub {
  --fa: "\F394"; }

.fa-accessible-icon {
  --fa: "\F368"; }

.fa-ebay {
  --fa: "\F4F4"; }

.fa-amazon {
  --fa: "\F270"; }

.fa-unsplash {
  --fa: "\E07C"; }

.fa-yarn {
  --fa: "\F7E3"; }

.fa-square-steam {
  --fa: "\F1B7"; }

.fa-steam-square {
  --fa: "\F1B7"; }

.fa-500px {
  --fa: "\F26E"; }

.fa-square-vimeo {
  --fa: "\F194"; }

.fa-vimeo-square {
  --fa: "\F194"; }

.fa-asymmetrik {
  --fa: "\F372"; }

.fa-font-awesome {
  --fa: "\F2B4"; }

.fa-font-awesome-flag {
  --fa: "\F2B4"; }

.fa-font-awesome-logo-full {
  --fa: "\F2B4"; }

.fa-gratipay {
  --fa: "\F184"; }

.fa-apple {
  --fa: "\F179"; }

.fa-hive {
  --fa: "\E07F"; }

.fa-gitkraken {
  --fa: "\F3A6"; }

.fa-keybase {
  --fa: "\F4F5"; }

.fa-apple-pay {
  --fa: "\F415"; }

.fa-padlet {
  --fa: "\E4A0"; }

.fa-amazon-pay {
  --fa: "\F42C"; }

.fa-square-github {
  --fa: "\F092"; }

.fa-github-square {
  --fa: "\F092"; }

.fa-stumbleupon {
  --fa: "\F1A4"; }

.fa-fedex {
  --fa: "\F797"; }

.fa-phoenix-framework {
  --fa: "\F3DC"; }

.fa-shopify {
  --fa: "\E057"; }

.fa-neos {
  --fa: "\F612"; }

.fa-square-threads {
  --fa: "\E619"; }

.fa-hackerrank {
  --fa: "\F5F7"; }

.fa-researchgate {
  --fa: "\F4F8"; }

.fa-swift {
  --fa: "\F8E1"; }

.fa-angular {
  --fa: "\F420"; }

.fa-speakap {
  --fa: "\F3F3"; }

.fa-angrycreative {
  --fa: "\F36E"; }

.fa-y-combinator {
  --fa: "\F23B"; }

.fa-empire {
  --fa: "\F1D1"; }

.fa-envira {
  --fa: "\F299"; }

.fa-google-scholar {
  --fa: "\E63B"; }

.fa-square-gitlab {
  --fa: "\E5AE"; }

.fa-gitlab-square {
  --fa: "\E5AE"; }

.fa-studiovinari {
  --fa: "\F3F8"; }

.fa-pied-piper {
  --fa: "\F2AE"; }

.fa-wordpress {
  --fa: "\F19A"; }

.fa-product-hunt {
  --fa: "\F288"; }

.fa-firefox {
  --fa: "\F269"; }

.fa-linode {
  --fa: "\F2B8"; }

.fa-goodreads {
  --fa: "\F3A8"; }

.fa-square-odnoklassniki {
  --fa: "\F264"; }

.fa-odnoklassniki-square {
  --fa: "\F264"; }

.fa-jsfiddle {
  --fa: "\F1CC"; }

.fa-sith {
  --fa: "\F512"; }

.fa-themeisle {
  --fa: "\F2B2"; }

.fa-page4 {
  --fa: "\F3D7"; }

.fa-hashnode {
  --fa: "\E499"; }

.fa-react {
  --fa: "\F41B"; }

.fa-cc-paypal {
  --fa: "\F1F4"; }

.fa-squarespace {
  --fa: "\F5BE"; }

.fa-cc-stripe {
  --fa: "\F1F5"; }

.fa-creative-commons-share {
  --fa: "\F4F2"; }

.fa-bitcoin {
  --fa: "\F379"; }

.fa-keycdn {
  --fa: "\F3BA"; }

.fa-opera {
  --fa: "\F26A"; }

.fa-itch-io {
  --fa: "\F83A"; }

.fa-umbraco {
  --fa: "\F8E8"; }

.fa-galactic-senate {
  --fa: "\F50D"; }

.fa-ubuntu {
  --fa: "\F7DF"; }

.fa-draft2digital {
  --fa: "\F396"; }

.fa-stripe {
  --fa: "\F429"; }

.fa-houzz {
  --fa: "\F27C"; }

.fa-gg {
  --fa: "\F260"; }

.fa-dhl {
  --fa: "\F790"; }

.fa-square-pinterest {
  --fa: "\F0D3"; }

.fa-pinterest-square {
  --fa: "\F0D3"; }

.fa-xing {
  --fa: "\F168"; }

.fa-blackberry {
  --fa: "\F37B"; }

.fa-creative-commons-pd {
  --fa: "\F4EC"; }

.fa-playstation {
  --fa: "\F3DF"; }

.fa-quinscape {
  --fa: "\F459"; }

.fa-less {
  --fa: "\F41D"; }

.fa-blogger-b {
  --fa: "\F37D"; }

.fa-opencart {
  --fa: "\F23D"; }

.fa-vine {
  --fa: "\F1CA"; }

.fa-signal-messenger {
  --fa: "\E663"; }

.fa-paypal {
  --fa: "\F1ED"; }

.fa-gitlab {
  --fa: "\F296"; }

.fa-typo3 {
  --fa: "\F42B"; }

.fa-reddit-alien {
  --fa: "\F281"; }

.fa-yahoo {
  --fa: "\F19E"; }

.fa-dailymotion {
  --fa: "\E052"; }

.fa-affiliatetheme {
  --fa: "\F36B"; }

.fa-pied-piper-pp {
  --fa: "\F1A7"; }

.fa-bootstrap {
  --fa: "\F836"; }

.fa-odnoklassniki {
  --fa: "\F263"; }

.fa-nfc-symbol {
  --fa: "\E531"; }

.fa-mintbit {
  --fa: "\E62F"; }

.fa-ethereum {
  --fa: "\F42E"; }

.fa-speaker-deck {
  --fa: "\F83C"; }

.fa-creative-commons-nc-eu {
  --fa: "\F4E9"; }

.fa-patreon {
  --fa: "\F3D9"; }

.fa-avianex {
  --fa: "\F374"; }

.fa-ello {
  --fa: "\F5F1"; }

.fa-gofore {
  --fa: "\F3A7"; }

.fa-bimobject {
  --fa: "\F378"; }

.fa-brave-reverse {
  --fa: "\E63D"; }

.fa-facebook-f {
  --fa: "\F39E"; }

.fa-square-google-plus {
  --fa: "\F0D4"; }

.fa-google-plus-square {
  --fa: "\F0D4"; }

.fa-web-awesome {
  --fa: "\E682"; }

.fa-mandalorian {
  --fa: "\F50F"; }

.fa-first-order-alt {
  --fa: "\F50A"; }

.fa-osi {
  --fa: "\F41A"; }

.fa-google-wallet {
  --fa: "\F1EE"; }

.fa-d-and-d-beyond {
  --fa: "\F6CA"; }

.fa-periscope {
  --fa: "\F3DA"; }

.fa-fulcrum {
  --fa: "\F50B"; }

.fa-cloudscale {
  --fa: "\F383"; }

.fa-forumbee {
  --fa: "\F211"; }

.fa-mizuni {
  --fa: "\F3CC"; }

.fa-schlix {
  --fa: "\F3EA"; }

.fa-square-xing {
  --fa: "\F169"; }

.fa-xing-square {
  --fa: "\F169"; }

.fa-bandcamp {
  --fa: "\F2D5"; }

.fa-wpforms {
  --fa: "\F298"; }

.fa-cloudversify {
  --fa: "\F385"; }

.fa-usps {
  --fa: "\F7E1"; }

.fa-megaport {
  --fa: "\F5A3"; }

.fa-magento {
  --fa: "\F3C4"; }

.fa-spotify {
  --fa: "\F1BC"; }

.fa-optin-monster {
  --fa: "\F23C"; }

.fa-fly {
  --fa: "\F417"; }

.fa-square-bluesky {
  --fa: "\E6A3"; }

.fa-aviato {
  --fa: "\F421"; }

.fa-itunes {
  --fa: "\F3B4"; }

.fa-cuttlefish {
  --fa: "\F38C"; }

.fa-blogger {
  --fa: "\F37C"; }

.fa-flickr {
  --fa: "\F16E"; }

.fa-viber {
  --fa: "\F409"; }

.fa-soundcloud {
  --fa: "\F1BE"; }

.fa-digg {
  --fa: "\F1A6"; }

.fa-tencent-weibo {
  --fa: "\F1D5"; }

.fa-letterboxd {
  --fa: "\E62D"; }

.fa-symfony {
  --fa: "\F83D"; }

.fa-maxcdn {
  --fa: "\F136"; }

.fa-etsy {
  --fa: "\F2D7"; }

.fa-facebook-messenger {
  --fa: "\F39F"; }

.fa-audible {
  --fa: "\F373"; }

.fa-think-peaks {
  --fa: "\F731"; }

.fa-bilibili {
  --fa: "\E3D9"; }

.fa-erlang {
  --fa: "\F39D"; }

.fa-x-twitter {
  --fa: "\E61B"; }

.fa-cotton-bureau {
  --fa: "\F89E"; }

.fa-dashcube {
  --fa: "\F210"; }

.fa-42-group {
  --fa: "\E080"; }

.fa-innosoft {
  --fa: "\E080"; }

.fa-stack-exchange {
  --fa: "\F18D"; }

.fa-elementor {
  --fa: "\F430"; }

.fa-square-pied-piper {
  --fa: "\E01E"; }

.fa-pied-piper-square {
  --fa: "\E01E"; }

.fa-creative-commons-nd {
  --fa: "\F4EB"; }

.fa-palfed {
  --fa: "\F3D8"; }

.fa-superpowers {
  --fa: "\F2DD"; }

.fa-resolving {
  --fa: "\F3E7"; }

.fa-xbox {
  --fa: "\F412"; }

.fa-square-web-awesome-stroke {
  --fa: "\E684"; }

.fa-searchengin {
  --fa: "\F3EB"; }

.fa-tiktok {
  --fa: "\E07B"; }

.fa-square-facebook {
  --fa: "\F082"; }

.fa-facebook-square {
  --fa: "\F082"; }

.fa-renren {
  --fa: "\F18B"; }

.fa-linux {
  --fa: "\F17C"; }

.fa-glide {
  --fa: "\F2A5"; }

.fa-linkedin {
  --fa: "\F08C"; }

.fa-hubspot {
  --fa: "\F3B2"; }

.fa-deploydog {
  --fa: "\F38E"; }

.fa-twitch {
  --fa: "\F1E8"; }

.fa-flutter {
  --fa: "\E694"; }

.fa-ravelry {
  --fa: "\F2D9"; }

.fa-mixer {
  --fa: "\E056"; }

.fa-square-lastfm {
  --fa: "\F203"; }

.fa-lastfm-square {
  --fa: "\F203"; }

.fa-vimeo {
  --fa: "\F40A"; }

.fa-mendeley {
  --fa: "\F7B3"; }

.fa-uniregistry {
  --fa: "\F404"; }

.fa-figma {
  --fa: "\F799"; }

.fa-creative-commons-remix {
  --fa: "\F4EE"; }

.fa-cc-amazon-pay {
  --fa: "\F42D"; }

.fa-dropbox {
  --fa: "\F16B"; }

.fa-instagram {
  --fa: "\F16D"; }

.fa-cmplid {
  --fa: "\E360"; }

.fa-upwork {
  --fa: "\E641"; }

.fa-facebook {
  --fa: "\F09A"; }

.fa-gripfire {
  --fa: "\F3AC"; }

.fa-jedi-order {
  --fa: "\F50E"; }

.fa-uikit {
  --fa: "\F403"; }

.fa-fort-awesome-alt {
  --fa: "\F3A3"; }

.fa-phabricator {
  --fa: "\F3DB"; }

.fa-ussunnah {
  --fa: "\F407"; }

.fa-earlybirds {
  --fa: "\F39A"; }

.fa-trade-federation {
  --fa: "\F513"; }

.fa-autoprefixer {
  --fa: "\F41C"; }

.fa-whatsapp {
  --fa: "\F232"; }

.fa-square-upwork {
  --fa: "\E67C"; }

.fa-slideshare {
  --fa: "\F1E7"; }

.fa-google-play {
  --fa: "\F3AB"; }

.fa-viadeo {
  --fa: "\F2A9"; }

.fa-line {
  --fa: "\F3C0"; }

.fa-google-drive {
  --fa: "\F3AA"; }

.fa-servicestack {
  --fa: "\F3EC"; }

.fa-simplybuilt {
  --fa: "\F215"; }

.fa-bitbucket {
  --fa: "\F171"; }

.fa-imdb {
  --fa: "\F2D8"; }

.fa-deezer {
  --fa: "\E077"; }

.fa-raspberry-pi {
  --fa: "\F7BB"; }

.fa-jira {
  --fa: "\F7B1"; }

.fa-docker {
  --fa: "\F395"; }

.fa-screenpal {
  --fa: "\E570"; }

.fa-bluetooth {
  --fa: "\F293"; }

.fa-gitter {
  --fa: "\F426"; }

.fa-d-and-d {
  --fa: "\F38D"; }

.fa-microblog {
  --fa: "\E01A"; }

.fa-cc-diners-club {
  --fa: "\F24C"; }

.fa-gg-circle {
  --fa: "\F261"; }

.fa-pied-piper-hat {
  --fa: "\F4E5"; }

.fa-kickstarter-k {
  --fa: "\F3BC"; }

.fa-yandex {
  --fa: "\F413"; }

.fa-readme {
  --fa: "\F4D5"; }

.fa-html5 {
  --fa: "\F13B"; }

.fa-sellsy {
  --fa: "\F213"; }

.fa-square-web-awesome {
  --fa: "\E683"; }

.fa-sass {
  --fa: "\F41E"; }

.fa-wirsindhandwerk {
  --fa: "\E2D0"; }

.fa-wsh {
  --fa: "\E2D0"; }

.fa-buromobelexperte {
  --fa: "\F37F"; }

.fa-salesforce {
  --fa: "\F83B"; }

.fa-octopus-deploy {
  --fa: "\E082"; }

.fa-medapps {
  --fa: "\F3C6"; }

.fa-ns8 {
  --fa: "\F3D5"; }

.fa-pinterest-p {
  --fa: "\F231"; }

.fa-apper {
  --fa: "\F371"; }

.fa-fort-awesome {
  --fa: "\F286"; }

.fa-waze {
  --fa: "\F83F"; }

.fa-bluesky {
  --fa: "\E671"; }

.fa-cc-jcb {
  --fa: "\F24B"; }

.fa-snapchat {
  --fa: "\F2AB"; }

.fa-snapchat-ghost {
  --fa: "\F2AB"; }

.fa-fantasy-flight-games {
  --fa: "\F6DC"; }

.fa-rust {
  --fa: "\E07A"; }

.fa-wix {
  --fa: "\F5CF"; }

.fa-square-behance {
  --fa: "\F1B5"; }

.fa-behance-square {
  --fa: "\F1B5"; }

.fa-supple {
  --fa: "\F3F9"; }

.fa-webflow {
  --fa: "\E65C"; }

.fa-rebel {
  --fa: "\F1D0"; }

.fa-css3 {
  --fa: "\F13C"; }

.fa-staylinked {
  --fa: "\F3F5"; }

.fa-kaggle {
  --fa: "\F5FA"; }

.fa-space-awesome {
  --fa: "\E5AC"; }

.fa-deviantart {
  --fa: "\F1BD"; }

.fa-cpanel {
  --fa: "\F388"; }

.fa-goodreads-g {
  --fa: "\F3A9"; }

.fa-square-git {
  --fa: "\F1D2"; }

.fa-git-square {
  --fa: "\F1D2"; }

.fa-square-tumblr {
  --fa: "\F174"; }

.fa-tumblr-square {
  --fa: "\F174"; }

.fa-trello {
  --fa: "\F181"; }

.fa-creative-commons-nc-jp {
  --fa: "\F4EA"; }

.fa-get-pocket {
  --fa: "\F265"; }

.fa-perbyte {
  --fa: "\E083"; }

.fa-grunt {
  --fa: "\F3AD"; }

.fa-weebly {
  --fa: "\F5CC"; }

.fa-connectdevelop {
  --fa: "\F20E"; }

.fa-leanpub {
  --fa: "\F212"; }

.fa-black-tie {
  --fa: "\F27E"; }

.fa-themeco {
  --fa: "\F5C6"; }

.fa-python {
  --fa: "\F3E2"; }

.fa-android {
  --fa: "\F17B"; }

.fa-bots {
  --fa: "\E340"; }

.fa-free-code-camp {
  --fa: "\F2C5"; }

.fa-hornbill {
  --fa: "\F592"; }

.fa-js {
  --fa: "\F3B8"; }

.fa-ideal {
  --fa: "\E013"; }

.fa-git {
  --fa: "\F1D3"; }

.fa-dev {
  --fa: "\F6CC"; }

.fa-sketch {
  --fa: "\F7C6"; }

.fa-yandex-international {
  --fa: "\F414"; }

.fa-cc-amex {
  --fa: "\F1F3"; }

.fa-uber {
  --fa: "\F402"; }

.fa-github {
  --fa: "\F09B"; }

.fa-php {
  --fa: "\F457"; }

.fa-alipay {
  --fa: "\F642"; }

.fa-youtube {
  --fa: "\F167"; }

.fa-skyatlas {
  --fa: "\F216"; }

.fa-firefox-browser {
  --fa: "\E007"; }

.fa-replyd {
  --fa: "\F3E6"; }

.fa-suse {
  --fa: "\F7D6"; }

.fa-jenkins {
  --fa: "\F3B6"; }

.fa-twitter {
  --fa: "\F099"; }

.fa-rockrms {
  --fa: "\F3E9"; }

.fa-pinterest {
  --fa: "\F0D2"; }

.fa-buffer {
  --fa: "\F837"; }

.fa-npm {
  --fa: "\F3D4"; }

.fa-yammer {
  --fa: "\F840"; }

.fa-btc {
  --fa: "\F15A"; }

.fa-dribbble {
  --fa: "\F17D"; }

.fa-stumbleupon-circle {
  --fa: "\F1A3"; }

.fa-internet-explorer {
  --fa: "\F26B"; }

.fa-stubber {
  --fa: "\E5C7"; }

.fa-telegram {
  --fa: "\F2C6"; }

.fa-telegram-plane {
  --fa: "\F2C6"; }

.fa-old-republic {
  --fa: "\F510"; }

.fa-odysee {
  --fa: "\E5C6"; }

.fa-square-whatsapp {
  --fa: "\F40C"; }

.fa-whatsapp-square {
  --fa: "\F40C"; }

.fa-node-js {
  --fa: "\F3D3"; }

.fa-edge-legacy {
  --fa: "\E078"; }

.fa-slack {
  --fa: "\F198"; }

.fa-slack-hash {
  --fa: "\F198"; }

.fa-medrt {
  --fa: "\F3C8"; }

.fa-usb {
  --fa: "\F287"; }

.fa-tumblr {
  --fa: "\F173"; }

.fa-vaadin {
  --fa: "\F408"; }

.fa-quora {
  --fa: "\F2C4"; }

.fa-square-x-twitter {
  --fa: "\E61A"; }

.fa-reacteurope {
  --fa: "\F75D"; }

.fa-medium {
  --fa: "\F23A"; }

.fa-medium-m {
  --fa: "\F23A"; }

.fa-amilia {
  --fa: "\F36D"; }

.fa-mixcloud {
  --fa: "\F289"; }

.fa-flipboard {
  --fa: "\F44D"; }

.fa-viacoin {
  --fa: "\F237"; }

.fa-critical-role {
  --fa: "\F6C9"; }

.fa-sitrox {
  --fa: "\E44A"; }

.fa-discourse {
  --fa: "\F393"; }

.fa-joomla {
  --fa: "\F1AA"; }

.fa-mastodon {
  --fa: "\F4F6"; }

.fa-airbnb {
  --fa: "\F834"; }

.fa-wolf-pack-battalion {
  --fa: "\F514"; }

.fa-buy-n-large {
  --fa: "\F8A6"; }

.fa-gulp {
  --fa: "\F3AE"; }

.fa-creative-commons-sampling-plus {
  --fa: "\F4F1"; }

.fa-strava {
  --fa: "\F428"; }

.fa-ember {
  --fa: "\F423"; }

.fa-canadian-maple-leaf {
  --fa: "\F785"; }

.fa-teamspeak {
  --fa: "\F4F9"; }

.fa-pushed {
  --fa: "\F3E1"; }

.fa-wordpress-simple {
  --fa: "\F411"; }

.fa-nutritionix {
  --fa: "\F3D6"; }

.fa-wodu {
  --fa: "\E088"; }

.fa-google-pay {
  --fa: "\E079"; }

.fa-intercom {
  --fa: "\F7AF"; }

.fa-zhihu {
  --fa: "\F63F"; }

.fa-korvue {
  --fa: "\F42F"; }

.fa-pix {
  --fa: "\E43A"; }

.fa-steam-symbol {
  --fa: "\F3F6"; }
:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; }

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/fe/dist/css/../fonts/fa-regular-400.woff2) format("woff2"), url(/fe/dist/css/../fonts/fa-regular-400.ttf) format("truetype"); }

.far,
.fa-regular {
  font-weight: 400; }
:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; }

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/fe/dist/css/../fonts/fa-solid-900.woff2) format("woff2"), url(/fe/dist/css/../fonts/fa-solid-900.ttf) format("truetype"); }

.fas,
.fa-solid {
  font-weight: 900; }
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-display: block;
  font-weight: 400;
  src: url(/fe/dist/css/../fonts/fa-brands-400.woff2) format("woff2"), url(/fe/dist/css/../fonts/fa-brands-400.ttf) format("truetype"); }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-display: block;
  font-weight: 900;
  src: url(/fe/dist/css/../fonts/fa-solid-900.woff2) format("woff2"), url(/fe/dist/css/../fonts/fa-solid-900.ttf) format("truetype"); }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-display: block;
  font-weight: 400;
  src: url(/fe/dist/css/../fonts/fa-regular-400.woff2) format("woff2"), url(/fe/dist/css/../fonts/fa-regular-400.ttf) format("truetype"); }
@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url(/fe/dist/css/../fonts/fa-solid-900.woff2) format("woff2"), url(/fe/dist/css/../fonts/fa-solid-900.ttf) format("truetype"); }

@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url(/fe/dist/css/../fonts/fa-brands-400.woff2) format("woff2"), url(/fe/dist/css/../fonts/fa-brands-400.ttf) format("truetype"); }

@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url(/fe/dist/css/../fonts/fa-regular-400.woff2) format("woff2"), url(/fe/dist/css/../fonts/fa-regular-400.ttf) format("truetype");
  unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; }

@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url(/fe/dist/css/../fonts/fa-v4compatibility.woff2) format("woff2"), url(/fe/dist/css/../fonts/fa-v4compatibility.ttf) format("truetype");
  unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A; }
@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  .EPiServerForms .Form__Description,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

.btn,
.EPiServerForms .Form__MainBody button,
.elq-form .submit-button-style {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;
  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 screen and (prefers-reduced-motion: reduce) {
  .btn,
  .EPiServerForms .Form__MainBody button,
  .elq-form .submit-button-style {
    transition: none;
  }
}

.btn:hover,
.EPiServerForms .Form__MainBody button:hover,
.elq-form .submit-button-style:hover,
.btn:focus,
.EPiServerForms .Form__MainBody button:focus,
.elq-form .submit-button-style:focus {
  text-decoration: none;
}

.btn:focus,
.EPiServerForms .Form__MainBody button:focus,
.elq-form .submit-button-style:focus,
.btn.focus,
.EPiServerForms .Form__MainBody button.focus,
.elq-form .focus.submit-button-style {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(25, 26, 55, 0.25);
}

.btn.disabled,
.EPiServerForms .Form__MainBody button.disabled,
.elq-form .disabled.submit-button-style,
.btn:disabled,
.EPiServerForms .Form__MainBody button:disabled,
.elq-form .submit-button-style:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled),
.EPiServerForms .Form__MainBody button:not(:disabled):not(.disabled),
.elq-form .submit-button-style:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
.elq-form a.disabled.submit-button-style,
fieldset:disabled a.btn,
fieldset:disabled .elq-form a.submit-button-style,
.elq-form fieldset:disabled a.submit-button-style {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #191a37;
  border-color: #191a37;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0d0e1d;
  border-color: #090914;
}

.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(25, 26, 55, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #191a37;
  border-color: #191a37;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #090914;
  border-color: #05050b;
}

.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(25, 26, 55, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #da2128;
  border-color: #da2128;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #b91c22;
  border-color: #ae1a20;
}

.btn-secondary:focus,
.btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(218, 33, 40, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #da2128;
  border-color: #da2128;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #ae1a20;
  border-color: #a3191e;
}

.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(218, 33, 40, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #746a7f;
  border-color: #746a7f;
}

.btn-success:hover {
  color: #fff;
  background-color: #61596a;
  border-color: #5b5363;
}

.btn-success:focus,
.btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(116, 106, 127, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #746a7f;
  border-color: #746a7f;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #5b5363;
  border-color: #544d5c;
}

.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(116, 106, 127, 0.5);
}

.btn-info {
  color: #212529;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.btn-info:hover {
  color: #212529;
  background-color: #e2e2e2;
  border-color: gainsboro;
}

.btn-info:focus,
.btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #212529;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #212529;
  background-color: gainsboro;
  border-color: #d5d5d5;
}

.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(245, 245, 245, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #e98f79;
  border-color: #e98f79;
}

.btn-warning:hover {
  color: #fff;
  background-color: #e47458;
  border-color: #e26a4d;
}

.btn-warning:focus,
.btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(233, 143, 121, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #e98f79;
  border-color: #e98f79;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #e26a4d;
  border-color: #e06142;
}

.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(233, 143, 121, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #da2128;
  border-color: #da2128;
}

.btn-danger:hover {
  color: #fff;
  background-color: #b91c22;
  border-color: #ae1a20;
}

.btn-danger:focus,
.btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(218, 33, 40, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #da2128;
  border-color: #da2128;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #ae1a20;
  border-color: #a3191e;
}

.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(218, 33, 40, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #dee2e6;
  border-color: #dee2e6;
}

.btn-light:hover {
  color: #212529;
  background-color: #c8cfd6;
  border-color: #c1c9d0;
}

.btn-light:focus,
.btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 226, 230, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #dee2e6;
  border-color: #dee2e6;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #c1c9d0;
  border-color: #bac2cb;
}

.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(222, 226, 230, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #383d42;
  border-color: #383d42;
}

.btn-dark:hover {
  color: #fff;
  background-color: #262a2d;
  border-color: #212426;
}

.btn-dark:focus,
.btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(56, 61, 66, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #383d42;
  border-color: #383d42;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #212426;
  border-color: #1b1d20;
}

.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(56, 61, 66, 0.5);
}

.btn-outline-primary {
  color: #191a37;
  background-color: transparent;
  background-image: none;
  border-color: #191a37;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #191a37;
  border-color: #191a37;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(25, 26, 55, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #191a37;
  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: #191a37;
  border-color: #191a37;
}

.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(25, 26, 55, 0.5);
}

.btn-outline-secondary {
  color: #da2128;
  background-color: transparent;
  background-image: none;
  border-color: #da2128;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #da2128;
  border-color: #da2128;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(218, 33, 40, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #da2128;
  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: #da2128;
  border-color: #da2128;
}

.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(218, 33, 40, 0.5);
}

.btn-outline-success {
  color: #746a7f;
  background-color: transparent;
  background-image: none;
  border-color: #746a7f;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #746a7f;
  border-color: #746a7f;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(116, 106, 127, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #746a7f;
  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: #746a7f;
  border-color: #746a7f;
}

.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(116, 106, 127, 0.5);
}

.btn-outline-info {
  color: #f5f5f5;
  background-color: transparent;
  background-image: none;
  border-color: #f5f5f5;
}

.btn-outline-info:hover {
  color: #212529;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #f5f5f5;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #212529;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.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(245, 245, 245, 0.5);
}

.btn-outline-warning {
  color: #e98f79;
  background-color: transparent;
  background-image: none;
  border-color: #e98f79;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #e98f79;
  border-color: #e98f79;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(233, 143, 121, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #e98f79;
  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: #e98f79;
  border-color: #e98f79;
}

.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(233, 143, 121, 0.5);
}

.btn-outline-danger {
  color: #da2128;
  background-color: transparent;
  background-image: none;
  border-color: #da2128;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #da2128;
  border-color: #da2128;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(218, 33, 40, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #da2128;
  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: #da2128;
  border-color: #da2128;
}

.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(218, 33, 40, 0.5);
}

.btn-outline-light {
  color: #dee2e6;
  background-color: transparent;
  background-image: none;
  border-color: #dee2e6;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #dee2e6;
  border-color: #dee2e6;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 226, 230, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #dee2e6;
  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: #dee2e6;
  border-color: #dee2e6;
}

.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(222, 226, 230, 0.5);
}

.btn-outline-dark {
  color: #383d42;
  background-color: transparent;
  background-image: none;
  border-color: #383d42;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #383d42;
  border-color: #383d42;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(56, 61, 66, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #383d42;
  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: #383d42;
  border-color: #383d42;
}

.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(56, 61, 66, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #191a37;
  background-color: transparent;
}

.btn-link:hover {
  color: #010102;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
  border-color: transparent;
  box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg,
.btn-group-lg > .btn,
.EPiServerForms .Form__MainBody .btn-group-lg > button,
.elq-form .btn-group-lg > .submit-button-style {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-sm,
.btn-group-sm > .btn,
.EPiServerForms .Form__MainBody .btn-group-sm > button,
.elq-form .btn-group-sm > .submit-button-style {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0;
}

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

.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #41438f;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(25, 26, 55, 0.25);
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #F1F0F0;
  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-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  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.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

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

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 {
  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: #746a7f;
}

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

.was-validated .form-control:valid,
.form-control.is-valid,
.was-validated
.custom-select:valid,
.custom-select.is-valid {
  border-color: #746a7f;
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus,
.was-validated
  .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #746a7f;
  box-shadow: 0 0 0 0.2rem rgba(116, 106, 127, 0.25);
}

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

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

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #746a7f;
}

.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: #746a7f;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #b4aebb;
}

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

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #8e8498;
}

.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 1px #fff, 0 0 0 0.2rem rgba(116, 106, 127, 0.25);
}

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #746a7f;
}

.was-validated .custom-file-input:valid ~ .custom-file-label::after,
.custom-file-input.is-valid ~ .custom-file-label::after {
  border-color: inherit;
}

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

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(116, 106, 127, 0.25);
}

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

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

.was-validated .form-control:invalid,
.form-control.is-invalid,
.was-validated
.custom-select:invalid,
.custom-select.is-invalid {
  border-color: #da2128;
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus,
.was-validated
  .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #da2128;
  box-shadow: 0 0 0 0.2rem rgba(218, 33, 40, 0.25);
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.was-validated
  .custom-select:invalid ~ .invalid-feedback,
.was-validated
  .custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip,
.form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #da2128;
}

.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: #da2128;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #ee8d90;
}

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip,
.custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #e44a50;
}

.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 1px #fff, 0 0 0 0.2rem rgba(218, 33, 40, 0.25);
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #da2128;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label::after,
.custom-file-input.is-invalid ~ .custom-file-label::after {
  border-color: inherit;
}

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip,
.custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(218, 33, 40, 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;
    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 {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

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

.no-gutters,
.carousel--industries .flickity-slider,
.carousel--sliderBlock .flickity-slider,
.carousel--insights.mobile .flickity-slider,
.case-studies-slider .carousel--case-studies.mobile .flickity-slider {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.carousel--industries .flickity-slider > .col,
.carousel--sliderBlock .flickity-slider > .col,
.carousel--insights.mobile .flickity-slider > .col,
.case-studies-slider .carousel--case-studies.mobile .flickity-slider > .col,
.no-gutters > [class*="col-"],
.carousel--industries .flickity-slider > [class*="col-"],
.carousel--sliderBlock .flickity-slider > [class*="col-"],
.carousel--insights.mobile .flickity-slider > [class*="col-"],
.case-studies-slider .carousel--case-studies.mobile .flickity-slider > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.col-12,
.EPiServerForms .Form__Element .FormTextbox.FormTextbox--Textarea,
.EPiServerForms .Form__Element .FormChoice {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-md-1 {
    margin-left: 8.33333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .col-lg-6,
  .EPiServerForms .Form__Element .FormTextbox,
  .EPiServerForms .Form__Element .FormSelection {
    flex: 0 0 50%;
    max-width: 50%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.25rem;
  line-height: 1;
}

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

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

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

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

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

p,
.EPiServerForms .Form__Description {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

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

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #191a37;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #010102;
  text-decoration: underline;
}

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

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

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

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

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

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

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

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

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

.table {
  width: 100%;
  margin-bottom: 0.5rem;
  background-color: transparent;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table .table {
  background-color: #fff;
}

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

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

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

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

.table-hover .table-primary:hover {
  background-color: #b1b1bb;
}

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

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

.table-hover .table-secondary:hover {
  background-color: #f1abae;
}

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

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

.table-hover .table-success:hover {
  background-color: #cbc7cf;
}

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

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

.table-hover .table-info:hover {
  background-color: #efefef;
}

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

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

.table-hover .table-warning:hover {
  background-color: #f6cec3;
}

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

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

.table-hover .table-danger:hover {
  background-color: #f1abae;
}

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

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

.table-hover .table-light:hover {
  background-color: #e8eaed;
}

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

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

.table-hover .table-dark:hover {
  background-color: #babcbe;
}

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

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

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

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

.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}

.table .thead-light th {
  color: #495057;
  background-color: #F1F0F0;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #32383e;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive > .table-bordered {
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.25rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

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: 0.5rem;
  margin-bottom: 0.5rem;
  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,
.footer-link-col ul {
  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: 0.5rem;
  font-size: 1.25rem;
}

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

.blockquote-footer::before {
  content: "\2014   \A0";
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
}

.alert-heading {
  color: inherit;
}

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

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #0d0e1d;
  background-color: #d1d1d7;
  border-color: #bfbfc7;
}

.alert-primary hr {
  border-top-color: #b1b1bb;
}

.alert-primary .alert-link {
  color: black;
}

.alert-secondary {
  color: #711115;
  background-color: #f8d3d4;
  border-color: #f5c1c3;
}

.alert-secondary hr {
  border-top-color: #f1abae;
}

.alert-secondary .alert-link {
  color: #450a0d;
}

.alert-success {
  color: #3c3742;
  background-color: #e3e1e5;
  border-color: #d8d5db;
}

.alert-success hr {
  border-top-color: #cbc7cf;
}

.alert-success .alert-link {
  color: #232026;
}

.alert-info {
  color: #7f7f7f;
  background-color: #fdfdfd;
  border-color: #fcfcfc;
}

.alert-info hr {
  border-top-color: #efefef;
}

.alert-info .alert-link {
  color: #666666;
}

.alert-warning {
  color: #794a3f;
  background-color: #fbe9e4;
  border-color: #f9e0d9;
}

.alert-warning hr {
  border-top-color: #f6cec3;
}

.alert-warning .alert-link {
  color: #57352e;
}

.alert-danger {
  color: #711115;
  background-color: #f8d3d4;
  border-color: #f5c1c3;
}

.alert-danger hr {
  border-top-color: #f1abae;
}

.alert-danger .alert-link {
  color: #450a0d;
}

.alert-light {
  color: #737678;
  background-color: #f8f9fa;
  border-color: #f6f7f8;
}

.alert-light hr {
  border-top-color: #e8eaed;
}

.alert-light .alert-link {
  color: #5a5c5e;
}

.alert-dark {
  color: #1d2022;
  background-color: #d7d8d9;
  border-color: #c7c9ca;
}

.alert-dark hr {
  border-top-color: #babcbe;
}

.alert-dark .alert-link {
  color: #060606;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
}

.badge:empty {
  display: none;
}

.btn .badge,
.EPiServerForms .Form__MainBody button .badge,
.elq-form .submit-button-style .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
}

.badge-primary {
  color: #fff;
  background-color: #191a37;
}

.badge-primary[href]:hover,
.badge-primary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #090914;
}

.badge-secondary {
  color: #fff;
  background-color: #da2128;
}

.badge-secondary[href]:hover,
.badge-secondary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #ae1a20;
}

.badge-success {
  color: #fff;
  background-color: #746a7f;
}

.badge-success[href]:hover,
.badge-success[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #5b5363;
}

.badge-info {
  color: #212529;
  background-color: #f5f5f5;
}

.badge-info[href]:hover,
.badge-info[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: gainsboro;
}

.badge-warning {
  color: #212529;
  background-color: #e98f79;
}

.badge-warning[href]:hover,
.badge-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #e26a4d;
}

.badge-danger {
  color: #fff;
  background-color: #da2128;
}

.badge-danger[href]:hover,
.badge-danger[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #ae1a20;
}

.badge-light {
  color: #212529;
  background-color: #dee2e6;
}

.badge-light[href]:hover,
.badge-light[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #c1c9d0;
}

.badge-dark {
  color: #fff;
  background-color: #383d42;
}

.badge-dark[href]:hover,
.badge-dark[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #212426;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 0;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #fff;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.EPiServerForms .Form__MainBody .btn-group > button,
.elq-form .btn-group > .submit-button-style,
.btn-group-vertical > .btn,
.EPiServerForms .Form__MainBody .btn-group-vertical > button,
.elq-form .btn-group-vertical > .submit-button-style {
  position: relative;
  flex: 0 1 auto;
}

.btn-group > .btn:hover,
.EPiServerForms .Form__MainBody .btn-group > button:hover,
.elq-form .btn-group > .submit-button-style:hover,
.btn-group-vertical > .btn:hover,
.EPiServerForms .Form__MainBody .btn-group-vertical > button:hover,
.elq-form .btn-group-vertical > .submit-button-style:hover {
  z-index: 1;
}

.btn-group > .btn:focus,
.EPiServerForms .Form__MainBody .btn-group > button:focus,
.elq-form .btn-group > .submit-button-style:focus,
.btn-group > .btn:active,
.EPiServerForms .Form__MainBody .btn-group > button:active,
.elq-form .btn-group > .submit-button-style:active,
.btn-group > .btn.active,
.EPiServerForms .Form__MainBody .btn-group > button.active,
.elq-form .btn-group > .active.submit-button-style,
.btn-group-vertical > .btn:focus,
.EPiServerForms .Form__MainBody .btn-group-vertical > button:focus,
.elq-form .btn-group-vertical > .submit-button-style:focus,
.btn-group-vertical > .btn:active,
.EPiServerForms .Form__MainBody .btn-group-vertical > button:active,
.elq-form .btn-group-vertical > .submit-button-style:active,
.btn-group-vertical > .btn.active,
.EPiServerForms .Form__MainBody .btn-group-vertical > button.active,
.elq-form .btn-group-vertical > .active.submit-button-style {
  z-index: 1;
}

.btn-group .btn + .btn,
.btn-group .EPiServerForms .Form__MainBody button + .btn,
.EPiServerForms .Form__MainBody .btn-group button + .btn,
.btn-group .elq-form .submit-button-style + .btn,
.elq-form .btn-group .submit-button-style + .btn,
.btn-group .EPiServerForms .Form__MainBody .btn + button,
.EPiServerForms .Form__MainBody .btn-group .btn + button,
.btn-group .EPiServerForms .Form__MainBody button + button,
.EPiServerForms .Form__MainBody .btn-group button + button,
.btn-group .elq-form .EPiServerForms .Form__MainBody .submit-button-style + button,
.EPiServerForms .Form__MainBody .btn-group .elq-form .submit-button-style + button,
.elq-form .btn-group .EPiServerForms .Form__MainBody .submit-button-style + button,
.EPiServerForms .Form__MainBody .elq-form .btn-group .submit-button-style + button,
.btn-group .elq-form .btn + .submit-button-style,
.elq-form .btn-group .btn + .submit-button-style,
.btn-group .EPiServerForms .Form__MainBody .elq-form button + .submit-button-style,
.elq-form .btn-group .EPiServerForms .Form__MainBody button + .submit-button-style,
.EPiServerForms .Form__MainBody .btn-group .elq-form button + .submit-button-style,
.elq-form .EPiServerForms .Form__MainBody .btn-group button + .submit-button-style,
.btn-group .elq-form .submit-button-style + .submit-button-style,
.elq-form .btn-group .submit-button-style + .submit-button-style,
.btn-group .btn + .btn-group,
.btn-group .EPiServerForms .Form__MainBody button + .btn-group,
.EPiServerForms .Form__MainBody .btn-group button + .btn-group,
.btn-group .elq-form .submit-button-style + .btn-group,
.elq-form .btn-group .submit-button-style + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .EPiServerForms .Form__MainBody .btn-group + button,
.EPiServerForms .Form__MainBody .btn-group .btn-group + button,
.btn-group .elq-form .btn-group + .submit-button-style,
.elq-form .btn-group .btn-group + .submit-button-style,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .EPiServerForms .Form__MainBody button + .btn,
.EPiServerForms .Form__MainBody .btn-group-vertical button + .btn,
.btn-group-vertical .elq-form .submit-button-style + .btn,
.elq-form .btn-group-vertical .submit-button-style + .btn,
.btn-group-vertical .EPiServerForms .Form__MainBody .btn + button,
.EPiServerForms .Form__MainBody .btn-group-vertical .btn + button,
.btn-group-vertical .EPiServerForms .Form__MainBody button + button,
.EPiServerForms .Form__MainBody .btn-group-vertical button + button,
.btn-group-vertical .elq-form .EPiServerForms .Form__MainBody .submit-button-style + button,
.EPiServerForms .Form__MainBody .btn-group-vertical .elq-form .submit-button-style + button,
.elq-form .btn-group-vertical .EPiServerForms .Form__MainBody .submit-button-style + button,
.EPiServerForms .Form__MainBody .elq-form .btn-group-vertical .submit-button-style + button,
.btn-group-vertical .elq-form .btn + .submit-button-style,
.elq-form .btn-group-vertical .btn + .submit-button-style,
.btn-group-vertical .EPiServerForms .Form__MainBody .elq-form button + .submit-button-style,
.elq-form .btn-group-vertical .EPiServerForms .Form__MainBody button + .submit-button-style,
.EPiServerForms .Form__MainBody .btn-group-vertical .elq-form button + .submit-button-style,
.elq-form .EPiServerForms .Form__MainBody .btn-group-vertical button + .submit-button-style,
.btn-group-vertical .elq-form .submit-button-style + .submit-button-style,
.elq-form .btn-group-vertical .submit-button-style + .submit-button-style,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .EPiServerForms .Form__MainBody button + .btn-group,
.EPiServerForms .Form__MainBody .btn-group-vertical button + .btn-group,
.btn-group-vertical .elq-form .submit-button-style + .btn-group,
.elq-form .btn-group-vertical .submit-button-style + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .EPiServerForms .Form__MainBody .btn-group + button,
.EPiServerForms .Form__MainBody .btn-group-vertical .btn-group + button,
.btn-group-vertical .elq-form .btn-group + .submit-button-style,
.elq-form .btn-group-vertical .btn-group + .submit-button-style,
.btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:first-child,
.EPiServerForms .Form__MainBody .btn-group > button:first-child,
.elq-form .btn-group > .submit-button-style:first-child {
  margin-left: 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,
.EPiServerForms .Form__MainBody .btn-group-sm > button + .dropdown-toggle-split,
.elq-form .btn-group-sm > .submit-button-style + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split,
.EPiServerForms .Form__MainBody .btn-group-lg > button + .dropdown-toggle-split,
.elq-form .btn-group-lg > .submit-button-style + .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 .EPiServerForms .Form__MainBody button,
.EPiServerForms .Form__MainBody .btn-group-vertical button,
.btn-group-vertical .elq-form .submit-button-style,
.elq-form .btn-group-vertical .submit-button-style,
.btn-group-vertical .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn + .btn,
.EPiServerForms .Form__MainBody .btn-group-vertical > button + .btn,
.elq-form .btn-group-vertical > .submit-button-style + .btn,
.EPiServerForms .Form__MainBody .btn-group-vertical > .btn + button,
.EPiServerForms .Form__MainBody .btn-group-vertical > button + button,
.elq-form .EPiServerForms .Form__MainBody .btn-group-vertical > .submit-button-style + button,
.EPiServerForms .Form__MainBody .elq-form .btn-group-vertical > .submit-button-style + button,
.elq-form .btn-group-vertical > .btn + .submit-button-style,
.EPiServerForms .Form__MainBody .elq-form .btn-group-vertical > button + .submit-button-style,
.elq-form .EPiServerForms .Form__MainBody .btn-group-vertical > button + .submit-button-style,
.elq-form .btn-group-vertical > .submit-button-style + .submit-button-style,
.btn-group-vertical > .btn + .btn-group,
.EPiServerForms .Form__MainBody .btn-group-vertical > button + .btn-group,
.elq-form .btn-group-vertical > .submit-button-style + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.EPiServerForms .Form__MainBody .btn-group-vertical > .btn-group + button,
.elq-form .btn-group-vertical > .btn-group + .submit-button-style,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-toggle > .btn,
.EPiServerForms .Form__MainBody .btn-group-toggle > button,
.elq-form .btn-group-toggle > .submit-button-style,
.btn-group-toggle > .btn-group > .btn,
.EPiServerForms .Form__MainBody .btn-group-toggle > .btn-group > button,
.elq-form .btn-group-toggle > .btn-group > .submit-button-style {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"],
.EPiServerForms .Form__MainBody .btn-group-toggle > button input[type="radio"],
.elq-form .btn-group-toggle > .submit-button-style input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.EPiServerForms .Form__MainBody .btn-group-toggle > button input[type="checkbox"],
.elq-form .btn-group-toggle > .submit-button-style input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.EPiServerForms .Form__MainBody .btn-group-toggle > .btn-group > button input[type="radio"],
.elq-form .btn-group-toggle > .btn-group > .submit-button-style input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"],
.EPiServerForms .Form__MainBody .btn-group-toggle > .btn-group > button input[type="checkbox"],
.elq-form .btn-group-toggle > .btn-group > .submit-button-style input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

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

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

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

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

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

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

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
}

.card-img-top {
  width: 100%;
}

.card-img-bottom {
  width: 100%;
}

.card-deck {
  display: flex;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: flex;
  flex-direction: column;
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    flex-flow: row wrap;
  }

  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }

  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }

  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.accordion .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

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

.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;
  z-index: -1;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #191a37;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(25, 26, 55, 0.25);
}

.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #5255b0;
}

.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #F1F0F0;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  user-select: none;
  background-color: #dee2e6;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #191a37;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: #191a37;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' 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(25, 26, 55, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(25, 26, 55, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #191a37;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' 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(25, 26, 55, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23383d42' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0;
  appearance: none;
}

.custom-select:focus {
  border-color: #41438f;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(65, 67, 143, 0.5);
}

.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: #F1F0F0;
}

.custom-select::-ms-expand {
  opacity: 0;
}

.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}

.custom-select-lg {
  height: calc(2.875rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 125%;
}

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

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin: 0;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #41438f;
  box-shadow: 0 0 0 0.2rem rgba(25, 26, 55, 0.25);
}

.custom-file-input:focus ~ .custom-file-label::after {
  border-color: #41438f;
}

.custom-file-input:disabled ~ .custom-file-label {
  background-color: #F1F0F0;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 2.25rem;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #F1F0F0;
  border-left: 1px solid #ced4da;
}

.custom-range {
  width: 100%;
  padding-left: 0;
  background-color: transparent;
  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(25, 26, 55, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(25, 26, 55, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(25, 26, 55, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #191a37;
  border: 0;
  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 screen and (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #5255b0;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #191a37;
  border: 0;
  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 screen and (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #5255b0;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #191a37;
  border: 0;
  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 screen and (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #5255b0;
}

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

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
}

.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 screen and (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  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);
}

.dropdown-menu-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;
  width: 0;
  height: 0;
  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;
  width: 0;
  height: 0;
  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;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  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.25rem 0;
  overflow: hidden;
  border-top: 1px solid #F1F0F0;
}

.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: #f5f5f5;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #191a37;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
  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;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .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 > .custom-file {
  display: flex;
  align-items: center;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}

.input-group-prepend .btn,
.input-group-prepend .EPiServerForms .Form__MainBody button,
.EPiServerForms .Form__MainBody .input-group-prepend button,
.input-group-prepend .elq-form .submit-button-style,
.elq-form .input-group-prepend .submit-button-style,
.input-group-append .btn,
.input-group-append .EPiServerForms .Form__MainBody button,
.EPiServerForms .Form__MainBody .input-group-append button,
.input-group-append .elq-form .submit-button-style,
.elq-form .input-group-append .submit-button-style {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .EPiServerForms .Form__MainBody button + .btn,
.EPiServerForms .Form__MainBody .input-group-prepend button + .btn,
.input-group-prepend .elq-form .submit-button-style + .btn,
.elq-form .input-group-prepend .submit-button-style + .btn,
.input-group-prepend .EPiServerForms .Form__MainBody .btn + button,
.EPiServerForms .Form__MainBody .input-group-prepend .btn + button,
.input-group-prepend .EPiServerForms .Form__MainBody button + button,
.EPiServerForms .Form__MainBody .input-group-prepend button + button,
.input-group-prepend .elq-form .EPiServerForms .Form__MainBody .submit-button-style + button,
.EPiServerForms .Form__MainBody .input-group-prepend .elq-form .submit-button-style + button,
.elq-form .input-group-prepend .EPiServerForms .Form__MainBody .submit-button-style + button,
.EPiServerForms .Form__MainBody .elq-form .input-group-prepend .submit-button-style + button,
.input-group-prepend .elq-form .btn + .submit-button-style,
.elq-form .input-group-prepend .btn + .submit-button-style,
.input-group-prepend .EPiServerForms .Form__MainBody .elq-form button + .submit-button-style,
.elq-form .input-group-prepend .EPiServerForms .Form__MainBody button + .submit-button-style,
.EPiServerForms .Form__MainBody .input-group-prepend .elq-form button + .submit-button-style,
.elq-form .EPiServerForms .Form__MainBody .input-group-prepend button + .submit-button-style,
.input-group-prepend .elq-form .submit-button-style + .submit-button-style,
.elq-form .input-group-prepend .submit-button-style + .submit-button-style,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .EPiServerForms .Form__MainBody button + .input-group-text,
.EPiServerForms .Form__MainBody .input-group-prepend button + .input-group-text,
.input-group-prepend .elq-form .submit-button-style + .input-group-text,
.elq-form .input-group-prepend .submit-button-style + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .EPiServerForms .Form__MainBody .input-group-text + button,
.EPiServerForms .Form__MainBody .input-group-prepend .input-group-text + button,
.input-group-prepend .elq-form .input-group-text + .submit-button-style,
.elq-form .input-group-prepend .input-group-text + .submit-button-style,
.input-group-append .btn + .btn,
.input-group-append .EPiServerForms .Form__MainBody button + .btn,
.EPiServerForms .Form__MainBody .input-group-append button + .btn,
.input-group-append .elq-form .submit-button-style + .btn,
.elq-form .input-group-append .submit-button-style + .btn,
.input-group-append .EPiServerForms .Form__MainBody .btn + button,
.EPiServerForms .Form__MainBody .input-group-append .btn + button,
.input-group-append .EPiServerForms .Form__MainBody button + button,
.EPiServerForms .Form__MainBody .input-group-append button + button,
.input-group-append .elq-form .EPiServerForms .Form__MainBody .submit-button-style + button,
.EPiServerForms .Form__MainBody .input-group-append .elq-form .submit-button-style + button,
.elq-form .input-group-append .EPiServerForms .Form__MainBody .submit-button-style + button,
.EPiServerForms .Form__MainBody .elq-form .input-group-append .submit-button-style + button,
.input-group-append .elq-form .btn + .submit-button-style,
.elq-form .input-group-append .btn + .submit-button-style,
.input-group-append .EPiServerForms .Form__MainBody .elq-form button + .submit-button-style,
.elq-form .input-group-append .EPiServerForms .Form__MainBody button + .submit-button-style,
.EPiServerForms .Form__MainBody .input-group-append .elq-form button + .submit-button-style,
.elq-form .EPiServerForms .Form__MainBody .input-group-append button + .submit-button-style,
.input-group-append .elq-form .submit-button-style + .submit-button-style,
.elq-form .input-group-append .submit-button-style + .submit-button-style,
.input-group-append .btn + .input-group-text,
.input-group-append .EPiServerForms .Form__MainBody button + .input-group-text,
.EPiServerForms .Form__MainBody .input-group-append button + .input-group-text,
.input-group-append .elq-form .submit-button-style + .input-group-text,
.elq-form .input-group-append .submit-button-style + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .EPiServerForms .Form__MainBody .input-group-text + button,
.EPiServerForms .Form__MainBody .input-group-append .input-group-text + button,
.input-group-append .elq-form .input-group-text + .submit-button-style,
.elq-form .input-group-append .input-group-text + .submit-button-style {
  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: #F1F0F0;
  border: 1px solid #ced4da;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.input-group-lg > .form-control,
.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,
.EPiServerForms .Form__MainBody .input-group-lg > .input-group-prepend > button,
.elq-form .input-group-lg > .input-group-prepend > .submit-button-style,
.input-group-lg > .input-group-append > .btn,
.EPiServerForms .Form__MainBody .input-group-lg > .input-group-append > button,
.elq-form .input-group-lg > .input-group-append > .submit-button-style {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.input-group-sm > .form-control,
.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,
.EPiServerForms .Form__MainBody .input-group-sm > .input-group-prepend > button,
.elq-form .input-group-sm > .input-group-prepend > .submit-button-style,
.input-group-sm > .input-group-append > .btn,
.EPiServerForms .Form__MainBody .input-group-sm > .input-group-append > button,
.elq-form .input-group-sm > .input-group-append > .submit-button-style {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #F1F0F0;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

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

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  color: #495057;
  text-decoration: none;
  background-color: #f5f5f5;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #F1F0F0;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:last-child {
  margin-bottom: 0;
}

.list-group-item:hover,
.list-group-item:focus {
  z-index: 1;
  text-decoration: none;
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #191a37;
  border-color: #191a37;
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
}

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}

.list-group-item-primary {
  color: #0d0e1d;
  background-color: #bfbfc7;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #0d0e1d;
  background-color: #b1b1bb;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #0d0e1d;
  border-color: #0d0e1d;
}

.list-group-item-secondary {
  color: #711115;
  background-color: #f5c1c3;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #711115;
  background-color: #f1abae;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #711115;
  border-color: #711115;
}

.list-group-item-success {
  color: #3c3742;
  background-color: #d8d5db;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #3c3742;
  background-color: #cbc7cf;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #3c3742;
  border-color: #3c3742;
}

.list-group-item-info {
  color: #7f7f7f;
  background-color: #fcfcfc;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #7f7f7f;
  background-color: #efefef;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #7f7f7f;
  border-color: #7f7f7f;
}

.list-group-item-warning {
  color: #794a3f;
  background-color: #f9e0d9;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #794a3f;
  background-color: #f6cec3;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #794a3f;
  border-color: #794a3f;
}

.list-group-item-danger {
  color: #711115;
  background-color: #f5c1c3;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #711115;
  background-color: #f1abae;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #711115;
  border-color: #711115;
}

.list-group-item-light {
  color: #737678;
  background-color: #f6f7f8;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #737678;
  background-color: #e8eaed;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #737678;
  border-color: #737678;
}

.list-group-item-dark {
  color: #1d2022;
  background-color: #c7c9ca;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #1d2022;
  background-color: #babcbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1d2022;
  border-color: #1d2022;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #F1F0F0 #F1F0F0 #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #191a37;
}

.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0.5rem;
}

.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 0.5rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

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

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

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #191a37;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #010102;
  text-decoration: none;
  background-color: #F1F0F0;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(25, 26, 55, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #191a37;
  border-color: #191a37;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.fade {
  transition: opacity 0.15s linear;
}

@media screen and (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  align-items: center;
  width: 100%;
  backface-visibility: hidden;
  perspective: 1000px;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
  transition: transform 0.6s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .carousel-item.active,
  .carousel-item-next,
  .carousel-item-prev {
    transition: none;
  }
}

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  transform: translateX(0);
}

@supports (transform-style: preserve-3d) {
  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    transform: translate3d(0, 0, 0);
  }
}

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

@supports (transform-style: preserve-3d) {
  .carousel-item-next,
  .active.carousel-item-right {
    transform: translate3d(100%, 0, 0);
  }
}

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

@supports (transform-style: preserve-3d) {
  .carousel-item-prev,
  .active.carousel-item-left {
    transform: translate3d(-100%, 0, 0);
  }
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
}

@supports (transform-style: preserve-3d) {
  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item.active,
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-prev {
    transform: translate3d(0, 0, 0);
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  position: relative;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators .active {
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.modal-open {
  overflow: hidden;
}

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

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  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, -25%);
}

@media screen and (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: translate(0, 0);
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (0.5rem * 2));
  content: "";
}

.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);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  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;
  border-bottom: 1px solid #F1F0F0;
}

.modal-header .close {
  padding: 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;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #F1F0F0;
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .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-centered {
    min-height: calc(100% - (1.75rem * 2));
  }

  .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}

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

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

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

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

.bg-success {
  background-color: #746a7f !important;
}

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

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

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

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

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

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

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

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

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

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

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #212426 !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: #191a37 !important;
}

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

.border-success {
  border-color: #746a7f !important;
}

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

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

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

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

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

.border-white {
  border-color: #fff !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-circle {
  border-radius: 50% !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 print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

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

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

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-21 {
  margin: 10.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-23 {
  margin: 11.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-27 {
  margin: 13.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-29 {
  margin: 14.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-31 {
  margin: 15.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-33 {
  margin: 16.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-37 {
  margin: 18.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-39 {
  margin: 19.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-42 {
  margin: 21rem !important;
}

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

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

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

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

.m-43 {
  margin: 21.5rem !important;
}

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

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

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

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

.m-44 {
  margin: 22rem !important;
}

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

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

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

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

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

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

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

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

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

.m-46 {
  margin: 23rem !important;
}

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

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

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

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

.m-47 {
  margin: 23.5rem !important;
}

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

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

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

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

.m-48 {
  margin: 24rem !important;
}

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

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

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

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

.m-49 {
  margin: 24.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-51 {
  margin: 25.5rem !important;
}

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

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

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

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

.m-52 {
  margin: 26rem !important;
}

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

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

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

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

.m-53 {
  margin: 26.5rem !important;
}

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

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

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

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

.m-54 {
  margin: 27rem !important;
}

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

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

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

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

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

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

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

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

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

.m-56 {
  margin: 28rem !important;
}

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

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

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

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

.m-57 {
  margin: 28.5rem !important;
}

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

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

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

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

.m-58 {
  margin: 29rem !important;
}

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

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

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

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

.m-59 {
  margin: 29.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-61 {
  margin: 30.5rem !important;
}

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

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

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

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

.m-62 {
  margin: 31rem !important;
}

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

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

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

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

.m-63 {
  margin: 31.5rem !important;
}

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

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

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

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

.m-64 {
  margin: 32rem !important;
}

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

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

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

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

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

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

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

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

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

.m-66 {
  margin: 33rem !important;
}

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

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

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

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

.m-67 {
  margin: 33.5rem !important;
}

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

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

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

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

.m-68 {
  margin: 34rem !important;
}

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

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

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

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

.m-69 {
  margin: 34.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-71 {
  margin: 35.5rem !important;
}

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

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

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

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

.m-72 {
  margin: 36rem !important;
}

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

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

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

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

.m-73 {
  margin: 36.5rem !important;
}

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

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

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

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

.m-74 {
  margin: 37rem !important;
}

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

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

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

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

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

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

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

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

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

.m-76 {
  margin: 38rem !important;
}

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

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

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

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

.m-77 {
  margin: 38.5rem !important;
}

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

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

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

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

.m-78 {
  margin: 39rem !important;
}

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

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

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

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

.m-79 {
  margin: 39.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-81 {
  margin: 40.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-83 {
  margin: 41.5rem !important;
}

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

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

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

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

.m-84 {
  margin: 42rem !important;
}

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

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

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

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

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

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

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

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

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

.m-86 {
  margin: 43rem !important;
}

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

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

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

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

.m-87 {
  margin: 43.5rem !important;
}

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

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

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

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

.m-88 {
  margin: 44rem !important;
}

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

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

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

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

.m-89 {
  margin: 44.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-91 {
  margin: 45.5rem !important;
}

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

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

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

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

.m-92 {
  margin: 46rem !important;
}

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

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

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

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

.m-93 {
  margin: 46.5rem !important;
}

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

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

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

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

.m-94 {
  margin: 47rem !important;
}

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

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

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

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

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

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

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

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

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

.m-96 {
  margin: 48rem !important;
}

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

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

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

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

.m-97 {
  margin: 48.5rem !important;
}

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

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

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

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

.m-98 {
  margin: 49rem !important;
}

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

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

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

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

.m-99 {
  margin: 49.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-101 {
  margin: 50.5rem !important;
}

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

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

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

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

.m-102 {
  margin: 51rem !important;
}

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

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

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

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

.m-103 {
  margin: 51.5rem !important;
}

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

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

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

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

.m-104 {
  margin: 52rem !important;
}

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

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

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

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

.m-105 {
  margin: 52.5rem !important;
}

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

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

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

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

.m-106 {
  margin: 53rem !important;
}

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

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

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

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

.m-107 {
  margin: 53.5rem !important;
}

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

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

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

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

.m-108 {
  margin: 54rem !important;
}

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

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

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

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

.m-109 {
  margin: 54.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-111 {
  margin: 55.5rem !important;
}

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

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

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

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

.m-112 {
  margin: 56rem !important;
}

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

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

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

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

.m-113 {
  margin: 56.5rem !important;
}

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

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

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

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

.m-114 {
  margin: 57rem !important;
}

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

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

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

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

.m-115 {
  margin: 57.5rem !important;
}

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

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

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

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

.m-116 {
  margin: 58rem !important;
}

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

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

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

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

.m-117 {
  margin: 58.5rem !important;
}

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

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

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

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

.m-118 {
  margin: 59rem !important;
}

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

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

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

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

.m-119 {
  margin: 59.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-121 {
  margin: 60.5rem !important;
}

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

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

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

.ml-121,
.mx-121 {
  margin-left: 60.5rem !important;
}

.m-122 {
  margin: 61rem !important;
}

.mt-122,
.my-122 {
  margin-top: 61rem !important;
}

.mr-122,
.mx-122 {
  margin-right: 61rem !important;
}

.mb-122,
.my-122 {
  margin-bottom: 61rem !important;
}

.ml-122,
.mx-122 {
  margin-left: 61rem !important;
}

.m-123 {
  margin: 61.5rem !important;
}

.mt-123,
.my-123 {
  margin-top: 61.5rem !important;
}

.mr-123,
.mx-123 {
  margin-right: 61.5rem !important;
}

.mb-123,
.my-123 {
  margin-bottom: 61.5rem !important;
}

.ml-123,
.mx-123 {
  margin-left: 61.5rem !important;
}

.m-124 {
  margin: 62rem !important;
}

.mt-124,
.my-124 {
  margin-top: 62rem !important;
}

.mr-124,
.mx-124 {
  margin-right: 62rem !important;
}

.mb-124,
.my-124 {
  margin-bottom: 62rem !important;
}

.ml-124,
.mx-124 {
  margin-left: 62rem !important;
}

.m-125 {
  margin: 62.5rem !important;
}

.mt-125,
.my-125 {
  margin-top: 62.5rem !important;
}

.mr-125,
.mx-125 {
  margin-right: 62.5rem !important;
}

.mb-125,
.my-125 {
  margin-bottom: 62.5rem !important;
}

.ml-125,
.mx-125 {
  margin-left: 62.5rem !important;
}

.m-126 {
  margin: 63rem !important;
}

.mt-126,
.my-126 {
  margin-top: 63rem !important;
}

.mr-126,
.mx-126 {
  margin-right: 63rem !important;
}

.mb-126,
.my-126 {
  margin-bottom: 63rem !important;
}

.ml-126,
.mx-126 {
  margin-left: 63rem !important;
}

.m-127 {
  margin: 63.5rem !important;
}

.mt-127,
.my-127 {
  margin-top: 63.5rem !important;
}

.mr-127,
.mx-127 {
  margin-right: 63.5rem !important;
}

.mb-127,
.my-127 {
  margin-bottom: 63.5rem !important;
}

.ml-127,
.mx-127 {
  margin-left: 63.5rem !important;
}

.m-128 {
  margin: 64rem !important;
}

.mt-128,
.my-128 {
  margin-top: 64rem !important;
}

.mr-128,
.mx-128 {
  margin-right: 64rem !important;
}

.mb-128,
.my-128 {
  margin-bottom: 64rem !important;
}

.ml-128,
.mx-128 {
  margin-left: 64rem !important;
}

.m-129 {
  margin: 64.5rem !important;
}

.mt-129,
.my-129 {
  margin-top: 64.5rem !important;
}

.mr-129,
.mx-129 {
  margin-right: 64.5rem !important;
}

.mb-129,
.my-129 {
  margin-bottom: 64.5rem !important;
}

.ml-129,
.mx-129 {
  margin-left: 64.5rem !important;
}

.m-130 {
  margin: 65rem !important;
}

.mt-130,
.my-130 {
  margin-top: 65rem !important;
}

.mr-130,
.mx-130 {
  margin-right: 65rem !important;
}

.mb-130,
.my-130 {
  margin-bottom: 65rem !important;
}

.ml-130,
.mx-130 {
  margin-left: 65rem !important;
}

.m-131 {
  margin: 65.5rem !important;
}

.mt-131,
.my-131 {
  margin-top: 65.5rem !important;
}

.mr-131,
.mx-131 {
  margin-right: 65.5rem !important;
}

.mb-131,
.my-131 {
  margin-bottom: 65.5rem !important;
}

.ml-131,
.mx-131 {
  margin-left: 65.5rem !important;
}

.m-132 {
  margin: 66rem !important;
}

.mt-132,
.my-132 {
  margin-top: 66rem !important;
}

.mr-132,
.mx-132 {
  margin-right: 66rem !important;
}

.mb-132,
.my-132 {
  margin-bottom: 66rem !important;
}

.ml-132,
.mx-132 {
  margin-left: 66rem !important;
}

.m-133 {
  margin: 66.5rem !important;
}

.mt-133,
.my-133 {
  margin-top: 66.5rem !important;
}

.mr-133,
.mx-133 {
  margin-right: 66.5rem !important;
}

.mb-133,
.my-133 {
  margin-bottom: 66.5rem !important;
}

.ml-133,
.mx-133 {
  margin-left: 66.5rem !important;
}

.m-134 {
  margin: 67rem !important;
}

.mt-134,
.my-134 {
  margin-top: 67rem !important;
}

.mr-134,
.mx-134 {
  margin-right: 67rem !important;
}

.mb-134,
.my-134 {
  margin-bottom: 67rem !important;
}

.ml-134,
.mx-134 {
  margin-left: 67rem !important;
}

.m-135 {
  margin: 67.5rem !important;
}

.mt-135,
.my-135 {
  margin-top: 67.5rem !important;
}

.mr-135,
.mx-135 {
  margin-right: 67.5rem !important;
}

.mb-135,
.my-135 {
  margin-bottom: 67.5rem !important;
}

.ml-135,
.mx-135 {
  margin-left: 67.5rem !important;
}

.m-136 {
  margin: 68rem !important;
}

.mt-136,
.my-136 {
  margin-top: 68rem !important;
}

.mr-136,
.mx-136 {
  margin-right: 68rem !important;
}

.mb-136,
.my-136 {
  margin-bottom: 68rem !important;
}

.ml-136,
.mx-136 {
  margin-left: 68rem !important;
}

.m-137 {
  margin: 68.5rem !important;
}

.mt-137,
.my-137 {
  margin-top: 68.5rem !important;
}

.mr-137,
.mx-137 {
  margin-right: 68.5rem !important;
}

.mb-137,
.my-137 {
  margin-bottom: 68.5rem !important;
}

.ml-137,
.mx-137 {
  margin-left: 68.5rem !important;
}

.m-138 {
  margin: 69rem !important;
}

.mt-138,
.my-138 {
  margin-top: 69rem !important;
}

.mr-138,
.mx-138 {
  margin-right: 69rem !important;
}

.mb-138,
.my-138 {
  margin-bottom: 69rem !important;
}

.ml-138,
.mx-138 {
  margin-left: 69rem !important;
}

.m-139 {
  margin: 69.5rem !important;
}

.mt-139,
.my-139 {
  margin-top: 69.5rem !important;
}

.mr-139,
.mx-139 {
  margin-right: 69.5rem !important;
}

.mb-139,
.my-139 {
  margin-bottom: 69.5rem !important;
}

.ml-139,
.mx-139 {
  margin-left: 69.5rem !important;
}

.m-140 {
  margin: 70rem !important;
}

.mt-140,
.my-140 {
  margin-top: 70rem !important;
}

.mr-140,
.mx-140 {
  margin-right: 70rem !important;
}

.mb-140,
.my-140 {
  margin-bottom: 70rem !important;
}

.ml-140,
.mx-140 {
  margin-left: 70rem !important;
}

.m-141 {
  margin: 70.5rem !important;
}

.mt-141,
.my-141 {
  margin-top: 70.5rem !important;
}

.mr-141,
.mx-141 {
  margin-right: 70.5rem !important;
}

.mb-141,
.my-141 {
  margin-bottom: 70.5rem !important;
}

.ml-141,
.mx-141 {
  margin-left: 70.5rem !important;
}

.m-142 {
  margin: 71rem !important;
}

.mt-142,
.my-142 {
  margin-top: 71rem !important;
}

.mr-142,
.mx-142 {
  margin-right: 71rem !important;
}

.mb-142,
.my-142 {
  margin-bottom: 71rem !important;
}

.ml-142,
.mx-142 {
  margin-left: 71rem !important;
}

.m-143 {
  margin: 71.5rem !important;
}

.mt-143,
.my-143 {
  margin-top: 71.5rem !important;
}

.mr-143,
.mx-143 {
  margin-right: 71.5rem !important;
}

.mb-143,
.my-143 {
  margin-bottom: 71.5rem !important;
}

.ml-143,
.mx-143 {
  margin-left: 71.5rem !important;
}

.m-144 {
  margin: 72rem !important;
}

.mt-144,
.my-144 {
  margin-top: 72rem !important;
}

.mr-144,
.mx-144 {
  margin-right: 72rem !important;
}

.mb-144,
.my-144 {
  margin-bottom: 72rem !important;
}

.ml-144,
.mx-144 {
  margin-left: 72rem !important;
}

.m-145 {
  margin: 72.5rem !important;
}

.mt-145,
.my-145 {
  margin-top: 72.5rem !important;
}

.mr-145,
.mx-145 {
  margin-right: 72.5rem !important;
}

.mb-145,
.my-145 {
  margin-bottom: 72.5rem !important;
}

.ml-145,
.mx-145 {
  margin-left: 72.5rem !important;
}

.m-146 {
  margin: 73rem !important;
}

.mt-146,
.my-146 {
  margin-top: 73rem !important;
}

.mr-146,
.mx-146 {
  margin-right: 73rem !important;
}

.mb-146,
.my-146 {
  margin-bottom: 73rem !important;
}

.ml-146,
.mx-146 {
  margin-left: 73rem !important;
}

.m-147 {
  margin: 73.5rem !important;
}

.mt-147,
.my-147 {
  margin-top: 73.5rem !important;
}

.mr-147,
.mx-147 {
  margin-right: 73.5rem !important;
}

.mb-147,
.my-147 {
  margin-bottom: 73.5rem !important;
}

.ml-147,
.mx-147 {
  margin-left: 73.5rem !important;
}

.m-148 {
  margin: 74rem !important;
}

.mt-148,
.my-148 {
  margin-top: 74rem !important;
}

.mr-148,
.mx-148 {
  margin-right: 74rem !important;
}

.mb-148,
.my-148 {
  margin-bottom: 74rem !important;
}

.ml-148,
.mx-148 {
  margin-left: 74rem !important;
}

.m-149 {
  margin: 74.5rem !important;
}

.mt-149,
.my-149 {
  margin-top: 74.5rem !important;
}

.mr-149,
.mx-149 {
  margin-right: 74.5rem !important;
}

.mb-149,
.my-149 {
  margin-bottom: 74.5rem !important;
}

.ml-149,
.mx-149 {
  margin-left: 74.5rem !important;
}

.m-150 {
  margin: 75rem !important;
}

.mt-150,
.my-150 {
  margin-top: 75rem !important;
}

.mr-150,
.mx-150 {
  margin-right: 75rem !important;
}

.mb-150,
.my-150 {
  margin-bottom: 75rem !important;
}

.ml-150,
.mx-150 {
  margin-left: 75rem !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.5rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.5rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.5rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.5rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.5rem !important;
}

.p-2 {
  padding: 1rem !important;
}

.pt-2,
.py-2 {
  padding-top: 1rem !important;
}

.pr-2,
.px-2 {
  padding-right: 1rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 1rem !important;
}

.pl-2,
.px-2 {
  padding-left: 1rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1.5rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1.5rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1.5rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1.5rem !important;
}

.p-4 {
  padding: 2rem !important;
}

.pt-4,
.py-4 {
  padding-top: 2rem !important;
}

.pr-4,
.px-4 {
  padding-right: 2rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 2rem !important;
}

.pl-4,
.px-4 {
  padding-left: 2rem !important;
}

.p-5 {
  padding: 2.5rem !important;
}

.pt-5,
.py-5 {
  padding-top: 2.5rem !important;
}

.pr-5,
.px-5 {
  padding-right: 2.5rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 2.5rem !important;
}

.pl-5,
.px-5 {
  padding-left: 2.5rem !important;
}

.p-6 {
  padding: 3rem !important;
}

.pt-6,
.py-6 {
  padding-top: 3rem !important;
}

.pr-6,
.px-6 {
  padding-right: 3rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 3rem !important;
}

.pl-6,
.px-6 {
  padding-left: 3rem !important;
}

.p-7 {
  padding: 3.5rem !important;
}

.pt-7,
.py-7 {
  padding-top: 3.5rem !important;
}

.pr-7,
.px-7 {
  padding-right: 3.5rem !important;
}

.pb-7,
.py-7 {
  padding-bottom: 3.5rem !important;
}

.pl-7,
.px-7 {
  padding-left: 3.5rem !important;
}

.p-8 {
  padding: 4rem !important;
}

.pt-8,
.py-8 {
  padding-top: 4rem !important;
}

.pr-8,
.px-8 {
  padding-right: 4rem !important;
}

.pb-8,
.py-8 {
  padding-bottom: 4rem !important;
}

.pl-8,
.px-8 {
  padding-left: 4rem !important;
}

.p-9 {
  padding: 4.5rem !important;
}

.pt-9,
.py-9 {
  padding-top: 4.5rem !important;
}

.pr-9,
.px-9 {
  padding-right: 4.5rem !important;
}

.pb-9,
.py-9 {
  padding-bottom: 4.5rem !important;
}

.pl-9,
.px-9 {
  padding-left: 4.5rem !important;
}

.p-10 {
  padding: 5rem !important;
}

.pt-10,
.py-10 {
  padding-top: 5rem !important;
}

.pr-10,
.px-10 {
  padding-right: 5rem !important;
}

.pb-10,
.py-10 {
  padding-bottom: 5rem !important;
}

.pl-10,
.px-10 {
  padding-left: 5rem !important;
}

.p-11 {
  padding: 5.5rem !important;
}

.pt-11,
.py-11 {
  padding-top: 5.5rem !important;
}

.pr-11,
.px-11 {
  padding-right: 5.5rem !important;
}

.pb-11,
.py-11 {
  padding-bottom: 5.5rem !important;
}

.pl-11,
.px-11 {
  padding-left: 5.5rem !important;
}

.p-12 {
  padding: 6rem !important;
}

.pt-12,
.py-12 {
  padding-top: 6rem !important;
}

.pr-12,
.px-12 {
  padding-right: 6rem !important;
}

.pb-12,
.py-12 {
  padding-bottom: 6rem !important;
}

.pl-12,
.px-12 {
  padding-left: 6rem !important;
}

.p-13 {
  padding: 6.5rem !important;
}

.pt-13,
.py-13 {
  padding-top: 6.5rem !important;
}

.pr-13,
.px-13 {
  padding-right: 6.5rem !important;
}

.pb-13,
.py-13 {
  padding-bottom: 6.5rem !important;
}

.pl-13,
.px-13 {
  padding-left: 6.5rem !important;
}

.p-14 {
  padding: 7rem !important;
}

.pt-14,
.py-14 {
  padding-top: 7rem !important;
}

.pr-14,
.px-14 {
  padding-right: 7rem !important;
}

.pb-14,
.py-14 {
  padding-bottom: 7rem !important;
}

.pl-14,
.px-14 {
  padding-left: 7rem !important;
}

.p-15 {
  padding: 7.5rem !important;
}

.pt-15,
.py-15 {
  padding-top: 7.5rem !important;
}

.pr-15,
.px-15 {
  padding-right: 7.5rem !important;
}

.pb-15,
.py-15 {
  padding-bottom: 7.5rem !important;
}

.pl-15,
.px-15 {
  padding-left: 7.5rem !important;
}

.p-16 {
  padding: 8rem !important;
}

.pt-16,
.py-16 {
  padding-top: 8rem !important;
}

.pr-16,
.px-16 {
  padding-right: 8rem !important;
}

.pb-16,
.py-16 {
  padding-bottom: 8rem !important;
}

.pl-16,
.px-16 {
  padding-left: 8rem !important;
}

.p-17 {
  padding: 8.5rem !important;
}

.pt-17,
.py-17 {
  padding-top: 8.5rem !important;
}

.pr-17,
.px-17 {
  padding-right: 8.5rem !important;
}

.pb-17,
.py-17 {
  padding-bottom: 8.5rem !important;
}

.pl-17,
.px-17 {
  padding-left: 8.5rem !important;
}

.p-18 {
  padding: 9rem !important;
}

.pt-18,
.py-18 {
  padding-top: 9rem !important;
}

.pr-18,
.px-18 {
  padding-right: 9rem !important;
}

.pb-18,
.py-18 {
  padding-bottom: 9rem !important;
}

.pl-18,
.px-18 {
  padding-left: 9rem !important;
}

.p-19 {
  padding: 9.5rem !important;
}

.pt-19,
.py-19 {
  padding-top: 9.5rem !important;
}

.pr-19,
.px-19 {
  padding-right: 9.5rem !important;
}

.pb-19,
.py-19 {
  padding-bottom: 9.5rem !important;
}

.pl-19,
.px-19 {
  padding-left: 9.5rem !important;
}

.p-20 {
  padding: 10rem !important;
}

.pt-20,
.py-20 {
  padding-top: 10rem !important;
}

.pr-20,
.px-20 {
  padding-right: 10rem !important;
}

.pb-20,
.py-20 {
  padding-bottom: 10rem !important;
}

.pl-20,
.px-20 {
  padding-left: 10rem !important;
}

.p-21 {
  padding: 10.5rem !important;
}

.pt-21,
.py-21 {
  padding-top: 10.5rem !important;
}

.pr-21,
.px-21 {
  padding-right: 10.5rem !important;
}

.pb-21,
.py-21 {
  padding-bottom: 10.5rem !important;
}

.pl-21,
.px-21 {
  padding-left: 10.5rem !important;
}

.p-22 {
  padding: 11rem !important;
}

.pt-22,
.py-22 {
  padding-top: 11rem !important;
}

.pr-22,
.px-22 {
  padding-right: 11rem !important;
}

.pb-22,
.py-22 {
  padding-bottom: 11rem !important;
}

.pl-22,
.px-22 {
  padding-left: 11rem !important;
}

.p-23 {
  padding: 11.5rem !important;
}

.pt-23,
.py-23 {
  padding-top: 11.5rem !important;
}

.pr-23,
.px-23 {
  padding-right: 11.5rem !important;
}

.pb-23,
.py-23 {
  padding-bottom: 11.5rem !important;
}

.pl-23,
.px-23 {
  padding-left: 11.5rem !important;
}

.p-24 {
  padding: 12rem !important;
}

.pt-24,
.py-24 {
  padding-top: 12rem !important;
}

.pr-24,
.px-24 {
  padding-right: 12rem !important;
}

.pb-24,
.py-24 {
  padding-bottom: 12rem !important;
}

.pl-24,
.px-24 {
  padding-left: 12rem !important;
}

.p-25 {
  padding: 12.5rem !important;
}

.pt-25,
.py-25 {
  padding-top: 12.5rem !important;
}

.pr-25,
.px-25 {
  padding-right: 12.5rem !important;
}

.pb-25,
.py-25 {
  padding-bottom: 12.5rem !important;
}

.pl-25,
.px-25 {
  padding-left: 12.5rem !important;
}

.p-26 {
  padding: 13rem !important;
}

.pt-26,
.py-26 {
  padding-top: 13rem !important;
}

.pr-26,
.px-26 {
  padding-right: 13rem !important;
}

.pb-26,
.py-26 {
  padding-bottom: 13rem !important;
}

.pl-26,
.px-26 {
  padding-left: 13rem !important;
}

.p-27 {
  padding: 13.5rem !important;
}

.pt-27,
.py-27 {
  padding-top: 13.5rem !important;
}

.pr-27,
.px-27 {
  padding-right: 13.5rem !important;
}

.pb-27,
.py-27 {
  padding-bottom: 13.5rem !important;
}

.pl-27,
.px-27 {
  padding-left: 13.5rem !important;
}

.p-28 {
  padding: 14rem !important;
}

.pt-28,
.py-28 {
  padding-top: 14rem !important;
}

.pr-28,
.px-28 {
  padding-right: 14rem !important;
}

.pb-28,
.py-28 {
  padding-bottom: 14rem !important;
}

.pl-28,
.px-28 {
  padding-left: 14rem !important;
}

.p-29 {
  padding: 14.5rem !important;
}

.pt-29,
.py-29 {
  padding-top: 14.5rem !important;
}

.pr-29,
.px-29 {
  padding-right: 14.5rem !important;
}

.pb-29,
.py-29 {
  padding-bottom: 14.5rem !important;
}

.pl-29,
.px-29 {
  padding-left: 14.5rem !important;
}

.p-30 {
  padding: 15rem !important;
}

.pt-30,
.py-30 {
  padding-top: 15rem !important;
}

.pr-30,
.px-30 {
  padding-right: 15rem !important;
}

.pb-30,
.py-30 {
  padding-bottom: 15rem !important;
}

.pl-30,
.px-30 {
  padding-left: 15rem !important;
}

.p-31 {
  padding: 15.5rem !important;
}

.pt-31,
.py-31 {
  padding-top: 15.5rem !important;
}

.pr-31,
.px-31 {
  padding-right: 15.5rem !important;
}

.pb-31,
.py-31 {
  padding-bottom: 15.5rem !important;
}

.pl-31,
.px-31 {
  padding-left: 15.5rem !important;
}

.p-32 {
  padding: 16rem !important;
}

.pt-32,
.py-32 {
  padding-top: 16rem !important;
}

.pr-32,
.px-32 {
  padding-right: 16rem !important;
}

.pb-32,
.py-32 {
  padding-bottom: 16rem !important;
}

.pl-32,
.px-32 {
  padding-left: 16rem !important;
}

.p-33 {
  padding: 16.5rem !important;
}

.pt-33,
.py-33 {
  padding-top: 16.5rem !important;
}

.pr-33,
.px-33 {
  padding-right: 16.5rem !important;
}

.pb-33,
.py-33 {
  padding-bottom: 16.5rem !important;
}

.pl-33,
.px-33 {
  padding-left: 16.5rem !important;
}

.p-34 {
  padding: 17rem !important;
}

.pt-34,
.py-34 {
  padding-top: 17rem !important;
}

.pr-34,
.px-34 {
  padding-right: 17rem !important;
}

.pb-34,
.py-34 {
  padding-bottom: 17rem !important;
}

.pl-34,
.px-34 {
  padding-left: 17rem !important;
}

.p-35 {
  padding: 17.5rem !important;
}

.pt-35,
.py-35 {
  padding-top: 17.5rem !important;
}

.pr-35,
.px-35 {
  padding-right: 17.5rem !important;
}

.pb-35,
.py-35 {
  padding-bottom: 17.5rem !important;
}

.pl-35,
.px-35 {
  padding-left: 17.5rem !important;
}

.p-36 {
  padding: 18rem !important;
}

.pt-36,
.py-36 {
  padding-top: 18rem !important;
}

.pr-36,
.px-36 {
  padding-right: 18rem !important;
}

.pb-36,
.py-36 {
  padding-bottom: 18rem !important;
}

.pl-36,
.px-36 {
  padding-left: 18rem !important;
}

.p-37 {
  padding: 18.5rem !important;
}

.pt-37,
.py-37 {
  padding-top: 18.5rem !important;
}

.pr-37,
.px-37 {
  padding-right: 18.5rem !important;
}

.pb-37,
.py-37 {
  padding-bottom: 18.5rem !important;
}

.pl-37,
.px-37 {
  padding-left: 18.5rem !important;
}

.p-38 {
  padding: 19rem !important;
}

.pt-38,
.py-38 {
  padding-top: 19rem !important;
}

.pr-38,
.px-38 {
  padding-right: 19rem !important;
}

.pb-38,
.py-38 {
  padding-bottom: 19rem !important;
}

.pl-38,
.px-38 {
  padding-left: 19rem !important;
}

.p-39 {
  padding: 19.5rem !important;
}

.pt-39,
.py-39 {
  padding-top: 19.5rem !important;
}

.pr-39,
.px-39 {
  padding-right: 19.5rem !important;
}

.pb-39,
.py-39 {
  padding-bottom: 19.5rem !important;
}

.pl-39,
.px-39 {
  padding-left: 19.5rem !important;
}

.p-40 {
  padding: 20rem !important;
}

.pt-40,
.py-40 {
  padding-top: 20rem !important;
}

.pr-40,
.px-40 {
  padding-right: 20rem !important;
}

.pb-40,
.py-40 {
  padding-bottom: 20rem !important;
}

.pl-40,
.px-40 {
  padding-left: 20rem !important;
}

.p-41 {
  padding: 20.5rem !important;
}

.pt-41,
.py-41 {
  padding-top: 20.5rem !important;
}

.pr-41,
.px-41 {
  padding-right: 20.5rem !important;
}

.pb-41,
.py-41 {
  padding-bottom: 20.5rem !important;
}

.pl-41,
.px-41 {
  padding-left: 20.5rem !important;
}

.p-42 {
  padding: 21rem !important;
}

.pt-42,
.py-42 {
  padding-top: 21rem !important;
}

.pr-42,
.px-42 {
  padding-right: 21rem !important;
}

.pb-42,
.py-42 {
  padding-bottom: 21rem !important;
}

.pl-42,
.px-42 {
  padding-left: 21rem !important;
}

.p-43 {
  padding: 21.5rem !important;
}

.pt-43,
.py-43 {
  padding-top: 21.5rem !important;
}

.pr-43,
.px-43 {
  padding-right: 21.5rem !important;
}

.pb-43,
.py-43 {
  padding-bottom: 21.5rem !important;
}

.pl-43,
.px-43 {
  padding-left: 21.5rem !important;
}

.p-44 {
  padding: 22rem !important;
}

.pt-44,
.py-44 {
  padding-top: 22rem !important;
}

.pr-44,
.px-44 {
  padding-right: 22rem !important;
}

.pb-44,
.py-44 {
  padding-bottom: 22rem !important;
}

.pl-44,
.px-44 {
  padding-left: 22rem !important;
}

.p-45 {
  padding: 22.5rem !important;
}

.pt-45,
.py-45 {
  padding-top: 22.5rem !important;
}

.pr-45,
.px-45 {
  padding-right: 22.5rem !important;
}

.pb-45,
.py-45 {
  padding-bottom: 22.5rem !important;
}

.pl-45,
.px-45 {
  padding-left: 22.5rem !important;
}

.p-46 {
  padding: 23rem !important;
}

.pt-46,
.py-46 {
  padding-top: 23rem !important;
}

.pr-46,
.px-46 {
  padding-right: 23rem !important;
}

.pb-46,
.py-46 {
  padding-bottom: 23rem !important;
}

.pl-46,
.px-46 {
  padding-left: 23rem !important;
}

.p-47 {
  padding: 23.5rem !important;
}

.pt-47,
.py-47 {
  padding-top: 23.5rem !important;
}

.pr-47,
.px-47 {
  padding-right: 23.5rem !important;
}

.pb-47,
.py-47 {
  padding-bottom: 23.5rem !important;
}

.pl-47,
.px-47 {
  padding-left: 23.5rem !important;
}

.p-48 {
  padding: 24rem !important;
}

.pt-48,
.py-48 {
  padding-top: 24rem !important;
}

.pr-48,
.px-48 {
  padding-right: 24rem !important;
}

.pb-48,
.py-48 {
  padding-bottom: 24rem !important;
}

.pl-48,
.px-48 {
  padding-left: 24rem !important;
}

.p-49 {
  padding: 24.5rem !important;
}

.pt-49,
.py-49 {
  padding-top: 24.5rem !important;
}

.pr-49,
.px-49 {
  padding-right: 24.5rem !important;
}

.pb-49,
.py-49 {
  padding-bottom: 24.5rem !important;
}

.pl-49,
.px-49 {
  padding-left: 24.5rem !important;
}

.p-50 {
  padding: 25rem !important;
}

.pt-50,
.py-50 {
  padding-top: 25rem !important;
}

.pr-50,
.px-50 {
  padding-right: 25rem !important;
}

.pb-50,
.py-50 {
  padding-bottom: 25rem !important;
}

.pl-50,
.px-50 {
  padding-left: 25rem !important;
}

.p-51 {
  padding: 25.5rem !important;
}

.pt-51,
.py-51 {
  padding-top: 25.5rem !important;
}

.pr-51,
.px-51 {
  padding-right: 25.5rem !important;
}

.pb-51,
.py-51 {
  padding-bottom: 25.5rem !important;
}

.pl-51,
.px-51 {
  padding-left: 25.5rem !important;
}

.p-52 {
  padding: 26rem !important;
}

.pt-52,
.py-52 {
  padding-top: 26rem !important;
}

.pr-52,
.px-52 {
  padding-right: 26rem !important;
}

.pb-52,
.py-52 {
  padding-bottom: 26rem !important;
}

.pl-52,
.px-52 {
  padding-left: 26rem !important;
}

.p-53 {
  padding: 26.5rem !important;
}

.pt-53,
.py-53 {
  padding-top: 26.5rem !important;
}

.pr-53,
.px-53 {
  padding-right: 26.5rem !important;
}

.pb-53,
.py-53 {
  padding-bottom: 26.5rem !important;
}

.pl-53,
.px-53 {
  padding-left: 26.5rem !important;
}

.p-54 {
  padding: 27rem !important;
}

.pt-54,
.py-54 {
  padding-top: 27rem !important;
}

.pr-54,
.px-54 {
  padding-right: 27rem !important;
}

.pb-54,
.py-54 {
  padding-bottom: 27rem !important;
}

.pl-54,
.px-54 {
  padding-left: 27rem !important;
}

.p-55 {
  padding: 27.5rem !important;
}

.pt-55,
.py-55 {
  padding-top: 27.5rem !important;
}

.pr-55,
.px-55 {
  padding-right: 27.5rem !important;
}

.pb-55,
.py-55 {
  padding-bottom: 27.5rem !important;
}

.pl-55,
.px-55 {
  padding-left: 27.5rem !important;
}

.p-56 {
  padding: 28rem !important;
}

.pt-56,
.py-56 {
  padding-top: 28rem !important;
}

.pr-56,
.px-56 {
  padding-right: 28rem !important;
}

.pb-56,
.py-56 {
  padding-bottom: 28rem !important;
}

.pl-56,
.px-56 {
  padding-left: 28rem !important;
}

.p-57 {
  padding: 28.5rem !important;
}

.pt-57,
.py-57 {
  padding-top: 28.5rem !important;
}

.pr-57,
.px-57 {
  padding-right: 28.5rem !important;
}

.pb-57,
.py-57 {
  padding-bottom: 28.5rem !important;
}

.pl-57,
.px-57 {
  padding-left: 28.5rem !important;
}

.p-58 {
  padding: 29rem !important;
}

.pt-58,
.py-58 {
  padding-top: 29rem !important;
}

.pr-58,
.px-58 {
  padding-right: 29rem !important;
}

.pb-58,
.py-58 {
  padding-bottom: 29rem !important;
}

.pl-58,
.px-58 {
  padding-left: 29rem !important;
}

.p-59 {
  padding: 29.5rem !important;
}

.pt-59,
.py-59 {
  padding-top: 29.5rem !important;
}

.pr-59,
.px-59 {
  padding-right: 29.5rem !important;
}

.pb-59,
.py-59 {
  padding-bottom: 29.5rem !important;
}

.pl-59,
.px-59 {
  padding-left: 29.5rem !important;
}

.p-60 {
  padding: 30rem !important;
}

.pt-60,
.py-60 {
  padding-top: 30rem !important;
}

.pr-60,
.px-60 {
  padding-right: 30rem !important;
}

.pb-60,
.py-60 {
  padding-bottom: 30rem !important;
}

.pl-60,
.px-60 {
  padding-left: 30rem !important;
}

.p-61 {
  padding: 30.5rem !important;
}

.pt-61,
.py-61 {
  padding-top: 30.5rem !important;
}

.pr-61,
.px-61 {
  padding-right: 30.5rem !important;
}

.pb-61,
.py-61 {
  padding-bottom: 30.5rem !important;
}

.pl-61,
.px-61 {
  padding-left: 30.5rem !important;
}

.p-62 {
  padding: 31rem !important;
}

.pt-62,
.py-62 {
  padding-top: 31rem !important;
}

.pr-62,
.px-62 {
  padding-right: 31rem !important;
}

.pb-62,
.py-62 {
  padding-bottom: 31rem !important;
}

.pl-62,
.px-62 {
  padding-left: 31rem !important;
}

.p-63 {
  padding: 31.5rem !important;
}

.pt-63,
.py-63 {
  padding-top: 31.5rem !important;
}

.pr-63,
.px-63 {
  padding-right: 31.5rem !important;
}

.pb-63,
.py-63 {
  padding-bottom: 31.5rem !important;
}

.pl-63,
.px-63 {
  padding-left: 31.5rem !important;
}

.p-64 {
  padding: 32rem !important;
}

.pt-64,
.py-64 {
  padding-top: 32rem !important;
}

.pr-64,
.px-64 {
  padding-right: 32rem !important;
}

.pb-64,
.py-64 {
  padding-bottom: 32rem !important;
}

.pl-64,
.px-64 {
  padding-left: 32rem !important;
}

.p-65 {
  padding: 32.5rem !important;
}

.pt-65,
.py-65 {
  padding-top: 32.5rem !important;
}

.pr-65,
.px-65 {
  padding-right: 32.5rem !important;
}

.pb-65,
.py-65 {
  padding-bottom: 32.5rem !important;
}

.pl-65,
.px-65 {
  padding-left: 32.5rem !important;
}

.p-66 {
  padding: 33rem !important;
}

.pt-66,
.py-66 {
  padding-top: 33rem !important;
}

.pr-66,
.px-66 {
  padding-right: 33rem !important;
}

.pb-66,
.py-66 {
  padding-bottom: 33rem !important;
}

.pl-66,
.px-66 {
  padding-left: 33rem !important;
}

.p-67 {
  padding: 33.5rem !important;
}

.pt-67,
.py-67 {
  padding-top: 33.5rem !important;
}

.pr-67,
.px-67 {
  padding-right: 33.5rem !important;
}

.pb-67,
.py-67 {
  padding-bottom: 33.5rem !important;
}

.pl-67,
.px-67 {
  padding-left: 33.5rem !important;
}

.p-68 {
  padding: 34rem !important;
}

.pt-68,
.py-68 {
  padding-top: 34rem !important;
}

.pr-68,
.px-68 {
  padding-right: 34rem !important;
}

.pb-68,
.py-68 {
  padding-bottom: 34rem !important;
}

.pl-68,
.px-68 {
  padding-left: 34rem !important;
}

.p-69 {
  padding: 34.5rem !important;
}

.pt-69,
.py-69 {
  padding-top: 34.5rem !important;
}

.pr-69,
.px-69 {
  padding-right: 34.5rem !important;
}

.pb-69,
.py-69 {
  padding-bottom: 34.5rem !important;
}

.pl-69,
.px-69 {
  padding-left: 34.5rem !important;
}

.p-70 {
  padding: 35rem !important;
}

.pt-70,
.py-70 {
  padding-top: 35rem !important;
}

.pr-70,
.px-70 {
  padding-right: 35rem !important;
}

.pb-70,
.py-70 {
  padding-bottom: 35rem !important;
}

.pl-70,
.px-70 {
  padding-left: 35rem !important;
}

.p-71 {
  padding: 35.5rem !important;
}

.pt-71,
.py-71 {
  padding-top: 35.5rem !important;
}

.pr-71,
.px-71 {
  padding-right: 35.5rem !important;
}

.pb-71,
.py-71 {
  padding-bottom: 35.5rem !important;
}

.pl-71,
.px-71 {
  padding-left: 35.5rem !important;
}

.p-72 {
  padding: 36rem !important;
}

.pt-72,
.py-72 {
  padding-top: 36rem !important;
}

.pr-72,
.px-72 {
  padding-right: 36rem !important;
}

.pb-72,
.py-72 {
  padding-bottom: 36rem !important;
}

.pl-72,
.px-72 {
  padding-left: 36rem !important;
}

.p-73 {
  padding: 36.5rem !important;
}

.pt-73,
.py-73 {
  padding-top: 36.5rem !important;
}

.pr-73,
.px-73 {
  padding-right: 36.5rem !important;
}

.pb-73,
.py-73 {
  padding-bottom: 36.5rem !important;
}

.pl-73,
.px-73 {
  padding-left: 36.5rem !important;
}

.p-74 {
  padding: 37rem !important;
}

.pt-74,
.py-74 {
  padding-top: 37rem !important;
}

.pr-74,
.px-74 {
  padding-right: 37rem !important;
}

.pb-74,
.py-74 {
  padding-bottom: 37rem !important;
}

.pl-74,
.px-74 {
  padding-left: 37rem !important;
}

.p-75 {
  padding: 37.5rem !important;
}

.pt-75,
.py-75 {
  padding-top: 37.5rem !important;
}

.pr-75,
.px-75 {
  padding-right: 37.5rem !important;
}

.pb-75,
.py-75 {
  padding-bottom: 37.5rem !important;
}

.pl-75,
.px-75 {
  padding-left: 37.5rem !important;
}

.p-76 {
  padding: 38rem !important;
}

.pt-76,
.py-76 {
  padding-top: 38rem !important;
}

.pr-76,
.px-76 {
  padding-right: 38rem !important;
}

.pb-76,
.py-76 {
  padding-bottom: 38rem !important;
}

.pl-76,
.px-76 {
  padding-left: 38rem !important;
}

.p-77 {
  padding: 38.5rem !important;
}

.pt-77,
.py-77 {
  padding-top: 38.5rem !important;
}

.pr-77,
.px-77 {
  padding-right: 38.5rem !important;
}

.pb-77,
.py-77 {
  padding-bottom: 38.5rem !important;
}

.pl-77,
.px-77 {
  padding-left: 38.5rem !important;
}

.p-78 {
  padding: 39rem !important;
}

.pt-78,
.py-78 {
  padding-top: 39rem !important;
}

.pr-78,
.px-78 {
  padding-right: 39rem !important;
}

.pb-78,
.py-78 {
  padding-bottom: 39rem !important;
}

.pl-78,
.px-78 {
  padding-left: 39rem !important;
}

.p-79 {
  padding: 39.5rem !important;
}

.pt-79,
.py-79 {
  padding-top: 39.5rem !important;
}

.pr-79,
.px-79 {
  padding-right: 39.5rem !important;
}

.pb-79,
.py-79 {
  padding-bottom: 39.5rem !important;
}

.pl-79,
.px-79 {
  padding-left: 39.5rem !important;
}

.p-80 {
  padding: 40rem !important;
}

.pt-80,
.py-80 {
  padding-top: 40rem !important;
}

.pr-80,
.px-80 {
  padding-right: 40rem !important;
}

.pb-80,
.py-80 {
  padding-bottom: 40rem !important;
}

.pl-80,
.px-80 {
  padding-left: 40rem !important;
}

.p-81 {
  padding: 40.5rem !important;
}

.pt-81,
.py-81 {
  padding-top: 40.5rem !important;
}

.pr-81,
.px-81 {
  padding-right: 40.5rem !important;
}

.pb-81,
.py-81 {
  padding-bottom: 40.5rem !important;
}

.pl-81,
.px-81 {
  padding-left: 40.5rem !important;
}

.p-82 {
  padding: 41rem !important;
}

.pt-82,
.py-82 {
  padding-top: 41rem !important;
}

.pr-82,
.px-82 {
  padding-right: 41rem !important;
}

.pb-82,
.py-82 {
  padding-bottom: 41rem !important;
}

.pl-82,
.px-82 {
  padding-left: 41rem !important;
}

.p-83 {
  padding: 41.5rem !important;
}

.pt-83,
.py-83 {
  padding-top: 41.5rem !important;
}

.pr-83,
.px-83 {
  padding-right: 41.5rem !important;
}

.pb-83,
.py-83 {
  padding-bottom: 41.5rem !important;
}

.pl-83,
.px-83 {
  padding-left: 41.5rem !important;
}

.p-84 {
  padding: 42rem !important;
}

.pt-84,
.py-84 {
  padding-top: 42rem !important;
}

.pr-84,
.px-84 {
  padding-right: 42rem !important;
}

.pb-84,
.py-84 {
  padding-bottom: 42rem !important;
}

.pl-84,
.px-84 {
  padding-left: 42rem !important;
}

.p-85 {
  padding: 42.5rem !important;
}

.pt-85,
.py-85 {
  padding-top: 42.5rem !important;
}

.pr-85,
.px-85 {
  padding-right: 42.5rem !important;
}

.pb-85,
.py-85 {
  padding-bottom: 42.5rem !important;
}

.pl-85,
.px-85 {
  padding-left: 42.5rem !important;
}

.p-86 {
  padding: 43rem !important;
}

.pt-86,
.py-86 {
  padding-top: 43rem !important;
}

.pr-86,
.px-86 {
  padding-right: 43rem !important;
}

.pb-86,
.py-86 {
  padding-bottom: 43rem !important;
}

.pl-86,
.px-86 {
  padding-left: 43rem !important;
}

.p-87 {
  padding: 43.5rem !important;
}

.pt-87,
.py-87 {
  padding-top: 43.5rem !important;
}

.pr-87,
.px-87 {
  padding-right: 43.5rem !important;
}

.pb-87,
.py-87 {
  padding-bottom: 43.5rem !important;
}

.pl-87,
.px-87 {
  padding-left: 43.5rem !important;
}

.p-88 {
  padding: 44rem !important;
}

.pt-88,
.py-88 {
  padding-top: 44rem !important;
}

.pr-88,
.px-88 {
  padding-right: 44rem !important;
}

.pb-88,
.py-88 {
  padding-bottom: 44rem !important;
}

.pl-88,
.px-88 {
  padding-left: 44rem !important;
}

.p-89 {
  padding: 44.5rem !important;
}

.pt-89,
.py-89 {
  padding-top: 44.5rem !important;
}

.pr-89,
.px-89 {
  padding-right: 44.5rem !important;
}

.pb-89,
.py-89 {
  padding-bottom: 44.5rem !important;
}

.pl-89,
.px-89 {
  padding-left: 44.5rem !important;
}

.p-90 {
  padding: 45rem !important;
}

.pt-90,
.py-90 {
  padding-top: 45rem !important;
}

.pr-90,
.px-90 {
  padding-right: 45rem !important;
}

.pb-90,
.py-90 {
  padding-bottom: 45rem !important;
}

.pl-90,
.px-90 {
  padding-left: 45rem !important;
}

.p-91 {
  padding: 45.5rem !important;
}

.pt-91,
.py-91 {
  padding-top: 45.5rem !important;
}

.pr-91,
.px-91 {
  padding-right: 45.5rem !important;
}

.pb-91,
.py-91 {
  padding-bottom: 45.5rem !important;
}

.pl-91,
.px-91 {
  padding-left: 45.5rem !important;
}

.p-92 {
  padding: 46rem !important;
}

.pt-92,
.py-92 {
  padding-top: 46rem !important;
}

.pr-92,
.px-92 {
  padding-right: 46rem !important;
}

.pb-92,
.py-92 {
  padding-bottom: 46rem !important;
}

.pl-92,
.px-92 {
  padding-left: 46rem !important;
}

.p-93 {
  padding: 46.5rem !important;
}

.pt-93,
.py-93 {
  padding-top: 46.5rem !important;
}

.pr-93,
.px-93 {
  padding-right: 46.5rem !important;
}

.pb-93,
.py-93 {
  padding-bottom: 46.5rem !important;
}

.pl-93,
.px-93 {
  padding-left: 46.5rem !important;
}

.p-94 {
  padding: 47rem !important;
}

.pt-94,
.py-94 {
  padding-top: 47rem !important;
}

.pr-94,
.px-94 {
  padding-right: 47rem !important;
}

.pb-94,
.py-94 {
  padding-bottom: 47rem !important;
}

.pl-94,
.px-94 {
  padding-left: 47rem !important;
}

.p-95 {
  padding: 47.5rem !important;
}

.pt-95,
.py-95 {
  padding-top: 47.5rem !important;
}

.pr-95,
.px-95 {
  padding-right: 47.5rem !important;
}

.pb-95,
.py-95 {
  padding-bottom: 47.5rem !important;
}

.pl-95,
.px-95 {
  padding-left: 47.5rem !important;
}

.p-96 {
  padding: 48rem !important;
}

.pt-96,
.py-96 {
  padding-top: 48rem !important;
}

.pr-96,
.px-96 {
  padding-right: 48rem !important;
}

.pb-96,
.py-96 {
  padding-bottom: 48rem !important;
}

.pl-96,
.px-96 {
  padding-left: 48rem !important;
}

.p-97 {
  padding: 48.5rem !important;
}

.pt-97,
.py-97 {
  padding-top: 48.5rem !important;
}

.pr-97,
.px-97 {
  padding-right: 48.5rem !important;
}

.pb-97,
.py-97 {
  padding-bottom: 48.5rem !important;
}

.pl-97,
.px-97 {
  padding-left: 48.5rem !important;
}

.p-98 {
  padding: 49rem !important;
}

.pt-98,
.py-98 {
  padding-top: 49rem !important;
}

.pr-98,
.px-98 {
  padding-right: 49rem !important;
}

.pb-98,
.py-98 {
  padding-bottom: 49rem !important;
}

.pl-98,
.px-98 {
  padding-left: 49rem !important;
}

.p-99 {
  padding: 49.5rem !important;
}

.pt-99,
.py-99 {
  padding-top: 49.5rem !important;
}

.pr-99,
.px-99 {
  padding-right: 49.5rem !important;
}

.pb-99,
.py-99 {
  padding-bottom: 49.5rem !important;
}

.pl-99,
.px-99 {
  padding-left: 49.5rem !important;
}

.p-100 {
  padding: 50rem !important;
}

.pt-100,
.py-100 {
  padding-top: 50rem !important;
}

.pr-100,
.px-100 {
  padding-right: 50rem !important;
}

.pb-100,
.py-100 {
  padding-bottom: 50rem !important;
}

.pl-100,
.px-100 {
  padding-left: 50rem !important;
}

.p-101 {
  padding: 50.5rem !important;
}

.pt-101,
.py-101 {
  padding-top: 50.5rem !important;
}

.pr-101,
.px-101 {
  padding-right: 50.5rem !important;
}

.pb-101,
.py-101 {
  padding-bottom: 50.5rem !important;
}

.pl-101,
.px-101 {
  padding-left: 50.5rem !important;
}

.p-102 {
  padding: 51rem !important;
}

.pt-102,
.py-102 {
  padding-top: 51rem !important;
}

.pr-102,
.px-102 {
  padding-right: 51rem !important;
}

.pb-102,
.py-102 {
  padding-bottom: 51rem !important;
}

.pl-102,
.px-102 {
  padding-left: 51rem !important;
}

.p-103 {
  padding: 51.5rem !important;
}

.pt-103,
.py-103 {
  padding-top: 51.5rem !important;
}

.pr-103,
.px-103 {
  padding-right: 51.5rem !important;
}

.pb-103,
.py-103 {
  padding-bottom: 51.5rem !important;
}

.pl-103,
.px-103 {
  padding-left: 51.5rem !important;
}

.p-104 {
  padding: 52rem !important;
}

.pt-104,
.py-104 {
  padding-top: 52rem !important;
}

.pr-104,
.px-104 {
  padding-right: 52rem !important;
}

.pb-104,
.py-104 {
  padding-bottom: 52rem !important;
}

.pl-104,
.px-104 {
  padding-left: 52rem !important;
}

.p-105 {
  padding: 52.5rem !important;
}

.pt-105,
.py-105 {
  padding-top: 52.5rem !important;
}

.pr-105,
.px-105 {
  padding-right: 52.5rem !important;
}

.pb-105,
.py-105 {
  padding-bottom: 52.5rem !important;
}

.pl-105,
.px-105 {
  padding-left: 52.5rem !important;
}

.p-106 {
  padding: 53rem !important;
}

.pt-106,
.py-106 {
  padding-top: 53rem !important;
}

.pr-106,
.px-106 {
  padding-right: 53rem !important;
}

.pb-106,
.py-106 {
  padding-bottom: 53rem !important;
}

.pl-106,
.px-106 {
  padding-left: 53rem !important;
}

.p-107 {
  padding: 53.5rem !important;
}

.pt-107,
.py-107 {
  padding-top: 53.5rem !important;
}

.pr-107,
.px-107 {
  padding-right: 53.5rem !important;
}

.pb-107,
.py-107 {
  padding-bottom: 53.5rem !important;
}

.pl-107,
.px-107 {
  padding-left: 53.5rem !important;
}

.p-108 {
  padding: 54rem !important;
}

.pt-108,
.py-108 {
  padding-top: 54rem !important;
}

.pr-108,
.px-108 {
  padding-right: 54rem !important;
}

.pb-108,
.py-108 {
  padding-bottom: 54rem !important;
}

.pl-108,
.px-108 {
  padding-left: 54rem !important;
}

.p-109 {
  padding: 54.5rem !important;
}

.pt-109,
.py-109 {
  padding-top: 54.5rem !important;
}

.pr-109,
.px-109 {
  padding-right: 54.5rem !important;
}

.pb-109,
.py-109 {
  padding-bottom: 54.5rem !important;
}

.pl-109,
.px-109 {
  padding-left: 54.5rem !important;
}

.p-110 {
  padding: 55rem !important;
}

.pt-110,
.py-110 {
  padding-top: 55rem !important;
}

.pr-110,
.px-110 {
  padding-right: 55rem !important;
}

.pb-110,
.py-110 {
  padding-bottom: 55rem !important;
}

.pl-110,
.px-110 {
  padding-left: 55rem !important;
}

.p-111 {
  padding: 55.5rem !important;
}

.pt-111,
.py-111 {
  padding-top: 55.5rem !important;
}

.pr-111,
.px-111 {
  padding-right: 55.5rem !important;
}

.pb-111,
.py-111 {
  padding-bottom: 55.5rem !important;
}

.pl-111,
.px-111 {
  padding-left: 55.5rem !important;
}

.p-112 {
  padding: 56rem !important;
}

.pt-112,
.py-112 {
  padding-top: 56rem !important;
}

.pr-112,
.px-112 {
  padding-right: 56rem !important;
}

.pb-112,
.py-112 {
  padding-bottom: 56rem !important;
}

.pl-112,
.px-112 {
  padding-left: 56rem !important;
}

.p-113 {
  padding: 56.5rem !important;
}

.pt-113,
.py-113 {
  padding-top: 56.5rem !important;
}

.pr-113,
.px-113 {
  padding-right: 56.5rem !important;
}

.pb-113,
.py-113 {
  padding-bottom: 56.5rem !important;
}

.pl-113,
.px-113 {
  padding-left: 56.5rem !important;
}

.p-114 {
  padding: 57rem !important;
}

.pt-114,
.py-114 {
  padding-top: 57rem !important;
}

.pr-114,
.px-114 {
  padding-right: 57rem !important;
}

.pb-114,
.py-114 {
  padding-bottom: 57rem !important;
}

.pl-114,
.px-114 {
  padding-left: 57rem !important;
}

.p-115 {
  padding: 57.5rem !important;
}

.pt-115,
.py-115 {
  padding-top: 57.5rem !important;
}

.pr-115,
.px-115 {
  padding-right: 57.5rem !important;
}

.pb-115,
.py-115 {
  padding-bottom: 57.5rem !important;
}

.pl-115,
.px-115 {
  padding-left: 57.5rem !important;
}

.p-116 {
  padding: 58rem !important;
}

.pt-116,
.py-116 {
  padding-top: 58rem !important;
}

.pr-116,
.px-116 {
  padding-right: 58rem !important;
}

.pb-116,
.py-116 {
  padding-bottom: 58rem !important;
}

.pl-116,
.px-116 {
  padding-left: 58rem !important;
}

.p-117 {
  padding: 58.5rem !important;
}

.pt-117,
.py-117 {
  padding-top: 58.5rem !important;
}

.pr-117,
.px-117 {
  padding-right: 58.5rem !important;
}

.pb-117,
.py-117 {
  padding-bottom: 58.5rem !important;
}

.pl-117,
.px-117 {
  padding-left: 58.5rem !important;
}

.p-118 {
  padding: 59rem !important;
}

.pt-118,
.py-118 {
  padding-top: 59rem !important;
}

.pr-118,
.px-118 {
  padding-right: 59rem !important;
}

.pb-118,
.py-118 {
  padding-bottom: 59rem !important;
}

.pl-118,
.px-118 {
  padding-left: 59rem !important;
}

.p-119 {
  padding: 59.5rem !important;
}

.pt-119,
.py-119 {
  padding-top: 59.5rem !important;
}

.pr-119,
.px-119 {
  padding-right: 59.5rem !important;
}

.pb-119,
.py-119 {
  padding-bottom: 59.5rem !important;
}

.pl-119,
.px-119 {
  padding-left: 59.5rem !important;
}

.p-120 {
  padding: 60rem !important;
}

.pt-120,
.py-120 {
  padding-top: 60rem !important;
}

.pr-120,
.px-120 {
  padding-right: 60rem !important;
}

.pb-120,
.py-120 {
  padding-bottom: 60rem !important;
}

.pl-120,
.px-120 {
  padding-left: 60rem !important;
}

.p-121 {
  padding: 60.5rem !important;
}

.pt-121,
.py-121 {
  padding-top: 60.5rem !important;
}

.pr-121,
.px-121 {
  padding-right: 60.5rem !important;
}

.pb-121,
.py-121 {
  padding-bottom: 60.5rem !important;
}

.pl-121,
.px-121 {
  padding-left: 60.5rem !important;
}

.p-122 {
  padding: 61rem !important;
}

.pt-122,
.py-122 {
  padding-top: 61rem !important;
}

.pr-122,
.px-122 {
  padding-right: 61rem !important;
}

.pb-122,
.py-122 {
  padding-bottom: 61rem !important;
}

.pl-122,
.px-122 {
  padding-left: 61rem !important;
}

.p-123 {
  padding: 61.5rem !important;
}

.pt-123,
.py-123 {
  padding-top: 61.5rem !important;
}

.pr-123,
.px-123 {
  padding-right: 61.5rem !important;
}

.pb-123,
.py-123 {
  padding-bottom: 61.5rem !important;
}

.pl-123,
.px-123 {
  padding-left: 61.5rem !important;
}

.p-124 {
  padding: 62rem !important;
}

.pt-124,
.py-124 {
  padding-top: 62rem !important;
}

.pr-124,
.px-124 {
  padding-right: 62rem !important;
}

.pb-124,
.py-124 {
  padding-bottom: 62rem !important;
}

.pl-124,
.px-124 {
  padding-left: 62rem !important;
}

.p-125 {
  padding: 62.5rem !important;
}

.pt-125,
.py-125 {
  padding-top: 62.5rem !important;
}

.pr-125,
.px-125 {
  padding-right: 62.5rem !important;
}

.pb-125,
.py-125 {
  padding-bottom: 62.5rem !important;
}

.pl-125,
.px-125 {
  padding-left: 62.5rem !important;
}

.p-126 {
  padding: 63rem !important;
}

.pt-126,
.py-126 {
  padding-top: 63rem !important;
}

.pr-126,
.px-126 {
  padding-right: 63rem !important;
}

.pb-126,
.py-126 {
  padding-bottom: 63rem !important;
}

.pl-126,
.px-126 {
  padding-left: 63rem !important;
}

.p-127 {
  padding: 63.5rem !important;
}

.pt-127,
.py-127 {
  padding-top: 63.5rem !important;
}

.pr-127,
.px-127 {
  padding-right: 63.5rem !important;
}

.pb-127,
.py-127 {
  padding-bottom: 63.5rem !important;
}

.pl-127,
.px-127 {
  padding-left: 63.5rem !important;
}

.p-128 {
  padding: 64rem !important;
}

.pt-128,
.py-128 {
  padding-top: 64rem !important;
}

.pr-128,
.px-128 {
  padding-right: 64rem !important;
}

.pb-128,
.py-128 {
  padding-bottom: 64rem !important;
}

.pl-128,
.px-128 {
  padding-left: 64rem !important;
}

.p-129 {
  padding: 64.5rem !important;
}

.pt-129,
.py-129 {
  padding-top: 64.5rem !important;
}

.pr-129,
.px-129 {
  padding-right: 64.5rem !important;
}

.pb-129,
.py-129 {
  padding-bottom: 64.5rem !important;
}

.pl-129,
.px-129 {
  padding-left: 64.5rem !important;
}

.p-130 {
  padding: 65rem !important;
}

.pt-130,
.py-130 {
  padding-top: 65rem !important;
}

.pr-130,
.px-130 {
  padding-right: 65rem !important;
}

.pb-130,
.py-130 {
  padding-bottom: 65rem !important;
}

.pl-130,
.px-130 {
  padding-left: 65rem !important;
}

.p-131 {
  padding: 65.5rem !important;
}

.pt-131,
.py-131 {
  padding-top: 65.5rem !important;
}

.pr-131,
.px-131 {
  padding-right: 65.5rem !important;
}

.pb-131,
.py-131 {
  padding-bottom: 65.5rem !important;
}

.pl-131,
.px-131 {
  padding-left: 65.5rem !important;
}

.p-132 {
  padding: 66rem !important;
}

.pt-132,
.py-132 {
  padding-top: 66rem !important;
}

.pr-132,
.px-132 {
  padding-right: 66rem !important;
}

.pb-132,
.py-132 {
  padding-bottom: 66rem !important;
}

.pl-132,
.px-132 {
  padding-left: 66rem !important;
}

.p-133 {
  padding: 66.5rem !important;
}

.pt-133,
.py-133 {
  padding-top: 66.5rem !important;
}

.pr-133,
.px-133 {
  padding-right: 66.5rem !important;
}

.pb-133,
.py-133 {
  padding-bottom: 66.5rem !important;
}

.pl-133,
.px-133 {
  padding-left: 66.5rem !important;
}

.p-134 {
  padding: 67rem !important;
}

.pt-134,
.py-134 {
  padding-top: 67rem !important;
}

.pr-134,
.px-134 {
  padding-right: 67rem !important;
}

.pb-134,
.py-134 {
  padding-bottom: 67rem !important;
}

.pl-134,
.px-134 {
  padding-left: 67rem !important;
}

.p-135 {
  padding: 67.5rem !important;
}

.pt-135,
.py-135 {
  padding-top: 67.5rem !important;
}

.pr-135,
.px-135 {
  padding-right: 67.5rem !important;
}

.pb-135,
.py-135 {
  padding-bottom: 67.5rem !important;
}

.pl-135,
.px-135 {
  padding-left: 67.5rem !important;
}

.p-136 {
  padding: 68rem !important;
}

.pt-136,
.py-136 {
  padding-top: 68rem !important;
}

.pr-136,
.px-136 {
  padding-right: 68rem !important;
}

.pb-136,
.py-136 {
  padding-bottom: 68rem !important;
}

.pl-136,
.px-136 {
  padding-left: 68rem !important;
}

.p-137 {
  padding: 68.5rem !important;
}

.pt-137,
.py-137 {
  padding-top: 68.5rem !important;
}

.pr-137,
.px-137 {
  padding-right: 68.5rem !important;
}

.pb-137,
.py-137 {
  padding-bottom: 68.5rem !important;
}

.pl-137,
.px-137 {
  padding-left: 68.5rem !important;
}

.p-138 {
  padding: 69rem !important;
}

.pt-138,
.py-138 {
  padding-top: 69rem !important;
}

.pr-138,
.px-138 {
  padding-right: 69rem !important;
}

.pb-138,
.py-138 {
  padding-bottom: 69rem !important;
}

.pl-138,
.px-138 {
  padding-left: 69rem !important;
}

.p-139 {
  padding: 69.5rem !important;
}

.pt-139,
.py-139 {
  padding-top: 69.5rem !important;
}

.pr-139,
.px-139 {
  padding-right: 69.5rem !important;
}

.pb-139,
.py-139 {
  padding-bottom: 69.5rem !important;
}

.pl-139,
.px-139 {
  padding-left: 69.5rem !important;
}

.p-140 {
  padding: 70rem !important;
}

.pt-140,
.py-140 {
  padding-top: 70rem !important;
}

.pr-140,
.px-140 {
  padding-right: 70rem !important;
}

.pb-140,
.py-140 {
  padding-bottom: 70rem !important;
}

.pl-140,
.px-140 {
  padding-left: 70rem !important;
}

.p-141 {
  padding: 70.5rem !important;
}

.pt-141,
.py-141 {
  padding-top: 70.5rem !important;
}

.pr-141,
.px-141 {
  padding-right: 70.5rem !important;
}

.pb-141,
.py-141 {
  padding-bottom: 70.5rem !important;
}

.pl-141,
.px-141 {
  padding-left: 70.5rem !important;
}

.p-142 {
  padding: 71rem !important;
}

.pt-142,
.py-142 {
  padding-top: 71rem !important;
}

.pr-142,
.px-142 {
  padding-right: 71rem !important;
}

.pb-142,
.py-142 {
  padding-bottom: 71rem !important;
}

.pl-142,
.px-142 {
  padding-left: 71rem !important;
}

.p-143 {
  padding: 71.5rem !important;
}

.pt-143,
.py-143 {
  padding-top: 71.5rem !important;
}

.pr-143,
.px-143 {
  padding-right: 71.5rem !important;
}

.pb-143,
.py-143 {
  padding-bottom: 71.5rem !important;
}

.pl-143,
.px-143 {
  padding-left: 71.5rem !important;
}

.p-144 {
  padding: 72rem !important;
}

.pt-144,
.py-144 {
  padding-top: 72rem !important;
}

.pr-144,
.px-144 {
  padding-right: 72rem !important;
}

.pb-144,
.py-144 {
  padding-bottom: 72rem !important;
}

.pl-144,
.px-144 {
  padding-left: 72rem !important;
}

.p-145 {
  padding: 72.5rem !important;
}

.pt-145,
.py-145 {
  padding-top: 72.5rem !important;
}

.pr-145,
.px-145 {
  padding-right: 72.5rem !important;
}

.pb-145,
.py-145 {
  padding-bottom: 72.5rem !important;
}

.pl-145,
.px-145 {
  padding-left: 72.5rem !important;
}

.p-146 {
  padding: 73rem !important;
}

.pt-146,
.py-146 {
  padding-top: 73rem !important;
}

.pr-146,
.px-146 {
  padding-right: 73rem !important;
}

.pb-146,
.py-146 {
  padding-bottom: 73rem !important;
}

.pl-146,
.px-146 {
  padding-left: 73rem !important;
}

.p-147 {
  padding: 73.5rem !important;
}

.pt-147,
.py-147 {
  padding-top: 73.5rem !important;
}

.pr-147,
.px-147 {
  padding-right: 73.5rem !important;
}

.pb-147,
.py-147 {
  padding-bottom: 73.5rem !important;
}

.pl-147,
.px-147 {
  padding-left: 73.5rem !important;
}

.p-148 {
  padding: 74rem !important;
}

.pt-148,
.py-148 {
  padding-top: 74rem !important;
}

.pr-148,
.px-148 {
  padding-right: 74rem !important;
}

.pb-148,
.py-148 {
  padding-bottom: 74rem !important;
}

.pl-148,
.px-148 {
  padding-left: 74rem !important;
}

.p-149 {
  padding: 74.5rem !important;
}

.pt-149,
.py-149 {
  padding-top: 74.5rem !important;
}

.pr-149,
.px-149 {
  padding-right: 74.5rem !important;
}

.pb-149,
.py-149 {
  padding-bottom: 74.5rem !important;
}

.pl-149,
.px-149 {
  padding-left: 74.5rem !important;
}

.p-150 {
  padding: 75rem !important;
}

.pt-150,
.py-150 {
  padding-top: 75rem !important;
}

.pr-150,
.px-150 {
  padding-right: 75rem !important;
}

.pb-150,
.py-150 {
  padding-bottom: 75rem !important;
}

.pl-150,
.px-150 {
  padding-left: 75rem !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.5rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.5rem !important;
  }

  .m-sm-2 {
    margin: 1rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 1rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 1rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 1rem !important;
  }

  .m-sm-3 {
    margin: 1.5rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1.5rem !important;
  }

  .m-sm-4 {
    margin: 2rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 2rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 2rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 2rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 2rem !important;
  }

  .m-sm-5 {
    margin: 2.5rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 2.5rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 2.5rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 2.5rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 2.5rem !important;
  }

  .m-sm-6 {
    margin: 3rem !important;
  }

  .mt-sm-6,
  .my-sm-6 {
    margin-top: 3rem !important;
  }

  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 3rem !important;
  }

  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 3rem !important;
  }

  .m-sm-7 {
    margin: 3.5rem !important;
  }

  .mt-sm-7,
  .my-sm-7 {
    margin-top: 3.5rem !important;
  }

  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 3.5rem !important;
  }

  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 3.5rem !important;
  }

  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 3.5rem !important;
  }

  .m-sm-8 {
    margin: 4rem !important;
  }

  .mt-sm-8,
  .my-sm-8 {
    margin-top: 4rem !important;
  }

  .mr-sm-8,
  .mx-sm-8 {
    margin-right: 4rem !important;
  }

  .mb-sm-8,
  .my-sm-8 {
    margin-bottom: 4rem !important;
  }

  .ml-sm-8,
  .mx-sm-8 {
    margin-left: 4rem !important;
  }

  .m-sm-9 {
    margin: 4.5rem !important;
  }

  .mt-sm-9,
  .my-sm-9 {
    margin-top: 4.5rem !important;
  }

  .mr-sm-9,
  .mx-sm-9 {
    margin-right: 4.5rem !important;
  }

  .mb-sm-9,
  .my-sm-9 {
    margin-bottom: 4.5rem !important;
  }

  .ml-sm-9,
  .mx-sm-9 {
    margin-left: 4.5rem !important;
  }

  .m-sm-10 {
    margin: 5rem !important;
  }

  .mt-sm-10,
  .my-sm-10 {
    margin-top: 5rem !important;
  }

  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 5rem !important;
  }

  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 5rem !important;
  }

  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 5rem !important;
  }

  .m-sm-11 {
    margin: 5.5rem !important;
  }

  .mt-sm-11,
  .my-sm-11 {
    margin-top: 5.5rem !important;
  }

  .mr-sm-11,
  .mx-sm-11 {
    margin-right: 5.5rem !important;
  }

  .mb-sm-11,
  .my-sm-11 {
    margin-bottom: 5.5rem !important;
  }

  .ml-sm-11,
  .mx-sm-11 {
    margin-left: 5.5rem !important;
  }

  .m-sm-12 {
    margin: 6rem !important;
  }

  .mt-sm-12,
  .my-sm-12 {
    margin-top: 6rem !important;
  }

  .mr-sm-12,
  .mx-sm-12 {
    margin-right: 6rem !important;
  }

  .mb-sm-12,
  .my-sm-12 {
    margin-bottom: 6rem !important;
  }

  .ml-sm-12,
  .mx-sm-12 {
    margin-left: 6rem !important;
  }

  .m-sm-13 {
    margin: 6.5rem !important;
  }

  .mt-sm-13,
  .my-sm-13 {
    margin-top: 6.5rem !important;
  }

  .mr-sm-13,
  .mx-sm-13 {
    margin-right: 6.5rem !important;
  }

  .mb-sm-13,
  .my-sm-13 {
    margin-bottom: 6.5rem !important;
  }

  .ml-sm-13,
  .mx-sm-13 {
    margin-left: 6.5rem !important;
  }

  .m-sm-14 {
    margin: 7rem !important;
  }

  .mt-sm-14,
  .my-sm-14 {
    margin-top: 7rem !important;
  }

  .mr-sm-14,
  .mx-sm-14 {
    margin-right: 7rem !important;
  }

  .mb-sm-14,
  .my-sm-14 {
    margin-bottom: 7rem !important;
  }

  .ml-sm-14,
  .mx-sm-14 {
    margin-left: 7rem !important;
  }

  .m-sm-15 {
    margin: 7.5rem !important;
  }

  .mt-sm-15,
  .my-sm-15 {
    margin-top: 7.5rem !important;
  }

  .mr-sm-15,
  .mx-sm-15 {
    margin-right: 7.5rem !important;
  }

  .mb-sm-15,
  .my-sm-15 {
    margin-bottom: 7.5rem !important;
  }

  .ml-sm-15,
  .mx-sm-15 {
    margin-left: 7.5rem !important;
  }

  .m-sm-16 {
    margin: 8rem !important;
  }

  .mt-sm-16,
  .my-sm-16 {
    margin-top: 8rem !important;
  }

  .mr-sm-16,
  .mx-sm-16 {
    margin-right: 8rem !important;
  }

  .mb-sm-16,
  .my-sm-16 {
    margin-bottom: 8rem !important;
  }

  .ml-sm-16,
  .mx-sm-16 {
    margin-left: 8rem !important;
  }

  .m-sm-17 {
    margin: 8.5rem !important;
  }

  .mt-sm-17,
  .my-sm-17 {
    margin-top: 8.5rem !important;
  }

  .mr-sm-17,
  .mx-sm-17 {
    margin-right: 8.5rem !important;
  }

  .mb-sm-17,
  .my-sm-17 {
    margin-bottom: 8.5rem !important;
  }

  .ml-sm-17,
  .mx-sm-17 {
    margin-left: 8.5rem !important;
  }

  .m-sm-18 {
    margin: 9rem !important;
  }

  .mt-sm-18,
  .my-sm-18 {
    margin-top: 9rem !important;
  }

  .mr-sm-18,
  .mx-sm-18 {
    margin-right: 9rem !important;
  }

  .mb-sm-18,
  .my-sm-18 {
    margin-bottom: 9rem !important;
  }

  .ml-sm-18,
  .mx-sm-18 {
    margin-left: 9rem !important;
  }

  .m-sm-19 {
    margin: 9.5rem !important;
  }

  .mt-sm-19,
  .my-sm-19 {
    margin-top: 9.5rem !important;
  }

  .mr-sm-19,
  .mx-sm-19 {
    margin-right: 9.5rem !important;
  }

  .mb-sm-19,
  .my-sm-19 {
    margin-bottom: 9.5rem !important;
  }

  .ml-sm-19,
  .mx-sm-19 {
    margin-left: 9.5rem !important;
  }

  .m-sm-20 {
    margin: 10rem !important;
  }

  .mt-sm-20,
  .my-sm-20 {
    margin-top: 10rem !important;
  }

  .mr-sm-20,
  .mx-sm-20 {
    margin-right: 10rem !important;
  }

  .mb-sm-20,
  .my-sm-20 {
    margin-bottom: 10rem !important;
  }

  .ml-sm-20,
  .mx-sm-20 {
    margin-left: 10rem !important;
  }

  .m-sm-21 {
    margin: 10.5rem !important;
  }

  .mt-sm-21,
  .my-sm-21 {
    margin-top: 10.5rem !important;
  }

  .mr-sm-21,
  .mx-sm-21 {
    margin-right: 10.5rem !important;
  }

  .mb-sm-21,
  .my-sm-21 {
    margin-bottom: 10.5rem !important;
  }

  .ml-sm-21,
  .mx-sm-21 {
    margin-left: 10.5rem !important;
  }

  .m-sm-22 {
    margin: 11rem !important;
  }

  .mt-sm-22,
  .my-sm-22 {
    margin-top: 11rem !important;
  }

  .mr-sm-22,
  .mx-sm-22 {
    margin-right: 11rem !important;
  }

  .mb-sm-22,
  .my-sm-22 {
    margin-bottom: 11rem !important;
  }

  .ml-sm-22,
  .mx-sm-22 {
    margin-left: 11rem !important;
  }

  .m-sm-23 {
    margin: 11.5rem !important;
  }

  .mt-sm-23,
  .my-sm-23 {
    margin-top: 11.5rem !important;
  }

  .mr-sm-23,
  .mx-sm-23 {
    margin-right: 11.5rem !important;
  }

  .mb-sm-23,
  .my-sm-23 {
    margin-bottom: 11.5rem !important;
  }

  .ml-sm-23,
  .mx-sm-23 {
    margin-left: 11.5rem !important;
  }

  .m-sm-24 {
    margin: 12rem !important;
  }

  .mt-sm-24,
  .my-sm-24 {
    margin-top: 12rem !important;
  }

  .mr-sm-24,
  .mx-sm-24 {
    margin-right: 12rem !important;
  }

  .mb-sm-24,
  .my-sm-24 {
    margin-bottom: 12rem !important;
  }

  .ml-sm-24,
  .mx-sm-24 {
    margin-left: 12rem !important;
  }

  .m-sm-25 {
    margin: 12.5rem !important;
  }

  .mt-sm-25,
  .my-sm-25 {
    margin-top: 12.5rem !important;
  }

  .mr-sm-25,
  .mx-sm-25 {
    margin-right: 12.5rem !important;
  }

  .mb-sm-25,
  .my-sm-25 {
    margin-bottom: 12.5rem !important;
  }

  .ml-sm-25,
  .mx-sm-25 {
    margin-left: 12.5rem !important;
  }

  .m-sm-26 {
    margin: 13rem !important;
  }

  .mt-sm-26,
  .my-sm-26 {
    margin-top: 13rem !important;
  }

  .mr-sm-26,
  .mx-sm-26 {
    margin-right: 13rem !important;
  }

  .mb-sm-26,
  .my-sm-26 {
    margin-bottom: 13rem !important;
  }

  .ml-sm-26,
  .mx-sm-26 {
    margin-left: 13rem !important;
  }

  .m-sm-27 {
    margin: 13.5rem !important;
  }

  .mt-sm-27,
  .my-sm-27 {
    margin-top: 13.5rem !important;
  }

  .mr-sm-27,
  .mx-sm-27 {
    margin-right: 13.5rem !important;
  }

  .mb-sm-27,
  .my-sm-27 {
    margin-bottom: 13.5rem !important;
  }

  .ml-sm-27,
  .mx-sm-27 {
    margin-left: 13.5rem !important;
  }

  .m-sm-28 {
    margin: 14rem !important;
  }

  .mt-sm-28,
  .my-sm-28 {
    margin-top: 14rem !important;
  }

  .mr-sm-28,
  .mx-sm-28 {
    margin-right: 14rem !important;
  }

  .mb-sm-28,
  .my-sm-28 {
    margin-bottom: 14rem !important;
  }

  .ml-sm-28,
  .mx-sm-28 {
    margin-left: 14rem !important;
  }

  .m-sm-29 {
    margin: 14.5rem !important;
  }

  .mt-sm-29,
  .my-sm-29 {
    margin-top: 14.5rem !important;
  }

  .mr-sm-29,
  .mx-sm-29 {
    margin-right: 14.5rem !important;
  }

  .mb-sm-29,
  .my-sm-29 {
    margin-bottom: 14.5rem !important;
  }

  .ml-sm-29,
  .mx-sm-29 {
    margin-left: 14.5rem !important;
  }

  .m-sm-30 {
    margin: 15rem !important;
  }

  .mt-sm-30,
  .my-sm-30 {
    margin-top: 15rem !important;
  }

  .mr-sm-30,
  .mx-sm-30 {
    margin-right: 15rem !important;
  }

  .mb-sm-30,
  .my-sm-30 {
    margin-bottom: 15rem !important;
  }

  .ml-sm-30,
  .mx-sm-30 {
    margin-left: 15rem !important;
  }

  .m-sm-31 {
    margin: 15.5rem !important;
  }

  .mt-sm-31,
  .my-sm-31 {
    margin-top: 15.5rem !important;
  }

  .mr-sm-31,
  .mx-sm-31 {
    margin-right: 15.5rem !important;
  }

  .mb-sm-31,
  .my-sm-31 {
    margin-bottom: 15.5rem !important;
  }

  .ml-sm-31,
  .mx-sm-31 {
    margin-left: 15.5rem !important;
  }

  .m-sm-32 {
    margin: 16rem !important;
  }

  .mt-sm-32,
  .my-sm-32 {
    margin-top: 16rem !important;
  }

  .mr-sm-32,
  .mx-sm-32 {
    margin-right: 16rem !important;
  }

  .mb-sm-32,
  .my-sm-32 {
    margin-bottom: 16rem !important;
  }

  .ml-sm-32,
  .mx-sm-32 {
    margin-left: 16rem !important;
  }

  .m-sm-33 {
    margin: 16.5rem !important;
  }

  .mt-sm-33,
  .my-sm-33 {
    margin-top: 16.5rem !important;
  }

  .mr-sm-33,
  .mx-sm-33 {
    margin-right: 16.5rem !important;
  }

  .mb-sm-33,
  .my-sm-33 {
    margin-bottom: 16.5rem !important;
  }

  .ml-sm-33,
  .mx-sm-33 {
    margin-left: 16.5rem !important;
  }

  .m-sm-34 {
    margin: 17rem !important;
  }

  .mt-sm-34,
  .my-sm-34 {
    margin-top: 17rem !important;
  }

  .mr-sm-34,
  .mx-sm-34 {
    margin-right: 17rem !important;
  }

  .mb-sm-34,
  .my-sm-34 {
    margin-bottom: 17rem !important;
  }

  .ml-sm-34,
  .mx-sm-34 {
    margin-left: 17rem !important;
  }

  .m-sm-35 {
    margin: 17.5rem !important;
  }

  .mt-sm-35,
  .my-sm-35 {
    margin-top: 17.5rem !important;
  }

  .mr-sm-35,
  .mx-sm-35 {
    margin-right: 17.5rem !important;
  }

  .mb-sm-35,
  .my-sm-35 {
    margin-bottom: 17.5rem !important;
  }

  .ml-sm-35,
  .mx-sm-35 {
    margin-left: 17.5rem !important;
  }

  .m-sm-36 {
    margin: 18rem !important;
  }

  .mt-sm-36,
  .my-sm-36 {
    margin-top: 18rem !important;
  }

  .mr-sm-36,
  .mx-sm-36 {
    margin-right: 18rem !important;
  }

  .mb-sm-36,
  .my-sm-36 {
    margin-bottom: 18rem !important;
  }

  .ml-sm-36,
  .mx-sm-36 {
    margin-left: 18rem !important;
  }

  .m-sm-37 {
    margin: 18.5rem !important;
  }

  .mt-sm-37,
  .my-sm-37 {
    margin-top: 18.5rem !important;
  }

  .mr-sm-37,
  .mx-sm-37 {
    margin-right: 18.5rem !important;
  }

  .mb-sm-37,
  .my-sm-37 {
    margin-bottom: 18.5rem !important;
  }

  .ml-sm-37,
  .mx-sm-37 {
    margin-left: 18.5rem !important;
  }

  .m-sm-38 {
    margin: 19rem !important;
  }

  .mt-sm-38,
  .my-sm-38 {
    margin-top: 19rem !important;
  }

  .mr-sm-38,
  .mx-sm-38 {
    margin-right: 19rem !important;
  }

  .mb-sm-38,
  .my-sm-38 {
    margin-bottom: 19rem !important;
  }

  .ml-sm-38,
  .mx-sm-38 {
    margin-left: 19rem !important;
  }

  .m-sm-39 {
    margin: 19.5rem !important;
  }

  .mt-sm-39,
  .my-sm-39 {
    margin-top: 19.5rem !important;
  }

  .mr-sm-39,
  .mx-sm-39 {
    margin-right: 19.5rem !important;
  }

  .mb-sm-39,
  .my-sm-39 {
    margin-bottom: 19.5rem !important;
  }

  .ml-sm-39,
  .mx-sm-39 {
    margin-left: 19.5rem !important;
  }

  .m-sm-40 {
    margin: 20rem !important;
  }

  .mt-sm-40,
  .my-sm-40 {
    margin-top: 20rem !important;
  }

  .mr-sm-40,
  .mx-sm-40 {
    margin-right: 20rem !important;
  }

  .mb-sm-40,
  .my-sm-40 {
    margin-bottom: 20rem !important;
  }

  .ml-sm-40,
  .mx-sm-40 {
    margin-left: 20rem !important;
  }

  .m-sm-41 {
    margin: 20.5rem !important;
  }

  .mt-sm-41,
  .my-sm-41 {
    margin-top: 20.5rem !important;
  }

  .mr-sm-41,
  .mx-sm-41 {
    margin-right: 20.5rem !important;
  }

  .mb-sm-41,
  .my-sm-41 {
    margin-bottom: 20.5rem !important;
  }

  .ml-sm-41,
  .mx-sm-41 {
    margin-left: 20.5rem !important;
  }

  .m-sm-42 {
    margin: 21rem !important;
  }

  .mt-sm-42,
  .my-sm-42 {
    margin-top: 21rem !important;
  }

  .mr-sm-42,
  .mx-sm-42 {
    margin-right: 21rem !important;
  }

  .mb-sm-42,
  .my-sm-42 {
    margin-bottom: 21rem !important;
  }

  .ml-sm-42,
  .mx-sm-42 {
    margin-left: 21rem !important;
  }

  .m-sm-43 {
    margin: 21.5rem !important;
  }

  .mt-sm-43,
  .my-sm-43 {
    margin-top: 21.5rem !important;
  }

  .mr-sm-43,
  .mx-sm-43 {
    margin-right: 21.5rem !important;
  }

  .mb-sm-43,
  .my-sm-43 {
    margin-bottom: 21.5rem !important;
  }

  .ml-sm-43,
  .mx-sm-43 {
    margin-left: 21.5rem !important;
  }

  .m-sm-44 {
    margin: 22rem !important;
  }

  .mt-sm-44,
  .my-sm-44 {
    margin-top: 22rem !important;
  }

  .mr-sm-44,
  .mx-sm-44 {
    margin-right: 22rem !important;
  }

  .mb-sm-44,
  .my-sm-44 {
    margin-bottom: 22rem !important;
  }

  .ml-sm-44,
  .mx-sm-44 {
    margin-left: 22rem !important;
  }

  .m-sm-45 {
    margin: 22.5rem !important;
  }

  .mt-sm-45,
  .my-sm-45 {
    margin-top: 22.5rem !important;
  }

  .mr-sm-45,
  .mx-sm-45 {
    margin-right: 22.5rem !important;
  }

  .mb-sm-45,
  .my-sm-45 {
    margin-bottom: 22.5rem !important;
  }

  .ml-sm-45,
  .mx-sm-45 {
    margin-left: 22.5rem !important;
  }

  .m-sm-46 {
    margin: 23rem !important;
  }

  .mt-sm-46,
  .my-sm-46 {
    margin-top: 23rem !important;
  }

  .mr-sm-46,
  .mx-sm-46 {
    margin-right: 23rem !important;
  }

  .mb-sm-46,
  .my-sm-46 {
    margin-bottom: 23rem !important;
  }

  .ml-sm-46,
  .mx-sm-46 {
    margin-left: 23rem !important;
  }

  .m-sm-47 {
    margin: 23.5rem !important;
  }

  .mt-sm-47,
  .my-sm-47 {
    margin-top: 23.5rem !important;
  }

  .mr-sm-47,
  .mx-sm-47 {
    margin-right: 23.5rem !important;
  }

  .mb-sm-47,
  .my-sm-47 {
    margin-bottom: 23.5rem !important;
  }

  .ml-sm-47,
  .mx-sm-47 {
    margin-left: 23.5rem !important;
  }

  .m-sm-48 {
    margin: 24rem !important;
  }

  .mt-sm-48,
  .my-sm-48 {
    margin-top: 24rem !important;
  }

  .mr-sm-48,
  .mx-sm-48 {
    margin-right: 24rem !important;
  }

  .mb-sm-48,
  .my-sm-48 {
    margin-bottom: 24rem !important;
  }

  .ml-sm-48,
  .mx-sm-48 {
    margin-left: 24rem !important;
  }

  .m-sm-49 {
    margin: 24.5rem !important;
  }

  .mt-sm-49,
  .my-sm-49 {
    margin-top: 24.5rem !important;
  }

  .mr-sm-49,
  .mx-sm-49 {
    margin-right: 24.5rem !important;
  }

  .mb-sm-49,
  .my-sm-49 {
    margin-bottom: 24.5rem !important;
  }

  .ml-sm-49,
  .mx-sm-49 {
    margin-left: 24.5rem !important;
  }

  .m-sm-50 {
    margin: 25rem !important;
  }

  .mt-sm-50,
  .my-sm-50 {
    margin-top: 25rem !important;
  }

  .mr-sm-50,
  .mx-sm-50 {
    margin-right: 25rem !important;
  }

  .mb-sm-50,
  .my-sm-50 {
    margin-bottom: 25rem !important;
  }

  .ml-sm-50,
  .mx-sm-50 {
    margin-left: 25rem !important;
  }

  .m-sm-51 {
    margin: 25.5rem !important;
  }

  .mt-sm-51,
  .my-sm-51 {
    margin-top: 25.5rem !important;
  }

  .mr-sm-51,
  .mx-sm-51 {
    margin-right: 25.5rem !important;
  }

  .mb-sm-51,
  .my-sm-51 {
    margin-bottom: 25.5rem !important;
  }

  .ml-sm-51,
  .mx-sm-51 {
    margin-left: 25.5rem !important;
  }

  .m-sm-52 {
    margin: 26rem !important;
  }

  .mt-sm-52,
  .my-sm-52 {
    margin-top: 26rem !important;
  }

  .mr-sm-52,
  .mx-sm-52 {
    margin-right: 26rem !important;
  }

  .mb-sm-52,
  .my-sm-52 {
    margin-bottom: 26rem !important;
  }

  .ml-sm-52,
  .mx-sm-52 {
    margin-left: 26rem !important;
  }

  .m-sm-53 {
    margin: 26.5rem !important;
  }

  .mt-sm-53,
  .my-sm-53 {
    margin-top: 26.5rem !important;
  }

  .mr-sm-53,
  .mx-sm-53 {
    margin-right: 26.5rem !important;
  }

  .mb-sm-53,
  .my-sm-53 {
    margin-bottom: 26.5rem !important;
  }

  .ml-sm-53,
  .mx-sm-53 {
    margin-left: 26.5rem !important;
  }

  .m-sm-54 {
    margin: 27rem !important;
  }

  .mt-sm-54,
  .my-sm-54 {
    margin-top: 27rem !important;
  }

  .mr-sm-54,
  .mx-sm-54 {
    margin-right: 27rem !important;
  }

  .mb-sm-54,
  .my-sm-54 {
    margin-bottom: 27rem !important;
  }

  .ml-sm-54,
  .mx-sm-54 {
    margin-left: 27rem !important;
  }

  .m-sm-55 {
    margin: 27.5rem !important;
  }

  .mt-sm-55,
  .my-sm-55 {
    margin-top: 27.5rem !important;
  }

  .mr-sm-55,
  .mx-sm-55 {
    margin-right: 27.5rem !important;
  }

  .mb-sm-55,
  .my-sm-55 {
    margin-bottom: 27.5rem !important;
  }

  .ml-sm-55,
  .mx-sm-55 {
    margin-left: 27.5rem !important;
  }

  .m-sm-56 {
    margin: 28rem !important;
  }

  .mt-sm-56,
  .my-sm-56 {
    margin-top: 28rem !important;
  }

  .mr-sm-56,
  .mx-sm-56 {
    margin-right: 28rem !important;
  }

  .mb-sm-56,
  .my-sm-56 {
    margin-bottom: 28rem !important;
  }

  .ml-sm-56,
  .mx-sm-56 {
    margin-left: 28rem !important;
  }

  .m-sm-57 {
    margin: 28.5rem !important;
  }

  .mt-sm-57,
  .my-sm-57 {
    margin-top: 28.5rem !important;
  }

  .mr-sm-57,
  .mx-sm-57 {
    margin-right: 28.5rem !important;
  }

  .mb-sm-57,
  .my-sm-57 {
    margin-bottom: 28.5rem !important;
  }

  .ml-sm-57,
  .mx-sm-57 {
    margin-left: 28.5rem !important;
  }

  .m-sm-58 {
    margin: 29rem !important;
  }

  .mt-sm-58,
  .my-sm-58 {
    margin-top: 29rem !important;
  }

  .mr-sm-58,
  .mx-sm-58 {
    margin-right: 29rem !important;
  }

  .mb-sm-58,
  .my-sm-58 {
    margin-bottom: 29rem !important;
  }

  .ml-sm-58,
  .mx-sm-58 {
    margin-left: 29rem !important;
  }

  .m-sm-59 {
    margin: 29.5rem !important;
  }

  .mt-sm-59,
  .my-sm-59 {
    margin-top: 29.5rem !important;
  }

  .mr-sm-59,
  .mx-sm-59 {
    margin-right: 29.5rem !important;
  }

  .mb-sm-59,
  .my-sm-59 {
    margin-bottom: 29.5rem !important;
  }

  .ml-sm-59,
  .mx-sm-59 {
    margin-left: 29.5rem !important;
  }

  .m-sm-60 {
    margin: 30rem !important;
  }

  .mt-sm-60,
  .my-sm-60 {
    margin-top: 30rem !important;
  }

  .mr-sm-60,
  .mx-sm-60 {
    margin-right: 30rem !important;
  }

  .mb-sm-60,
  .my-sm-60 {
    margin-bottom: 30rem !important;
  }

  .ml-sm-60,
  .mx-sm-60 {
    margin-left: 30rem !important;
  }

  .m-sm-61 {
    margin: 30.5rem !important;
  }

  .mt-sm-61,
  .my-sm-61 {
    margin-top: 30.5rem !important;
  }

  .mr-sm-61,
  .mx-sm-61 {
    margin-right: 30.5rem !important;
  }

  .mb-sm-61,
  .my-sm-61 {
    margin-bottom: 30.5rem !important;
  }

  .ml-sm-61,
  .mx-sm-61 {
    margin-left: 30.5rem !important;
  }

  .m-sm-62 {
    margin: 31rem !important;
  }

  .mt-sm-62,
  .my-sm-62 {
    margin-top: 31rem !important;
  }

  .mr-sm-62,
  .mx-sm-62 {
    margin-right: 31rem !important;
  }

  .mb-sm-62,
  .my-sm-62 {
    margin-bottom: 31rem !important;
  }

  .ml-sm-62,
  .mx-sm-62 {
    margin-left: 31rem !important;
  }

  .m-sm-63 {
    margin: 31.5rem !important;
  }

  .mt-sm-63,
  .my-sm-63 {
    margin-top: 31.5rem !important;
  }

  .mr-sm-63,
  .mx-sm-63 {
    margin-right: 31.5rem !important;
  }

  .mb-sm-63,
  .my-sm-63 {
    margin-bottom: 31.5rem !important;
  }

  .ml-sm-63,
  .mx-sm-63 {
    margin-left: 31.5rem !important;
  }

  .m-sm-64 {
    margin: 32rem !important;
  }

  .mt-sm-64,
  .my-sm-64 {
    margin-top: 32rem !important;
  }

  .mr-sm-64,
  .mx-sm-64 {
    margin-right: 32rem !important;
  }

  .mb-sm-64,
  .my-sm-64 {
    margin-bottom: 32rem !important;
  }

  .ml-sm-64,
  .mx-sm-64 {
    margin-left: 32rem !important;
  }

  .m-sm-65 {
    margin: 32.5rem !important;
  }

  .mt-sm-65,
  .my-sm-65 {
    margin-top: 32.5rem !important;
  }

  .mr-sm-65,
  .mx-sm-65 {
    margin-right: 32.5rem !important;
  }

  .mb-sm-65,
  .my-sm-65 {
    margin-bottom: 32.5rem !important;
  }

  .ml-sm-65,
  .mx-sm-65 {
    margin-left: 32.5rem !important;
  }

  .m-sm-66 {
    margin: 33rem !important;
  }

  .mt-sm-66,
  .my-sm-66 {
    margin-top: 33rem !important;
  }

  .mr-sm-66,
  .mx-sm-66 {
    margin-right: 33rem !important;
  }

  .mb-sm-66,
  .my-sm-66 {
    margin-bottom: 33rem !important;
  }

  .ml-sm-66,
  .mx-sm-66 {
    margin-left: 33rem !important;
  }

  .m-sm-67 {
    margin: 33.5rem !important;
  }

  .mt-sm-67,
  .my-sm-67 {
    margin-top: 33.5rem !important;
  }

  .mr-sm-67,
  .mx-sm-67 {
    margin-right: 33.5rem !important;
  }

  .mb-sm-67,
  .my-sm-67 {
    margin-bottom: 33.5rem !important;
  }

  .ml-sm-67,
  .mx-sm-67 {
    margin-left: 33.5rem !important;
  }

  .m-sm-68 {
    margin: 34rem !important;
  }

  .mt-sm-68,
  .my-sm-68 {
    margin-top: 34rem !important;
  }

  .mr-sm-68,
  .mx-sm-68 {
    margin-right: 34rem !important;
  }

  .mb-sm-68,
  .my-sm-68 {
    margin-bottom: 34rem !important;
  }

  .ml-sm-68,
  .mx-sm-68 {
    margin-left: 34rem !important;
  }

  .m-sm-69 {
    margin: 34.5rem !important;
  }

  .mt-sm-69,
  .my-sm-69 {
    margin-top: 34.5rem !important;
  }

  .mr-sm-69,
  .mx-sm-69 {
    margin-right: 34.5rem !important;
  }

  .mb-sm-69,
  .my-sm-69 {
    margin-bottom: 34.5rem !important;
  }

  .ml-sm-69,
  .mx-sm-69 {
    margin-left: 34.5rem !important;
  }

  .m-sm-70 {
    margin: 35rem !important;
  }

  .mt-sm-70,
  .my-sm-70 {
    margin-top: 35rem !important;
  }

  .mr-sm-70,
  .mx-sm-70 {
    margin-right: 35rem !important;
  }

  .mb-sm-70,
  .my-sm-70 {
    margin-bottom: 35rem !important;
  }

  .ml-sm-70,
  .mx-sm-70 {
    margin-left: 35rem !important;
  }

  .m-sm-71 {
    margin: 35.5rem !important;
  }

  .mt-sm-71,
  .my-sm-71 {
    margin-top: 35.5rem !important;
  }

  .mr-sm-71,
  .mx-sm-71 {
    margin-right: 35.5rem !important;
  }

  .mb-sm-71,
  .my-sm-71 {
    margin-bottom: 35.5rem !important;
  }

  .ml-sm-71,
  .mx-sm-71 {
    margin-left: 35.5rem !important;
  }

  .m-sm-72 {
    margin: 36rem !important;
  }

  .mt-sm-72,
  .my-sm-72 {
    margin-top: 36rem !important;
  }

  .mr-sm-72,
  .mx-sm-72 {
    margin-right: 36rem !important;
  }

  .mb-sm-72,
  .my-sm-72 {
    margin-bottom: 36rem !important;
  }

  .ml-sm-72,
  .mx-sm-72 {
    margin-left: 36rem !important;
  }

  .m-sm-73 {
    margin: 36.5rem !important;
  }

  .mt-sm-73,
  .my-sm-73 {
    margin-top: 36.5rem !important;
  }

  .mr-sm-73,
  .mx-sm-73 {
    margin-right: 36.5rem !important;
  }

  .mb-sm-73,
  .my-sm-73 {
    margin-bottom: 36.5rem !important;
  }

  .ml-sm-73,
  .mx-sm-73 {
    margin-left: 36.5rem !important;
  }

  .m-sm-74 {
    margin: 37rem !important;
  }

  .mt-sm-74,
  .my-sm-74 {
    margin-top: 37rem !important;
  }

  .mr-sm-74,
  .mx-sm-74 {
    margin-right: 37rem !important;
  }

  .mb-sm-74,
  .my-sm-74 {
    margin-bottom: 37rem !important;
  }

  .ml-sm-74,
  .mx-sm-74 {
    margin-left: 37rem !important;
  }

  .m-sm-75 {
    margin: 37.5rem !important;
  }

  .mt-sm-75,
  .my-sm-75 {
    margin-top: 37.5rem !important;
  }

  .mr-sm-75,
  .mx-sm-75 {
    margin-right: 37.5rem !important;
  }

  .mb-sm-75,
  .my-sm-75 {
    margin-bottom: 37.5rem !important;
  }

  .ml-sm-75,
  .mx-sm-75 {
    margin-left: 37.5rem !important;
  }

  .m-sm-76 {
    margin: 38rem !important;
  }

  .mt-sm-76,
  .my-sm-76 {
    margin-top: 38rem !important;
  }

  .mr-sm-76,
  .mx-sm-76 {
    margin-right: 38rem !important;
  }

  .mb-sm-76,
  .my-sm-76 {
    margin-bottom: 38rem !important;
  }

  .ml-sm-76,
  .mx-sm-76 {
    margin-left: 38rem !important;
  }

  .m-sm-77 {
    margin: 38.5rem !important;
  }

  .mt-sm-77,
  .my-sm-77 {
    margin-top: 38.5rem !important;
  }

  .mr-sm-77,
  .mx-sm-77 {
    margin-right: 38.5rem !important;
  }

  .mb-sm-77,
  .my-sm-77 {
    margin-bottom: 38.5rem !important;
  }

  .ml-sm-77,
  .mx-sm-77 {
    margin-left: 38.5rem !important;
  }

  .m-sm-78 {
    margin: 39rem !important;
  }

  .mt-sm-78,
  .my-sm-78 {
    margin-top: 39rem !important;
  }

  .mr-sm-78,
  .mx-sm-78 {
    margin-right: 39rem !important;
  }

  .mb-sm-78,
  .my-sm-78 {
    margin-bottom: 39rem !important;
  }

  .ml-sm-78,
  .mx-sm-78 {
    margin-left: 39rem !important;
  }

  .m-sm-79 {
    margin: 39.5rem !important;
  }

  .mt-sm-79,
  .my-sm-79 {
    margin-top: 39.5rem !important;
  }

  .mr-sm-79,
  .mx-sm-79 {
    margin-right: 39.5rem !important;
  }

  .mb-sm-79,
  .my-sm-79 {
    margin-bottom: 39.5rem !important;
  }

  .ml-sm-79,
  .mx-sm-79 {
    margin-left: 39.5rem !important;
  }

  .m-sm-80 {
    margin: 40rem !important;
  }

  .mt-sm-80,
  .my-sm-80 {
    margin-top: 40rem !important;
  }

  .mr-sm-80,
  .mx-sm-80 {
    margin-right: 40rem !important;
  }

  .mb-sm-80,
  .my-sm-80 {
    margin-bottom: 40rem !important;
  }

  .ml-sm-80,
  .mx-sm-80 {
    margin-left: 40rem !important;
  }

  .m-sm-81 {
    margin: 40.5rem !important;
  }

  .mt-sm-81,
  .my-sm-81 {
    margin-top: 40.5rem !important;
  }

  .mr-sm-81,
  .mx-sm-81 {
    margin-right: 40.5rem !important;
  }

  .mb-sm-81,
  .my-sm-81 {
    margin-bottom: 40.5rem !important;
  }

  .ml-sm-81,
  .mx-sm-81 {
    margin-left: 40.5rem !important;
  }

  .m-sm-82 {
    margin: 41rem !important;
  }

  .mt-sm-82,
  .my-sm-82 {
    margin-top: 41rem !important;
  }

  .mr-sm-82,
  .mx-sm-82 {
    margin-right: 41rem !important;
  }

  .mb-sm-82,
  .my-sm-82 {
    margin-bottom: 41rem !important;
  }

  .ml-sm-82,
  .mx-sm-82 {
    margin-left: 41rem !important;
  }

  .m-sm-83 {
    margin: 41.5rem !important;
  }

  .mt-sm-83,
  .my-sm-83 {
    margin-top: 41.5rem !important;
  }

  .mr-sm-83,
  .mx-sm-83 {
    margin-right: 41.5rem !important;
  }

  .mb-sm-83,
  .my-sm-83 {
    margin-bottom: 41.5rem !important;
  }

  .ml-sm-83,
  .mx-sm-83 {
    margin-left: 41.5rem !important;
  }

  .m-sm-84 {
    margin: 42rem !important;
  }

  .mt-sm-84,
  .my-sm-84 {
    margin-top: 42rem !important;
  }

  .mr-sm-84,
  .mx-sm-84 {
    margin-right: 42rem !important;
  }

  .mb-sm-84,
  .my-sm-84 {
    margin-bottom: 42rem !important;
  }

  .ml-sm-84,
  .mx-sm-84 {
    margin-left: 42rem !important;
  }

  .m-sm-85 {
    margin: 42.5rem !important;
  }

  .mt-sm-85,
  .my-sm-85 {
    margin-top: 42.5rem !important;
  }

  .mr-sm-85,
  .mx-sm-85 {
    margin-right: 42.5rem !important;
  }

  .mb-sm-85,
  .my-sm-85 {
    margin-bottom: 42.5rem !important;
  }

  .ml-sm-85,
  .mx-sm-85 {
    margin-left: 42.5rem !important;
  }

  .m-sm-86 {
    margin: 43rem !important;
  }

  .mt-sm-86,
  .my-sm-86 {
    margin-top: 43rem !important;
  }

  .mr-sm-86,
  .mx-sm-86 {
    margin-right: 43rem !important;
  }

  .mb-sm-86,
  .my-sm-86 {
    margin-bottom: 43rem !important;
  }

  .ml-sm-86,
  .mx-sm-86 {
    margin-left: 43rem !important;
  }

  .m-sm-87 {
    margin: 43.5rem !important;
  }

  .mt-sm-87,
  .my-sm-87 {
    margin-top: 43.5rem !important;
  }

  .mr-sm-87,
  .mx-sm-87 {
    margin-right: 43.5rem !important;
  }

  .mb-sm-87,
  .my-sm-87 {
    margin-bottom: 43.5rem !important;
  }

  .ml-sm-87,
  .mx-sm-87 {
    margin-left: 43.5rem !important;
  }

  .m-sm-88 {
    margin: 44rem !important;
  }

  .mt-sm-88,
  .my-sm-88 {
    margin-top: 44rem !important;
  }

  .mr-sm-88,
  .mx-sm-88 {
    margin-right: 44rem !important;
  }

  .mb-sm-88,
  .my-sm-88 {
    margin-bottom: 44rem !important;
  }

  .ml-sm-88,
  .mx-sm-88 {
    margin-left: 44rem !important;
  }

  .m-sm-89 {
    margin: 44.5rem !important;
  }

  .mt-sm-89,
  .my-sm-89 {
    margin-top: 44.5rem !important;
  }

  .mr-sm-89,
  .mx-sm-89 {
    margin-right: 44.5rem !important;
  }

  .mb-sm-89,
  .my-sm-89 {
    margin-bottom: 44.5rem !important;
  }

  .ml-sm-89,
  .mx-sm-89 {
    margin-left: 44.5rem !important;
  }

  .m-sm-90 {
    margin: 45rem !important;
  }

  .mt-sm-90,
  .my-sm-90 {
    margin-top: 45rem !important;
  }

  .mr-sm-90,
  .mx-sm-90 {
    margin-right: 45rem !important;
  }

  .mb-sm-90,
  .my-sm-90 {
    margin-bottom: 45rem !important;
  }

  .ml-sm-90,
  .mx-sm-90 {
    margin-left: 45rem !important;
  }

  .m-sm-91 {
    margin: 45.5rem !important;
  }

  .mt-sm-91,
  .my-sm-91 {
    margin-top: 45.5rem !important;
  }

  .mr-sm-91,
  .mx-sm-91 {
    margin-right: 45.5rem !important;
  }

  .mb-sm-91,
  .my-sm-91 {
    margin-bottom: 45.5rem !important;
  }

  .ml-sm-91,
  .mx-sm-91 {
    margin-left: 45.5rem !important;
  }

  .m-sm-92 {
    margin: 46rem !important;
  }

  .mt-sm-92,
  .my-sm-92 {
    margin-top: 46rem !important;
  }

  .mr-sm-92,
  .mx-sm-92 {
    margin-right: 46rem !important;
  }

  .mb-sm-92,
  .my-sm-92 {
    margin-bottom: 46rem !important;
  }

  .ml-sm-92,
  .mx-sm-92 {
    margin-left: 46rem !important;
  }

  .m-sm-93 {
    margin: 46.5rem !important;
  }

  .mt-sm-93,
  .my-sm-93 {
    margin-top: 46.5rem !important;
  }

  .mr-sm-93,
  .mx-sm-93 {
    margin-right: 46.5rem !important;
  }

  .mb-sm-93,
  .my-sm-93 {
    margin-bottom: 46.5rem !important;
  }

  .ml-sm-93,
  .mx-sm-93 {
    margin-left: 46.5rem !important;
  }

  .m-sm-94 {
    margin: 47rem !important;
  }

  .mt-sm-94,
  .my-sm-94 {
    margin-top: 47rem !important;
  }

  .mr-sm-94,
  .mx-sm-94 {
    margin-right: 47rem !important;
  }

  .mb-sm-94,
  .my-sm-94 {
    margin-bottom: 47rem !important;
  }

  .ml-sm-94,
  .mx-sm-94 {
    margin-left: 47rem !important;
  }

  .m-sm-95 {
    margin: 47.5rem !important;
  }

  .mt-sm-95,
  .my-sm-95 {
    margin-top: 47.5rem !important;
  }

  .mr-sm-95,
  .mx-sm-95 {
    margin-right: 47.5rem !important;
  }

  .mb-sm-95,
  .my-sm-95 {
    margin-bottom: 47.5rem !important;
  }

  .ml-sm-95,
  .mx-sm-95 {
    margin-left: 47.5rem !important;
  }

  .m-sm-96 {
    margin: 48rem !important;
  }

  .mt-sm-96,
  .my-sm-96 {
    margin-top: 48rem !important;
  }

  .mr-sm-96,
  .mx-sm-96 {
    margin-right: 48rem !important;
  }

  .mb-sm-96,
  .my-sm-96 {
    margin-bottom: 48rem !important;
  }

  .ml-sm-96,
  .mx-sm-96 {
    margin-left: 48rem !important;
  }

  .m-sm-97 {
    margin: 48.5rem !important;
  }

  .mt-sm-97,
  .my-sm-97 {
    margin-top: 48.5rem !important;
  }

  .mr-sm-97,
  .mx-sm-97 {
    margin-right: 48.5rem !important;
  }

  .mb-sm-97,
  .my-sm-97 {
    margin-bottom: 48.5rem !important;
  }

  .ml-sm-97,
  .mx-sm-97 {
    margin-left: 48.5rem !important;
  }

  .m-sm-98 {
    margin: 49rem !important;
  }

  .mt-sm-98,
  .my-sm-98 {
    margin-top: 49rem !important;
  }

  .mr-sm-98,
  .mx-sm-98 {
    margin-right: 49rem !important;
  }

  .mb-sm-98,
  .my-sm-98 {
    margin-bottom: 49rem !important;
  }

  .ml-sm-98,
  .mx-sm-98 {
    margin-left: 49rem !important;
  }

  .m-sm-99 {
    margin: 49.5rem !important;
  }

  .mt-sm-99,
  .my-sm-99 {
    margin-top: 49.5rem !important;
  }

  .mr-sm-99,
  .mx-sm-99 {
    margin-right: 49.5rem !important;
  }

  .mb-sm-99,
  .my-sm-99 {
    margin-bottom: 49.5rem !important;
  }

  .ml-sm-99,
  .mx-sm-99 {
    margin-left: 49.5rem !important;
  }

  .m-sm-100 {
    margin: 50rem !important;
  }

  .mt-sm-100,
  .my-sm-100 {
    margin-top: 50rem !important;
  }

  .mr-sm-100,
  .mx-sm-100 {
    margin-right: 50rem !important;
  }

  .mb-sm-100,
  .my-sm-100 {
    margin-bottom: 50rem !important;
  }

  .ml-sm-100,
  .mx-sm-100 {
    margin-left: 50rem !important;
  }

  .m-sm-101 {
    margin: 50.5rem !important;
  }

  .mt-sm-101,
  .my-sm-101 {
    margin-top: 50.5rem !important;
  }

  .mr-sm-101,
  .mx-sm-101 {
    margin-right: 50.5rem !important;
  }

  .mb-sm-101,
  .my-sm-101 {
    margin-bottom: 50.5rem !important;
  }

  .ml-sm-101,
  .mx-sm-101 {
    margin-left: 50.5rem !important;
  }

  .m-sm-102 {
    margin: 51rem !important;
  }

  .mt-sm-102,
  .my-sm-102 {
    margin-top: 51rem !important;
  }

  .mr-sm-102,
  .mx-sm-102 {
    margin-right: 51rem !important;
  }

  .mb-sm-102,
  .my-sm-102 {
    margin-bottom: 51rem !important;
  }

  .ml-sm-102,
  .mx-sm-102 {
    margin-left: 51rem !important;
  }

  .m-sm-103 {
    margin: 51.5rem !important;
  }

  .mt-sm-103,
  .my-sm-103 {
    margin-top: 51.5rem !important;
  }

  .mr-sm-103,
  .mx-sm-103 {
    margin-right: 51.5rem !important;
  }

  .mb-sm-103,
  .my-sm-103 {
    margin-bottom: 51.5rem !important;
  }

  .ml-sm-103,
  .mx-sm-103 {
    margin-left: 51.5rem !important;
  }

  .m-sm-104 {
    margin: 52rem !important;
  }

  .mt-sm-104,
  .my-sm-104 {
    margin-top: 52rem !important;
  }

  .mr-sm-104,
  .mx-sm-104 {
    margin-right: 52rem !important;
  }

  .mb-sm-104,
  .my-sm-104 {
    margin-bottom: 52rem !important;
  }

  .ml-sm-104,
  .mx-sm-104 {
    margin-left: 52rem !important;
  }

  .m-sm-105 {
    margin: 52.5rem !important;
  }

  .mt-sm-105,
  .my-sm-105 {
    margin-top: 52.5rem !important;
  }

  .mr-sm-105,
  .mx-sm-105 {
    margin-right: 52.5rem !important;
  }

  .mb-sm-105,
  .my-sm-105 {
    margin-bottom: 52.5rem !important;
  }

  .ml-sm-105,
  .mx-sm-105 {
    margin-left: 52.5rem !important;
  }

  .m-sm-106 {
    margin: 53rem !important;
  }

  .mt-sm-106,
  .my-sm-106 {
    margin-top: 53rem !important;
  }

  .mr-sm-106,
  .mx-sm-106 {
    margin-right: 53rem !important;
  }

  .mb-sm-106,
  .my-sm-106 {
    margin-bottom: 53rem !important;
  }

  .ml-sm-106,
  .mx-sm-106 {
    margin-left: 53rem !important;
  }

  .m-sm-107 {
    margin: 53.5rem !important;
  }

  .mt-sm-107,
  .my-sm-107 {
    margin-top: 53.5rem !important;
  }

  .mr-sm-107,
  .mx-sm-107 {
    margin-right: 53.5rem !important;
  }

  .mb-sm-107,
  .my-sm-107 {
    margin-bottom: 53.5rem !important;
  }

  .ml-sm-107,
  .mx-sm-107 {
    margin-left: 53.5rem !important;
  }

  .m-sm-108 {
    margin: 54rem !important;
  }

  .mt-sm-108,
  .my-sm-108 {
    margin-top: 54rem !important;
  }

  .mr-sm-108,
  .mx-sm-108 {
    margin-right: 54rem !important;
  }

  .mb-sm-108,
  .my-sm-108 {
    margin-bottom: 54rem !important;
  }

  .ml-sm-108,
  .mx-sm-108 {
    margin-left: 54rem !important;
  }

  .m-sm-109 {
    margin: 54.5rem !important;
  }

  .mt-sm-109,
  .my-sm-109 {
    margin-top: 54.5rem !important;
  }

  .mr-sm-109,
  .mx-sm-109 {
    margin-right: 54.5rem !important;
  }

  .mb-sm-109,
  .my-sm-109 {
    margin-bottom: 54.5rem !important;
  }

  .ml-sm-109,
  .mx-sm-109 {
    margin-left: 54.5rem !important;
  }

  .m-sm-110 {
    margin: 55rem !important;
  }

  .mt-sm-110,
  .my-sm-110 {
    margin-top: 55rem !important;
  }

  .mr-sm-110,
  .mx-sm-110 {
    margin-right: 55rem !important;
  }

  .mb-sm-110,
  .my-sm-110 {
    margin-bottom: 55rem !important;
  }

  .ml-sm-110,
  .mx-sm-110 {
    margin-left: 55rem !important;
  }

  .m-sm-111 {
    margin: 55.5rem !important;
  }

  .mt-sm-111,
  .my-sm-111 {
    margin-top: 55.5rem !important;
  }

  .mr-sm-111,
  .mx-sm-111 {
    margin-right: 55.5rem !important;
  }

  .mb-sm-111,
  .my-sm-111 {
    margin-bottom: 55.5rem !important;
  }

  .ml-sm-111,
  .mx-sm-111 {
    margin-left: 55.5rem !important;
  }

  .m-sm-112 {
    margin: 56rem !important;
  }

  .mt-sm-112,
  .my-sm-112 {
    margin-top: 56rem !important;
  }

  .mr-sm-112,
  .mx-sm-112 {
    margin-right: 56rem !important;
  }

  .mb-sm-112,
  .my-sm-112 {
    margin-bottom: 56rem !important;
  }

  .ml-sm-112,
  .mx-sm-112 {
    margin-left: 56rem !important;
  }

  .m-sm-113 {
    margin: 56.5rem !important;
  }

  .mt-sm-113,
  .my-sm-113 {
    margin-top: 56.5rem !important;
  }

  .mr-sm-113,
  .mx-sm-113 {
    margin-right: 56.5rem !important;
  }

  .mb-sm-113,
  .my-sm-113 {
    margin-bottom: 56.5rem !important;
  }

  .ml-sm-113,
  .mx-sm-113 {
    margin-left: 56.5rem !important;
  }

  .m-sm-114 {
    margin: 57rem !important;
  }

  .mt-sm-114,
  .my-sm-114 {
    margin-top: 57rem !important;
  }

  .mr-sm-114,
  .mx-sm-114 {
    margin-right: 57rem !important;
  }

  .mb-sm-114,
  .my-sm-114 {
    margin-bottom: 57rem !important;
  }

  .ml-sm-114,
  .mx-sm-114 {
    margin-left: 57rem !important;
  }

  .m-sm-115 {
    margin: 57.5rem !important;
  }

  .mt-sm-115,
  .my-sm-115 {
    margin-top: 57.5rem !important;
  }

  .mr-sm-115,
  .mx-sm-115 {
    margin-right: 57.5rem !important;
  }

  .mb-sm-115,
  .my-sm-115 {
    margin-bottom: 57.5rem !important;
  }

  .ml-sm-115,
  .mx-sm-115 {
    margin-left: 57.5rem !important;
  }

  .m-sm-116 {
    margin: 58rem !important;
  }

  .mt-sm-116,
  .my-sm-116 {
    margin-top: 58rem !important;
  }

  .mr-sm-116,
  .mx-sm-116 {
    margin-right: 58rem !important;
  }

  .mb-sm-116,
  .my-sm-116 {
    margin-bottom: 58rem !important;
  }

  .ml-sm-116,
  .mx-sm-116 {
    margin-left: 58rem !important;
  }

  .m-sm-117 {
    margin: 58.5rem !important;
  }

  .mt-sm-117,
  .my-sm-117 {
    margin-top: 58.5rem !important;
  }

  .mr-sm-117,
  .mx-sm-117 {
    margin-right: 58.5rem !important;
  }

  .mb-sm-117,
  .my-sm-117 {
    margin-bottom: 58.5rem !important;
  }

  .ml-sm-117,
  .mx-sm-117 {
    margin-left: 58.5rem !important;
  }

  .m-sm-118 {
    margin: 59rem !important;
  }

  .mt-sm-118,
  .my-sm-118 {
    margin-top: 59rem !important;
  }

  .mr-sm-118,
  .mx-sm-118 {
    margin-right: 59rem !important;
  }

  .mb-sm-118,
  .my-sm-118 {
    margin-bottom: 59rem !important;
  }

  .ml-sm-118,
  .mx-sm-118 {
    margin-left: 59rem !important;
  }

  .m-sm-119 {
    margin: 59.5rem !important;
  }

  .mt-sm-119,
  .my-sm-119 {
    margin-top: 59.5rem !important;
  }

  .mr-sm-119,
  .mx-sm-119 {
    margin-right: 59.5rem !important;
  }

  .mb-sm-119,
  .my-sm-119 {
    margin-bottom: 59.5rem !important;
  }

  .ml-sm-119,
  .mx-sm-119 {
    margin-left: 59.5rem !important;
  }

  .m-sm-120 {
    margin: 60rem !important;
  }

  .mt-sm-120,
  .my-sm-120 {
    margin-top: 60rem !important;
  }

  .mr-sm-120,
  .mx-sm-120 {
    margin-right: 60rem !important;
  }

  .mb-sm-120,
  .my-sm-120 {
    margin-bottom: 60rem !important;
  }

  .ml-sm-120,
  .mx-sm-120 {
    margin-left: 60rem !important;
  }

  .m-sm-121 {
    margin: 60.5rem !important;
  }

  .mt-sm-121,
  .my-sm-121 {
    margin-top: 60.5rem !important;
  }

  .mr-sm-121,
  .mx-sm-121 {
    margin-right: 60.5rem !important;
  }

  .mb-sm-121,
  .my-sm-121 {
    margin-bottom: 60.5rem !important;
  }

  .ml-sm-121,
  .mx-sm-121 {
    margin-left: 60.5rem !important;
  }

  .m-sm-122 {
    margin: 61rem !important;
  }

  .mt-sm-122,
  .my-sm-122 {
    margin-top: 61rem !important;
  }

  .mr-sm-122,
  .mx-sm-122 {
    margin-right: 61rem !important;
  }

  .mb-sm-122,
  .my-sm-122 {
    margin-bottom: 61rem !important;
  }

  .ml-sm-122,
  .mx-sm-122 {
    margin-left: 61rem !important;
  }

  .m-sm-123 {
    margin: 61.5rem !important;
  }

  .mt-sm-123,
  .my-sm-123 {
    margin-top: 61.5rem !important;
  }

  .mr-sm-123,
  .mx-sm-123 {
    margin-right: 61.5rem !important;
  }

  .mb-sm-123,
  .my-sm-123 {
    margin-bottom: 61.5rem !important;
  }

  .ml-sm-123,
  .mx-sm-123 {
    margin-left: 61.5rem !important;
  }

  .m-sm-124 {
    margin: 62rem !important;
  }

  .mt-sm-124,
  .my-sm-124 {
    margin-top: 62rem !important;
  }

  .mr-sm-124,
  .mx-sm-124 {
    margin-right: 62rem !important;
  }

  .mb-sm-124,
  .my-sm-124 {
    margin-bottom: 62rem !important;
  }

  .ml-sm-124,
  .mx-sm-124 {
    margin-left: 62rem !important;
  }

  .m-sm-125 {
    margin: 62.5rem !important;
  }

  .mt-sm-125,
  .my-sm-125 {
    margin-top: 62.5rem !important;
  }

  .mr-sm-125,
  .mx-sm-125 {
    margin-right: 62.5rem !important;
  }

  .mb-sm-125,
  .my-sm-125 {
    margin-bottom: 62.5rem !important;
  }

  .ml-sm-125,
  .mx-sm-125 {
    margin-left: 62.5rem !important;
  }

  .m-sm-126 {
    margin: 63rem !important;
  }

  .mt-sm-126,
  .my-sm-126 {
    margin-top: 63rem !important;
  }

  .mr-sm-126,
  .mx-sm-126 {
    margin-right: 63rem !important;
  }

  .mb-sm-126,
  .my-sm-126 {
    margin-bottom: 63rem !important;
  }

  .ml-sm-126,
  .mx-sm-126 {
    margin-left: 63rem !important;
  }

  .m-sm-127 {
    margin: 63.5rem !important;
  }

  .mt-sm-127,
  .my-sm-127 {
    margin-top: 63.5rem !important;
  }

  .mr-sm-127,
  .mx-sm-127 {
    margin-right: 63.5rem !important;
  }

  .mb-sm-127,
  .my-sm-127 {
    margin-bottom: 63.5rem !important;
  }

  .ml-sm-127,
  .mx-sm-127 {
    margin-left: 63.5rem !important;
  }

  .m-sm-128 {
    margin: 64rem !important;
  }

  .mt-sm-128,
  .my-sm-128 {
    margin-top: 64rem !important;
  }

  .mr-sm-128,
  .mx-sm-128 {
    margin-right: 64rem !important;
  }

  .mb-sm-128,
  .my-sm-128 {
    margin-bottom: 64rem !important;
  }

  .ml-sm-128,
  .mx-sm-128 {
    margin-left: 64rem !important;
  }

  .m-sm-129 {
    margin: 64.5rem !important;
  }

  .mt-sm-129,
  .my-sm-129 {
    margin-top: 64.5rem !important;
  }

  .mr-sm-129,
  .mx-sm-129 {
    margin-right: 64.5rem !important;
  }

  .mb-sm-129,
  .my-sm-129 {
    margin-bottom: 64.5rem !important;
  }

  .ml-sm-129,
  .mx-sm-129 {
    margin-left: 64.5rem !important;
  }

  .m-sm-130 {
    margin: 65rem !important;
  }

  .mt-sm-130,
  .my-sm-130 {
    margin-top: 65rem !important;
  }

  .mr-sm-130,
  .mx-sm-130 {
    margin-right: 65rem !important;
  }

  .mb-sm-130,
  .my-sm-130 {
    margin-bottom: 65rem !important;
  }

  .ml-sm-130,
  .mx-sm-130 {
    margin-left: 65rem !important;
  }

  .m-sm-131 {
    margin: 65.5rem !important;
  }

  .mt-sm-131,
  .my-sm-131 {
    margin-top: 65.5rem !important;
  }

  .mr-sm-131,
  .mx-sm-131 {
    margin-right: 65.5rem !important;
  }

  .mb-sm-131,
  .my-sm-131 {
    margin-bottom: 65.5rem !important;
  }

  .ml-sm-131,
  .mx-sm-131 {
    margin-left: 65.5rem !important;
  }

  .m-sm-132 {
    margin: 66rem !important;
  }

  .mt-sm-132,
  .my-sm-132 {
    margin-top: 66rem !important;
  }

  .mr-sm-132,
  .mx-sm-132 {
    margin-right: 66rem !important;
  }

  .mb-sm-132,
  .my-sm-132 {
    margin-bottom: 66rem !important;
  }

  .ml-sm-132,
  .mx-sm-132 {
    margin-left: 66rem !important;
  }

  .m-sm-133 {
    margin: 66.5rem !important;
  }

  .mt-sm-133,
  .my-sm-133 {
    margin-top: 66.5rem !important;
  }

  .mr-sm-133,
  .mx-sm-133 {
    margin-right: 66.5rem !important;
  }

  .mb-sm-133,
  .my-sm-133 {
    margin-bottom: 66.5rem !important;
  }

  .ml-sm-133,
  .mx-sm-133 {
    margin-left: 66.5rem !important;
  }

  .m-sm-134 {
    margin: 67rem !important;
  }

  .mt-sm-134,
  .my-sm-134 {
    margin-top: 67rem !important;
  }

  .mr-sm-134,
  .mx-sm-134 {
    margin-right: 67rem !important;
  }

  .mb-sm-134,
  .my-sm-134 {
    margin-bottom: 67rem !important;
  }

  .ml-sm-134,
  .mx-sm-134 {
    margin-left: 67rem !important;
  }

  .m-sm-135 {
    margin: 67.5rem !important;
  }

  .mt-sm-135,
  .my-sm-135 {
    margin-top: 67.5rem !important;
  }

  .mr-sm-135,
  .mx-sm-135 {
    margin-right: 67.5rem !important;
  }

  .mb-sm-135,
  .my-sm-135 {
    margin-bottom: 67.5rem !important;
  }

  .ml-sm-135,
  .mx-sm-135 {
    margin-left: 67.5rem !important;
  }

  .m-sm-136 {
    margin: 68rem !important;
  }

  .mt-sm-136,
  .my-sm-136 {
    margin-top: 68rem !important;
  }

  .mr-sm-136,
  .mx-sm-136 {
    margin-right: 68rem !important;
  }

  .mb-sm-136,
  .my-sm-136 {
    margin-bottom: 68rem !important;
  }

  .ml-sm-136,
  .mx-sm-136 {
    margin-left: 68rem !important;
  }

  .m-sm-137 {
    margin: 68.5rem !important;
  }

  .mt-sm-137,
  .my-sm-137 {
    margin-top: 68.5rem !important;
  }

  .mr-sm-137,
  .mx-sm-137 {
    margin-right: 68.5rem !important;
  }

  .mb-sm-137,
  .my-sm-137 {
    margin-bottom: 68.5rem !important;
  }

  .ml-sm-137,
  .mx-sm-137 {
    margin-left: 68.5rem !important;
  }

  .m-sm-138 {
    margin: 69rem !important;
  }

  .mt-sm-138,
  .my-sm-138 {
    margin-top: 69rem !important;
  }

  .mr-sm-138,
  .mx-sm-138 {
    margin-right: 69rem !important;
  }

  .mb-sm-138,
  .my-sm-138 {
    margin-bottom: 69rem !important;
  }

  .ml-sm-138,
  .mx-sm-138 {
    margin-left: 69rem !important;
  }

  .m-sm-139 {
    margin: 69.5rem !important;
  }

  .mt-sm-139,
  .my-sm-139 {
    margin-top: 69.5rem !important;
  }

  .mr-sm-139,
  .mx-sm-139 {
    margin-right: 69.5rem !important;
  }

  .mb-sm-139,
  .my-sm-139 {
    margin-bottom: 69.5rem !important;
  }

  .ml-sm-139,
  .mx-sm-139 {
    margin-left: 69.5rem !important;
  }

  .m-sm-140 {
    margin: 70rem !important;
  }

  .mt-sm-140,
  .my-sm-140 {
    margin-top: 70rem !important;
  }

  .mr-sm-140,
  .mx-sm-140 {
    margin-right: 70rem !important;
  }

  .mb-sm-140,
  .my-sm-140 {
    margin-bottom: 70rem !important;
  }

  .ml-sm-140,
  .mx-sm-140 {
    margin-left: 70rem !important;
  }

  .m-sm-141 {
    margin: 70.5rem !important;
  }

  .mt-sm-141,
  .my-sm-141 {
    margin-top: 70.5rem !important;
  }

  .mr-sm-141,
  .mx-sm-141 {
    margin-right: 70.5rem !important;
  }

  .mb-sm-141,
  .my-sm-141 {
    margin-bottom: 70.5rem !important;
  }

  .ml-sm-141,
  .mx-sm-141 {
    margin-left: 70.5rem !important;
  }

  .m-sm-142 {
    margin: 71rem !important;
  }

  .mt-sm-142,
  .my-sm-142 {
    margin-top: 71rem !important;
  }

  .mr-sm-142,
  .mx-sm-142 {
    margin-right: 71rem !important;
  }

  .mb-sm-142,
  .my-sm-142 {
    margin-bottom: 71rem !important;
  }

  .ml-sm-142,
  .mx-sm-142 {
    margin-left: 71rem !important;
  }

  .m-sm-143 {
    margin: 71.5rem !important;
  }

  .mt-sm-143,
  .my-sm-143 {
    margin-top: 71.5rem !important;
  }

  .mr-sm-143,
  .mx-sm-143 {
    margin-right: 71.5rem !important;
  }

  .mb-sm-143,
  .my-sm-143 {
    margin-bottom: 71.5rem !important;
  }

  .ml-sm-143,
  .mx-sm-143 {
    margin-left: 71.5rem !important;
  }

  .m-sm-144 {
    margin: 72rem !important;
  }

  .mt-sm-144,
  .my-sm-144 {
    margin-top: 72rem !important;
  }

  .mr-sm-144,
  .mx-sm-144 {
    margin-right: 72rem !important;
  }

  .mb-sm-144,
  .my-sm-144 {
    margin-bottom: 72rem !important;
  }

  .ml-sm-144,
  .mx-sm-144 {
    margin-left: 72rem !important;
  }

  .m-sm-145 {
    margin: 72.5rem !important;
  }

  .mt-sm-145,
  .my-sm-145 {
    margin-top: 72.5rem !important;
  }

  .mr-sm-145,
  .mx-sm-145 {
    margin-right: 72.5rem !important;
  }

  .mb-sm-145,
  .my-sm-145 {
    margin-bottom: 72.5rem !important;
  }

  .ml-sm-145,
  .mx-sm-145 {
    margin-left: 72.5rem !important;
  }

  .m-sm-146 {
    margin: 73rem !important;
  }

  .mt-sm-146,
  .my-sm-146 {
    margin-top: 73rem !important;
  }

  .mr-sm-146,
  .mx-sm-146 {
    margin-right: 73rem !important;
  }

  .mb-sm-146,
  .my-sm-146 {
    margin-bottom: 73rem !important;
  }

  .ml-sm-146,
  .mx-sm-146 {
    margin-left: 73rem !important;
  }

  .m-sm-147 {
    margin: 73.5rem !important;
  }

  .mt-sm-147,
  .my-sm-147 {
    margin-top: 73.5rem !important;
  }

  .mr-sm-147,
  .mx-sm-147 {
    margin-right: 73.5rem !important;
  }

  .mb-sm-147,
  .my-sm-147 {
    margin-bottom: 73.5rem !important;
  }

  .ml-sm-147,
  .mx-sm-147 {
    margin-left: 73.5rem !important;
  }

  .m-sm-148 {
    margin: 74rem !important;
  }

  .mt-sm-148,
  .my-sm-148 {
    margin-top: 74rem !important;
  }

  .mr-sm-148,
  .mx-sm-148 {
    margin-right: 74rem !important;
  }

  .mb-sm-148,
  .my-sm-148 {
    margin-bottom: 74rem !important;
  }

  .ml-sm-148,
  .mx-sm-148 {
    margin-left: 74rem !important;
  }

  .m-sm-149 {
    margin: 74.5rem !important;
  }

  .mt-sm-149,
  .my-sm-149 {
    margin-top: 74.5rem !important;
  }

  .mr-sm-149,
  .mx-sm-149 {
    margin-right: 74.5rem !important;
  }

  .mb-sm-149,
  .my-sm-149 {
    margin-bottom: 74.5rem !important;
  }

  .ml-sm-149,
  .mx-sm-149 {
    margin-left: 74.5rem !important;
  }

  .m-sm-150 {
    margin: 75rem !important;
  }

  .mt-sm-150,
  .my-sm-150 {
    margin-top: 75rem !important;
  }

  .mr-sm-150,
  .mx-sm-150 {
    margin-right: 75rem !important;
  }

  .mb-sm-150,
  .my-sm-150 {
    margin-bottom: 75rem !important;
  }

  .ml-sm-150,
  .mx-sm-150 {
    margin-left: 75rem !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.5rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.5rem !important;
  }

  .p-sm-2 {
    padding: 1rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 1rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 1rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 1rem !important;
  }

  .p-sm-3 {
    padding: 1.5rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1.5rem !important;
  }

  .p-sm-4 {
    padding: 2rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 2rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 2rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 2rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 2rem !important;
  }

  .p-sm-5 {
    padding: 2.5rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 2.5rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 2.5rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 2.5rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 2.5rem !important;
  }

  .p-sm-6 {
    padding: 3rem !important;
  }

  .pt-sm-6,
  .py-sm-6 {
    padding-top: 3rem !important;
  }

  .pr-sm-6,
  .px-sm-6 {
    padding-right: 3rem !important;
  }

  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-6,
  .px-sm-6 {
    padding-left: 3rem !important;
  }

  .p-sm-7 {
    padding: 3.5rem !important;
  }

  .pt-sm-7,
  .py-sm-7 {
    padding-top: 3.5rem !important;
  }

  .pr-sm-7,
  .px-sm-7 {
    padding-right: 3.5rem !important;
  }

  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 3.5rem !important;
  }

  .pl-sm-7,
  .px-sm-7 {
    padding-left: 3.5rem !important;
  }

  .p-sm-8 {
    padding: 4rem !important;
  }

  .pt-sm-8,
  .py-sm-8 {
    padding-top: 4rem !important;
  }

  .pr-sm-8,
  .px-sm-8 {
    padding-right: 4rem !important;
  }

  .pb-sm-8,
  .py-sm-8 {
    padding-bottom: 4rem !important;
  }

  .pl-sm-8,
  .px-sm-8 {
    padding-left: 4rem !important;
  }

  .p-sm-9 {
    padding: 4.5rem !important;
  }

  .pt-sm-9,
  .py-sm-9 {
    padding-top: 4.5rem !important;
  }

  .pr-sm-9,
  .px-sm-9 {
    padding-right: 4.5rem !important;
  }

  .pb-sm-9,
  .py-sm-9 {
    padding-bottom: 4.5rem !important;
  }

  .pl-sm-9,
  .px-sm-9 {
    padding-left: 4.5rem !important;
  }

  .p-sm-10 {
    padding: 5rem !important;
  }

  .pt-sm-10,
  .py-sm-10 {
    padding-top: 5rem !important;
  }

  .pr-sm-10,
  .px-sm-10 {
    padding-right: 5rem !important;
  }

  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 5rem !important;
  }

  .pl-sm-10,
  .px-sm-10 {
    padding-left: 5rem !important;
  }

  .p-sm-11 {
    padding: 5.5rem !important;
  }

  .pt-sm-11,
  .py-sm-11 {
    padding-top: 5.5rem !important;
  }

  .pr-sm-11,
  .px-sm-11 {
    padding-right: 5.5rem !important;
  }

  .pb-sm-11,
  .py-sm-11 {
    padding-bottom: 5.5rem !important;
  }

  .pl-sm-11,
  .px-sm-11 {
    padding-left: 5.5rem !important;
  }

  .p-sm-12 {
    padding: 6rem !important;
  }

  .pt-sm-12,
  .py-sm-12 {
    padding-top: 6rem !important;
  }

  .pr-sm-12,
  .px-sm-12 {
    padding-right: 6rem !important;
  }

  .pb-sm-12,
  .py-sm-12 {
    padding-bottom: 6rem !important;
  }

  .pl-sm-12,
  .px-sm-12 {
    padding-left: 6rem !important;
  }

  .p-sm-13 {
    padding: 6.5rem !important;
  }

  .pt-sm-13,
  .py-sm-13 {
    padding-top: 6.5rem !important;
  }

  .pr-sm-13,
  .px-sm-13 {
    padding-right: 6.5rem !important;
  }

  .pb-sm-13,
  .py-sm-13 {
    padding-bottom: 6.5rem !important;
  }

  .pl-sm-13,
  .px-sm-13 {
    padding-left: 6.5rem !important;
  }

  .p-sm-14 {
    padding: 7rem !important;
  }

  .pt-sm-14,
  .py-sm-14 {
    padding-top: 7rem !important;
  }

  .pr-sm-14,
  .px-sm-14 {
    padding-right: 7rem !important;
  }

  .pb-sm-14,
  .py-sm-14 {
    padding-bottom: 7rem !important;
  }

  .pl-sm-14,
  .px-sm-14 {
    padding-left: 7rem !important;
  }

  .p-sm-15 {
    padding: 7.5rem !important;
  }

  .pt-sm-15,
  .py-sm-15 {
    padding-top: 7.5rem !important;
  }

  .pr-sm-15,
  .px-sm-15 {
    padding-right: 7.5rem !important;
  }

  .pb-sm-15,
  .py-sm-15 {
    padding-bottom: 7.5rem !important;
  }

  .pl-sm-15,
  .px-sm-15 {
    padding-left: 7.5rem !important;
  }

  .p-sm-16 {
    padding: 8rem !important;
  }

  .pt-sm-16,
  .py-sm-16 {
    padding-top: 8rem !important;
  }

  .pr-sm-16,
  .px-sm-16 {
    padding-right: 8rem !important;
  }

  .pb-sm-16,
  .py-sm-16 {
    padding-bottom: 8rem !important;
  }

  .pl-sm-16,
  .px-sm-16 {
    padding-left: 8rem !important;
  }

  .p-sm-17 {
    padding: 8.5rem !important;
  }

  .pt-sm-17,
  .py-sm-17 {
    padding-top: 8.5rem !important;
  }

  .pr-sm-17,
  .px-sm-17 {
    padding-right: 8.5rem !important;
  }

  .pb-sm-17,
  .py-sm-17 {
    padding-bottom: 8.5rem !important;
  }

  .pl-sm-17,
  .px-sm-17 {
    padding-left: 8.5rem !important;
  }

  .p-sm-18 {
    padding: 9rem !important;
  }

  .pt-sm-18,
  .py-sm-18 {
    padding-top: 9rem !important;
  }

  .pr-sm-18,
  .px-sm-18 {
    padding-right: 9rem !important;
  }

  .pb-sm-18,
  .py-sm-18 {
    padding-bottom: 9rem !important;
  }

  .pl-sm-18,
  .px-sm-18 {
    padding-left: 9rem !important;
  }

  .p-sm-19 {
    padding: 9.5rem !important;
  }

  .pt-sm-19,
  .py-sm-19 {
    padding-top: 9.5rem !important;
  }

  .pr-sm-19,
  .px-sm-19 {
    padding-right: 9.5rem !important;
  }

  .pb-sm-19,
  .py-sm-19 {
    padding-bottom: 9.5rem !important;
  }

  .pl-sm-19,
  .px-sm-19 {
    padding-left: 9.5rem !important;
  }

  .p-sm-20 {
    padding: 10rem !important;
  }

  .pt-sm-20,
  .py-sm-20 {
    padding-top: 10rem !important;
  }

  .pr-sm-20,
  .px-sm-20 {
    padding-right: 10rem !important;
  }

  .pb-sm-20,
  .py-sm-20 {
    padding-bottom: 10rem !important;
  }

  .pl-sm-20,
  .px-sm-20 {
    padding-left: 10rem !important;
  }

  .p-sm-21 {
    padding: 10.5rem !important;
  }

  .pt-sm-21,
  .py-sm-21 {
    padding-top: 10.5rem !important;
  }

  .pr-sm-21,
  .px-sm-21 {
    padding-right: 10.5rem !important;
  }

  .pb-sm-21,
  .py-sm-21 {
    padding-bottom: 10.5rem !important;
  }

  .pl-sm-21,
  .px-sm-21 {
    padding-left: 10.5rem !important;
  }

  .p-sm-22 {
    padding: 11rem !important;
  }

  .pt-sm-22,
  .py-sm-22 {
    padding-top: 11rem !important;
  }

  .pr-sm-22,
  .px-sm-22 {
    padding-right: 11rem !important;
  }

  .pb-sm-22,
  .py-sm-22 {
    padding-bottom: 11rem !important;
  }

  .pl-sm-22,
  .px-sm-22 {
    padding-left: 11rem !important;
  }

  .p-sm-23 {
    padding: 11.5rem !important;
  }

  .pt-sm-23,
  .py-sm-23 {
    padding-top: 11.5rem !important;
  }

  .pr-sm-23,
  .px-sm-23 {
    padding-right: 11.5rem !important;
  }

  .pb-sm-23,
  .py-sm-23 {
    padding-bottom: 11.5rem !important;
  }

  .pl-sm-23,
  .px-sm-23 {
    padding-left: 11.5rem !important;
  }

  .p-sm-24 {
    padding: 12rem !important;
  }

  .pt-sm-24,
  .py-sm-24 {
    padding-top: 12rem !important;
  }

  .pr-sm-24,
  .px-sm-24 {
    padding-right: 12rem !important;
  }

  .pb-sm-24,
  .py-sm-24 {
    padding-bottom: 12rem !important;
  }

  .pl-sm-24,
  .px-sm-24 {
    padding-left: 12rem !important;
  }

  .p-sm-25 {
    padding: 12.5rem !important;
  }

  .pt-sm-25,
  .py-sm-25 {
    padding-top: 12.5rem !important;
  }

  .pr-sm-25,
  .px-sm-25 {
    padding-right: 12.5rem !important;
  }

  .pb-sm-25,
  .py-sm-25 {
    padding-bottom: 12.5rem !important;
  }

  .pl-sm-25,
  .px-sm-25 {
    padding-left: 12.5rem !important;
  }

  .p-sm-26 {
    padding: 13rem !important;
  }

  .pt-sm-26,
  .py-sm-26 {
    padding-top: 13rem !important;
  }

  .pr-sm-26,
  .px-sm-26 {
    padding-right: 13rem !important;
  }

  .pb-sm-26,
  .py-sm-26 {
    padding-bottom: 13rem !important;
  }

  .pl-sm-26,
  .px-sm-26 {
    padding-left: 13rem !important;
  }

  .p-sm-27 {
    padding: 13.5rem !important;
  }

  .pt-sm-27,
  .py-sm-27 {
    padding-top: 13.5rem !important;
  }

  .pr-sm-27,
  .px-sm-27 {
    padding-right: 13.5rem !important;
  }

  .pb-sm-27,
  .py-sm-27 {
    padding-bottom: 13.5rem !important;
  }

  .pl-sm-27,
  .px-sm-27 {
    padding-left: 13.5rem !important;
  }

  .p-sm-28 {
    padding: 14rem !important;
  }

  .pt-sm-28,
  .py-sm-28 {
    padding-top: 14rem !important;
  }

  .pr-sm-28,
  .px-sm-28 {
    padding-right: 14rem !important;
  }

  .pb-sm-28,
  .py-sm-28 {
    padding-bottom: 14rem !important;
  }

  .pl-sm-28,
  .px-sm-28 {
    padding-left: 14rem !important;
  }

  .p-sm-29 {
    padding: 14.5rem !important;
  }

  .pt-sm-29,
  .py-sm-29 {
    padding-top: 14.5rem !important;
  }

  .pr-sm-29,
  .px-sm-29 {
    padding-right: 14.5rem !important;
  }

  .pb-sm-29,
  .py-sm-29 {
    padding-bottom: 14.5rem !important;
  }

  .pl-sm-29,
  .px-sm-29 {
    padding-left: 14.5rem !important;
  }

  .p-sm-30 {
    padding: 15rem !important;
  }

  .pt-sm-30,
  .py-sm-30 {
    padding-top: 15rem !important;
  }

  .pr-sm-30,
  .px-sm-30 {
    padding-right: 15rem !important;
  }

  .pb-sm-30,
  .py-sm-30 {
    padding-bottom: 15rem !important;
  }

  .pl-sm-30,
  .px-sm-30 {
    padding-left: 15rem !important;
  }

  .p-sm-31 {
    padding: 15.5rem !important;
  }

  .pt-sm-31,
  .py-sm-31 {
    padding-top: 15.5rem !important;
  }

  .pr-sm-31,
  .px-sm-31 {
    padding-right: 15.5rem !important;
  }

  .pb-sm-31,
  .py-sm-31 {
    padding-bottom: 15.5rem !important;
  }

  .pl-sm-31,
  .px-sm-31 {
    padding-left: 15.5rem !important;
  }

  .p-sm-32 {
    padding: 16rem !important;
  }

  .pt-sm-32,
  .py-sm-32 {
    padding-top: 16rem !important;
  }

  .pr-sm-32,
  .px-sm-32 {
    padding-right: 16rem !important;
  }

  .pb-sm-32,
  .py-sm-32 {
    padding-bottom: 16rem !important;
  }

  .pl-sm-32,
  .px-sm-32 {
    padding-left: 16rem !important;
  }

  .p-sm-33 {
    padding: 16.5rem !important;
  }

  .pt-sm-33,
  .py-sm-33 {
    padding-top: 16.5rem !important;
  }

  .pr-sm-33,
  .px-sm-33 {
    padding-right: 16.5rem !important;
  }

  .pb-sm-33,
  .py-sm-33 {
    padding-bottom: 16.5rem !important;
  }

  .pl-sm-33,
  .px-sm-33 {
    padding-left: 16.5rem !important;
  }

  .p-sm-34 {
    padding: 17rem !important;
  }

  .pt-sm-34,
  .py-sm-34 {
    padding-top: 17rem !important;
  }

  .pr-sm-34,
  .px-sm-34 {
    padding-right: 17rem !important;
  }

  .pb-sm-34,
  .py-sm-34 {
    padding-bottom: 17rem !important;
  }

  .pl-sm-34,
  .px-sm-34 {
    padding-left: 17rem !important;
  }

  .p-sm-35 {
    padding: 17.5rem !important;
  }

  .pt-sm-35,
  .py-sm-35 {
    padding-top: 17.5rem !important;
  }

  .pr-sm-35,
  .px-sm-35 {
    padding-right: 17.5rem !important;
  }

  .pb-sm-35,
  .py-sm-35 {
    padding-bottom: 17.5rem !important;
  }

  .pl-sm-35,
  .px-sm-35 {
    padding-left: 17.5rem !important;
  }

  .p-sm-36 {
    padding: 18rem !important;
  }

  .pt-sm-36,
  .py-sm-36 {
    padding-top: 18rem !important;
  }

  .pr-sm-36,
  .px-sm-36 {
    padding-right: 18rem !important;
  }

  .pb-sm-36,
  .py-sm-36 {
    padding-bottom: 18rem !important;
  }

  .pl-sm-36,
  .px-sm-36 {
    padding-left: 18rem !important;
  }

  .p-sm-37 {
    padding: 18.5rem !important;
  }

  .pt-sm-37,
  .py-sm-37 {
    padding-top: 18.5rem !important;
  }

  .pr-sm-37,
  .px-sm-37 {
    padding-right: 18.5rem !important;
  }

  .pb-sm-37,
  .py-sm-37 {
    padding-bottom: 18.5rem !important;
  }

  .pl-sm-37,
  .px-sm-37 {
    padding-left: 18.5rem !important;
  }

  .p-sm-38 {
    padding: 19rem !important;
  }

  .pt-sm-38,
  .py-sm-38 {
    padding-top: 19rem !important;
  }

  .pr-sm-38,
  .px-sm-38 {
    padding-right: 19rem !important;
  }

  .pb-sm-38,
  .py-sm-38 {
    padding-bottom: 19rem !important;
  }

  .pl-sm-38,
  .px-sm-38 {
    padding-left: 19rem !important;
  }

  .p-sm-39 {
    padding: 19.5rem !important;
  }

  .pt-sm-39,
  .py-sm-39 {
    padding-top: 19.5rem !important;
  }

  .pr-sm-39,
  .px-sm-39 {
    padding-right: 19.5rem !important;
  }

  .pb-sm-39,
  .py-sm-39 {
    padding-bottom: 19.5rem !important;
  }

  .pl-sm-39,
  .px-sm-39 {
    padding-left: 19.5rem !important;
  }

  .p-sm-40 {
    padding: 20rem !important;
  }

  .pt-sm-40,
  .py-sm-40 {
    padding-top: 20rem !important;
  }

  .pr-sm-40,
  .px-sm-40 {
    padding-right: 20rem !important;
  }

  .pb-sm-40,
  .py-sm-40 {
    padding-bottom: 20rem !important;
  }

  .pl-sm-40,
  .px-sm-40 {
    padding-left: 20rem !important;
  }

  .p-sm-41 {
    padding: 20.5rem !important;
  }

  .pt-sm-41,
  .py-sm-41 {
    padding-top: 20.5rem !important;
  }

  .pr-sm-41,
  .px-sm-41 {
    padding-right: 20.5rem !important;
  }

  .pb-sm-41,
  .py-sm-41 {
    padding-bottom: 20.5rem !important;
  }

  .pl-sm-41,
  .px-sm-41 {
    padding-left: 20.5rem !important;
  }

  .p-sm-42 {
    padding: 21rem !important;
  }

  .pt-sm-42,
  .py-sm-42 {
    padding-top: 21rem !important;
  }

  .pr-sm-42,
  .px-sm-42 {
    padding-right: 21rem !important;
  }

  .pb-sm-42,
  .py-sm-42 {
    padding-bottom: 21rem !important;
  }

  .pl-sm-42,
  .px-sm-42 {
    padding-left: 21rem !important;
  }

  .p-sm-43 {
    padding: 21.5rem !important;
  }

  .pt-sm-43,
  .py-sm-43 {
    padding-top: 21.5rem !important;
  }

  .pr-sm-43,
  .px-sm-43 {
    padding-right: 21.5rem !important;
  }

  .pb-sm-43,
  .py-sm-43 {
    padding-bottom: 21.5rem !important;
  }

  .pl-sm-43,
  .px-sm-43 {
    padding-left: 21.5rem !important;
  }

  .p-sm-44 {
    padding: 22rem !important;
  }

  .pt-sm-44,
  .py-sm-44 {
    padding-top: 22rem !important;
  }

  .pr-sm-44,
  .px-sm-44 {
    padding-right: 22rem !important;
  }

  .pb-sm-44,
  .py-sm-44 {
    padding-bottom: 22rem !important;
  }

  .pl-sm-44,
  .px-sm-44 {
    padding-left: 22rem !important;
  }

  .p-sm-45 {
    padding: 22.5rem !important;
  }

  .pt-sm-45,
  .py-sm-45 {
    padding-top: 22.5rem !important;
  }

  .pr-sm-45,
  .px-sm-45 {
    padding-right: 22.5rem !important;
  }

  .pb-sm-45,
  .py-sm-45 {
    padding-bottom: 22.5rem !important;
  }

  .pl-sm-45,
  .px-sm-45 {
    padding-left: 22.5rem !important;
  }

  .p-sm-46 {
    padding: 23rem !important;
  }

  .pt-sm-46,
  .py-sm-46 {
    padding-top: 23rem !important;
  }

  .pr-sm-46,
  .px-sm-46 {
    padding-right: 23rem !important;
  }

  .pb-sm-46,
  .py-sm-46 {
    padding-bottom: 23rem !important;
  }

  .pl-sm-46,
  .px-sm-46 {
    padding-left: 23rem !important;
  }

  .p-sm-47 {
    padding: 23.5rem !important;
  }

  .pt-sm-47,
  .py-sm-47 {
    padding-top: 23.5rem !important;
  }

  .pr-sm-47,
  .px-sm-47 {
    padding-right: 23.5rem !important;
  }

  .pb-sm-47,
  .py-sm-47 {
    padding-bottom: 23.5rem !important;
  }

  .pl-sm-47,
  .px-sm-47 {
    padding-left: 23.5rem !important;
  }

  .p-sm-48 {
    padding: 24rem !important;
  }

  .pt-sm-48,
  .py-sm-48 {
    padding-top: 24rem !important;
  }

  .pr-sm-48,
  .px-sm-48 {
    padding-right: 24rem !important;
  }

  .pb-sm-48,
  .py-sm-48 {
    padding-bottom: 24rem !important;
  }

  .pl-sm-48,
  .px-sm-48 {
    padding-left: 24rem !important;
  }

  .p-sm-49 {
    padding: 24.5rem !important;
  }

  .pt-sm-49,
  .py-sm-49 {
    padding-top: 24.5rem !important;
  }

  .pr-sm-49,
  .px-sm-49 {
    padding-right: 24.5rem !important;
  }

  .pb-sm-49,
  .py-sm-49 {
    padding-bottom: 24.5rem !important;
  }

  .pl-sm-49,
  .px-sm-49 {
    padding-left: 24.5rem !important;
  }

  .p-sm-50 {
    padding: 25rem !important;
  }

  .pt-sm-50,
  .py-sm-50 {
    padding-top: 25rem !important;
  }

  .pr-sm-50,
  .px-sm-50 {
    padding-right: 25rem !important;
  }

  .pb-sm-50,
  .py-sm-50 {
    padding-bottom: 25rem !important;
  }

  .pl-sm-50,
  .px-sm-50 {
    padding-left: 25rem !important;
  }

  .p-sm-51 {
    padding: 25.5rem !important;
  }

  .pt-sm-51,
  .py-sm-51 {
    padding-top: 25.5rem !important;
  }

  .pr-sm-51,
  .px-sm-51 {
    padding-right: 25.5rem !important;
  }

  .pb-sm-51,
  .py-sm-51 {
    padding-bottom: 25.5rem !important;
  }

  .pl-sm-51,
  .px-sm-51 {
    padding-left: 25.5rem !important;
  }

  .p-sm-52 {
    padding: 26rem !important;
  }

  .pt-sm-52,
  .py-sm-52 {
    padding-top: 26rem !important;
  }

  .pr-sm-52,
  .px-sm-52 {
    padding-right: 26rem !important;
  }

  .pb-sm-52,
  .py-sm-52 {
    padding-bottom: 26rem !important;
  }

  .pl-sm-52,
  .px-sm-52 {
    padding-left: 26rem !important;
  }

  .p-sm-53 {
    padding: 26.5rem !important;
  }

  .pt-sm-53,
  .py-sm-53 {
    padding-top: 26.5rem !important;
  }

  .pr-sm-53,
  .px-sm-53 {
    padding-right: 26.5rem !important;
  }

  .pb-sm-53,
  .py-sm-53 {
    padding-bottom: 26.5rem !important;
  }

  .pl-sm-53,
  .px-sm-53 {
    padding-left: 26.5rem !important;
  }

  .p-sm-54 {
    padding: 27rem !important;
  }

  .pt-sm-54,
  .py-sm-54 {
    padding-top: 27rem !important;
  }

  .pr-sm-54,
  .px-sm-54 {
    padding-right: 27rem !important;
  }

  .pb-sm-54,
  .py-sm-54 {
    padding-bottom: 27rem !important;
  }

  .pl-sm-54,
  .px-sm-54 {
    padding-left: 27rem !important;
  }

  .p-sm-55 {
    padding: 27.5rem !important;
  }

  .pt-sm-55,
  .py-sm-55 {
    padding-top: 27.5rem !important;
  }

  .pr-sm-55,
  .px-sm-55 {
    padding-right: 27.5rem !important;
  }

  .pb-sm-55,
  .py-sm-55 {
    padding-bottom: 27.5rem !important;
  }

  .pl-sm-55,
  .px-sm-55 {
    padding-left: 27.5rem !important;
  }

  .p-sm-56 {
    padding: 28rem !important;
  }

  .pt-sm-56,
  .py-sm-56 {
    padding-top: 28rem !important;
  }

  .pr-sm-56,
  .px-sm-56 {
    padding-right: 28rem !important;
  }

  .pb-sm-56,
  .py-sm-56 {
    padding-bottom: 28rem !important;
  }

  .pl-sm-56,
  .px-sm-56 {
    padding-left: 28rem !important;
  }

  .p-sm-57 {
    padding: 28.5rem !important;
  }

  .pt-sm-57,
  .py-sm-57 {
    padding-top: 28.5rem !important;
  }

  .pr-sm-57,
  .px-sm-57 {
    padding-right: 28.5rem !important;
  }

  .pb-sm-57,
  .py-sm-57 {
    padding-bottom: 28.5rem !important;
  }

  .pl-sm-57,
  .px-sm-57 {
    padding-left: 28.5rem !important;
  }

  .p-sm-58 {
    padding: 29rem !important;
  }

  .pt-sm-58,
  .py-sm-58 {
    padding-top: 29rem !important;
  }

  .pr-sm-58,
  .px-sm-58 {
    padding-right: 29rem !important;
  }

  .pb-sm-58,
  .py-sm-58 {
    padding-bottom: 29rem !important;
  }

  .pl-sm-58,
  .px-sm-58 {
    padding-left: 29rem !important;
  }

  .p-sm-59 {
    padding: 29.5rem !important;
  }

  .pt-sm-59,
  .py-sm-59 {
    padding-top: 29.5rem !important;
  }

  .pr-sm-59,
  .px-sm-59 {
    padding-right: 29.5rem !important;
  }

  .pb-sm-59,
  .py-sm-59 {
    padding-bottom: 29.5rem !important;
  }

  .pl-sm-59,
  .px-sm-59 {
    padding-left: 29.5rem !important;
  }

  .p-sm-60 {
    padding: 30rem !important;
  }

  .pt-sm-60,
  .py-sm-60 {
    padding-top: 30rem !important;
  }

  .pr-sm-60,
  .px-sm-60 {
    padding-right: 30rem !important;
  }

  .pb-sm-60,
  .py-sm-60 {
    padding-bottom: 30rem !important;
  }

  .pl-sm-60,
  .px-sm-60 {
    padding-left: 30rem !important;
  }

  .p-sm-61 {
    padding: 30.5rem !important;
  }

  .pt-sm-61,
  .py-sm-61 {
    padding-top: 30.5rem !important;
  }

  .pr-sm-61,
  .px-sm-61 {
    padding-right: 30.5rem !important;
  }

  .pb-sm-61,
  .py-sm-61 {
    padding-bottom: 30.5rem !important;
  }

  .pl-sm-61,
  .px-sm-61 {
    padding-left: 30.5rem !important;
  }

  .p-sm-62 {
    padding: 31rem !important;
  }

  .pt-sm-62,
  .py-sm-62 {
    padding-top: 31rem !important;
  }

  .pr-sm-62,
  .px-sm-62 {
    padding-right: 31rem !important;
  }

  .pb-sm-62,
  .py-sm-62 {
    padding-bottom: 31rem !important;
  }

  .pl-sm-62,
  .px-sm-62 {
    padding-left: 31rem !important;
  }

  .p-sm-63 {
    padding: 31.5rem !important;
  }

  .pt-sm-63,
  .py-sm-63 {
    padding-top: 31.5rem !important;
  }

  .pr-sm-63,
  .px-sm-63 {
    padding-right: 31.5rem !important;
  }

  .pb-sm-63,
  .py-sm-63 {
    padding-bottom: 31.5rem !important;
  }

  .pl-sm-63,
  .px-sm-63 {
    padding-left: 31.5rem !important;
  }

  .p-sm-64 {
    padding: 32rem !important;
  }

  .pt-sm-64,
  .py-sm-64 {
    padding-top: 32rem !important;
  }

  .pr-sm-64,
  .px-sm-64 {
    padding-right: 32rem !important;
  }

  .pb-sm-64,
  .py-sm-64 {
    padding-bottom: 32rem !important;
  }

  .pl-sm-64,
  .px-sm-64 {
    padding-left: 32rem !important;
  }

  .p-sm-65 {
    padding: 32.5rem !important;
  }

  .pt-sm-65,
  .py-sm-65 {
    padding-top: 32.5rem !important;
  }

  .pr-sm-65,
  .px-sm-65 {
    padding-right: 32.5rem !important;
  }

  .pb-sm-65,
  .py-sm-65 {
    padding-bottom: 32.5rem !important;
  }

  .pl-sm-65,
  .px-sm-65 {
    padding-left: 32.5rem !important;
  }

  .p-sm-66 {
    padding: 33rem !important;
  }

  .pt-sm-66,
  .py-sm-66 {
    padding-top: 33rem !important;
  }

  .pr-sm-66,
  .px-sm-66 {
    padding-right: 33rem !important;
  }

  .pb-sm-66,
  .py-sm-66 {
    padding-bottom: 33rem !important;
  }

  .pl-sm-66,
  .px-sm-66 {
    padding-left: 33rem !important;
  }

  .p-sm-67 {
    padding: 33.5rem !important;
  }

  .pt-sm-67,
  .py-sm-67 {
    padding-top: 33.5rem !important;
  }

  .pr-sm-67,
  .px-sm-67 {
    padding-right: 33.5rem !important;
  }

  .pb-sm-67,
  .py-sm-67 {
    padding-bottom: 33.5rem !important;
  }

  .pl-sm-67,
  .px-sm-67 {
    padding-left: 33.5rem !important;
  }

  .p-sm-68 {
    padding: 34rem !important;
  }

  .pt-sm-68,
  .py-sm-68 {
    padding-top: 34rem !important;
  }

  .pr-sm-68,
  .px-sm-68 {
    padding-right: 34rem !important;
  }

  .pb-sm-68,
  .py-sm-68 {
    padding-bottom: 34rem !important;
  }

  .pl-sm-68,
  .px-sm-68 {
    padding-left: 34rem !important;
  }

  .p-sm-69 {
    padding: 34.5rem !important;
  }

  .pt-sm-69,
  .py-sm-69 {
    padding-top: 34.5rem !important;
  }

  .pr-sm-69,
  .px-sm-69 {
    padding-right: 34.5rem !important;
  }

  .pb-sm-69,
  .py-sm-69 {
    padding-bottom: 34.5rem !important;
  }

  .pl-sm-69,
  .px-sm-69 {
    padding-left: 34.5rem !important;
  }

  .p-sm-70 {
    padding: 35rem !important;
  }

  .pt-sm-70,
  .py-sm-70 {
    padding-top: 35rem !important;
  }

  .pr-sm-70,
  .px-sm-70 {
    padding-right: 35rem !important;
  }

  .pb-sm-70,
  .py-sm-70 {
    padding-bottom: 35rem !important;
  }

  .pl-sm-70,
  .px-sm-70 {
    padding-left: 35rem !important;
  }

  .p-sm-71 {
    padding: 35.5rem !important;
  }

  .pt-sm-71,
  .py-sm-71 {
    padding-top: 35.5rem !important;
  }

  .pr-sm-71,
  .px-sm-71 {
    padding-right: 35.5rem !important;
  }

  .pb-sm-71,
  .py-sm-71 {
    padding-bottom: 35.5rem !important;
  }

  .pl-sm-71,
  .px-sm-71 {
    padding-left: 35.5rem !important;
  }

  .p-sm-72 {
    padding: 36rem !important;
  }

  .pt-sm-72,
  .py-sm-72 {
    padding-top: 36rem !important;
  }

  .pr-sm-72,
  .px-sm-72 {
    padding-right: 36rem !important;
  }

  .pb-sm-72,
  .py-sm-72 {
    padding-bottom: 36rem !important;
  }

  .pl-sm-72,
  .px-sm-72 {
    padding-left: 36rem !important;
  }

  .p-sm-73 {
    padding: 36.5rem !important;
  }

  .pt-sm-73,
  .py-sm-73 {
    padding-top: 36.5rem !important;
  }

  .pr-sm-73,
  .px-sm-73 {
    padding-right: 36.5rem !important;
  }

  .pb-sm-73,
  .py-sm-73 {
    padding-bottom: 36.5rem !important;
  }

  .pl-sm-73,
  .px-sm-73 {
    padding-left: 36.5rem !important;
  }

  .p-sm-74 {
    padding: 37rem !important;
  }

  .pt-sm-74,
  .py-sm-74 {
    padding-top: 37rem !important;
  }

  .pr-sm-74,
  .px-sm-74 {
    padding-right: 37rem !important;
  }

  .pb-sm-74,
  .py-sm-74 {
    padding-bottom: 37rem !important;
  }

  .pl-sm-74,
  .px-sm-74 {
    padding-left: 37rem !important;
  }

  .p-sm-75 {
    padding: 37.5rem !important;
  }

  .pt-sm-75,
  .py-sm-75 {
    padding-top: 37.5rem !important;
  }

  .pr-sm-75,
  .px-sm-75 {
    padding-right: 37.5rem !important;
  }

  .pb-sm-75,
  .py-sm-75 {
    padding-bottom: 37.5rem !important;
  }

  .pl-sm-75,
  .px-sm-75 {
    padding-left: 37.5rem !important;
  }

  .p-sm-76 {
    padding: 38rem !important;
  }

  .pt-sm-76,
  .py-sm-76 {
    padding-top: 38rem !important;
  }

  .pr-sm-76,
  .px-sm-76 {
    padding-right: 38rem !important;
  }

  .pb-sm-76,
  .py-sm-76 {
    padding-bottom: 38rem !important;
  }

  .pl-sm-76,
  .px-sm-76 {
    padding-left: 38rem !important;
  }

  .p-sm-77 {
    padding: 38.5rem !important;
  }

  .pt-sm-77,
  .py-sm-77 {
    padding-top: 38.5rem !important;
  }

  .pr-sm-77,
  .px-sm-77 {
    padding-right: 38.5rem !important;
  }

  .pb-sm-77,
  .py-sm-77 {
    padding-bottom: 38.5rem !important;
  }

  .pl-sm-77,
  .px-sm-77 {
    padding-left: 38.5rem !important;
  }

  .p-sm-78 {
    padding: 39rem !important;
  }

  .pt-sm-78,
  .py-sm-78 {
    padding-top: 39rem !important;
  }

  .pr-sm-78,
  .px-sm-78 {
    padding-right: 39rem !important;
  }

  .pb-sm-78,
  .py-sm-78 {
    padding-bottom: 39rem !important;
  }

  .pl-sm-78,
  .px-sm-78 {
    padding-left: 39rem !important;
  }

  .p-sm-79 {
    padding: 39.5rem !important;
  }

  .pt-sm-79,
  .py-sm-79 {
    padding-top: 39.5rem !important;
  }

  .pr-sm-79,
  .px-sm-79 {
    padding-right: 39.5rem !important;
  }

  .pb-sm-79,
  .py-sm-79 {
    padding-bottom: 39.5rem !important;
  }

  .pl-sm-79,
  .px-sm-79 {
    padding-left: 39.5rem !important;
  }

  .p-sm-80 {
    padding: 40rem !important;
  }

  .pt-sm-80,
  .py-sm-80 {
    padding-top: 40rem !important;
  }

  .pr-sm-80,
  .px-sm-80 {
    padding-right: 40rem !important;
  }

  .pb-sm-80,
  .py-sm-80 {
    padding-bottom: 40rem !important;
  }

  .pl-sm-80,
  .px-sm-80 {
    padding-left: 40rem !important;
  }

  .p-sm-81 {
    padding: 40.5rem !important;
  }

  .pt-sm-81,
  .py-sm-81 {
    padding-top: 40.5rem !important;
  }

  .pr-sm-81,
  .px-sm-81 {
    padding-right: 40.5rem !important;
  }

  .pb-sm-81,
  .py-sm-81 {
    padding-bottom: 40.5rem !important;
  }

  .pl-sm-81,
  .px-sm-81 {
    padding-left: 40.5rem !important;
  }

  .p-sm-82 {
    padding: 41rem !important;
  }

  .pt-sm-82,
  .py-sm-82 {
    padding-top: 41rem !important;
  }

  .pr-sm-82,
  .px-sm-82 {
    padding-right: 41rem !important;
  }

  .pb-sm-82,
  .py-sm-82 {
    padding-bottom: 41rem !important;
  }

  .pl-sm-82,
  .px-sm-82 {
    padding-left: 41rem !important;
  }

  .p-sm-83 {
    padding: 41.5rem !important;
  }

  .pt-sm-83,
  .py-sm-83 {
    padding-top: 41.5rem !important;
  }

  .pr-sm-83,
  .px-sm-83 {
    padding-right: 41.5rem !important;
  }

  .pb-sm-83,
  .py-sm-83 {
    padding-bottom: 41.5rem !important;
  }

  .pl-sm-83,
  .px-sm-83 {
    padding-left: 41.5rem !important;
  }

  .p-sm-84 {
    padding: 42rem !important;
  }

  .pt-sm-84,
  .py-sm-84 {
    padding-top: 42rem !important;
  }

  .pr-sm-84,
  .px-sm-84 {
    padding-right: 42rem !important;
  }

  .pb-sm-84,
  .py-sm-84 {
    padding-bottom: 42rem !important;
  }

  .pl-sm-84,
  .px-sm-84 {
    padding-left: 42rem !important;
  }

  .p-sm-85 {
    padding: 42.5rem !important;
  }

  .pt-sm-85,
  .py-sm-85 {
    padding-top: 42.5rem !important;
  }

  .pr-sm-85,
  .px-sm-85 {
    padding-right: 42.5rem !important;
  }

  .pb-sm-85,
  .py-sm-85 {
    padding-bottom: 42.5rem !important;
  }

  .pl-sm-85,
  .px-sm-85 {
    padding-left: 42.5rem !important;
  }

  .p-sm-86 {
    padding: 43rem !important;
  }

  .pt-sm-86,
  .py-sm-86 {
    padding-top: 43rem !important;
  }

  .pr-sm-86,
  .px-sm-86 {
    padding-right: 43rem !important;
  }

  .pb-sm-86,
  .py-sm-86 {
    padding-bottom: 43rem !important;
  }

  .pl-sm-86,
  .px-sm-86 {
    padding-left: 43rem !important;
  }

  .p-sm-87 {
    padding: 43.5rem !important;
  }

  .pt-sm-87,
  .py-sm-87 {
    padding-top: 43.5rem !important;
  }

  .pr-sm-87,
  .px-sm-87 {
    padding-right: 43.5rem !important;
  }

  .pb-sm-87,
  .py-sm-87 {
    padding-bottom: 43.5rem !important;
  }

  .pl-sm-87,
  .px-sm-87 {
    padding-left: 43.5rem !important;
  }

  .p-sm-88 {
    padding: 44rem !important;
  }

  .pt-sm-88,
  .py-sm-88 {
    padding-top: 44rem !important;
  }

  .pr-sm-88,
  .px-sm-88 {
    padding-right: 44rem !important;
  }

  .pb-sm-88,
  .py-sm-88 {
    padding-bottom: 44rem !important;
  }

  .pl-sm-88,
  .px-sm-88 {
    padding-left: 44rem !important;
  }

  .p-sm-89 {
    padding: 44.5rem !important;
  }

  .pt-sm-89,
  .py-sm-89 {
    padding-top: 44.5rem !important;
  }

  .pr-sm-89,
  .px-sm-89 {
    padding-right: 44.5rem !important;
  }

  .pb-sm-89,
  .py-sm-89 {
    padding-bottom: 44.5rem !important;
  }

  .pl-sm-89,
  .px-sm-89 {
    padding-left: 44.5rem !important;
  }

  .p-sm-90 {
    padding: 45rem !important;
  }

  .pt-sm-90,
  .py-sm-90 {
    padding-top: 45rem !important;
  }

  .pr-sm-90,
  .px-sm-90 {
    padding-right: 45rem !important;
  }

  .pb-sm-90,
  .py-sm-90 {
    padding-bottom: 45rem !important;
  }

  .pl-sm-90,
  .px-sm-90 {
    padding-left: 45rem !important;
  }

  .p-sm-91 {
    padding: 45.5rem !important;
  }

  .pt-sm-91,
  .py-sm-91 {
    padding-top: 45.5rem !important;
  }

  .pr-sm-91,
  .px-sm-91 {
    padding-right: 45.5rem !important;
  }

  .pb-sm-91,
  .py-sm-91 {
    padding-bottom: 45.5rem !important;
  }

  .pl-sm-91,
  .px-sm-91 {
    padding-left: 45.5rem !important;
  }

  .p-sm-92 {
    padding: 46rem !important;
  }

  .pt-sm-92,
  .py-sm-92 {
    padding-top: 46rem !important;
  }

  .pr-sm-92,
  .px-sm-92 {
    padding-right: 46rem !important;
  }

  .pb-sm-92,
  .py-sm-92 {
    padding-bottom: 46rem !important;
  }

  .pl-sm-92,
  .px-sm-92 {
    padding-left: 46rem !important;
  }

  .p-sm-93 {
    padding: 46.5rem !important;
  }

  .pt-sm-93,
  .py-sm-93 {
    padding-top: 46.5rem !important;
  }

  .pr-sm-93,
  .px-sm-93 {
    padding-right: 46.5rem !important;
  }

  .pb-sm-93,
  .py-sm-93 {
    padding-bottom: 46.5rem !important;
  }

  .pl-sm-93,
  .px-sm-93 {
    padding-left: 46.5rem !important;
  }

  .p-sm-94 {
    padding: 47rem !important;
  }

  .pt-sm-94,
  .py-sm-94 {
    padding-top: 47rem !important;
  }

  .pr-sm-94,
  .px-sm-94 {
    padding-right: 47rem !important;
  }

  .pb-sm-94,
  .py-sm-94 {
    padding-bottom: 47rem !important;
  }

  .pl-sm-94,
  .px-sm-94 {
    padding-left: 47rem !important;
  }

  .p-sm-95 {
    padding: 47.5rem !important;
  }

  .pt-sm-95,
  .py-sm-95 {
    padding-top: 47.5rem !important;
  }

  .pr-sm-95,
  .px-sm-95 {
    padding-right: 47.5rem !important;
  }

  .pb-sm-95,
  .py-sm-95 {
    padding-bottom: 47.5rem !important;
  }

  .pl-sm-95,
  .px-sm-95 {
    padding-left: 47.5rem !important;
  }

  .p-sm-96 {
    padding: 48rem !important;
  }

  .pt-sm-96,
  .py-sm-96 {
    padding-top: 48rem !important;
  }

  .pr-sm-96,
  .px-sm-96 {
    padding-right: 48rem !important;
  }

  .pb-sm-96,
  .py-sm-96 {
    padding-bottom: 48rem !important;
  }

  .pl-sm-96,
  .px-sm-96 {
    padding-left: 48rem !important;
  }

  .p-sm-97 {
    padding: 48.5rem !important;
  }

  .pt-sm-97,
  .py-sm-97 {
    padding-top: 48.5rem !important;
  }

  .pr-sm-97,
  .px-sm-97 {
    padding-right: 48.5rem !important;
  }

  .pb-sm-97,
  .py-sm-97 {
    padding-bottom: 48.5rem !important;
  }

  .pl-sm-97,
  .px-sm-97 {
    padding-left: 48.5rem !important;
  }

  .p-sm-98 {
    padding: 49rem !important;
  }

  .pt-sm-98,
  .py-sm-98 {
    padding-top: 49rem !important;
  }

  .pr-sm-98,
  .px-sm-98 {
    padding-right: 49rem !important;
  }

  .pb-sm-98,
  .py-sm-98 {
    padding-bottom: 49rem !important;
  }

  .pl-sm-98,
  .px-sm-98 {
    padding-left: 49rem !important;
  }

  .p-sm-99 {
    padding: 49.5rem !important;
  }

  .pt-sm-99,
  .py-sm-99 {
    padding-top: 49.5rem !important;
  }

  .pr-sm-99,
  .px-sm-99 {
    padding-right: 49.5rem !important;
  }

  .pb-sm-99,
  .py-sm-99 {
    padding-bottom: 49.5rem !important;
  }

  .pl-sm-99,
  .px-sm-99 {
    padding-left: 49.5rem !important;
  }

  .p-sm-100 {
    padding: 50rem !important;
  }

  .pt-sm-100,
  .py-sm-100 {
    padding-top: 50rem !important;
  }

  .pr-sm-100,
  .px-sm-100 {
    padding-right: 50rem !important;
  }

  .pb-sm-100,
  .py-sm-100 {
    padding-bottom: 50rem !important;
  }

  .pl-sm-100,
  .px-sm-100 {
    padding-left: 50rem !important;
  }

  .p-sm-101 {
    padding: 50.5rem !important;
  }

  .pt-sm-101,
  .py-sm-101 {
    padding-top: 50.5rem !important;
  }

  .pr-sm-101,
  .px-sm-101 {
    padding-right: 50.5rem !important;
  }

  .pb-sm-101,
  .py-sm-101 {
    padding-bottom: 50.5rem !important;
  }

  .pl-sm-101,
  .px-sm-101 {
    padding-left: 50.5rem !important;
  }

  .p-sm-102 {
    padding: 51rem !important;
  }

  .pt-sm-102,
  .py-sm-102 {
    padding-top: 51rem !important;
  }

  .pr-sm-102,
  .px-sm-102 {
    padding-right: 51rem !important;
  }

  .pb-sm-102,
  .py-sm-102 {
    padding-bottom: 51rem !important;
  }

  .pl-sm-102,
  .px-sm-102 {
    padding-left: 51rem !important;
  }

  .p-sm-103 {
    padding: 51.5rem !important;
  }

  .pt-sm-103,
  .py-sm-103 {
    padding-top: 51.5rem !important;
  }

  .pr-sm-103,
  .px-sm-103 {
    padding-right: 51.5rem !important;
  }

  .pb-sm-103,
  .py-sm-103 {
    padding-bottom: 51.5rem !important;
  }

  .pl-sm-103,
  .px-sm-103 {
    padding-left: 51.5rem !important;
  }

  .p-sm-104 {
    padding: 52rem !important;
  }

  .pt-sm-104,
  .py-sm-104 {
    padding-top: 52rem !important;
  }

  .pr-sm-104,
  .px-sm-104 {
    padding-right: 52rem !important;
  }

  .pb-sm-104,
  .py-sm-104 {
    padding-bottom: 52rem !important;
  }

  .pl-sm-104,
  .px-sm-104 {
    padding-left: 52rem !important;
  }

  .p-sm-105 {
    padding: 52.5rem !important;
  }

  .pt-sm-105,
  .py-sm-105 {
    padding-top: 52.5rem !important;
  }

  .pr-sm-105,
  .px-sm-105 {
    padding-right: 52.5rem !important;
  }

  .pb-sm-105,
  .py-sm-105 {
    padding-bottom: 52.5rem !important;
  }

  .pl-sm-105,
  .px-sm-105 {
    padding-left: 52.5rem !important;
  }

  .p-sm-106 {
    padding: 53rem !important;
  }

  .pt-sm-106,
  .py-sm-106 {
    padding-top: 53rem !important;
  }

  .pr-sm-106,
  .px-sm-106 {
    padding-right: 53rem !important;
  }

  .pb-sm-106,
  .py-sm-106 {
    padding-bottom: 53rem !important;
  }

  .pl-sm-106,
  .px-sm-106 {
    padding-left: 53rem !important;
  }

  .p-sm-107 {
    padding: 53.5rem !important;
  }

  .pt-sm-107,
  .py-sm-107 {
    padding-top: 53.5rem !important;
  }

  .pr-sm-107,
  .px-sm-107 {
    padding-right: 53.5rem !important;
  }

  .pb-sm-107,
  .py-sm-107 {
    padding-bottom: 53.5rem !important;
  }

  .pl-sm-107,
  .px-sm-107 {
    padding-left: 53.5rem !important;
  }

  .p-sm-108 {
    padding: 54rem !important;
  }

  .pt-sm-108,
  .py-sm-108 {
    padding-top: 54rem !important;
  }

  .pr-sm-108,
  .px-sm-108 {
    padding-right: 54rem !important;
  }

  .pb-sm-108,
  .py-sm-108 {
    padding-bottom: 54rem !important;
  }

  .pl-sm-108,
  .px-sm-108 {
    padding-left: 54rem !important;
  }

  .p-sm-109 {
    padding: 54.5rem !important;
  }

  .pt-sm-109,
  .py-sm-109 {
    padding-top: 54.5rem !important;
  }

  .pr-sm-109,
  .px-sm-109 {
    padding-right: 54.5rem !important;
  }

  .pb-sm-109,
  .py-sm-109 {
    padding-bottom: 54.5rem !important;
  }

  .pl-sm-109,
  .px-sm-109 {
    padding-left: 54.5rem !important;
  }

  .p-sm-110 {
    padding: 55rem !important;
  }

  .pt-sm-110,
  .py-sm-110 {
    padding-top: 55rem !important;
  }

  .pr-sm-110,
  .px-sm-110 {
    padding-right: 55rem !important;
  }

  .pb-sm-110,
  .py-sm-110 {
    padding-bottom: 55rem !important;
  }

  .pl-sm-110,
  .px-sm-110 {
    padding-left: 55rem !important;
  }

  .p-sm-111 {
    padding: 55.5rem !important;
  }

  .pt-sm-111,
  .py-sm-111 {
    padding-top: 55.5rem !important;
  }

  .pr-sm-111,
  .px-sm-111 {
    padding-right: 55.5rem !important;
  }

  .pb-sm-111,
  .py-sm-111 {
    padding-bottom: 55.5rem !important;
  }

  .pl-sm-111,
  .px-sm-111 {
    padding-left: 55.5rem !important;
  }

  .p-sm-112 {
    padding: 56rem !important;
  }

  .pt-sm-112,
  .py-sm-112 {
    padding-top: 56rem !important;
  }

  .pr-sm-112,
  .px-sm-112 {
    padding-right: 56rem !important;
  }

  .pb-sm-112,
  .py-sm-112 {
    padding-bottom: 56rem !important;
  }

  .pl-sm-112,
  .px-sm-112 {
    padding-left: 56rem !important;
  }

  .p-sm-113 {
    padding: 56.5rem !important;
  }

  .pt-sm-113,
  .py-sm-113 {
    padding-top: 56.5rem !important;
  }

  .pr-sm-113,
  .px-sm-113 {
    padding-right: 56.5rem !important;
  }

  .pb-sm-113,
  .py-sm-113 {
    padding-bottom: 56.5rem !important;
  }

  .pl-sm-113,
  .px-sm-113 {
    padding-left: 56.5rem !important;
  }

  .p-sm-114 {
    padding: 57rem !important;
  }

  .pt-sm-114,
  .py-sm-114 {
    padding-top: 57rem !important;
  }

  .pr-sm-114,
  .px-sm-114 {
    padding-right: 57rem !important;
  }

  .pb-sm-114,
  .py-sm-114 {
    padding-bottom: 57rem !important;
  }

  .pl-sm-114,
  .px-sm-114 {
    padding-left: 57rem !important;
  }

  .p-sm-115 {
    padding: 57.5rem !important;
  }

  .pt-sm-115,
  .py-sm-115 {
    padding-top: 57.5rem !important;
  }

  .pr-sm-115,
  .px-sm-115 {
    padding-right: 57.5rem !important;
  }

  .pb-sm-115,
  .py-sm-115 {
    padding-bottom: 57.5rem !important;
  }

  .pl-sm-115,
  .px-sm-115 {
    padding-left: 57.5rem !important;
  }

  .p-sm-116 {
    padding: 58rem !important;
  }

  .pt-sm-116,
  .py-sm-116 {
    padding-top: 58rem !important;
  }

  .pr-sm-116,
  .px-sm-116 {
    padding-right: 58rem !important;
  }

  .pb-sm-116,
  .py-sm-116 {
    padding-bottom: 58rem !important;
  }

  .pl-sm-116,
  .px-sm-116 {
    padding-left: 58rem !important;
  }

  .p-sm-117 {
    padding: 58.5rem !important;
  }

  .pt-sm-117,
  .py-sm-117 {
    padding-top: 58.5rem !important;
  }

  .pr-sm-117,
  .px-sm-117 {
    padding-right: 58.5rem !important;
  }

  .pb-sm-117,
  .py-sm-117 {
    padding-bottom: 58.5rem !important;
  }

  .pl-sm-117,
  .px-sm-117 {
    padding-left: 58.5rem !important;
  }

  .p-sm-118 {
    padding: 59rem !important;
  }

  .pt-sm-118,
  .py-sm-118 {
    padding-top: 59rem !important;
  }

  .pr-sm-118,
  .px-sm-118 {
    padding-right: 59rem !important;
  }

  .pb-sm-118,
  .py-sm-118 {
    padding-bottom: 59rem !important;
  }

  .pl-sm-118,
  .px-sm-118 {
    padding-left: 59rem !important;
  }

  .p-sm-119 {
    padding: 59.5rem !important;
  }

  .pt-sm-119,
  .py-sm-119 {
    padding-top: 59.5rem !important;
  }

  .pr-sm-119,
  .px-sm-119 {
    padding-right: 59.5rem !important;
  }

  .pb-sm-119,
  .py-sm-119 {
    padding-bottom: 59.5rem !important;
  }

  .pl-sm-119,
  .px-sm-119 {
    padding-left: 59.5rem !important;
  }

  .p-sm-120 {
    padding: 60rem !important;
  }

  .pt-sm-120,
  .py-sm-120 {
    padding-top: 60rem !important;
  }

  .pr-sm-120,
  .px-sm-120 {
    padding-right: 60rem !important;
  }

  .pb-sm-120,
  .py-sm-120 {
    padding-bottom: 60rem !important;
  }

  .pl-sm-120,
  .px-sm-120 {
    padding-left: 60rem !important;
  }

  .p-sm-121 {
    padding: 60.5rem !important;
  }

  .pt-sm-121,
  .py-sm-121 {
    padding-top: 60.5rem !important;
  }

  .pr-sm-121,
  .px-sm-121 {
    padding-right: 60.5rem !important;
  }

  .pb-sm-121,
  .py-sm-121 {
    padding-bottom: 60.5rem !important;
  }

  .pl-sm-121,
  .px-sm-121 {
    padding-left: 60.5rem !important;
  }

  .p-sm-122 {
    padding: 61rem !important;
  }

  .pt-sm-122,
  .py-sm-122 {
    padding-top: 61rem !important;
  }

  .pr-sm-122,
  .px-sm-122 {
    padding-right: 61rem !important;
  }

  .pb-sm-122,
  .py-sm-122 {
    padding-bottom: 61rem !important;
  }

  .pl-sm-122,
  .px-sm-122 {
    padding-left: 61rem !important;
  }

  .p-sm-123 {
    padding: 61.5rem !important;
  }

  .pt-sm-123,
  .py-sm-123 {
    padding-top: 61.5rem !important;
  }

  .pr-sm-123,
  .px-sm-123 {
    padding-right: 61.5rem !important;
  }

  .pb-sm-123,
  .py-sm-123 {
    padding-bottom: 61.5rem !important;
  }

  .pl-sm-123,
  .px-sm-123 {
    padding-left: 61.5rem !important;
  }

  .p-sm-124 {
    padding: 62rem !important;
  }

  .pt-sm-124,
  .py-sm-124 {
    padding-top: 62rem !important;
  }

  .pr-sm-124,
  .px-sm-124 {
    padding-right: 62rem !important;
  }

  .pb-sm-124,
  .py-sm-124 {
    padding-bottom: 62rem !important;
  }

  .pl-sm-124,
  .px-sm-124 {
    padding-left: 62rem !important;
  }

  .p-sm-125 {
    padding: 62.5rem !important;
  }

  .pt-sm-125,
  .py-sm-125 {
    padding-top: 62.5rem !important;
  }

  .pr-sm-125,
  .px-sm-125 {
    padding-right: 62.5rem !important;
  }

  .pb-sm-125,
  .py-sm-125 {
    padding-bottom: 62.5rem !important;
  }

  .pl-sm-125,
  .px-sm-125 {
    padding-left: 62.5rem !important;
  }

  .p-sm-126 {
    padding: 63rem !important;
  }

  .pt-sm-126,
  .py-sm-126 {
    padding-top: 63rem !important;
  }

  .pr-sm-126,
  .px-sm-126 {
    padding-right: 63rem !important;
  }

  .pb-sm-126,
  .py-sm-126 {
    padding-bottom: 63rem !important;
  }

  .pl-sm-126,
  .px-sm-126 {
    padding-left: 63rem !important;
  }

  .p-sm-127 {
    padding: 63.5rem !important;
  }

  .pt-sm-127,
  .py-sm-127 {
    padding-top: 63.5rem !important;
  }

  .pr-sm-127,
  .px-sm-127 {
    padding-right: 63.5rem !important;
  }

  .pb-sm-127,
  .py-sm-127 {
    padding-bottom: 63.5rem !important;
  }

  .pl-sm-127,
  .px-sm-127 {
    padding-left: 63.5rem !important;
  }

  .p-sm-128 {
    padding: 64rem !important;
  }

  .pt-sm-128,
  .py-sm-128 {
    padding-top: 64rem !important;
  }

  .pr-sm-128,
  .px-sm-128 {
    padding-right: 64rem !important;
  }

  .pb-sm-128,
  .py-sm-128 {
    padding-bottom: 64rem !important;
  }

  .pl-sm-128,
  .px-sm-128 {
    padding-left: 64rem !important;
  }

  .p-sm-129 {
    padding: 64.5rem !important;
  }

  .pt-sm-129,
  .py-sm-129 {
    padding-top: 64.5rem !important;
  }

  .pr-sm-129,
  .px-sm-129 {
    padding-right: 64.5rem !important;
  }

  .pb-sm-129,
  .py-sm-129 {
    padding-bottom: 64.5rem !important;
  }

  .pl-sm-129,
  .px-sm-129 {
    padding-left: 64.5rem !important;
  }

  .p-sm-130 {
    padding: 65rem !important;
  }

  .pt-sm-130,
  .py-sm-130 {
    padding-top: 65rem !important;
  }

  .pr-sm-130,
  .px-sm-130 {
    padding-right: 65rem !important;
  }

  .pb-sm-130,
  .py-sm-130 {
    padding-bottom: 65rem !important;
  }

  .pl-sm-130,
  .px-sm-130 {
    padding-left: 65rem !important;
  }

  .p-sm-131 {
    padding: 65.5rem !important;
  }

  .pt-sm-131,
  .py-sm-131 {
    padding-top: 65.5rem !important;
  }

  .pr-sm-131,
  .px-sm-131 {
    padding-right: 65.5rem !important;
  }

  .pb-sm-131,
  .py-sm-131 {
    padding-bottom: 65.5rem !important;
  }

  .pl-sm-131,
  .px-sm-131 {
    padding-left: 65.5rem !important;
  }

  .p-sm-132 {
    padding: 66rem !important;
  }

  .pt-sm-132,
  .py-sm-132 {
    padding-top: 66rem !important;
  }

  .pr-sm-132,
  .px-sm-132 {
    padding-right: 66rem !important;
  }

  .pb-sm-132,
  .py-sm-132 {
    padding-bottom: 66rem !important;
  }

  .pl-sm-132,
  .px-sm-132 {
    padding-left: 66rem !important;
  }

  .p-sm-133 {
    padding: 66.5rem !important;
  }

  .pt-sm-133,
  .py-sm-133 {
    padding-top: 66.5rem !important;
  }

  .pr-sm-133,
  .px-sm-133 {
    padding-right: 66.5rem !important;
  }

  .pb-sm-133,
  .py-sm-133 {
    padding-bottom: 66.5rem !important;
  }

  .pl-sm-133,
  .px-sm-133 {
    padding-left: 66.5rem !important;
  }

  .p-sm-134 {
    padding: 67rem !important;
  }

  .pt-sm-134,
  .py-sm-134 {
    padding-top: 67rem !important;
  }

  .pr-sm-134,
  .px-sm-134 {
    padding-right: 67rem !important;
  }

  .pb-sm-134,
  .py-sm-134 {
    padding-bottom: 67rem !important;
  }

  .pl-sm-134,
  .px-sm-134 {
    padding-left: 67rem !important;
  }

  .p-sm-135 {
    padding: 67.5rem !important;
  }

  .pt-sm-135,
  .py-sm-135 {
    padding-top: 67.5rem !important;
  }

  .pr-sm-135,
  .px-sm-135 {
    padding-right: 67.5rem !important;
  }

  .pb-sm-135,
  .py-sm-135 {
    padding-bottom: 67.5rem !important;
  }

  .pl-sm-135,
  .px-sm-135 {
    padding-left: 67.5rem !important;
  }

  .p-sm-136 {
    padding: 68rem !important;
  }

  .pt-sm-136,
  .py-sm-136 {
    padding-top: 68rem !important;
  }

  .pr-sm-136,
  .px-sm-136 {
    padding-right: 68rem !important;
  }

  .pb-sm-136,
  .py-sm-136 {
    padding-bottom: 68rem !important;
  }

  .pl-sm-136,
  .px-sm-136 {
    padding-left: 68rem !important;
  }

  .p-sm-137 {
    padding: 68.5rem !important;
  }

  .pt-sm-137,
  .py-sm-137 {
    padding-top: 68.5rem !important;
  }

  .pr-sm-137,
  .px-sm-137 {
    padding-right: 68.5rem !important;
  }

  .pb-sm-137,
  .py-sm-137 {
    padding-bottom: 68.5rem !important;
  }

  .pl-sm-137,
  .px-sm-137 {
    padding-left: 68.5rem !important;
  }

  .p-sm-138 {
    padding: 69rem !important;
  }

  .pt-sm-138,
  .py-sm-138 {
    padding-top: 69rem !important;
  }

  .pr-sm-138,
  .px-sm-138 {
    padding-right: 69rem !important;
  }

  .pb-sm-138,
  .py-sm-138 {
    padding-bottom: 69rem !important;
  }

  .pl-sm-138,
  .px-sm-138 {
    padding-left: 69rem !important;
  }

  .p-sm-139 {
    padding: 69.5rem !important;
  }

  .pt-sm-139,
  .py-sm-139 {
    padding-top: 69.5rem !important;
  }

  .pr-sm-139,
  .px-sm-139 {
    padding-right: 69.5rem !important;
  }

  .pb-sm-139,
  .py-sm-139 {
    padding-bottom: 69.5rem !important;
  }

  .pl-sm-139,
  .px-sm-139 {
    padding-left: 69.5rem !important;
  }

  .p-sm-140 {
    padding: 70rem !important;
  }

  .pt-sm-140,
  .py-sm-140 {
    padding-top: 70rem !important;
  }

  .pr-sm-140,
  .px-sm-140 {
    padding-right: 70rem !important;
  }

  .pb-sm-140,
  .py-sm-140 {
    padding-bottom: 70rem !important;
  }

  .pl-sm-140,
  .px-sm-140 {
    padding-left: 70rem !important;
  }

  .p-sm-141 {
    padding: 70.5rem !important;
  }

  .pt-sm-141,
  .py-sm-141 {
    padding-top: 70.5rem !important;
  }

  .pr-sm-141,
  .px-sm-141 {
    padding-right: 70.5rem !important;
  }

  .pb-sm-141,
  .py-sm-141 {
    padding-bottom: 70.5rem !important;
  }

  .pl-sm-141,
  .px-sm-141 {
    padding-left: 70.5rem !important;
  }

  .p-sm-142 {
    padding: 71rem !important;
  }

  .pt-sm-142,
  .py-sm-142 {
    padding-top: 71rem !important;
  }

  .pr-sm-142,
  .px-sm-142 {
    padding-right: 71rem !important;
  }

  .pb-sm-142,
  .py-sm-142 {
    padding-bottom: 71rem !important;
  }

  .pl-sm-142,
  .px-sm-142 {
    padding-left: 71rem !important;
  }

  .p-sm-143 {
    padding: 71.5rem !important;
  }

  .pt-sm-143,
  .py-sm-143 {
    padding-top: 71.5rem !important;
  }

  .pr-sm-143,
  .px-sm-143 {
    padding-right: 71.5rem !important;
  }

  .pb-sm-143,
  .py-sm-143 {
    padding-bottom: 71.5rem !important;
  }

  .pl-sm-143,
  .px-sm-143 {
    padding-left: 71.5rem !important;
  }

  .p-sm-144 {
    padding: 72rem !important;
  }

  .pt-sm-144,
  .py-sm-144 {
    padding-top: 72rem !important;
  }

  .pr-sm-144,
  .px-sm-144 {
    padding-right: 72rem !important;
  }

  .pb-sm-144,
  .py-sm-144 {
    padding-bottom: 72rem !important;
  }

  .pl-sm-144,
  .px-sm-144 {
    padding-left: 72rem !important;
  }

  .p-sm-145 {
    padding: 72.5rem !important;
  }

  .pt-sm-145,
  .py-sm-145 {
    padding-top: 72.5rem !important;
  }

  .pr-sm-145,
  .px-sm-145 {
    padding-right: 72.5rem !important;
  }

  .pb-sm-145,
  .py-sm-145 {
    padding-bottom: 72.5rem !important;
  }

  .pl-sm-145,
  .px-sm-145 {
    padding-left: 72.5rem !important;
  }

  .p-sm-146 {
    padding: 73rem !important;
  }

  .pt-sm-146,
  .py-sm-146 {
    padding-top: 73rem !important;
  }

  .pr-sm-146,
  .px-sm-146 {
    padding-right: 73rem !important;
  }

  .pb-sm-146,
  .py-sm-146 {
    padding-bottom: 73rem !important;
  }

  .pl-sm-146,
  .px-sm-146 {
    padding-left: 73rem !important;
  }

  .p-sm-147 {
    padding: 73.5rem !important;
  }

  .pt-sm-147,
  .py-sm-147 {
    padding-top: 73.5rem !important;
  }

  .pr-sm-147,
  .px-sm-147 {
    padding-right: 73.5rem !important;
  }

  .pb-sm-147,
  .py-sm-147 {
    padding-bottom: 73.5rem !important;
  }

  .pl-sm-147,
  .px-sm-147 {
    padding-left: 73.5rem !important;
  }

  .p-sm-148 {
    padding: 74rem !important;
  }

  .pt-sm-148,
  .py-sm-148 {
    padding-top: 74rem !important;
  }

  .pr-sm-148,
  .px-sm-148 {
    padding-right: 74rem !important;
  }

  .pb-sm-148,
  .py-sm-148 {
    padding-bottom: 74rem !important;
  }

  .pl-sm-148,
  .px-sm-148 {
    padding-left: 74rem !important;
  }

  .p-sm-149 {
    padding: 74.5rem !important;
  }

  .pt-sm-149,
  .py-sm-149 {
    padding-top: 74.5rem !important;
  }

  .pr-sm-149,
  .px-sm-149 {
    padding-right: 74.5rem !important;
  }

  .pb-sm-149,
  .py-sm-149 {
    padding-bottom: 74.5rem !important;
  }

  .pl-sm-149,
  .px-sm-149 {
    padding-left: 74.5rem !important;
  }

  .p-sm-150 {
    padding: 75rem !important;
  }

  .pt-sm-150,
  .py-sm-150 {
    padding-top: 75rem !important;
  }

  .pr-sm-150,
  .px-sm-150 {
    padding-right: 75rem !important;
  }

  .pb-sm-150,
  .py-sm-150 {
    padding-bottom: 75rem !important;
  }

  .pl-sm-150,
  .px-sm-150 {
    padding-left: 75rem !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.5rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.5rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.5rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.5rem !important;
  }

  .m-md-2 {
    margin: 1rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 1rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 1rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 1rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 1rem !important;
  }

  .m-md-3 {
    margin: 1.5rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1.5rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1.5rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1.5rem !important;
  }

  .m-md-4 {
    margin: 2rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 2rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 2rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 2rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 2rem !important;
  }

  .m-md-5 {
    margin: 2.5rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 2.5rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 2.5rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 2.5rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 2.5rem !important;
  }

  .m-md-6 {
    margin: 3rem !important;
  }

  .mt-md-6,
  .my-md-6 {
    margin-top: 3rem !important;
  }

  .mr-md-6,
  .mx-md-6 {
    margin-right: 3rem !important;
  }

  .mb-md-6,
  .my-md-6 {
    margin-bottom: 3rem !important;
  }

  .ml-md-6,
  .mx-md-6 {
    margin-left: 3rem !important;
  }

  .m-md-7 {
    margin: 3.5rem !important;
  }

  .mt-md-7,
  .my-md-7 {
    margin-top: 3.5rem !important;
  }

  .mr-md-7,
  .mx-md-7 {
    margin-right: 3.5rem !important;
  }

  .mb-md-7,
  .my-md-7 {
    margin-bottom: 3.5rem !important;
  }

  .ml-md-7,
  .mx-md-7 {
    margin-left: 3.5rem !important;
  }

  .m-md-8 {
    margin: 4rem !important;
  }

  .mt-md-8,
  .my-md-8 {
    margin-top: 4rem !important;
  }

  .mr-md-8,
  .mx-md-8 {
    margin-right: 4rem !important;
  }

  .mb-md-8,
  .my-md-8 {
    margin-bottom: 4rem !important;
  }

  .ml-md-8,
  .mx-md-8 {
    margin-left: 4rem !important;
  }

  .m-md-9 {
    margin: 4.5rem !important;
  }

  .mt-md-9,
  .my-md-9 {
    margin-top: 4.5rem !important;
  }

  .mr-md-9,
  .mx-md-9 {
    margin-right: 4.5rem !important;
  }

  .mb-md-9,
  .my-md-9 {
    margin-bottom: 4.5rem !important;
  }

  .ml-md-9,
  .mx-md-9 {
    margin-left: 4.5rem !important;
  }

  .m-md-10 {
    margin: 5rem !important;
  }

  .mt-md-10,
  .my-md-10 {
    margin-top: 5rem !important;
  }

  .mr-md-10,
  .mx-md-10 {
    margin-right: 5rem !important;
  }

  .mb-md-10,
  .my-md-10 {
    margin-bottom: 5rem !important;
  }

  .ml-md-10,
  .mx-md-10 {
    margin-left: 5rem !important;
  }

  .m-md-11 {
    margin: 5.5rem !important;
  }

  .mt-md-11,
  .my-md-11 {
    margin-top: 5.5rem !important;
  }

  .mr-md-11,
  .mx-md-11 {
    margin-right: 5.5rem !important;
  }

  .mb-md-11,
  .my-md-11 {
    margin-bottom: 5.5rem !important;
  }

  .ml-md-11,
  .mx-md-11 {
    margin-left: 5.5rem !important;
  }

  .m-md-12 {
    margin: 6rem !important;
  }

  .mt-md-12,
  .my-md-12 {
    margin-top: 6rem !important;
  }

  .mr-md-12,
  .mx-md-12 {
    margin-right: 6rem !important;
  }

  .mb-md-12,
  .my-md-12 {
    margin-bottom: 6rem !important;
  }

  .ml-md-12,
  .mx-md-12 {
    margin-left: 6rem !important;
  }

  .m-md-13 {
    margin: 6.5rem !important;
  }

  .mt-md-13,
  .my-md-13 {
    margin-top: 6.5rem !important;
  }

  .mr-md-13,
  .mx-md-13 {
    margin-right: 6.5rem !important;
  }

  .mb-md-13,
  .my-md-13 {
    margin-bottom: 6.5rem !important;
  }

  .ml-md-13,
  .mx-md-13 {
    margin-left: 6.5rem !important;
  }

  .m-md-14 {
    margin: 7rem !important;
  }

  .mt-md-14,
  .my-md-14 {
    margin-top: 7rem !important;
  }

  .mr-md-14,
  .mx-md-14 {
    margin-right: 7rem !important;
  }

  .mb-md-14,
  .my-md-14 {
    margin-bottom: 7rem !important;
  }

  .ml-md-14,
  .mx-md-14 {
    margin-left: 7rem !important;
  }

  .m-md-15 {
    margin: 7.5rem !important;
  }

  .mt-md-15,
  .my-md-15 {
    margin-top: 7.5rem !important;
  }

  .mr-md-15,
  .mx-md-15 {
    margin-right: 7.5rem !important;
  }

  .mb-md-15,
  .my-md-15 {
    margin-bottom: 7.5rem !important;
  }

  .ml-md-15,
  .mx-md-15 {
    margin-left: 7.5rem !important;
  }

  .m-md-16 {
    margin: 8rem !important;
  }

  .mt-md-16,
  .my-md-16 {
    margin-top: 8rem !important;
  }

  .mr-md-16,
  .mx-md-16 {
    margin-right: 8rem !important;
  }

  .mb-md-16,
  .my-md-16 {
    margin-bottom: 8rem !important;
  }

  .ml-md-16,
  .mx-md-16 {
    margin-left: 8rem !important;
  }

  .m-md-17 {
    margin: 8.5rem !important;
  }

  .mt-md-17,
  .my-md-17 {
    margin-top: 8.5rem !important;
  }

  .mr-md-17,
  .mx-md-17 {
    margin-right: 8.5rem !important;
  }

  .mb-md-17,
  .my-md-17 {
    margin-bottom: 8.5rem !important;
  }

  .ml-md-17,
  .mx-md-17 {
    margin-left: 8.5rem !important;
  }

  .m-md-18 {
    margin: 9rem !important;
  }

  .mt-md-18,
  .my-md-18 {
    margin-top: 9rem !important;
  }

  .mr-md-18,
  .mx-md-18 {
    margin-right: 9rem !important;
  }

  .mb-md-18,
  .my-md-18 {
    margin-bottom: 9rem !important;
  }

  .ml-md-18,
  .mx-md-18 {
    margin-left: 9rem !important;
  }

  .m-md-19 {
    margin: 9.5rem !important;
  }

  .mt-md-19,
  .my-md-19 {
    margin-top: 9.5rem !important;
  }

  .mr-md-19,
  .mx-md-19 {
    margin-right: 9.5rem !important;
  }

  .mb-md-19,
  .my-md-19 {
    margin-bottom: 9.5rem !important;
  }

  .ml-md-19,
  .mx-md-19 {
    margin-left: 9.5rem !important;
  }

  .m-md-20 {
    margin: 10rem !important;
  }

  .mt-md-20,
  .my-md-20 {
    margin-top: 10rem !important;
  }

  .mr-md-20,
  .mx-md-20 {
    margin-right: 10rem !important;
  }

  .mb-md-20,
  .my-md-20 {
    margin-bottom: 10rem !important;
  }

  .ml-md-20,
  .mx-md-20 {
    margin-left: 10rem !important;
  }

  .m-md-21 {
    margin: 10.5rem !important;
  }

  .mt-md-21,
  .my-md-21 {
    margin-top: 10.5rem !important;
  }

  .mr-md-21,
  .mx-md-21 {
    margin-right: 10.5rem !important;
  }

  .mb-md-21,
  .my-md-21 {
    margin-bottom: 10.5rem !important;
  }

  .ml-md-21,
  .mx-md-21 {
    margin-left: 10.5rem !important;
  }

  .m-md-22 {
    margin: 11rem !important;
  }

  .mt-md-22,
  .my-md-22 {
    margin-top: 11rem !important;
  }

  .mr-md-22,
  .mx-md-22 {
    margin-right: 11rem !important;
  }

  .mb-md-22,
  .my-md-22 {
    margin-bottom: 11rem !important;
  }

  .ml-md-22,
  .mx-md-22 {
    margin-left: 11rem !important;
  }

  .m-md-23 {
    margin: 11.5rem !important;
  }

  .mt-md-23,
  .my-md-23 {
    margin-top: 11.5rem !important;
  }

  .mr-md-23,
  .mx-md-23 {
    margin-right: 11.5rem !important;
  }

  .mb-md-23,
  .my-md-23 {
    margin-bottom: 11.5rem !important;
  }

  .ml-md-23,
  .mx-md-23 {
    margin-left: 11.5rem !important;
  }

  .m-md-24 {
    margin: 12rem !important;
  }

  .mt-md-24,
  .my-md-24 {
    margin-top: 12rem !important;
  }

  .mr-md-24,
  .mx-md-24 {
    margin-right: 12rem !important;
  }

  .mb-md-24,
  .my-md-24 {
    margin-bottom: 12rem !important;
  }

  .ml-md-24,
  .mx-md-24 {
    margin-left: 12rem !important;
  }

  .m-md-25 {
    margin: 12.5rem !important;
  }

  .mt-md-25,
  .my-md-25 {
    margin-top: 12.5rem !important;
  }

  .mr-md-25,
  .mx-md-25 {
    margin-right: 12.5rem !important;
  }

  .mb-md-25,
  .my-md-25 {
    margin-bottom: 12.5rem !important;
  }

  .ml-md-25,
  .mx-md-25 {
    margin-left: 12.5rem !important;
  }

  .m-md-26 {
    margin: 13rem !important;
  }

  .mt-md-26,
  .my-md-26 {
    margin-top: 13rem !important;
  }

  .mr-md-26,
  .mx-md-26 {
    margin-right: 13rem !important;
  }

  .mb-md-26,
  .my-md-26 {
    margin-bottom: 13rem !important;
  }

  .ml-md-26,
  .mx-md-26 {
    margin-left: 13rem !important;
  }

  .m-md-27 {
    margin: 13.5rem !important;
  }

  .mt-md-27,
  .my-md-27 {
    margin-top: 13.5rem !important;
  }

  .mr-md-27,
  .mx-md-27 {
    margin-right: 13.5rem !important;
  }

  .mb-md-27,
  .my-md-27 {
    margin-bottom: 13.5rem !important;
  }

  .ml-md-27,
  .mx-md-27 {
    margin-left: 13.5rem !important;
  }

  .m-md-28 {
    margin: 14rem !important;
  }

  .mt-md-28,
  .my-md-28 {
    margin-top: 14rem !important;
  }

  .mr-md-28,
  .mx-md-28 {
    margin-right: 14rem !important;
  }

  .mb-md-28,
  .my-md-28 {
    margin-bottom: 14rem !important;
  }

  .ml-md-28,
  .mx-md-28 {
    margin-left: 14rem !important;
  }

  .m-md-29 {
    margin: 14.5rem !important;
  }

  .mt-md-29,
  .my-md-29 {
    margin-top: 14.5rem !important;
  }

  .mr-md-29,
  .mx-md-29 {
    margin-right: 14.5rem !important;
  }

  .mb-md-29,
  .my-md-29 {
    margin-bottom: 14.5rem !important;
  }

  .ml-md-29,
  .mx-md-29 {
    margin-left: 14.5rem !important;
  }

  .m-md-30 {
    margin: 15rem !important;
  }

  .mt-md-30,
  .my-md-30 {
    margin-top: 15rem !important;
  }

  .mr-md-30,
  .mx-md-30 {
    margin-right: 15rem !important;
  }

  .mb-md-30,
  .my-md-30 {
    margin-bottom: 15rem !important;
  }

  .ml-md-30,
  .mx-md-30 {
    margin-left: 15rem !important;
  }

  .m-md-31 {
    margin: 15.5rem !important;
  }

  .mt-md-31,
  .my-md-31 {
    margin-top: 15.5rem !important;
  }

  .mr-md-31,
  .mx-md-31 {
    margin-right: 15.5rem !important;
  }

  .mb-md-31,
  .my-md-31 {
    margin-bottom: 15.5rem !important;
  }

  .ml-md-31,
  .mx-md-31 {
    margin-left: 15.5rem !important;
  }

  .m-md-32 {
    margin: 16rem !important;
  }

  .mt-md-32,
  .my-md-32 {
    margin-top: 16rem !important;
  }

  .mr-md-32,
  .mx-md-32 {
    margin-right: 16rem !important;
  }

  .mb-md-32,
  .my-md-32 {
    margin-bottom: 16rem !important;
  }

  .ml-md-32,
  .mx-md-32 {
    margin-left: 16rem !important;
  }

  .m-md-33 {
    margin: 16.5rem !important;
  }

  .mt-md-33,
  .my-md-33 {
    margin-top: 16.5rem !important;
  }

  .mr-md-33,
  .mx-md-33 {
    margin-right: 16.5rem !important;
  }

  .mb-md-33,
  .my-md-33 {
    margin-bottom: 16.5rem !important;
  }

  .ml-md-33,
  .mx-md-33 {
    margin-left: 16.5rem !important;
  }

  .m-md-34 {
    margin: 17rem !important;
  }

  .mt-md-34,
  .my-md-34 {
    margin-top: 17rem !important;
  }

  .mr-md-34,
  .mx-md-34 {
    margin-right: 17rem !important;
  }

  .mb-md-34,
  .my-md-34 {
    margin-bottom: 17rem !important;
  }

  .ml-md-34,
  .mx-md-34 {
    margin-left: 17rem !important;
  }

  .m-md-35 {
    margin: 17.5rem !important;
  }

  .mt-md-35,
  .my-md-35 {
    margin-top: 17.5rem !important;
  }

  .mr-md-35,
  .mx-md-35 {
    margin-right: 17.5rem !important;
  }

  .mb-md-35,
  .my-md-35 {
    margin-bottom: 17.5rem !important;
  }

  .ml-md-35,
  .mx-md-35 {
    margin-left: 17.5rem !important;
  }

  .m-md-36 {
    margin: 18rem !important;
  }

  .mt-md-36,
  .my-md-36 {
    margin-top: 18rem !important;
  }

  .mr-md-36,
  .mx-md-36 {
    margin-right: 18rem !important;
  }

  .mb-md-36,
  .my-md-36 {
    margin-bottom: 18rem !important;
  }

  .ml-md-36,
  .mx-md-36 {
    margin-left: 18rem !important;
  }

  .m-md-37 {
    margin: 18.5rem !important;
  }

  .mt-md-37,
  .my-md-37 {
    margin-top: 18.5rem !important;
  }

  .mr-md-37,
  .mx-md-37 {
    margin-right: 18.5rem !important;
  }

  .mb-md-37,
  .my-md-37 {
    margin-bottom: 18.5rem !important;
  }

  .ml-md-37,
  .mx-md-37 {
    margin-left: 18.5rem !important;
  }

  .m-md-38 {
    margin: 19rem !important;
  }

  .mt-md-38,
  .my-md-38 {
    margin-top: 19rem !important;
  }

  .mr-md-38,
  .mx-md-38 {
    margin-right: 19rem !important;
  }

  .mb-md-38,
  .my-md-38 {
    margin-bottom: 19rem !important;
  }

  .ml-md-38,
  .mx-md-38 {
    margin-left: 19rem !important;
  }

  .m-md-39 {
    margin: 19.5rem !important;
  }

  .mt-md-39,
  .my-md-39 {
    margin-top: 19.5rem !important;
  }

  .mr-md-39,
  .mx-md-39 {
    margin-right: 19.5rem !important;
  }

  .mb-md-39,
  .my-md-39 {
    margin-bottom: 19.5rem !important;
  }

  .ml-md-39,
  .mx-md-39 {
    margin-left: 19.5rem !important;
  }

  .m-md-40 {
    margin: 20rem !important;
  }

  .mt-md-40,
  .my-md-40 {
    margin-top: 20rem !important;
  }

  .mr-md-40,
  .mx-md-40 {
    margin-right: 20rem !important;
  }

  .mb-md-40,
  .my-md-40 {
    margin-bottom: 20rem !important;
  }

  .ml-md-40,
  .mx-md-40 {
    margin-left: 20rem !important;
  }

  .m-md-41 {
    margin: 20.5rem !important;
  }

  .mt-md-41,
  .my-md-41 {
    margin-top: 20.5rem !important;
  }

  .mr-md-41,
  .mx-md-41 {
    margin-right: 20.5rem !important;
  }

  .mb-md-41,
  .my-md-41 {
    margin-bottom: 20.5rem !important;
  }

  .ml-md-41,
  .mx-md-41 {
    margin-left: 20.5rem !important;
  }

  .m-md-42 {
    margin: 21rem !important;
  }

  .mt-md-42,
  .my-md-42 {
    margin-top: 21rem !important;
  }

  .mr-md-42,
  .mx-md-42 {
    margin-right: 21rem !important;
  }

  .mb-md-42,
  .my-md-42 {
    margin-bottom: 21rem !important;
  }

  .ml-md-42,
  .mx-md-42 {
    margin-left: 21rem !important;
  }

  .m-md-43 {
    margin: 21.5rem !important;
  }

  .mt-md-43,
  .my-md-43 {
    margin-top: 21.5rem !important;
  }

  .mr-md-43,
  .mx-md-43 {
    margin-right: 21.5rem !important;
  }

  .mb-md-43,
  .my-md-43 {
    margin-bottom: 21.5rem !important;
  }

  .ml-md-43,
  .mx-md-43 {
    margin-left: 21.5rem !important;
  }

  .m-md-44 {
    margin: 22rem !important;
  }

  .mt-md-44,
  .my-md-44 {
    margin-top: 22rem !important;
  }

  .mr-md-44,
  .mx-md-44 {
    margin-right: 22rem !important;
  }

  .mb-md-44,
  .my-md-44 {
    margin-bottom: 22rem !important;
  }

  .ml-md-44,
  .mx-md-44 {
    margin-left: 22rem !important;
  }

  .m-md-45 {
    margin: 22.5rem !important;
  }

  .mt-md-45,
  .my-md-45 {
    margin-top: 22.5rem !important;
  }

  .mr-md-45,
  .mx-md-45 {
    margin-right: 22.5rem !important;
  }

  .mb-md-45,
  .my-md-45 {
    margin-bottom: 22.5rem !important;
  }

  .ml-md-45,
  .mx-md-45 {
    margin-left: 22.5rem !important;
  }

  .m-md-46 {
    margin: 23rem !important;
  }

  .mt-md-46,
  .my-md-46 {
    margin-top: 23rem !important;
  }

  .mr-md-46,
  .mx-md-46 {
    margin-right: 23rem !important;
  }

  .mb-md-46,
  .my-md-46 {
    margin-bottom: 23rem !important;
  }

  .ml-md-46,
  .mx-md-46 {
    margin-left: 23rem !important;
  }

  .m-md-47 {
    margin: 23.5rem !important;
  }

  .mt-md-47,
  .my-md-47 {
    margin-top: 23.5rem !important;
  }

  .mr-md-47,
  .mx-md-47 {
    margin-right: 23.5rem !important;
  }

  .mb-md-47,
  .my-md-47 {
    margin-bottom: 23.5rem !important;
  }

  .ml-md-47,
  .mx-md-47 {
    margin-left: 23.5rem !important;
  }

  .m-md-48 {
    margin: 24rem !important;
  }

  .mt-md-48,
  .my-md-48 {
    margin-top: 24rem !important;
  }

  .mr-md-48,
  .mx-md-48 {
    margin-right: 24rem !important;
  }

  .mb-md-48,
  .my-md-48 {
    margin-bottom: 24rem !important;
  }

  .ml-md-48,
  .mx-md-48 {
    margin-left: 24rem !important;
  }

  .m-md-49 {
    margin: 24.5rem !important;
  }

  .mt-md-49,
  .my-md-49 {
    margin-top: 24.5rem !important;
  }

  .mr-md-49,
  .mx-md-49 {
    margin-right: 24.5rem !important;
  }

  .mb-md-49,
  .my-md-49 {
    margin-bottom: 24.5rem !important;
  }

  .ml-md-49,
  .mx-md-49 {
    margin-left: 24.5rem !important;
  }

  .m-md-50 {
    margin: 25rem !important;
  }

  .mt-md-50,
  .my-md-50 {
    margin-top: 25rem !important;
  }

  .mr-md-50,
  .mx-md-50 {
    margin-right: 25rem !important;
  }

  .mb-md-50,
  .my-md-50 {
    margin-bottom: 25rem !important;
  }

  .ml-md-50,
  .mx-md-50 {
    margin-left: 25rem !important;
  }

  .m-md-51 {
    margin: 25.5rem !important;
  }

  .mt-md-51,
  .my-md-51 {
    margin-top: 25.5rem !important;
  }

  .mr-md-51,
  .mx-md-51 {
    margin-right: 25.5rem !important;
  }

  .mb-md-51,
  .my-md-51 {
    margin-bottom: 25.5rem !important;
  }

  .ml-md-51,
  .mx-md-51 {
    margin-left: 25.5rem !important;
  }

  .m-md-52 {
    margin: 26rem !important;
  }

  .mt-md-52,
  .my-md-52 {
    margin-top: 26rem !important;
  }

  .mr-md-52,
  .mx-md-52 {
    margin-right: 26rem !important;
  }

  .mb-md-52,
  .my-md-52 {
    margin-bottom: 26rem !important;
  }

  .ml-md-52,
  .mx-md-52 {
    margin-left: 26rem !important;
  }

  .m-md-53 {
    margin: 26.5rem !important;
  }

  .mt-md-53,
  .my-md-53 {
    margin-top: 26.5rem !important;
  }

  .mr-md-53,
  .mx-md-53 {
    margin-right: 26.5rem !important;
  }

  .mb-md-53,
  .my-md-53 {
    margin-bottom: 26.5rem !important;
  }

  .ml-md-53,
  .mx-md-53 {
    margin-left: 26.5rem !important;
  }

  .m-md-54 {
    margin: 27rem !important;
  }

  .mt-md-54,
  .my-md-54 {
    margin-top: 27rem !important;
  }

  .mr-md-54,
  .mx-md-54 {
    margin-right: 27rem !important;
  }

  .mb-md-54,
  .my-md-54 {
    margin-bottom: 27rem !important;
  }

  .ml-md-54,
  .mx-md-54 {
    margin-left: 27rem !important;
  }

  .m-md-55 {
    margin: 27.5rem !important;
  }

  .mt-md-55,
  .my-md-55 {
    margin-top: 27.5rem !important;
  }

  .mr-md-55,
  .mx-md-55 {
    margin-right: 27.5rem !important;
  }

  .mb-md-55,
  .my-md-55 {
    margin-bottom: 27.5rem !important;
  }

  .ml-md-55,
  .mx-md-55 {
    margin-left: 27.5rem !important;
  }

  .m-md-56 {
    margin: 28rem !important;
  }

  .mt-md-56,
  .my-md-56 {
    margin-top: 28rem !important;
  }

  .mr-md-56,
  .mx-md-56 {
    margin-right: 28rem !important;
  }

  .mb-md-56,
  .my-md-56 {
    margin-bottom: 28rem !important;
  }

  .ml-md-56,
  .mx-md-56 {
    margin-left: 28rem !important;
  }

  .m-md-57 {
    margin: 28.5rem !important;
  }

  .mt-md-57,
  .my-md-57 {
    margin-top: 28.5rem !important;
  }

  .mr-md-57,
  .mx-md-57 {
    margin-right: 28.5rem !important;
  }

  .mb-md-57,
  .my-md-57 {
    margin-bottom: 28.5rem !important;
  }

  .ml-md-57,
  .mx-md-57 {
    margin-left: 28.5rem !important;
  }

  .m-md-58 {
    margin: 29rem !important;
  }

  .mt-md-58,
  .my-md-58 {
    margin-top: 29rem !important;
  }

  .mr-md-58,
  .mx-md-58 {
    margin-right: 29rem !important;
  }

  .mb-md-58,
  .my-md-58 {
    margin-bottom: 29rem !important;
  }

  .ml-md-58,
  .mx-md-58 {
    margin-left: 29rem !important;
  }

  .m-md-59 {
    margin: 29.5rem !important;
  }

  .mt-md-59,
  .my-md-59 {
    margin-top: 29.5rem !important;
  }

  .mr-md-59,
  .mx-md-59 {
    margin-right: 29.5rem !important;
  }

  .mb-md-59,
  .my-md-59 {
    margin-bottom: 29.5rem !important;
  }

  .ml-md-59,
  .mx-md-59 {
    margin-left: 29.5rem !important;
  }

  .m-md-60 {
    margin: 30rem !important;
  }

  .mt-md-60,
  .my-md-60 {
    margin-top: 30rem !important;
  }

  .mr-md-60,
  .mx-md-60 {
    margin-right: 30rem !important;
  }

  .mb-md-60,
  .my-md-60 {
    margin-bottom: 30rem !important;
  }

  .ml-md-60,
  .mx-md-60 {
    margin-left: 30rem !important;
  }

  .m-md-61 {
    margin: 30.5rem !important;
  }

  .mt-md-61,
  .my-md-61 {
    margin-top: 30.5rem !important;
  }

  .mr-md-61,
  .mx-md-61 {
    margin-right: 30.5rem !important;
  }

  .mb-md-61,
  .my-md-61 {
    margin-bottom: 30.5rem !important;
  }

  .ml-md-61,
  .mx-md-61 {
    margin-left: 30.5rem !important;
  }

  .m-md-62 {
    margin: 31rem !important;
  }

  .mt-md-62,
  .my-md-62 {
    margin-top: 31rem !important;
  }

  .mr-md-62,
  .mx-md-62 {
    margin-right: 31rem !important;
  }

  .mb-md-62,
  .my-md-62 {
    margin-bottom: 31rem !important;
  }

  .ml-md-62,
  .mx-md-62 {
    margin-left: 31rem !important;
  }

  .m-md-63 {
    margin: 31.5rem !important;
  }

  .mt-md-63,
  .my-md-63 {
    margin-top: 31.5rem !important;
  }

  .mr-md-63,
  .mx-md-63 {
    margin-right: 31.5rem !important;
  }

  .mb-md-63,
  .my-md-63 {
    margin-bottom: 31.5rem !important;
  }

  .ml-md-63,
  .mx-md-63 {
    margin-left: 31.5rem !important;
  }

  .m-md-64 {
    margin: 32rem !important;
  }

  .mt-md-64,
  .my-md-64 {
    margin-top: 32rem !important;
  }

  .mr-md-64,
  .mx-md-64 {
    margin-right: 32rem !important;
  }

  .mb-md-64,
  .my-md-64 {
    margin-bottom: 32rem !important;
  }

  .ml-md-64,
  .mx-md-64 {
    margin-left: 32rem !important;
  }

  .m-md-65 {
    margin: 32.5rem !important;
  }

  .mt-md-65,
  .my-md-65 {
    margin-top: 32.5rem !important;
  }

  .mr-md-65,
  .mx-md-65 {
    margin-right: 32.5rem !important;
  }

  .mb-md-65,
  .my-md-65 {
    margin-bottom: 32.5rem !important;
  }

  .ml-md-65,
  .mx-md-65 {
    margin-left: 32.5rem !important;
  }

  .m-md-66 {
    margin: 33rem !important;
  }

  .mt-md-66,
  .my-md-66 {
    margin-top: 33rem !important;
  }

  .mr-md-66,
  .mx-md-66 {
    margin-right: 33rem !important;
  }

  .mb-md-66,
  .my-md-66 {
    margin-bottom: 33rem !important;
  }

  .ml-md-66,
  .mx-md-66 {
    margin-left: 33rem !important;
  }

  .m-md-67 {
    margin: 33.5rem !important;
  }

  .mt-md-67,
  .my-md-67 {
    margin-top: 33.5rem !important;
  }

  .mr-md-67,
  .mx-md-67 {
    margin-right: 33.5rem !important;
  }

  .mb-md-67,
  .my-md-67 {
    margin-bottom: 33.5rem !important;
  }

  .ml-md-67,
  .mx-md-67 {
    margin-left: 33.5rem !important;
  }

  .m-md-68 {
    margin: 34rem !important;
  }

  .mt-md-68,
  .my-md-68 {
    margin-top: 34rem !important;
  }

  .mr-md-68,
  .mx-md-68 {
    margin-right: 34rem !important;
  }

  .mb-md-68,
  .my-md-68 {
    margin-bottom: 34rem !important;
  }

  .ml-md-68,
  .mx-md-68 {
    margin-left: 34rem !important;
  }

  .m-md-69 {
    margin: 34.5rem !important;
  }

  .mt-md-69,
  .my-md-69 {
    margin-top: 34.5rem !important;
  }

  .mr-md-69,
  .mx-md-69 {
    margin-right: 34.5rem !important;
  }

  .mb-md-69,
  .my-md-69 {
    margin-bottom: 34.5rem !important;
  }

  .ml-md-69,
  .mx-md-69 {
    margin-left: 34.5rem !important;
  }

  .m-md-70 {
    margin: 35rem !important;
  }

  .mt-md-70,
  .my-md-70 {
    margin-top: 35rem !important;
  }

  .mr-md-70,
  .mx-md-70 {
    margin-right: 35rem !important;
  }

  .mb-md-70,
  .my-md-70 {
    margin-bottom: 35rem !important;
  }

  .ml-md-70,
  .mx-md-70 {
    margin-left: 35rem !important;
  }

  .m-md-71 {
    margin: 35.5rem !important;
  }

  .mt-md-71,
  .my-md-71 {
    margin-top: 35.5rem !important;
  }

  .mr-md-71,
  .mx-md-71 {
    margin-right: 35.5rem !important;
  }

  .mb-md-71,
  .my-md-71 {
    margin-bottom: 35.5rem !important;
  }

  .ml-md-71,
  .mx-md-71 {
    margin-left: 35.5rem !important;
  }

  .m-md-72 {
    margin: 36rem !important;
  }

  .mt-md-72,
  .my-md-72 {
    margin-top: 36rem !important;
  }

  .mr-md-72,
  .mx-md-72 {
    margin-right: 36rem !important;
  }

  .mb-md-72,
  .my-md-72 {
    margin-bottom: 36rem !important;
  }

  .ml-md-72,
  .mx-md-72 {
    margin-left: 36rem !important;
  }

  .m-md-73 {
    margin: 36.5rem !important;
  }

  .mt-md-73,
  .my-md-73 {
    margin-top: 36.5rem !important;
  }

  .mr-md-73,
  .mx-md-73 {
    margin-right: 36.5rem !important;
  }

  .mb-md-73,
  .my-md-73 {
    margin-bottom: 36.5rem !important;
  }

  .ml-md-73,
  .mx-md-73 {
    margin-left: 36.5rem !important;
  }

  .m-md-74 {
    margin: 37rem !important;
  }

  .mt-md-74,
  .my-md-74 {
    margin-top: 37rem !important;
  }

  .mr-md-74,
  .mx-md-74 {
    margin-right: 37rem !important;
  }

  .mb-md-74,
  .my-md-74 {
    margin-bottom: 37rem !important;
  }

  .ml-md-74,
  .mx-md-74 {
    margin-left: 37rem !important;
  }

  .m-md-75 {
    margin: 37.5rem !important;
  }

  .mt-md-75,
  .my-md-75 {
    margin-top: 37.5rem !important;
  }

  .mr-md-75,
  .mx-md-75 {
    margin-right: 37.5rem !important;
  }

  .mb-md-75,
  .my-md-75 {
    margin-bottom: 37.5rem !important;
  }

  .ml-md-75,
  .mx-md-75 {
    margin-left: 37.5rem !important;
  }

  .m-md-76 {
    margin: 38rem !important;
  }

  .mt-md-76,
  .my-md-76 {
    margin-top: 38rem !important;
  }

  .mr-md-76,
  .mx-md-76 {
    margin-right: 38rem !important;
  }

  .mb-md-76,
  .my-md-76 {
    margin-bottom: 38rem !important;
  }

  .ml-md-76,
  .mx-md-76 {
    margin-left: 38rem !important;
  }

  .m-md-77 {
    margin: 38.5rem !important;
  }

  .mt-md-77,
  .my-md-77 {
    margin-top: 38.5rem !important;
  }

  .mr-md-77,
  .mx-md-77 {
    margin-right: 38.5rem !important;
  }

  .mb-md-77,
  .my-md-77 {
    margin-bottom: 38.5rem !important;
  }

  .ml-md-77,
  .mx-md-77 {
    margin-left: 38.5rem !important;
  }

  .m-md-78 {
    margin: 39rem !important;
  }

  .mt-md-78,
  .my-md-78 {
    margin-top: 39rem !important;
  }

  .mr-md-78,
  .mx-md-78 {
    margin-right: 39rem !important;
  }

  .mb-md-78,
  .my-md-78 {
    margin-bottom: 39rem !important;
  }

  .ml-md-78,
  .mx-md-78 {
    margin-left: 39rem !important;
  }

  .m-md-79 {
    margin: 39.5rem !important;
  }

  .mt-md-79,
  .my-md-79 {
    margin-top: 39.5rem !important;
  }

  .mr-md-79,
  .mx-md-79 {
    margin-right: 39.5rem !important;
  }

  .mb-md-79,
  .my-md-79 {
    margin-bottom: 39.5rem !important;
  }

  .ml-md-79,
  .mx-md-79 {
    margin-left: 39.5rem !important;
  }

  .m-md-80 {
    margin: 40rem !important;
  }

  .mt-md-80,
  .my-md-80 {
    margin-top: 40rem !important;
  }

  .mr-md-80,
  .mx-md-80 {
    margin-right: 40rem !important;
  }

  .mb-md-80,
  .my-md-80 {
    margin-bottom: 40rem !important;
  }

  .ml-md-80,
  .mx-md-80 {
    margin-left: 40rem !important;
  }

  .m-md-81 {
    margin: 40.5rem !important;
  }

  .mt-md-81,
  .my-md-81 {
    margin-top: 40.5rem !important;
  }

  .mr-md-81,
  .mx-md-81 {
    margin-right: 40.5rem !important;
  }

  .mb-md-81,
  .my-md-81 {
    margin-bottom: 40.5rem !important;
  }

  .ml-md-81,
  .mx-md-81 {
    margin-left: 40.5rem !important;
  }

  .m-md-82 {
    margin: 41rem !important;
  }

  .mt-md-82,
  .my-md-82 {
    margin-top: 41rem !important;
  }

  .mr-md-82,
  .mx-md-82 {
    margin-right: 41rem !important;
  }

  .mb-md-82,
  .my-md-82 {
    margin-bottom: 41rem !important;
  }

  .ml-md-82,
  .mx-md-82 {
    margin-left: 41rem !important;
  }

  .m-md-83 {
    margin: 41.5rem !important;
  }

  .mt-md-83,
  .my-md-83 {
    margin-top: 41.5rem !important;
  }

  .mr-md-83,
  .mx-md-83 {
    margin-right: 41.5rem !important;
  }

  .mb-md-83,
  .my-md-83 {
    margin-bottom: 41.5rem !important;
  }

  .ml-md-83,
  .mx-md-83 {
    margin-left: 41.5rem !important;
  }

  .m-md-84 {
    margin: 42rem !important;
  }

  .mt-md-84,
  .my-md-84 {
    margin-top: 42rem !important;
  }

  .mr-md-84,
  .mx-md-84 {
    margin-right: 42rem !important;
  }

  .mb-md-84,
  .my-md-84 {
    margin-bottom: 42rem !important;
  }

  .ml-md-84,
  .mx-md-84 {
    margin-left: 42rem !important;
  }

  .m-md-85 {
    margin: 42.5rem !important;
  }

  .mt-md-85,
  .my-md-85 {
    margin-top: 42.5rem !important;
  }

  .mr-md-85,
  .mx-md-85 {
    margin-right: 42.5rem !important;
  }

  .mb-md-85,
  .my-md-85 {
    margin-bottom: 42.5rem !important;
  }

  .ml-md-85,
  .mx-md-85 {
    margin-left: 42.5rem !important;
  }

  .m-md-86 {
    margin: 43rem !important;
  }

  .mt-md-86,
  .my-md-86 {
    margin-top: 43rem !important;
  }

  .mr-md-86,
  .mx-md-86 {
    margin-right: 43rem !important;
  }

  .mb-md-86,
  .my-md-86 {
    margin-bottom: 43rem !important;
  }

  .ml-md-86,
  .mx-md-86 {
    margin-left: 43rem !important;
  }

  .m-md-87 {
    margin: 43.5rem !important;
  }

  .mt-md-87,
  .my-md-87 {
    margin-top: 43.5rem !important;
  }

  .mr-md-87,
  .mx-md-87 {
    margin-right: 43.5rem !important;
  }

  .mb-md-87,
  .my-md-87 {
    margin-bottom: 43.5rem !important;
  }

  .ml-md-87,
  .mx-md-87 {
    margin-left: 43.5rem !important;
  }

  .m-md-88 {
    margin: 44rem !important;
  }

  .mt-md-88,
  .my-md-88 {
    margin-top: 44rem !important;
  }

  .mr-md-88,
  .mx-md-88 {
    margin-right: 44rem !important;
  }

  .mb-md-88,
  .my-md-88 {
    margin-bottom: 44rem !important;
  }

  .ml-md-88,
  .mx-md-88 {
    margin-left: 44rem !important;
  }

  .m-md-89 {
    margin: 44.5rem !important;
  }

  .mt-md-89,
  .my-md-89 {
    margin-top: 44.5rem !important;
  }

  .mr-md-89,
  .mx-md-89 {
    margin-right: 44.5rem !important;
  }

  .mb-md-89,
  .my-md-89 {
    margin-bottom: 44.5rem !important;
  }

  .ml-md-89,
  .mx-md-89 {
    margin-left: 44.5rem !important;
  }

  .m-md-90 {
    margin: 45rem !important;
  }

  .mt-md-90,
  .my-md-90 {
    margin-top: 45rem !important;
  }

  .mr-md-90,
  .mx-md-90 {
    margin-right: 45rem !important;
  }

  .mb-md-90,
  .my-md-90 {
    margin-bottom: 45rem !important;
  }

  .ml-md-90,
  .mx-md-90 {
    margin-left: 45rem !important;
  }

  .m-md-91 {
    margin: 45.5rem !important;
  }

  .mt-md-91,
  .my-md-91 {
    margin-top: 45.5rem !important;
  }

  .mr-md-91,
  .mx-md-91 {
    margin-right: 45.5rem !important;
  }

  .mb-md-91,
  .my-md-91 {
    margin-bottom: 45.5rem !important;
  }

  .ml-md-91,
  .mx-md-91 {
    margin-left: 45.5rem !important;
  }

  .m-md-92 {
    margin: 46rem !important;
  }

  .mt-md-92,
  .my-md-92 {
    margin-top: 46rem !important;
  }

  .mr-md-92,
  .mx-md-92 {
    margin-right: 46rem !important;
  }

  .mb-md-92,
  .my-md-92 {
    margin-bottom: 46rem !important;
  }

  .ml-md-92,
  .mx-md-92 {
    margin-left: 46rem !important;
  }

  .m-md-93 {
    margin: 46.5rem !important;
  }

  .mt-md-93,
  .my-md-93 {
    margin-top: 46.5rem !important;
  }

  .mr-md-93,
  .mx-md-93 {
    margin-right: 46.5rem !important;
  }

  .mb-md-93,
  .my-md-93 {
    margin-bottom: 46.5rem !important;
  }

  .ml-md-93,
  .mx-md-93 {
    margin-left: 46.5rem !important;
  }

  .m-md-94 {
    margin: 47rem !important;
  }

  .mt-md-94,
  .my-md-94 {
    margin-top: 47rem !important;
  }

  .mr-md-94,
  .mx-md-94 {
    margin-right: 47rem !important;
  }

  .mb-md-94,
  .my-md-94 {
    margin-bottom: 47rem !important;
  }

  .ml-md-94,
  .mx-md-94 {
    margin-left: 47rem !important;
  }

  .m-md-95 {
    margin: 47.5rem !important;
  }

  .mt-md-95,
  .my-md-95 {
    margin-top: 47.5rem !important;
  }

  .mr-md-95,
  .mx-md-95 {
    margin-right: 47.5rem !important;
  }

  .mb-md-95,
  .my-md-95 {
    margin-bottom: 47.5rem !important;
  }

  .ml-md-95,
  .mx-md-95 {
    margin-left: 47.5rem !important;
  }

  .m-md-96 {
    margin: 48rem !important;
  }

  .mt-md-96,
  .my-md-96 {
    margin-top: 48rem !important;
  }

  .mr-md-96,
  .mx-md-96 {
    margin-right: 48rem !important;
  }

  .mb-md-96,
  .my-md-96 {
    margin-bottom: 48rem !important;
  }

  .ml-md-96,
  .mx-md-96 {
    margin-left: 48rem !important;
  }

  .m-md-97 {
    margin: 48.5rem !important;
  }

  .mt-md-97,
  .my-md-97 {
    margin-top: 48.5rem !important;
  }

  .mr-md-97,
  .mx-md-97 {
    margin-right: 48.5rem !important;
  }

  .mb-md-97,
  .my-md-97 {
    margin-bottom: 48.5rem !important;
  }

  .ml-md-97,
  .mx-md-97 {
    margin-left: 48.5rem !important;
  }

  .m-md-98 {
    margin: 49rem !important;
  }

  .mt-md-98,
  .my-md-98 {
    margin-top: 49rem !important;
  }

  .mr-md-98,
  .mx-md-98 {
    margin-right: 49rem !important;
  }

  .mb-md-98,
  .my-md-98 {
    margin-bottom: 49rem !important;
  }

  .ml-md-98,
  .mx-md-98 {
    margin-left: 49rem !important;
  }

  .m-md-99 {
    margin: 49.5rem !important;
  }

  .mt-md-99,
  .my-md-99 {
    margin-top: 49.5rem !important;
  }

  .mr-md-99,
  .mx-md-99 {
    margin-right: 49.5rem !important;
  }

  .mb-md-99,
  .my-md-99 {
    margin-bottom: 49.5rem !important;
  }

  .ml-md-99,
  .mx-md-99 {
    margin-left: 49.5rem !important;
  }

  .m-md-100 {
    margin: 50rem !important;
  }

  .mt-md-100,
  .my-md-100 {
    margin-top: 50rem !important;
  }

  .mr-md-100,
  .mx-md-100 {
    margin-right: 50rem !important;
  }

  .mb-md-100,
  .my-md-100 {
    margin-bottom: 50rem !important;
  }

  .ml-md-100,
  .mx-md-100 {
    margin-left: 50rem !important;
  }

  .m-md-101 {
    margin: 50.5rem !important;
  }

  .mt-md-101,
  .my-md-101 {
    margin-top: 50.5rem !important;
  }

  .mr-md-101,
  .mx-md-101 {
    margin-right: 50.5rem !important;
  }

  .mb-md-101,
  .my-md-101 {
    margin-bottom: 50.5rem !important;
  }

  .ml-md-101,
  .mx-md-101 {
    margin-left: 50.5rem !important;
  }

  .m-md-102 {
    margin: 51rem !important;
  }

  .mt-md-102,
  .my-md-102 {
    margin-top: 51rem !important;
  }

  .mr-md-102,
  .mx-md-102 {
    margin-right: 51rem !important;
  }

  .mb-md-102,
  .my-md-102 {
    margin-bottom: 51rem !important;
  }

  .ml-md-102,
  .mx-md-102 {
    margin-left: 51rem !important;
  }

  .m-md-103 {
    margin: 51.5rem !important;
  }

  .mt-md-103,
  .my-md-103 {
    margin-top: 51.5rem !important;
  }

  .mr-md-103,
  .mx-md-103 {
    margin-right: 51.5rem !important;
  }

  .mb-md-103,
  .my-md-103 {
    margin-bottom: 51.5rem !important;
  }

  .ml-md-103,
  .mx-md-103 {
    margin-left: 51.5rem !important;
  }

  .m-md-104 {
    margin: 52rem !important;
  }

  .mt-md-104,
  .my-md-104 {
    margin-top: 52rem !important;
  }

  .mr-md-104,
  .mx-md-104 {
    margin-right: 52rem !important;
  }

  .mb-md-104,
  .my-md-104 {
    margin-bottom: 52rem !important;
  }

  .ml-md-104,
  .mx-md-104 {
    margin-left: 52rem !important;
  }

  .m-md-105 {
    margin: 52.5rem !important;
  }

  .mt-md-105,
  .my-md-105 {
    margin-top: 52.5rem !important;
  }

  .mr-md-105,
  .mx-md-105 {
    margin-right: 52.5rem !important;
  }

  .mb-md-105,
  .my-md-105 {
    margin-bottom: 52.5rem !important;
  }

  .ml-md-105,
  .mx-md-105 {
    margin-left: 52.5rem !important;
  }

  .m-md-106 {
    margin: 53rem !important;
  }

  .mt-md-106,
  .my-md-106 {
    margin-top: 53rem !important;
  }

  .mr-md-106,
  .mx-md-106 {
    margin-right: 53rem !important;
  }

  .mb-md-106,
  .my-md-106 {
    margin-bottom: 53rem !important;
  }

  .ml-md-106,
  .mx-md-106 {
    margin-left: 53rem !important;
  }

  .m-md-107 {
    margin: 53.5rem !important;
  }

  .mt-md-107,
  .my-md-107 {
    margin-top: 53.5rem !important;
  }

  .mr-md-107,
  .mx-md-107 {
    margin-right: 53.5rem !important;
  }

  .mb-md-107,
  .my-md-107 {
    margin-bottom: 53.5rem !important;
  }

  .ml-md-107,
  .mx-md-107 {
    margin-left: 53.5rem !important;
  }

  .m-md-108 {
    margin: 54rem !important;
  }

  .mt-md-108,
  .my-md-108 {
    margin-top: 54rem !important;
  }

  .mr-md-108,
  .mx-md-108 {
    margin-right: 54rem !important;
  }

  .mb-md-108,
  .my-md-108 {
    margin-bottom: 54rem !important;
  }

  .ml-md-108,
  .mx-md-108 {
    margin-left: 54rem !important;
  }

  .m-md-109 {
    margin: 54.5rem !important;
  }

  .mt-md-109,
  .my-md-109 {
    margin-top: 54.5rem !important;
  }

  .mr-md-109,
  .mx-md-109 {
    margin-right: 54.5rem !important;
  }

  .mb-md-109,
  .my-md-109 {
    margin-bottom: 54.5rem !important;
  }

  .ml-md-109,
  .mx-md-109 {
    margin-left: 54.5rem !important;
  }

  .m-md-110 {
    margin: 55rem !important;
  }

  .mt-md-110,
  .my-md-110 {
    margin-top: 55rem !important;
  }

  .mr-md-110,
  .mx-md-110 {
    margin-right: 55rem !important;
  }

  .mb-md-110,
  .my-md-110 {
    margin-bottom: 55rem !important;
  }

  .ml-md-110,
  .mx-md-110 {
    margin-left: 55rem !important;
  }

  .m-md-111 {
    margin: 55.5rem !important;
  }

  .mt-md-111,
  .my-md-111 {
    margin-top: 55.5rem !important;
  }

  .mr-md-111,
  .mx-md-111 {
    margin-right: 55.5rem !important;
  }

  .mb-md-111,
  .my-md-111 {
    margin-bottom: 55.5rem !important;
  }

  .ml-md-111,
  .mx-md-111 {
    margin-left: 55.5rem !important;
  }

  .m-md-112 {
    margin: 56rem !important;
  }

  .mt-md-112,
  .my-md-112 {
    margin-top: 56rem !important;
  }

  .mr-md-112,
  .mx-md-112 {
    margin-right: 56rem !important;
  }

  .mb-md-112,
  .my-md-112 {
    margin-bottom: 56rem !important;
  }

  .ml-md-112,
  .mx-md-112 {
    margin-left: 56rem !important;
  }

  .m-md-113 {
    margin: 56.5rem !important;
  }

  .mt-md-113,
  .my-md-113 {
    margin-top: 56.5rem !important;
  }

  .mr-md-113,
  .mx-md-113 {
    margin-right: 56.5rem !important;
  }

  .mb-md-113,
  .my-md-113 {
    margin-bottom: 56.5rem !important;
  }

  .ml-md-113,
  .mx-md-113 {
    margin-left: 56.5rem !important;
  }

  .m-md-114 {
    margin: 57rem !important;
  }

  .mt-md-114,
  .my-md-114 {
    margin-top: 57rem !important;
  }

  .mr-md-114,
  .mx-md-114 {
    margin-right: 57rem !important;
  }

  .mb-md-114,
  .my-md-114 {
    margin-bottom: 57rem !important;
  }

  .ml-md-114,
  .mx-md-114 {
    margin-left: 57rem !important;
  }

  .m-md-115 {
    margin: 57.5rem !important;
  }

  .mt-md-115,
  .my-md-115 {
    margin-top: 57.5rem !important;
  }

  .mr-md-115,
  .mx-md-115 {
    margin-right: 57.5rem !important;
  }

  .mb-md-115,
  .my-md-115 {
    margin-bottom: 57.5rem !important;
  }

  .ml-md-115,
  .mx-md-115 {
    margin-left: 57.5rem !important;
  }

  .m-md-116 {
    margin: 58rem !important;
  }

  .mt-md-116,
  .my-md-116 {
    margin-top: 58rem !important;
  }

  .mr-md-116,
  .mx-md-116 {
    margin-right: 58rem !important;
  }

  .mb-md-116,
  .my-md-116 {
    margin-bottom: 58rem !important;
  }

  .ml-md-116,
  .mx-md-116 {
    margin-left: 58rem !important;
  }

  .m-md-117 {
    margin: 58.5rem !important;
  }

  .mt-md-117,
  .my-md-117 {
    margin-top: 58.5rem !important;
  }

  .mr-md-117,
  .mx-md-117 {
    margin-right: 58.5rem !important;
  }

  .mb-md-117,
  .my-md-117 {
    margin-bottom: 58.5rem !important;
  }

  .ml-md-117,
  .mx-md-117 {
    margin-left: 58.5rem !important;
  }

  .m-md-118 {
    margin: 59rem !important;
  }

  .mt-md-118,
  .my-md-118 {
    margin-top: 59rem !important;
  }

  .mr-md-118,
  .mx-md-118 {
    margin-right: 59rem !important;
  }

  .mb-md-118,
  .my-md-118 {
    margin-bottom: 59rem !important;
  }

  .ml-md-118,
  .mx-md-118 {
    margin-left: 59rem !important;
  }

  .m-md-119 {
    margin: 59.5rem !important;
  }

  .mt-md-119,
  .my-md-119 {
    margin-top: 59.5rem !important;
  }

  .mr-md-119,
  .mx-md-119 {
    margin-right: 59.5rem !important;
  }

  .mb-md-119,
  .my-md-119 {
    margin-bottom: 59.5rem !important;
  }

  .ml-md-119,
  .mx-md-119 {
    margin-left: 59.5rem !important;
  }

  .m-md-120 {
    margin: 60rem !important;
  }

  .mt-md-120,
  .my-md-120 {
    margin-top: 60rem !important;
  }

  .mr-md-120,
  .mx-md-120 {
    margin-right: 60rem !important;
  }

  .mb-md-120,
  .my-md-120 {
    margin-bottom: 60rem !important;
  }

  .ml-md-120,
  .mx-md-120 {
    margin-left: 60rem !important;
  }

  .m-md-121 {
    margin: 60.5rem !important;
  }

  .mt-md-121,
  .my-md-121 {
    margin-top: 60.5rem !important;
  }

  .mr-md-121,
  .mx-md-121 {
    margin-right: 60.5rem !important;
  }

  .mb-md-121,
  .my-md-121 {
    margin-bottom: 60.5rem !important;
  }

  .ml-md-121,
  .mx-md-121 {
    margin-left: 60.5rem !important;
  }

  .m-md-122 {
    margin: 61rem !important;
  }

  .mt-md-122,
  .my-md-122 {
    margin-top: 61rem !important;
  }

  .mr-md-122,
  .mx-md-122 {
    margin-right: 61rem !important;
  }

  .mb-md-122,
  .my-md-122 {
    margin-bottom: 61rem !important;
  }

  .ml-md-122,
  .mx-md-122 {
    margin-left: 61rem !important;
  }

  .m-md-123 {
    margin: 61.5rem !important;
  }

  .mt-md-123,
  .my-md-123 {
    margin-top: 61.5rem !important;
  }

  .mr-md-123,
  .mx-md-123 {
    margin-right: 61.5rem !important;
  }

  .mb-md-123,
  .my-md-123 {
    margin-bottom: 61.5rem !important;
  }

  .ml-md-123,
  .mx-md-123 {
    margin-left: 61.5rem !important;
  }

  .m-md-124 {
    margin: 62rem !important;
  }

  .mt-md-124,
  .my-md-124 {
    margin-top: 62rem !important;
  }

  .mr-md-124,
  .mx-md-124 {
    margin-right: 62rem !important;
  }

  .mb-md-124,
  .my-md-124 {
    margin-bottom: 62rem !important;
  }

  .ml-md-124,
  .mx-md-124 {
    margin-left: 62rem !important;
  }

  .m-md-125 {
    margin: 62.5rem !important;
  }

  .mt-md-125,
  .my-md-125 {
    margin-top: 62.5rem !important;
  }

  .mr-md-125,
  .mx-md-125 {
    margin-right: 62.5rem !important;
  }

  .mb-md-125,
  .my-md-125 {
    margin-bottom: 62.5rem !important;
  }

  .ml-md-125,
  .mx-md-125 {
    margin-left: 62.5rem !important;
  }

  .m-md-126 {
    margin: 63rem !important;
  }

  .mt-md-126,
  .my-md-126 {
    margin-top: 63rem !important;
  }

  .mr-md-126,
  .mx-md-126 {
    margin-right: 63rem !important;
  }

  .mb-md-126,
  .my-md-126 {
    margin-bottom: 63rem !important;
  }

  .ml-md-126,
  .mx-md-126 {
    margin-left: 63rem !important;
  }

  .m-md-127 {
    margin: 63.5rem !important;
  }

  .mt-md-127,
  .my-md-127 {
    margin-top: 63.5rem !important;
  }

  .mr-md-127,
  .mx-md-127 {
    margin-right: 63.5rem !important;
  }

  .mb-md-127,
  .my-md-127 {
    margin-bottom: 63.5rem !important;
  }

  .ml-md-127,
  .mx-md-127 {
    margin-left: 63.5rem !important;
  }

  .m-md-128 {
    margin: 64rem !important;
  }

  .mt-md-128,
  .my-md-128 {
    margin-top: 64rem !important;
  }

  .mr-md-128,
  .mx-md-128 {
    margin-right: 64rem !important;
  }

  .mb-md-128,
  .my-md-128 {
    margin-bottom: 64rem !important;
  }

  .ml-md-128,
  .mx-md-128 {
    margin-left: 64rem !important;
  }

  .m-md-129 {
    margin: 64.5rem !important;
  }

  .mt-md-129,
  .my-md-129 {
    margin-top: 64.5rem !important;
  }

  .mr-md-129,
  .mx-md-129 {
    margin-right: 64.5rem !important;
  }

  .mb-md-129,
  .my-md-129 {
    margin-bottom: 64.5rem !important;
  }

  .ml-md-129,
  .mx-md-129 {
    margin-left: 64.5rem !important;
  }

  .m-md-130 {
    margin: 65rem !important;
  }

  .mt-md-130,
  .my-md-130 {
    margin-top: 65rem !important;
  }

  .mr-md-130,
  .mx-md-130 {
    margin-right: 65rem !important;
  }

  .mb-md-130,
  .my-md-130 {
    margin-bottom: 65rem !important;
  }

  .ml-md-130,
  .mx-md-130 {
    margin-left: 65rem !important;
  }

  .m-md-131 {
    margin: 65.5rem !important;
  }

  .mt-md-131,
  .my-md-131 {
    margin-top: 65.5rem !important;
  }

  .mr-md-131,
  .mx-md-131 {
    margin-right: 65.5rem !important;
  }

  .mb-md-131,
  .my-md-131 {
    margin-bottom: 65.5rem !important;
  }

  .ml-md-131,
  .mx-md-131 {
    margin-left: 65.5rem !important;
  }

  .m-md-132 {
    margin: 66rem !important;
  }

  .mt-md-132,
  .my-md-132 {
    margin-top: 66rem !important;
  }

  .mr-md-132,
  .mx-md-132 {
    margin-right: 66rem !important;
  }

  .mb-md-132,
  .my-md-132 {
    margin-bottom: 66rem !important;
  }

  .ml-md-132,
  .mx-md-132 {
    margin-left: 66rem !important;
  }

  .m-md-133 {
    margin: 66.5rem !important;
  }

  .mt-md-133,
  .my-md-133 {
    margin-top: 66.5rem !important;
  }

  .mr-md-133,
  .mx-md-133 {
    margin-right: 66.5rem !important;
  }

  .mb-md-133,
  .my-md-133 {
    margin-bottom: 66.5rem !important;
  }

  .ml-md-133,
  .mx-md-133 {
    margin-left: 66.5rem !important;
  }

  .m-md-134 {
    margin: 67rem !important;
  }

  .mt-md-134,
  .my-md-134 {
    margin-top: 67rem !important;
  }

  .mr-md-134,
  .mx-md-134 {
    margin-right: 67rem !important;
  }

  .mb-md-134,
  .my-md-134 {
    margin-bottom: 67rem !important;
  }

  .ml-md-134,
  .mx-md-134 {
    margin-left: 67rem !important;
  }

  .m-md-135 {
    margin: 67.5rem !important;
  }

  .mt-md-135,
  .my-md-135 {
    margin-top: 67.5rem !important;
  }

  .mr-md-135,
  .mx-md-135 {
    margin-right: 67.5rem !important;
  }

  .mb-md-135,
  .my-md-135 {
    margin-bottom: 67.5rem !important;
  }

  .ml-md-135,
  .mx-md-135 {
    margin-left: 67.5rem !important;
  }

  .m-md-136 {
    margin: 68rem !important;
  }

  .mt-md-136,
  .my-md-136 {
    margin-top: 68rem !important;
  }

  .mr-md-136,
  .mx-md-136 {
    margin-right: 68rem !important;
  }

  .mb-md-136,
  .my-md-136 {
    margin-bottom: 68rem !important;
  }

  .ml-md-136,
  .mx-md-136 {
    margin-left: 68rem !important;
  }

  .m-md-137 {
    margin: 68.5rem !important;
  }

  .mt-md-137,
  .my-md-137 {
    margin-top: 68.5rem !important;
  }

  .mr-md-137,
  .mx-md-137 {
    margin-right: 68.5rem !important;
  }

  .mb-md-137,
  .my-md-137 {
    margin-bottom: 68.5rem !important;
  }

  .ml-md-137,
  .mx-md-137 {
    margin-left: 68.5rem !important;
  }

  .m-md-138 {
    margin: 69rem !important;
  }

  .mt-md-138,
  .my-md-138 {
    margin-top: 69rem !important;
  }

  .mr-md-138,
  .mx-md-138 {
    margin-right: 69rem !important;
  }

  .mb-md-138,
  .my-md-138 {
    margin-bottom: 69rem !important;
  }

  .ml-md-138,
  .mx-md-138 {
    margin-left: 69rem !important;
  }

  .m-md-139 {
    margin: 69.5rem !important;
  }

  .mt-md-139,
  .my-md-139 {
    margin-top: 69.5rem !important;
  }

  .mr-md-139,
  .mx-md-139 {
    margin-right: 69.5rem !important;
  }

  .mb-md-139,
  .my-md-139 {
    margin-bottom: 69.5rem !important;
  }

  .ml-md-139,
  .mx-md-139 {
    margin-left: 69.5rem !important;
  }

  .m-md-140 {
    margin: 70rem !important;
  }

  .mt-md-140,
  .my-md-140 {
    margin-top: 70rem !important;
  }

  .mr-md-140,
  .mx-md-140 {
    margin-right: 70rem !important;
  }

  .mb-md-140,
  .my-md-140 {
    margin-bottom: 70rem !important;
  }

  .ml-md-140,
  .mx-md-140 {
    margin-left: 70rem !important;
  }

  .m-md-141 {
    margin: 70.5rem !important;
  }

  .mt-md-141,
  .my-md-141 {
    margin-top: 70.5rem !important;
  }

  .mr-md-141,
  .mx-md-141 {
    margin-right: 70.5rem !important;
  }

  .mb-md-141,
  .my-md-141 {
    margin-bottom: 70.5rem !important;
  }

  .ml-md-141,
  .mx-md-141 {
    margin-left: 70.5rem !important;
  }

  .m-md-142 {
    margin: 71rem !important;
  }

  .mt-md-142,
  .my-md-142 {
    margin-top: 71rem !important;
  }

  .mr-md-142,
  .mx-md-142 {
    margin-right: 71rem !important;
  }

  .mb-md-142,
  .my-md-142 {
    margin-bottom: 71rem !important;
  }

  .ml-md-142,
  .mx-md-142 {
    margin-left: 71rem !important;
  }

  .m-md-143 {
    margin: 71.5rem !important;
  }

  .mt-md-143,
  .my-md-143 {
    margin-top: 71.5rem !important;
  }

  .mr-md-143,
  .mx-md-143 {
    margin-right: 71.5rem !important;
  }

  .mb-md-143,
  .my-md-143 {
    margin-bottom: 71.5rem !important;
  }

  .ml-md-143,
  .mx-md-143 {
    margin-left: 71.5rem !important;
  }

  .m-md-144 {
    margin: 72rem !important;
  }

  .mt-md-144,
  .my-md-144 {
    margin-top: 72rem !important;
  }

  .mr-md-144,
  .mx-md-144 {
    margin-right: 72rem !important;
  }

  .mb-md-144,
  .my-md-144 {
    margin-bottom: 72rem !important;
  }

  .ml-md-144,
  .mx-md-144 {
    margin-left: 72rem !important;
  }

  .m-md-145 {
    margin: 72.5rem !important;
  }

  .mt-md-145,
  .my-md-145 {
    margin-top: 72.5rem !important;
  }

  .mr-md-145,
  .mx-md-145 {
    margin-right: 72.5rem !important;
  }

  .mb-md-145,
  .my-md-145 {
    margin-bottom: 72.5rem !important;
  }

  .ml-md-145,
  .mx-md-145 {
    margin-left: 72.5rem !important;
  }

  .m-md-146 {
    margin: 73rem !important;
  }

  .mt-md-146,
  .my-md-146 {
    margin-top: 73rem !important;
  }

  .mr-md-146,
  .mx-md-146 {
    margin-right: 73rem !important;
  }

  .mb-md-146,
  .my-md-146 {
    margin-bottom: 73rem !important;
  }

  .ml-md-146,
  .mx-md-146 {
    margin-left: 73rem !important;
  }

  .m-md-147 {
    margin: 73.5rem !important;
  }

  .mt-md-147,
  .my-md-147 {
    margin-top: 73.5rem !important;
  }

  .mr-md-147,
  .mx-md-147 {
    margin-right: 73.5rem !important;
  }

  .mb-md-147,
  .my-md-147 {
    margin-bottom: 73.5rem !important;
  }

  .ml-md-147,
  .mx-md-147 {
    margin-left: 73.5rem !important;
  }

  .m-md-148 {
    margin: 74rem !important;
  }

  .mt-md-148,
  .my-md-148 {
    margin-top: 74rem !important;
  }

  .mr-md-148,
  .mx-md-148 {
    margin-right: 74rem !important;
  }

  .mb-md-148,
  .my-md-148 {
    margin-bottom: 74rem !important;
  }

  .ml-md-148,
  .mx-md-148 {
    margin-left: 74rem !important;
  }

  .m-md-149 {
    margin: 74.5rem !important;
  }

  .mt-md-149,
  .my-md-149 {
    margin-top: 74.5rem !important;
  }

  .mr-md-149,
  .mx-md-149 {
    margin-right: 74.5rem !important;
  }

  .mb-md-149,
  .my-md-149 {
    margin-bottom: 74.5rem !important;
  }

  .ml-md-149,
  .mx-md-149 {
    margin-left: 74.5rem !important;
  }

  .m-md-150 {
    margin: 75rem !important;
  }

  .mt-md-150,
  .my-md-150 {
    margin-top: 75rem !important;
  }

  .mr-md-150,
  .mx-md-150 {
    margin-right: 75rem !important;
  }

  .mb-md-150,
  .my-md-150 {
    margin-bottom: 75rem !important;
  }

  .ml-md-150,
  .mx-md-150 {
    margin-left: 75rem !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.5rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.5rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.5rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.5rem !important;
  }

  .p-md-2 {
    padding: 1rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 1rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 1rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 1rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 1rem !important;
  }

  .p-md-3 {
    padding: 1.5rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1.5rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1.5rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1.5rem !important;
  }

  .p-md-4 {
    padding: 2rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 2rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 2rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 2rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 2rem !important;
  }

  .p-md-5 {
    padding: 2.5rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 2.5rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 2.5rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 2.5rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 2.5rem !important;
  }

  .p-md-6 {
    padding: 3rem !important;
  }

  .pt-md-6,
  .py-md-6 {
    padding-top: 3rem !important;
  }

  .pr-md-6,
  .px-md-6 {
    padding-right: 3rem !important;
  }

  .pb-md-6,
  .py-md-6 {
    padding-bottom: 3rem !important;
  }

  .pl-md-6,
  .px-md-6 {
    padding-left: 3rem !important;
  }

  .p-md-7 {
    padding: 3.5rem !important;
  }

  .pt-md-7,
  .py-md-7 {
    padding-top: 3.5rem !important;
  }

  .pr-md-7,
  .px-md-7 {
    padding-right: 3.5rem !important;
  }

  .pb-md-7,
  .py-md-7 {
    padding-bottom: 3.5rem !important;
  }

  .pl-md-7,
  .px-md-7 {
    padding-left: 3.5rem !important;
  }

  .p-md-8 {
    padding: 4rem !important;
  }

  .pt-md-8,
  .py-md-8 {
    padding-top: 4rem !important;
  }

  .pr-md-8,
  .px-md-8 {
    padding-right: 4rem !important;
  }

  .pb-md-8,
  .py-md-8 {
    padding-bottom: 4rem !important;
  }

  .pl-md-8,
  .px-md-8 {
    padding-left: 4rem !important;
  }

  .p-md-9 {
    padding: 4.5rem !important;
  }

  .pt-md-9,
  .py-md-9 {
    padding-top: 4.5rem !important;
  }

  .pr-md-9,
  .px-md-9 {
    padding-right: 4.5rem !important;
  }

  .pb-md-9,
  .py-md-9 {
    padding-bottom: 4.5rem !important;
  }

  .pl-md-9,
  .px-md-9 {
    padding-left: 4.5rem !important;
  }

  .p-md-10 {
    padding: 5rem !important;
  }

  .pt-md-10,
  .py-md-10 {
    padding-top: 5rem !important;
  }

  .pr-md-10,
  .px-md-10 {
    padding-right: 5rem !important;
  }

  .pb-md-10,
  .py-md-10 {
    padding-bottom: 5rem !important;
  }

  .pl-md-10,
  .px-md-10 {
    padding-left: 5rem !important;
  }

  .p-md-11 {
    padding: 5.5rem !important;
  }

  .pt-md-11,
  .py-md-11 {
    padding-top: 5.5rem !important;
  }

  .pr-md-11,
  .px-md-11 {
    padding-right: 5.5rem !important;
  }

  .pb-md-11,
  .py-md-11 {
    padding-bottom: 5.5rem !important;
  }

  .pl-md-11,
  .px-md-11 {
    padding-left: 5.5rem !important;
  }

  .p-md-12 {
    padding: 6rem !important;
  }

  .pt-md-12,
  .py-md-12 {
    padding-top: 6rem !important;
  }

  .pr-md-12,
  .px-md-12 {
    padding-right: 6rem !important;
  }

  .pb-md-12,
  .py-md-12 {
    padding-bottom: 6rem !important;
  }

  .pl-md-12,
  .px-md-12 {
    padding-left: 6rem !important;
  }

  .p-md-13 {
    padding: 6.5rem !important;
  }

  .pt-md-13,
  .py-md-13 {
    padding-top: 6.5rem !important;
  }

  .pr-md-13,
  .px-md-13 {
    padding-right: 6.5rem !important;
  }

  .pb-md-13,
  .py-md-13 {
    padding-bottom: 6.5rem !important;
  }

  .pl-md-13,
  .px-md-13 {
    padding-left: 6.5rem !important;
  }

  .p-md-14 {
    padding: 7rem !important;
  }

  .pt-md-14,
  .py-md-14 {
    padding-top: 7rem !important;
  }

  .pr-md-14,
  .px-md-14 {
    padding-right: 7rem !important;
  }

  .pb-md-14,
  .py-md-14 {
    padding-bottom: 7rem !important;
  }

  .pl-md-14,
  .px-md-14 {
    padding-left: 7rem !important;
  }

  .p-md-15 {
    padding: 7.5rem !important;
  }

  .pt-md-15,
  .py-md-15 {
    padding-top: 7.5rem !important;
  }

  .pr-md-15,
  .px-md-15 {
    padding-right: 7.5rem !important;
  }

  .pb-md-15,
  .py-md-15 {
    padding-bottom: 7.5rem !important;
  }

  .pl-md-15,
  .px-md-15 {
    padding-left: 7.5rem !important;
  }

  .p-md-16 {
    padding: 8rem !important;
  }

  .pt-md-16,
  .py-md-16 {
    padding-top: 8rem !important;
  }

  .pr-md-16,
  .px-md-16 {
    padding-right: 8rem !important;
  }

  .pb-md-16,
  .py-md-16 {
    padding-bottom: 8rem !important;
  }

  .pl-md-16,
  .px-md-16 {
    padding-left: 8rem !important;
  }

  .p-md-17 {
    padding: 8.5rem !important;
  }

  .pt-md-17,
  .py-md-17 {
    padding-top: 8.5rem !important;
  }

  .pr-md-17,
  .px-md-17 {
    padding-right: 8.5rem !important;
  }

  .pb-md-17,
  .py-md-17 {
    padding-bottom: 8.5rem !important;
  }

  .pl-md-17,
  .px-md-17 {
    padding-left: 8.5rem !important;
  }

  .p-md-18 {
    padding: 9rem !important;
  }

  .pt-md-18,
  .py-md-18 {
    padding-top: 9rem !important;
  }

  .pr-md-18,
  .px-md-18 {
    padding-right: 9rem !important;
  }

  .pb-md-18,
  .py-md-18 {
    padding-bottom: 9rem !important;
  }

  .pl-md-18,
  .px-md-18 {
    padding-left: 9rem !important;
  }

  .p-md-19 {
    padding: 9.5rem !important;
  }

  .pt-md-19,
  .py-md-19 {
    padding-top: 9.5rem !important;
  }

  .pr-md-19,
  .px-md-19 {
    padding-right: 9.5rem !important;
  }

  .pb-md-19,
  .py-md-19 {
    padding-bottom: 9.5rem !important;
  }

  .pl-md-19,
  .px-md-19 {
    padding-left: 9.5rem !important;
  }

  .p-md-20 {
    padding: 10rem !important;
  }

  .pt-md-20,
  .py-md-20 {
    padding-top: 10rem !important;
  }

  .pr-md-20,
  .px-md-20 {
    padding-right: 10rem !important;
  }

  .pb-md-20,
  .py-md-20 {
    padding-bottom: 10rem !important;
  }

  .pl-md-20,
  .px-md-20 {
    padding-left: 10rem !important;
  }

  .p-md-21 {
    padding: 10.5rem !important;
  }

  .pt-md-21,
  .py-md-21 {
    padding-top: 10.5rem !important;
  }

  .pr-md-21,
  .px-md-21 {
    padding-right: 10.5rem !important;
  }

  .pb-md-21,
  .py-md-21 {
    padding-bottom: 10.5rem !important;
  }

  .pl-md-21,
  .px-md-21 {
    padding-left: 10.5rem !important;
  }

  .p-md-22 {
    padding: 11rem !important;
  }

  .pt-md-22,
  .py-md-22 {
    padding-top: 11rem !important;
  }

  .pr-md-22,
  .px-md-22 {
    padding-right: 11rem !important;
  }

  .pb-md-22,
  .py-md-22 {
    padding-bottom: 11rem !important;
  }

  .pl-md-22,
  .px-md-22 {
    padding-left: 11rem !important;
  }

  .p-md-23 {
    padding: 11.5rem !important;
  }

  .pt-md-23,
  .py-md-23 {
    padding-top: 11.5rem !important;
  }

  .pr-md-23,
  .px-md-23 {
    padding-right: 11.5rem !important;
  }

  .pb-md-23,
  .py-md-23 {
    padding-bottom: 11.5rem !important;
  }

  .pl-md-23,
  .px-md-23 {
    padding-left: 11.5rem !important;
  }

  .p-md-24 {
    padding: 12rem !important;
  }

  .pt-md-24,
  .py-md-24 {
    padding-top: 12rem !important;
  }

  .pr-md-24,
  .px-md-24 {
    padding-right: 12rem !important;
  }

  .pb-md-24,
  .py-md-24 {
    padding-bottom: 12rem !important;
  }

  .pl-md-24,
  .px-md-24 {
    padding-left: 12rem !important;
  }

  .p-md-25 {
    padding: 12.5rem !important;
  }

  .pt-md-25,
  .py-md-25 {
    padding-top: 12.5rem !important;
  }

  .pr-md-25,
  .px-md-25 {
    padding-right: 12.5rem !important;
  }

  .pb-md-25,
  .py-md-25 {
    padding-bottom: 12.5rem !important;
  }

  .pl-md-25,
  .px-md-25 {
    padding-left: 12.5rem !important;
  }

  .p-md-26 {
    padding: 13rem !important;
  }

  .pt-md-26,
  .py-md-26 {
    padding-top: 13rem !important;
  }

  .pr-md-26,
  .px-md-26 {
    padding-right: 13rem !important;
  }

  .pb-md-26,
  .py-md-26 {
    padding-bottom: 13rem !important;
  }

  .pl-md-26,
  .px-md-26 {
    padding-left: 13rem !important;
  }

  .p-md-27 {
    padding: 13.5rem !important;
  }

  .pt-md-27,
  .py-md-27 {
    padding-top: 13.5rem !important;
  }

  .pr-md-27,
  .px-md-27 {
    padding-right: 13.5rem !important;
  }

  .pb-md-27,
  .py-md-27 {
    padding-bottom: 13.5rem !important;
  }

  .pl-md-27,
  .px-md-27 {
    padding-left: 13.5rem !important;
  }

  .p-md-28 {
    padding: 14rem !important;
  }

  .pt-md-28,
  .py-md-28 {
    padding-top: 14rem !important;
  }

  .pr-md-28,
  .px-md-28 {
    padding-right: 14rem !important;
  }

  .pb-md-28,
  .py-md-28 {
    padding-bottom: 14rem !important;
  }

  .pl-md-28,
  .px-md-28 {
    padding-left: 14rem !important;
  }

  .p-md-29 {
    padding: 14.5rem !important;
  }

  .pt-md-29,
  .py-md-29 {
    padding-top: 14.5rem !important;
  }

  .pr-md-29,
  .px-md-29 {
    padding-right: 14.5rem !important;
  }

  .pb-md-29,
  .py-md-29 {
    padding-bottom: 14.5rem !important;
  }

  .pl-md-29,
  .px-md-29 {
    padding-left: 14.5rem !important;
  }

  .p-md-30 {
    padding: 15rem !important;
  }

  .pt-md-30,
  .py-md-30 {
    padding-top: 15rem !important;
  }

  .pr-md-30,
  .px-md-30 {
    padding-right: 15rem !important;
  }

  .pb-md-30,
  .py-md-30 {
    padding-bottom: 15rem !important;
  }

  .pl-md-30,
  .px-md-30 {
    padding-left: 15rem !important;
  }

  .p-md-31 {
    padding: 15.5rem !important;
  }

  .pt-md-31,
  .py-md-31 {
    padding-top: 15.5rem !important;
  }

  .pr-md-31,
  .px-md-31 {
    padding-right: 15.5rem !important;
  }

  .pb-md-31,
  .py-md-31 {
    padding-bottom: 15.5rem !important;
  }

  .pl-md-31,
  .px-md-31 {
    padding-left: 15.5rem !important;
  }

  .p-md-32 {
    padding: 16rem !important;
  }

  .pt-md-32,
  .py-md-32 {
    padding-top: 16rem !important;
  }

  .pr-md-32,
  .px-md-32 {
    padding-right: 16rem !important;
  }

  .pb-md-32,
  .py-md-32 {
    padding-bottom: 16rem !important;
  }

  .pl-md-32,
  .px-md-32 {
    padding-left: 16rem !important;
  }

  .p-md-33 {
    padding: 16.5rem !important;
  }

  .pt-md-33,
  .py-md-33 {
    padding-top: 16.5rem !important;
  }

  .pr-md-33,
  .px-md-33 {
    padding-right: 16.5rem !important;
  }

  .pb-md-33,
  .py-md-33 {
    padding-bottom: 16.5rem !important;
  }

  .pl-md-33,
  .px-md-33 {
    padding-left: 16.5rem !important;
  }

  .p-md-34 {
    padding: 17rem !important;
  }

  .pt-md-34,
  .py-md-34 {
    padding-top: 17rem !important;
  }

  .pr-md-34,
  .px-md-34 {
    padding-right: 17rem !important;
  }

  .pb-md-34,
  .py-md-34 {
    padding-bottom: 17rem !important;
  }

  .pl-md-34,
  .px-md-34 {
    padding-left: 17rem !important;
  }

  .p-md-35 {
    padding: 17.5rem !important;
  }

  .pt-md-35,
  .py-md-35 {
    padding-top: 17.5rem !important;
  }

  .pr-md-35,
  .px-md-35 {
    padding-right: 17.5rem !important;
  }

  .pb-md-35,
  .py-md-35 {
    padding-bottom: 17.5rem !important;
  }

  .pl-md-35,
  .px-md-35 {
    padding-left: 17.5rem !important;
  }

  .p-md-36 {
    padding: 18rem !important;
  }

  .pt-md-36,
  .py-md-36 {
    padding-top: 18rem !important;
  }

  .pr-md-36,
  .px-md-36 {
    padding-right: 18rem !important;
  }

  .pb-md-36,
  .py-md-36 {
    padding-bottom: 18rem !important;
  }

  .pl-md-36,
  .px-md-36 {
    padding-left: 18rem !important;
  }

  .p-md-37 {
    padding: 18.5rem !important;
  }

  .pt-md-37,
  .py-md-37 {
    padding-top: 18.5rem !important;
  }

  .pr-md-37,
  .px-md-37 {
    padding-right: 18.5rem !important;
  }

  .pb-md-37,
  .py-md-37 {
    padding-bottom: 18.5rem !important;
  }

  .pl-md-37,
  .px-md-37 {
    padding-left: 18.5rem !important;
  }

  .p-md-38 {
    padding: 19rem !important;
  }

  .pt-md-38,
  .py-md-38 {
    padding-top: 19rem !important;
  }

  .pr-md-38,
  .px-md-38 {
    padding-right: 19rem !important;
  }

  .pb-md-38,
  .py-md-38 {
    padding-bottom: 19rem !important;
  }

  .pl-md-38,
  .px-md-38 {
    padding-left: 19rem !important;
  }

  .p-md-39 {
    padding: 19.5rem !important;
  }

  .pt-md-39,
  .py-md-39 {
    padding-top: 19.5rem !important;
  }

  .pr-md-39,
  .px-md-39 {
    padding-right: 19.5rem !important;
  }

  .pb-md-39,
  .py-md-39 {
    padding-bottom: 19.5rem !important;
  }

  .pl-md-39,
  .px-md-39 {
    padding-left: 19.5rem !important;
  }

  .p-md-40 {
    padding: 20rem !important;
  }

  .pt-md-40,
  .py-md-40 {
    padding-top: 20rem !important;
  }

  .pr-md-40,
  .px-md-40 {
    padding-right: 20rem !important;
  }

  .pb-md-40,
  .py-md-40 {
    padding-bottom: 20rem !important;
  }

  .pl-md-40,
  .px-md-40 {
    padding-left: 20rem !important;
  }

  .p-md-41 {
    padding: 20.5rem !important;
  }

  .pt-md-41,
  .py-md-41 {
    padding-top: 20.5rem !important;
  }

  .pr-md-41,
  .px-md-41 {
    padding-right: 20.5rem !important;
  }

  .pb-md-41,
  .py-md-41 {
    padding-bottom: 20.5rem !important;
  }

  .pl-md-41,
  .px-md-41 {
    padding-left: 20.5rem !important;
  }

  .p-md-42 {
    padding: 21rem !important;
  }

  .pt-md-42,
  .py-md-42 {
    padding-top: 21rem !important;
  }

  .pr-md-42,
  .px-md-42 {
    padding-right: 21rem !important;
  }

  .pb-md-42,
  .py-md-42 {
    padding-bottom: 21rem !important;
  }

  .pl-md-42,
  .px-md-42 {
    padding-left: 21rem !important;
  }

  .p-md-43 {
    padding: 21.5rem !important;
  }

  .pt-md-43,
  .py-md-43 {
    padding-top: 21.5rem !important;
  }

  .pr-md-43,
  .px-md-43 {
    padding-right: 21.5rem !important;
  }

  .pb-md-43,
  .py-md-43 {
    padding-bottom: 21.5rem !important;
  }

  .pl-md-43,
  .px-md-43 {
    padding-left: 21.5rem !important;
  }

  .p-md-44 {
    padding: 22rem !important;
  }

  .pt-md-44,
  .py-md-44 {
    padding-top: 22rem !important;
  }

  .pr-md-44,
  .px-md-44 {
    padding-right: 22rem !important;
  }

  .pb-md-44,
  .py-md-44 {
    padding-bottom: 22rem !important;
  }

  .pl-md-44,
  .px-md-44 {
    padding-left: 22rem !important;
  }

  .p-md-45 {
    padding: 22.5rem !important;
  }

  .pt-md-45,
  .py-md-45 {
    padding-top: 22.5rem !important;
  }

  .pr-md-45,
  .px-md-45 {
    padding-right: 22.5rem !important;
  }

  .pb-md-45,
  .py-md-45 {
    padding-bottom: 22.5rem !important;
  }

  .pl-md-45,
  .px-md-45 {
    padding-left: 22.5rem !important;
  }

  .p-md-46 {
    padding: 23rem !important;
  }

  .pt-md-46,
  .py-md-46 {
    padding-top: 23rem !important;
  }

  .pr-md-46,
  .px-md-46 {
    padding-right: 23rem !important;
  }

  .pb-md-46,
  .py-md-46 {
    padding-bottom: 23rem !important;
  }

  .pl-md-46,
  .px-md-46 {
    padding-left: 23rem !important;
  }

  .p-md-47 {
    padding: 23.5rem !important;
  }

  .pt-md-47,
  .py-md-47 {
    padding-top: 23.5rem !important;
  }

  .pr-md-47,
  .px-md-47 {
    padding-right: 23.5rem !important;
  }

  .pb-md-47,
  .py-md-47 {
    padding-bottom: 23.5rem !important;
  }

  .pl-md-47,
  .px-md-47 {
    padding-left: 23.5rem !important;
  }

  .p-md-48 {
    padding: 24rem !important;
  }

  .pt-md-48,
  .py-md-48 {
    padding-top: 24rem !important;
  }

  .pr-md-48,
  .px-md-48 {
    padding-right: 24rem !important;
  }

  .pb-md-48,
  .py-md-48 {
    padding-bottom: 24rem !important;
  }

  .pl-md-48,
  .px-md-48 {
    padding-left: 24rem !important;
  }

  .p-md-49 {
    padding: 24.5rem !important;
  }

  .pt-md-49,
  .py-md-49 {
    padding-top: 24.5rem !important;
  }

  .pr-md-49,
  .px-md-49 {
    padding-right: 24.5rem !important;
  }

  .pb-md-49,
  .py-md-49 {
    padding-bottom: 24.5rem !important;
  }

  .pl-md-49,
  .px-md-49 {
    padding-left: 24.5rem !important;
  }

  .p-md-50 {
    padding: 25rem !important;
  }

  .pt-md-50,
  .py-md-50 {
    padding-top: 25rem !important;
  }

  .pr-md-50,
  .px-md-50 {
    padding-right: 25rem !important;
  }

  .pb-md-50,
  .py-md-50 {
    padding-bottom: 25rem !important;
  }

  .pl-md-50,
  .px-md-50 {
    padding-left: 25rem !important;
  }

  .p-md-51 {
    padding: 25.5rem !important;
  }

  .pt-md-51,
  .py-md-51 {
    padding-top: 25.5rem !important;
  }

  .pr-md-51,
  .px-md-51 {
    padding-right: 25.5rem !important;
  }

  .pb-md-51,
  .py-md-51 {
    padding-bottom: 25.5rem !important;
  }

  .pl-md-51,
  .px-md-51 {
    padding-left: 25.5rem !important;
  }

  .p-md-52 {
    padding: 26rem !important;
  }

  .pt-md-52,
  .py-md-52 {
    padding-top: 26rem !important;
  }

  .pr-md-52,
  .px-md-52 {
    padding-right: 26rem !important;
  }

  .pb-md-52,
  .py-md-52 {
    padding-bottom: 26rem !important;
  }

  .pl-md-52,
  .px-md-52 {
    padding-left: 26rem !important;
  }

  .p-md-53 {
    padding: 26.5rem !important;
  }

  .pt-md-53,
  .py-md-53 {
    padding-top: 26.5rem !important;
  }

  .pr-md-53,
  .px-md-53 {
    padding-right: 26.5rem !important;
  }

  .pb-md-53,
  .py-md-53 {
    padding-bottom: 26.5rem !important;
  }

  .pl-md-53,
  .px-md-53 {
    padding-left: 26.5rem !important;
  }

  .p-md-54 {
    padding: 27rem !important;
  }

  .pt-md-54,
  .py-md-54 {
    padding-top: 27rem !important;
  }

  .pr-md-54,
  .px-md-54 {
    padding-right: 27rem !important;
  }

  .pb-md-54,
  .py-md-54 {
    padding-bottom: 27rem !important;
  }

  .pl-md-54,
  .px-md-54 {
    padding-left: 27rem !important;
  }

  .p-md-55 {
    padding: 27.5rem !important;
  }

  .pt-md-55,
  .py-md-55 {
    padding-top: 27.5rem !important;
  }

  .pr-md-55,
  .px-md-55 {
    padding-right: 27.5rem !important;
  }

  .pb-md-55,
  .py-md-55 {
    padding-bottom: 27.5rem !important;
  }

  .pl-md-55,
  .px-md-55 {
    padding-left: 27.5rem !important;
  }

  .p-md-56 {
    padding: 28rem !important;
  }

  .pt-md-56,
  .py-md-56 {
    padding-top: 28rem !important;
  }

  .pr-md-56,
  .px-md-56 {
    padding-right: 28rem !important;
  }

  .pb-md-56,
  .py-md-56 {
    padding-bottom: 28rem !important;
  }

  .pl-md-56,
  .px-md-56 {
    padding-left: 28rem !important;
  }

  .p-md-57 {
    padding: 28.5rem !important;
  }

  .pt-md-57,
  .py-md-57 {
    padding-top: 28.5rem !important;
  }

  .pr-md-57,
  .px-md-57 {
    padding-right: 28.5rem !important;
  }

  .pb-md-57,
  .py-md-57 {
    padding-bottom: 28.5rem !important;
  }

  .pl-md-57,
  .px-md-57 {
    padding-left: 28.5rem !important;
  }

  .p-md-58 {
    padding: 29rem !important;
  }

  .pt-md-58,
  .py-md-58 {
    padding-top: 29rem !important;
  }

  .pr-md-58,
  .px-md-58 {
    padding-right: 29rem !important;
  }

  .pb-md-58,
  .py-md-58 {
    padding-bottom: 29rem !important;
  }

  .pl-md-58,
  .px-md-58 {
    padding-left: 29rem !important;
  }

  .p-md-59 {
    padding: 29.5rem !important;
  }

  .pt-md-59,
  .py-md-59 {
    padding-top: 29.5rem !important;
  }

  .pr-md-59,
  .px-md-59 {
    padding-right: 29.5rem !important;
  }

  .pb-md-59,
  .py-md-59 {
    padding-bottom: 29.5rem !important;
  }

  .pl-md-59,
  .px-md-59 {
    padding-left: 29.5rem !important;
  }

  .p-md-60 {
    padding: 30rem !important;
  }

  .pt-md-60,
  .py-md-60 {
    padding-top: 30rem !important;
  }

  .pr-md-60,
  .px-md-60 {
    padding-right: 30rem !important;
  }

  .pb-md-60,
  .py-md-60 {
    padding-bottom: 30rem !important;
  }

  .pl-md-60,
  .px-md-60 {
    padding-left: 30rem !important;
  }

  .p-md-61 {
    padding: 30.5rem !important;
  }

  .pt-md-61,
  .py-md-61 {
    padding-top: 30.5rem !important;
  }

  .pr-md-61,
  .px-md-61 {
    padding-right: 30.5rem !important;
  }

  .pb-md-61,
  .py-md-61 {
    padding-bottom: 30.5rem !important;
  }

  .pl-md-61,
  .px-md-61 {
    padding-left: 30.5rem !important;
  }

  .p-md-62 {
    padding: 31rem !important;
  }

  .pt-md-62,
  .py-md-62 {
    padding-top: 31rem !important;
  }

  .pr-md-62,
  .px-md-62 {
    padding-right: 31rem !important;
  }

  .pb-md-62,
  .py-md-62 {
    padding-bottom: 31rem !important;
  }

  .pl-md-62,
  .px-md-62 {
    padding-left: 31rem !important;
  }

  .p-md-63 {
    padding: 31.5rem !important;
  }

  .pt-md-63,
  .py-md-63 {
    padding-top: 31.5rem !important;
  }

  .pr-md-63,
  .px-md-63 {
    padding-right: 31.5rem !important;
  }

  .pb-md-63,
  .py-md-63 {
    padding-bottom: 31.5rem !important;
  }

  .pl-md-63,
  .px-md-63 {
    padding-left: 31.5rem !important;
  }

  .p-md-64 {
    padding: 32rem !important;
  }

  .pt-md-64,
  .py-md-64 {
    padding-top: 32rem !important;
  }

  .pr-md-64,
  .px-md-64 {
    padding-right: 32rem !important;
  }

  .pb-md-64,
  .py-md-64 {
    padding-bottom: 32rem !important;
  }

  .pl-md-64,
  .px-md-64 {
    padding-left: 32rem !important;
  }

  .p-md-65 {
    padding: 32.5rem !important;
  }

  .pt-md-65,
  .py-md-65 {
    padding-top: 32.5rem !important;
  }

  .pr-md-65,
  .px-md-65 {
    padding-right: 32.5rem !important;
  }

  .pb-md-65,
  .py-md-65 {
    padding-bottom: 32.5rem !important;
  }

  .pl-md-65,
  .px-md-65 {
    padding-left: 32.5rem !important;
  }

  .p-md-66 {
    padding: 33rem !important;
  }

  .pt-md-66,
  .py-md-66 {
    padding-top: 33rem !important;
  }

  .pr-md-66,
  .px-md-66 {
    padding-right: 33rem !important;
  }

  .pb-md-66,
  .py-md-66 {
    padding-bottom: 33rem !important;
  }

  .pl-md-66,
  .px-md-66 {
    padding-left: 33rem !important;
  }

  .p-md-67 {
    padding: 33.5rem !important;
  }

  .pt-md-67,
  .py-md-67 {
    padding-top: 33.5rem !important;
  }

  .pr-md-67,
  .px-md-67 {
    padding-right: 33.5rem !important;
  }

  .pb-md-67,
  .py-md-67 {
    padding-bottom: 33.5rem !important;
  }

  .pl-md-67,
  .px-md-67 {
    padding-left: 33.5rem !important;
  }

  .p-md-68 {
    padding: 34rem !important;
  }

  .pt-md-68,
  .py-md-68 {
    padding-top: 34rem !important;
  }

  .pr-md-68,
  .px-md-68 {
    padding-right: 34rem !important;
  }

  .pb-md-68,
  .py-md-68 {
    padding-bottom: 34rem !important;
  }

  .pl-md-68,
  .px-md-68 {
    padding-left: 34rem !important;
  }

  .p-md-69 {
    padding: 34.5rem !important;
  }

  .pt-md-69,
  .py-md-69 {
    padding-top: 34.5rem !important;
  }

  .pr-md-69,
  .px-md-69 {
    padding-right: 34.5rem !important;
  }

  .pb-md-69,
  .py-md-69 {
    padding-bottom: 34.5rem !important;
  }

  .pl-md-69,
  .px-md-69 {
    padding-left: 34.5rem !important;
  }

  .p-md-70 {
    padding: 35rem !important;
  }

  .pt-md-70,
  .py-md-70 {
    padding-top: 35rem !important;
  }

  .pr-md-70,
  .px-md-70 {
    padding-right: 35rem !important;
  }

  .pb-md-70,
  .py-md-70 {
    padding-bottom: 35rem !important;
  }

  .pl-md-70,
  .px-md-70 {
    padding-left: 35rem !important;
  }

  .p-md-71 {
    padding: 35.5rem !important;
  }

  .pt-md-71,
  .py-md-71 {
    padding-top: 35.5rem !important;
  }

  .pr-md-71,
  .px-md-71 {
    padding-right: 35.5rem !important;
  }

  .pb-md-71,
  .py-md-71 {
    padding-bottom: 35.5rem !important;
  }

  .pl-md-71,
  .px-md-71 {
    padding-left: 35.5rem !important;
  }

  .p-md-72 {
    padding: 36rem !important;
  }

  .pt-md-72,
  .py-md-72 {
    padding-top: 36rem !important;
  }

  .pr-md-72,
  .px-md-72 {
    padding-right: 36rem !important;
  }

  .pb-md-72,
  .py-md-72 {
    padding-bottom: 36rem !important;
  }

  .pl-md-72,
  .px-md-72 {
    padding-left: 36rem !important;
  }

  .p-md-73 {
    padding: 36.5rem !important;
  }

  .pt-md-73,
  .py-md-73 {
    padding-top: 36.5rem !important;
  }

  .pr-md-73,
  .px-md-73 {
    padding-right: 36.5rem !important;
  }

  .pb-md-73,
  .py-md-73 {
    padding-bottom: 36.5rem !important;
  }

  .pl-md-73,
  .px-md-73 {
    padding-left: 36.5rem !important;
  }

  .p-md-74 {
    padding: 37rem !important;
  }

  .pt-md-74,
  .py-md-74 {
    padding-top: 37rem !important;
  }

  .pr-md-74,
  .px-md-74 {
    padding-right: 37rem !important;
  }

  .pb-md-74,
  .py-md-74 {
    padding-bottom: 37rem !important;
  }

  .pl-md-74,
  .px-md-74 {
    padding-left: 37rem !important;
  }

  .p-md-75 {
    padding: 37.5rem !important;
  }

  .pt-md-75,
  .py-md-75 {
    padding-top: 37.5rem !important;
  }

  .pr-md-75,
  .px-md-75 {
    padding-right: 37.5rem !important;
  }

  .pb-md-75,
  .py-md-75 {
    padding-bottom: 37.5rem !important;
  }

  .pl-md-75,
  .px-md-75 {
    padding-left: 37.5rem !important;
  }

  .p-md-76 {
    padding: 38rem !important;
  }

  .pt-md-76,
  .py-md-76 {
    padding-top: 38rem !important;
  }

  .pr-md-76,
  .px-md-76 {
    padding-right: 38rem !important;
  }

  .pb-md-76,
  .py-md-76 {
    padding-bottom: 38rem !important;
  }

  .pl-md-76,
  .px-md-76 {
    padding-left: 38rem !important;
  }

  .p-md-77 {
    padding: 38.5rem !important;
  }

  .pt-md-77,
  .py-md-77 {
    padding-top: 38.5rem !important;
  }

  .pr-md-77,
  .px-md-77 {
    padding-right: 38.5rem !important;
  }

  .pb-md-77,
  .py-md-77 {
    padding-bottom: 38.5rem !important;
  }

  .pl-md-77,
  .px-md-77 {
    padding-left: 38.5rem !important;
  }

  .p-md-78 {
    padding: 39rem !important;
  }

  .pt-md-78,
  .py-md-78 {
    padding-top: 39rem !important;
  }

  .pr-md-78,
  .px-md-78 {
    padding-right: 39rem !important;
  }

  .pb-md-78,
  .py-md-78 {
    padding-bottom: 39rem !important;
  }

  .pl-md-78,
  .px-md-78 {
    padding-left: 39rem !important;
  }

  .p-md-79 {
    padding: 39.5rem !important;
  }

  .pt-md-79,
  .py-md-79 {
    padding-top: 39.5rem !important;
  }

  .pr-md-79,
  .px-md-79 {
    padding-right: 39.5rem !important;
  }

  .pb-md-79,
  .py-md-79 {
    padding-bottom: 39.5rem !important;
  }

  .pl-md-79,
  .px-md-79 {
    padding-left: 39.5rem !important;
  }

  .p-md-80 {
    padding: 40rem !important;
  }

  .pt-md-80,
  .py-md-80 {
    padding-top: 40rem !important;
  }

  .pr-md-80,
  .px-md-80 {
    padding-right: 40rem !important;
  }

  .pb-md-80,
  .py-md-80 {
    padding-bottom: 40rem !important;
  }

  .pl-md-80,
  .px-md-80 {
    padding-left: 40rem !important;
  }

  .p-md-81 {
    padding: 40.5rem !important;
  }

  .pt-md-81,
  .py-md-81 {
    padding-top: 40.5rem !important;
  }

  .pr-md-81,
  .px-md-81 {
    padding-right: 40.5rem !important;
  }

  .pb-md-81,
  .py-md-81 {
    padding-bottom: 40.5rem !important;
  }

  .pl-md-81,
  .px-md-81 {
    padding-left: 40.5rem !important;
  }

  .p-md-82 {
    padding: 41rem !important;
  }

  .pt-md-82,
  .py-md-82 {
    padding-top: 41rem !important;
  }

  .pr-md-82,
  .px-md-82 {
    padding-right: 41rem !important;
  }

  .pb-md-82,
  .py-md-82 {
    padding-bottom: 41rem !important;
  }

  .pl-md-82,
  .px-md-82 {
    padding-left: 41rem !important;
  }

  .p-md-83 {
    padding: 41.5rem !important;
  }

  .pt-md-83,
  .py-md-83 {
    padding-top: 41.5rem !important;
  }

  .pr-md-83,
  .px-md-83 {
    padding-right: 41.5rem !important;
  }

  .pb-md-83,
  .py-md-83 {
    padding-bottom: 41.5rem !important;
  }

  .pl-md-83,
  .px-md-83 {
    padding-left: 41.5rem !important;
  }

  .p-md-84 {
    padding: 42rem !important;
  }

  .pt-md-84,
  .py-md-84 {
    padding-top: 42rem !important;
  }

  .pr-md-84,
  .px-md-84 {
    padding-right: 42rem !important;
  }

  .pb-md-84,
  .py-md-84 {
    padding-bottom: 42rem !important;
  }

  .pl-md-84,
  .px-md-84 {
    padding-left: 42rem !important;
  }

  .p-md-85 {
    padding: 42.5rem !important;
  }

  .pt-md-85,
  .py-md-85 {
    padding-top: 42.5rem !important;
  }

  .pr-md-85,
  .px-md-85 {
    padding-right: 42.5rem !important;
  }

  .pb-md-85,
  .py-md-85 {
    padding-bottom: 42.5rem !important;
  }

  .pl-md-85,
  .px-md-85 {
    padding-left: 42.5rem !important;
  }

  .p-md-86 {
    padding: 43rem !important;
  }

  .pt-md-86,
  .py-md-86 {
    padding-top: 43rem !important;
  }

  .pr-md-86,
  .px-md-86 {
    padding-right: 43rem !important;
  }

  .pb-md-86,
  .py-md-86 {
    padding-bottom: 43rem !important;
  }

  .pl-md-86,
  .px-md-86 {
    padding-left: 43rem !important;
  }

  .p-md-87 {
    padding: 43.5rem !important;
  }

  .pt-md-87,
  .py-md-87 {
    padding-top: 43.5rem !important;
  }

  .pr-md-87,
  .px-md-87 {
    padding-right: 43.5rem !important;
  }

  .pb-md-87,
  .py-md-87 {
    padding-bottom: 43.5rem !important;
  }

  .pl-md-87,
  .px-md-87 {
    padding-left: 43.5rem !important;
  }

  .p-md-88 {
    padding: 44rem !important;
  }

  .pt-md-88,
  .py-md-88 {
    padding-top: 44rem !important;
  }

  .pr-md-88,
  .px-md-88 {
    padding-right: 44rem !important;
  }

  .pb-md-88,
  .py-md-88 {
    padding-bottom: 44rem !important;
  }

  .pl-md-88,
  .px-md-88 {
    padding-left: 44rem !important;
  }

  .p-md-89 {
    padding: 44.5rem !important;
  }

  .pt-md-89,
  .py-md-89 {
    padding-top: 44.5rem !important;
  }

  .pr-md-89,
  .px-md-89 {
    padding-right: 44.5rem !important;
  }

  .pb-md-89,
  .py-md-89 {
    padding-bottom: 44.5rem !important;
  }

  .pl-md-89,
  .px-md-89 {
    padding-left: 44.5rem !important;
  }

  .p-md-90 {
    padding: 45rem !important;
  }

  .pt-md-90,
  .py-md-90 {
    padding-top: 45rem !important;
  }

  .pr-md-90,
  .px-md-90 {
    padding-right: 45rem !important;
  }

  .pb-md-90,
  .py-md-90 {
    padding-bottom: 45rem !important;
  }

  .pl-md-90,
  .px-md-90 {
    padding-left: 45rem !important;
  }

  .p-md-91 {
    padding: 45.5rem !important;
  }

  .pt-md-91,
  .py-md-91 {
    padding-top: 45.5rem !important;
  }

  .pr-md-91,
  .px-md-91 {
    padding-right: 45.5rem !important;
  }

  .pb-md-91,
  .py-md-91 {
    padding-bottom: 45.5rem !important;
  }

  .pl-md-91,
  .px-md-91 {
    padding-left: 45.5rem !important;
  }

  .p-md-92 {
    padding: 46rem !important;
  }

  .pt-md-92,
  .py-md-92 {
    padding-top: 46rem !important;
  }

  .pr-md-92,
  .px-md-92 {
    padding-right: 46rem !important;
  }

  .pb-md-92,
  .py-md-92 {
    padding-bottom: 46rem !important;
  }

  .pl-md-92,
  .px-md-92 {
    padding-left: 46rem !important;
  }

  .p-md-93 {
    padding: 46.5rem !important;
  }

  .pt-md-93,
  .py-md-93 {
    padding-top: 46.5rem !important;
  }

  .pr-md-93,
  .px-md-93 {
    padding-right: 46.5rem !important;
  }

  .pb-md-93,
  .py-md-93 {
    padding-bottom: 46.5rem !important;
  }

  .pl-md-93,
  .px-md-93 {
    padding-left: 46.5rem !important;
  }

  .p-md-94 {
    padding: 47rem !important;
  }

  .pt-md-94,
  .py-md-94 {
    padding-top: 47rem !important;
  }

  .pr-md-94,
  .px-md-94 {
    padding-right: 47rem !important;
  }

  .pb-md-94,
  .py-md-94 {
    padding-bottom: 47rem !important;
  }

  .pl-md-94,
  .px-md-94 {
    padding-left: 47rem !important;
  }

  .p-md-95 {
    padding: 47.5rem !important;
  }

  .pt-md-95,
  .py-md-95 {
    padding-top: 47.5rem !important;
  }

  .pr-md-95,
  .px-md-95 {
    padding-right: 47.5rem !important;
  }

  .pb-md-95,
  .py-md-95 {
    padding-bottom: 47.5rem !important;
  }

  .pl-md-95,
  .px-md-95 {
    padding-left: 47.5rem !important;
  }

  .p-md-96 {
    padding: 48rem !important;
  }

  .pt-md-96,
  .py-md-96 {
    padding-top: 48rem !important;
  }

  .pr-md-96,
  .px-md-96 {
    padding-right: 48rem !important;
  }

  .pb-md-96,
  .py-md-96 {
    padding-bottom: 48rem !important;
  }

  .pl-md-96,
  .px-md-96 {
    padding-left: 48rem !important;
  }

  .p-md-97 {
    padding: 48.5rem !important;
  }

  .pt-md-97,
  .py-md-97 {
    padding-top: 48.5rem !important;
  }

  .pr-md-97,
  .px-md-97 {
    padding-right: 48.5rem !important;
  }

  .pb-md-97,
  .py-md-97 {
    padding-bottom: 48.5rem !important;
  }

  .pl-md-97,
  .px-md-97 {
    padding-left: 48.5rem !important;
  }

  .p-md-98 {
    padding: 49rem !important;
  }

  .pt-md-98,
  .py-md-98 {
    padding-top: 49rem !important;
  }

  .pr-md-98,
  .px-md-98 {
    padding-right: 49rem !important;
  }

  .pb-md-98,
  .py-md-98 {
    padding-bottom: 49rem !important;
  }

  .pl-md-98,
  .px-md-98 {
    padding-left: 49rem !important;
  }

  .p-md-99 {
    padding: 49.5rem !important;
  }

  .pt-md-99,
  .py-md-99 {
    padding-top: 49.5rem !important;
  }

  .pr-md-99,
  .px-md-99 {
    padding-right: 49.5rem !important;
  }

  .pb-md-99,
  .py-md-99 {
    padding-bottom: 49.5rem !important;
  }

  .pl-md-99,
  .px-md-99 {
    padding-left: 49.5rem !important;
  }

  .p-md-100 {
    padding: 50rem !important;
  }

  .pt-md-100,
  .py-md-100 {
    padding-top: 50rem !important;
  }

  .pr-md-100,
  .px-md-100 {
    padding-right: 50rem !important;
  }

  .pb-md-100,
  .py-md-100 {
    padding-bottom: 50rem !important;
  }

  .pl-md-100,
  .px-md-100 {
    padding-left: 50rem !important;
  }

  .p-md-101 {
    padding: 50.5rem !important;
  }

  .pt-md-101,
  .py-md-101 {
    padding-top: 50.5rem !important;
  }

  .pr-md-101,
  .px-md-101 {
    padding-right: 50.5rem !important;
  }

  .pb-md-101,
  .py-md-101 {
    padding-bottom: 50.5rem !important;
  }

  .pl-md-101,
  .px-md-101 {
    padding-left: 50.5rem !important;
  }

  .p-md-102 {
    padding: 51rem !important;
  }

  .pt-md-102,
  .py-md-102 {
    padding-top: 51rem !important;
  }

  .pr-md-102,
  .px-md-102 {
    padding-right: 51rem !important;
  }

  .pb-md-102,
  .py-md-102 {
    padding-bottom: 51rem !important;
  }

  .pl-md-102,
  .px-md-102 {
    padding-left: 51rem !important;
  }

  .p-md-103 {
    padding: 51.5rem !important;
  }

  .pt-md-103,
  .py-md-103 {
    padding-top: 51.5rem !important;
  }

  .pr-md-103,
  .px-md-103 {
    padding-right: 51.5rem !important;
  }

  .pb-md-103,
  .py-md-103 {
    padding-bottom: 51.5rem !important;
  }

  .pl-md-103,
  .px-md-103 {
    padding-left: 51.5rem !important;
  }

  .p-md-104 {
    padding: 52rem !important;
  }

  .pt-md-104,
  .py-md-104 {
    padding-top: 52rem !important;
  }

  .pr-md-104,
  .px-md-104 {
    padding-right: 52rem !important;
  }

  .pb-md-104,
  .py-md-104 {
    padding-bottom: 52rem !important;
  }

  .pl-md-104,
  .px-md-104 {
    padding-left: 52rem !important;
  }

  .p-md-105 {
    padding: 52.5rem !important;
  }

  .pt-md-105,
  .py-md-105 {
    padding-top: 52.5rem !important;
  }

  .pr-md-105,
  .px-md-105 {
    padding-right: 52.5rem !important;
  }

  .pb-md-105,
  .py-md-105 {
    padding-bottom: 52.5rem !important;
  }

  .pl-md-105,
  .px-md-105 {
    padding-left: 52.5rem !important;
  }

  .p-md-106 {
    padding: 53rem !important;
  }

  .pt-md-106,
  .py-md-106 {
    padding-top: 53rem !important;
  }

  .pr-md-106,
  .px-md-106 {
    padding-right: 53rem !important;
  }

  .pb-md-106,
  .py-md-106 {
    padding-bottom: 53rem !important;
  }

  .pl-md-106,
  .px-md-106 {
    padding-left: 53rem !important;
  }

  .p-md-107 {
    padding: 53.5rem !important;
  }

  .pt-md-107,
  .py-md-107 {
    padding-top: 53.5rem !important;
  }

  .pr-md-107,
  .px-md-107 {
    padding-right: 53.5rem !important;
  }

  .pb-md-107,
  .py-md-107 {
    padding-bottom: 53.5rem !important;
  }

  .pl-md-107,
  .px-md-107 {
    padding-left: 53.5rem !important;
  }

  .p-md-108 {
    padding: 54rem !important;
  }

  .pt-md-108,
  .py-md-108 {
    padding-top: 54rem !important;
  }

  .pr-md-108,
  .px-md-108 {
    padding-right: 54rem !important;
  }

  .pb-md-108,
  .py-md-108 {
    padding-bottom: 54rem !important;
  }

  .pl-md-108,
  .px-md-108 {
    padding-left: 54rem !important;
  }

  .p-md-109 {
    padding: 54.5rem !important;
  }

  .pt-md-109,
  .py-md-109 {
    padding-top: 54.5rem !important;
  }

  .pr-md-109,
  .px-md-109 {
    padding-right: 54.5rem !important;
  }

  .pb-md-109,
  .py-md-109 {
    padding-bottom: 54.5rem !important;
  }

  .pl-md-109,
  .px-md-109 {
    padding-left: 54.5rem !important;
  }

  .p-md-110 {
    padding: 55rem !important;
  }

  .pt-md-110,
  .py-md-110 {
    padding-top: 55rem !important;
  }

  .pr-md-110,
  .px-md-110 {
    padding-right: 55rem !important;
  }

  .pb-md-110,
  .py-md-110 {
    padding-bottom: 55rem !important;
  }

  .pl-md-110,
  .px-md-110 {
    padding-left: 55rem !important;
  }

  .p-md-111 {
    padding: 55.5rem !important;
  }

  .pt-md-111,
  .py-md-111 {
    padding-top: 55.5rem !important;
  }

  .pr-md-111,
  .px-md-111 {
    padding-right: 55.5rem !important;
  }

  .pb-md-111,
  .py-md-111 {
    padding-bottom: 55.5rem !important;
  }

  .pl-md-111,
  .px-md-111 {
    padding-left: 55.5rem !important;
  }

  .p-md-112 {
    padding: 56rem !important;
  }

  .pt-md-112,
  .py-md-112 {
    padding-top: 56rem !important;
  }

  .pr-md-112,
  .px-md-112 {
    padding-right: 56rem !important;
  }

  .pb-md-112,
  .py-md-112 {
    padding-bottom: 56rem !important;
  }

  .pl-md-112,
  .px-md-112 {
    padding-left: 56rem !important;
  }

  .p-md-113 {
    padding: 56.5rem !important;
  }

  .pt-md-113,
  .py-md-113 {
    padding-top: 56.5rem !important;
  }

  .pr-md-113,
  .px-md-113 {
    padding-right: 56.5rem !important;
  }

  .pb-md-113,
  .py-md-113 {
    padding-bottom: 56.5rem !important;
  }

  .pl-md-113,
  .px-md-113 {
    padding-left: 56.5rem !important;
  }

  .p-md-114 {
    padding: 57rem !important;
  }

  .pt-md-114,
  .py-md-114 {
    padding-top: 57rem !important;
  }

  .pr-md-114,
  .px-md-114 {
    padding-right: 57rem !important;
  }

  .pb-md-114,
  .py-md-114 {
    padding-bottom: 57rem !important;
  }

  .pl-md-114,
  .px-md-114 {
    padding-left: 57rem !important;
  }

  .p-md-115 {
    padding: 57.5rem !important;
  }

  .pt-md-115,
  .py-md-115 {
    padding-top: 57.5rem !important;
  }

  .pr-md-115,
  .px-md-115 {
    padding-right: 57.5rem !important;
  }

  .pb-md-115,
  .py-md-115 {
    padding-bottom: 57.5rem !important;
  }

  .pl-md-115,
  .px-md-115 {
    padding-left: 57.5rem !important;
  }

  .p-md-116 {
    padding: 58rem !important;
  }

  .pt-md-116,
  .py-md-116 {
    padding-top: 58rem !important;
  }

  .pr-md-116,
  .px-md-116 {
    padding-right: 58rem !important;
  }

  .pb-md-116,
  .py-md-116 {
    padding-bottom: 58rem !important;
  }

  .pl-md-116,
  .px-md-116 {
    padding-left: 58rem !important;
  }

  .p-md-117 {
    padding: 58.5rem !important;
  }

  .pt-md-117,
  .py-md-117 {
    padding-top: 58.5rem !important;
  }

  .pr-md-117,
  .px-md-117 {
    padding-right: 58.5rem !important;
  }

  .pb-md-117,
  .py-md-117 {
    padding-bottom: 58.5rem !important;
  }

  .pl-md-117,
  .px-md-117 {
    padding-left: 58.5rem !important;
  }

  .p-md-118 {
    padding: 59rem !important;
  }

  .pt-md-118,
  .py-md-118 {
    padding-top: 59rem !important;
  }

  .pr-md-118,
  .px-md-118 {
    padding-right: 59rem !important;
  }

  .pb-md-118,
  .py-md-118 {
    padding-bottom: 59rem !important;
  }

  .pl-md-118,
  .px-md-118 {
    padding-left: 59rem !important;
  }

  .p-md-119 {
    padding: 59.5rem !important;
  }

  .pt-md-119,
  .py-md-119 {
    padding-top: 59.5rem !important;
  }

  .pr-md-119,
  .px-md-119 {
    padding-right: 59.5rem !important;
  }

  .pb-md-119,
  .py-md-119 {
    padding-bottom: 59.5rem !important;
  }

  .pl-md-119,
  .px-md-119 {
    padding-left: 59.5rem !important;
  }

  .p-md-120 {
    padding: 60rem !important;
  }

  .pt-md-120,
  .py-md-120 {
    padding-top: 60rem !important;
  }

  .pr-md-120,
  .px-md-120 {
    padding-right: 60rem !important;
  }

  .pb-md-120,
  .py-md-120 {
    padding-bottom: 60rem !important;
  }

  .pl-md-120,
  .px-md-120 {
    padding-left: 60rem !important;
  }

  .p-md-121 {
    padding: 60.5rem !important;
  }

  .pt-md-121,
  .py-md-121 {
    padding-top: 60.5rem !important;
  }

  .pr-md-121,
  .px-md-121 {
    padding-right: 60.5rem !important;
  }

  .pb-md-121,
  .py-md-121 {
    padding-bottom: 60.5rem !important;
  }

  .pl-md-121,
  .px-md-121 {
    padding-left: 60.5rem !important;
  }

  .p-md-122 {
    padding: 61rem !important;
  }

  .pt-md-122,
  .py-md-122 {
    padding-top: 61rem !important;
  }

  .pr-md-122,
  .px-md-122 {
    padding-right: 61rem !important;
  }

  .pb-md-122,
  .py-md-122 {
    padding-bottom: 61rem !important;
  }

  .pl-md-122,
  .px-md-122 {
    padding-left: 61rem !important;
  }

  .p-md-123 {
    padding: 61.5rem !important;
  }

  .pt-md-123,
  .py-md-123 {
    padding-top: 61.5rem !important;
  }

  .pr-md-123,
  .px-md-123 {
    padding-right: 61.5rem !important;
  }

  .pb-md-123,
  .py-md-123 {
    padding-bottom: 61.5rem !important;
  }

  .pl-md-123,
  .px-md-123 {
    padding-left: 61.5rem !important;
  }

  .p-md-124 {
    padding: 62rem !important;
  }

  .pt-md-124,
  .py-md-124 {
    padding-top: 62rem !important;
  }

  .pr-md-124,
  .px-md-124 {
    padding-right: 62rem !important;
  }

  .pb-md-124,
  .py-md-124 {
    padding-bottom: 62rem !important;
  }

  .pl-md-124,
  .px-md-124 {
    padding-left: 62rem !important;
  }

  .p-md-125 {
    padding: 62.5rem !important;
  }

  .pt-md-125,
  .py-md-125 {
    padding-top: 62.5rem !important;
  }

  .pr-md-125,
  .px-md-125 {
    padding-right: 62.5rem !important;
  }

  .pb-md-125,
  .py-md-125 {
    padding-bottom: 62.5rem !important;
  }

  .pl-md-125,
  .px-md-125 {
    padding-left: 62.5rem !important;
  }

  .p-md-126 {
    padding: 63rem !important;
  }

  .pt-md-126,
  .py-md-126 {
    padding-top: 63rem !important;
  }

  .pr-md-126,
  .px-md-126 {
    padding-right: 63rem !important;
  }

  .pb-md-126,
  .py-md-126 {
    padding-bottom: 63rem !important;
  }

  .pl-md-126,
  .px-md-126 {
    padding-left: 63rem !important;
  }

  .p-md-127 {
    padding: 63.5rem !important;
  }

  .pt-md-127,
  .py-md-127 {
    padding-top: 63.5rem !important;
  }

  .pr-md-127,
  .px-md-127 {
    padding-right: 63.5rem !important;
  }

  .pb-md-127,
  .py-md-127 {
    padding-bottom: 63.5rem !important;
  }

  .pl-md-127,
  .px-md-127 {
    padding-left: 63.5rem !important;
  }

  .p-md-128 {
    padding: 64rem !important;
  }

  .pt-md-128,
  .py-md-128 {
    padding-top: 64rem !important;
  }

  .pr-md-128,
  .px-md-128 {
    padding-right: 64rem !important;
  }

  .pb-md-128,
  .py-md-128 {
    padding-bottom: 64rem !important;
  }

  .pl-md-128,
  .px-md-128 {
    padding-left: 64rem !important;
  }

  .p-md-129 {
    padding: 64.5rem !important;
  }

  .pt-md-129,
  .py-md-129 {
    padding-top: 64.5rem !important;
  }

  .pr-md-129,
  .px-md-129 {
    padding-right: 64.5rem !important;
  }

  .pb-md-129,
  .py-md-129 {
    padding-bottom: 64.5rem !important;
  }

  .pl-md-129,
  .px-md-129 {
    padding-left: 64.5rem !important;
  }

  .p-md-130 {
    padding: 65rem !important;
  }

  .pt-md-130,
  .py-md-130 {
    padding-top: 65rem !important;
  }

  .pr-md-130,
  .px-md-130 {
    padding-right: 65rem !important;
  }

  .pb-md-130,
  .py-md-130 {
    padding-bottom: 65rem !important;
  }

  .pl-md-130,
  .px-md-130 {
    padding-left: 65rem !important;
  }

  .p-md-131 {
    padding: 65.5rem !important;
  }

  .pt-md-131,
  .py-md-131 {
    padding-top: 65.5rem !important;
  }

  .pr-md-131,
  .px-md-131 {
    padding-right: 65.5rem !important;
  }

  .pb-md-131,
  .py-md-131 {
    padding-bottom: 65.5rem !important;
  }

  .pl-md-131,
  .px-md-131 {
    padding-left: 65.5rem !important;
  }

  .p-md-132 {
    padding: 66rem !important;
  }

  .pt-md-132,
  .py-md-132 {
    padding-top: 66rem !important;
  }

  .pr-md-132,
  .px-md-132 {
    padding-right: 66rem !important;
  }

  .pb-md-132,
  .py-md-132 {
    padding-bottom: 66rem !important;
  }

  .pl-md-132,
  .px-md-132 {
    padding-left: 66rem !important;
  }

  .p-md-133 {
    padding: 66.5rem !important;
  }

  .pt-md-133,
  .py-md-133 {
    padding-top: 66.5rem !important;
  }

  .pr-md-133,
  .px-md-133 {
    padding-right: 66.5rem !important;
  }

  .pb-md-133,
  .py-md-133 {
    padding-bottom: 66.5rem !important;
  }

  .pl-md-133,
  .px-md-133 {
    padding-left: 66.5rem !important;
  }

  .p-md-134 {
    padding: 67rem !important;
  }

  .pt-md-134,
  .py-md-134 {
    padding-top: 67rem !important;
  }

  .pr-md-134,
  .px-md-134 {
    padding-right: 67rem !important;
  }

  .pb-md-134,
  .py-md-134 {
    padding-bottom: 67rem !important;
  }

  .pl-md-134,
  .px-md-134 {
    padding-left: 67rem !important;
  }

  .p-md-135 {
    padding: 67.5rem !important;
  }

  .pt-md-135,
  .py-md-135 {
    padding-top: 67.5rem !important;
  }

  .pr-md-135,
  .px-md-135 {
    padding-right: 67.5rem !important;
  }

  .pb-md-135,
  .py-md-135 {
    padding-bottom: 67.5rem !important;
  }

  .pl-md-135,
  .px-md-135 {
    padding-left: 67.5rem !important;
  }

  .p-md-136 {
    padding: 68rem !important;
  }

  .pt-md-136,
  .py-md-136 {
    padding-top: 68rem !important;
  }

  .pr-md-136,
  .px-md-136 {
    padding-right: 68rem !important;
  }

  .pb-md-136,
  .py-md-136 {
    padding-bottom: 68rem !important;
  }

  .pl-md-136,
  .px-md-136 {
    padding-left: 68rem !important;
  }

  .p-md-137 {
    padding: 68.5rem !important;
  }

  .pt-md-137,
  .py-md-137 {
    padding-top: 68.5rem !important;
  }

  .pr-md-137,
  .px-md-137 {
    padding-right: 68.5rem !important;
  }

  .pb-md-137,
  .py-md-137 {
    padding-bottom: 68.5rem !important;
  }

  .pl-md-137,
  .px-md-137 {
    padding-left: 68.5rem !important;
  }

  .p-md-138 {
    padding: 69rem !important;
  }

  .pt-md-138,
  .py-md-138 {
    padding-top: 69rem !important;
  }

  .pr-md-138,
  .px-md-138 {
    padding-right: 69rem !important;
  }

  .pb-md-138,
  .py-md-138 {
    padding-bottom: 69rem !important;
  }

  .pl-md-138,
  .px-md-138 {
    padding-left: 69rem !important;
  }

  .p-md-139 {
    padding: 69.5rem !important;
  }

  .pt-md-139,
  .py-md-139 {
    padding-top: 69.5rem !important;
  }

  .pr-md-139,
  .px-md-139 {
    padding-right: 69.5rem !important;
  }

  .pb-md-139,
  .py-md-139 {
    padding-bottom: 69.5rem !important;
  }

  .pl-md-139,
  .px-md-139 {
    padding-left: 69.5rem !important;
  }

  .p-md-140 {
    padding: 70rem !important;
  }

  .pt-md-140,
  .py-md-140 {
    padding-top: 70rem !important;
  }

  .pr-md-140,
  .px-md-140 {
    padding-right: 70rem !important;
  }

  .pb-md-140,
  .py-md-140 {
    padding-bottom: 70rem !important;
  }

  .pl-md-140,
  .px-md-140 {
    padding-left: 70rem !important;
  }

  .p-md-141 {
    padding: 70.5rem !important;
  }

  .pt-md-141,
  .py-md-141 {
    padding-top: 70.5rem !important;
  }

  .pr-md-141,
  .px-md-141 {
    padding-right: 70.5rem !important;
  }

  .pb-md-141,
  .py-md-141 {
    padding-bottom: 70.5rem !important;
  }

  .pl-md-141,
  .px-md-141 {
    padding-left: 70.5rem !important;
  }

  .p-md-142 {
    padding: 71rem !important;
  }

  .pt-md-142,
  .py-md-142 {
    padding-top: 71rem !important;
  }

  .pr-md-142,
  .px-md-142 {
    padding-right: 71rem !important;
  }

  .pb-md-142,
  .py-md-142 {
    padding-bottom: 71rem !important;
  }

  .pl-md-142,
  .px-md-142 {
    padding-left: 71rem !important;
  }

  .p-md-143 {
    padding: 71.5rem !important;
  }

  .pt-md-143,
  .py-md-143 {
    padding-top: 71.5rem !important;
  }

  .pr-md-143,
  .px-md-143 {
    padding-right: 71.5rem !important;
  }

  .pb-md-143,
  .py-md-143 {
    padding-bottom: 71.5rem !important;
  }

  .pl-md-143,
  .px-md-143 {
    padding-left: 71.5rem !important;
  }

  .p-md-144 {
    padding: 72rem !important;
  }

  .pt-md-144,
  .py-md-144 {
    padding-top: 72rem !important;
  }

  .pr-md-144,
  .px-md-144 {
    padding-right: 72rem !important;
  }

  .pb-md-144,
  .py-md-144 {
    padding-bottom: 72rem !important;
  }

  .pl-md-144,
  .px-md-144 {
    padding-left: 72rem !important;
  }

  .p-md-145 {
    padding: 72.5rem !important;
  }

  .pt-md-145,
  .py-md-145 {
    padding-top: 72.5rem !important;
  }

  .pr-md-145,
  .px-md-145 {
    padding-right: 72.5rem !important;
  }

  .pb-md-145,
  .py-md-145 {
    padding-bottom: 72.5rem !important;
  }

  .pl-md-145,
  .px-md-145 {
    padding-left: 72.5rem !important;
  }

  .p-md-146 {
    padding: 73rem !important;
  }

  .pt-md-146,
  .py-md-146 {
    padding-top: 73rem !important;
  }

  .pr-md-146,
  .px-md-146 {
    padding-right: 73rem !important;
  }

  .pb-md-146,
  .py-md-146 {
    padding-bottom: 73rem !important;
  }

  .pl-md-146,
  .px-md-146 {
    padding-left: 73rem !important;
  }

  .p-md-147 {
    padding: 73.5rem !important;
  }

  .pt-md-147,
  .py-md-147 {
    padding-top: 73.5rem !important;
  }

  .pr-md-147,
  .px-md-147 {
    padding-right: 73.5rem !important;
  }

  .pb-md-147,
  .py-md-147 {
    padding-bottom: 73.5rem !important;
  }

  .pl-md-147,
  .px-md-147 {
    padding-left: 73.5rem !important;
  }

  .p-md-148 {
    padding: 74rem !important;
  }

  .pt-md-148,
  .py-md-148 {
    padding-top: 74rem !important;
  }

  .pr-md-148,
  .px-md-148 {
    padding-right: 74rem !important;
  }

  .pb-md-148,
  .py-md-148 {
    padding-bottom: 74rem !important;
  }

  .pl-md-148,
  .px-md-148 {
    padding-left: 74rem !important;
  }

  .p-md-149 {
    padding: 74.5rem !important;
  }

  .pt-md-149,
  .py-md-149 {
    padding-top: 74.5rem !important;
  }

  .pr-md-149,
  .px-md-149 {
    padding-right: 74.5rem !important;
  }

  .pb-md-149,
  .py-md-149 {
    padding-bottom: 74.5rem !important;
  }

  .pl-md-149,
  .px-md-149 {
    padding-left: 74.5rem !important;
  }

  .p-md-150 {
    padding: 75rem !important;
  }

  .pt-md-150,
  .py-md-150 {
    padding-top: 75rem !important;
  }

  .pr-md-150,
  .px-md-150 {
    padding-right: 75rem !important;
  }

  .pb-md-150,
  .py-md-150 {
    padding-bottom: 75rem !important;
  }

  .pl-md-150,
  .px-md-150 {
    padding-left: 75rem !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.5rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.5rem !important;
  }

  .m-lg-2 {
    margin: 1rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 1rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 1rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 1rem !important;
  }

  .m-lg-3 {
    margin: 1.5rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1.5rem !important;
  }

  .m-lg-4 {
    margin: 2rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 2rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 2rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 2rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 2rem !important;
  }

  .m-lg-5 {
    margin: 2.5rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 2.5rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 2.5rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 2.5rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 2.5rem !important;
  }

  .m-lg-6 {
    margin: 3rem !important;
  }

  .mt-lg-6,
  .my-lg-6 {
    margin-top: 3rem !important;
  }

  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 3rem !important;
  }

  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 3rem !important;
  }

  .m-lg-7 {
    margin: 3.5rem !important;
  }

  .mt-lg-7,
  .my-lg-7 {
    margin-top: 3.5rem !important;
  }

  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 3.5rem !important;
  }

  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 3.5rem !important;
  }

  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 3.5rem !important;
  }

  .m-lg-8 {
    margin: 4rem !important;
  }

  .mt-lg-8,
  .my-lg-8 {
    margin-top: 4rem !important;
  }

  .mr-lg-8,
  .mx-lg-8 {
    margin-right: 4rem !important;
  }

  .mb-lg-8,
  .my-lg-8 {
    margin-bottom: 4rem !important;
  }

  .ml-lg-8,
  .mx-lg-8 {
    margin-left: 4rem !important;
  }

  .m-lg-9 {
    margin: 4.5rem !important;
  }

  .mt-lg-9,
  .my-lg-9 {
    margin-top: 4.5rem !important;
  }

  .mr-lg-9,
  .mx-lg-9 {
    margin-right: 4.5rem !important;
  }

  .mb-lg-9,
  .my-lg-9 {
    margin-bottom: 4.5rem !important;
  }

  .ml-lg-9,
  .mx-lg-9 {
    margin-left: 4.5rem !important;
  }

  .m-lg-10 {
    margin: 5rem !important;
  }

  .mt-lg-10,
  .my-lg-10 {
    margin-top: 5rem !important;
  }

  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 5rem !important;
  }

  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 5rem !important;
  }

  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 5rem !important;
  }

  .m-lg-11 {
    margin: 5.5rem !important;
  }

  .mt-lg-11,
  .my-lg-11 {
    margin-top: 5.5rem !important;
  }

  .mr-lg-11,
  .mx-lg-11 {
    margin-right: 5.5rem !important;
  }

  .mb-lg-11,
  .my-lg-11 {
    margin-bottom: 5.5rem !important;
  }

  .ml-lg-11,
  .mx-lg-11 {
    margin-left: 5.5rem !important;
  }

  .m-lg-12 {
    margin: 6rem !important;
  }

  .mt-lg-12,
  .my-lg-12 {
    margin-top: 6rem !important;
  }

  .mr-lg-12,
  .mx-lg-12 {
    margin-right: 6rem !important;
  }

  .mb-lg-12,
  .my-lg-12 {
    margin-bottom: 6rem !important;
  }

  .ml-lg-12,
  .mx-lg-12 {
    margin-left: 6rem !important;
  }

  .m-lg-13 {
    margin: 6.5rem !important;
  }

  .mt-lg-13,
  .my-lg-13 {
    margin-top: 6.5rem !important;
  }

  .mr-lg-13,
  .mx-lg-13 {
    margin-right: 6.5rem !important;
  }

  .mb-lg-13,
  .my-lg-13 {
    margin-bottom: 6.5rem !important;
  }

  .ml-lg-13,
  .mx-lg-13 {
    margin-left: 6.5rem !important;
  }

  .m-lg-14 {
    margin: 7rem !important;
  }

  .mt-lg-14,
  .my-lg-14 {
    margin-top: 7rem !important;
  }

  .mr-lg-14,
  .mx-lg-14 {
    margin-right: 7rem !important;
  }

  .mb-lg-14,
  .my-lg-14 {
    margin-bottom: 7rem !important;
  }

  .ml-lg-14,
  .mx-lg-14 {
    margin-left: 7rem !important;
  }

  .m-lg-15 {
    margin: 7.5rem !important;
  }

  .mt-lg-15,
  .my-lg-15 {
    margin-top: 7.5rem !important;
  }

  .mr-lg-15,
  .mx-lg-15 {
    margin-right: 7.5rem !important;
  }

  .mb-lg-15,
  .my-lg-15 {
    margin-bottom: 7.5rem !important;
  }

  .ml-lg-15,
  .mx-lg-15 {
    margin-left: 7.5rem !important;
  }

  .m-lg-16 {
    margin: 8rem !important;
  }

  .mt-lg-16,
  .my-lg-16 {
    margin-top: 8rem !important;
  }

  .mr-lg-16,
  .mx-lg-16 {
    margin-right: 8rem !important;
  }

  .mb-lg-16,
  .my-lg-16 {
    margin-bottom: 8rem !important;
  }

  .ml-lg-16,
  .mx-lg-16 {
    margin-left: 8rem !important;
  }

  .m-lg-17 {
    margin: 8.5rem !important;
  }

  .mt-lg-17,
  .my-lg-17 {
    margin-top: 8.5rem !important;
  }

  .mr-lg-17,
  .mx-lg-17 {
    margin-right: 8.5rem !important;
  }

  .mb-lg-17,
  .my-lg-17 {
    margin-bottom: 8.5rem !important;
  }

  .ml-lg-17,
  .mx-lg-17 {
    margin-left: 8.5rem !important;
  }

  .m-lg-18 {
    margin: 9rem !important;
  }

  .mt-lg-18,
  .my-lg-18 {
    margin-top: 9rem !important;
  }

  .mr-lg-18,
  .mx-lg-18 {
    margin-right: 9rem !important;
  }

  .mb-lg-18,
  .my-lg-18 {
    margin-bottom: 9rem !important;
  }

  .ml-lg-18,
  .mx-lg-18 {
    margin-left: 9rem !important;
  }

  .m-lg-19 {
    margin: 9.5rem !important;
  }

  .mt-lg-19,
  .my-lg-19 {
    margin-top: 9.5rem !important;
  }

  .mr-lg-19,
  .mx-lg-19 {
    margin-right: 9.5rem !important;
  }

  .mb-lg-19,
  .my-lg-19 {
    margin-bottom: 9.5rem !important;
  }

  .ml-lg-19,
  .mx-lg-19 {
    margin-left: 9.5rem !important;
  }

  .m-lg-20 {
    margin: 10rem !important;
  }

  .mt-lg-20,
  .my-lg-20 {
    margin-top: 10rem !important;
  }

  .mr-lg-20,
  .mx-lg-20 {
    margin-right: 10rem !important;
  }

  .mb-lg-20,
  .my-lg-20 {
    margin-bottom: 10rem !important;
  }

  .ml-lg-20,
  .mx-lg-20 {
    margin-left: 10rem !important;
  }

  .m-lg-21 {
    margin: 10.5rem !important;
  }

  .mt-lg-21,
  .my-lg-21 {
    margin-top: 10.5rem !important;
  }

  .mr-lg-21,
  .mx-lg-21 {
    margin-right: 10.5rem !important;
  }

  .mb-lg-21,
  .my-lg-21 {
    margin-bottom: 10.5rem !important;
  }

  .ml-lg-21,
  .mx-lg-21 {
    margin-left: 10.5rem !important;
  }

  .m-lg-22 {
    margin: 11rem !important;
  }

  .mt-lg-22,
  .my-lg-22 {
    margin-top: 11rem !important;
  }

  .mr-lg-22,
  .mx-lg-22 {
    margin-right: 11rem !important;
  }

  .mb-lg-22,
  .my-lg-22 {
    margin-bottom: 11rem !important;
  }

  .ml-lg-22,
  .mx-lg-22 {
    margin-left: 11rem !important;
  }

  .m-lg-23 {
    margin: 11.5rem !important;
  }

  .mt-lg-23,
  .my-lg-23 {
    margin-top: 11.5rem !important;
  }

  .mr-lg-23,
  .mx-lg-23 {
    margin-right: 11.5rem !important;
  }

  .mb-lg-23,
  .my-lg-23 {
    margin-bottom: 11.5rem !important;
  }

  .ml-lg-23,
  .mx-lg-23 {
    margin-left: 11.5rem !important;
  }

  .m-lg-24 {
    margin: 12rem !important;
  }

  .mt-lg-24,
  .my-lg-24 {
    margin-top: 12rem !important;
  }

  .mr-lg-24,
  .mx-lg-24 {
    margin-right: 12rem !important;
  }

  .mb-lg-24,
  .my-lg-24 {
    margin-bottom: 12rem !important;
  }

  .ml-lg-24,
  .mx-lg-24 {
    margin-left: 12rem !important;
  }

  .m-lg-25 {
    margin: 12.5rem !important;
  }

  .mt-lg-25,
  .my-lg-25 {
    margin-top: 12.5rem !important;
  }

  .mr-lg-25,
  .mx-lg-25 {
    margin-right: 12.5rem !important;
  }

  .mb-lg-25,
  .my-lg-25 {
    margin-bottom: 12.5rem !important;
  }

  .ml-lg-25,
  .mx-lg-25 {
    margin-left: 12.5rem !important;
  }

  .m-lg-26 {
    margin: 13rem !important;
  }

  .mt-lg-26,
  .my-lg-26 {
    margin-top: 13rem !important;
  }

  .mr-lg-26,
  .mx-lg-26 {
    margin-right: 13rem !important;
  }

  .mb-lg-26,
  .my-lg-26 {
    margin-bottom: 13rem !important;
  }

  .ml-lg-26,
  .mx-lg-26 {
    margin-left: 13rem !important;
  }

  .m-lg-27 {
    margin: 13.5rem !important;
  }

  .mt-lg-27,
  .my-lg-27 {
    margin-top: 13.5rem !important;
  }

  .mr-lg-27,
  .mx-lg-27 {
    margin-right: 13.5rem !important;
  }

  .mb-lg-27,
  .my-lg-27 {
    margin-bottom: 13.5rem !important;
  }

  .ml-lg-27,
  .mx-lg-27 {
    margin-left: 13.5rem !important;
  }

  .m-lg-28 {
    margin: 14rem !important;
  }

  .mt-lg-28,
  .my-lg-28 {
    margin-top: 14rem !important;
  }

  .mr-lg-28,
  .mx-lg-28 {
    margin-right: 14rem !important;
  }

  .mb-lg-28,
  .my-lg-28 {
    margin-bottom: 14rem !important;
  }

  .ml-lg-28,
  .mx-lg-28 {
    margin-left: 14rem !important;
  }

  .m-lg-29 {
    margin: 14.5rem !important;
  }

  .mt-lg-29,
  .my-lg-29 {
    margin-top: 14.5rem !important;
  }

  .mr-lg-29,
  .mx-lg-29 {
    margin-right: 14.5rem !important;
  }

  .mb-lg-29,
  .my-lg-29 {
    margin-bottom: 14.5rem !important;
  }

  .ml-lg-29,
  .mx-lg-29 {
    margin-left: 14.5rem !important;
  }

  .m-lg-30 {
    margin: 15rem !important;
  }

  .mt-lg-30,
  .my-lg-30 {
    margin-top: 15rem !important;
  }

  .mr-lg-30,
  .mx-lg-30 {
    margin-right: 15rem !important;
  }

  .mb-lg-30,
  .my-lg-30 {
    margin-bottom: 15rem !important;
  }

  .ml-lg-30,
  .mx-lg-30 {
    margin-left: 15rem !important;
  }

  .m-lg-31 {
    margin: 15.5rem !important;
  }

  .mt-lg-31,
  .my-lg-31 {
    margin-top: 15.5rem !important;
  }

  .mr-lg-31,
  .mx-lg-31 {
    margin-right: 15.5rem !important;
  }

  .mb-lg-31,
  .my-lg-31 {
    margin-bottom: 15.5rem !important;
  }

  .ml-lg-31,
  .mx-lg-31 {
    margin-left: 15.5rem !important;
  }

  .m-lg-32 {
    margin: 16rem !important;
  }

  .mt-lg-32,
  .my-lg-32 {
    margin-top: 16rem !important;
  }

  .mr-lg-32,
  .mx-lg-32 {
    margin-right: 16rem !important;
  }

  .mb-lg-32,
  .my-lg-32 {
    margin-bottom: 16rem !important;
  }

  .ml-lg-32,
  .mx-lg-32 {
    margin-left: 16rem !important;
  }

  .m-lg-33 {
    margin: 16.5rem !important;
  }

  .mt-lg-33,
  .my-lg-33 {
    margin-top: 16.5rem !important;
  }

  .mr-lg-33,
  .mx-lg-33 {
    margin-right: 16.5rem !important;
  }

  .mb-lg-33,
  .my-lg-33 {
    margin-bottom: 16.5rem !important;
  }

  .ml-lg-33,
  .mx-lg-33 {
    margin-left: 16.5rem !important;
  }

  .m-lg-34 {
    margin: 17rem !important;
  }

  .mt-lg-34,
  .my-lg-34 {
    margin-top: 17rem !important;
  }

  .mr-lg-34,
  .mx-lg-34 {
    margin-right: 17rem !important;
  }

  .mb-lg-34,
  .my-lg-34 {
    margin-bottom: 17rem !important;
  }

  .ml-lg-34,
  .mx-lg-34 {
    margin-left: 17rem !important;
  }

  .m-lg-35 {
    margin: 17.5rem !important;
  }

  .mt-lg-35,
  .my-lg-35 {
    margin-top: 17.5rem !important;
  }

  .mr-lg-35,
  .mx-lg-35 {
    margin-right: 17.5rem !important;
  }

  .mb-lg-35,
  .my-lg-35 {
    margin-bottom: 17.5rem !important;
  }

  .ml-lg-35,
  .mx-lg-35 {
    margin-left: 17.5rem !important;
  }

  .m-lg-36 {
    margin: 18rem !important;
  }

  .mt-lg-36,
  .my-lg-36 {
    margin-top: 18rem !important;
  }

  .mr-lg-36,
  .mx-lg-36 {
    margin-right: 18rem !important;
  }

  .mb-lg-36,
  .my-lg-36 {
    margin-bottom: 18rem !important;
  }

  .ml-lg-36,
  .mx-lg-36 {
    margin-left: 18rem !important;
  }

  .m-lg-37 {
    margin: 18.5rem !important;
  }

  .mt-lg-37,
  .my-lg-37 {
    margin-top: 18.5rem !important;
  }

  .mr-lg-37,
  .mx-lg-37 {
    margin-right: 18.5rem !important;
  }

  .mb-lg-37,
  .my-lg-37 {
    margin-bottom: 18.5rem !important;
  }

  .ml-lg-37,
  .mx-lg-37 {
    margin-left: 18.5rem !important;
  }

  .m-lg-38 {
    margin: 19rem !important;
  }

  .mt-lg-38,
  .my-lg-38 {
    margin-top: 19rem !important;
  }

  .mr-lg-38,
  .mx-lg-38 {
    margin-right: 19rem !important;
  }

  .mb-lg-38,
  .my-lg-38 {
    margin-bottom: 19rem !important;
  }

  .ml-lg-38,
  .mx-lg-38 {
    margin-left: 19rem !important;
  }

  .m-lg-39 {
    margin: 19.5rem !important;
  }

  .mt-lg-39,
  .my-lg-39 {
    margin-top: 19.5rem !important;
  }

  .mr-lg-39,
  .mx-lg-39 {
    margin-right: 19.5rem !important;
  }

  .mb-lg-39,
  .my-lg-39 {
    margin-bottom: 19.5rem !important;
  }

  .ml-lg-39,
  .mx-lg-39 {
    margin-left: 19.5rem !important;
  }

  .m-lg-40 {
    margin: 20rem !important;
  }

  .mt-lg-40,
  .my-lg-40 {
    margin-top: 20rem !important;
  }

  .mr-lg-40,
  .mx-lg-40 {
    margin-right: 20rem !important;
  }

  .mb-lg-40,
  .my-lg-40 {
    margin-bottom: 20rem !important;
  }

  .ml-lg-40,
  .mx-lg-40 {
    margin-left: 20rem !important;
  }

  .m-lg-41 {
    margin: 20.5rem !important;
  }

  .mt-lg-41,
  .my-lg-41 {
    margin-top: 20.5rem !important;
  }

  .mr-lg-41,
  .mx-lg-41 {
    margin-right: 20.5rem !important;
  }

  .mb-lg-41,
  .my-lg-41 {
    margin-bottom: 20.5rem !important;
  }

  .ml-lg-41,
  .mx-lg-41 {
    margin-left: 20.5rem !important;
  }

  .m-lg-42 {
    margin: 21rem !important;
  }

  .mt-lg-42,
  .my-lg-42 {
    margin-top: 21rem !important;
  }

  .mr-lg-42,
  .mx-lg-42 {
    margin-right: 21rem !important;
  }

  .mb-lg-42,
  .my-lg-42 {
    margin-bottom: 21rem !important;
  }

  .ml-lg-42,
  .mx-lg-42 {
    margin-left: 21rem !important;
  }

  .m-lg-43 {
    margin: 21.5rem !important;
  }

  .mt-lg-43,
  .my-lg-43 {
    margin-top: 21.5rem !important;
  }

  .mr-lg-43,
  .mx-lg-43 {
    margin-right: 21.5rem !important;
  }

  .mb-lg-43,
  .my-lg-43 {
    margin-bottom: 21.5rem !important;
  }

  .ml-lg-43,
  .mx-lg-43 {
    margin-left: 21.5rem !important;
  }

  .m-lg-44 {
    margin: 22rem !important;
  }

  .mt-lg-44,
  .my-lg-44 {
    margin-top: 22rem !important;
  }

  .mr-lg-44,
  .mx-lg-44 {
    margin-right: 22rem !important;
  }

  .mb-lg-44,
  .my-lg-44 {
    margin-bottom: 22rem !important;
  }

  .ml-lg-44,
  .mx-lg-44 {
    margin-left: 22rem !important;
  }

  .m-lg-45 {
    margin: 22.5rem !important;
  }

  .mt-lg-45,
  .my-lg-45 {
    margin-top: 22.5rem !important;
  }

  .mr-lg-45,
  .mx-lg-45 {
    margin-right: 22.5rem !important;
  }

  .mb-lg-45,
  .my-lg-45 {
    margin-bottom: 22.5rem !important;
  }

  .ml-lg-45,
  .mx-lg-45 {
    margin-left: 22.5rem !important;
  }

  .m-lg-46 {
    margin: 23rem !important;
  }

  .mt-lg-46,
  .my-lg-46 {
    margin-top: 23rem !important;
  }

  .mr-lg-46,
  .mx-lg-46 {
    margin-right: 23rem !important;
  }

  .mb-lg-46,
  .my-lg-46 {
    margin-bottom: 23rem !important;
  }

  .ml-lg-46,
  .mx-lg-46 {
    margin-left: 23rem !important;
  }

  .m-lg-47 {
    margin: 23.5rem !important;
  }

  .mt-lg-47,
  .my-lg-47 {
    margin-top: 23.5rem !important;
  }

  .mr-lg-47,
  .mx-lg-47 {
    margin-right: 23.5rem !important;
  }

  .mb-lg-47,
  .my-lg-47 {
    margin-bottom: 23.5rem !important;
  }

  .ml-lg-47,
  .mx-lg-47 {
    margin-left: 23.5rem !important;
  }

  .m-lg-48 {
    margin: 24rem !important;
  }

  .mt-lg-48,
  .my-lg-48 {
    margin-top: 24rem !important;
  }

  .mr-lg-48,
  .mx-lg-48 {
    margin-right: 24rem !important;
  }

  .mb-lg-48,
  .my-lg-48 {
    margin-bottom: 24rem !important;
  }

  .ml-lg-48,
  .mx-lg-48 {
    margin-left: 24rem !important;
  }

  .m-lg-49 {
    margin: 24.5rem !important;
  }

  .mt-lg-49,
  .my-lg-49 {
    margin-top: 24.5rem !important;
  }

  .mr-lg-49,
  .mx-lg-49 {
    margin-right: 24.5rem !important;
  }

  .mb-lg-49,
  .my-lg-49 {
    margin-bottom: 24.5rem !important;
  }

  .ml-lg-49,
  .mx-lg-49 {
    margin-left: 24.5rem !important;
  }

  .m-lg-50 {
    margin: 25rem !important;
  }

  .mt-lg-50,
  .my-lg-50 {
    margin-top: 25rem !important;
  }

  .mr-lg-50,
  .mx-lg-50 {
    margin-right: 25rem !important;
  }

  .mb-lg-50,
  .my-lg-50 {
    margin-bottom: 25rem !important;
  }

  .ml-lg-50,
  .mx-lg-50 {
    margin-left: 25rem !important;
  }

  .m-lg-51 {
    margin: 25.5rem !important;
  }

  .mt-lg-51,
  .my-lg-51 {
    margin-top: 25.5rem !important;
  }

  .mr-lg-51,
  .mx-lg-51 {
    margin-right: 25.5rem !important;
  }

  .mb-lg-51,
  .my-lg-51 {
    margin-bottom: 25.5rem !important;
  }

  .ml-lg-51,
  .mx-lg-51 {
    margin-left: 25.5rem !important;
  }

  .m-lg-52 {
    margin: 26rem !important;
  }

  .mt-lg-52,
  .my-lg-52 {
    margin-top: 26rem !important;
  }

  .mr-lg-52,
  .mx-lg-52 {
    margin-right: 26rem !important;
  }

  .mb-lg-52,
  .my-lg-52 {
    margin-bottom: 26rem !important;
  }

  .ml-lg-52,
  .mx-lg-52 {
    margin-left: 26rem !important;
  }

  .m-lg-53 {
    margin: 26.5rem !important;
  }

  .mt-lg-53,
  .my-lg-53 {
    margin-top: 26.5rem !important;
  }

  .mr-lg-53,
  .mx-lg-53 {
    margin-right: 26.5rem !important;
  }

  .mb-lg-53,
  .my-lg-53 {
    margin-bottom: 26.5rem !important;
  }

  .ml-lg-53,
  .mx-lg-53 {
    margin-left: 26.5rem !important;
  }

  .m-lg-54 {
    margin: 27rem !important;
  }

  .mt-lg-54,
  .my-lg-54 {
    margin-top: 27rem !important;
  }

  .mr-lg-54,
  .mx-lg-54 {
    margin-right: 27rem !important;
  }

  .mb-lg-54,
  .my-lg-54 {
    margin-bottom: 27rem !important;
  }

  .ml-lg-54,
  .mx-lg-54 {
    margin-left: 27rem !important;
  }

  .m-lg-55 {
    margin: 27.5rem !important;
  }

  .mt-lg-55,
  .my-lg-55 {
    margin-top: 27.5rem !important;
  }

  .mr-lg-55,
  .mx-lg-55 {
    margin-right: 27.5rem !important;
  }

  .mb-lg-55,
  .my-lg-55 {
    margin-bottom: 27.5rem !important;
  }

  .ml-lg-55,
  .mx-lg-55 {
    margin-left: 27.5rem !important;
  }

  .m-lg-56 {
    margin: 28rem !important;
  }

  .mt-lg-56,
  .my-lg-56 {
    margin-top: 28rem !important;
  }

  .mr-lg-56,
  .mx-lg-56 {
    margin-right: 28rem !important;
  }

  .mb-lg-56,
  .my-lg-56 {
    margin-bottom: 28rem !important;
  }

  .ml-lg-56,
  .mx-lg-56 {
    margin-left: 28rem !important;
  }

  .m-lg-57 {
    margin: 28.5rem !important;
  }

  .mt-lg-57,
  .my-lg-57 {
    margin-top: 28.5rem !important;
  }

  .mr-lg-57,
  .mx-lg-57 {
    margin-right: 28.5rem !important;
  }

  .mb-lg-57,
  .my-lg-57 {
    margin-bottom: 28.5rem !important;
  }

  .ml-lg-57,
  .mx-lg-57 {
    margin-left: 28.5rem !important;
  }

  .m-lg-58 {
    margin: 29rem !important;
  }

  .mt-lg-58,
  .my-lg-58 {
    margin-top: 29rem !important;
  }

  .mr-lg-58,
  .mx-lg-58 {
    margin-right: 29rem !important;
  }

  .mb-lg-58,
  .my-lg-58 {
    margin-bottom: 29rem !important;
  }

  .ml-lg-58,
  .mx-lg-58 {
    margin-left: 29rem !important;
  }

  .m-lg-59 {
    margin: 29.5rem !important;
  }

  .mt-lg-59,
  .my-lg-59 {
    margin-top: 29.5rem !important;
  }

  .mr-lg-59,
  .mx-lg-59 {
    margin-right: 29.5rem !important;
  }

  .mb-lg-59,
  .my-lg-59 {
    margin-bottom: 29.5rem !important;
  }

  .ml-lg-59,
  .mx-lg-59 {
    margin-left: 29.5rem !important;
  }

  .m-lg-60 {
    margin: 30rem !important;
  }

  .mt-lg-60,
  .my-lg-60 {
    margin-top: 30rem !important;
  }

  .mr-lg-60,
  .mx-lg-60 {
    margin-right: 30rem !important;
  }

  .mb-lg-60,
  .my-lg-60 {
    margin-bottom: 30rem !important;
  }

  .ml-lg-60,
  .mx-lg-60 {
    margin-left: 30rem !important;
  }

  .m-lg-61 {
    margin: 30.5rem !important;
  }

  .mt-lg-61,
  .my-lg-61 {
    margin-top: 30.5rem !important;
  }

  .mr-lg-61,
  .mx-lg-61 {
    margin-right: 30.5rem !important;
  }

  .mb-lg-61,
  .my-lg-61 {
    margin-bottom: 30.5rem !important;
  }

  .ml-lg-61,
  .mx-lg-61 {
    margin-left: 30.5rem !important;
  }

  .m-lg-62 {
    margin: 31rem !important;
  }

  .mt-lg-62,
  .my-lg-62 {
    margin-top: 31rem !important;
  }

  .mr-lg-62,
  .mx-lg-62 {
    margin-right: 31rem !important;
  }

  .mb-lg-62,
  .my-lg-62 {
    margin-bottom: 31rem !important;
  }

  .ml-lg-62,
  .mx-lg-62 {
    margin-left: 31rem !important;
  }

  .m-lg-63 {
    margin: 31.5rem !important;
  }

  .mt-lg-63,
  .my-lg-63 {
    margin-top: 31.5rem !important;
  }

  .mr-lg-63,
  .mx-lg-63 {
    margin-right: 31.5rem !important;
  }

  .mb-lg-63,
  .my-lg-63 {
    margin-bottom: 31.5rem !important;
  }

  .ml-lg-63,
  .mx-lg-63 {
    margin-left: 31.5rem !important;
  }

  .m-lg-64 {
    margin: 32rem !important;
  }

  .mt-lg-64,
  .my-lg-64 {
    margin-top: 32rem !important;
  }

  .mr-lg-64,
  .mx-lg-64 {
    margin-right: 32rem !important;
  }

  .mb-lg-64,
  .my-lg-64 {
    margin-bottom: 32rem !important;
  }

  .ml-lg-64,
  .mx-lg-64 {
    margin-left: 32rem !important;
  }

  .m-lg-65 {
    margin: 32.5rem !important;
  }

  .mt-lg-65,
  .my-lg-65 {
    margin-top: 32.5rem !important;
  }

  .mr-lg-65,
  .mx-lg-65 {
    margin-right: 32.5rem !important;
  }

  .mb-lg-65,
  .my-lg-65 {
    margin-bottom: 32.5rem !important;
  }

  .ml-lg-65,
  .mx-lg-65 {
    margin-left: 32.5rem !important;
  }

  .m-lg-66 {
    margin: 33rem !important;
  }

  .mt-lg-66,
  .my-lg-66 {
    margin-top: 33rem !important;
  }

  .mr-lg-66,
  .mx-lg-66 {
    margin-right: 33rem !important;
  }

  .mb-lg-66,
  .my-lg-66 {
    margin-bottom: 33rem !important;
  }

  .ml-lg-66,
  .mx-lg-66 {
    margin-left: 33rem !important;
  }

  .m-lg-67 {
    margin: 33.5rem !important;
  }

  .mt-lg-67,
  .my-lg-67 {
    margin-top: 33.5rem !important;
  }

  .mr-lg-67,
  .mx-lg-67 {
    margin-right: 33.5rem !important;
  }

  .mb-lg-67,
  .my-lg-67 {
    margin-bottom: 33.5rem !important;
  }

  .ml-lg-67,
  .mx-lg-67 {
    margin-left: 33.5rem !important;
  }

  .m-lg-68 {
    margin: 34rem !important;
  }

  .mt-lg-68,
  .my-lg-68 {
    margin-top: 34rem !important;
  }

  .mr-lg-68,
  .mx-lg-68 {
    margin-right: 34rem !important;
  }

  .mb-lg-68,
  .my-lg-68 {
    margin-bottom: 34rem !important;
  }

  .ml-lg-68,
  .mx-lg-68 {
    margin-left: 34rem !important;
  }

  .m-lg-69 {
    margin: 34.5rem !important;
  }

  .mt-lg-69,
  .my-lg-69 {
    margin-top: 34.5rem !important;
  }

  .mr-lg-69,
  .mx-lg-69 {
    margin-right: 34.5rem !important;
  }

  .mb-lg-69,
  .my-lg-69 {
    margin-bottom: 34.5rem !important;
  }

  .ml-lg-69,
  .mx-lg-69 {
    margin-left: 34.5rem !important;
  }

  .m-lg-70 {
    margin: 35rem !important;
  }

  .mt-lg-70,
  .my-lg-70 {
    margin-top: 35rem !important;
  }

  .mr-lg-70,
  .mx-lg-70 {
    margin-right: 35rem !important;
  }

  .mb-lg-70,
  .my-lg-70 {
    margin-bottom: 35rem !important;
  }

  .ml-lg-70,
  .mx-lg-70 {
    margin-left: 35rem !important;
  }

  .m-lg-71 {
    margin: 35.5rem !important;
  }

  .mt-lg-71,
  .my-lg-71 {
    margin-top: 35.5rem !important;
  }

  .mr-lg-71,
  .mx-lg-71 {
    margin-right: 35.5rem !important;
  }

  .mb-lg-71,
  .my-lg-71 {
    margin-bottom: 35.5rem !important;
  }

  .ml-lg-71,
  .mx-lg-71 {
    margin-left: 35.5rem !important;
  }

  .m-lg-72 {
    margin: 36rem !important;
  }

  .mt-lg-72,
  .my-lg-72 {
    margin-top: 36rem !important;
  }

  .mr-lg-72,
  .mx-lg-72 {
    margin-right: 36rem !important;
  }

  .mb-lg-72,
  .my-lg-72 {
    margin-bottom: 36rem !important;
  }

  .ml-lg-72,
  .mx-lg-72 {
    margin-left: 36rem !important;
  }

  .m-lg-73 {
    margin: 36.5rem !important;
  }

  .mt-lg-73,
  .my-lg-73 {
    margin-top: 36.5rem !important;
  }

  .mr-lg-73,
  .mx-lg-73 {
    margin-right: 36.5rem !important;
  }

  .mb-lg-73,
  .my-lg-73 {
    margin-bottom: 36.5rem !important;
  }

  .ml-lg-73,
  .mx-lg-73 {
    margin-left: 36.5rem !important;
  }

  .m-lg-74 {
    margin: 37rem !important;
  }

  .mt-lg-74,
  .my-lg-74 {
    margin-top: 37rem !important;
  }

  .mr-lg-74,
  .mx-lg-74 {
    margin-right: 37rem !important;
  }

  .mb-lg-74,
  .my-lg-74 {
    margin-bottom: 37rem !important;
  }

  .ml-lg-74,
  .mx-lg-74 {
    margin-left: 37rem !important;
  }

  .m-lg-75 {
    margin: 37.5rem !important;
  }

  .mt-lg-75,
  .my-lg-75 {
    margin-top: 37.5rem !important;
  }

  .mr-lg-75,
  .mx-lg-75 {
    margin-right: 37.5rem !important;
  }

  .mb-lg-75,
  .my-lg-75 {
    margin-bottom: 37.5rem !important;
  }

  .ml-lg-75,
  .mx-lg-75 {
    margin-left: 37.5rem !important;
  }

  .m-lg-76 {
    margin: 38rem !important;
  }

  .mt-lg-76,
  .my-lg-76 {
    margin-top: 38rem !important;
  }

  .mr-lg-76,
  .mx-lg-76 {
    margin-right: 38rem !important;
  }

  .mb-lg-76,
  .my-lg-76 {
    margin-bottom: 38rem !important;
  }

  .ml-lg-76,
  .mx-lg-76 {
    margin-left: 38rem !important;
  }

  .m-lg-77 {
    margin: 38.5rem !important;
  }

  .mt-lg-77,
  .my-lg-77 {
    margin-top: 38.5rem !important;
  }

  .mr-lg-77,
  .mx-lg-77 {
    margin-right: 38.5rem !important;
  }

  .mb-lg-77,
  .my-lg-77 {
    margin-bottom: 38.5rem !important;
  }

  .ml-lg-77,
  .mx-lg-77 {
    margin-left: 38.5rem !important;
  }

  .m-lg-78 {
    margin: 39rem !important;
  }

  .mt-lg-78,
  .my-lg-78 {
    margin-top: 39rem !important;
  }

  .mr-lg-78,
  .mx-lg-78 {
    margin-right: 39rem !important;
  }

  .mb-lg-78,
  .my-lg-78 {
    margin-bottom: 39rem !important;
  }

  .ml-lg-78,
  .mx-lg-78 {
    margin-left: 39rem !important;
  }

  .m-lg-79 {
    margin: 39.5rem !important;
  }

  .mt-lg-79,
  .my-lg-79 {
    margin-top: 39.5rem !important;
  }

  .mr-lg-79,
  .mx-lg-79 {
    margin-right: 39.5rem !important;
  }

  .mb-lg-79,
  .my-lg-79 {
    margin-bottom: 39.5rem !important;
  }

  .ml-lg-79,
  .mx-lg-79 {
    margin-left: 39.5rem !important;
  }

  .m-lg-80 {
    margin: 40rem !important;
  }

  .mt-lg-80,
  .my-lg-80 {
    margin-top: 40rem !important;
  }

  .mr-lg-80,
  .mx-lg-80 {
    margin-right: 40rem !important;
  }

  .mb-lg-80,
  .my-lg-80 {
    margin-bottom: 40rem !important;
  }

  .ml-lg-80,
  .mx-lg-80 {
    margin-left: 40rem !important;
  }

  .m-lg-81 {
    margin: 40.5rem !important;
  }

  .mt-lg-81,
  .my-lg-81 {
    margin-top: 40.5rem !important;
  }

  .mr-lg-81,
  .mx-lg-81 {
    margin-right: 40.5rem !important;
  }

  .mb-lg-81,
  .my-lg-81 {
    margin-bottom: 40.5rem !important;
  }

  .ml-lg-81,
  .mx-lg-81 {
    margin-left: 40.5rem !important;
  }

  .m-lg-82 {
    margin: 41rem !important;
  }

  .mt-lg-82,
  .my-lg-82 {
    margin-top: 41rem !important;
  }

  .mr-lg-82,
  .mx-lg-82 {
    margin-right: 41rem !important;
  }

  .mb-lg-82,
  .my-lg-82 {
    margin-bottom: 41rem !important;
  }

  .ml-lg-82,
  .mx-lg-82 {
    margin-left: 41rem !important;
  }

  .m-lg-83 {
    margin: 41.5rem !important;
  }

  .mt-lg-83,
  .my-lg-83 {
    margin-top: 41.5rem !important;
  }

  .mr-lg-83,
  .mx-lg-83 {
    margin-right: 41.5rem !important;
  }

  .mb-lg-83,
  .my-lg-83 {
    margin-bottom: 41.5rem !important;
  }

  .ml-lg-83,
  .mx-lg-83 {
    margin-left: 41.5rem !important;
  }

  .m-lg-84 {
    margin: 42rem !important;
  }

  .mt-lg-84,
  .my-lg-84 {
    margin-top: 42rem !important;
  }

  .mr-lg-84,
  .mx-lg-84 {
    margin-right: 42rem !important;
  }

  .mb-lg-84,
  .my-lg-84 {
    margin-bottom: 42rem !important;
  }

  .ml-lg-84,
  .mx-lg-84 {
    margin-left: 42rem !important;
  }

  .m-lg-85 {
    margin: 42.5rem !important;
  }

  .mt-lg-85,
  .my-lg-85 {
    margin-top: 42.5rem !important;
  }

  .mr-lg-85,
  .mx-lg-85 {
    margin-right: 42.5rem !important;
  }

  .mb-lg-85,
  .my-lg-85 {
    margin-bottom: 42.5rem !important;
  }

  .ml-lg-85,
  .mx-lg-85 {
    margin-left: 42.5rem !important;
  }

  .m-lg-86 {
    margin: 43rem !important;
  }

  .mt-lg-86,
  .my-lg-86 {
    margin-top: 43rem !important;
  }

  .mr-lg-86,
  .mx-lg-86 {
    margin-right: 43rem !important;
  }

  .mb-lg-86,
  .my-lg-86 {
    margin-bottom: 43rem !important;
  }

  .ml-lg-86,
  .mx-lg-86 {
    margin-left: 43rem !important;
  }

  .m-lg-87 {
    margin: 43.5rem !important;
  }

  .mt-lg-87,
  .my-lg-87 {
    margin-top: 43.5rem !important;
  }

  .mr-lg-87,
  .mx-lg-87 {
    margin-right: 43.5rem !important;
  }

  .mb-lg-87,
  .my-lg-87 {
    margin-bottom: 43.5rem !important;
  }

  .ml-lg-87,
  .mx-lg-87 {
    margin-left: 43.5rem !important;
  }

  .m-lg-88 {
    margin: 44rem !important;
  }

  .mt-lg-88,
  .my-lg-88 {
    margin-top: 44rem !important;
  }

  .mr-lg-88,
  .mx-lg-88 {
    margin-right: 44rem !important;
  }

  .mb-lg-88,
  .my-lg-88 {
    margin-bottom: 44rem !important;
  }

  .ml-lg-88,
  .mx-lg-88 {
    margin-left: 44rem !important;
  }

  .m-lg-89 {
    margin: 44.5rem !important;
  }

  .mt-lg-89,
  .my-lg-89 {
    margin-top: 44.5rem !important;
  }

  .mr-lg-89,
  .mx-lg-89 {
    margin-right: 44.5rem !important;
  }

  .mb-lg-89,
  .my-lg-89 {
    margin-bottom: 44.5rem !important;
  }

  .ml-lg-89,
  .mx-lg-89 {
    margin-left: 44.5rem !important;
  }

  .m-lg-90 {
    margin: 45rem !important;
  }

  .mt-lg-90,
  .my-lg-90 {
    margin-top: 45rem !important;
  }

  .mr-lg-90,
  .mx-lg-90 {
    margin-right: 45rem !important;
  }

  .mb-lg-90,
  .my-lg-90 {
    margin-bottom: 45rem !important;
  }

  .ml-lg-90,
  .mx-lg-90 {
    margin-left: 45rem !important;
  }

  .m-lg-91 {
    margin: 45.5rem !important;
  }

  .mt-lg-91,
  .my-lg-91 {
    margin-top: 45.5rem !important;
  }

  .mr-lg-91,
  .mx-lg-91 {
    margin-right: 45.5rem !important;
  }

  .mb-lg-91,
  .my-lg-91 {
    margin-bottom: 45.5rem !important;
  }

  .ml-lg-91,
  .mx-lg-91 {
    margin-left: 45.5rem !important;
  }

  .m-lg-92 {
    margin: 46rem !important;
  }

  .mt-lg-92,
  .my-lg-92 {
    margin-top: 46rem !important;
  }

  .mr-lg-92,
  .mx-lg-92 {
    margin-right: 46rem !important;
  }

  .mb-lg-92,
  .my-lg-92 {
    margin-bottom: 46rem !important;
  }

  .ml-lg-92,
  .mx-lg-92 {
    margin-left: 46rem !important;
  }

  .m-lg-93 {
    margin: 46.5rem !important;
  }

  .mt-lg-93,
  .my-lg-93 {
    margin-top: 46.5rem !important;
  }

  .mr-lg-93,
  .mx-lg-93 {
    margin-right: 46.5rem !important;
  }

  .mb-lg-93,
  .my-lg-93 {
    margin-bottom: 46.5rem !important;
  }

  .ml-lg-93,
  .mx-lg-93 {
    margin-left: 46.5rem !important;
  }

  .m-lg-94 {
    margin: 47rem !important;
  }

  .mt-lg-94,
  .my-lg-94 {
    margin-top: 47rem !important;
  }

  .mr-lg-94,
  .mx-lg-94 {
    margin-right: 47rem !important;
  }

  .mb-lg-94,
  .my-lg-94 {
    margin-bottom: 47rem !important;
  }

  .ml-lg-94,
  .mx-lg-94 {
    margin-left: 47rem !important;
  }

  .m-lg-95 {
    margin: 47.5rem !important;
  }

  .mt-lg-95,
  .my-lg-95 {
    margin-top: 47.5rem !important;
  }

  .mr-lg-95,
  .mx-lg-95 {
    margin-right: 47.5rem !important;
  }

  .mb-lg-95,
  .my-lg-95 {
    margin-bottom: 47.5rem !important;
  }

  .ml-lg-95,
  .mx-lg-95 {
    margin-left: 47.5rem !important;
  }

  .m-lg-96 {
    margin: 48rem !important;
  }

  .mt-lg-96,
  .my-lg-96 {
    margin-top: 48rem !important;
  }

  .mr-lg-96,
  .mx-lg-96 {
    margin-right: 48rem !important;
  }

  .mb-lg-96,
  .my-lg-96 {
    margin-bottom: 48rem !important;
  }

  .ml-lg-96,
  .mx-lg-96 {
    margin-left: 48rem !important;
  }

  .m-lg-97 {
    margin: 48.5rem !important;
  }

  .mt-lg-97,
  .my-lg-97 {
    margin-top: 48.5rem !important;
  }

  .mr-lg-97,
  .mx-lg-97 {
    margin-right: 48.5rem !important;
  }

  .mb-lg-97,
  .my-lg-97 {
    margin-bottom: 48.5rem !important;
  }

  .ml-lg-97,
  .mx-lg-97 {
    margin-left: 48.5rem !important;
  }

  .m-lg-98 {
    margin: 49rem !important;
  }

  .mt-lg-98,
  .my-lg-98 {
    margin-top: 49rem !important;
  }

  .mr-lg-98,
  .mx-lg-98 {
    margin-right: 49rem !important;
  }

  .mb-lg-98,
  .my-lg-98 {
    margin-bottom: 49rem !important;
  }

  .ml-lg-98,
  .mx-lg-98 {
    margin-left: 49rem !important;
  }

  .m-lg-99 {
    margin: 49.5rem !important;
  }

  .mt-lg-99,
  .my-lg-99 {
    margin-top: 49.5rem !important;
  }

  .mr-lg-99,
  .mx-lg-99 {
    margin-right: 49.5rem !important;
  }

  .mb-lg-99,
  .my-lg-99 {
    margin-bottom: 49.5rem !important;
  }

  .ml-lg-99,
  .mx-lg-99 {
    margin-left: 49.5rem !important;
  }

  .m-lg-100 {
    margin: 50rem !important;
  }

  .mt-lg-100,
  .my-lg-100 {
    margin-top: 50rem !important;
  }

  .mr-lg-100,
  .mx-lg-100 {
    margin-right: 50rem !important;
  }

  .mb-lg-100,
  .my-lg-100 {
    margin-bottom: 50rem !important;
  }

  .ml-lg-100,
  .mx-lg-100 {
    margin-left: 50rem !important;
  }

  .m-lg-101 {
    margin: 50.5rem !important;
  }

  .mt-lg-101,
  .my-lg-101 {
    margin-top: 50.5rem !important;
  }

  .mr-lg-101,
  .mx-lg-101 {
    margin-right: 50.5rem !important;
  }

  .mb-lg-101,
  .my-lg-101 {
    margin-bottom: 50.5rem !important;
  }

  .ml-lg-101,
  .mx-lg-101 {
    margin-left: 50.5rem !important;
  }

  .m-lg-102 {
    margin: 51rem !important;
  }

  .mt-lg-102,
  .my-lg-102 {
    margin-top: 51rem !important;
  }

  .mr-lg-102,
  .mx-lg-102 {
    margin-right: 51rem !important;
  }

  .mb-lg-102,
  .my-lg-102 {
    margin-bottom: 51rem !important;
  }

  .ml-lg-102,
  .mx-lg-102 {
    margin-left: 51rem !important;
  }

  .m-lg-103 {
    margin: 51.5rem !important;
  }

  .mt-lg-103,
  .my-lg-103 {
    margin-top: 51.5rem !important;
  }

  .mr-lg-103,
  .mx-lg-103 {
    margin-right: 51.5rem !important;
  }

  .mb-lg-103,
  .my-lg-103 {
    margin-bottom: 51.5rem !important;
  }

  .ml-lg-103,
  .mx-lg-103 {
    margin-left: 51.5rem !important;
  }

  .m-lg-104 {
    margin: 52rem !important;
  }

  .mt-lg-104,
  .my-lg-104 {
    margin-top: 52rem !important;
  }

  .mr-lg-104,
  .mx-lg-104 {
    margin-right: 52rem !important;
  }

  .mb-lg-104,
  .my-lg-104 {
    margin-bottom: 52rem !important;
  }

  .ml-lg-104,
  .mx-lg-104 {
    margin-left: 52rem !important;
  }

  .m-lg-105 {
    margin: 52.5rem !important;
  }

  .mt-lg-105,
  .my-lg-105 {
    margin-top: 52.5rem !important;
  }

  .mr-lg-105,
  .mx-lg-105 {
    margin-right: 52.5rem !important;
  }

  .mb-lg-105,
  .my-lg-105 {
    margin-bottom: 52.5rem !important;
  }

  .ml-lg-105,
  .mx-lg-105 {
    margin-left: 52.5rem !important;
  }

  .m-lg-106 {
    margin: 53rem !important;
  }

  .mt-lg-106,
  .my-lg-106 {
    margin-top: 53rem !important;
  }

  .mr-lg-106,
  .mx-lg-106 {
    margin-right: 53rem !important;
  }

  .mb-lg-106,
  .my-lg-106 {
    margin-bottom: 53rem !important;
  }

  .ml-lg-106,
  .mx-lg-106 {
    margin-left: 53rem !important;
  }

  .m-lg-107 {
    margin: 53.5rem !important;
  }

  .mt-lg-107,
  .my-lg-107 {
    margin-top: 53.5rem !important;
  }

  .mr-lg-107,
  .mx-lg-107 {
    margin-right: 53.5rem !important;
  }

  .mb-lg-107,
  .my-lg-107 {
    margin-bottom: 53.5rem !important;
  }

  .ml-lg-107,
  .mx-lg-107 {
    margin-left: 53.5rem !important;
  }

  .m-lg-108 {
    margin: 54rem !important;
  }

  .mt-lg-108,
  .my-lg-108 {
    margin-top: 54rem !important;
  }

  .mr-lg-108,
  .mx-lg-108 {
    margin-right: 54rem !important;
  }

  .mb-lg-108,
  .my-lg-108 {
    margin-bottom: 54rem !important;
  }

  .ml-lg-108,
  .mx-lg-108 {
    margin-left: 54rem !important;
  }

  .m-lg-109 {
    margin: 54.5rem !important;
  }

  .mt-lg-109,
  .my-lg-109 {
    margin-top: 54.5rem !important;
  }

  .mr-lg-109,
  .mx-lg-109 {
    margin-right: 54.5rem !important;
  }

  .mb-lg-109,
  .my-lg-109 {
    margin-bottom: 54.5rem !important;
  }

  .ml-lg-109,
  .mx-lg-109 {
    margin-left: 54.5rem !important;
  }

  .m-lg-110 {
    margin: 55rem !important;
  }

  .mt-lg-110,
  .my-lg-110 {
    margin-top: 55rem !important;
  }

  .mr-lg-110,
  .mx-lg-110 {
    margin-right: 55rem !important;
  }

  .mb-lg-110,
  .my-lg-110 {
    margin-bottom: 55rem !important;
  }

  .ml-lg-110,
  .mx-lg-110 {
    margin-left: 55rem !important;
  }

  .m-lg-111 {
    margin: 55.5rem !important;
  }

  .mt-lg-111,
  .my-lg-111 {
    margin-top: 55.5rem !important;
  }

  .mr-lg-111,
  .mx-lg-111 {
    margin-right: 55.5rem !important;
  }

  .mb-lg-111,
  .my-lg-111 {
    margin-bottom: 55.5rem !important;
  }

  .ml-lg-111,
  .mx-lg-111 {
    margin-left: 55.5rem !important;
  }

  .m-lg-112 {
    margin: 56rem !important;
  }

  .mt-lg-112,
  .my-lg-112 {
    margin-top: 56rem !important;
  }

  .mr-lg-112,
  .mx-lg-112 {
    margin-right: 56rem !important;
  }

  .mb-lg-112,
  .my-lg-112 {
    margin-bottom: 56rem !important;
  }

  .ml-lg-112,
  .mx-lg-112 {
    margin-left: 56rem !important;
  }

  .m-lg-113 {
    margin: 56.5rem !important;
  }

  .mt-lg-113,
  .my-lg-113 {
    margin-top: 56.5rem !important;
  }

  .mr-lg-113,
  .mx-lg-113 {
    margin-right: 56.5rem !important;
  }

  .mb-lg-113,
  .my-lg-113 {
    margin-bottom: 56.5rem !important;
  }

  .ml-lg-113,
  .mx-lg-113 {
    margin-left: 56.5rem !important;
  }

  .m-lg-114 {
    margin: 57rem !important;
  }

  .mt-lg-114,
  .my-lg-114 {
    margin-top: 57rem !important;
  }

  .mr-lg-114,
  .mx-lg-114 {
    margin-right: 57rem !important;
  }

  .mb-lg-114,
  .my-lg-114 {
    margin-bottom: 57rem !important;
  }

  .ml-lg-114,
  .mx-lg-114 {
    margin-left: 57rem !important;
  }

  .m-lg-115 {
    margin: 57.5rem !important;
  }

  .mt-lg-115,
  .my-lg-115 {
    margin-top: 57.5rem !important;
  }

  .mr-lg-115,
  .mx-lg-115 {
    margin-right: 57.5rem !important;
  }

  .mb-lg-115,
  .my-lg-115 {
    margin-bottom: 57.5rem !important;
  }

  .ml-lg-115,
  .mx-lg-115 {
    margin-left: 57.5rem !important;
  }

  .m-lg-116 {
    margin: 58rem !important;
  }

  .mt-lg-116,
  .my-lg-116 {
    margin-top: 58rem !important;
  }

  .mr-lg-116,
  .mx-lg-116 {
    margin-right: 58rem !important;
  }

  .mb-lg-116,
  .my-lg-116 {
    margin-bottom: 58rem !important;
  }

  .ml-lg-116,
  .mx-lg-116 {
    margin-left: 58rem !important;
  }

  .m-lg-117 {
    margin: 58.5rem !important;
  }

  .mt-lg-117,
  .my-lg-117 {
    margin-top: 58.5rem !important;
  }

  .mr-lg-117,
  .mx-lg-117 {
    margin-right: 58.5rem !important;
  }

  .mb-lg-117,
  .my-lg-117 {
    margin-bottom: 58.5rem !important;
  }

  .ml-lg-117,
  .mx-lg-117 {
    margin-left: 58.5rem !important;
  }

  .m-lg-118 {
    margin: 59rem !important;
  }

  .mt-lg-118,
  .my-lg-118 {
    margin-top: 59rem !important;
  }

  .mr-lg-118,
  .mx-lg-118 {
    margin-right: 59rem !important;
  }

  .mb-lg-118,
  .my-lg-118 {
    margin-bottom: 59rem !important;
  }

  .ml-lg-118,
  .mx-lg-118 {
    margin-left: 59rem !important;
  }

  .m-lg-119 {
    margin: 59.5rem !important;
  }

  .mt-lg-119,
  .my-lg-119 {
    margin-top: 59.5rem !important;
  }

  .mr-lg-119,
  .mx-lg-119 {
    margin-right: 59.5rem !important;
  }

  .mb-lg-119,
  .my-lg-119 {
    margin-bottom: 59.5rem !important;
  }

  .ml-lg-119,
  .mx-lg-119 {
    margin-left: 59.5rem !important;
  }

  .m-lg-120 {
    margin: 60rem !important;
  }

  .mt-lg-120,
  .my-lg-120 {
    margin-top: 60rem !important;
  }

  .mr-lg-120,
  .mx-lg-120 {
    margin-right: 60rem !important;
  }

  .mb-lg-120,
  .my-lg-120 {
    margin-bottom: 60rem !important;
  }

  .ml-lg-120,
  .mx-lg-120 {
    margin-left: 60rem !important;
  }

  .m-lg-121 {
    margin: 60.5rem !important;
  }

  .mt-lg-121,
  .my-lg-121 {
    margin-top: 60.5rem !important;
  }

  .mr-lg-121,
  .mx-lg-121 {
    margin-right: 60.5rem !important;
  }

  .mb-lg-121,
  .my-lg-121 {
    margin-bottom: 60.5rem !important;
  }

  .ml-lg-121,
  .mx-lg-121 {
    margin-left: 60.5rem !important;
  }

  .m-lg-122 {
    margin: 61rem !important;
  }

  .mt-lg-122,
  .my-lg-122 {
    margin-top: 61rem !important;
  }

  .mr-lg-122,
  .mx-lg-122 {
    margin-right: 61rem !important;
  }

  .mb-lg-122,
  .my-lg-122 {
    margin-bottom: 61rem !important;
  }

  .ml-lg-122,
  .mx-lg-122 {
    margin-left: 61rem !important;
  }

  .m-lg-123 {
    margin: 61.5rem !important;
  }

  .mt-lg-123,
  .my-lg-123 {
    margin-top: 61.5rem !important;
  }

  .mr-lg-123,
  .mx-lg-123 {
    margin-right: 61.5rem !important;
  }

  .mb-lg-123,
  .my-lg-123 {
    margin-bottom: 61.5rem !important;
  }

  .ml-lg-123,
  .mx-lg-123 {
    margin-left: 61.5rem !important;
  }

  .m-lg-124 {
    margin: 62rem !important;
  }

  .mt-lg-124,
  .my-lg-124 {
    margin-top: 62rem !important;
  }

  .mr-lg-124,
  .mx-lg-124 {
    margin-right: 62rem !important;
  }

  .mb-lg-124,
  .my-lg-124 {
    margin-bottom: 62rem !important;
  }

  .ml-lg-124,
  .mx-lg-124 {
    margin-left: 62rem !important;
  }

  .m-lg-125 {
    margin: 62.5rem !important;
  }

  .mt-lg-125,
  .my-lg-125 {
    margin-top: 62.5rem !important;
  }

  .mr-lg-125,
  .mx-lg-125 {
    margin-right: 62.5rem !important;
  }

  .mb-lg-125,
  .my-lg-125 {
    margin-bottom: 62.5rem !important;
  }

  .ml-lg-125,
  .mx-lg-125 {
    margin-left: 62.5rem !important;
  }

  .m-lg-126 {
    margin: 63rem !important;
  }

  .mt-lg-126,
  .my-lg-126 {
    margin-top: 63rem !important;
  }

  .mr-lg-126,
  .mx-lg-126 {
    margin-right: 63rem !important;
  }

  .mb-lg-126,
  .my-lg-126 {
    margin-bottom: 63rem !important;
  }

  .ml-lg-126,
  .mx-lg-126 {
    margin-left: 63rem !important;
  }

  .m-lg-127 {
    margin: 63.5rem !important;
  }

  .mt-lg-127,
  .my-lg-127 {
    margin-top: 63.5rem !important;
  }

  .mr-lg-127,
  .mx-lg-127 {
    margin-right: 63.5rem !important;
  }

  .mb-lg-127,
  .my-lg-127 {
    margin-bottom: 63.5rem !important;
  }

  .ml-lg-127,
  .mx-lg-127 {
    margin-left: 63.5rem !important;
  }

  .m-lg-128 {
    margin: 64rem !important;
  }

  .mt-lg-128,
  .my-lg-128 {
    margin-top: 64rem !important;
  }

  .mr-lg-128,
  .mx-lg-128 {
    margin-right: 64rem !important;
  }

  .mb-lg-128,
  .my-lg-128 {
    margin-bottom: 64rem !important;
  }

  .ml-lg-128,
  .mx-lg-128 {
    margin-left: 64rem !important;
  }

  .m-lg-129 {
    margin: 64.5rem !important;
  }

  .mt-lg-129,
  .my-lg-129 {
    margin-top: 64.5rem !important;
  }

  .mr-lg-129,
  .mx-lg-129 {
    margin-right: 64.5rem !important;
  }

  .mb-lg-129,
  .my-lg-129 {
    margin-bottom: 64.5rem !important;
  }

  .ml-lg-129,
  .mx-lg-129 {
    margin-left: 64.5rem !important;
  }

  .m-lg-130 {
    margin: 65rem !important;
  }

  .mt-lg-130,
  .my-lg-130 {
    margin-top: 65rem !important;
  }

  .mr-lg-130,
  .mx-lg-130 {
    margin-right: 65rem !important;
  }

  .mb-lg-130,
  .my-lg-130 {
    margin-bottom: 65rem !important;
  }

  .ml-lg-130,
  .mx-lg-130 {
    margin-left: 65rem !important;
  }

  .m-lg-131 {
    margin: 65.5rem !important;
  }

  .mt-lg-131,
  .my-lg-131 {
    margin-top: 65.5rem !important;
  }

  .mr-lg-131,
  .mx-lg-131 {
    margin-right: 65.5rem !important;
  }

  .mb-lg-131,
  .my-lg-131 {
    margin-bottom: 65.5rem !important;
  }

  .ml-lg-131,
  .mx-lg-131 {
    margin-left: 65.5rem !important;
  }

  .m-lg-132 {
    margin: 66rem !important;
  }

  .mt-lg-132,
  .my-lg-132 {
    margin-top: 66rem !important;
  }

  .mr-lg-132,
  .mx-lg-132 {
    margin-right: 66rem !important;
  }

  .mb-lg-132,
  .my-lg-132 {
    margin-bottom: 66rem !important;
  }

  .ml-lg-132,
  .mx-lg-132 {
    margin-left: 66rem !important;
  }

  .m-lg-133 {
    margin: 66.5rem !important;
  }

  .mt-lg-133,
  .my-lg-133 {
    margin-top: 66.5rem !important;
  }

  .mr-lg-133,
  .mx-lg-133 {
    margin-right: 66.5rem !important;
  }

  .mb-lg-133,
  .my-lg-133 {
    margin-bottom: 66.5rem !important;
  }

  .ml-lg-133,
  .mx-lg-133 {
    margin-left: 66.5rem !important;
  }

  .m-lg-134 {
    margin: 67rem !important;
  }

  .mt-lg-134,
  .my-lg-134 {
    margin-top: 67rem !important;
  }

  .mr-lg-134,
  .mx-lg-134 {
    margin-right: 67rem !important;
  }

  .mb-lg-134,
  .my-lg-134 {
    margin-bottom: 67rem !important;
  }

  .ml-lg-134,
  .mx-lg-134 {
    margin-left: 67rem !important;
  }

  .m-lg-135 {
    margin: 67.5rem !important;
  }

  .mt-lg-135,
  .my-lg-135 {
    margin-top: 67.5rem !important;
  }

  .mr-lg-135,
  .mx-lg-135 {
    margin-right: 67.5rem !important;
  }

  .mb-lg-135,
  .my-lg-135 {
    margin-bottom: 67.5rem !important;
  }

  .ml-lg-135,
  .mx-lg-135 {
    margin-left: 67.5rem !important;
  }

  .m-lg-136 {
    margin: 68rem !important;
  }

  .mt-lg-136,
  .my-lg-136 {
    margin-top: 68rem !important;
  }

  .mr-lg-136,
  .mx-lg-136 {
    margin-right: 68rem !important;
  }

  .mb-lg-136,
  .my-lg-136 {
    margin-bottom: 68rem !important;
  }

  .ml-lg-136,
  .mx-lg-136 {
    margin-left: 68rem !important;
  }

  .m-lg-137 {
    margin: 68.5rem !important;
  }

  .mt-lg-137,
  .my-lg-137 {
    margin-top: 68.5rem !important;
  }

  .mr-lg-137,
  .mx-lg-137 {
    margin-right: 68.5rem !important;
  }

  .mb-lg-137,
  .my-lg-137 {
    margin-bottom: 68.5rem !important;
  }

  .ml-lg-137,
  .mx-lg-137 {
    margin-left: 68.5rem !important;
  }

  .m-lg-138 {
    margin: 69rem !important;
  }

  .mt-lg-138,
  .my-lg-138 {
    margin-top: 69rem !important;
  }

  .mr-lg-138,
  .mx-lg-138 {
    margin-right: 69rem !important;
  }

  .mb-lg-138,
  .my-lg-138 {
    margin-bottom: 69rem !important;
  }

  .ml-lg-138,
  .mx-lg-138 {
    margin-left: 69rem !important;
  }

  .m-lg-139 {
    margin: 69.5rem !important;
  }

  .mt-lg-139,
  .my-lg-139 {
    margin-top: 69.5rem !important;
  }

  .mr-lg-139,
  .mx-lg-139 {
    margin-right: 69.5rem !important;
  }

  .mb-lg-139,
  .my-lg-139 {
    margin-bottom: 69.5rem !important;
  }

  .ml-lg-139,
  .mx-lg-139 {
    margin-left: 69.5rem !important;
  }

  .m-lg-140 {
    margin: 70rem !important;
  }

  .mt-lg-140,
  .my-lg-140 {
    margin-top: 70rem !important;
  }

  .mr-lg-140,
  .mx-lg-140 {
    margin-right: 70rem !important;
  }

  .mb-lg-140,
  .my-lg-140 {
    margin-bottom: 70rem !important;
  }

  .ml-lg-140,
  .mx-lg-140 {
    margin-left: 70rem !important;
  }

  .m-lg-141 {
    margin: 70.5rem !important;
  }

  .mt-lg-141,
  .my-lg-141 {
    margin-top: 70.5rem !important;
  }

  .mr-lg-141,
  .mx-lg-141 {
    margin-right: 70.5rem !important;
  }

  .mb-lg-141,
  .my-lg-141 {
    margin-bottom: 70.5rem !important;
  }

  .ml-lg-141,
  .mx-lg-141 {
    margin-left: 70.5rem !important;
  }

  .m-lg-142 {
    margin: 71rem !important;
  }

  .mt-lg-142,
  .my-lg-142 {
    margin-top: 71rem !important;
  }

  .mr-lg-142,
  .mx-lg-142 {
    margin-right: 71rem !important;
  }

  .mb-lg-142,
  .my-lg-142 {
    margin-bottom: 71rem !important;
  }

  .ml-lg-142,
  .mx-lg-142 {
    margin-left: 71rem !important;
  }

  .m-lg-143 {
    margin: 71.5rem !important;
  }

  .mt-lg-143,
  .my-lg-143 {
    margin-top: 71.5rem !important;
  }

  .mr-lg-143,
  .mx-lg-143 {
    margin-right: 71.5rem !important;
  }

  .mb-lg-143,
  .my-lg-143 {
    margin-bottom: 71.5rem !important;
  }

  .ml-lg-143,
  .mx-lg-143 {
    margin-left: 71.5rem !important;
  }

  .m-lg-144 {
    margin: 72rem !important;
  }

  .mt-lg-144,
  .my-lg-144 {
    margin-top: 72rem !important;
  }

  .mr-lg-144,
  .mx-lg-144 {
    margin-right: 72rem !important;
  }

  .mb-lg-144,
  .my-lg-144 {
    margin-bottom: 72rem !important;
  }

  .ml-lg-144,
  .mx-lg-144 {
    margin-left: 72rem !important;
  }

  .m-lg-145 {
    margin: 72.5rem !important;
  }

  .mt-lg-145,
  .my-lg-145 {
    margin-top: 72.5rem !important;
  }

  .mr-lg-145,
  .mx-lg-145 {
    margin-right: 72.5rem !important;
  }

  .mb-lg-145,
  .my-lg-145 {
    margin-bottom: 72.5rem !important;
  }

  .ml-lg-145,
  .mx-lg-145 {
    margin-left: 72.5rem !important;
  }

  .m-lg-146 {
    margin: 73rem !important;
  }

  .mt-lg-146,
  .my-lg-146 {
    margin-top: 73rem !important;
  }

  .mr-lg-146,
  .mx-lg-146 {
    margin-right: 73rem !important;
  }

  .mb-lg-146,
  .my-lg-146 {
    margin-bottom: 73rem !important;
  }

  .ml-lg-146,
  .mx-lg-146 {
    margin-left: 73rem !important;
  }

  .m-lg-147 {
    margin: 73.5rem !important;
  }

  .mt-lg-147,
  .my-lg-147 {
    margin-top: 73.5rem !important;
  }

  .mr-lg-147,
  .mx-lg-147 {
    margin-right: 73.5rem !important;
  }

  .mb-lg-147,
  .my-lg-147 {
    margin-bottom: 73.5rem !important;
  }

  .ml-lg-147,
  .mx-lg-147 {
    margin-left: 73.5rem !important;
  }

  .m-lg-148 {
    margin: 74rem !important;
  }

  .mt-lg-148,
  .my-lg-148 {
    margin-top: 74rem !important;
  }

  .mr-lg-148,
  .mx-lg-148 {
    margin-right: 74rem !important;
  }

  .mb-lg-148,
  .my-lg-148 {
    margin-bottom: 74rem !important;
  }

  .ml-lg-148,
  .mx-lg-148 {
    margin-left: 74rem !important;
  }

  .m-lg-149 {
    margin: 74.5rem !important;
  }

  .mt-lg-149,
  .my-lg-149 {
    margin-top: 74.5rem !important;
  }

  .mr-lg-149,
  .mx-lg-149 {
    margin-right: 74.5rem !important;
  }

  .mb-lg-149,
  .my-lg-149 {
    margin-bottom: 74.5rem !important;
  }

  .ml-lg-149,
  .mx-lg-149 {
    margin-left: 74.5rem !important;
  }

  .m-lg-150 {
    margin: 75rem !important;
  }

  .mt-lg-150,
  .my-lg-150 {
    margin-top: 75rem !important;
  }

  .mr-lg-150,
  .mx-lg-150 {
    margin-right: 75rem !important;
  }

  .mb-lg-150,
  .my-lg-150 {
    margin-bottom: 75rem !important;
  }

  .ml-lg-150,
  .mx-lg-150 {
    margin-left: 75rem !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.5rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.5rem !important;
  }

  .p-lg-2 {
    padding: 1rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 1rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 1rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 1rem !important;
  }

  .p-lg-3 {
    padding: 1.5rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1.5rem !important;
  }

  .p-lg-4 {
    padding: 2rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 2rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 2rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 2rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 2rem !important;
  }

  .p-lg-5 {
    padding: 2.5rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 2.5rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 2.5rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 2.5rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 2.5rem !important;
  }

  .p-lg-6 {
    padding: 3rem !important;
  }

  .pt-lg-6,
  .py-lg-6 {
    padding-top: 3rem !important;
  }

  .pr-lg-6,
  .px-lg-6 {
    padding-right: 3rem !important;
  }

  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-6,
  .px-lg-6 {
    padding-left: 3rem !important;
  }

  .p-lg-7 {
    padding: 3.5rem !important;
  }

  .pt-lg-7,
  .py-lg-7 {
    padding-top: 3.5rem !important;
  }

  .pr-lg-7,
  .px-lg-7 {
    padding-right: 3.5rem !important;
  }

  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 3.5rem !important;
  }

  .pl-lg-7,
  .px-lg-7 {
    padding-left: 3.5rem !important;
  }

  .p-lg-8 {
    padding: 4rem !important;
  }

  .pt-lg-8,
  .py-lg-8 {
    padding-top: 4rem !important;
  }

  .pr-lg-8,
  .px-lg-8 {
    padding-right: 4rem !important;
  }

  .pb-lg-8,
  .py-lg-8 {
    padding-bottom: 4rem !important;
  }

  .pl-lg-8,
  .px-lg-8 {
    padding-left: 4rem !important;
  }

  .p-lg-9 {
    padding: 4.5rem !important;
  }

  .pt-lg-9,
  .py-lg-9 {
    padding-top: 4.5rem !important;
  }

  .pr-lg-9,
  .px-lg-9 {
    padding-right: 4.5rem !important;
  }

  .pb-lg-9,
  .py-lg-9 {
    padding-bottom: 4.5rem !important;
  }

  .pl-lg-9,
  .px-lg-9 {
    padding-left: 4.5rem !important;
  }

  .p-lg-10 {
    padding: 5rem !important;
  }

  .pt-lg-10,
  .py-lg-10 {
    padding-top: 5rem !important;
  }

  .pr-lg-10,
  .px-lg-10 {
    padding-right: 5rem !important;
  }

  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 5rem !important;
  }

  .pl-lg-10,
  .px-lg-10 {
    padding-left: 5rem !important;
  }

  .p-lg-11 {
    padding: 5.5rem !important;
  }

  .pt-lg-11,
  .py-lg-11 {
    padding-top: 5.5rem !important;
  }

  .pr-lg-11,
  .px-lg-11 {
    padding-right: 5.5rem !important;
  }

  .pb-lg-11,
  .py-lg-11 {
    padding-bottom: 5.5rem !important;
  }

  .pl-lg-11,
  .px-lg-11 {
    padding-left: 5.5rem !important;
  }

  .p-lg-12 {
    padding: 6rem !important;
  }

  .pt-lg-12,
  .py-lg-12 {
    padding-top: 6rem !important;
  }

  .pr-lg-12,
  .px-lg-12 {
    padding-right: 6rem !important;
  }

  .pb-lg-12,
  .py-lg-12 {
    padding-bottom: 6rem !important;
  }

  .pl-lg-12,
  .px-lg-12 {
    padding-left: 6rem !important;
  }

  .p-lg-13 {
    padding: 6.5rem !important;
  }

  .pt-lg-13,
  .py-lg-13 {
    padding-top: 6.5rem !important;
  }

  .pr-lg-13,
  .px-lg-13 {
    padding-right: 6.5rem !important;
  }

  .pb-lg-13,
  .py-lg-13 {
    padding-bottom: 6.5rem !important;
  }

  .pl-lg-13,
  .px-lg-13 {
    padding-left: 6.5rem !important;
  }

  .p-lg-14 {
    padding: 7rem !important;
  }

  .pt-lg-14,
  .py-lg-14 {
    padding-top: 7rem !important;
  }

  .pr-lg-14,
  .px-lg-14 {
    padding-right: 7rem !important;
  }

  .pb-lg-14,
  .py-lg-14 {
    padding-bottom: 7rem !important;
  }

  .pl-lg-14,
  .px-lg-14 {
    padding-left: 7rem !important;
  }

  .p-lg-15 {
    padding: 7.5rem !important;
  }

  .pt-lg-15,
  .py-lg-15 {
    padding-top: 7.5rem !important;
  }

  .pr-lg-15,
  .px-lg-15 {
    padding-right: 7.5rem !important;
  }

  .pb-lg-15,
  .py-lg-15 {
    padding-bottom: 7.5rem !important;
  }

  .pl-lg-15,
  .px-lg-15 {
    padding-left: 7.5rem !important;
  }

  .p-lg-16 {
    padding: 8rem !important;
  }

  .pt-lg-16,
  .py-lg-16 {
    padding-top: 8rem !important;
  }

  .pr-lg-16,
  .px-lg-16 {
    padding-right: 8rem !important;
  }

  .pb-lg-16,
  .py-lg-16 {
    padding-bottom: 8rem !important;
  }

  .pl-lg-16,
  .px-lg-16 {
    padding-left: 8rem !important;
  }

  .p-lg-17 {
    padding: 8.5rem !important;
  }

  .pt-lg-17,
  .py-lg-17 {
    padding-top: 8.5rem !important;
  }

  .pr-lg-17,
  .px-lg-17 {
    padding-right: 8.5rem !important;
  }

  .pb-lg-17,
  .py-lg-17 {
    padding-bottom: 8.5rem !important;
  }

  .pl-lg-17,
  .px-lg-17 {
    padding-left: 8.5rem !important;
  }

  .p-lg-18 {
    padding: 9rem !important;
  }

  .pt-lg-18,
  .py-lg-18 {
    padding-top: 9rem !important;
  }

  .pr-lg-18,
  .px-lg-18 {
    padding-right: 9rem !important;
  }

  .pb-lg-18,
  .py-lg-18 {
    padding-bottom: 9rem !important;
  }

  .pl-lg-18,
  .px-lg-18 {
    padding-left: 9rem !important;
  }

  .p-lg-19 {
    padding: 9.5rem !important;
  }

  .pt-lg-19,
  .py-lg-19 {
    padding-top: 9.5rem !important;
  }

  .pr-lg-19,
  .px-lg-19 {
    padding-right: 9.5rem !important;
  }

  .pb-lg-19,
  .py-lg-19 {
    padding-bottom: 9.5rem !important;
  }

  .pl-lg-19,
  .px-lg-19 {
    padding-left: 9.5rem !important;
  }

  .p-lg-20 {
    padding: 10rem !important;
  }

  .pt-lg-20,
  .py-lg-20 {
    padding-top: 10rem !important;
  }

  .pr-lg-20,
  .px-lg-20 {
    padding-right: 10rem !important;
  }

  .pb-lg-20,
  .py-lg-20 {
    padding-bottom: 10rem !important;
  }

  .pl-lg-20,
  .px-lg-20 {
    padding-left: 10rem !important;
  }

  .p-lg-21 {
    padding: 10.5rem !important;
  }

  .pt-lg-21,
  .py-lg-21 {
    padding-top: 10.5rem !important;
  }

  .pr-lg-21,
  .px-lg-21 {
    padding-right: 10.5rem !important;
  }

  .pb-lg-21,
  .py-lg-21 {
    padding-bottom: 10.5rem !important;
  }

  .pl-lg-21,
  .px-lg-21 {
    padding-left: 10.5rem !important;
  }

  .p-lg-22 {
    padding: 11rem !important;
  }

  .pt-lg-22,
  .py-lg-22 {
    padding-top: 11rem !important;
  }

  .pr-lg-22,
  .px-lg-22 {
    padding-right: 11rem !important;
  }

  .pb-lg-22,
  .py-lg-22 {
    padding-bottom: 11rem !important;
  }

  .pl-lg-22,
  .px-lg-22 {
    padding-left: 11rem !important;
  }

  .p-lg-23 {
    padding: 11.5rem !important;
  }

  .pt-lg-23,
  .py-lg-23 {
    padding-top: 11.5rem !important;
  }

  .pr-lg-23,
  .px-lg-23 {
    padding-right: 11.5rem !important;
  }

  .pb-lg-23,
  .py-lg-23 {
    padding-bottom: 11.5rem !important;
  }

  .pl-lg-23,
  .px-lg-23 {
    padding-left: 11.5rem !important;
  }

  .p-lg-24 {
    padding: 12rem !important;
  }

  .pt-lg-24,
  .py-lg-24 {
    padding-top: 12rem !important;
  }

  .pr-lg-24,
  .px-lg-24 {
    padding-right: 12rem !important;
  }

  .pb-lg-24,
  .py-lg-24 {
    padding-bottom: 12rem !important;
  }

  .pl-lg-24,
  .px-lg-24 {
    padding-left: 12rem !important;
  }

  .p-lg-25 {
    padding: 12.5rem !important;
  }

  .pt-lg-25,
  .py-lg-25 {
    padding-top: 12.5rem !important;
  }

  .pr-lg-25,
  .px-lg-25 {
    padding-right: 12.5rem !important;
  }

  .pb-lg-25,
  .py-lg-25 {
    padding-bottom: 12.5rem !important;
  }

  .pl-lg-25,
  .px-lg-25 {
    padding-left: 12.5rem !important;
  }

  .p-lg-26 {
    padding: 13rem !important;
  }

  .pt-lg-26,
  .py-lg-26 {
    padding-top: 13rem !important;
  }

  .pr-lg-26,
  .px-lg-26 {
    padding-right: 13rem !important;
  }

  .pb-lg-26,
  .py-lg-26 {
    padding-bottom: 13rem !important;
  }

  .pl-lg-26,
  .px-lg-26 {
    padding-left: 13rem !important;
  }

  .p-lg-27 {
    padding: 13.5rem !important;
  }

  .pt-lg-27,
  .py-lg-27 {
    padding-top: 13.5rem !important;
  }

  .pr-lg-27,
  .px-lg-27 {
    padding-right: 13.5rem !important;
  }

  .pb-lg-27,
  .py-lg-27 {
    padding-bottom: 13.5rem !important;
  }

  .pl-lg-27,
  .px-lg-27 {
    padding-left: 13.5rem !important;
  }

  .p-lg-28 {
    padding: 14rem !important;
  }

  .pt-lg-28,
  .py-lg-28 {
    padding-top: 14rem !important;
  }

  .pr-lg-28,
  .px-lg-28 {
    padding-right: 14rem !important;
  }

  .pb-lg-28,
  .py-lg-28 {
    padding-bottom: 14rem !important;
  }

  .pl-lg-28,
  .px-lg-28 {
    padding-left: 14rem !important;
  }

  .p-lg-29 {
    padding: 14.5rem !important;
  }

  .pt-lg-29,
  .py-lg-29 {
    padding-top: 14.5rem !important;
  }

  .pr-lg-29,
  .px-lg-29 {
    padding-right: 14.5rem !important;
  }

  .pb-lg-29,
  .py-lg-29 {
    padding-bottom: 14.5rem !important;
  }

  .pl-lg-29,
  .px-lg-29 {
    padding-left: 14.5rem !important;
  }

  .p-lg-30 {
    padding: 15rem !important;
  }

  .pt-lg-30,
  .py-lg-30 {
    padding-top: 15rem !important;
  }

  .pr-lg-30,
  .px-lg-30 {
    padding-right: 15rem !important;
  }

  .pb-lg-30,
  .py-lg-30 {
    padding-bottom: 15rem !important;
  }

  .pl-lg-30,
  .px-lg-30 {
    padding-left: 15rem !important;
  }

  .p-lg-31 {
    padding: 15.5rem !important;
  }

  .pt-lg-31,
  .py-lg-31 {
    padding-top: 15.5rem !important;
  }

  .pr-lg-31,
  .px-lg-31 {
    padding-right: 15.5rem !important;
  }

  .pb-lg-31,
  .py-lg-31 {
    padding-bottom: 15.5rem !important;
  }

  .pl-lg-31,
  .px-lg-31 {
    padding-left: 15.5rem !important;
  }

  .p-lg-32 {
    padding: 16rem !important;
  }

  .pt-lg-32,
  .py-lg-32 {
    padding-top: 16rem !important;
  }

  .pr-lg-32,
  .px-lg-32 {
    padding-right: 16rem !important;
  }

  .pb-lg-32,
  .py-lg-32 {
    padding-bottom: 16rem !important;
  }

  .pl-lg-32,
  .px-lg-32 {
    padding-left: 16rem !important;
  }

  .p-lg-33 {
    padding: 16.5rem !important;
  }

  .pt-lg-33,
  .py-lg-33 {
    padding-top: 16.5rem !important;
  }

  .pr-lg-33,
  .px-lg-33 {
    padding-right: 16.5rem !important;
  }

  .pb-lg-33,
  .py-lg-33 {
    padding-bottom: 16.5rem !important;
  }

  .pl-lg-33,
  .px-lg-33 {
    padding-left: 16.5rem !important;
  }

  .p-lg-34 {
    padding: 17rem !important;
  }

  .pt-lg-34,
  .py-lg-34 {
    padding-top: 17rem !important;
  }

  .pr-lg-34,
  .px-lg-34 {
    padding-right: 17rem !important;
  }

  .pb-lg-34,
  .py-lg-34 {
    padding-bottom: 17rem !important;
  }

  .pl-lg-34,
  .px-lg-34 {
    padding-left: 17rem !important;
  }

  .p-lg-35 {
    padding: 17.5rem !important;
  }

  .pt-lg-35,
  .py-lg-35 {
    padding-top: 17.5rem !important;
  }

  .pr-lg-35,
  .px-lg-35 {
    padding-right: 17.5rem !important;
  }

  .pb-lg-35,
  .py-lg-35 {
    padding-bottom: 17.5rem !important;
  }

  .pl-lg-35,
  .px-lg-35 {
    padding-left: 17.5rem !important;
  }

  .p-lg-36 {
    padding: 18rem !important;
  }

  .pt-lg-36,
  .py-lg-36 {
    padding-top: 18rem !important;
  }

  .pr-lg-36,
  .px-lg-36 {
    padding-right: 18rem !important;
  }

  .pb-lg-36,
  .py-lg-36 {
    padding-bottom: 18rem !important;
  }

  .pl-lg-36,
  .px-lg-36 {
    padding-left: 18rem !important;
  }

  .p-lg-37 {
    padding: 18.5rem !important;
  }

  .pt-lg-37,
  .py-lg-37 {
    padding-top: 18.5rem !important;
  }

  .pr-lg-37,
  .px-lg-37 {
    padding-right: 18.5rem !important;
  }

  .pb-lg-37,
  .py-lg-37 {
    padding-bottom: 18.5rem !important;
  }

  .pl-lg-37,
  .px-lg-37 {
    padding-left: 18.5rem !important;
  }

  .p-lg-38 {
    padding: 19rem !important;
  }

  .pt-lg-38,
  .py-lg-38 {
    padding-top: 19rem !important;
  }

  .pr-lg-38,
  .px-lg-38 {
    padding-right: 19rem !important;
  }

  .pb-lg-38,
  .py-lg-38 {
    padding-bottom: 19rem !important;
  }

  .pl-lg-38,
  .px-lg-38 {
    padding-left: 19rem !important;
  }

  .p-lg-39 {
    padding: 19.5rem !important;
  }

  .pt-lg-39,
  .py-lg-39 {
    padding-top: 19.5rem !important;
  }

  .pr-lg-39,
  .px-lg-39 {
    padding-right: 19.5rem !important;
  }

  .pb-lg-39,
  .py-lg-39 {
    padding-bottom: 19.5rem !important;
  }

  .pl-lg-39,
  .px-lg-39 {
    padding-left: 19.5rem !important;
  }

  .p-lg-40 {
    padding: 20rem !important;
  }

  .pt-lg-40,
  .py-lg-40 {
    padding-top: 20rem !important;
  }

  .pr-lg-40,
  .px-lg-40 {
    padding-right: 20rem !important;
  }

  .pb-lg-40,
  .py-lg-40 {
    padding-bottom: 20rem !important;
  }

  .pl-lg-40,
  .px-lg-40 {
    padding-left: 20rem !important;
  }

  .p-lg-41 {
    padding: 20.5rem !important;
  }

  .pt-lg-41,
  .py-lg-41 {
    padding-top: 20.5rem !important;
  }

  .pr-lg-41,
  .px-lg-41 {
    padding-right: 20.5rem !important;
  }

  .pb-lg-41,
  .py-lg-41 {
    padding-bottom: 20.5rem !important;
  }

  .pl-lg-41,
  .px-lg-41 {
    padding-left: 20.5rem !important;
  }

  .p-lg-42 {
    padding: 21rem !important;
  }

  .pt-lg-42,
  .py-lg-42 {
    padding-top: 21rem !important;
  }

  .pr-lg-42,
  .px-lg-42 {
    padding-right: 21rem !important;
  }

  .pb-lg-42,
  .py-lg-42 {
    padding-bottom: 21rem !important;
  }

  .pl-lg-42,
  .px-lg-42 {
    padding-left: 21rem !important;
  }

  .p-lg-43 {
    padding: 21.5rem !important;
  }

  .pt-lg-43,
  .py-lg-43 {
    padding-top: 21.5rem !important;
  }

  .pr-lg-43,
  .px-lg-43 {
    padding-right: 21.5rem !important;
  }

  .pb-lg-43,
  .py-lg-43 {
    padding-bottom: 21.5rem !important;
  }

  .pl-lg-43,
  .px-lg-43 {
    padding-left: 21.5rem !important;
  }

  .p-lg-44 {
    padding: 22rem !important;
  }

  .pt-lg-44,
  .py-lg-44 {
    padding-top: 22rem !important;
  }

  .pr-lg-44,
  .px-lg-44 {
    padding-right: 22rem !important;
  }

  .pb-lg-44,
  .py-lg-44 {
    padding-bottom: 22rem !important;
  }

  .pl-lg-44,
  .px-lg-44 {
    padding-left: 22rem !important;
  }

  .p-lg-45 {
    padding: 22.5rem !important;
  }

  .pt-lg-45,
  .py-lg-45 {
    padding-top: 22.5rem !important;
  }

  .pr-lg-45,
  .px-lg-45 {
    padding-right: 22.5rem !important;
  }

  .pb-lg-45,
  .py-lg-45 {
    padding-bottom: 22.5rem !important;
  }

  .pl-lg-45,
  .px-lg-45 {
    padding-left: 22.5rem !important;
  }

  .p-lg-46 {
    padding: 23rem !important;
  }

  .pt-lg-46,
  .py-lg-46 {
    padding-top: 23rem !important;
  }

  .pr-lg-46,
  .px-lg-46 {
    padding-right: 23rem !important;
  }

  .pb-lg-46,
  .py-lg-46 {
    padding-bottom: 23rem !important;
  }

  .pl-lg-46,
  .px-lg-46 {
    padding-left: 23rem !important;
  }

  .p-lg-47 {
    padding: 23.5rem !important;
  }

  .pt-lg-47,
  .py-lg-47 {
    padding-top: 23.5rem !important;
  }

  .pr-lg-47,
  .px-lg-47 {
    padding-right: 23.5rem !important;
  }

  .pb-lg-47,
  .py-lg-47 {
    padding-bottom: 23.5rem !important;
  }

  .pl-lg-47,
  .px-lg-47 {
    padding-left: 23.5rem !important;
  }

  .p-lg-48 {
    padding: 24rem !important;
  }

  .pt-lg-48,
  .py-lg-48 {
    padding-top: 24rem !important;
  }

  .pr-lg-48,
  .px-lg-48 {
    padding-right: 24rem !important;
  }

  .pb-lg-48,
  .py-lg-48 {
    padding-bottom: 24rem !important;
  }

  .pl-lg-48,
  .px-lg-48 {
    padding-left: 24rem !important;
  }

  .p-lg-49 {
    padding: 24.5rem !important;
  }

  .pt-lg-49,
  .py-lg-49 {
    padding-top: 24.5rem !important;
  }

  .pr-lg-49,
  .px-lg-49 {
    padding-right: 24.5rem !important;
  }

  .pb-lg-49,
  .py-lg-49 {
    padding-bottom: 24.5rem !important;
  }

  .pl-lg-49,
  .px-lg-49 {
    padding-left: 24.5rem !important;
  }

  .p-lg-50 {
    padding: 25rem !important;
  }

  .pt-lg-50,
  .py-lg-50 {
    padding-top: 25rem !important;
  }

  .pr-lg-50,
  .px-lg-50 {
    padding-right: 25rem !important;
  }

  .pb-lg-50,
  .py-lg-50 {
    padding-bottom: 25rem !important;
  }

  .pl-lg-50,
  .px-lg-50 {
    padding-left: 25rem !important;
  }

  .p-lg-51 {
    padding: 25.5rem !important;
  }

  .pt-lg-51,
  .py-lg-51 {
    padding-top: 25.5rem !important;
  }

  .pr-lg-51,
  .px-lg-51 {
    padding-right: 25.5rem !important;
  }

  .pb-lg-51,
  .py-lg-51 {
    padding-bottom: 25.5rem !important;
  }

  .pl-lg-51,
  .px-lg-51 {
    padding-left: 25.5rem !important;
  }

  .p-lg-52 {
    padding: 26rem !important;
  }

  .pt-lg-52,
  .py-lg-52 {
    padding-top: 26rem !important;
  }

  .pr-lg-52,
  .px-lg-52 {
    padding-right: 26rem !important;
  }

  .pb-lg-52,
  .py-lg-52 {
    padding-bottom: 26rem !important;
  }

  .pl-lg-52,
  .px-lg-52 {
    padding-left: 26rem !important;
  }

  .p-lg-53 {
    padding: 26.5rem !important;
  }

  .pt-lg-53,
  .py-lg-53 {
    padding-top: 26.5rem !important;
  }

  .pr-lg-53,
  .px-lg-53 {
    padding-right: 26.5rem !important;
  }

  .pb-lg-53,
  .py-lg-53 {
    padding-bottom: 26.5rem !important;
  }

  .pl-lg-53,
  .px-lg-53 {
    padding-left: 26.5rem !important;
  }

  .p-lg-54 {
    padding: 27rem !important;
  }

  .pt-lg-54,
  .py-lg-54 {
    padding-top: 27rem !important;
  }

  .pr-lg-54,
  .px-lg-54 {
    padding-right: 27rem !important;
  }

  .pb-lg-54,
  .py-lg-54 {
    padding-bottom: 27rem !important;
  }

  .pl-lg-54,
  .px-lg-54 {
    padding-left: 27rem !important;
  }

  .p-lg-55 {
    padding: 27.5rem !important;
  }

  .pt-lg-55,
  .py-lg-55 {
    padding-top: 27.5rem !important;
  }

  .pr-lg-55,
  .px-lg-55 {
    padding-right: 27.5rem !important;
  }

  .pb-lg-55,
  .py-lg-55 {
    padding-bottom: 27.5rem !important;
  }

  .pl-lg-55,
  .px-lg-55 {
    padding-left: 27.5rem !important;
  }

  .p-lg-56 {
    padding: 28rem !important;
  }

  .pt-lg-56,
  .py-lg-56 {
    padding-top: 28rem !important;
  }

  .pr-lg-56,
  .px-lg-56 {
    padding-right: 28rem !important;
  }

  .pb-lg-56,
  .py-lg-56 {
    padding-bottom: 28rem !important;
  }

  .pl-lg-56,
  .px-lg-56 {
    padding-left: 28rem !important;
  }

  .p-lg-57 {
    padding: 28.5rem !important;
  }

  .pt-lg-57,
  .py-lg-57 {
    padding-top: 28.5rem !important;
  }

  .pr-lg-57,
  .px-lg-57 {
    padding-right: 28.5rem !important;
  }

  .pb-lg-57,
  .py-lg-57 {
    padding-bottom: 28.5rem !important;
  }

  .pl-lg-57,
  .px-lg-57 {
    padding-left: 28.5rem !important;
  }

  .p-lg-58 {
    padding: 29rem !important;
  }

  .pt-lg-58,
  .py-lg-58 {
    padding-top: 29rem !important;
  }

  .pr-lg-58,
  .px-lg-58 {
    padding-right: 29rem !important;
  }

  .pb-lg-58,
  .py-lg-58 {
    padding-bottom: 29rem !important;
  }

  .pl-lg-58,
  .px-lg-58 {
    padding-left: 29rem !important;
  }

  .p-lg-59 {
    padding: 29.5rem !important;
  }

  .pt-lg-59,
  .py-lg-59 {
    padding-top: 29.5rem !important;
  }

  .pr-lg-59,
  .px-lg-59 {
    padding-right: 29.5rem !important;
  }

  .pb-lg-59,
  .py-lg-59 {
    padding-bottom: 29.5rem !important;
  }

  .pl-lg-59,
  .px-lg-59 {
    padding-left: 29.5rem !important;
  }

  .p-lg-60 {
    padding: 30rem !important;
  }

  .pt-lg-60,
  .py-lg-60 {
    padding-top: 30rem !important;
  }

  .pr-lg-60,
  .px-lg-60 {
    padding-right: 30rem !important;
  }

  .pb-lg-60,
  .py-lg-60 {
    padding-bottom: 30rem !important;
  }

  .pl-lg-60,
  .px-lg-60 {
    padding-left: 30rem !important;
  }

  .p-lg-61 {
    padding: 30.5rem !important;
  }

  .pt-lg-61,
  .py-lg-61 {
    padding-top: 30.5rem !important;
  }

  .pr-lg-61,
  .px-lg-61 {
    padding-right: 30.5rem !important;
  }

  .pb-lg-61,
  .py-lg-61 {
    padding-bottom: 30.5rem !important;
  }

  .pl-lg-61,
  .px-lg-61 {
    padding-left: 30.5rem !important;
  }

  .p-lg-62 {
    padding: 31rem !important;
  }

  .pt-lg-62,
  .py-lg-62 {
    padding-top: 31rem !important;
  }

  .pr-lg-62,
  .px-lg-62 {
    padding-right: 31rem !important;
  }

  .pb-lg-62,
  .py-lg-62 {
    padding-bottom: 31rem !important;
  }

  .pl-lg-62,
  .px-lg-62 {
    padding-left: 31rem !important;
  }

  .p-lg-63 {
    padding: 31.5rem !important;
  }

  .pt-lg-63,
  .py-lg-63 {
    padding-top: 31.5rem !important;
  }

  .pr-lg-63,
  .px-lg-63 {
    padding-right: 31.5rem !important;
  }

  .pb-lg-63,
  .py-lg-63 {
    padding-bottom: 31.5rem !important;
  }

  .pl-lg-63,
  .px-lg-63 {
    padding-left: 31.5rem !important;
  }

  .p-lg-64 {
    padding: 32rem !important;
  }

  .pt-lg-64,
  .py-lg-64 {
    padding-top: 32rem !important;
  }

  .pr-lg-64,
  .px-lg-64 {
    padding-right: 32rem !important;
  }

  .pb-lg-64,
  .py-lg-64 {
    padding-bottom: 32rem !important;
  }

  .pl-lg-64,
  .px-lg-64 {
    padding-left: 32rem !important;
  }

  .p-lg-65 {
    padding: 32.5rem !important;
  }

  .pt-lg-65,
  .py-lg-65 {
    padding-top: 32.5rem !important;
  }

  .pr-lg-65,
  .px-lg-65 {
    padding-right: 32.5rem !important;
  }

  .pb-lg-65,
  .py-lg-65 {
    padding-bottom: 32.5rem !important;
  }

  .pl-lg-65,
  .px-lg-65 {
    padding-left: 32.5rem !important;
  }

  .p-lg-66 {
    padding: 33rem !important;
  }

  .pt-lg-66,
  .py-lg-66 {
    padding-top: 33rem !important;
  }

  .pr-lg-66,
  .px-lg-66 {
    padding-right: 33rem !important;
  }

  .pb-lg-66,
  .py-lg-66 {
    padding-bottom: 33rem !important;
  }

  .pl-lg-66,
  .px-lg-66 {
    padding-left: 33rem !important;
  }

  .p-lg-67 {
    padding: 33.5rem !important;
  }

  .pt-lg-67,
  .py-lg-67 {
    padding-top: 33.5rem !important;
  }

  .pr-lg-67,
  .px-lg-67 {
    padding-right: 33.5rem !important;
  }

  .pb-lg-67,
  .py-lg-67 {
    padding-bottom: 33.5rem !important;
  }

  .pl-lg-67,
  .px-lg-67 {
    padding-left: 33.5rem !important;
  }

  .p-lg-68 {
    padding: 34rem !important;
  }

  .pt-lg-68,
  .py-lg-68 {
    padding-top: 34rem !important;
  }

  .pr-lg-68,
  .px-lg-68 {
    padding-right: 34rem !important;
  }

  .pb-lg-68,
  .py-lg-68 {
    padding-bottom: 34rem !important;
  }

  .pl-lg-68,
  .px-lg-68 {
    padding-left: 34rem !important;
  }

  .p-lg-69 {
    padding: 34.5rem !important;
  }

  .pt-lg-69,
  .py-lg-69 {
    padding-top: 34.5rem !important;
  }

  .pr-lg-69,
  .px-lg-69 {
    padding-right: 34.5rem !important;
  }

  .pb-lg-69,
  .py-lg-69 {
    padding-bottom: 34.5rem !important;
  }

  .pl-lg-69,
  .px-lg-69 {
    padding-left: 34.5rem !important;
  }

  .p-lg-70 {
    padding: 35rem !important;
  }

  .pt-lg-70,
  .py-lg-70 {
    padding-top: 35rem !important;
  }

  .pr-lg-70,
  .px-lg-70 {
    padding-right: 35rem !important;
  }

  .pb-lg-70,
  .py-lg-70 {
    padding-bottom: 35rem !important;
  }

  .pl-lg-70,
  .px-lg-70 {
    padding-left: 35rem !important;
  }

  .p-lg-71 {
    padding: 35.5rem !important;
  }

  .pt-lg-71,
  .py-lg-71 {
    padding-top: 35.5rem !important;
  }

  .pr-lg-71,
  .px-lg-71 {
    padding-right: 35.5rem !important;
  }

  .pb-lg-71,
  .py-lg-71 {
    padding-bottom: 35.5rem !important;
  }

  .pl-lg-71,
  .px-lg-71 {
    padding-left: 35.5rem !important;
  }

  .p-lg-72 {
    padding: 36rem !important;
  }

  .pt-lg-72,
  .py-lg-72 {
    padding-top: 36rem !important;
  }

  .pr-lg-72,
  .px-lg-72 {
    padding-right: 36rem !important;
  }

  .pb-lg-72,
  .py-lg-72 {
    padding-bottom: 36rem !important;
  }

  .pl-lg-72,
  .px-lg-72 {
    padding-left: 36rem !important;
  }

  .p-lg-73 {
    padding: 36.5rem !important;
  }

  .pt-lg-73,
  .py-lg-73 {
    padding-top: 36.5rem !important;
  }

  .pr-lg-73,
  .px-lg-73 {
    padding-right: 36.5rem !important;
  }

  .pb-lg-73,
  .py-lg-73 {
    padding-bottom: 36.5rem !important;
  }

  .pl-lg-73,
  .px-lg-73 {
    padding-left: 36.5rem !important;
  }

  .p-lg-74 {
    padding: 37rem !important;
  }

  .pt-lg-74,
  .py-lg-74 {
    padding-top: 37rem !important;
  }

  .pr-lg-74,
  .px-lg-74 {
    padding-right: 37rem !important;
  }

  .pb-lg-74,
  .py-lg-74 {
    padding-bottom: 37rem !important;
  }

  .pl-lg-74,
  .px-lg-74 {
    padding-left: 37rem !important;
  }

  .p-lg-75 {
    padding: 37.5rem !important;
  }

  .pt-lg-75,
  .py-lg-75 {
    padding-top: 37.5rem !important;
  }

  .pr-lg-75,
  .px-lg-75 {
    padding-right: 37.5rem !important;
  }

  .pb-lg-75,
  .py-lg-75 {
    padding-bottom: 37.5rem !important;
  }

  .pl-lg-75,
  .px-lg-75 {
    padding-left: 37.5rem !important;
  }

  .p-lg-76 {
    padding: 38rem !important;
  }

  .pt-lg-76,
  .py-lg-76 {
    padding-top: 38rem !important;
  }

  .pr-lg-76,
  .px-lg-76 {
    padding-right: 38rem !important;
  }

  .pb-lg-76,
  .py-lg-76 {
    padding-bottom: 38rem !important;
  }

  .pl-lg-76,
  .px-lg-76 {
    padding-left: 38rem !important;
  }

  .p-lg-77 {
    padding: 38.5rem !important;
  }

  .pt-lg-77,
  .py-lg-77 {
    padding-top: 38.5rem !important;
  }

  .pr-lg-77,
  .px-lg-77 {
    padding-right: 38.5rem !important;
  }

  .pb-lg-77,
  .py-lg-77 {
    padding-bottom: 38.5rem !important;
  }

  .pl-lg-77,
  .px-lg-77 {
    padding-left: 38.5rem !important;
  }

  .p-lg-78 {
    padding: 39rem !important;
  }

  .pt-lg-78,
  .py-lg-78 {
    padding-top: 39rem !important;
  }

  .pr-lg-78,
  .px-lg-78 {
    padding-right: 39rem !important;
  }

  .pb-lg-78,
  .py-lg-78 {
    padding-bottom: 39rem !important;
  }

  .pl-lg-78,
  .px-lg-78 {
    padding-left: 39rem !important;
  }

  .p-lg-79 {
    padding: 39.5rem !important;
  }

  .pt-lg-79,
  .py-lg-79 {
    padding-top: 39.5rem !important;
  }

  .pr-lg-79,
  .px-lg-79 {
    padding-right: 39.5rem !important;
  }

  .pb-lg-79,
  .py-lg-79 {
    padding-bottom: 39.5rem !important;
  }

  .pl-lg-79,
  .px-lg-79 {
    padding-left: 39.5rem !important;
  }

  .p-lg-80 {
    padding: 40rem !important;
  }

  .pt-lg-80,
  .py-lg-80 {
    padding-top: 40rem !important;
  }

  .pr-lg-80,
  .px-lg-80 {
    padding-right: 40rem !important;
  }

  .pb-lg-80,
  .py-lg-80 {
    padding-bottom: 40rem !important;
  }

  .pl-lg-80,
  .px-lg-80 {
    padding-left: 40rem !important;
  }

  .p-lg-81 {
    padding: 40.5rem !important;
  }

  .pt-lg-81,
  .py-lg-81 {
    padding-top: 40.5rem !important;
  }

  .pr-lg-81,
  .px-lg-81 {
    padding-right: 40.5rem !important;
  }

  .pb-lg-81,
  .py-lg-81 {
    padding-bottom: 40.5rem !important;
  }

  .pl-lg-81,
  .px-lg-81 {
    padding-left: 40.5rem !important;
  }

  .p-lg-82 {
    padding: 41rem !important;
  }

  .pt-lg-82,
  .py-lg-82 {
    padding-top: 41rem !important;
  }

  .pr-lg-82,
  .px-lg-82 {
    padding-right: 41rem !important;
  }

  .pb-lg-82,
  .py-lg-82 {
    padding-bottom: 41rem !important;
  }

  .pl-lg-82,
  .px-lg-82 {
    padding-left: 41rem !important;
  }

  .p-lg-83 {
    padding: 41.5rem !important;
  }

  .pt-lg-83,
  .py-lg-83 {
    padding-top: 41.5rem !important;
  }

  .pr-lg-83,
  .px-lg-83 {
    padding-right: 41.5rem !important;
  }

  .pb-lg-83,
  .py-lg-83 {
    padding-bottom: 41.5rem !important;
  }

  .pl-lg-83,
  .px-lg-83 {
    padding-left: 41.5rem !important;
  }

  .p-lg-84 {
    padding: 42rem !important;
  }

  .pt-lg-84,
  .py-lg-84 {
    padding-top: 42rem !important;
  }

  .pr-lg-84,
  .px-lg-84 {
    padding-right: 42rem !important;
  }

  .pb-lg-84,
  .py-lg-84 {
    padding-bottom: 42rem !important;
  }

  .pl-lg-84,
  .px-lg-84 {
    padding-left: 42rem !important;
  }

  .p-lg-85 {
    padding: 42.5rem !important;
  }

  .pt-lg-85,
  .py-lg-85 {
    padding-top: 42.5rem !important;
  }

  .pr-lg-85,
  .px-lg-85 {
    padding-right: 42.5rem !important;
  }

  .pb-lg-85,
  .py-lg-85 {
    padding-bottom: 42.5rem !important;
  }

  .pl-lg-85,
  .px-lg-85 {
    padding-left: 42.5rem !important;
  }

  .p-lg-86 {
    padding: 43rem !important;
  }

  .pt-lg-86,
  .py-lg-86 {
    padding-top: 43rem !important;
  }

  .pr-lg-86,
  .px-lg-86 {
    padding-right: 43rem !important;
  }

  .pb-lg-86,
  .py-lg-86 {
    padding-bottom: 43rem !important;
  }

  .pl-lg-86,
  .px-lg-86 {
    padding-left: 43rem !important;
  }

  .p-lg-87 {
    padding: 43.5rem !important;
  }

  .pt-lg-87,
  .py-lg-87 {
    padding-top: 43.5rem !important;
  }

  .pr-lg-87,
  .px-lg-87 {
    padding-right: 43.5rem !important;
  }

  .pb-lg-87,
  .py-lg-87 {
    padding-bottom: 43.5rem !important;
  }

  .pl-lg-87,
  .px-lg-87 {
    padding-left: 43.5rem !important;
  }

  .p-lg-88 {
    padding: 44rem !important;
  }

  .pt-lg-88,
  .py-lg-88 {
    padding-top: 44rem !important;
  }

  .pr-lg-88,
  .px-lg-88 {
    padding-right: 44rem !important;
  }

  .pb-lg-88,
  .py-lg-88 {
    padding-bottom: 44rem !important;
  }

  .pl-lg-88,
  .px-lg-88 {
    padding-left: 44rem !important;
  }

  .p-lg-89 {
    padding: 44.5rem !important;
  }

  .pt-lg-89,
  .py-lg-89 {
    padding-top: 44.5rem !important;
  }

  .pr-lg-89,
  .px-lg-89 {
    padding-right: 44.5rem !important;
  }

  .pb-lg-89,
  .py-lg-89 {
    padding-bottom: 44.5rem !important;
  }

  .pl-lg-89,
  .px-lg-89 {
    padding-left: 44.5rem !important;
  }

  .p-lg-90 {
    padding: 45rem !important;
  }

  .pt-lg-90,
  .py-lg-90 {
    padding-top: 45rem !important;
  }

  .pr-lg-90,
  .px-lg-90 {
    padding-right: 45rem !important;
  }

  .pb-lg-90,
  .py-lg-90 {
    padding-bottom: 45rem !important;
  }

  .pl-lg-90,
  .px-lg-90 {
    padding-left: 45rem !important;
  }

  .p-lg-91 {
    padding: 45.5rem !important;
  }

  .pt-lg-91,
  .py-lg-91 {
    padding-top: 45.5rem !important;
  }

  .pr-lg-91,
  .px-lg-91 {
    padding-right: 45.5rem !important;
  }

  .pb-lg-91,
  .py-lg-91 {
    padding-bottom: 45.5rem !important;
  }

  .pl-lg-91,
  .px-lg-91 {
    padding-left: 45.5rem !important;
  }

  .p-lg-92 {
    padding: 46rem !important;
  }

  .pt-lg-92,
  .py-lg-92 {
    padding-top: 46rem !important;
  }

  .pr-lg-92,
  .px-lg-92 {
    padding-right: 46rem !important;
  }

  .pb-lg-92,
  .py-lg-92 {
    padding-bottom: 46rem !important;
  }

  .pl-lg-92,
  .px-lg-92 {
    padding-left: 46rem !important;
  }

  .p-lg-93 {
    padding: 46.5rem !important;
  }

  .pt-lg-93,
  .py-lg-93 {
    padding-top: 46.5rem !important;
  }

  .pr-lg-93,
  .px-lg-93 {
    padding-right: 46.5rem !important;
  }

  .pb-lg-93,
  .py-lg-93 {
    padding-bottom: 46.5rem !important;
  }

  .pl-lg-93,
  .px-lg-93 {
    padding-left: 46.5rem !important;
  }

  .p-lg-94 {
    padding: 47rem !important;
  }

  .pt-lg-94,
  .py-lg-94 {
    padding-top: 47rem !important;
  }

  .pr-lg-94,
  .px-lg-94 {
    padding-right: 47rem !important;
  }

  .pb-lg-94,
  .py-lg-94 {
    padding-bottom: 47rem !important;
  }

  .pl-lg-94,
  .px-lg-94 {
    padding-left: 47rem !important;
  }

  .p-lg-95 {
    padding: 47.5rem !important;
  }

  .pt-lg-95,
  .py-lg-95 {
    padding-top: 47.5rem !important;
  }

  .pr-lg-95,
  .px-lg-95 {
    padding-right: 47.5rem !important;
  }

  .pb-lg-95,
  .py-lg-95 {
    padding-bottom: 47.5rem !important;
  }

  .pl-lg-95,
  .px-lg-95 {
    padding-left: 47.5rem !important;
  }

  .p-lg-96 {
    padding: 48rem !important;
  }

  .pt-lg-96,
  .py-lg-96 {
    padding-top: 48rem !important;
  }

  .pr-lg-96,
  .px-lg-96 {
    padding-right: 48rem !important;
  }

  .pb-lg-96,
  .py-lg-96 {
    padding-bottom: 48rem !important;
  }

  .pl-lg-96,
  .px-lg-96 {
    padding-left: 48rem !important;
  }

  .p-lg-97 {
    padding: 48.5rem !important;
  }

  .pt-lg-97,
  .py-lg-97 {
    padding-top: 48.5rem !important;
  }

  .pr-lg-97,
  .px-lg-97 {
    padding-right: 48.5rem !important;
  }

  .pb-lg-97,
  .py-lg-97 {
    padding-bottom: 48.5rem !important;
  }

  .pl-lg-97,
  .px-lg-97 {
    padding-left: 48.5rem !important;
  }

  .p-lg-98 {
    padding: 49rem !important;
  }

  .pt-lg-98,
  .py-lg-98 {
    padding-top: 49rem !important;
  }

  .pr-lg-98,
  .px-lg-98 {
    padding-right: 49rem !important;
  }

  .pb-lg-98,
  .py-lg-98 {
    padding-bottom: 49rem !important;
  }

  .pl-lg-98,
  .px-lg-98 {
    padding-left: 49rem !important;
  }

  .p-lg-99 {
    padding: 49.5rem !important;
  }

  .pt-lg-99,
  .py-lg-99 {
    padding-top: 49.5rem !important;
  }

  .pr-lg-99,
  .px-lg-99 {
    padding-right: 49.5rem !important;
  }

  .pb-lg-99,
  .py-lg-99 {
    padding-bottom: 49.5rem !important;
  }

  .pl-lg-99,
  .px-lg-99 {
    padding-left: 49.5rem !important;
  }

  .p-lg-100 {
    padding: 50rem !important;
  }

  .pt-lg-100,
  .py-lg-100 {
    padding-top: 50rem !important;
  }

  .pr-lg-100,
  .px-lg-100 {
    padding-right: 50rem !important;
  }

  .pb-lg-100,
  .py-lg-100 {
    padding-bottom: 50rem !important;
  }

  .pl-lg-100,
  .px-lg-100 {
    padding-left: 50rem !important;
  }

  .p-lg-101 {
    padding: 50.5rem !important;
  }

  .pt-lg-101,
  .py-lg-101 {
    padding-top: 50.5rem !important;
  }

  .pr-lg-101,
  .px-lg-101 {
    padding-right: 50.5rem !important;
  }

  .pb-lg-101,
  .py-lg-101 {
    padding-bottom: 50.5rem !important;
  }

  .pl-lg-101,
  .px-lg-101 {
    padding-left: 50.5rem !important;
  }

  .p-lg-102 {
    padding: 51rem !important;
  }

  .pt-lg-102,
  .py-lg-102 {
    padding-top: 51rem !important;
  }

  .pr-lg-102,
  .px-lg-102 {
    padding-right: 51rem !important;
  }

  .pb-lg-102,
  .py-lg-102 {
    padding-bottom: 51rem !important;
  }

  .pl-lg-102,
  .px-lg-102 {
    padding-left: 51rem !important;
  }

  .p-lg-103 {
    padding: 51.5rem !important;
  }

  .pt-lg-103,
  .py-lg-103 {
    padding-top: 51.5rem !important;
  }

  .pr-lg-103,
  .px-lg-103 {
    padding-right: 51.5rem !important;
  }

  .pb-lg-103,
  .py-lg-103 {
    padding-bottom: 51.5rem !important;
  }

  .pl-lg-103,
  .px-lg-103 {
    padding-left: 51.5rem !important;
  }

  .p-lg-104 {
    padding: 52rem !important;
  }

  .pt-lg-104,
  .py-lg-104 {
    padding-top: 52rem !important;
  }

  .pr-lg-104,
  .px-lg-104 {
    padding-right: 52rem !important;
  }

  .pb-lg-104,
  .py-lg-104 {
    padding-bottom: 52rem !important;
  }

  .pl-lg-104,
  .px-lg-104 {
    padding-left: 52rem !important;
  }

  .p-lg-105 {
    padding: 52.5rem !important;
  }

  .pt-lg-105,
  .py-lg-105 {
    padding-top: 52.5rem !important;
  }

  .pr-lg-105,
  .px-lg-105 {
    padding-right: 52.5rem !important;
  }

  .pb-lg-105,
  .py-lg-105 {
    padding-bottom: 52.5rem !important;
  }

  .pl-lg-105,
  .px-lg-105 {
    padding-left: 52.5rem !important;
  }

  .p-lg-106 {
    padding: 53rem !important;
  }

  .pt-lg-106,
  .py-lg-106 {
    padding-top: 53rem !important;
  }

  .pr-lg-106,
  .px-lg-106 {
    padding-right: 53rem !important;
  }

  .pb-lg-106,
  .py-lg-106 {
    padding-bottom: 53rem !important;
  }

  .pl-lg-106,
  .px-lg-106 {
    padding-left: 53rem !important;
  }

  .p-lg-107 {
    padding: 53.5rem !important;
  }

  .pt-lg-107,
  .py-lg-107 {
    padding-top: 53.5rem !important;
  }

  .pr-lg-107,
  .px-lg-107 {
    padding-right: 53.5rem !important;
  }

  .pb-lg-107,
  .py-lg-107 {
    padding-bottom: 53.5rem !important;
  }

  .pl-lg-107,
  .px-lg-107 {
    padding-left: 53.5rem !important;
  }

  .p-lg-108 {
    padding: 54rem !important;
  }

  .pt-lg-108,
  .py-lg-108 {
    padding-top: 54rem !important;
  }

  .pr-lg-108,
  .px-lg-108 {
    padding-right: 54rem !important;
  }

  .pb-lg-108,
  .py-lg-108 {
    padding-bottom: 54rem !important;
  }

  .pl-lg-108,
  .px-lg-108 {
    padding-left: 54rem !important;
  }

  .p-lg-109 {
    padding: 54.5rem !important;
  }

  .pt-lg-109,
  .py-lg-109 {
    padding-top: 54.5rem !important;
  }

  .pr-lg-109,
  .px-lg-109 {
    padding-right: 54.5rem !important;
  }

  .pb-lg-109,
  .py-lg-109 {
    padding-bottom: 54.5rem !important;
  }

  .pl-lg-109,
  .px-lg-109 {
    padding-left: 54.5rem !important;
  }

  .p-lg-110 {
    padding: 55rem !important;
  }

  .pt-lg-110,
  .py-lg-110 {
    padding-top: 55rem !important;
  }

  .pr-lg-110,
  .px-lg-110 {
    padding-right: 55rem !important;
  }

  .pb-lg-110,
  .py-lg-110 {
    padding-bottom: 55rem !important;
  }

  .pl-lg-110,
  .px-lg-110 {
    padding-left: 55rem !important;
  }

  .p-lg-111 {
    padding: 55.5rem !important;
  }

  .pt-lg-111,
  .py-lg-111 {
    padding-top: 55.5rem !important;
  }

  .pr-lg-111,
  .px-lg-111 {
    padding-right: 55.5rem !important;
  }

  .pb-lg-111,
  .py-lg-111 {
    padding-bottom: 55.5rem !important;
  }

  .pl-lg-111,
  .px-lg-111 {
    padding-left: 55.5rem !important;
  }

  .p-lg-112 {
    padding: 56rem !important;
  }

  .pt-lg-112,
  .py-lg-112 {
    padding-top: 56rem !important;
  }

  .pr-lg-112,
  .px-lg-112 {
    padding-right: 56rem !important;
  }

  .pb-lg-112,
  .py-lg-112 {
    padding-bottom: 56rem !important;
  }

  .pl-lg-112,
  .px-lg-112 {
    padding-left: 56rem !important;
  }

  .p-lg-113 {
    padding: 56.5rem !important;
  }

  .pt-lg-113,
  .py-lg-113 {
    padding-top: 56.5rem !important;
  }

  .pr-lg-113,
  .px-lg-113 {
    padding-right: 56.5rem !important;
  }

  .pb-lg-113,
  .py-lg-113 {
    padding-bottom: 56.5rem !important;
  }

  .pl-lg-113,
  .px-lg-113 {
    padding-left: 56.5rem !important;
  }

  .p-lg-114 {
    padding: 57rem !important;
  }

  .pt-lg-114,
  .py-lg-114 {
    padding-top: 57rem !important;
  }

  .pr-lg-114,
  .px-lg-114 {
    padding-right: 57rem !important;
  }

  .pb-lg-114,
  .py-lg-114 {
    padding-bottom: 57rem !important;
  }

  .pl-lg-114,
  .px-lg-114 {
    padding-left: 57rem !important;
  }

  .p-lg-115 {
    padding: 57.5rem !important;
  }

  .pt-lg-115,
  .py-lg-115 {
    padding-top: 57.5rem !important;
  }

  .pr-lg-115,
  .px-lg-115 {
    padding-right: 57.5rem !important;
  }

  .pb-lg-115,
  .py-lg-115 {
    padding-bottom: 57.5rem !important;
  }

  .pl-lg-115,
  .px-lg-115 {
    padding-left: 57.5rem !important;
  }

  .p-lg-116 {
    padding: 58rem !important;
  }

  .pt-lg-116,
  .py-lg-116 {
    padding-top: 58rem !important;
  }

  .pr-lg-116,
  .px-lg-116 {
    padding-right: 58rem !important;
  }

  .pb-lg-116,
  .py-lg-116 {
    padding-bottom: 58rem !important;
  }

  .pl-lg-116,
  .px-lg-116 {
    padding-left: 58rem !important;
  }

  .p-lg-117 {
    padding: 58.5rem !important;
  }

  .pt-lg-117,
  .py-lg-117 {
    padding-top: 58.5rem !important;
  }

  .pr-lg-117,
  .px-lg-117 {
    padding-right: 58.5rem !important;
  }

  .pb-lg-117,
  .py-lg-117 {
    padding-bottom: 58.5rem !important;
  }

  .pl-lg-117,
  .px-lg-117 {
    padding-left: 58.5rem !important;
  }

  .p-lg-118 {
    padding: 59rem !important;
  }

  .pt-lg-118,
  .py-lg-118 {
    padding-top: 59rem !important;
  }

  .pr-lg-118,
  .px-lg-118 {
    padding-right: 59rem !important;
  }

  .pb-lg-118,
  .py-lg-118 {
    padding-bottom: 59rem !important;
  }

  .pl-lg-118,
  .px-lg-118 {
    padding-left: 59rem !important;
  }

  .p-lg-119 {
    padding: 59.5rem !important;
  }

  .pt-lg-119,
  .py-lg-119 {
    padding-top: 59.5rem !important;
  }

  .pr-lg-119,
  .px-lg-119 {
    padding-right: 59.5rem !important;
  }

  .pb-lg-119,
  .py-lg-119 {
    padding-bottom: 59.5rem !important;
  }

  .pl-lg-119,
  .px-lg-119 {
    padding-left: 59.5rem !important;
  }

  .p-lg-120 {
    padding: 60rem !important;
  }

  .pt-lg-120,
  .py-lg-120 {
    padding-top: 60rem !important;
  }

  .pr-lg-120,
  .px-lg-120 {
    padding-right: 60rem !important;
  }

  .pb-lg-120,
  .py-lg-120 {
    padding-bottom: 60rem !important;
  }

  .pl-lg-120,
  .px-lg-120 {
    padding-left: 60rem !important;
  }

  .p-lg-121 {
    padding: 60.5rem !important;
  }

  .pt-lg-121,
  .py-lg-121 {
    padding-top: 60.5rem !important;
  }

  .pr-lg-121,
  .px-lg-121 {
    padding-right: 60.5rem !important;
  }

  .pb-lg-121,
  .py-lg-121 {
    padding-bottom: 60.5rem !important;
  }

  .pl-lg-121,
  .px-lg-121 {
    padding-left: 60.5rem !important;
  }

  .p-lg-122 {
    padding: 61rem !important;
  }

  .pt-lg-122,
  .py-lg-122 {
    padding-top: 61rem !important;
  }

  .pr-lg-122,
  .px-lg-122 {
    padding-right: 61rem !important;
  }

  .pb-lg-122,
  .py-lg-122 {
    padding-bottom: 61rem !important;
  }

  .pl-lg-122,
  .px-lg-122 {
    padding-left: 61rem !important;
  }

  .p-lg-123 {
    padding: 61.5rem !important;
  }

  .pt-lg-123,
  .py-lg-123 {
    padding-top: 61.5rem !important;
  }

  .pr-lg-123,
  .px-lg-123 {
    padding-right: 61.5rem !important;
  }

  .pb-lg-123,
  .py-lg-123 {
    padding-bottom: 61.5rem !important;
  }

  .pl-lg-123,
  .px-lg-123 {
    padding-left: 61.5rem !important;
  }

  .p-lg-124 {
    padding: 62rem !important;
  }

  .pt-lg-124,
  .py-lg-124 {
    padding-top: 62rem !important;
  }

  .pr-lg-124,
  .px-lg-124 {
    padding-right: 62rem !important;
  }

  .pb-lg-124,
  .py-lg-124 {
    padding-bottom: 62rem !important;
  }

  .pl-lg-124,
  .px-lg-124 {
    padding-left: 62rem !important;
  }

  .p-lg-125 {
    padding: 62.5rem !important;
  }

  .pt-lg-125,
  .py-lg-125 {
    padding-top: 62.5rem !important;
  }

  .pr-lg-125,
  .px-lg-125 {
    padding-right: 62.5rem !important;
  }

  .pb-lg-125,
  .py-lg-125 {
    padding-bottom: 62.5rem !important;
  }

  .pl-lg-125,
  .px-lg-125 {
    padding-left: 62.5rem !important;
  }

  .p-lg-126 {
    padding: 63rem !important;
  }

  .pt-lg-126,
  .py-lg-126 {
    padding-top: 63rem !important;
  }

  .pr-lg-126,
  .px-lg-126 {
    padding-right: 63rem !important;
  }

  .pb-lg-126,
  .py-lg-126 {
    padding-bottom: 63rem !important;
  }

  .pl-lg-126,
  .px-lg-126 {
    padding-left: 63rem !important;
  }

  .p-lg-127 {
    padding: 63.5rem !important;
  }

  .pt-lg-127,
  .py-lg-127 {
    padding-top: 63.5rem !important;
  }

  .pr-lg-127,
  .px-lg-127 {
    padding-right: 63.5rem !important;
  }

  .pb-lg-127,
  .py-lg-127 {
    padding-bottom: 63.5rem !important;
  }

  .pl-lg-127,
  .px-lg-127 {
    padding-left: 63.5rem !important;
  }

  .p-lg-128 {
    padding: 64rem !important;
  }

  .pt-lg-128,
  .py-lg-128 {
    padding-top: 64rem !important;
  }

  .pr-lg-128,
  .px-lg-128 {
    padding-right: 64rem !important;
  }

  .pb-lg-128,
  .py-lg-128 {
    padding-bottom: 64rem !important;
  }

  .pl-lg-128,
  .px-lg-128 {
    padding-left: 64rem !important;
  }

  .p-lg-129 {
    padding: 64.5rem !important;
  }

  .pt-lg-129,
  .py-lg-129 {
    padding-top: 64.5rem !important;
  }

  .pr-lg-129,
  .px-lg-129 {
    padding-right: 64.5rem !important;
  }

  .pb-lg-129,
  .py-lg-129 {
    padding-bottom: 64.5rem !important;
  }

  .pl-lg-129,
  .px-lg-129 {
    padding-left: 64.5rem !important;
  }

  .p-lg-130 {
    padding: 65rem !important;
  }

  .pt-lg-130,
  .py-lg-130 {
    padding-top: 65rem !important;
  }

  .pr-lg-130,
  .px-lg-130 {
    padding-right: 65rem !important;
  }

  .pb-lg-130,
  .py-lg-130 {
    padding-bottom: 65rem !important;
  }

  .pl-lg-130,
  .px-lg-130 {
    padding-left: 65rem !important;
  }

  .p-lg-131 {
    padding: 65.5rem !important;
  }

  .pt-lg-131,
  .py-lg-131 {
    padding-top: 65.5rem !important;
  }

  .pr-lg-131,
  .px-lg-131 {
    padding-right: 65.5rem !important;
  }

  .pb-lg-131,
  .py-lg-131 {
    padding-bottom: 65.5rem !important;
  }

  .pl-lg-131,
  .px-lg-131 {
    padding-left: 65.5rem !important;
  }

  .p-lg-132 {
    padding: 66rem !important;
  }

  .pt-lg-132,
  .py-lg-132 {
    padding-top: 66rem !important;
  }

  .pr-lg-132,
  .px-lg-132 {
    padding-right: 66rem !important;
  }

  .pb-lg-132,
  .py-lg-132 {
    padding-bottom: 66rem !important;
  }

  .pl-lg-132,
  .px-lg-132 {
    padding-left: 66rem !important;
  }

  .p-lg-133 {
    padding: 66.5rem !important;
  }

  .pt-lg-133,
  .py-lg-133 {
    padding-top: 66.5rem !important;
  }

  .pr-lg-133,
  .px-lg-133 {
    padding-right: 66.5rem !important;
  }

  .pb-lg-133,
  .py-lg-133 {
    padding-bottom: 66.5rem !important;
  }

  .pl-lg-133,
  .px-lg-133 {
    padding-left: 66.5rem !important;
  }

  .p-lg-134 {
    padding: 67rem !important;
  }

  .pt-lg-134,
  .py-lg-134 {
    padding-top: 67rem !important;
  }

  .pr-lg-134,
  .px-lg-134 {
    padding-right: 67rem !important;
  }

  .pb-lg-134,
  .py-lg-134 {
    padding-bottom: 67rem !important;
  }

  .pl-lg-134,
  .px-lg-134 {
    padding-left: 67rem !important;
  }

  .p-lg-135 {
    padding: 67.5rem !important;
  }

  .pt-lg-135,
  .py-lg-135 {
    padding-top: 67.5rem !important;
  }

  .pr-lg-135,
  .px-lg-135 {
    padding-right: 67.5rem !important;
  }

  .pb-lg-135,
  .py-lg-135 {
    padding-bottom: 67.5rem !important;
  }

  .pl-lg-135,
  .px-lg-135 {
    padding-left: 67.5rem !important;
  }

  .p-lg-136 {
    padding: 68rem !important;
  }

  .pt-lg-136,
  .py-lg-136 {
    padding-top: 68rem !important;
  }

  .pr-lg-136,
  .px-lg-136 {
    padding-right: 68rem !important;
  }

  .pb-lg-136,
  .py-lg-136 {
    padding-bottom: 68rem !important;
  }

  .pl-lg-136,
  .px-lg-136 {
    padding-left: 68rem !important;
  }

  .p-lg-137 {
    padding: 68.5rem !important;
  }

  .pt-lg-137,
  .py-lg-137 {
    padding-top: 68.5rem !important;
  }

  .pr-lg-137,
  .px-lg-137 {
    padding-right: 68.5rem !important;
  }

  .pb-lg-137,
  .py-lg-137 {
    padding-bottom: 68.5rem !important;
  }

  .pl-lg-137,
  .px-lg-137 {
    padding-left: 68.5rem !important;
  }

  .p-lg-138 {
    padding: 69rem !important;
  }

  .pt-lg-138,
  .py-lg-138 {
    padding-top: 69rem !important;
  }

  .pr-lg-138,
  .px-lg-138 {
    padding-right: 69rem !important;
  }

  .pb-lg-138,
  .py-lg-138 {
    padding-bottom: 69rem !important;
  }

  .pl-lg-138,
  .px-lg-138 {
    padding-left: 69rem !important;
  }

  .p-lg-139 {
    padding: 69.5rem !important;
  }

  .pt-lg-139,
  .py-lg-139 {
    padding-top: 69.5rem !important;
  }

  .pr-lg-139,
  .px-lg-139 {
    padding-right: 69.5rem !important;
  }

  .pb-lg-139,
  .py-lg-139 {
    padding-bottom: 69.5rem !important;
  }

  .pl-lg-139,
  .px-lg-139 {
    padding-left: 69.5rem !important;
  }

  .p-lg-140 {
    padding: 70rem !important;
  }

  .pt-lg-140,
  .py-lg-140 {
    padding-top: 70rem !important;
  }

  .pr-lg-140,
  .px-lg-140 {
    padding-right: 70rem !important;
  }

  .pb-lg-140,
  .py-lg-140 {
    padding-bottom: 70rem !important;
  }

  .pl-lg-140,
  .px-lg-140 {
    padding-left: 70rem !important;
  }

  .p-lg-141 {
    padding: 70.5rem !important;
  }

  .pt-lg-141,
  .py-lg-141 {
    padding-top: 70.5rem !important;
  }

  .pr-lg-141,
  .px-lg-141 {
    padding-right: 70.5rem !important;
  }

  .pb-lg-141,
  .py-lg-141 {
    padding-bottom: 70.5rem !important;
  }

  .pl-lg-141,
  .px-lg-141 {
    padding-left: 70.5rem !important;
  }

  .p-lg-142 {
    padding: 71rem !important;
  }

  .pt-lg-142,
  .py-lg-142 {
    padding-top: 71rem !important;
  }

  .pr-lg-142,
  .px-lg-142 {
    padding-right: 71rem !important;
  }

  .pb-lg-142,
  .py-lg-142 {
    padding-bottom: 71rem !important;
  }

  .pl-lg-142,
  .px-lg-142 {
    padding-left: 71rem !important;
  }

  .p-lg-143 {
    padding: 71.5rem !important;
  }

  .pt-lg-143,
  .py-lg-143 {
    padding-top: 71.5rem !important;
  }

  .pr-lg-143,
  .px-lg-143 {
    padding-right: 71.5rem !important;
  }

  .pb-lg-143,
  .py-lg-143 {
    padding-bottom: 71.5rem !important;
  }

  .pl-lg-143,
  .px-lg-143 {
    padding-left: 71.5rem !important;
  }

  .p-lg-144 {
    padding: 72rem !important;
  }

  .pt-lg-144,
  .py-lg-144 {
    padding-top: 72rem !important;
  }

  .pr-lg-144,
  .px-lg-144 {
    padding-right: 72rem !important;
  }

  .pb-lg-144,
  .py-lg-144 {
    padding-bottom: 72rem !important;
  }

  .pl-lg-144,
  .px-lg-144 {
    padding-left: 72rem !important;
  }

  .p-lg-145 {
    padding: 72.5rem !important;
  }

  .pt-lg-145,
  .py-lg-145 {
    padding-top: 72.5rem !important;
  }

  .pr-lg-145,
  .px-lg-145 {
    padding-right: 72.5rem !important;
  }

  .pb-lg-145,
  .py-lg-145 {
    padding-bottom: 72.5rem !important;
  }

  .pl-lg-145,
  .px-lg-145 {
    padding-left: 72.5rem !important;
  }

  .p-lg-146 {
    padding: 73rem !important;
  }

  .pt-lg-146,
  .py-lg-146 {
    padding-top: 73rem !important;
  }

  .pr-lg-146,
  .px-lg-146 {
    padding-right: 73rem !important;
  }

  .pb-lg-146,
  .py-lg-146 {
    padding-bottom: 73rem !important;
  }

  .pl-lg-146,
  .px-lg-146 {
    padding-left: 73rem !important;
  }

  .p-lg-147 {
    padding: 73.5rem !important;
  }

  .pt-lg-147,
  .py-lg-147 {
    padding-top: 73.5rem !important;
  }

  .pr-lg-147,
  .px-lg-147 {
    padding-right: 73.5rem !important;
  }

  .pb-lg-147,
  .py-lg-147 {
    padding-bottom: 73.5rem !important;
  }

  .pl-lg-147,
  .px-lg-147 {
    padding-left: 73.5rem !important;
  }

  .p-lg-148 {
    padding: 74rem !important;
  }

  .pt-lg-148,
  .py-lg-148 {
    padding-top: 74rem !important;
  }

  .pr-lg-148,
  .px-lg-148 {
    padding-right: 74rem !important;
  }

  .pb-lg-148,
  .py-lg-148 {
    padding-bottom: 74rem !important;
  }

  .pl-lg-148,
  .px-lg-148 {
    padding-left: 74rem !important;
  }

  .p-lg-149 {
    padding: 74.5rem !important;
  }

  .pt-lg-149,
  .py-lg-149 {
    padding-top: 74.5rem !important;
  }

  .pr-lg-149,
  .px-lg-149 {
    padding-right: 74.5rem !important;
  }

  .pb-lg-149,
  .py-lg-149 {
    padding-bottom: 74.5rem !important;
  }

  .pl-lg-149,
  .px-lg-149 {
    padding-left: 74.5rem !important;
  }

  .p-lg-150 {
    padding: 75rem !important;
  }

  .pt-lg-150,
  .py-lg-150 {
    padding-top: 75rem !important;
  }

  .pr-lg-150,
  .px-lg-150 {
    padding-right: 75rem !important;
  }

  .pb-lg-150,
  .py-lg-150 {
    padding-bottom: 75rem !important;
  }

  .pl-lg-150,
  .px-lg-150 {
    padding-left: 75rem !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.5rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.5rem !important;
  }

  .m-xl-2 {
    margin: 1rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 1rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 1rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 1rem !important;
  }

  .m-xl-3 {
    margin: 1.5rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1.5rem !important;
  }

  .m-xl-4 {
    margin: 2rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 2rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 2rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 2rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 2rem !important;
  }

  .m-xl-5 {
    margin: 2.5rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 2.5rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 2.5rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 2.5rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 2.5rem !important;
  }

  .m-xl-6 {
    margin: 3rem !important;
  }

  .mt-xl-6,
  .my-xl-6 {
    margin-top: 3rem !important;
  }

  .mr-xl-6,
  .mx-xl-6 {
    margin-right: 3rem !important;
  }

  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-6,
  .mx-xl-6 {
    margin-left: 3rem !important;
  }

  .m-xl-7 {
    margin: 3.5rem !important;
  }

  .mt-xl-7,
  .my-xl-7 {
    margin-top: 3.5rem !important;
  }

  .mr-xl-7,
  .mx-xl-7 {
    margin-right: 3.5rem !important;
  }

  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 3.5rem !important;
  }

  .ml-xl-7,
  .mx-xl-7 {
    margin-left: 3.5rem !important;
  }

  .m-xl-8 {
    margin: 4rem !important;
  }

  .mt-xl-8,
  .my-xl-8 {
    margin-top: 4rem !important;
  }

  .mr-xl-8,
  .mx-xl-8 {
    margin-right: 4rem !important;
  }

  .mb-xl-8,
  .my-xl-8 {
    margin-bottom: 4rem !important;
  }

  .ml-xl-8,
  .mx-xl-8 {
    margin-left: 4rem !important;
  }

  .m-xl-9 {
    margin: 4.5rem !important;
  }

  .mt-xl-9,
  .my-xl-9 {
    margin-top: 4.5rem !important;
  }

  .mr-xl-9,
  .mx-xl-9 {
    margin-right: 4.5rem !important;
  }

  .mb-xl-9,
  .my-xl-9 {
    margin-bottom: 4.5rem !important;
  }

  .ml-xl-9,
  .mx-xl-9 {
    margin-left: 4.5rem !important;
  }

  .m-xl-10 {
    margin: 5rem !important;
  }

  .mt-xl-10,
  .my-xl-10 {
    margin-top: 5rem !important;
  }

  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 5rem !important;
  }

  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 5rem !important;
  }

  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 5rem !important;
  }

  .m-xl-11 {
    margin: 5.5rem !important;
  }

  .mt-xl-11,
  .my-xl-11 {
    margin-top: 5.5rem !important;
  }

  .mr-xl-11,
  .mx-xl-11 {
    margin-right: 5.5rem !important;
  }

  .mb-xl-11,
  .my-xl-11 {
    margin-bottom: 5.5rem !important;
  }

  .ml-xl-11,
  .mx-xl-11 {
    margin-left: 5.5rem !important;
  }

  .m-xl-12 {
    margin: 6rem !important;
  }

  .mt-xl-12,
  .my-xl-12 {
    margin-top: 6rem !important;
  }

  .mr-xl-12,
  .mx-xl-12 {
    margin-right: 6rem !important;
  }

  .mb-xl-12,
  .my-xl-12 {
    margin-bottom: 6rem !important;
  }

  .ml-xl-12,
  .mx-xl-12 {
    margin-left: 6rem !important;
  }

  .m-xl-13 {
    margin: 6.5rem !important;
  }

  .mt-xl-13,
  .my-xl-13 {
    margin-top: 6.5rem !important;
  }

  .mr-xl-13,
  .mx-xl-13 {
    margin-right: 6.5rem !important;
  }

  .mb-xl-13,
  .my-xl-13 {
    margin-bottom: 6.5rem !important;
  }

  .ml-xl-13,
  .mx-xl-13 {
    margin-left: 6.5rem !important;
  }

  .m-xl-14 {
    margin: 7rem !important;
  }

  .mt-xl-14,
  .my-xl-14 {
    margin-top: 7rem !important;
  }

  .mr-xl-14,
  .mx-xl-14 {
    margin-right: 7rem !important;
  }

  .mb-xl-14,
  .my-xl-14 {
    margin-bottom: 7rem !important;
  }

  .ml-xl-14,
  .mx-xl-14 {
    margin-left: 7rem !important;
  }

  .m-xl-15 {
    margin: 7.5rem !important;
  }

  .mt-xl-15,
  .my-xl-15 {
    margin-top: 7.5rem !important;
  }

  .mr-xl-15,
  .mx-xl-15 {
    margin-right: 7.5rem !important;
  }

  .mb-xl-15,
  .my-xl-15 {
    margin-bottom: 7.5rem !important;
  }

  .ml-xl-15,
  .mx-xl-15 {
    margin-left: 7.5rem !important;
  }

  .m-xl-16 {
    margin: 8rem !important;
  }

  .mt-xl-16,
  .my-xl-16 {
    margin-top: 8rem !important;
  }

  .mr-xl-16,
  .mx-xl-16 {
    margin-right: 8rem !important;
  }

  .mb-xl-16,
  .my-xl-16 {
    margin-bottom: 8rem !important;
  }

  .ml-xl-16,
  .mx-xl-16 {
    margin-left: 8rem !important;
  }

  .m-xl-17 {
    margin: 8.5rem !important;
  }

  .mt-xl-17,
  .my-xl-17 {
    margin-top: 8.5rem !important;
  }

  .mr-xl-17,
  .mx-xl-17 {
    margin-right: 8.5rem !important;
  }

  .mb-xl-17,
  .my-xl-17 {
    margin-bottom: 8.5rem !important;
  }

  .ml-xl-17,
  .mx-xl-17 {
    margin-left: 8.5rem !important;
  }

  .m-xl-18 {
    margin: 9rem !important;
  }

  .mt-xl-18,
  .my-xl-18 {
    margin-top: 9rem !important;
  }

  .mr-xl-18,
  .mx-xl-18 {
    margin-right: 9rem !important;
  }

  .mb-xl-18,
  .my-xl-18 {
    margin-bottom: 9rem !important;
  }

  .ml-xl-18,
  .mx-xl-18 {
    margin-left: 9rem !important;
  }

  .m-xl-19 {
    margin: 9.5rem !important;
  }

  .mt-xl-19,
  .my-xl-19 {
    margin-top: 9.5rem !important;
  }

  .mr-xl-19,
  .mx-xl-19 {
    margin-right: 9.5rem !important;
  }

  .mb-xl-19,
  .my-xl-19 {
    margin-bottom: 9.5rem !important;
  }

  .ml-xl-19,
  .mx-xl-19 {
    margin-left: 9.5rem !important;
  }

  .m-xl-20 {
    margin: 10rem !important;
  }

  .mt-xl-20,
  .my-xl-20 {
    margin-top: 10rem !important;
  }

  .mr-xl-20,
  .mx-xl-20 {
    margin-right: 10rem !important;
  }

  .mb-xl-20,
  .my-xl-20 {
    margin-bottom: 10rem !important;
  }

  .ml-xl-20,
  .mx-xl-20 {
    margin-left: 10rem !important;
  }

  .m-xl-21 {
    margin: 10.5rem !important;
  }

  .mt-xl-21,
  .my-xl-21 {
    margin-top: 10.5rem !important;
  }

  .mr-xl-21,
  .mx-xl-21 {
    margin-right: 10.5rem !important;
  }

  .mb-xl-21,
  .my-xl-21 {
    margin-bottom: 10.5rem !important;
  }

  .ml-xl-21,
  .mx-xl-21 {
    margin-left: 10.5rem !important;
  }

  .m-xl-22 {
    margin: 11rem !important;
  }

  .mt-xl-22,
  .my-xl-22 {
    margin-top: 11rem !important;
  }

  .mr-xl-22,
  .mx-xl-22 {
    margin-right: 11rem !important;
  }

  .mb-xl-22,
  .my-xl-22 {
    margin-bottom: 11rem !important;
  }

  .ml-xl-22,
  .mx-xl-22 {
    margin-left: 11rem !important;
  }

  .m-xl-23 {
    margin: 11.5rem !important;
  }

  .mt-xl-23,
  .my-xl-23 {
    margin-top: 11.5rem !important;
  }

  .mr-xl-23,
  .mx-xl-23 {
    margin-right: 11.5rem !important;
  }

  .mb-xl-23,
  .my-xl-23 {
    margin-bottom: 11.5rem !important;
  }

  .ml-xl-23,
  .mx-xl-23 {
    margin-left: 11.5rem !important;
  }

  .m-xl-24 {
    margin: 12rem !important;
  }

  .mt-xl-24,
  .my-xl-24 {
    margin-top: 12rem !important;
  }

  .mr-xl-24,
  .mx-xl-24 {
    margin-right: 12rem !important;
  }

  .mb-xl-24,
  .my-xl-24 {
    margin-bottom: 12rem !important;
  }

  .ml-xl-24,
  .mx-xl-24 {
    margin-left: 12rem !important;
  }

  .m-xl-25 {
    margin: 12.5rem !important;
  }

  .mt-xl-25,
  .my-xl-25 {
    margin-top: 12.5rem !important;
  }

  .mr-xl-25,
  .mx-xl-25 {
    margin-right: 12.5rem !important;
  }

  .mb-xl-25,
  .my-xl-25 {
    margin-bottom: 12.5rem !important;
  }

  .ml-xl-25,
  .mx-xl-25 {
    margin-left: 12.5rem !important;
  }

  .m-xl-26 {
    margin: 13rem !important;
  }

  .mt-xl-26,
  .my-xl-26 {
    margin-top: 13rem !important;
  }

  .mr-xl-26,
  .mx-xl-26 {
    margin-right: 13rem !important;
  }

  .mb-xl-26,
  .my-xl-26 {
    margin-bottom: 13rem !important;
  }

  .ml-xl-26,
  .mx-xl-26 {
    margin-left: 13rem !important;
  }

  .m-xl-27 {
    margin: 13.5rem !important;
  }

  .mt-xl-27,
  .my-xl-27 {
    margin-top: 13.5rem !important;
  }

  .mr-xl-27,
  .mx-xl-27 {
    margin-right: 13.5rem !important;
  }

  .mb-xl-27,
  .my-xl-27 {
    margin-bottom: 13.5rem !important;
  }

  .ml-xl-27,
  .mx-xl-27 {
    margin-left: 13.5rem !important;
  }

  .m-xl-28 {
    margin: 14rem !important;
  }

  .mt-xl-28,
  .my-xl-28 {
    margin-top: 14rem !important;
  }

  .mr-xl-28,
  .mx-xl-28 {
    margin-right: 14rem !important;
  }

  .mb-xl-28,
  .my-xl-28 {
    margin-bottom: 14rem !important;
  }

  .ml-xl-28,
  .mx-xl-28 {
    margin-left: 14rem !important;
  }

  .m-xl-29 {
    margin: 14.5rem !important;
  }

  .mt-xl-29,
  .my-xl-29 {
    margin-top: 14.5rem !important;
  }

  .mr-xl-29,
  .mx-xl-29 {
    margin-right: 14.5rem !important;
  }

  .mb-xl-29,
  .my-xl-29 {
    margin-bottom: 14.5rem !important;
  }

  .ml-xl-29,
  .mx-xl-29 {
    margin-left: 14.5rem !important;
  }

  .m-xl-30 {
    margin: 15rem !important;
  }

  .mt-xl-30,
  .my-xl-30 {
    margin-top: 15rem !important;
  }

  .mr-xl-30,
  .mx-xl-30 {
    margin-right: 15rem !important;
  }

  .mb-xl-30,
  .my-xl-30 {
    margin-bottom: 15rem !important;
  }

  .ml-xl-30,
  .mx-xl-30 {
    margin-left: 15rem !important;
  }

  .m-xl-31 {
    margin: 15.5rem !important;
  }

  .mt-xl-31,
  .my-xl-31 {
    margin-top: 15.5rem !important;
  }

  .mr-xl-31,
  .mx-xl-31 {
    margin-right: 15.5rem !important;
  }

  .mb-xl-31,
  .my-xl-31 {
    margin-bottom: 15.5rem !important;
  }

  .ml-xl-31,
  .mx-xl-31 {
    margin-left: 15.5rem !important;
  }

  .m-xl-32 {
    margin: 16rem !important;
  }

  .mt-xl-32,
  .my-xl-32 {
    margin-top: 16rem !important;
  }

  .mr-xl-32,
  .mx-xl-32 {
    margin-right: 16rem !important;
  }

  .mb-xl-32,
  .my-xl-32 {
    margin-bottom: 16rem !important;
  }

  .ml-xl-32,
  .mx-xl-32 {
    margin-left: 16rem !important;
  }

  .m-xl-33 {
    margin: 16.5rem !important;
  }

  .mt-xl-33,
  .my-xl-33 {
    margin-top: 16.5rem !important;
  }

  .mr-xl-33,
  .mx-xl-33 {
    margin-right: 16.5rem !important;
  }

  .mb-xl-33,
  .my-xl-33 {
    margin-bottom: 16.5rem !important;
  }

  .ml-xl-33,
  .mx-xl-33 {
    margin-left: 16.5rem !important;
  }

  .m-xl-34 {
    margin: 17rem !important;
  }

  .mt-xl-34,
  .my-xl-34 {
    margin-top: 17rem !important;
  }

  .mr-xl-34,
  .mx-xl-34 {
    margin-right: 17rem !important;
  }

  .mb-xl-34,
  .my-xl-34 {
    margin-bottom: 17rem !important;
  }

  .ml-xl-34,
  .mx-xl-34 {
    margin-left: 17rem !important;
  }

  .m-xl-35 {
    margin: 17.5rem !important;
  }

  .mt-xl-35,
  .my-xl-35 {
    margin-top: 17.5rem !important;
  }

  .mr-xl-35,
  .mx-xl-35 {
    margin-right: 17.5rem !important;
  }

  .mb-xl-35,
  .my-xl-35 {
    margin-bottom: 17.5rem !important;
  }

  .ml-xl-35,
  .mx-xl-35 {
    margin-left: 17.5rem !important;
  }

  .m-xl-36 {
    margin: 18rem !important;
  }

  .mt-xl-36,
  .my-xl-36 {
    margin-top: 18rem !important;
  }

  .mr-xl-36,
  .mx-xl-36 {
    margin-right: 18rem !important;
  }

  .mb-xl-36,
  .my-xl-36 {
    margin-bottom: 18rem !important;
  }

  .ml-xl-36,
  .mx-xl-36 {
    margin-left: 18rem !important;
  }

  .m-xl-37 {
    margin: 18.5rem !important;
  }

  .mt-xl-37,
  .my-xl-37 {
    margin-top: 18.5rem !important;
  }

  .mr-xl-37,
  .mx-xl-37 {
    margin-right: 18.5rem !important;
  }

  .mb-xl-37,
  .my-xl-37 {
    margin-bottom: 18.5rem !important;
  }

  .ml-xl-37,
  .mx-xl-37 {
    margin-left: 18.5rem !important;
  }

  .m-xl-38 {
    margin: 19rem !important;
  }

  .mt-xl-38,
  .my-xl-38 {
    margin-top: 19rem !important;
  }

  .mr-xl-38,
  .mx-xl-38 {
    margin-right: 19rem !important;
  }

  .mb-xl-38,
  .my-xl-38 {
    margin-bottom: 19rem !important;
  }

  .ml-xl-38,
  .mx-xl-38 {
    margin-left: 19rem !important;
  }

  .m-xl-39 {
    margin: 19.5rem !important;
  }

  .mt-xl-39,
  .my-xl-39 {
    margin-top: 19.5rem !important;
  }

  .mr-xl-39,
  .mx-xl-39 {
    margin-right: 19.5rem !important;
  }

  .mb-xl-39,
  .my-xl-39 {
    margin-bottom: 19.5rem !important;
  }

  .ml-xl-39,
  .mx-xl-39 {
    margin-left: 19.5rem !important;
  }

  .m-xl-40 {
    margin: 20rem !important;
  }

  .mt-xl-40,
  .my-xl-40 {
    margin-top: 20rem !important;
  }

  .mr-xl-40,
  .mx-xl-40 {
    margin-right: 20rem !important;
  }

  .mb-xl-40,
  .my-xl-40 {
    margin-bottom: 20rem !important;
  }

  .ml-xl-40,
  .mx-xl-40 {
    margin-left: 20rem !important;
  }

  .m-xl-41 {
    margin: 20.5rem !important;
  }

  .mt-xl-41,
  .my-xl-41 {
    margin-top: 20.5rem !important;
  }

  .mr-xl-41,
  .mx-xl-41 {
    margin-right: 20.5rem !important;
  }

  .mb-xl-41,
  .my-xl-41 {
    margin-bottom: 20.5rem !important;
  }

  .ml-xl-41,
  .mx-xl-41 {
    margin-left: 20.5rem !important;
  }

  .m-xl-42 {
    margin: 21rem !important;
  }

  .mt-xl-42,
  .my-xl-42 {
    margin-top: 21rem !important;
  }

  .mr-xl-42,
  .mx-xl-42 {
    margin-right: 21rem !important;
  }

  .mb-xl-42,
  .my-xl-42 {
    margin-bottom: 21rem !important;
  }

  .ml-xl-42,
  .mx-xl-42 {
    margin-left: 21rem !important;
  }

  .m-xl-43 {
    margin: 21.5rem !important;
  }

  .mt-xl-43,
  .my-xl-43 {
    margin-top: 21.5rem !important;
  }

  .mr-xl-43,
  .mx-xl-43 {
    margin-right: 21.5rem !important;
  }

  .mb-xl-43,
  .my-xl-43 {
    margin-bottom: 21.5rem !important;
  }

  .ml-xl-43,
  .mx-xl-43 {
    margin-left: 21.5rem !important;
  }

  .m-xl-44 {
    margin: 22rem !important;
  }

  .mt-xl-44,
  .my-xl-44 {
    margin-top: 22rem !important;
  }

  .mr-xl-44,
  .mx-xl-44 {
    margin-right: 22rem !important;
  }

  .mb-xl-44,
  .my-xl-44 {
    margin-bottom: 22rem !important;
  }

  .ml-xl-44,
  .mx-xl-44 {
    margin-left: 22rem !important;
  }

  .m-xl-45 {
    margin: 22.5rem !important;
  }

  .mt-xl-45,
  .my-xl-45 {
    margin-top: 22.5rem !important;
  }

  .mr-xl-45,
  .mx-xl-45 {
    margin-right: 22.5rem !important;
  }

  .mb-xl-45,
  .my-xl-45 {
    margin-bottom: 22.5rem !important;
  }

  .ml-xl-45,
  .mx-xl-45 {
    margin-left: 22.5rem !important;
  }

  .m-xl-46 {
    margin: 23rem !important;
  }

  .mt-xl-46,
  .my-xl-46 {
    margin-top: 23rem !important;
  }

  .mr-xl-46,
  .mx-xl-46 {
    margin-right: 23rem !important;
  }

  .mb-xl-46,
  .my-xl-46 {
    margin-bottom: 23rem !important;
  }

  .ml-xl-46,
  .mx-xl-46 {
    margin-left: 23rem !important;
  }

  .m-xl-47 {
    margin: 23.5rem !important;
  }

  .mt-xl-47,
  .my-xl-47 {
    margin-top: 23.5rem !important;
  }

  .mr-xl-47,
  .mx-xl-47 {
    margin-right: 23.5rem !important;
  }

  .mb-xl-47,
  .my-xl-47 {
    margin-bottom: 23.5rem !important;
  }

  .ml-xl-47,
  .mx-xl-47 {
    margin-left: 23.5rem !important;
  }

  .m-xl-48 {
    margin: 24rem !important;
  }

  .mt-xl-48,
  .my-xl-48 {
    margin-top: 24rem !important;
  }

  .mr-xl-48,
  .mx-xl-48 {
    margin-right: 24rem !important;
  }

  .mb-xl-48,
  .my-xl-48 {
    margin-bottom: 24rem !important;
  }

  .ml-xl-48,
  .mx-xl-48 {
    margin-left: 24rem !important;
  }

  .m-xl-49 {
    margin: 24.5rem !important;
  }

  .mt-xl-49,
  .my-xl-49 {
    margin-top: 24.5rem !important;
  }

  .mr-xl-49,
  .mx-xl-49 {
    margin-right: 24.5rem !important;
  }

  .mb-xl-49,
  .my-xl-49 {
    margin-bottom: 24.5rem !important;
  }

  .ml-xl-49,
  .mx-xl-49 {
    margin-left: 24.5rem !important;
  }

  .m-xl-50 {
    margin: 25rem !important;
  }

  .mt-xl-50,
  .my-xl-50 {
    margin-top: 25rem !important;
  }

  .mr-xl-50,
  .mx-xl-50 {
    margin-right: 25rem !important;
  }

  .mb-xl-50,
  .my-xl-50 {
    margin-bottom: 25rem !important;
  }

  .ml-xl-50,
  .mx-xl-50 {
    margin-left: 25rem !important;
  }

  .m-xl-51 {
    margin: 25.5rem !important;
  }

  .mt-xl-51,
  .my-xl-51 {
    margin-top: 25.5rem !important;
  }

  .mr-xl-51,
  .mx-xl-51 {
    margin-right: 25.5rem !important;
  }

  .mb-xl-51,
  .my-xl-51 {
    margin-bottom: 25.5rem !important;
  }

  .ml-xl-51,
  .mx-xl-51 {
    margin-left: 25.5rem !important;
  }

  .m-xl-52 {
    margin: 26rem !important;
  }

  .mt-xl-52,
  .my-xl-52 {
    margin-top: 26rem !important;
  }

  .mr-xl-52,
  .mx-xl-52 {
    margin-right: 26rem !important;
  }

  .mb-xl-52,
  .my-xl-52 {
    margin-bottom: 26rem !important;
  }

  .ml-xl-52,
  .mx-xl-52 {
    margin-left: 26rem !important;
  }

  .m-xl-53 {
    margin: 26.5rem !important;
  }

  .mt-xl-53,
  .my-xl-53 {
    margin-top: 26.5rem !important;
  }

  .mr-xl-53,
  .mx-xl-53 {
    margin-right: 26.5rem !important;
  }

  .mb-xl-53,
  .my-xl-53 {
    margin-bottom: 26.5rem !important;
  }

  .ml-xl-53,
  .mx-xl-53 {
    margin-left: 26.5rem !important;
  }

  .m-xl-54 {
    margin: 27rem !important;
  }

  .mt-xl-54,
  .my-xl-54 {
    margin-top: 27rem !important;
  }

  .mr-xl-54,
  .mx-xl-54 {
    margin-right: 27rem !important;
  }

  .mb-xl-54,
  .my-xl-54 {
    margin-bottom: 27rem !important;
  }

  .ml-xl-54,
  .mx-xl-54 {
    margin-left: 27rem !important;
  }

  .m-xl-55 {
    margin: 27.5rem !important;
  }

  .mt-xl-55,
  .my-xl-55 {
    margin-top: 27.5rem !important;
  }

  .mr-xl-55,
  .mx-xl-55 {
    margin-right: 27.5rem !important;
  }

  .mb-xl-55,
  .my-xl-55 {
    margin-bottom: 27.5rem !important;
  }

  .ml-xl-55,
  .mx-xl-55 {
    margin-left: 27.5rem !important;
  }

  .m-xl-56 {
    margin: 28rem !important;
  }

  .mt-xl-56,
  .my-xl-56 {
    margin-top: 28rem !important;
  }

  .mr-xl-56,
  .mx-xl-56 {
    margin-right: 28rem !important;
  }

  .mb-xl-56,
  .my-xl-56 {
    margin-bottom: 28rem !important;
  }

  .ml-xl-56,
  .mx-xl-56 {
    margin-left: 28rem !important;
  }

  .m-xl-57 {
    margin: 28.5rem !important;
  }

  .mt-xl-57,
  .my-xl-57 {
    margin-top: 28.5rem !important;
  }

  .mr-xl-57,
  .mx-xl-57 {
    margin-right: 28.5rem !important;
  }

  .mb-xl-57,
  .my-xl-57 {
    margin-bottom: 28.5rem !important;
  }

  .ml-xl-57,
  .mx-xl-57 {
    margin-left: 28.5rem !important;
  }

  .m-xl-58 {
    margin: 29rem !important;
  }

  .mt-xl-58,
  .my-xl-58 {
    margin-top: 29rem !important;
  }

  .mr-xl-58,
  .mx-xl-58 {
    margin-right: 29rem !important;
  }

  .mb-xl-58,
  .my-xl-58 {
    margin-bottom: 29rem !important;
  }

  .ml-xl-58,
  .mx-xl-58 {
    margin-left: 29rem !important;
  }

  .m-xl-59 {
    margin: 29.5rem !important;
  }

  .mt-xl-59,
  .my-xl-59 {
    margin-top: 29.5rem !important;
  }

  .mr-xl-59,
  .mx-xl-59 {
    margin-right: 29.5rem !important;
  }

  .mb-xl-59,
  .my-xl-59 {
    margin-bottom: 29.5rem !important;
  }

  .ml-xl-59,
  .mx-xl-59 {
    margin-left: 29.5rem !important;
  }

  .m-xl-60 {
    margin: 30rem !important;
  }

  .mt-xl-60,
  .my-xl-60 {
    margin-top: 30rem !important;
  }

  .mr-xl-60,
  .mx-xl-60 {
    margin-right: 30rem !important;
  }

  .mb-xl-60,
  .my-xl-60 {
    margin-bottom: 30rem !important;
  }

  .ml-xl-60,
  .mx-xl-60 {
    margin-left: 30rem !important;
  }

  .m-xl-61 {
    margin: 30.5rem !important;
  }

  .mt-xl-61,
  .my-xl-61 {
    margin-top: 30.5rem !important;
  }

  .mr-xl-61,
  .mx-xl-61 {
    margin-right: 30.5rem !important;
  }

  .mb-xl-61,
  .my-xl-61 {
    margin-bottom: 30.5rem !important;
  }

  .ml-xl-61,
  .mx-xl-61 {
    margin-left: 30.5rem !important;
  }

  .m-xl-62 {
    margin: 31rem !important;
  }

  .mt-xl-62,
  .my-xl-62 {
    margin-top: 31rem !important;
  }

  .mr-xl-62,
  .mx-xl-62 {
    margin-right: 31rem !important;
  }

  .mb-xl-62,
  .my-xl-62 {
    margin-bottom: 31rem !important;
  }

  .ml-xl-62,
  .mx-xl-62 {
    margin-left: 31rem !important;
  }

  .m-xl-63 {
    margin: 31.5rem !important;
  }

  .mt-xl-63,
  .my-xl-63 {
    margin-top: 31.5rem !important;
  }

  .mr-xl-63,
  .mx-xl-63 {
    margin-right: 31.5rem !important;
  }

  .mb-xl-63,
  .my-xl-63 {
    margin-bottom: 31.5rem !important;
  }

  .ml-xl-63,
  .mx-xl-63 {
    margin-left: 31.5rem !important;
  }

  .m-xl-64 {
    margin: 32rem !important;
  }

  .mt-xl-64,
  .my-xl-64 {
    margin-top: 32rem !important;
  }

  .mr-xl-64,
  .mx-xl-64 {
    margin-right: 32rem !important;
  }

  .mb-xl-64,
  .my-xl-64 {
    margin-bottom: 32rem !important;
  }

  .ml-xl-64,
  .mx-xl-64 {
    margin-left: 32rem !important;
  }

  .m-xl-65 {
    margin: 32.5rem !important;
  }

  .mt-xl-65,
  .my-xl-65 {
    margin-top: 32.5rem !important;
  }

  .mr-xl-65,
  .mx-xl-65 {
    margin-right: 32.5rem !important;
  }

  .mb-xl-65,
  .my-xl-65 {
    margin-bottom: 32.5rem !important;
  }

  .ml-xl-65,
  .mx-xl-65 {
    margin-left: 32.5rem !important;
  }

  .m-xl-66 {
    margin: 33rem !important;
  }

  .mt-xl-66,
  .my-xl-66 {
    margin-top: 33rem !important;
  }

  .mr-xl-66,
  .mx-xl-66 {
    margin-right: 33rem !important;
  }

  .mb-xl-66,
  .my-xl-66 {
    margin-bottom: 33rem !important;
  }

  .ml-xl-66,
  .mx-xl-66 {
    margin-left: 33rem !important;
  }

  .m-xl-67 {
    margin: 33.5rem !important;
  }

  .mt-xl-67,
  .my-xl-67 {
    margin-top: 33.5rem !important;
  }

  .mr-xl-67,
  .mx-xl-67 {
    margin-right: 33.5rem !important;
  }

  .mb-xl-67,
  .my-xl-67 {
    margin-bottom: 33.5rem !important;
  }

  .ml-xl-67,
  .mx-xl-67 {
    margin-left: 33.5rem !important;
  }

  .m-xl-68 {
    margin: 34rem !important;
  }

  .mt-xl-68,
  .my-xl-68 {
    margin-top: 34rem !important;
  }

  .mr-xl-68,
  .mx-xl-68 {
    margin-right: 34rem !important;
  }

  .mb-xl-68,
  .my-xl-68 {
    margin-bottom: 34rem !important;
  }

  .ml-xl-68,
  .mx-xl-68 {
    margin-left: 34rem !important;
  }

  .m-xl-69 {
    margin: 34.5rem !important;
  }

  .mt-xl-69,
  .my-xl-69 {
    margin-top: 34.5rem !important;
  }

  .mr-xl-69,
  .mx-xl-69 {
    margin-right: 34.5rem !important;
  }

  .mb-xl-69,
  .my-xl-69 {
    margin-bottom: 34.5rem !important;
  }

  .ml-xl-69,
  .mx-xl-69 {
    margin-left: 34.5rem !important;
  }

  .m-xl-70 {
    margin: 35rem !important;
  }

  .mt-xl-70,
  .my-xl-70 {
    margin-top: 35rem !important;
  }

  .mr-xl-70,
  .mx-xl-70 {
    margin-right: 35rem !important;
  }

  .mb-xl-70,
  .my-xl-70 {
    margin-bottom: 35rem !important;
  }

  .ml-xl-70,
  .mx-xl-70 {
    margin-left: 35rem !important;
  }

  .m-xl-71 {
    margin: 35.5rem !important;
  }

  .mt-xl-71,
  .my-xl-71 {
    margin-top: 35.5rem !important;
  }

  .mr-xl-71,
  .mx-xl-71 {
    margin-right: 35.5rem !important;
  }

  .mb-xl-71,
  .my-xl-71 {
    margin-bottom: 35.5rem !important;
  }

  .ml-xl-71,
  .mx-xl-71 {
    margin-left: 35.5rem !important;
  }

  .m-xl-72 {
    margin: 36rem !important;
  }

  .mt-xl-72,
  .my-xl-72 {
    margin-top: 36rem !important;
  }

  .mr-xl-72,
  .mx-xl-72 {
    margin-right: 36rem !important;
  }

  .mb-xl-72,
  .my-xl-72 {
    margin-bottom: 36rem !important;
  }

  .ml-xl-72,
  .mx-xl-72 {
    margin-left: 36rem !important;
  }

  .m-xl-73 {
    margin: 36.5rem !important;
  }

  .mt-xl-73,
  .my-xl-73 {
    margin-top: 36.5rem !important;
  }

  .mr-xl-73,
  .mx-xl-73 {
    margin-right: 36.5rem !important;
  }

  .mb-xl-73,
  .my-xl-73 {
    margin-bottom: 36.5rem !important;
  }

  .ml-xl-73,
  .mx-xl-73 {
    margin-left: 36.5rem !important;
  }

  .m-xl-74 {
    margin: 37rem !important;
  }

  .mt-xl-74,
  .my-xl-74 {
    margin-top: 37rem !important;
  }

  .mr-xl-74,
  .mx-xl-74 {
    margin-right: 37rem !important;
  }

  .mb-xl-74,
  .my-xl-74 {
    margin-bottom: 37rem !important;
  }

  .ml-xl-74,
  .mx-xl-74 {
    margin-left: 37rem !important;
  }

  .m-xl-75 {
    margin: 37.5rem !important;
  }

  .mt-xl-75,
  .my-xl-75 {
    margin-top: 37.5rem !important;
  }

  .mr-xl-75,
  .mx-xl-75 {
    margin-right: 37.5rem !important;
  }

  .mb-xl-75,
  .my-xl-75 {
    margin-bottom: 37.5rem !important;
  }

  .ml-xl-75,
  .mx-xl-75 {
    margin-left: 37.5rem !important;
  }

  .m-xl-76 {
    margin: 38rem !important;
  }

  .mt-xl-76,
  .my-xl-76 {
    margin-top: 38rem !important;
  }

  .mr-xl-76,
  .mx-xl-76 {
    margin-right: 38rem !important;
  }

  .mb-xl-76,
  .my-xl-76 {
    margin-bottom: 38rem !important;
  }

  .ml-xl-76,
  .mx-xl-76 {
    margin-left: 38rem !important;
  }

  .m-xl-77 {
    margin: 38.5rem !important;
  }

  .mt-xl-77,
  .my-xl-77 {
    margin-top: 38.5rem !important;
  }

  .mr-xl-77,
  .mx-xl-77 {
    margin-right: 38.5rem !important;
  }

  .mb-xl-77,
  .my-xl-77 {
    margin-bottom: 38.5rem !important;
  }

  .ml-xl-77,
  .mx-xl-77 {
    margin-left: 38.5rem !important;
  }

  .m-xl-78 {
    margin: 39rem !important;
  }

  .mt-xl-78,
  .my-xl-78 {
    margin-top: 39rem !important;
  }

  .mr-xl-78,
  .mx-xl-78 {
    margin-right: 39rem !important;
  }

  .mb-xl-78,
  .my-xl-78 {
    margin-bottom: 39rem !important;
  }

  .ml-xl-78,
  .mx-xl-78 {
    margin-left: 39rem !important;
  }

  .m-xl-79 {
    margin: 39.5rem !important;
  }

  .mt-xl-79,
  .my-xl-79 {
    margin-top: 39.5rem !important;
  }

  .mr-xl-79,
  .mx-xl-79 {
    margin-right: 39.5rem !important;
  }

  .mb-xl-79,
  .my-xl-79 {
    margin-bottom: 39.5rem !important;
  }

  .ml-xl-79,
  .mx-xl-79 {
    margin-left: 39.5rem !important;
  }

  .m-xl-80 {
    margin: 40rem !important;
  }

  .mt-xl-80,
  .my-xl-80 {
    margin-top: 40rem !important;
  }

  .mr-xl-80,
  .mx-xl-80 {
    margin-right: 40rem !important;
  }

  .mb-xl-80,
  .my-xl-80 {
    margin-bottom: 40rem !important;
  }

  .ml-xl-80,
  .mx-xl-80 {
    margin-left: 40rem !important;
  }

  .m-xl-81 {
    margin: 40.5rem !important;
  }

  .mt-xl-81,
  .my-xl-81 {
    margin-top: 40.5rem !important;
  }

  .mr-xl-81,
  .mx-xl-81 {
    margin-right: 40.5rem !important;
  }

  .mb-xl-81,
  .my-xl-81 {
    margin-bottom: 40.5rem !important;
  }

  .ml-xl-81,
  .mx-xl-81 {
    margin-left: 40.5rem !important;
  }

  .m-xl-82 {
    margin: 41rem !important;
  }

  .mt-xl-82,
  .my-xl-82 {
    margin-top: 41rem !important;
  }

  .mr-xl-82,
  .mx-xl-82 {
    margin-right: 41rem !important;
  }

  .mb-xl-82,
  .my-xl-82 {
    margin-bottom: 41rem !important;
  }

  .ml-xl-82,
  .mx-xl-82 {
    margin-left: 41rem !important;
  }

  .m-xl-83 {
    margin: 41.5rem !important;
  }

  .mt-xl-83,
  .my-xl-83 {
    margin-top: 41.5rem !important;
  }

  .mr-xl-83,
  .mx-xl-83 {
    margin-right: 41.5rem !important;
  }

  .mb-xl-83,
  .my-xl-83 {
    margin-bottom: 41.5rem !important;
  }

  .ml-xl-83,
  .mx-xl-83 {
    margin-left: 41.5rem !important;
  }

  .m-xl-84 {
    margin: 42rem !important;
  }

  .mt-xl-84,
  .my-xl-84 {
    margin-top: 42rem !important;
  }

  .mr-xl-84,
  .mx-xl-84 {
    margin-right: 42rem !important;
  }

  .mb-xl-84,
  .my-xl-84 {
    margin-bottom: 42rem !important;
  }

  .ml-xl-84,
  .mx-xl-84 {
    margin-left: 42rem !important;
  }

  .m-xl-85 {
    margin: 42.5rem !important;
  }

  .mt-xl-85,
  .my-xl-85 {
    margin-top: 42.5rem !important;
  }

  .mr-xl-85,
  .mx-xl-85 {
    margin-right: 42.5rem !important;
  }

  .mb-xl-85,
  .my-xl-85 {
    margin-bottom: 42.5rem !important;
  }

  .ml-xl-85,
  .mx-xl-85 {
    margin-left: 42.5rem !important;
  }

  .m-xl-86 {
    margin: 43rem !important;
  }

  .mt-xl-86,
  .my-xl-86 {
    margin-top: 43rem !important;
  }

  .mr-xl-86,
  .mx-xl-86 {
    margin-right: 43rem !important;
  }

  .mb-xl-86,
  .my-xl-86 {
    margin-bottom: 43rem !important;
  }

  .ml-xl-86,
  .mx-xl-86 {
    margin-left: 43rem !important;
  }

  .m-xl-87 {
    margin: 43.5rem !important;
  }

  .mt-xl-87,
  .my-xl-87 {
    margin-top: 43.5rem !important;
  }

  .mr-xl-87,
  .mx-xl-87 {
    margin-right: 43.5rem !important;
  }

  .mb-xl-87,
  .my-xl-87 {
    margin-bottom: 43.5rem !important;
  }

  .ml-xl-87,
  .mx-xl-87 {
    margin-left: 43.5rem !important;
  }

  .m-xl-88 {
    margin: 44rem !important;
  }

  .mt-xl-88,
  .my-xl-88 {
    margin-top: 44rem !important;
  }

  .mr-xl-88,
  .mx-xl-88 {
    margin-right: 44rem !important;
  }

  .mb-xl-88,
  .my-xl-88 {
    margin-bottom: 44rem !important;
  }

  .ml-xl-88,
  .mx-xl-88 {
    margin-left: 44rem !important;
  }

  .m-xl-89 {
    margin: 44.5rem !important;
  }

  .mt-xl-89,
  .my-xl-89 {
    margin-top: 44.5rem !important;
  }

  .mr-xl-89,
  .mx-xl-89 {
    margin-right: 44.5rem !important;
  }

  .mb-xl-89,
  .my-xl-89 {
    margin-bottom: 44.5rem !important;
  }

  .ml-xl-89,
  .mx-xl-89 {
    margin-left: 44.5rem !important;
  }

  .m-xl-90 {
    margin: 45rem !important;
  }

  .mt-xl-90,
  .my-xl-90 {
    margin-top: 45rem !important;
  }

  .mr-xl-90,
  .mx-xl-90 {
    margin-right: 45rem !important;
  }

  .mb-xl-90,
  .my-xl-90 {
    margin-bottom: 45rem !important;
  }

  .ml-xl-90,
  .mx-xl-90 {
    margin-left: 45rem !important;
  }

  .m-xl-91 {
    margin: 45.5rem !important;
  }

  .mt-xl-91,
  .my-xl-91 {
    margin-top: 45.5rem !important;
  }

  .mr-xl-91,
  .mx-xl-91 {
    margin-right: 45.5rem !important;
  }

  .mb-xl-91,
  .my-xl-91 {
    margin-bottom: 45.5rem !important;
  }

  .ml-xl-91,
  .mx-xl-91 {
    margin-left: 45.5rem !important;
  }

  .m-xl-92 {
    margin: 46rem !important;
  }

  .mt-xl-92,
  .my-xl-92 {
    margin-top: 46rem !important;
  }

  .mr-xl-92,
  .mx-xl-92 {
    margin-right: 46rem !important;
  }

  .mb-xl-92,
  .my-xl-92 {
    margin-bottom: 46rem !important;
  }

  .ml-xl-92,
  .mx-xl-92 {
    margin-left: 46rem !important;
  }

  .m-xl-93 {
    margin: 46.5rem !important;
  }

  .mt-xl-93,
  .my-xl-93 {
    margin-top: 46.5rem !important;
  }

  .mr-xl-93,
  .mx-xl-93 {
    margin-right: 46.5rem !important;
  }

  .mb-xl-93,
  .my-xl-93 {
    margin-bottom: 46.5rem !important;
  }

  .ml-xl-93,
  .mx-xl-93 {
    margin-left: 46.5rem !important;
  }

  .m-xl-94 {
    margin: 47rem !important;
  }

  .mt-xl-94,
  .my-xl-94 {
    margin-top: 47rem !important;
  }

  .mr-xl-94,
  .mx-xl-94 {
    margin-right: 47rem !important;
  }

  .mb-xl-94,
  .my-xl-94 {
    margin-bottom: 47rem !important;
  }

  .ml-xl-94,
  .mx-xl-94 {
    margin-left: 47rem !important;
  }

  .m-xl-95 {
    margin: 47.5rem !important;
  }

  .mt-xl-95,
  .my-xl-95 {
    margin-top: 47.5rem !important;
  }

  .mr-xl-95,
  .mx-xl-95 {
    margin-right: 47.5rem !important;
  }

  .mb-xl-95,
  .my-xl-95 {
    margin-bottom: 47.5rem !important;
  }

  .ml-xl-95,
  .mx-xl-95 {
    margin-left: 47.5rem !important;
  }

  .m-xl-96 {
    margin: 48rem !important;
  }

  .mt-xl-96,
  .my-xl-96 {
    margin-top: 48rem !important;
  }

  .mr-xl-96,
  .mx-xl-96 {
    margin-right: 48rem !important;
  }

  .mb-xl-96,
  .my-xl-96 {
    margin-bottom: 48rem !important;
  }

  .ml-xl-96,
  .mx-xl-96 {
    margin-left: 48rem !important;
  }

  .m-xl-97 {
    margin: 48.5rem !important;
  }

  .mt-xl-97,
  .my-xl-97 {
    margin-top: 48.5rem !important;
  }

  .mr-xl-97,
  .mx-xl-97 {
    margin-right: 48.5rem !important;
  }

  .mb-xl-97,
  .my-xl-97 {
    margin-bottom: 48.5rem !important;
  }

  .ml-xl-97,
  .mx-xl-97 {
    margin-left: 48.5rem !important;
  }

  .m-xl-98 {
    margin: 49rem !important;
  }

  .mt-xl-98,
  .my-xl-98 {
    margin-top: 49rem !important;
  }

  .mr-xl-98,
  .mx-xl-98 {
    margin-right: 49rem !important;
  }

  .mb-xl-98,
  .my-xl-98 {
    margin-bottom: 49rem !important;
  }

  .ml-xl-98,
  .mx-xl-98 {
    margin-left: 49rem !important;
  }

  .m-xl-99 {
    margin: 49.5rem !important;
  }

  .mt-xl-99,
  .my-xl-99 {
    margin-top: 49.5rem !important;
  }

  .mr-xl-99,
  .mx-xl-99 {
    margin-right: 49.5rem !important;
  }

  .mb-xl-99,
  .my-xl-99 {
    margin-bottom: 49.5rem !important;
  }

  .ml-xl-99,
  .mx-xl-99 {
    margin-left: 49.5rem !important;
  }

  .m-xl-100 {
    margin: 50rem !important;
  }

  .mt-xl-100,
  .my-xl-100 {
    margin-top: 50rem !important;
  }

  .mr-xl-100,
  .mx-xl-100 {
    margin-right: 50rem !important;
  }

  .mb-xl-100,
  .my-xl-100 {
    margin-bottom: 50rem !important;
  }

  .ml-xl-100,
  .mx-xl-100 {
    margin-left: 50rem !important;
  }

  .m-xl-101 {
    margin: 50.5rem !important;
  }

  .mt-xl-101,
  .my-xl-101 {
    margin-top: 50.5rem !important;
  }

  .mr-xl-101,
  .mx-xl-101 {
    margin-right: 50.5rem !important;
  }

  .mb-xl-101,
  .my-xl-101 {
    margin-bottom: 50.5rem !important;
  }

  .ml-xl-101,
  .mx-xl-101 {
    margin-left: 50.5rem !important;
  }

  .m-xl-102 {
    margin: 51rem !important;
  }

  .mt-xl-102,
  .my-xl-102 {
    margin-top: 51rem !important;
  }

  .mr-xl-102,
  .mx-xl-102 {
    margin-right: 51rem !important;
  }

  .mb-xl-102,
  .my-xl-102 {
    margin-bottom: 51rem !important;
  }

  .ml-xl-102,
  .mx-xl-102 {
    margin-left: 51rem !important;
  }

  .m-xl-103 {
    margin: 51.5rem !important;
  }

  .mt-xl-103,
  .my-xl-103 {
    margin-top: 51.5rem !important;
  }

  .mr-xl-103,
  .mx-xl-103 {
    margin-right: 51.5rem !important;
  }

  .mb-xl-103,
  .my-xl-103 {
    margin-bottom: 51.5rem !important;
  }

  .ml-xl-103,
  .mx-xl-103 {
    margin-left: 51.5rem !important;
  }

  .m-xl-104 {
    margin: 52rem !important;
  }

  .mt-xl-104,
  .my-xl-104 {
    margin-top: 52rem !important;
  }

  .mr-xl-104,
  .mx-xl-104 {
    margin-right: 52rem !important;
  }

  .mb-xl-104,
  .my-xl-104 {
    margin-bottom: 52rem !important;
  }

  .ml-xl-104,
  .mx-xl-104 {
    margin-left: 52rem !important;
  }

  .m-xl-105 {
    margin: 52.5rem !important;
  }

  .mt-xl-105,
  .my-xl-105 {
    margin-top: 52.5rem !important;
  }

  .mr-xl-105,
  .mx-xl-105 {
    margin-right: 52.5rem !important;
  }

  .mb-xl-105,
  .my-xl-105 {
    margin-bottom: 52.5rem !important;
  }

  .ml-xl-105,
  .mx-xl-105 {
    margin-left: 52.5rem !important;
  }

  .m-xl-106 {
    margin: 53rem !important;
  }

  .mt-xl-106,
  .my-xl-106 {
    margin-top: 53rem !important;
  }

  .mr-xl-106,
  .mx-xl-106 {
    margin-right: 53rem !important;
  }

  .mb-xl-106,
  .my-xl-106 {
    margin-bottom: 53rem !important;
  }

  .ml-xl-106,
  .mx-xl-106 {
    margin-left: 53rem !important;
  }

  .m-xl-107 {
    margin: 53.5rem !important;
  }

  .mt-xl-107,
  .my-xl-107 {
    margin-top: 53.5rem !important;
  }

  .mr-xl-107,
  .mx-xl-107 {
    margin-right: 53.5rem !important;
  }

  .mb-xl-107,
  .my-xl-107 {
    margin-bottom: 53.5rem !important;
  }

  .ml-xl-107,
  .mx-xl-107 {
    margin-left: 53.5rem !important;
  }

  .m-xl-108 {
    margin: 54rem !important;
  }

  .mt-xl-108,
  .my-xl-108 {
    margin-top: 54rem !important;
  }

  .mr-xl-108,
  .mx-xl-108 {
    margin-right: 54rem !important;
  }

  .mb-xl-108,
  .my-xl-108 {
    margin-bottom: 54rem !important;
  }

  .ml-xl-108,
  .mx-xl-108 {
    margin-left: 54rem !important;
  }

  .m-xl-109 {
    margin: 54.5rem !important;
  }

  .mt-xl-109,
  .my-xl-109 {
    margin-top: 54.5rem !important;
  }

  .mr-xl-109,
  .mx-xl-109 {
    margin-right: 54.5rem !important;
  }

  .mb-xl-109,
  .my-xl-109 {
    margin-bottom: 54.5rem !important;
  }

  .ml-xl-109,
  .mx-xl-109 {
    margin-left: 54.5rem !important;
  }

  .m-xl-110 {
    margin: 55rem !important;
  }

  .mt-xl-110,
  .my-xl-110 {
    margin-top: 55rem !important;
  }

  .mr-xl-110,
  .mx-xl-110 {
    margin-right: 55rem !important;
  }

  .mb-xl-110,
  .my-xl-110 {
    margin-bottom: 55rem !important;
  }

  .ml-xl-110,
  .mx-xl-110 {
    margin-left: 55rem !important;
  }

  .m-xl-111 {
    margin: 55.5rem !important;
  }

  .mt-xl-111,
  .my-xl-111 {
    margin-top: 55.5rem !important;
  }

  .mr-xl-111,
  .mx-xl-111 {
    margin-right: 55.5rem !important;
  }

  .mb-xl-111,
  .my-xl-111 {
    margin-bottom: 55.5rem !important;
  }

  .ml-xl-111,
  .mx-xl-111 {
    margin-left: 55.5rem !important;
  }

  .m-xl-112 {
    margin: 56rem !important;
  }

  .mt-xl-112,
  .my-xl-112 {
    margin-top: 56rem !important;
  }

  .mr-xl-112,
  .mx-xl-112 {
    margin-right: 56rem !important;
  }

  .mb-xl-112,
  .my-xl-112 {
    margin-bottom: 56rem !important;
  }

  .ml-xl-112,
  .mx-xl-112 {
    margin-left: 56rem !important;
  }

  .m-xl-113 {
    margin: 56.5rem !important;
  }

  .mt-xl-113,
  .my-xl-113 {
    margin-top: 56.5rem !important;
  }

  .mr-xl-113,
  .mx-xl-113 {
    margin-right: 56.5rem !important;
  }

  .mb-xl-113,
  .my-xl-113 {
    margin-bottom: 56.5rem !important;
  }

  .ml-xl-113,
  .mx-xl-113 {
    margin-left: 56.5rem !important;
  }

  .m-xl-114 {
    margin: 57rem !important;
  }

  .mt-xl-114,
  .my-xl-114 {
    margin-top: 57rem !important;
  }

  .mr-xl-114,
  .mx-xl-114 {
    margin-right: 57rem !important;
  }

  .mb-xl-114,
  .my-xl-114 {
    margin-bottom: 57rem !important;
  }

  .ml-xl-114,
  .mx-xl-114 {
    margin-left: 57rem !important;
  }

  .m-xl-115 {
    margin: 57.5rem !important;
  }

  .mt-xl-115,
  .my-xl-115 {
    margin-top: 57.5rem !important;
  }

  .mr-xl-115,
  .mx-xl-115 {
    margin-right: 57.5rem !important;
  }

  .mb-xl-115,
  .my-xl-115 {
    margin-bottom: 57.5rem !important;
  }

  .ml-xl-115,
  .mx-xl-115 {
    margin-left: 57.5rem !important;
  }

  .m-xl-116 {
    margin: 58rem !important;
  }

  .mt-xl-116,
  .my-xl-116 {
    margin-top: 58rem !important;
  }

  .mr-xl-116,
  .mx-xl-116 {
    margin-right: 58rem !important;
  }

  .mb-xl-116,
  .my-xl-116 {
    margin-bottom: 58rem !important;
  }

  .ml-xl-116,
  .mx-xl-116 {
    margin-left: 58rem !important;
  }

  .m-xl-117 {
    margin: 58.5rem !important;
  }

  .mt-xl-117,
  .my-xl-117 {
    margin-top: 58.5rem !important;
  }

  .mr-xl-117,
  .mx-xl-117 {
    margin-right: 58.5rem !important;
  }

  .mb-xl-117,
  .my-xl-117 {
    margin-bottom: 58.5rem !important;
  }

  .ml-xl-117,
  .mx-xl-117 {
    margin-left: 58.5rem !important;
  }

  .m-xl-118 {
    margin: 59rem !important;
  }

  .mt-xl-118,
  .my-xl-118 {
    margin-top: 59rem !important;
  }

  .mr-xl-118,
  .mx-xl-118 {
    margin-right: 59rem !important;
  }

  .mb-xl-118,
  .my-xl-118 {
    margin-bottom: 59rem !important;
  }

  .ml-xl-118,
  .mx-xl-118 {
    margin-left: 59rem !important;
  }

  .m-xl-119 {
    margin: 59.5rem !important;
  }

  .mt-xl-119,
  .my-xl-119 {
    margin-top: 59.5rem !important;
  }

  .mr-xl-119,
  .mx-xl-119 {
    margin-right: 59.5rem !important;
  }

  .mb-xl-119,
  .my-xl-119 {
    margin-bottom: 59.5rem !important;
  }

  .ml-xl-119,
  .mx-xl-119 {
    margin-left: 59.5rem !important;
  }

  .m-xl-120 {
    margin: 60rem !important;
  }

  .mt-xl-120,
  .my-xl-120 {
    margin-top: 60rem !important;
  }

  .mr-xl-120,
  .mx-xl-120 {
    margin-right: 60rem !important;
  }

  .mb-xl-120,
  .my-xl-120 {
    margin-bottom: 60rem !important;
  }

  .ml-xl-120,
  .mx-xl-120 {
    margin-left: 60rem !important;
  }

  .m-xl-121 {
    margin: 60.5rem !important;
  }

  .mt-xl-121,
  .my-xl-121 {
    margin-top: 60.5rem !important;
  }

  .mr-xl-121,
  .mx-xl-121 {
    margin-right: 60.5rem !important;
  }

  .mb-xl-121,
  .my-xl-121 {
    margin-bottom: 60.5rem !important;
  }

  .ml-xl-121,
  .mx-xl-121 {
    margin-left: 60.5rem !important;
  }

  .m-xl-122 {
    margin: 61rem !important;
  }

  .mt-xl-122,
  .my-xl-122 {
    margin-top: 61rem !important;
  }

  .mr-xl-122,
  .mx-xl-122 {
    margin-right: 61rem !important;
  }

  .mb-xl-122,
  .my-xl-122 {
    margin-bottom: 61rem !important;
  }

  .ml-xl-122,
  .mx-xl-122 {
    margin-left: 61rem !important;
  }

  .m-xl-123 {
    margin: 61.5rem !important;
  }

  .mt-xl-123,
  .my-xl-123 {
    margin-top: 61.5rem !important;
  }

  .mr-xl-123,
  .mx-xl-123 {
    margin-right: 61.5rem !important;
  }

  .mb-xl-123,
  .my-xl-123 {
    margin-bottom: 61.5rem !important;
  }

  .ml-xl-123,
  .mx-xl-123 {
    margin-left: 61.5rem !important;
  }

  .m-xl-124 {
    margin: 62rem !important;
  }

  .mt-xl-124,
  .my-xl-124 {
    margin-top: 62rem !important;
  }

  .mr-xl-124,
  .mx-xl-124 {
    margin-right: 62rem !important;
  }

  .mb-xl-124,
  .my-xl-124 {
    margin-bottom: 62rem !important;
  }

  .ml-xl-124,
  .mx-xl-124 {
    margin-left: 62rem !important;
  }

  .m-xl-125 {
    margin: 62.5rem !important;
  }

  .mt-xl-125,
  .my-xl-125 {
    margin-top: 62.5rem !important;
  }

  .mr-xl-125,
  .mx-xl-125 {
    margin-right: 62.5rem !important;
  }

  .mb-xl-125,
  .my-xl-125 {
    margin-bottom: 62.5rem !important;
  }

  .ml-xl-125,
  .mx-xl-125 {
    margin-left: 62.5rem !important;
  }

  .m-xl-126 {
    margin: 63rem !important;
  }

  .mt-xl-126,
  .my-xl-126 {
    margin-top: 63rem !important;
  }

  .mr-xl-126,
  .mx-xl-126 {
    margin-right: 63rem !important;
  }

  .mb-xl-126,
  .my-xl-126 {
    margin-bottom: 63rem !important;
  }

  .ml-xl-126,
  .mx-xl-126 {
    margin-left: 63rem !important;
  }

  .m-xl-127 {
    margin: 63.5rem !important;
  }

  .mt-xl-127,
  .my-xl-127 {
    margin-top: 63.5rem !important;
  }

  .mr-xl-127,
  .mx-xl-127 {
    margin-right: 63.5rem !important;
  }

  .mb-xl-127,
  .my-xl-127 {
    margin-bottom: 63.5rem !important;
  }

  .ml-xl-127,
  .mx-xl-127 {
    margin-left: 63.5rem !important;
  }

  .m-xl-128 {
    margin: 64rem !important;
  }

  .mt-xl-128,
  .my-xl-128 {
    margin-top: 64rem !important;
  }

  .mr-xl-128,
  .mx-xl-128 {
    margin-right: 64rem !important;
  }

  .mb-xl-128,
  .my-xl-128 {
    margin-bottom: 64rem !important;
  }

  .ml-xl-128,
  .mx-xl-128 {
    margin-left: 64rem !important;
  }

  .m-xl-129 {
    margin: 64.5rem !important;
  }

  .mt-xl-129,
  .my-xl-129 {
    margin-top: 64.5rem !important;
  }

  .mr-xl-129,
  .mx-xl-129 {
    margin-right: 64.5rem !important;
  }

  .mb-xl-129,
  .my-xl-129 {
    margin-bottom: 64.5rem !important;
  }

  .ml-xl-129,
  .mx-xl-129 {
    margin-left: 64.5rem !important;
  }

  .m-xl-130 {
    margin: 65rem !important;
  }

  .mt-xl-130,
  .my-xl-130 {
    margin-top: 65rem !important;
  }

  .mr-xl-130,
  .mx-xl-130 {
    margin-right: 65rem !important;
  }

  .mb-xl-130,
  .my-xl-130 {
    margin-bottom: 65rem !important;
  }

  .ml-xl-130,
  .mx-xl-130 {
    margin-left: 65rem !important;
  }

  .m-xl-131 {
    margin: 65.5rem !important;
  }

  .mt-xl-131,
  .my-xl-131 {
    margin-top: 65.5rem !important;
  }

  .mr-xl-131,
  .mx-xl-131 {
    margin-right: 65.5rem !important;
  }

  .mb-xl-131,
  .my-xl-131 {
    margin-bottom: 65.5rem !important;
  }

  .ml-xl-131,
  .mx-xl-131 {
    margin-left: 65.5rem !important;
  }

  .m-xl-132 {
    margin: 66rem !important;
  }

  .mt-xl-132,
  .my-xl-132 {
    margin-top: 66rem !important;
  }

  .mr-xl-132,
  .mx-xl-132 {
    margin-right: 66rem !important;
  }

  .mb-xl-132,
  .my-xl-132 {
    margin-bottom: 66rem !important;
  }

  .ml-xl-132,
  .mx-xl-132 {
    margin-left: 66rem !important;
  }

  .m-xl-133 {
    margin: 66.5rem !important;
  }

  .mt-xl-133,
  .my-xl-133 {
    margin-top: 66.5rem !important;
  }

  .mr-xl-133,
  .mx-xl-133 {
    margin-right: 66.5rem !important;
  }

  .mb-xl-133,
  .my-xl-133 {
    margin-bottom: 66.5rem !important;
  }

  .ml-xl-133,
  .mx-xl-133 {
    margin-left: 66.5rem !important;
  }

  .m-xl-134 {
    margin: 67rem !important;
  }

  .mt-xl-134,
  .my-xl-134 {
    margin-top: 67rem !important;
  }

  .mr-xl-134,
  .mx-xl-134 {
    margin-right: 67rem !important;
  }

  .mb-xl-134,
  .my-xl-134 {
    margin-bottom: 67rem !important;
  }

  .ml-xl-134,
  .mx-xl-134 {
    margin-left: 67rem !important;
  }

  .m-xl-135 {
    margin: 67.5rem !important;
  }

  .mt-xl-135,
  .my-xl-135 {
    margin-top: 67.5rem !important;
  }

  .mr-xl-135,
  .mx-xl-135 {
    margin-right: 67.5rem !important;
  }

  .mb-xl-135,
  .my-xl-135 {
    margin-bottom: 67.5rem !important;
  }

  .ml-xl-135,
  .mx-xl-135 {
    margin-left: 67.5rem !important;
  }

  .m-xl-136 {
    margin: 68rem !important;
  }

  .mt-xl-136,
  .my-xl-136 {
    margin-top: 68rem !important;
  }

  .mr-xl-136,
  .mx-xl-136 {
    margin-right: 68rem !important;
  }

  .mb-xl-136,
  .my-xl-136 {
    margin-bottom: 68rem !important;
  }

  .ml-xl-136,
  .mx-xl-136 {
    margin-left: 68rem !important;
  }

  .m-xl-137 {
    margin: 68.5rem !important;
  }

  .mt-xl-137,
  .my-xl-137 {
    margin-top: 68.5rem !important;
  }

  .mr-xl-137,
  .mx-xl-137 {
    margin-right: 68.5rem !important;
  }

  .mb-xl-137,
  .my-xl-137 {
    margin-bottom: 68.5rem !important;
  }

  .ml-xl-137,
  .mx-xl-137 {
    margin-left: 68.5rem !important;
  }

  .m-xl-138 {
    margin: 69rem !important;
  }

  .mt-xl-138,
  .my-xl-138 {
    margin-top: 69rem !important;
  }

  .mr-xl-138,
  .mx-xl-138 {
    margin-right: 69rem !important;
  }

  .mb-xl-138,
  .my-xl-138 {
    margin-bottom: 69rem !important;
  }

  .ml-xl-138,
  .mx-xl-138 {
    margin-left: 69rem !important;
  }

  .m-xl-139 {
    margin: 69.5rem !important;
  }

  .mt-xl-139,
  .my-xl-139 {
    margin-top: 69.5rem !important;
  }

  .mr-xl-139,
  .mx-xl-139 {
    margin-right: 69.5rem !important;
  }

  .mb-xl-139,
  .my-xl-139 {
    margin-bottom: 69.5rem !important;
  }

  .ml-xl-139,
  .mx-xl-139 {
    margin-left: 69.5rem !important;
  }

  .m-xl-140 {
    margin: 70rem !important;
  }

  .mt-xl-140,
  .my-xl-140 {
    margin-top: 70rem !important;
  }

  .mr-xl-140,
  .mx-xl-140 {
    margin-right: 70rem !important;
  }

  .mb-xl-140,
  .my-xl-140 {
    margin-bottom: 70rem !important;
  }

  .ml-xl-140,
  .mx-xl-140 {
    margin-left: 70rem !important;
  }

  .m-xl-141 {
    margin: 70.5rem !important;
  }

  .mt-xl-141,
  .my-xl-141 {
    margin-top: 70.5rem !important;
  }

  .mr-xl-141,
  .mx-xl-141 {
    margin-right: 70.5rem !important;
  }

  .mb-xl-141,
  .my-xl-141 {
    margin-bottom: 70.5rem !important;
  }

  .ml-xl-141,
  .mx-xl-141 {
    margin-left: 70.5rem !important;
  }

  .m-xl-142 {
    margin: 71rem !important;
  }

  .mt-xl-142,
  .my-xl-142 {
    margin-top: 71rem !important;
  }

  .mr-xl-142,
  .mx-xl-142 {
    margin-right: 71rem !important;
  }

  .mb-xl-142,
  .my-xl-142 {
    margin-bottom: 71rem !important;
  }

  .ml-xl-142,
  .mx-xl-142 {
    margin-left: 71rem !important;
  }

  .m-xl-143 {
    margin: 71.5rem !important;
  }

  .mt-xl-143,
  .my-xl-143 {
    margin-top: 71.5rem !important;
  }

  .mr-xl-143,
  .mx-xl-143 {
    margin-right: 71.5rem !important;
  }

  .mb-xl-143,
  .my-xl-143 {
    margin-bottom: 71.5rem !important;
  }

  .ml-xl-143,
  .mx-xl-143 {
    margin-left: 71.5rem !important;
  }

  .m-xl-144 {
    margin: 72rem !important;
  }

  .mt-xl-144,
  .my-xl-144 {
    margin-top: 72rem !important;
  }

  .mr-xl-144,
  .mx-xl-144 {
    margin-right: 72rem !important;
  }

  .mb-xl-144,
  .my-xl-144 {
    margin-bottom: 72rem !important;
  }

  .ml-xl-144,
  .mx-xl-144 {
    margin-left: 72rem !important;
  }

  .m-xl-145 {
    margin: 72.5rem !important;
  }

  .mt-xl-145,
  .my-xl-145 {
    margin-top: 72.5rem !important;
  }

  .mr-xl-145,
  .mx-xl-145 {
    margin-right: 72.5rem !important;
  }

  .mb-xl-145,
  .my-xl-145 {
    margin-bottom: 72.5rem !important;
  }

  .ml-xl-145,
  .mx-xl-145 {
    margin-left: 72.5rem !important;
  }

  .m-xl-146 {
    margin: 73rem !important;
  }

  .mt-xl-146,
  .my-xl-146 {
    margin-top: 73rem !important;
  }

  .mr-xl-146,
  .mx-xl-146 {
    margin-right: 73rem !important;
  }

  .mb-xl-146,
  .my-xl-146 {
    margin-bottom: 73rem !important;
  }

  .ml-xl-146,
  .mx-xl-146 {
    margin-left: 73rem !important;
  }

  .m-xl-147 {
    margin: 73.5rem !important;
  }

  .mt-xl-147,
  .my-xl-147 {
    margin-top: 73.5rem !important;
  }

  .mr-xl-147,
  .mx-xl-147 {
    margin-right: 73.5rem !important;
  }

  .mb-xl-147,
  .my-xl-147 {
    margin-bottom: 73.5rem !important;
  }

  .ml-xl-147,
  .mx-xl-147 {
    margin-left: 73.5rem !important;
  }

  .m-xl-148 {
    margin: 74rem !important;
  }

  .mt-xl-148,
  .my-xl-148 {
    margin-top: 74rem !important;
  }

  .mr-xl-148,
  .mx-xl-148 {
    margin-right: 74rem !important;
  }

  .mb-xl-148,
  .my-xl-148 {
    margin-bottom: 74rem !important;
  }

  .ml-xl-148,
  .mx-xl-148 {
    margin-left: 74rem !important;
  }

  .m-xl-149 {
    margin: 74.5rem !important;
  }

  .mt-xl-149,
  .my-xl-149 {
    margin-top: 74.5rem !important;
  }

  .mr-xl-149,
  .mx-xl-149 {
    margin-right: 74.5rem !important;
  }

  .mb-xl-149,
  .my-xl-149 {
    margin-bottom: 74.5rem !important;
  }

  .ml-xl-149,
  .mx-xl-149 {
    margin-left: 74.5rem !important;
  }

  .m-xl-150 {
    margin: 75rem !important;
  }

  .mt-xl-150,
  .my-xl-150 {
    margin-top: 75rem !important;
  }

  .mr-xl-150,
  .mx-xl-150 {
    margin-right: 75rem !important;
  }

  .mb-xl-150,
  .my-xl-150 {
    margin-bottom: 75rem !important;
  }

  .ml-xl-150,
  .mx-xl-150 {
    margin-left: 75rem !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.5rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.5rem !important;
  }

  .p-xl-2 {
    padding: 1rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 1rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 1rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 1rem !important;
  }

  .p-xl-3 {
    padding: 1.5rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1.5rem !important;
  }

  .p-xl-4 {
    padding: 2rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 2rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 2rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 2rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 2rem !important;
  }

  .p-xl-5 {
    padding: 2.5rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 2.5rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 2.5rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 2.5rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 2.5rem !important;
  }

  .p-xl-6 {
    padding: 3rem !important;
  }

  .pt-xl-6,
  .py-xl-6 {
    padding-top: 3rem !important;
  }

  .pr-xl-6,
  .px-xl-6 {
    padding-right: 3rem !important;
  }

  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-6,
  .px-xl-6 {
    padding-left: 3rem !important;
  }

  .p-xl-7 {
    padding: 3.5rem !important;
  }

  .pt-xl-7,
  .py-xl-7 {
    padding-top: 3.5rem !important;
  }

  .pr-xl-7,
  .px-xl-7 {
    padding-right: 3.5rem !important;
  }

  .pb-xl-7,
  .py-xl-7 {
    padding-bottom: 3.5rem !important;
  }

  .pl-xl-7,
  .px-xl-7 {
    padding-left: 3.5rem !important;
  }

  .p-xl-8 {
    padding: 4rem !important;
  }

  .pt-xl-8,
  .py-xl-8 {
    padding-top: 4rem !important;
  }

  .pr-xl-8,
  .px-xl-8 {
    padding-right: 4rem !important;
  }

  .pb-xl-8,
  .py-xl-8 {
    padding-bottom: 4rem !important;
  }

  .pl-xl-8,
  .px-xl-8 {
    padding-left: 4rem !important;
  }

  .p-xl-9 {
    padding: 4.5rem !important;
  }

  .pt-xl-9,
  .py-xl-9 {
    padding-top: 4.5rem !important;
  }

  .pr-xl-9,
  .px-xl-9 {
    padding-right: 4.5rem !important;
  }

  .pb-xl-9,
  .py-xl-9 {
    padding-bottom: 4.5rem !important;
  }

  .pl-xl-9,
  .px-xl-9 {
    padding-left: 4.5rem !important;
  }

  .p-xl-10 {
    padding: 5rem !important;
  }

  .pt-xl-10,
  .py-xl-10 {
    padding-top: 5rem !important;
  }

  .pr-xl-10,
  .px-xl-10 {
    padding-right: 5rem !important;
  }

  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 5rem !important;
  }

  .pl-xl-10,
  .px-xl-10 {
    padding-left: 5rem !important;
  }

  .p-xl-11 {
    padding: 5.5rem !important;
  }

  .pt-xl-11,
  .py-xl-11 {
    padding-top: 5.5rem !important;
  }

  .pr-xl-11,
  .px-xl-11 {
    padding-right: 5.5rem !important;
  }

  .pb-xl-11,
  .py-xl-11 {
    padding-bottom: 5.5rem !important;
  }

  .pl-xl-11,
  .px-xl-11 {
    padding-left: 5.5rem !important;
  }

  .p-xl-12 {
    padding: 6rem !important;
  }

  .pt-xl-12,
  .py-xl-12 {
    padding-top: 6rem !important;
  }

  .pr-xl-12,
  .px-xl-12 {
    padding-right: 6rem !important;
  }

  .pb-xl-12,
  .py-xl-12 {
    padding-bottom: 6rem !important;
  }

  .pl-xl-12,
  .px-xl-12 {
    padding-left: 6rem !important;
  }

  .p-xl-13 {
    padding: 6.5rem !important;
  }

  .pt-xl-13,
  .py-xl-13 {
    padding-top: 6.5rem !important;
  }

  .pr-xl-13,
  .px-xl-13 {
    padding-right: 6.5rem !important;
  }

  .pb-xl-13,
  .py-xl-13 {
    padding-bottom: 6.5rem !important;
  }

  .pl-xl-13,
  .px-xl-13 {
    padding-left: 6.5rem !important;
  }

  .p-xl-14 {
    padding: 7rem !important;
  }

  .pt-xl-14,
  .py-xl-14 {
    padding-top: 7rem !important;
  }

  .pr-xl-14,
  .px-xl-14 {
    padding-right: 7rem !important;
  }

  .pb-xl-14,
  .py-xl-14 {
    padding-bottom: 7rem !important;
  }

  .pl-xl-14,
  .px-xl-14 {
    padding-left: 7rem !important;
  }

  .p-xl-15 {
    padding: 7.5rem !important;
  }

  .pt-xl-15,
  .py-xl-15 {
    padding-top: 7.5rem !important;
  }

  .pr-xl-15,
  .px-xl-15 {
    padding-right: 7.5rem !important;
  }

  .pb-xl-15,
  .py-xl-15 {
    padding-bottom: 7.5rem !important;
  }

  .pl-xl-15,
  .px-xl-15 {
    padding-left: 7.5rem !important;
  }

  .p-xl-16 {
    padding: 8rem !important;
  }

  .pt-xl-16,
  .py-xl-16 {
    padding-top: 8rem !important;
  }

  .pr-xl-16,
  .px-xl-16 {
    padding-right: 8rem !important;
  }

  .pb-xl-16,
  .py-xl-16 {
    padding-bottom: 8rem !important;
  }

  .pl-xl-16,
  .px-xl-16 {
    padding-left: 8rem !important;
  }

  .p-xl-17 {
    padding: 8.5rem !important;
  }

  .pt-xl-17,
  .py-xl-17 {
    padding-top: 8.5rem !important;
  }

  .pr-xl-17,
  .px-xl-17 {
    padding-right: 8.5rem !important;
  }

  .pb-xl-17,
  .py-xl-17 {
    padding-bottom: 8.5rem !important;
  }

  .pl-xl-17,
  .px-xl-17 {
    padding-left: 8.5rem !important;
  }

  .p-xl-18 {
    padding: 9rem !important;
  }

  .pt-xl-18,
  .py-xl-18 {
    padding-top: 9rem !important;
  }

  .pr-xl-18,
  .px-xl-18 {
    padding-right: 9rem !important;
  }

  .pb-xl-18,
  .py-xl-18 {
    padding-bottom: 9rem !important;
  }

  .pl-xl-18,
  .px-xl-18 {
    padding-left: 9rem !important;
  }

  .p-xl-19 {
    padding: 9.5rem !important;
  }

  .pt-xl-19,
  .py-xl-19 {
    padding-top: 9.5rem !important;
  }

  .pr-xl-19,
  .px-xl-19 {
    padding-right: 9.5rem !important;
  }

  .pb-xl-19,
  .py-xl-19 {
    padding-bottom: 9.5rem !important;
  }

  .pl-xl-19,
  .px-xl-19 {
    padding-left: 9.5rem !important;
  }

  .p-xl-20 {
    padding: 10rem !important;
  }

  .pt-xl-20,
  .py-xl-20 {
    padding-top: 10rem !important;
  }

  .pr-xl-20,
  .px-xl-20 {
    padding-right: 10rem !important;
  }

  .pb-xl-20,
  .py-xl-20 {
    padding-bottom: 10rem !important;
  }

  .pl-xl-20,
  .px-xl-20 {
    padding-left: 10rem !important;
  }

  .p-xl-21 {
    padding: 10.5rem !important;
  }

  .pt-xl-21,
  .py-xl-21 {
    padding-top: 10.5rem !important;
  }

  .pr-xl-21,
  .px-xl-21 {
    padding-right: 10.5rem !important;
  }

  .pb-xl-21,
  .py-xl-21 {
    padding-bottom: 10.5rem !important;
  }

  .pl-xl-21,
  .px-xl-21 {
    padding-left: 10.5rem !important;
  }

  .p-xl-22 {
    padding: 11rem !important;
  }

  .pt-xl-22,
  .py-xl-22 {
    padding-top: 11rem !important;
  }

  .pr-xl-22,
  .px-xl-22 {
    padding-right: 11rem !important;
  }

  .pb-xl-22,
  .py-xl-22 {
    padding-bottom: 11rem !important;
  }

  .pl-xl-22,
  .px-xl-22 {
    padding-left: 11rem !important;
  }

  .p-xl-23 {
    padding: 11.5rem !important;
  }

  .pt-xl-23,
  .py-xl-23 {
    padding-top: 11.5rem !important;
  }

  .pr-xl-23,
  .px-xl-23 {
    padding-right: 11.5rem !important;
  }

  .pb-xl-23,
  .py-xl-23 {
    padding-bottom: 11.5rem !important;
  }

  .pl-xl-23,
  .px-xl-23 {
    padding-left: 11.5rem !important;
  }

  .p-xl-24 {
    padding: 12rem !important;
  }

  .pt-xl-24,
  .py-xl-24 {
    padding-top: 12rem !important;
  }

  .pr-xl-24,
  .px-xl-24 {
    padding-right: 12rem !important;
  }

  .pb-xl-24,
  .py-xl-24 {
    padding-bottom: 12rem !important;
  }

  .pl-xl-24,
  .px-xl-24 {
    padding-left: 12rem !important;
  }

  .p-xl-25 {
    padding: 12.5rem !important;
  }

  .pt-xl-25,
  .py-xl-25 {
    padding-top: 12.5rem !important;
  }

  .pr-xl-25,
  .px-xl-25 {
    padding-right: 12.5rem !important;
  }

  .pb-xl-25,
  .py-xl-25 {
    padding-bottom: 12.5rem !important;
  }

  .pl-xl-25,
  .px-xl-25 {
    padding-left: 12.5rem !important;
  }

  .p-xl-26 {
    padding: 13rem !important;
  }

  .pt-xl-26,
  .py-xl-26 {
    padding-top: 13rem !important;
  }

  .pr-xl-26,
  .px-xl-26 {
    padding-right: 13rem !important;
  }

  .pb-xl-26,
  .py-xl-26 {
    padding-bottom: 13rem !important;
  }

  .pl-xl-26,
  .px-xl-26 {
    padding-left: 13rem !important;
  }

  .p-xl-27 {
    padding: 13.5rem !important;
  }

  .pt-xl-27,
  .py-xl-27 {
    padding-top: 13.5rem !important;
  }

  .pr-xl-27,
  .px-xl-27 {
    padding-right: 13.5rem !important;
  }

  .pb-xl-27,
  .py-xl-27 {
    padding-bottom: 13.5rem !important;
  }

  .pl-xl-27,
  .px-xl-27 {
    padding-left: 13.5rem !important;
  }

  .p-xl-28 {
    padding: 14rem !important;
  }

  .pt-xl-28,
  .py-xl-28 {
    padding-top: 14rem !important;
  }

  .pr-xl-28,
  .px-xl-28 {
    padding-right: 14rem !important;
  }

  .pb-xl-28,
  .py-xl-28 {
    padding-bottom: 14rem !important;
  }

  .pl-xl-28,
  .px-xl-28 {
    padding-left: 14rem !important;
  }

  .p-xl-29 {
    padding: 14.5rem !important;
  }

  .pt-xl-29,
  .py-xl-29 {
    padding-top: 14.5rem !important;
  }

  .pr-xl-29,
  .px-xl-29 {
    padding-right: 14.5rem !important;
  }

  .pb-xl-29,
  .py-xl-29 {
    padding-bottom: 14.5rem !important;
  }

  .pl-xl-29,
  .px-xl-29 {
    padding-left: 14.5rem !important;
  }

  .p-xl-30 {
    padding: 15rem !important;
  }

  .pt-xl-30,
  .py-xl-30 {
    padding-top: 15rem !important;
  }

  .pr-xl-30,
  .px-xl-30 {
    padding-right: 15rem !important;
  }

  .pb-xl-30,
  .py-xl-30 {
    padding-bottom: 15rem !important;
  }

  .pl-xl-30,
  .px-xl-30 {
    padding-left: 15rem !important;
  }

  .p-xl-31 {
    padding: 15.5rem !important;
  }

  .pt-xl-31,
  .py-xl-31 {
    padding-top: 15.5rem !important;
  }

  .pr-xl-31,
  .px-xl-31 {
    padding-right: 15.5rem !important;
  }

  .pb-xl-31,
  .py-xl-31 {
    padding-bottom: 15.5rem !important;
  }

  .pl-xl-31,
  .px-xl-31 {
    padding-left: 15.5rem !important;
  }

  .p-xl-32 {
    padding: 16rem !important;
  }

  .pt-xl-32,
  .py-xl-32 {
    padding-top: 16rem !important;
  }

  .pr-xl-32,
  .px-xl-32 {
    padding-right: 16rem !important;
  }

  .pb-xl-32,
  .py-xl-32 {
    padding-bottom: 16rem !important;
  }

  .pl-xl-32,
  .px-xl-32 {
    padding-left: 16rem !important;
  }

  .p-xl-33 {
    padding: 16.5rem !important;
  }

  .pt-xl-33,
  .py-xl-33 {
    padding-top: 16.5rem !important;
  }

  .pr-xl-33,
  .px-xl-33 {
    padding-right: 16.5rem !important;
  }

  .pb-xl-33,
  .py-xl-33 {
    padding-bottom: 16.5rem !important;
  }

  .pl-xl-33,
  .px-xl-33 {
    padding-left: 16.5rem !important;
  }

  .p-xl-34 {
    padding: 17rem !important;
  }

  .pt-xl-34,
  .py-xl-34 {
    padding-top: 17rem !important;
  }

  .pr-xl-34,
  .px-xl-34 {
    padding-right: 17rem !important;
  }

  .pb-xl-34,
  .py-xl-34 {
    padding-bottom: 17rem !important;
  }

  .pl-xl-34,
  .px-xl-34 {
    padding-left: 17rem !important;
  }

  .p-xl-35 {
    padding: 17.5rem !important;
  }

  .pt-xl-35,
  .py-xl-35 {
    padding-top: 17.5rem !important;
  }

  .pr-xl-35,
  .px-xl-35 {
    padding-right: 17.5rem !important;
  }

  .pb-xl-35,
  .py-xl-35 {
    padding-bottom: 17.5rem !important;
  }

  .pl-xl-35,
  .px-xl-35 {
    padding-left: 17.5rem !important;
  }

  .p-xl-36 {
    padding: 18rem !important;
  }

  .pt-xl-36,
  .py-xl-36 {
    padding-top: 18rem !important;
  }

  .pr-xl-36,
  .px-xl-36 {
    padding-right: 18rem !important;
  }

  .pb-xl-36,
  .py-xl-36 {
    padding-bottom: 18rem !important;
  }

  .pl-xl-36,
  .px-xl-36 {
    padding-left: 18rem !important;
  }

  .p-xl-37 {
    padding: 18.5rem !important;
  }

  .pt-xl-37,
  .py-xl-37 {
    padding-top: 18.5rem !important;
  }

  .pr-xl-37,
  .px-xl-37 {
    padding-right: 18.5rem !important;
  }

  .pb-xl-37,
  .py-xl-37 {
    padding-bottom: 18.5rem !important;
  }

  .pl-xl-37,
  .px-xl-37 {
    padding-left: 18.5rem !important;
  }

  .p-xl-38 {
    padding: 19rem !important;
  }

  .pt-xl-38,
  .py-xl-38 {
    padding-top: 19rem !important;
  }

  .pr-xl-38,
  .px-xl-38 {
    padding-right: 19rem !important;
  }

  .pb-xl-38,
  .py-xl-38 {
    padding-bottom: 19rem !important;
  }

  .pl-xl-38,
  .px-xl-38 {
    padding-left: 19rem !important;
  }

  .p-xl-39 {
    padding: 19.5rem !important;
  }

  .pt-xl-39,
  .py-xl-39 {
    padding-top: 19.5rem !important;
  }

  .pr-xl-39,
  .px-xl-39 {
    padding-right: 19.5rem !important;
  }

  .pb-xl-39,
  .py-xl-39 {
    padding-bottom: 19.5rem !important;
  }

  .pl-xl-39,
  .px-xl-39 {
    padding-left: 19.5rem !important;
  }

  .p-xl-40 {
    padding: 20rem !important;
  }

  .pt-xl-40,
  .py-xl-40 {
    padding-top: 20rem !important;
  }

  .pr-xl-40,
  .px-xl-40 {
    padding-right: 20rem !important;
  }

  .pb-xl-40,
  .py-xl-40 {
    padding-bottom: 20rem !important;
  }

  .pl-xl-40,
  .px-xl-40 {
    padding-left: 20rem !important;
  }

  .p-xl-41 {
    padding: 20.5rem !important;
  }

  .pt-xl-41,
  .py-xl-41 {
    padding-top: 20.5rem !important;
  }

  .pr-xl-41,
  .px-xl-41 {
    padding-right: 20.5rem !important;
  }

  .pb-xl-41,
  .py-xl-41 {
    padding-bottom: 20.5rem !important;
  }

  .pl-xl-41,
  .px-xl-41 {
    padding-left: 20.5rem !important;
  }

  .p-xl-42 {
    padding: 21rem !important;
  }

  .pt-xl-42,
  .py-xl-42 {
    padding-top: 21rem !important;
  }

  .pr-xl-42,
  .px-xl-42 {
    padding-right: 21rem !important;
  }

  .pb-xl-42,
  .py-xl-42 {
    padding-bottom: 21rem !important;
  }

  .pl-xl-42,
  .px-xl-42 {
    padding-left: 21rem !important;
  }

  .p-xl-43 {
    padding: 21.5rem !important;
  }

  .pt-xl-43,
  .py-xl-43 {
    padding-top: 21.5rem !important;
  }

  .pr-xl-43,
  .px-xl-43 {
    padding-right: 21.5rem !important;
  }

  .pb-xl-43,
  .py-xl-43 {
    padding-bottom: 21.5rem !important;
  }

  .pl-xl-43,
  .px-xl-43 {
    padding-left: 21.5rem !important;
  }

  .p-xl-44 {
    padding: 22rem !important;
  }

  .pt-xl-44,
  .py-xl-44 {
    padding-top: 22rem !important;
  }

  .pr-xl-44,
  .px-xl-44 {
    padding-right: 22rem !important;
  }

  .pb-xl-44,
  .py-xl-44 {
    padding-bottom: 22rem !important;
  }

  .pl-xl-44,
  .px-xl-44 {
    padding-left: 22rem !important;
  }

  .p-xl-45 {
    padding: 22.5rem !important;
  }

  .pt-xl-45,
  .py-xl-45 {
    padding-top: 22.5rem !important;
  }

  .pr-xl-45,
  .px-xl-45 {
    padding-right: 22.5rem !important;
  }

  .pb-xl-45,
  .py-xl-45 {
    padding-bottom: 22.5rem !important;
  }

  .pl-xl-45,
  .px-xl-45 {
    padding-left: 22.5rem !important;
  }

  .p-xl-46 {
    padding: 23rem !important;
  }

  .pt-xl-46,
  .py-xl-46 {
    padding-top: 23rem !important;
  }

  .pr-xl-46,
  .px-xl-46 {
    padding-right: 23rem !important;
  }

  .pb-xl-46,
  .py-xl-46 {
    padding-bottom: 23rem !important;
  }

  .pl-xl-46,
  .px-xl-46 {
    padding-left: 23rem !important;
  }

  .p-xl-47 {
    padding: 23.5rem !important;
  }

  .pt-xl-47,
  .py-xl-47 {
    padding-top: 23.5rem !important;
  }

  .pr-xl-47,
  .px-xl-47 {
    padding-right: 23.5rem !important;
  }

  .pb-xl-47,
  .py-xl-47 {
    padding-bottom: 23.5rem !important;
  }

  .pl-xl-47,
  .px-xl-47 {
    padding-left: 23.5rem !important;
  }

  .p-xl-48 {
    padding: 24rem !important;
  }

  .pt-xl-48,
  .py-xl-48 {
    padding-top: 24rem !important;
  }

  .pr-xl-48,
  .px-xl-48 {
    padding-right: 24rem !important;
  }

  .pb-xl-48,
  .py-xl-48 {
    padding-bottom: 24rem !important;
  }

  .pl-xl-48,
  .px-xl-48 {
    padding-left: 24rem !important;
  }

  .p-xl-49 {
    padding: 24.5rem !important;
  }

  .pt-xl-49,
  .py-xl-49 {
    padding-top: 24.5rem !important;
  }

  .pr-xl-49,
  .px-xl-49 {
    padding-right: 24.5rem !important;
  }

  .pb-xl-49,
  .py-xl-49 {
    padding-bottom: 24.5rem !important;
  }

  .pl-xl-49,
  .px-xl-49 {
    padding-left: 24.5rem !important;
  }

  .p-xl-50 {
    padding: 25rem !important;
  }

  .pt-xl-50,
  .py-xl-50 {
    padding-top: 25rem !important;
  }

  .pr-xl-50,
  .px-xl-50 {
    padding-right: 25rem !important;
  }

  .pb-xl-50,
  .py-xl-50 {
    padding-bottom: 25rem !important;
  }

  .pl-xl-50,
  .px-xl-50 {
    padding-left: 25rem !important;
  }

  .p-xl-51 {
    padding: 25.5rem !important;
  }

  .pt-xl-51,
  .py-xl-51 {
    padding-top: 25.5rem !important;
  }

  .pr-xl-51,
  .px-xl-51 {
    padding-right: 25.5rem !important;
  }

  .pb-xl-51,
  .py-xl-51 {
    padding-bottom: 25.5rem !important;
  }

  .pl-xl-51,
  .px-xl-51 {
    padding-left: 25.5rem !important;
  }

  .p-xl-52 {
    padding: 26rem !important;
  }

  .pt-xl-52,
  .py-xl-52 {
    padding-top: 26rem !important;
  }

  .pr-xl-52,
  .px-xl-52 {
    padding-right: 26rem !important;
  }

  .pb-xl-52,
  .py-xl-52 {
    padding-bottom: 26rem !important;
  }

  .pl-xl-52,
  .px-xl-52 {
    padding-left: 26rem !important;
  }

  .p-xl-53 {
    padding: 26.5rem !important;
  }

  .pt-xl-53,
  .py-xl-53 {
    padding-top: 26.5rem !important;
  }

  .pr-xl-53,
  .px-xl-53 {
    padding-right: 26.5rem !important;
  }

  .pb-xl-53,
  .py-xl-53 {
    padding-bottom: 26.5rem !important;
  }

  .pl-xl-53,
  .px-xl-53 {
    padding-left: 26.5rem !important;
  }

  .p-xl-54 {
    padding: 27rem !important;
  }

  .pt-xl-54,
  .py-xl-54 {
    padding-top: 27rem !important;
  }

  .pr-xl-54,
  .px-xl-54 {
    padding-right: 27rem !important;
  }

  .pb-xl-54,
  .py-xl-54 {
    padding-bottom: 27rem !important;
  }

  .pl-xl-54,
  .px-xl-54 {
    padding-left: 27rem !important;
  }

  .p-xl-55 {
    padding: 27.5rem !important;
  }

  .pt-xl-55,
  .py-xl-55 {
    padding-top: 27.5rem !important;
  }

  .pr-xl-55,
  .px-xl-55 {
    padding-right: 27.5rem !important;
  }

  .pb-xl-55,
  .py-xl-55 {
    padding-bottom: 27.5rem !important;
  }

  .pl-xl-55,
  .px-xl-55 {
    padding-left: 27.5rem !important;
  }

  .p-xl-56 {
    padding: 28rem !important;
  }

  .pt-xl-56,
  .py-xl-56 {
    padding-top: 28rem !important;
  }

  .pr-xl-56,
  .px-xl-56 {
    padding-right: 28rem !important;
  }

  .pb-xl-56,
  .py-xl-56 {
    padding-bottom: 28rem !important;
  }

  .pl-xl-56,
  .px-xl-56 {
    padding-left: 28rem !important;
  }

  .p-xl-57 {
    padding: 28.5rem !important;
  }

  .pt-xl-57,
  .py-xl-57 {
    padding-top: 28.5rem !important;
  }

  .pr-xl-57,
  .px-xl-57 {
    padding-right: 28.5rem !important;
  }

  .pb-xl-57,
  .py-xl-57 {
    padding-bottom: 28.5rem !important;
  }

  .pl-xl-57,
  .px-xl-57 {
    padding-left: 28.5rem !important;
  }

  .p-xl-58 {
    padding: 29rem !important;
  }

  .pt-xl-58,
  .py-xl-58 {
    padding-top: 29rem !important;
  }

  .pr-xl-58,
  .px-xl-58 {
    padding-right: 29rem !important;
  }

  .pb-xl-58,
  .py-xl-58 {
    padding-bottom: 29rem !important;
  }

  .pl-xl-58,
  .px-xl-58 {
    padding-left: 29rem !important;
  }

  .p-xl-59 {
    padding: 29.5rem !important;
  }

  .pt-xl-59,
  .py-xl-59 {
    padding-top: 29.5rem !important;
  }

  .pr-xl-59,
  .px-xl-59 {
    padding-right: 29.5rem !important;
  }

  .pb-xl-59,
  .py-xl-59 {
    padding-bottom: 29.5rem !important;
  }

  .pl-xl-59,
  .px-xl-59 {
    padding-left: 29.5rem !important;
  }

  .p-xl-60 {
    padding: 30rem !important;
  }

  .pt-xl-60,
  .py-xl-60 {
    padding-top: 30rem !important;
  }

  .pr-xl-60,
  .px-xl-60 {
    padding-right: 30rem !important;
  }

  .pb-xl-60,
  .py-xl-60 {
    padding-bottom: 30rem !important;
  }

  .pl-xl-60,
  .px-xl-60 {
    padding-left: 30rem !important;
  }

  .p-xl-61 {
    padding: 30.5rem !important;
  }

  .pt-xl-61,
  .py-xl-61 {
    padding-top: 30.5rem !important;
  }

  .pr-xl-61,
  .px-xl-61 {
    padding-right: 30.5rem !important;
  }

  .pb-xl-61,
  .py-xl-61 {
    padding-bottom: 30.5rem !important;
  }

  .pl-xl-61,
  .px-xl-61 {
    padding-left: 30.5rem !important;
  }

  .p-xl-62 {
    padding: 31rem !important;
  }

  .pt-xl-62,
  .py-xl-62 {
    padding-top: 31rem !important;
  }

  .pr-xl-62,
  .px-xl-62 {
    padding-right: 31rem !important;
  }

  .pb-xl-62,
  .py-xl-62 {
    padding-bottom: 31rem !important;
  }

  .pl-xl-62,
  .px-xl-62 {
    padding-left: 31rem !important;
  }

  .p-xl-63 {
    padding: 31.5rem !important;
  }

  .pt-xl-63,
  .py-xl-63 {
    padding-top: 31.5rem !important;
  }

  .pr-xl-63,
  .px-xl-63 {
    padding-right: 31.5rem !important;
  }

  .pb-xl-63,
  .py-xl-63 {
    padding-bottom: 31.5rem !important;
  }

  .pl-xl-63,
  .px-xl-63 {
    padding-left: 31.5rem !important;
  }

  .p-xl-64 {
    padding: 32rem !important;
  }

  .pt-xl-64,
  .py-xl-64 {
    padding-top: 32rem !important;
  }

  .pr-xl-64,
  .px-xl-64 {
    padding-right: 32rem !important;
  }

  .pb-xl-64,
  .py-xl-64 {
    padding-bottom: 32rem !important;
  }

  .pl-xl-64,
  .px-xl-64 {
    padding-left: 32rem !important;
  }

  .p-xl-65 {
    padding: 32.5rem !important;
  }

  .pt-xl-65,
  .py-xl-65 {
    padding-top: 32.5rem !important;
  }

  .pr-xl-65,
  .px-xl-65 {
    padding-right: 32.5rem !important;
  }

  .pb-xl-65,
  .py-xl-65 {
    padding-bottom: 32.5rem !important;
  }

  .pl-xl-65,
  .px-xl-65 {
    padding-left: 32.5rem !important;
  }

  .p-xl-66 {
    padding: 33rem !important;
  }

  .pt-xl-66,
  .py-xl-66 {
    padding-top: 33rem !important;
  }

  .pr-xl-66,
  .px-xl-66 {
    padding-right: 33rem !important;
  }

  .pb-xl-66,
  .py-xl-66 {
    padding-bottom: 33rem !important;
  }

  .pl-xl-66,
  .px-xl-66 {
    padding-left: 33rem !important;
  }

  .p-xl-67 {
    padding: 33.5rem !important;
  }

  .pt-xl-67,
  .py-xl-67 {
    padding-top: 33.5rem !important;
  }

  .pr-xl-67,
  .px-xl-67 {
    padding-right: 33.5rem !important;
  }

  .pb-xl-67,
  .py-xl-67 {
    padding-bottom: 33.5rem !important;
  }

  .pl-xl-67,
  .px-xl-67 {
    padding-left: 33.5rem !important;
  }

  .p-xl-68 {
    padding: 34rem !important;
  }

  .pt-xl-68,
  .py-xl-68 {
    padding-top: 34rem !important;
  }

  .pr-xl-68,
  .px-xl-68 {
    padding-right: 34rem !important;
  }

  .pb-xl-68,
  .py-xl-68 {
    padding-bottom: 34rem !important;
  }

  .pl-xl-68,
  .px-xl-68 {
    padding-left: 34rem !important;
  }

  .p-xl-69 {
    padding: 34.5rem !important;
  }

  .pt-xl-69,
  .py-xl-69 {
    padding-top: 34.5rem !important;
  }

  .pr-xl-69,
  .px-xl-69 {
    padding-right: 34.5rem !important;
  }

  .pb-xl-69,
  .py-xl-69 {
    padding-bottom: 34.5rem !important;
  }

  .pl-xl-69,
  .px-xl-69 {
    padding-left: 34.5rem !important;
  }

  .p-xl-70 {
    padding: 35rem !important;
  }

  .pt-xl-70,
  .py-xl-70 {
    padding-top: 35rem !important;
  }

  .pr-xl-70,
  .px-xl-70 {
    padding-right: 35rem !important;
  }

  .pb-xl-70,
  .py-xl-70 {
    padding-bottom: 35rem !important;
  }

  .pl-xl-70,
  .px-xl-70 {
    padding-left: 35rem !important;
  }

  .p-xl-71 {
    padding: 35.5rem !important;
  }

  .pt-xl-71,
  .py-xl-71 {
    padding-top: 35.5rem !important;
  }

  .pr-xl-71,
  .px-xl-71 {
    padding-right: 35.5rem !important;
  }

  .pb-xl-71,
  .py-xl-71 {
    padding-bottom: 35.5rem !important;
  }

  .pl-xl-71,
  .px-xl-71 {
    padding-left: 35.5rem !important;
  }

  .p-xl-72 {
    padding: 36rem !important;
  }

  .pt-xl-72,
  .py-xl-72 {
    padding-top: 36rem !important;
  }

  .pr-xl-72,
  .px-xl-72 {
    padding-right: 36rem !important;
  }

  .pb-xl-72,
  .py-xl-72 {
    padding-bottom: 36rem !important;
  }

  .pl-xl-72,
  .px-xl-72 {
    padding-left: 36rem !important;
  }

  .p-xl-73 {
    padding: 36.5rem !important;
  }

  .pt-xl-73,
  .py-xl-73 {
    padding-top: 36.5rem !important;
  }

  .pr-xl-73,
  .px-xl-73 {
    padding-right: 36.5rem !important;
  }

  .pb-xl-73,
  .py-xl-73 {
    padding-bottom: 36.5rem !important;
  }

  .pl-xl-73,
  .px-xl-73 {
    padding-left: 36.5rem !important;
  }

  .p-xl-74 {
    padding: 37rem !important;
  }

  .pt-xl-74,
  .py-xl-74 {
    padding-top: 37rem !important;
  }

  .pr-xl-74,
  .px-xl-74 {
    padding-right: 37rem !important;
  }

  .pb-xl-74,
  .py-xl-74 {
    padding-bottom: 37rem !important;
  }

  .pl-xl-74,
  .px-xl-74 {
    padding-left: 37rem !important;
  }

  .p-xl-75 {
    padding: 37.5rem !important;
  }

  .pt-xl-75,
  .py-xl-75 {
    padding-top: 37.5rem !important;
  }

  .pr-xl-75,
  .px-xl-75 {
    padding-right: 37.5rem !important;
  }

  .pb-xl-75,
  .py-xl-75 {
    padding-bottom: 37.5rem !important;
  }

  .pl-xl-75,
  .px-xl-75 {
    padding-left: 37.5rem !important;
  }

  .p-xl-76 {
    padding: 38rem !important;
  }

  .pt-xl-76,
  .py-xl-76 {
    padding-top: 38rem !important;
  }

  .pr-xl-76,
  .px-xl-76 {
    padding-right: 38rem !important;
  }

  .pb-xl-76,
  .py-xl-76 {
    padding-bottom: 38rem !important;
  }

  .pl-xl-76,
  .px-xl-76 {
    padding-left: 38rem !important;
  }

  .p-xl-77 {
    padding: 38.5rem !important;
  }

  .pt-xl-77,
  .py-xl-77 {
    padding-top: 38.5rem !important;
  }

  .pr-xl-77,
  .px-xl-77 {
    padding-right: 38.5rem !important;
  }

  .pb-xl-77,
  .py-xl-77 {
    padding-bottom: 38.5rem !important;
  }

  .pl-xl-77,
  .px-xl-77 {
    padding-left: 38.5rem !important;
  }

  .p-xl-78 {
    padding: 39rem !important;
  }

  .pt-xl-78,
  .py-xl-78 {
    padding-top: 39rem !important;
  }

  .pr-xl-78,
  .px-xl-78 {
    padding-right: 39rem !important;
  }

  .pb-xl-78,
  .py-xl-78 {
    padding-bottom: 39rem !important;
  }

  .pl-xl-78,
  .px-xl-78 {
    padding-left: 39rem !important;
  }

  .p-xl-79 {
    padding: 39.5rem !important;
  }

  .pt-xl-79,
  .py-xl-79 {
    padding-top: 39.5rem !important;
  }

  .pr-xl-79,
  .px-xl-79 {
    padding-right: 39.5rem !important;
  }

  .pb-xl-79,
  .py-xl-79 {
    padding-bottom: 39.5rem !important;
  }

  .pl-xl-79,
  .px-xl-79 {
    padding-left: 39.5rem !important;
  }

  .p-xl-80 {
    padding: 40rem !important;
  }

  .pt-xl-80,
  .py-xl-80 {
    padding-top: 40rem !important;
  }

  .pr-xl-80,
  .px-xl-80 {
    padding-right: 40rem !important;
  }

  .pb-xl-80,
  .py-xl-80 {
    padding-bottom: 40rem !important;
  }

  .pl-xl-80,
  .px-xl-80 {
    padding-left: 40rem !important;
  }

  .p-xl-81 {
    padding: 40.5rem !important;
  }

  .pt-xl-81,
  .py-xl-81 {
    padding-top: 40.5rem !important;
  }

  .pr-xl-81,
  .px-xl-81 {
    padding-right: 40.5rem !important;
  }

  .pb-xl-81,
  .py-xl-81 {
    padding-bottom: 40.5rem !important;
  }

  .pl-xl-81,
  .px-xl-81 {
    padding-left: 40.5rem !important;
  }

  .p-xl-82 {
    padding: 41rem !important;
  }

  .pt-xl-82,
  .py-xl-82 {
    padding-top: 41rem !important;
  }

  .pr-xl-82,
  .px-xl-82 {
    padding-right: 41rem !important;
  }

  .pb-xl-82,
  .py-xl-82 {
    padding-bottom: 41rem !important;
  }

  .pl-xl-82,
  .px-xl-82 {
    padding-left: 41rem !important;
  }

  .p-xl-83 {
    padding: 41.5rem !important;
  }

  .pt-xl-83,
  .py-xl-83 {
    padding-top: 41.5rem !important;
  }

  .pr-xl-83,
  .px-xl-83 {
    padding-right: 41.5rem !important;
  }

  .pb-xl-83,
  .py-xl-83 {
    padding-bottom: 41.5rem !important;
  }

  .pl-xl-83,
  .px-xl-83 {
    padding-left: 41.5rem !important;
  }

  .p-xl-84 {
    padding: 42rem !important;
  }

  .pt-xl-84,
  .py-xl-84 {
    padding-top: 42rem !important;
  }

  .pr-xl-84,
  .px-xl-84 {
    padding-right: 42rem !important;
  }

  .pb-xl-84,
  .py-xl-84 {
    padding-bottom: 42rem !important;
  }

  .pl-xl-84,
  .px-xl-84 {
    padding-left: 42rem !important;
  }

  .p-xl-85 {
    padding: 42.5rem !important;
  }

  .pt-xl-85,
  .py-xl-85 {
    padding-top: 42.5rem !important;
  }

  .pr-xl-85,
  .px-xl-85 {
    padding-right: 42.5rem !important;
  }

  .pb-xl-85,
  .py-xl-85 {
    padding-bottom: 42.5rem !important;
  }

  .pl-xl-85,
  .px-xl-85 {
    padding-left: 42.5rem !important;
  }

  .p-xl-86 {
    padding: 43rem !important;
  }

  .pt-xl-86,
  .py-xl-86 {
    padding-top: 43rem !important;
  }

  .pr-xl-86,
  .px-xl-86 {
    padding-right: 43rem !important;
  }

  .pb-xl-86,
  .py-xl-86 {
    padding-bottom: 43rem !important;
  }

  .pl-xl-86,
  .px-xl-86 {
    padding-left: 43rem !important;
  }

  .p-xl-87 {
    padding: 43.5rem !important;
  }

  .pt-xl-87,
  .py-xl-87 {
    padding-top: 43.5rem !important;
  }

  .pr-xl-87,
  .px-xl-87 {
    padding-right: 43.5rem !important;
  }

  .pb-xl-87,
  .py-xl-87 {
    padding-bottom: 43.5rem !important;
  }

  .pl-xl-87,
  .px-xl-87 {
    padding-left: 43.5rem !important;
  }

  .p-xl-88 {
    padding: 44rem !important;
  }

  .pt-xl-88,
  .py-xl-88 {
    padding-top: 44rem !important;
  }

  .pr-xl-88,
  .px-xl-88 {
    padding-right: 44rem !important;
  }

  .pb-xl-88,
  .py-xl-88 {
    padding-bottom: 44rem !important;
  }

  .pl-xl-88,
  .px-xl-88 {
    padding-left: 44rem !important;
  }

  .p-xl-89 {
    padding: 44.5rem !important;
  }

  .pt-xl-89,
  .py-xl-89 {
    padding-top: 44.5rem !important;
  }

  .pr-xl-89,
  .px-xl-89 {
    padding-right: 44.5rem !important;
  }

  .pb-xl-89,
  .py-xl-89 {
    padding-bottom: 44.5rem !important;
  }

  .pl-xl-89,
  .px-xl-89 {
    padding-left: 44.5rem !important;
  }

  .p-xl-90 {
    padding: 45rem !important;
  }

  .pt-xl-90,
  .py-xl-90 {
    padding-top: 45rem !important;
  }

  .pr-xl-90,
  .px-xl-90 {
    padding-right: 45rem !important;
  }

  .pb-xl-90,
  .py-xl-90 {
    padding-bottom: 45rem !important;
  }

  .pl-xl-90,
  .px-xl-90 {
    padding-left: 45rem !important;
  }

  .p-xl-91 {
    padding: 45.5rem !important;
  }

  .pt-xl-91,
  .py-xl-91 {
    padding-top: 45.5rem !important;
  }

  .pr-xl-91,
  .px-xl-91 {
    padding-right: 45.5rem !important;
  }

  .pb-xl-91,
  .py-xl-91 {
    padding-bottom: 45.5rem !important;
  }

  .pl-xl-91,
  .px-xl-91 {
    padding-left: 45.5rem !important;
  }

  .p-xl-92 {
    padding: 46rem !important;
  }

  .pt-xl-92,
  .py-xl-92 {
    padding-top: 46rem !important;
  }

  .pr-xl-92,
  .px-xl-92 {
    padding-right: 46rem !important;
  }

  .pb-xl-92,
  .py-xl-92 {
    padding-bottom: 46rem !important;
  }

  .pl-xl-92,
  .px-xl-92 {
    padding-left: 46rem !important;
  }

  .p-xl-93 {
    padding: 46.5rem !important;
  }

  .pt-xl-93,
  .py-xl-93 {
    padding-top: 46.5rem !important;
  }

  .pr-xl-93,
  .px-xl-93 {
    padding-right: 46.5rem !important;
  }

  .pb-xl-93,
  .py-xl-93 {
    padding-bottom: 46.5rem !important;
  }

  .pl-xl-93,
  .px-xl-93 {
    padding-left: 46.5rem !important;
  }

  .p-xl-94 {
    padding: 47rem !important;
  }

  .pt-xl-94,
  .py-xl-94 {
    padding-top: 47rem !important;
  }

  .pr-xl-94,
  .px-xl-94 {
    padding-right: 47rem !important;
  }

  .pb-xl-94,
  .py-xl-94 {
    padding-bottom: 47rem !important;
  }

  .pl-xl-94,
  .px-xl-94 {
    padding-left: 47rem !important;
  }

  .p-xl-95 {
    padding: 47.5rem !important;
  }

  .pt-xl-95,
  .py-xl-95 {
    padding-top: 47.5rem !important;
  }

  .pr-xl-95,
  .px-xl-95 {
    padding-right: 47.5rem !important;
  }

  .pb-xl-95,
  .py-xl-95 {
    padding-bottom: 47.5rem !important;
  }

  .pl-xl-95,
  .px-xl-95 {
    padding-left: 47.5rem !important;
  }

  .p-xl-96 {
    padding: 48rem !important;
  }

  .pt-xl-96,
  .py-xl-96 {
    padding-top: 48rem !important;
  }

  .pr-xl-96,
  .px-xl-96 {
    padding-right: 48rem !important;
  }

  .pb-xl-96,
  .py-xl-96 {
    padding-bottom: 48rem !important;
  }

  .pl-xl-96,
  .px-xl-96 {
    padding-left: 48rem !important;
  }

  .p-xl-97 {
    padding: 48.5rem !important;
  }

  .pt-xl-97,
  .py-xl-97 {
    padding-top: 48.5rem !important;
  }

  .pr-xl-97,
  .px-xl-97 {
    padding-right: 48.5rem !important;
  }

  .pb-xl-97,
  .py-xl-97 {
    padding-bottom: 48.5rem !important;
  }

  .pl-xl-97,
  .px-xl-97 {
    padding-left: 48.5rem !important;
  }

  .p-xl-98 {
    padding: 49rem !important;
  }

  .pt-xl-98,
  .py-xl-98 {
    padding-top: 49rem !important;
  }

  .pr-xl-98,
  .px-xl-98 {
    padding-right: 49rem !important;
  }

  .pb-xl-98,
  .py-xl-98 {
    padding-bottom: 49rem !important;
  }

  .pl-xl-98,
  .px-xl-98 {
    padding-left: 49rem !important;
  }

  .p-xl-99 {
    padding: 49.5rem !important;
  }

  .pt-xl-99,
  .py-xl-99 {
    padding-top: 49.5rem !important;
  }

  .pr-xl-99,
  .px-xl-99 {
    padding-right: 49.5rem !important;
  }

  .pb-xl-99,
  .py-xl-99 {
    padding-bottom: 49.5rem !important;
  }

  .pl-xl-99,
  .px-xl-99 {
    padding-left: 49.5rem !important;
  }

  .p-xl-100 {
    padding: 50rem !important;
  }

  .pt-xl-100,
  .py-xl-100 {
    padding-top: 50rem !important;
  }

  .pr-xl-100,
  .px-xl-100 {
    padding-right: 50rem !important;
  }

  .pb-xl-100,
  .py-xl-100 {
    padding-bottom: 50rem !important;
  }

  .pl-xl-100,
  .px-xl-100 {
    padding-left: 50rem !important;
  }

  .p-xl-101 {
    padding: 50.5rem !important;
  }

  .pt-xl-101,
  .py-xl-101 {
    padding-top: 50.5rem !important;
  }

  .pr-xl-101,
  .px-xl-101 {
    padding-right: 50.5rem !important;
  }

  .pb-xl-101,
  .py-xl-101 {
    padding-bottom: 50.5rem !important;
  }

  .pl-xl-101,
  .px-xl-101 {
    padding-left: 50.5rem !important;
  }

  .p-xl-102 {
    padding: 51rem !important;
  }

  .pt-xl-102,
  .py-xl-102 {
    padding-top: 51rem !important;
  }

  .pr-xl-102,
  .px-xl-102 {
    padding-right: 51rem !important;
  }

  .pb-xl-102,
  .py-xl-102 {
    padding-bottom: 51rem !important;
  }

  .pl-xl-102,
  .px-xl-102 {
    padding-left: 51rem !important;
  }

  .p-xl-103 {
    padding: 51.5rem !important;
  }

  .pt-xl-103,
  .py-xl-103 {
    padding-top: 51.5rem !important;
  }

  .pr-xl-103,
  .px-xl-103 {
    padding-right: 51.5rem !important;
  }

  .pb-xl-103,
  .py-xl-103 {
    padding-bottom: 51.5rem !important;
  }

  .pl-xl-103,
  .px-xl-103 {
    padding-left: 51.5rem !important;
  }

  .p-xl-104 {
    padding: 52rem !important;
  }

  .pt-xl-104,
  .py-xl-104 {
    padding-top: 52rem !important;
  }

  .pr-xl-104,
  .px-xl-104 {
    padding-right: 52rem !important;
  }

  .pb-xl-104,
  .py-xl-104 {
    padding-bottom: 52rem !important;
  }

  .pl-xl-104,
  .px-xl-104 {
    padding-left: 52rem !important;
  }

  .p-xl-105 {
    padding: 52.5rem !important;
  }

  .pt-xl-105,
  .py-xl-105 {
    padding-top: 52.5rem !important;
  }

  .pr-xl-105,
  .px-xl-105 {
    padding-right: 52.5rem !important;
  }

  .pb-xl-105,
  .py-xl-105 {
    padding-bottom: 52.5rem !important;
  }

  .pl-xl-105,
  .px-xl-105 {
    padding-left: 52.5rem !important;
  }

  .p-xl-106 {
    padding: 53rem !important;
  }

  .pt-xl-106,
  .py-xl-106 {
    padding-top: 53rem !important;
  }

  .pr-xl-106,
  .px-xl-106 {
    padding-right: 53rem !important;
  }

  .pb-xl-106,
  .py-xl-106 {
    padding-bottom: 53rem !important;
  }

  .pl-xl-106,
  .px-xl-106 {
    padding-left: 53rem !important;
  }

  .p-xl-107 {
    padding: 53.5rem !important;
  }

  .pt-xl-107,
  .py-xl-107 {
    padding-top: 53.5rem !important;
  }

  .pr-xl-107,
  .px-xl-107 {
    padding-right: 53.5rem !important;
  }

  .pb-xl-107,
  .py-xl-107 {
    padding-bottom: 53.5rem !important;
  }

  .pl-xl-107,
  .px-xl-107 {
    padding-left: 53.5rem !important;
  }

  .p-xl-108 {
    padding: 54rem !important;
  }

  .pt-xl-108,
  .py-xl-108 {
    padding-top: 54rem !important;
  }

  .pr-xl-108,
  .px-xl-108 {
    padding-right: 54rem !important;
  }

  .pb-xl-108,
  .py-xl-108 {
    padding-bottom: 54rem !important;
  }

  .pl-xl-108,
  .px-xl-108 {
    padding-left: 54rem !important;
  }

  .p-xl-109 {
    padding: 54.5rem !important;
  }

  .pt-xl-109,
  .py-xl-109 {
    padding-top: 54.5rem !important;
  }

  .pr-xl-109,
  .px-xl-109 {
    padding-right: 54.5rem !important;
  }

  .pb-xl-109,
  .py-xl-109 {
    padding-bottom: 54.5rem !important;
  }

  .pl-xl-109,
  .px-xl-109 {
    padding-left: 54.5rem !important;
  }

  .p-xl-110 {
    padding: 55rem !important;
  }

  .pt-xl-110,
  .py-xl-110 {
    padding-top: 55rem !important;
  }

  .pr-xl-110,
  .px-xl-110 {
    padding-right: 55rem !important;
  }

  .pb-xl-110,
  .py-xl-110 {
    padding-bottom: 55rem !important;
  }

  .pl-xl-110,
  .px-xl-110 {
    padding-left: 55rem !important;
  }

  .p-xl-111 {
    padding: 55.5rem !important;
  }

  .pt-xl-111,
  .py-xl-111 {
    padding-top: 55.5rem !important;
  }

  .pr-xl-111,
  .px-xl-111 {
    padding-right: 55.5rem !important;
  }

  .pb-xl-111,
  .py-xl-111 {
    padding-bottom: 55.5rem !important;
  }

  .pl-xl-111,
  .px-xl-111 {
    padding-left: 55.5rem !important;
  }

  .p-xl-112 {
    padding: 56rem !important;
  }

  .pt-xl-112,
  .py-xl-112 {
    padding-top: 56rem !important;
  }

  .pr-xl-112,
  .px-xl-112 {
    padding-right: 56rem !important;
  }

  .pb-xl-112,
  .py-xl-112 {
    padding-bottom: 56rem !important;
  }

  .pl-xl-112,
  .px-xl-112 {
    padding-left: 56rem !important;
  }

  .p-xl-113 {
    padding: 56.5rem !important;
  }

  .pt-xl-113,
  .py-xl-113 {
    padding-top: 56.5rem !important;
  }

  .pr-xl-113,
  .px-xl-113 {
    padding-right: 56.5rem !important;
  }

  .pb-xl-113,
  .py-xl-113 {
    padding-bottom: 56.5rem !important;
  }

  .pl-xl-113,
  .px-xl-113 {
    padding-left: 56.5rem !important;
  }

  .p-xl-114 {
    padding: 57rem !important;
  }

  .pt-xl-114,
  .py-xl-114 {
    padding-top: 57rem !important;
  }

  .pr-xl-114,
  .px-xl-114 {
    padding-right: 57rem !important;
  }

  .pb-xl-114,
  .py-xl-114 {
    padding-bottom: 57rem !important;
  }

  .pl-xl-114,
  .px-xl-114 {
    padding-left: 57rem !important;
  }

  .p-xl-115 {
    padding: 57.5rem !important;
  }

  .pt-xl-115,
  .py-xl-115 {
    padding-top: 57.5rem !important;
  }

  .pr-xl-115,
  .px-xl-115 {
    padding-right: 57.5rem !important;
  }

  .pb-xl-115,
  .py-xl-115 {
    padding-bottom: 57.5rem !important;
  }

  .pl-xl-115,
  .px-xl-115 {
    padding-left: 57.5rem !important;
  }

  .p-xl-116 {
    padding: 58rem !important;
  }

  .pt-xl-116,
  .py-xl-116 {
    padding-top: 58rem !important;
  }

  .pr-xl-116,
  .px-xl-116 {
    padding-right: 58rem !important;
  }

  .pb-xl-116,
  .py-xl-116 {
    padding-bottom: 58rem !important;
  }

  .pl-xl-116,
  .px-xl-116 {
    padding-left: 58rem !important;
  }

  .p-xl-117 {
    padding: 58.5rem !important;
  }

  .pt-xl-117,
  .py-xl-117 {
    padding-top: 58.5rem !important;
  }

  .pr-xl-117,
  .px-xl-117 {
    padding-right: 58.5rem !important;
  }

  .pb-xl-117,
  .py-xl-117 {
    padding-bottom: 58.5rem !important;
  }

  .pl-xl-117,
  .px-xl-117 {
    padding-left: 58.5rem !important;
  }

  .p-xl-118 {
    padding: 59rem !important;
  }

  .pt-xl-118,
  .py-xl-118 {
    padding-top: 59rem !important;
  }

  .pr-xl-118,
  .px-xl-118 {
    padding-right: 59rem !important;
  }

  .pb-xl-118,
  .py-xl-118 {
    padding-bottom: 59rem !important;
  }

  .pl-xl-118,
  .px-xl-118 {
    padding-left: 59rem !important;
  }

  .p-xl-119 {
    padding: 59.5rem !important;
  }

  .pt-xl-119,
  .py-xl-119 {
    padding-top: 59.5rem !important;
  }

  .pr-xl-119,
  .px-xl-119 {
    padding-right: 59.5rem !important;
  }

  .pb-xl-119,
  .py-xl-119 {
    padding-bottom: 59.5rem !important;
  }

  .pl-xl-119,
  .px-xl-119 {
    padding-left: 59.5rem !important;
  }

  .p-xl-120 {
    padding: 60rem !important;
  }

  .pt-xl-120,
  .py-xl-120 {
    padding-top: 60rem !important;
  }

  .pr-xl-120,
  .px-xl-120 {
    padding-right: 60rem !important;
  }

  .pb-xl-120,
  .py-xl-120 {
    padding-bottom: 60rem !important;
  }

  .pl-xl-120,
  .px-xl-120 {
    padding-left: 60rem !important;
  }

  .p-xl-121 {
    padding: 60.5rem !important;
  }

  .pt-xl-121,
  .py-xl-121 {
    padding-top: 60.5rem !important;
  }

  .pr-xl-121,
  .px-xl-121 {
    padding-right: 60.5rem !important;
  }

  .pb-xl-121,
  .py-xl-121 {
    padding-bottom: 60.5rem !important;
  }

  .pl-xl-121,
  .px-xl-121 {
    padding-left: 60.5rem !important;
  }

  .p-xl-122 {
    padding: 61rem !important;
  }

  .pt-xl-122,
  .py-xl-122 {
    padding-top: 61rem !important;
  }

  .pr-xl-122,
  .px-xl-122 {
    padding-right: 61rem !important;
  }

  .pb-xl-122,
  .py-xl-122 {
    padding-bottom: 61rem !important;
  }

  .pl-xl-122,
  .px-xl-122 {
    padding-left: 61rem !important;
  }

  .p-xl-123 {
    padding: 61.5rem !important;
  }

  .pt-xl-123,
  .py-xl-123 {
    padding-top: 61.5rem !important;
  }

  .pr-xl-123,
  .px-xl-123 {
    padding-right: 61.5rem !important;
  }

  .pb-xl-123,
  .py-xl-123 {
    padding-bottom: 61.5rem !important;
  }

  .pl-xl-123,
  .px-xl-123 {
    padding-left: 61.5rem !important;
  }

  .p-xl-124 {
    padding: 62rem !important;
  }

  .pt-xl-124,
  .py-xl-124 {
    padding-top: 62rem !important;
  }

  .pr-xl-124,
  .px-xl-124 {
    padding-right: 62rem !important;
  }

  .pb-xl-124,
  .py-xl-124 {
    padding-bottom: 62rem !important;
  }

  .pl-xl-124,
  .px-xl-124 {
    padding-left: 62rem !important;
  }

  .p-xl-125 {
    padding: 62.5rem !important;
  }

  .pt-xl-125,
  .py-xl-125 {
    padding-top: 62.5rem !important;
  }

  .pr-xl-125,
  .px-xl-125 {
    padding-right: 62.5rem !important;
  }

  .pb-xl-125,
  .py-xl-125 {
    padding-bottom: 62.5rem !important;
  }

  .pl-xl-125,
  .px-xl-125 {
    padding-left: 62.5rem !important;
  }

  .p-xl-126 {
    padding: 63rem !important;
  }

  .pt-xl-126,
  .py-xl-126 {
    padding-top: 63rem !important;
  }

  .pr-xl-126,
  .px-xl-126 {
    padding-right: 63rem !important;
  }

  .pb-xl-126,
  .py-xl-126 {
    padding-bottom: 63rem !important;
  }

  .pl-xl-126,
  .px-xl-126 {
    padding-left: 63rem !important;
  }

  .p-xl-127 {
    padding: 63.5rem !important;
  }

  .pt-xl-127,
  .py-xl-127 {
    padding-top: 63.5rem !important;
  }

  .pr-xl-127,
  .px-xl-127 {
    padding-right: 63.5rem !important;
  }

  .pb-xl-127,
  .py-xl-127 {
    padding-bottom: 63.5rem !important;
  }

  .pl-xl-127,
  .px-xl-127 {
    padding-left: 63.5rem !important;
  }

  .p-xl-128 {
    padding: 64rem !important;
  }

  .pt-xl-128,
  .py-xl-128 {
    padding-top: 64rem !important;
  }

  .pr-xl-128,
  .px-xl-128 {
    padding-right: 64rem !important;
  }

  .pb-xl-128,
  .py-xl-128 {
    padding-bottom: 64rem !important;
  }

  .pl-xl-128,
  .px-xl-128 {
    padding-left: 64rem !important;
  }

  .p-xl-129 {
    padding: 64.5rem !important;
  }

  .pt-xl-129,
  .py-xl-129 {
    padding-top: 64.5rem !important;
  }

  .pr-xl-129,
  .px-xl-129 {
    padding-right: 64.5rem !important;
  }

  .pb-xl-129,
  .py-xl-129 {
    padding-bottom: 64.5rem !important;
  }

  .pl-xl-129,
  .px-xl-129 {
    padding-left: 64.5rem !important;
  }

  .p-xl-130 {
    padding: 65rem !important;
  }

  .pt-xl-130,
  .py-xl-130 {
    padding-top: 65rem !important;
  }

  .pr-xl-130,
  .px-xl-130 {
    padding-right: 65rem !important;
  }

  .pb-xl-130,
  .py-xl-130 {
    padding-bottom: 65rem !important;
  }

  .pl-xl-130,
  .px-xl-130 {
    padding-left: 65rem !important;
  }

  .p-xl-131 {
    padding: 65.5rem !important;
  }

  .pt-xl-131,
  .py-xl-131 {
    padding-top: 65.5rem !important;
  }

  .pr-xl-131,
  .px-xl-131 {
    padding-right: 65.5rem !important;
  }

  .pb-xl-131,
  .py-xl-131 {
    padding-bottom: 65.5rem !important;
  }

  .pl-xl-131,
  .px-xl-131 {
    padding-left: 65.5rem !important;
  }

  .p-xl-132 {
    padding: 66rem !important;
  }

  .pt-xl-132,
  .py-xl-132 {
    padding-top: 66rem !important;
  }

  .pr-xl-132,
  .px-xl-132 {
    padding-right: 66rem !important;
  }

  .pb-xl-132,
  .py-xl-132 {
    padding-bottom: 66rem !important;
  }

  .pl-xl-132,
  .px-xl-132 {
    padding-left: 66rem !important;
  }

  .p-xl-133 {
    padding: 66.5rem !important;
  }

  .pt-xl-133,
  .py-xl-133 {
    padding-top: 66.5rem !important;
  }

  .pr-xl-133,
  .px-xl-133 {
    padding-right: 66.5rem !important;
  }

  .pb-xl-133,
  .py-xl-133 {
    padding-bottom: 66.5rem !important;
  }

  .pl-xl-133,
  .px-xl-133 {
    padding-left: 66.5rem !important;
  }

  .p-xl-134 {
    padding: 67rem !important;
  }

  .pt-xl-134,
  .py-xl-134 {
    padding-top: 67rem !important;
  }

  .pr-xl-134,
  .px-xl-134 {
    padding-right: 67rem !important;
  }

  .pb-xl-134,
  .py-xl-134 {
    padding-bottom: 67rem !important;
  }

  .pl-xl-134,
  .px-xl-134 {
    padding-left: 67rem !important;
  }

  .p-xl-135 {
    padding: 67.5rem !important;
  }

  .pt-xl-135,
  .py-xl-135 {
    padding-top: 67.5rem !important;
  }

  .pr-xl-135,
  .px-xl-135 {
    padding-right: 67.5rem !important;
  }

  .pb-xl-135,
  .py-xl-135 {
    padding-bottom: 67.5rem !important;
  }

  .pl-xl-135,
  .px-xl-135 {
    padding-left: 67.5rem !important;
  }

  .p-xl-136 {
    padding: 68rem !important;
  }

  .pt-xl-136,
  .py-xl-136 {
    padding-top: 68rem !important;
  }

  .pr-xl-136,
  .px-xl-136 {
    padding-right: 68rem !important;
  }

  .pb-xl-136,
  .py-xl-136 {
    padding-bottom: 68rem !important;
  }

  .pl-xl-136,
  .px-xl-136 {
    padding-left: 68rem !important;
  }

  .p-xl-137 {
    padding: 68.5rem !important;
  }

  .pt-xl-137,
  .py-xl-137 {
    padding-top: 68.5rem !important;
  }

  .pr-xl-137,
  .px-xl-137 {
    padding-right: 68.5rem !important;
  }

  .pb-xl-137,
  .py-xl-137 {
    padding-bottom: 68.5rem !important;
  }

  .pl-xl-137,
  .px-xl-137 {
    padding-left: 68.5rem !important;
  }

  .p-xl-138 {
    padding: 69rem !important;
  }

  .pt-xl-138,
  .py-xl-138 {
    padding-top: 69rem !important;
  }

  .pr-xl-138,
  .px-xl-138 {
    padding-right: 69rem !important;
  }

  .pb-xl-138,
  .py-xl-138 {
    padding-bottom: 69rem !important;
  }

  .pl-xl-138,
  .px-xl-138 {
    padding-left: 69rem !important;
  }

  .p-xl-139 {
    padding: 69.5rem !important;
  }

  .pt-xl-139,
  .py-xl-139 {
    padding-top: 69.5rem !important;
  }

  .pr-xl-139,
  .px-xl-139 {
    padding-right: 69.5rem !important;
  }

  .pb-xl-139,
  .py-xl-139 {
    padding-bottom: 69.5rem !important;
  }

  .pl-xl-139,
  .px-xl-139 {
    padding-left: 69.5rem !important;
  }

  .p-xl-140 {
    padding: 70rem !important;
  }

  .pt-xl-140,
  .py-xl-140 {
    padding-top: 70rem !important;
  }

  .pr-xl-140,
  .px-xl-140 {
    padding-right: 70rem !important;
  }

  .pb-xl-140,
  .py-xl-140 {
    padding-bottom: 70rem !important;
  }

  .pl-xl-140,
  .px-xl-140 {
    padding-left: 70rem !important;
  }

  .p-xl-141 {
    padding: 70.5rem !important;
  }

  .pt-xl-141,
  .py-xl-141 {
    padding-top: 70.5rem !important;
  }

  .pr-xl-141,
  .px-xl-141 {
    padding-right: 70.5rem !important;
  }

  .pb-xl-141,
  .py-xl-141 {
    padding-bottom: 70.5rem !important;
  }

  .pl-xl-141,
  .px-xl-141 {
    padding-left: 70.5rem !important;
  }

  .p-xl-142 {
    padding: 71rem !important;
  }

  .pt-xl-142,
  .py-xl-142 {
    padding-top: 71rem !important;
  }

  .pr-xl-142,
  .px-xl-142 {
    padding-right: 71rem !important;
  }

  .pb-xl-142,
  .py-xl-142 {
    padding-bottom: 71rem !important;
  }

  .pl-xl-142,
  .px-xl-142 {
    padding-left: 71rem !important;
  }

  .p-xl-143 {
    padding: 71.5rem !important;
  }

  .pt-xl-143,
  .py-xl-143 {
    padding-top: 71.5rem !important;
  }

  .pr-xl-143,
  .px-xl-143 {
    padding-right: 71.5rem !important;
  }

  .pb-xl-143,
  .py-xl-143 {
    padding-bottom: 71.5rem !important;
  }

  .pl-xl-143,
  .px-xl-143 {
    padding-left: 71.5rem !important;
  }

  .p-xl-144 {
    padding: 72rem !important;
  }

  .pt-xl-144,
  .py-xl-144 {
    padding-top: 72rem !important;
  }

  .pr-xl-144,
  .px-xl-144 {
    padding-right: 72rem !important;
  }

  .pb-xl-144,
  .py-xl-144 {
    padding-bottom: 72rem !important;
  }

  .pl-xl-144,
  .px-xl-144 {
    padding-left: 72rem !important;
  }

  .p-xl-145 {
    padding: 72.5rem !important;
  }

  .pt-xl-145,
  .py-xl-145 {
    padding-top: 72.5rem !important;
  }

  .pr-xl-145,
  .px-xl-145 {
    padding-right: 72.5rem !important;
  }

  .pb-xl-145,
  .py-xl-145 {
    padding-bottom: 72.5rem !important;
  }

  .pl-xl-145,
  .px-xl-145 {
    padding-left: 72.5rem !important;
  }

  .p-xl-146 {
    padding: 73rem !important;
  }

  .pt-xl-146,
  .py-xl-146 {
    padding-top: 73rem !important;
  }

  .pr-xl-146,
  .px-xl-146 {
    padding-right: 73rem !important;
  }

  .pb-xl-146,
  .py-xl-146 {
    padding-bottom: 73rem !important;
  }

  .pl-xl-146,
  .px-xl-146 {
    padding-left: 73rem !important;
  }

  .p-xl-147 {
    padding: 73.5rem !important;
  }

  .pt-xl-147,
  .py-xl-147 {
    padding-top: 73.5rem !important;
  }

  .pr-xl-147,
  .px-xl-147 {
    padding-right: 73.5rem !important;
  }

  .pb-xl-147,
  .py-xl-147 {
    padding-bottom: 73.5rem !important;
  }

  .pl-xl-147,
  .px-xl-147 {
    padding-left: 73.5rem !important;
  }

  .p-xl-148 {
    padding: 74rem !important;
  }

  .pt-xl-148,
  .py-xl-148 {
    padding-top: 74rem !important;
  }

  .pr-xl-148,
  .px-xl-148 {
    padding-right: 74rem !important;
  }

  .pb-xl-148,
  .py-xl-148 {
    padding-bottom: 74rem !important;
  }

  .pl-xl-148,
  .px-xl-148 {
    padding-left: 74rem !important;
  }

  .p-xl-149 {
    padding: 74.5rem !important;
  }

  .pt-xl-149,
  .py-xl-149 {
    padding-top: 74.5rem !important;
  }

  .pr-xl-149,
  .px-xl-149 {
    padding-right: 74.5rem !important;
  }

  .pb-xl-149,
  .py-xl-149 {
    padding-bottom: 74.5rem !important;
  }

  .pl-xl-149,
  .px-xl-149 {
    padding-left: 74.5rem !important;
  }

  .p-xl-150 {
    padding: 75rem !important;
  }

  .pt-xl-150,
  .py-xl-150 {
    padding-top: 75rem !important;
  }

  .pr-xl-150,
  .px-xl-150 {
    padding-right: 75rem !important;
  }

  .pb-xl-150,
  .py-xl-150 {
    padding-bottom: 75rem !important;
  }

  .pl-xl-150,
  .px-xl-150 {
    padding-left: 75rem !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;
  }
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left,
.EPiServerForms .Form__Title {
  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;
  }
}

.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-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #191a37 !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #090914 !important;
}

.text-secondary {
  color: #da2128 !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #ae1a20 !important;
}

.text-success {
  color: #746a7f !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #5b5363 !important;
}

.text-info {
  color: #f5f5f5 !important;
}

a.text-info:hover,
a.text-info:focus {
  color: gainsboro !important;
}

.text-warning {
  color: #e98f79 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #e26a4d !important;
}

.text-danger {
  color: #da2128 !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #ae1a20 !important;
}

.text-light {
  color: #dee2e6 !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #c1c9d0 !important;
}

.text-dark {
  color: #383d42 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #212426 !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;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.easy-autocomplete {
  position: relative;
}

.easy-autocomplete input {
  border-color: #ccc;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
  color: #555;
  float: none;
  padding: 6px 12px;
}

.easy-autocomplete input:hover,
.easy-autocomplete input:focus {
  box-shadow: none;
}

.easy-autocomplete a {
  display: block;
}

.easy-autocomplete.eac-blue-light input:hover,
.easy-autocomplete.eac-blue-light input:focus {
  border-color: #66afe9;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}

.easy-autocomplete.eac-blue-light ul {
  border-color: #66afe9;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}

.easy-autocomplete.eac-blue-light ul li,
.easy-autocomplete.eac-blue-light ul .eac-category {
  border-color: #66afe9;
}

.easy-autocomplete.eac-blue-light ul li.selected,
.easy-autocomplete.eac-blue-light ul .eac-category.selected {
  background-color: #ecf5fc;
}

.easy-autocomplete.eac-green-light input:hover,
.easy-autocomplete.eac-green-light input:focus {
  border-color: #41DB00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(146, 237, 107, 0.6);
}

.easy-autocomplete.eac-green-light ul {
  border-color: #41DB00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(146, 237, 107, 0.6);
}

.easy-autocomplete.eac-green-light ul li,
.easy-autocomplete.eac-green-light ul .eac-category {
  border-color: #41DB00;
}

.easy-autocomplete.eac-green-light ul li.selected,
.easy-autocomplete.eac-green-light ul .eac-category.selected {
  background-color: #9eff75;
}

.easy-autocomplete.eac-red-light input:hover,
.easy-autocomplete.eac-red-light input:focus {
  border-color: #ff5b5b;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 90, 90, 0.6);
}

.easy-autocomplete.eac-red-light ul {
  border-color: #ff5b5b;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 90, 90, 0.6);
}

.easy-autocomplete.eac-red-light ul li,
.easy-autocomplete.eac-red-light ul .eac-category {
  border-color: #ff5b5b;
}

.easy-autocomplete.eac-red-light ul li.selected,
.easy-autocomplete.eac-red-light ul .eac-category.selected {
  background-color: #ff8e8e;
}

.easy-autocomplete.eac-yellow-light input:hover,
.easy-autocomplete.eac-yellow-light input:focus {
  border-color: #ffdb00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 231, 84, 0.6);
}

.easy-autocomplete.eac-yellow-light ul {
  border-color: #ffdb00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 231, 84, 0.6);
}

.easy-autocomplete.eac-yellow-light ul li,
.easy-autocomplete.eac-yellow-light ul .eac-category {
  border-color: #ffdb00;
}

.easy-autocomplete.eac-yellow-light ul li.selected,
.easy-autocomplete.eac-yellow-light ul .eac-category.selected {
  background-color: #ffe233;
}

.easy-autocomplete.eac-dark-light input:hover,
.easy-autocomplete.eac-dark-light input:focus {
  border-color: #333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(55, 55, 55, 0.6);
}

.easy-autocomplete.eac-dark-light ul {
  border-color: #333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(55, 55, 55, 0.6);
}

.easy-autocomplete.eac-dark-light ul li,
.easy-autocomplete.eac-dark-light ul .eac-category {
  border-color: #333;
}

.easy-autocomplete.eac-dark-light ul li.selected,
.easy-autocomplete.eac-dark-light ul .eac-category.selected {
  background-color: #4d4d4d;
  color: #fff;
}

.easy-autocomplete.eac-dark {
  color: #fff;
}

.easy-autocomplete.eac-dark input {
  background-color: #404040;
  border-radius: 4px;
  box-shadow: 0;
  color: #f6f6f6;
}

.easy-autocomplete.eac-dark input:hover,
.easy-autocomplete.eac-dark input:focus {
  border-color: #333;
  box-shadow: 0;
}

.easy-autocomplete.eac-dark ul {
  border-color: #333;
}

.easy-autocomplete.eac-dark ul li,
.easy-autocomplete.eac-dark ul .eac-category {
  background-color: #404040;
  border-color: #333;
}

.easy-autocomplete.eac-dark ul li.selected,
.easy-autocomplete.eac-dark ul .eac-category.selected {
  background-color: #737373;
  color: #f6f6f6;
}

.easy-autocomplete.eac-dark-glass {
  color: #fff;
}

.easy-autocomplete.eac-dark-glass input {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  box-shadow: 0;
  color: #f6f6f6;
}

.easy-autocomplete.eac-dark-glass input:hover,
.easy-autocomplete.eac-dark-glass input:focus {
  border-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0;
}

.easy-autocomplete.eac-dark-glass ul {
  border-color: rgba(0, 0, 0, 0.8);
}

.easy-autocomplete.eac-dark-glass ul li,
.easy-autocomplete.eac-dark-glass ul .eac-category {
  background-color: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 0, 0, 0.8);
}

.easy-autocomplete.eac-dark-glass ul li.selected,
.easy-autocomplete.eac-dark-glass ul .eac-category.selected {
  background-color: rgba(64, 64, 64, 0.8);
  color: #f6f6f6;
}

.easy-autocomplete.eac-dark-glass ul li:last-child,
.easy-autocomplete.eac-dark-glass ul .eac-category:last-child {
  border-radius: 0 0 4px 4px;
}

.easy-autocomplete.eac-blue {
  color: #fff;
}

.easy-autocomplete.eac-blue input {
  background-color: #6d9ed1;
  border-radius: 4px;
  box-shadow: 0;
  color: #f6f6f6;
}

.easy-autocomplete.eac-blue input::-webkit-input-placeholder {
  color: #f6f6f6;
}

.easy-autocomplete.eac-blue input:-moz-placeholder {
  color: #f6f6f6;
}

.easy-autocomplete.eac-blue input::-moz-placeholder {
  color: #f6f6f6;
}

.easy-autocomplete.eac-blue input:-ms-input-placeholder {
  color: #f6f6f6;
}

.easy-autocomplete.eac-blue input:hover,
.easy-autocomplete.eac-blue input:focus {
  border-color: #5A91CB;
  box-shadow: 0;
}

.easy-autocomplete.eac-blue ul {
  border-color: #5A91CB;
}

.easy-autocomplete.eac-blue ul li,
.easy-autocomplete.eac-blue ul .eac-category {
  background-color: #6d9ed1;
  border-color: #5A91CB;
}

.easy-autocomplete.eac-blue ul li.selected,
.easy-autocomplete.eac-blue ul .eac-category.selected {
  background-color: #94b8dd;
  color: #f6f6f6;
}

.easy-autocomplete.eac-yellow {
  color: #333;
}

.easy-autocomplete.eac-yellow input {
  background-color: #ffdb7e;
  border-color: #333;
  border-radius: 4px;
  box-shadow: 0;
  color: #333;
}

.easy-autocomplete.eac-yellow input:hover,
.easy-autocomplete.eac-yellow input:focus {
  border-color: #333;
  box-shadow: 0;
}

.easy-autocomplete.eac-yellow ul {
  border-color: #333;
}

.easy-autocomplete.eac-yellow ul li,
.easy-autocomplete.eac-yellow ul .eac-category {
  background-color: #ffdb7e;
  border-color: #333;
}

.easy-autocomplete.eac-yellow ul li.selected,
.easy-autocomplete.eac-yellow ul .eac-category.selected {
  background-color: #ffe9b1;
  color: #333;
}

.easy-autocomplete.eac-purple {
  color: #333;
}

.easy-autocomplete.eac-purple input {
  background-color: #d6d1e7;
  border-color: #b8afd5;
  box-shadow: 0;
  color: #333;
}

.easy-autocomplete.eac-purple input:hover,
.easy-autocomplete.eac-purple input:focus {
  border-color: #333;
  box-shadow: 0;
}

.easy-autocomplete.eac-purple ul {
  border-color: #333;
}

.easy-autocomplete.eac-purple ul li,
.easy-autocomplete.eac-purple ul .eac-category {
  background-color: #d6d1e7;
  border-color: #333;
}

.easy-autocomplete.eac-purple ul li.selected,
.easy-autocomplete.eac-purple ul .eac-category.selected {
  background-color: #ebe8f3;
  color: #333;
}

.easy-autocomplete.eac-bootstrap input {
  border-color: #ccc;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  color: #555;
  padding: 6px 12px;
}

.easy-autocomplete-container {
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.easy-autocomplete-container ul {
  background: none repeat scroll 0 0 #ffffff;
  border-top: 1px dotted #ccc;
  display: none;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  position: relative;
  top: -1px;
}

.easy-autocomplete-container ul li,
.easy-autocomplete-container ul .eac-category {
  background: inherit;
  border-color: #ccc;
  border-image: none;
  border-style: solid;
  border-width: 0 1px;
  display: block;
  font-size: 14px;
  font-weight: normal;
  padding: 4px 12px;
}

.easy-autocomplete-container ul li:last-child {
  border-radius: 0 0 2px 2px;
  border-width: 0 1px 1px;
}

.easy-autocomplete-container ul li.selected {
  background: none repeat scroll 0 0 #ebebeb;
  cursor: pointer;
}

.easy-autocomplete-container ul li.selected div {
  font-weight: normal;
}

.easy-autocomplete-container ul li div {
  display: block;
  font-weight: normal;
  word-break: break-all;
}

.easy-autocomplete-container ul li b {
  font-weight: bold;
}

.easy-autocomplete-container ul .eac-category {
  font-color: #aaa;
  font-style: italic;
}

.eac-description .eac-item span {
  color: #aaa;
  font-style: italic;
  font-size: 0.9em;
}

.eac-icon-left .eac-item img {
  margin-right: 4px;
  max-height: 30px;
}

.eac-icon-right .eac-item {
  margin-top: 8px;
  min-height: 24px;
  position: relative;
}

.eac-icon-right .eac-item img {
  margin-left: 4px;
  max-height: 30px;
  position: absolute;
  right: -4px;
  top: -8px;
}

@media (min-width: 992px) {
  .blur-txt {
    color: transparent;
    opacity: 0;
  }
}

.blur-in-text {
  color: transparent;
  animation: blur 500ms ease-out;
  -webkit-animation: blur 500ms ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.blur-in-text-red {
  color: transparent;
  animation: blur-red 500ms ease-out;
  -webkit-animation: blur-red  500ms ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@media (min-width: 992px) {
  .blur-txt-white {
    color: transparent;
    opacity: 0;
  }
}

.blur-in-text-white {
  color: transparent;
  animation: blur-white 500ms ease-out;
  -webkit-animation: blur-white  500ms ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes blur {
  0% {
    text-shadow: 0 0 100px #000;
    opacity: 0;
    transform: translateY(35px);
  }

  25% {
    text-shadow: 0 0 90px #000;
    opacity: 0.2;
    transform: translateY(25px);
  }

  50% {
    text-shadow: 0 0 50px #000;
    opacity: 0.5;
    transform: translateY(15px);
  }

  75% {
    text-shadow: 0 0 30px #000;
    opacity: 0.8;
    transform: translateY(10px);
  }

  100% {
    text-shadow: 0 0 0px #000;
    opacity: 1;
    transform: translateY(0px);
  }
}

@-webkit-keyframes blur {
  0% {
    text-shadow: 0 0 100px #000;
    opacity: 0;
    transform: translateY(35px);
  }

  25% {
    text-shadow: 0 0 90px #000;
    opacity: 0.2;
    transform: translateY(25px);
  }

  50% {
    text-shadow: 0 0 50px #000;
    opacity: 0.5;
    transform: translateY(15px);
  }

  75% {
    text-shadow: 0 0 30px #000;
    opacity: 0.8;
    transform: translateY(10px);
  }

  100% {
    text-shadow: 0 0 0px #000;
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes blur-red {
  0% {
    text-shadow: 0 0 100px #da2128;
    opacity: 0;
    transform: translateY(35px);
  }

  25% {
    text-shadow: 0 0 90px #da2128;
    opacity: 0.2;
    transform: translateY(25px);
  }

  50% {
    text-shadow: 0 0 50px #da2128;
    opacity: 0.5;
    transform: translateY(15px);
  }

  75% {
    text-shadow: 0 0 30px #da2128;
    opacity: 0.8;
    transform: translateY(10px);
  }

  100% {
    text-shadow: none;
    color: #da2128;
    opacity: 1;
    transform: translateY(0px);
  }
}

@-webkit-keyframes blur-red {
  0% {
    text-shadow: 0 0 100px #da2128;
    opacity: 0;
    transform: translateY(35px);
  }

  25% {
    text-shadow: 0 0 90px #da2128;
    opacity: 0.2;
    transform: translateY(25px);
  }

  50% {
    text-shadow: 0 0 50px #da2128;
    opacity: 0.5;
    transform: translateY(15px);
  }

  75% {
    text-shadow: 0 0 30px #da2128;
    opacity: 0.8;
    transform: translateY(10px);
  }

  100% {
    text-shadow: none;
    color: #da2128;
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes blur-white {
  0% {
    text-shadow: 0 0 100px #fff;
    opacity: 0;
    transform: translateY(35px);
  }

  25% {
    text-shadow: 0 0 90px #fff;
    opacity: 0.2;
    transform: translateY(25px);
  }

  50% {
    text-shadow: 0 0 50px #fff;
    opacity: 0.5;
    transform: translateY(15px);
  }

  75% {
    text-shadow: 0 0 30px #fff;
    opacity: 0.8;
    transform: translateY(10px);
  }

  100% {
    text-shadow: none;
    color: #fff;
    opacity: 1;
    transform: translateY(0px);
  }
}

@-webkit-keyframes blur-white {
  0% {
    text-shadow: 0 0 100px #fff;
    opacity: 0;
    transform: translateY(35px);
  }

  25% {
    text-shadow: 0 0 90px #fff;
    opacity: 0.2;
    transform: translateY(25px);
  }

  50% {
    text-shadow: 0 0 50px #fff;
    opacity: 0.5;
    transform: translateY(15px);
  }

  75% {
    text-shadow: 0 0 30px #fff;
    opacity: 0.8;
    transform: translateY(10px);
  }

  100% {
    text-shadow: none;
    color: #fff;
    opacity: 1;
    transform: translateY(0px);
  }
}

/*Blur Images*/

@media (min-width: 992px) {
  .blur-this-img {
    opacity: 0;
  }
}

.blur-in-img {
  opacity: 0;
  animation: blur-img 500ms ease-out;
  -webkit-animation: blur-img 500ms ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

@keyframes blur-img {
  0% {
    -webkit-filter: blur(50px);
    opacity: 0;
    transform: translateY(65px);
  }

  25% {
    -webkit-filter: blur(40px);
    opacity: 0.2;
    transform: translateY(45px);
  }

  50% {
    -webkit-filter: blur(30px);
    opacity: 0.5;
    transform: translateY(20px);
  }

  75% {
    -webkit-filter: blur(15px);
    opacity: 0.8;
    transform: translateY(10px);
  }

  100% {
    -webkit-filter: blur(0px);
    opacity: 1;
    transform: translateY(0px);
  }
}

@-webkit-keyframes blur-img {
  0% {
    -webkit-filter: blur(50px);
    opacity: 0;
    transform: translateY(65px);
  }

  25% {
    -webkit-filter: blur(40px);
    opacity: 0.2;
    transform: translateY(45px);
  }

  50% {
    -webkit-filter: blur(30px);
    opacity: 0.5;
    transform: translateY(20px);
  }

  75% {
    -webkit-filter: blur(15px);
    opacity: 0.8;
    transform: translateY(10px);
  }

  100% {
    -webkit-filter: blur(0px);
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes hover-img {
  0% {
    transform: scale(1.01);
  }

  25% {
    transform: scale(1.02);
  }

  50% {
    transform: scale(1.03);
  }

  75% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1.05);
  }
}

@-webkit-keyframes hover-img {
  0% {
    transform: scale(1.01);
  }

  25% {
    transform: scale(1.02);
  }

  50% {
    transform: scale(1.03);
  }

  75% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* Button Grow/Shrink */

@media (min-width: 992px) {
  .grow-this-button,
  .carousel .flickity-prev-next-button {
    transform: scale(0);
  }
}

.obj-grow {
  transform: scale(0);
  animation: object-grow 500ms ease-out;
  -webkit-animation: object-grow 500ms ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes object-grow {
  0% {
    transform: scale(0);
  }

  25% {
    transform: scale(0.2);
  }

  50% {
    transform: scale(0.5);
  }

  75% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes object-grow {
  0% {
    transform: scale(0);
  }

  25% {
    transform: scale(0.2);
  }

  50% {
    transform: scale(0.5);
  }

  75% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

html,
body {
  height: 100%;
}

@media (min-width: 1200px) {
  html .container,
  body .container {
    max-width: 1200px !important;
  }
}

body {
  /* Client font should be added in front of this list and should not replace it */
  font-family: "Mark W1G", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Fira Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  letter-spacing: .025em;
  font-size: 18px;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #000;
  /* Disable auto-enlargement of small text in Safari */
  text-size-adjust: 100%;
}

body.noscroll {
  overflow: hidden;
}

body .footer-red-shape {
  display: none;
}

@media (min-width: 1600px) {
  body .footer-red-shape {
    content: url(/fe/dist/css/../fonts/footer-red-shape.svg);
    display: block;
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

a {
  color: #da2128;
}

a:hover {
  text-decoration: underline;
  color: #da2128 !important;
}

a:active {
  color: #9d9fa2;
}

a.sub-link {
  font-size: 12px;
}

a.sub-link:hover,
a.sub-link :active {
  text-decoration: none;
  color: #9d9fa2 !important;
}

a.read-now {
  text-decoration: underline;
  font-size: 12px;
  font-weight: 600;
}

a:hover {
  text-decoration: none;
  cursor: pointer;
  color: #da2128 !important;
}

a:active {
  color: #da2128;
}

a.learn-more {
  font-size: 12px;
  color: #da2128;
}

a.learn-more:hover {
  color: #9d9fa2 !important;
}

#wrapper {
  flex: 1 0 auto;
  position: relative;
}

.color-white {
  color: #fff !important;
}

.color-blue,
.EPiServerForms .Form__Title {
  color: #191a37 !important;
}

.color-blue-70 {
  color: #453d56 !important;
}

.color-blue-50 {
  color: #746a7f !important;
}

.color-blue-20 {
  color: #bab4c0 !important;
}

.color-red {
  color: #da2128 !important;
}

.color-red-70 {
  color: #e56045 !important;
}

.color-red-50 {
  color: #e98f79 !important;
}

.color-red-20 {
  color: #fccfbf !important;
}

.color-grey {
  color: #9d9fa2 !important;
}

.color-grey-70 {
  color: #c7c9ca !important;
}

.color-grey-lightest {
  color: #dcddde !important;
}

.color-grey-dark {
  color: #575757 !important;
}

.color-black {
  color: #000 !important;
}

.bg-red {
  background: #da2128;
}

.bg-red-70 {
  background: #e56045 !important;
}

.bg-red-50 {
  background: #e98f79 !important;
}

.bg-red-20 {
  background: #fccfbf !important;
}

.bg-blue {
  background: #191a37;
}

.bg-grey {
  background: #9d9fa2;
}

.bg-grey-70 {
  background: #c7c9ca;
}

.bg-grey-light {
  background: #dcddde !important;
}

.bg-white-dss {
  background: #fff;
}

.bg-black {
  background: #000;
}

.bg-img {
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
}

.bg-img-small {
  height: 100px;
}

.strikethrough {
  text-decoration: line-through;
}

.social-links {
  display: inline-block;
}

.social-links a {
  text-decoration: none;
  padding: .25rem;
  transition: .1s ease-in-out;
  color: #453d56;
}

.social-links a:hover {
  color: #191a37;
}

.header-3 {
  font-size: 24px;
  font-weight: 500;
}

.text-2,
.text-2-medium,
.text-2-bold {
  font-size: 18px;
  color: #000;
  line-height: 26px;
}

.text-2-medium {
  font-weight: 500;
}

.text-2-bold {
  font-weight: bold;
}

.text-sm {
  font-weight: normal;
  font-size: 14px;
  color: #000;
  letter-spacing: 1.4px;
  line-height: 24px;
}

.link-base,
.link-default-1,
.link-default-underline {
  font-weight: 600;
  font-size: 12px;
  color: #da2128;
  letter-spacing: 0.48px;
  line-height: 26px;
}

.link-base a,
.link-default-1 a,
.link-default-underline a {
  text-decoration: underline;
}

.link-default-1,
.link-default-underline {
  text-transform: uppercase;
}

.link-default-underline {
  text-decoration: underline;
  text-decoration-color: #da2128;
  letter-spacing: 1.2px;
}

.link-default-underline:hover {
  text-decoration: underline;
}

.imageblock img {
  max-width: 100%;
  height: auto;
}

.dropdown-menu {
  margin: 0;
  padding: 0;
  border: 1px solid #dee2e6;
  background: #fff;
  min-width: 100%;
}

.dropdown-menu .dropdown-item {
  padding: .5rem 1.5rem;
}

.dropdown-menu .dropdown-item a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-item:active a,
.dropdown-menu .dropdown-item.active a {
  color: #fff;
}

#content {
  position: relative;
  min-height: 100vh;
}

.container-right {
  margin-right: 0;
}

@media (min-width: 992px) {
  .container-right {
    margin-right: -25vw;
  }
}

.slider-margin-left {
  margin-left: 12vw;
}

.block-spacing {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.page-padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  .page-title {
    max-width: 700px;
  }
}

.page-gray-shape {
  display: none;
  background-image: url(/fe/dist/css/../fonts/page-gray-shape.svg);
  background-repeat: no-repeat;
  z-index: -1;
  position: absolute;
  top: -43px;
  right: 0;
  width: 1143px;
  height: 1751px;
}

@media (min-width: 992px) {
  .page-gray-shape {
    display: inline-block;
    margin-top: -43px;
  }
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

@supports not (aspect-ratio: 16/9) {
  .video-wrapper {
    padding-bottom: 56.25%;
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.tooltip-wrapper {
  z-index: 999;
  position: relative;
  display: inline-block;
}

.tooltip-wrapper .tooltip-text {
  display: none;
  position: absolute;
  background-color: #fff;
  border: solid 3px #dcddde;
  color: #191a37;
  border-radius: 3px;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.025em;
  text-transform: none;
  cursor: pointer;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: 200px;
  padding: 3px 10px;
  text-align: center;
}

.tooltip-wrapper .tooltip-text::before {
  content: "";
  position: absolute;
  border-style: solid;
  border-color: #dcddde transparent transparent transparent;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 2;
}

.anchorfix {
  scroll-margin-top: 220px;
}

@media (min-width: 992px) {
  .five-column {
    min-width: 190px;
    max-width: 190px;
  }
}

@media (min-width: 1200px) {
  .five-column {
    max-width: 240px;
  }
}

.btn-group-radio {
  flex-wrap: wrap;
}

.btn-group-radio label {
  padding: 2px 10px;
  margin-right: 15px;
  margin-bottom: 15px;
  background-color: #dcddde;
  color: #191a37;
  height: fit-content;
  font-size: 18px;
  font-weight: normal;
  text-transform: initial;
}

.btn-group-radio label .active {
  background-color: #191a37;
  color: white;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #dcddde;
}

.table-active {
  background-color: #dcddde;
}

.row.gy-30 > [class*='col-'],
.gy-30.flickity-slider > [class*='col-'] {
  margin-bottom: 30px;
}

.bb-1-blue-20 {
  border-bottom: 1px solid #bab4c0;
}

.btn,
.EPiServerForms .Form__MainBody button,
.elq-form .submit-button-style {
  display: inline-flex;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  user-select: none;
  border: none;
  padding: 13px 17px;
  height: 46px;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn:focus,
.EPiServerForms .Form__MainBody button:focus,
.elq-form .submit-button-style:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

.btn.hover-white:hover,
.EPiServerForms .Form__MainBody button.hover-white:hover,
.elq-form .hover-white.submit-button-style:hover {
  color: #fff;
}

.btn::after,
.EPiServerForms .Form__MainBody button::after,
.elq-form .submit-button-style::after {
  padding-left: 20px;
}

@media (min-width: 992px) {
  .btn,
  .EPiServerForms .Form__MainBody button,
  .elq-form .submit-button-style {
    padding: 14px 18px;
  }
}

.btn-white {
  background-color: #fff;
  color: #000;
}

.btn-white::after {
  content: url(/fe/dist/css/../fonts/icon-arrow-right-red.svg) !important;
}

.btn-white:hover {
  color: #da2128 !important;
}

.btn-grey {
  background-color: #c7c9ca;
  color: #000;
}

.btn-grey::after {
  content: url(/fe/dist/css/../fonts/icon-arrow-right-red.svg) !important;
}

.btn-grey:hover {
  color: #da2128 !important;
}

.btn-blue,
.EPiServerForms .Form__MainBody button,
.elq-form .submit-button-style {
  background-color: #191a37;
  color: #fff;
}

.btn-blue::after,
.EPiServerForms .Form__MainBody button::after,
.elq-form .submit-button-style::after {
  content: url(/fe/dist/css/../fonts/icon-arrow-right-white.svg) !important;
}

.btn-blue:hover,
.EPiServerForms .Form__MainBody button:hover,
.elq-form .submit-button-style:hover {
  color: #da2128 !important;
}

.btn-red {
  background-color: #da2128;
  color: #fff;
}

.btn-red a {
  color: #fff;
}

.btn-red a:hover {
  color: #000 !important;
}

.btn-red::after {
  content: url(/fe/dist/css/../fonts/icon-arrow-right-white.svg) !important;
}

.btn-red:hover {
  color: #000 !important;
}

.btn-red:hover::after {
  content: url(/fe/dist/css/../fonts/icon-arrow-right-black.svg) !important;
}

.btn-plus-red,
a.accordion-default.collapsed {
  border-radius: 54px;
  background-color: #da2128;
  color: #fff;
  min-height: 54px;
  min-width: 54px;
}

.btn-plus-red:hover,
a.accordion-default.collapsed:hover {
  color: #fff !important;
  background-color: #9d9fa2;
}

.btn-plus-red::before,
a.accordion-default.collapsed::before {
  content: url(/fe/dist/css/../fonts/icon-plus.svg);
}

.btn-plus-red span,
a.accordion-default.collapsed span {
  padding-left: 1em;
  padding-right: 1em;
  align-self: center;
}

.btn-minus-black,
a.accordion-default:not(.collapsed) {
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  height: 54px;
  width: 54px;
}

.btn-minus-black::before,
a.accordion-default:not(.collapsed)::before {
  content: url(/fe/dist/css/../fonts/icon-minus.svg);
}

.btn-minus-black:hover,
a.accordion-default:hover:not(.collapsed) {
  color: #fff !important;
  background-color: #9d9fa2;
}

.btn-red-minus-white-bg,
.services-overview-accordion .preview-panel .overview-expand:not(.collapsed) {
  min-height: 76px;
}

.btn-red-minus-white-bg::before,
.services-overview-accordion .preview-panel .overview-expand:not(.collapsed)::before {
  content: url(/fe/dist/css/../fonts/icon-accordion-alt-minus.svg);
}

.btn-plus-accordion-alt,
a.accordion-alt.collapsed,
.services-overview-accordion .preview-panel .overview-expand.collapsed {
  border-radius: 54px;
  background-color: #da2128;
  color: #fff;
  min-width: 54px;
  height: 40px;
}

.btn-plus-accordion-alt.blue-bg,
a.blue-bg.accordion-alt.collapsed,
.services-overview-accordion .preview-panel .blue-bg.overview-expand.collapsed {
  background-color: #191a37;
}

@media (max-width: 767.98px) {
  .btn-plus-accordion-alt,
  a.accordion-alt.collapsed,
  .services-overview-accordion .preview-panel .overview-expand.collapsed {
    height: 30px;
  }
}

.btn-plus-accordion-alt:hover,
a.accordion-alt.collapsed:hover,
.services-overview-accordion .preview-panel .overview-expand.collapsed:hover {
  color: #fff !important;
  background-color: #9d9fa2;
}

.btn-plus-accordion-alt::after,
a.accordion-alt.collapsed::after,
.services-overview-accordion .preview-panel .overview-expand.collapsed::after {
  content: url(/fe/dist/css/../fonts/icon-accordion-alt-plus.svg);
  align-self: center;
}

@media (max-width: 767.98px) {
  .btn-plus-accordion-alt::after,
  a.accordion-alt.collapsed::after,
  .services-overview-accordion .preview-panel .overview-expand.collapsed::after {
    margin-top: -5px;
    padding-left: 10px !important;
  }
}

.btn-plus-accordion-alt span,
a.accordion-alt.collapsed span,
.services-overview-accordion .preview-panel .overview-expand.collapsed span {
  padding-right: 1em;
  align-self: center;
}

@media (max-width: 767.98px) {
  .btn-plus-accordion-alt span,
  a.accordion-alt.collapsed span,
  .services-overview-accordion .preview-panel .overview-expand.collapsed span {
    padding-right: 0;
  }
}

.btn-minus-accordion-alt,
a.accordion-alt:not(.collapsed) {
  border-radius: 50%;
  background-color: #fff;
  min-height: 40px;
  min-width: 40px;
}

.btn-minus-accordion-alt::before,
a.accordion-alt:not(.collapsed)::before {
  content: url(/fe/dist/css/../fonts/icon-accordion-alt-minus.svg);
}

.arrow {
  padding: 8px 13px;
  font-size: 20px;
}

.arrow-right::before {
  content: url(/fe/dist/css/../fonts/icon-arrow-right-black.svg);
  top: 52%;
}

.arrow-right:hover::before {
  content: url(/fe/dist/css/../fonts/icon-arrow-right-white.svg);
}

.arrow-left::before {
  content: url(/fe/dist/css/../fonts/icon-arrow-left-black.svg);
  top: 52%;
}

.btn.no-arrow::after,
.EPiServerForms .Form__MainBody button.no-arrow::after,
.elq-form .no-arrow.submit-button-style::after {
  content: none !important;
}

.plus-icon::before {
  content: url(/fe/dist/css/../fonts/icon-plus.svg);
  top: 54%;
}

.minus-icon::before {
  content: url(/fe/dist/css/../fonts/icon-minus.svg);
  top: 44%;
}

.btn-xs {
  font-size: .85rem;
  padding: .3rem 1rem;
}

.btn-lg,
.btn-group-lg > .btn,
.EPiServerForms .Form__MainBody .btn-group-lg > button,
.elq-form .btn-group-lg > .submit-button-style {
  font-size: 1.2rem;
  padding: .4rem 2.2rem;
}

.btn-hamburger::before {
  content: url(/fe/dist/css/../fonts/hamburger-menu-white.svg);
}

.btn-red-x::before {
  content: url(/fe/dist/css/../fonts/red-x-mark.svg);
}

.btn-search-white::before {
  content: url(/fe/dist/css/../fonts/search-white.svg);
}

.btn-search-blue::before {
  content: url(/fe/dist/css/../fonts/search-blue.svg);
}

.btn-search-back::before {
  content: url(/fe/dist/css/../fonts/icon-arrow-left-gray.svg);
}

.btn-circle-x-gray::before {
  content: url(/fe/dist/css/../fonts/circle-x-gray.svg);
}

.btn-icon {
  border: none;
  background: transparent;
  cursor: pointer;
}

a.link-arrow {
  font-weight: 500;
}

a.link-arrow:after {
  content: '\F054';
  margin-left: .25rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: .65rem;
}

a.link-arrow:hover {
  text-decoration: none;
  cursor: pointer;
  color: #9d9fa2 !important;
}

a.link-arrow:hover:after {
  color: #9d9fa2;
}

.btn-grey-social {
  background-color: #9d9fa2 !important;
  color: #fff !important;
  padding: 3px 5px;
  font-size: 20px;
  height: 35px;
  width: 35px;
  align-items: center;
}

.filter-tab {
  background-color: #bab4c0;
  color: #191a37;
}

.filter-tab.active {
  color: #fff;
  background-color: #191a37;
}

a.accordion-default {
  padding: 14px;
}

a.accordion-default:not(.collapsed) span {
  display: none;
}

a.accordion-alt:not(.collapsed) span {
  display: none;
}

.facets .facet .facet-header {
  border-top: 1px solid #000;
  padding: .5rem;
  display: flex;
  align-items: center;
}

.facets .facet .facet-header .expand-button {
  margin-left: auto;
  border: none;
  border-radius: 50%;
  height: 21px;
  width: 21px;
  background: #000;
  color: #fff;
}

.facets .facet .facet-header .expand-button:hover {
  background-color: #9d9fa2;
  cursor: pointer;
}

.facets .facet .facet-header .expand-button:focus {
  outline: none !important;
}

.facets .facet .facet-header .expand-button::before {
  position: relative;
  top: -9px;
  background-color: transparent;
  color: #fff;
  content: "-";
}

.facets .facet .facet-header .expand-button.collapsed {
  background: #da2128;
}

.facets .facet .facet-header .expand-button.collapsed:hover {
  background-color: #9d9fa2;
}

.facets .facet .facet-header .expand-button.collapsed::before {
  content: "+";
}

.facets .facet .facet-options {
  border-top: 1px solid #000;
  padding: .5rem .5rem 1.5rem;
}

.facets .facet .facet-options .form-group {
  margin-bottom: 1px;
  font-size: 15px;
}

.facets .facet .facet-options input[type="checkbox"] {
  border: 1px solid #000;
  border-radius: 0;
  height: 13px;
  width: 13px;
}

.facets .facet .facet-options input[type="checkbox"]:checked ~ label {
  font-weight: 600;
}

.facets .facet .facet-options .toggle-show-more-button {
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
}

.page-footer {
  background-color: #191a37;
  font-size: 0.875rem;
  color: #fff;
  padding: 2.25rem 0.75rem 3.125rem;
  flex-shrink: 0;
  z-index: 50;
}

.page-footer a,
.page-footer a:link,
.page-footer a:visited,
.page-footer a:active,
.page-footer a:hover {
  color: #fff;
  text-decoration: none;
}

.page-footer .footer-logo {
  margin-bottom: 1.25rem;
}

.page-footer .footer-logo img {
  max-width: 10.25rem;
  width: 100%;
}

.page-footer .footer-notice-text {
  font-size: 13px;
  font-weight: 400;
}

.page-footer .footer-notice-text p,
.page-footer .footer-notice-text .EPiServerForms .Form__Description,
.EPiServerForms .page-footer .footer-notice-text .Form__Description {
  margin-bottom: .25rem;
}

.page-footer .footer-notice-text p:last-child,
.page-footer .footer-notice-text .EPiServerForms .Form__Description:last-child,
.EPiServerForms .page-footer .footer-notice-text .Form__Description:last-child {
  margin-bottom: 0;
}

.page-footer .footer-notice-text p a,
.page-footer .footer-notice-text .EPiServerForms .Form__Description a,
.EPiServerForms .page-footer .footer-notice-text .Form__Description a {
  color: #da2128;
}

.page-footer .social-links {
  display: inline-block;
  margin: 2.25rem 0 1rem;
}

.page-footer .social-links > a:any-link {
  font-size: 1rem;
  margin-left: 0.5625rem;
  text-decoration: none;
  transition: .2s ease-in-out;
  color: #fff;
  background: #9d9fa2;
  display: inline-block;
  width: 35px;
  text-align: center;
}

.page-footer .social-links > a:any-link:hover {
  color: #191a37;
}

.page-footer .form-newsletter {
  display: inline-block;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .page-footer {
    padding: 4.625rem 0 5.625rem;
  }

  .page-footer .footer-logo {
    margin-bottom: 4.375rem;
    max-width: 13.75rem;
  }

  .page-footer .footer-logo img {
    max-width: 13.125rem;
  }

  .page-footer .social-links {
    margin: 0 0 3rem;
  }

  .page-footer .social-links > a:any-link {
    font-size: 1.25rem;
    margin-left: 0.75rem;
  }
}

.footer-link-col {
  padding-top: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.footer-link-col > h4 {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}

.footer-link-col ul li {
  font-size: .875rem;
}

.footer-link-col p,
.footer-link-col .EPiServerForms .Form__Description,
.EPiServerForms .footer-link-col .Form__Description {
  font-size: .875rem;
}

.footer-link-col p:last-child,
.footer-link-col .EPiServerForms .Form__Description:last-child,
.EPiServerForms .footer-link-col .Form__Description:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .footer-link-col {
    padding-top: 0.875rem;
  }
}

/**
 * Form elements render using OS defaults,
 * so font-family inheritance must be specifically declared
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.form-wrapper {
  background: #fff;
  padding: 1.5rem 1.5rem 2rem;
}

@media (min-width: 768px) {
  .form-wrapper {
    padding: 2rem 2rem 3rem;
  }
}

.form-wrapper-contact {
  margin: -9rem auto 5rem;
}

label.required-asterisk::after {
  content: " *";
  font-size: .85rem;
}

.input-container-label-base,
.input-container label,
.EPiServerForms .Form__Element label,
.elq-form .elq-field-style label,
.input-container legend,
.EPiServerForms .Form__Element legend,
.elq-form .elq-field-style legend,
.elq-form .elq-label {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: .25rem;
  color: #191a37;
  font-size: 14px;
}

.input-container legend,
.EPiServerForms .Form__Element legend,
.elq-form .elq-field-style legend {
  margin-bottom: 1rem;
}

.input-container ::-webkit-input-placeholder,
.EPiServerForms .Form__Element ::-webkit-input-placeholder,
.elq-form .elq-field-style ::-webkit-input-placeholder {
  font-weight: 600;
  text-transform: uppercase;
  color: #9d9fa2;
  font-size: 14px;
}

.input-container :-ms-input-placeholder,
.EPiServerForms .Form__Element :-ms-input-placeholder,
.elq-form .elq-field-style :-ms-input-placeholder {
  font-weight: 600;
  text-transform: uppercase;
  color: #9d9fa2;
  font-size: 14px;
}

.input-container ::placeholder,
.EPiServerForms .Form__Element ::placeholder,
.elq-form .elq-field-style ::placeholder {
  font-weight: 600;
  text-transform: uppercase;
  color: #9d9fa2;
  font-size: 14px;
}

.input-container textarea,
.EPiServerForms .Form__Element textarea,
.elq-form .elq-field-style textarea {
  overflow: auto;
  min-height: 300px;
}

.input-container input:not([type="submit"]),
.EPiServerForms .Form__Element input:not([type="submit"]),
.elq-form .elq-field-style input:not([type="submit"]),
.input-container select,
.EPiServerForms .Form__Element select,
.elq-form .elq-field-style select,
.input-container textarea,
.EPiServerForms .Form__Element textarea,
.elq-form .elq-field-style textarea {
  font-weight: 400;
  width: 100%;
  padding: .65rem;
  margin-bottom: 1rem;
  background-color: #fff;
  border: 1px solid #9d9fa2;
  outline: none;
  color: #191a37;
  transition: .1s ease-in;
  height: 52px;
  display: block;
}

.input-container input:not([type="submit"]):disabled,
.EPiServerForms .Form__Element input:not([type="submit"]):disabled,
.elq-form .elq-field-style input:not([type="submit"]):disabled,
.input-container select:disabled,
.EPiServerForms .Form__Element select:disabled,
.elq-form .elq-field-style select:disabled,
.input-container textarea:disabled,
.EPiServerForms .Form__Element textarea:disabled,
.elq-form .elq-field-style textarea:disabled {
  background-color: #dcddde;
}

.input-container input:not([type="submit"]):focus,
.EPiServerForms .Form__Element input:not([type="submit"]):focus,
.elq-form .elq-field-style input:not([type="submit"]):focus,
.input-container select:focus,
.EPiServerForms .Form__Element select:focus,
.elq-form .elq-field-style select:focus,
.input-container textarea:focus,
.EPiServerForms .Form__Element textarea:focus,
.elq-form .elq-field-style textarea:focus {
  border: 1px solid #9d9fa2;
}

.input-container input:not([type="submit"]).input-inline,
.EPiServerForms .Form__Element input:not([type="submit"]).input-inline,
.elq-form .elq-field-style input:not([type="submit"]).input-inline,
.input-container select.input-inline,
.EPiServerForms .Form__Element select.input-inline,
.elq-form .elq-field-style select.input-inline,
.input-container textarea.input-inline,
.EPiServerForms .Form__Element textarea.input-inline,
.elq-form .elq-field-style textarea.input-inline {
  width: auto;
  margin: 4px;
}

.form-control :invalid {
  box-shadow: none;
}

.nav.nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  scrollbar-width: none;
}

.nav.nav-tabs::-webkit-scrollbar {
  display: none;
}

.nav.nav-tabs .nav-item {
  flex: 1;
  text-align: center;
  margin-right: 1px;
  margin-bottom: 0;
}

.nav.nav-tabs .nav-item:last-child {
  margin-right: 0;
}

.nav.nav-tabs .nav-item .nav-link {
  background: #bab4c0;
  border: none;
  border-bottom: 1px solid transparent;
  font-weight: 600;
  transition: .1s ease-in-out;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  padding: .5rem;
}

@media (min-width: 768px) {
  .nav.nav-tabs .nav-item .nav-link {
    font-size: 1rem;
  }
}

.nav.nav-tabs .nav-item .nav-link.active {
  background: #191a37;
  color: white;
}

.registration-multi-message {
  padding-top: 80px;
  height: 180px;
  background: #fff;
  width: 100%;
  font-weight: bold;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.EPiServerForms {
  margin-top: 1.5rem;
  overflow: auto;
}

.EPiServerForms .Form__Element {
  margin-bottom: 1rem !important;
  padding-left: 0 !important;
  display: inline-block;
  float: left;
}

.EPiServerForms .Form__Element .FormSelection {
  max-height: 90px;
}

.EPiServerForms .Form__Element .FormChoice input {
  margin-right: 5px;
  display: inline;
  width: auto;
  height: auto !important;
}

.EPiServerForms .Form__Element .FormChoice label {
  width: 33%;
  text-transform: capitalize;
  padding-left: 15px;
  height: auto !important;
}

.EPiServerForms .Form__Element .FormChoice label:only-child {
  width: 100%;
}

@media (max-width: 992px) {
  .EPiServerForms .Form__Element .FormChoice label {
    width: 100%;
  }
}

.EPiServerForms .Form__Element .Form__Element__ValidationError {
  font-size: 80%;
  color: #da2128 !important;
  position: relative;
  top: calc(-0.75rem);
  padding-left: 15px;
}

.EPiServerForms .Form__Element .ValidationRequired.FormTextbox .Form__Element__ValidationError {
  position: relative;
  top: calc(3.25rem + 2px);
}

.EPiServerForms .Form__Element .ValidationRequired.FormTextbox .Form__Element__ValidationError:not([style*='display:none']) ~ .FormTextbox__Input {
  margin-top: -22px;
}

.EPiServerForms .Form__Element .ValidationRequired.FormTextbox .Form__Element__ValidationError:not([style*='display:none'])::after {
  content: url(/fe/dist/css/../fonts/circle-exclamation-solid.svg);
  transform: translate(0, -50%);
  position: absolute;
  width: 32px;
  height: 32px;
  right: 16px;
  bottom: 19px;
}

.EPiServerForms .Form__Description {
  max-width: 690px;
}

.EPiServerForms .hide {
  display: none !important;
}

.EPiServerForms .Form__Status .Form__Success__Message {
  padding: .5rem;
}

.EPiServerForms .Form__Status .Form__Success__Message p,
.EPiServerForms .Form__Status .Form__Success__Message .Form__Description {
  margin: 0px;
}

.EPiServerForms .Form__Status .Form__Warning__Message {
  background: transparent;
  color: #e56045 !important;
  font-size: .5rem;
  font-weight: bold;
}

.EPiServerForms .Form__MainBody button {
  padding: 13px 17px !important;
  display: inline-flex !important;
}

.form-control {
  border: 1px solid #f5f5f5;
  background: #fff;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
  border-color: #f5f5f5;
}

.form-control::placeholder {
  color: #383d42;
}

select:focus,
input:focus {
  outline: 0;
}

.easy-autocomplete-container .eac-item {
  cursor: pointer;
}

.easy-autocomplete-container .eac-item:hover {
  background: #ebebeb;
}

.easy-autocomplete-container .eac-icon {
  height: 20px;
}

.expand-field-wrapper {
  margin-bottom: 0.5rem;
}

.expand-field-wrapper .form-control {
  margin-bottom: 0.25rem !important;
}

.expand-field-wrapper .expand-field a {
  display: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-decoration: underline;
}

.expand-field-wrapper .expand-field a:before {
  content: "- ";
}

.expand-field-wrapper .expand-field a.collapsed {
  display: inline-block;
}

.expand-field-wrapper .expand-field a.collapsed:before {
  content: "+ ";
}

.password-container {
  position: relative;
}

.password-container .visibility-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

.password-container.has-error .visibility-toggle {
  top: 65%;
}

.terms-conditions {
  color: #da2128 !important;
}

.elq-form .container-fluid {
  padding: 0 !important;
}

.elq-form .elq-required {
  color: #da2128 !important;
  display: inline;
  float: none;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.elq-form #elq-FormLastRow {
  position: absolute;
  left: -80%;
  top: -80%;
}

.elq-form .elq-label-top {
  padding-bottom: 3px;
}

.elq-form .elq-item-label {
  max-width: 100%;
  font-weight: 400;
  box-sizing: border-box;
  text-transform: none !important;
  height: auto !important;
  margin-bottom: 0 !important;
}

.elq-form .list-order {
  display: flex;
  align-items: start;
  margin-left: 0;
  margin-bottom: .25rem;
  padding-left: 15px;
}

.elq-form .list-order input[type=checkbox] {
  position: relative;
  top: .25rem;
}

.elq-form .one-column {
  width: 100%;
  clear: both;
}

@media (min-width: 992px) {
  .elq-form .two-column {
    display: inline-flex;
    width: 38%;
  }

  .elq-form .three-column {
    display: inline-flex;
    width: 30%;
  }
}

.elq-form .elq-item-textarea {
  resize: vertical;
  min-height: 300px;
  box-sizing: border-box;
}

.elq-form .elq-item-input,
.elq-form .elq-item-select,
.elq-form .elq-item-textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font: inherit;
  margin: 0 !important;
}

.elq-form .elq-item-select {
  text-transform: none;
}

.elq-form .row.single-checkbox-row,
.elq-form .single-checkbox-row.flickity-slider {
  margin-left: 15px;
}

.elq-form .row.single-checkbox-row input,
.elq-form .single-checkbox-row.flickity-slider input {
  margin-right: 5px;
  display: inline;
  width: auto;
  height: auto !important;
}

.elq-form .row.single-checkbox-row label,
.elq-form .single-checkbox-row.flickity-slider label {
  width: 33%;
  text-transform: capitalize;
  height: auto !important;
}

.elq-form .row.single-checkbox-row label:only-child,
.elq-form .single-checkbox-row.flickity-slider label:only-child {
  width: 100%;
}

@media (max-width: 992px) {
  .elq-form .row.single-checkbox-row label,
  .elq-form .single-checkbox-row.flickity-slider label {
    width: 100%;
  }
}

.elq-form .elq-field-style {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 10px;
  margin-bottom: 1rem !important;
}

.elq-form .elq-field-style input.disabled {
  background-color: #dcddde;
}

.elq-form .elq-field-style .easy-autocomplete input {
  border-radius: 0;
}

.elq-form .loader {
  vertical-align: middle;
  display: inline-block;
  margin-left: 10px;
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid #3498db;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.elq-form input[type=checkbox],
.elq-form input[type=radio] {
  display: inline;
  margin-right: 5px;
  margin-bottom: 0 !important;
  width: auto !important;
  height: auto !important;
}

.elq-form .list-order input[type=radio] {
  margin-left: 1px;
}

.elq-form *,
.elq-form :after,
.elq-form :before {
  box-sizing: border-box;
}

.elq-form button,
.elq-form input,
.elq-form select,
.elq-form textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.elq-form figure {
  margin: 0;
}

.elq-form img {
  vertical-align: middle;
}

.elq-form .img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.elq-form .img-rounded {
  border-radius: 6px;
}

.elq-form .img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all .2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.elq-form .img-circle {
  border-radius: 50%;
}

.elq-form hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

.elq-form .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.elq-form .sr-only-focusable:active,
.elq-form .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.elq-form .LV_invalid_field,
.elq-form input.LV_invalid_field:active,
.elq-form input.LV_invalid_field:hover,
.elq-form textarea.LV_invalid_field:active,
.elq-form textarea.LV_invalid_field:hover {
  outline: 1px solid #c00;
}

.elq-form .LV_validation_message {
  margin: 0 0 0 5px;
}

.elq-form .LV_validation_message::after {
  content: url(/fe/dist/css/../fonts/circle-exclamation-solid.svg);
  transform: translate(-16px, -19px);
  position: absolute;
  width: 32px;
  height: 32px;
  right: 16px;
  bottom: 19px;
}

.elq-form .LV_valid {
  display: none;
}

.elq-form .LV_invalid {
  color: #da2128;
  font-size: 10px;
}

.elq-form .submit-button-style {
  padding: 13px 17px !important;
  display: inline-flex !important;
}

.elq-form .checkbox-aligned {
  margin-left: 5px;
  display: inline;
}

.elq-form .form-element-layout {
  padding: 5px 0px;
}

.elq-form .form-element-instruction {
  font-size: 10px;
}

.elq-form .form-element-form-text {
  margin: 0;
}

.elq-form .form-field-visible-xs-block {
  display: none;
}

.elq-form .elq-form-design-field .list-order input[type=radio] {
  margin-left: 1px;
}

@media (max-width: 767px) {
  .elq-form .form-field-visible-xs-block {
    display: block;
  }
}

.elq-form .form-field-hidden-xs {
  display: block;
}

@media (max-width: 767px) {
  .elq-form .form-field-hidden-xs {
    display: none;
  }
}

.elq-form .custom-overlay {
  margin-left: 2px;
  background: #fff;
  box-shadow: 0 0 4px 0 #777;
  border-radius: 2px;
  max-width: 256px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

.elq-form .container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.elq-form .container:after,
.elq-form .container:before {
  display: table;
  content: " ";
}

.elq-form .container:after {
  clear: both;
}

@media (min-width: 768px) {
  .elq-form .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .elq-form .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .elq-form .container {
    width: 1170px;
  }
}

.elq-form .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.elq-form .container-fluid:after,
.elq-form .container-fluid:before {
  display: table;
  content: " ";
}

.elq-form .container-fluid:after {
  clear: both;
}

.elq-form .row,
.elq-form .flickity-slider {
  margin-right: -15px;
  margin-left: -15px;
}

.elq-form .row:after,
.elq-form .flickity-slider:after,
.elq-form .row:before,
.elq-form .flickity-slider:before {
  display: table;
  content: " ";
}

.elq-form .row:after,
.elq-form .flickity-slider:after {
  clear: both;
}

.elq-form .row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.elq-form .row-no-gutters [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.elq-form .col-lg-1,
.elq-form .col-lg-2,
.elq-form .col-lg-3,
.elq-form .col-lg-4,
.elq-form .col-lg-5,
.elq-form .col-lg-6,
.elq-form .EPiServerForms .Form__Element .FormTextbox,
.EPiServerForms .Form__Element .elq-form .FormTextbox,
.elq-form .EPiServerForms .Form__Element .FormSelection,
.EPiServerForms .Form__Element .elq-form .FormSelection,
.elq-form .col-lg-7,
.elq-form .col-lg-8,
.elq-form .col-lg-9,
.elq-form .col-lg-10,
.elq-form .col-lg-11,
.elq-form .col-lg-12,
.elq-form .col-md-1,
.elq-form .col-md-2,
.elq-form .col-md-3,
.elq-form .col-md-4,
.elq-form .col-md-5,
.elq-form .col-md-6,
.elq-form .col-md-7,
.elq-form .col-md-8,
.elq-form .col-md-9,
.elq-form .col-md-10,
.elq-form .col-md-11,
.elq-form .col-md-12,
.elq-form .col-sm-1,
.elq-form .col-sm-2,
.elq-form .col-sm-3,
.elq-form .col-sm-4,
.elq-form .col-sm-5,
.elq-form .col-sm-6,
.elq-form .col-sm-7,
.elq-form .col-sm-8,
.elq-form .col-sm-9,
.elq-form .col-sm-10,
.elq-form .col-sm-11,
.elq-form .col-sm-12,
.elq-form .col-xs-1,
.elq-form .col-xs-2,
.elq-form .col-xs-3,
.elq-form .col-xs-4,
.elq-form .col-xs-5,
.elq-form .col-xs-6,
.elq-form .col-xs-7,
.elq-form .col-xs-8,
.elq-form .col-xs-9,
.elq-form .col-xs-10,
.elq-form .col-xs-11,
.elq-form .col-xs-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.elq-form .col-xs-1,
.elq-form .col-xs-2,
.elq-form .col-xs-3,
.elq-form .col-xs-4,
.elq-form .col-xs-5,
.elq-form .col-xs-6,
.elq-form .col-xs-7,
.elq-form .col-xs-8,
.elq-form .col-xs-9,
.elq-form .col-xs-10,
.elq-form .col-xs-11,
.elq-form .col-xs-12 {
  float: left;
}

.elq-form .col-xs-1 {
  width: 8.33333%;
}

.elq-form .col-xs-2 {
  width: 16.66667%;
}

.elq-form .col-xs-3 {
  width: 25%;
}

.elq-form .col-xs-4 {
  width: 33.33333%;
}

.elq-form .col-xs-5 {
  width: 41.66667%;
}

.elq-form .col-xs-6 {
  width: 50%;
}

.elq-form .col-xs-7 {
  width: 58.33333%;
}

.elq-form .col-xs-8 {
  width: 66.66667%;
}

.elq-form .col-xs-9 {
  width: 75%;
}

.elq-form .col-xs-10 {
  width: 83.33333%;
}

.elq-form .col-xs-11 {
  width: 91.66667%;
}

.elq-form .col-xs-12 {
  width: 100%;
}

.elq-form .col-xs-pull-0 {
  right: auto;
}

.elq-form .col-xs-pull-1 {
  right: 8.33333%;
}

.elq-form .col-xs-pull-2 {
  right: 16.66667%;
}

.elq-form .col-xs-pull-3 {
  right: 25%;
}

.elq-form .col-xs-pull-4 {
  right: 33.33333%;
}

.elq-form .col-xs-pull-5 {
  right: 41.66667%;
}

.elq-form .col-xs-pull-6 {
  right: 50%;
}

.elq-form .col-xs-pull-7 {
  right: 58.33333%;
}

.elq-form .col-xs-pull-8 {
  right: 66.66667%;
}

.elq-form .col-xs-pull-9 {
  right: 75%;
}

.elq-form .col-xs-pull-10 {
  right: 83.33333%;
}

.elq-form .col-xs-pull-11 {
  right: 91.66667%;
}

.elq-form .col-xs-pull-12 {
  right: 100%;
}

.elq-form .col-xs-push-0 {
  left: auto;
}

.elq-form .col-xs-push-1 {
  left: 8.33333%;
}

.elq-form .col-xs-push-2 {
  left: 16.66667%;
}

.elq-form .col-xs-push-3 {
  left: 25%;
}

.elq-form .col-xs-push-4 {
  left: 33.33333%;
}

.elq-form .col-xs-push-5 {
  left: 41.66667%;
}

.elq-form .col-xs-push-6 {
  left: 50%;
}

.elq-form .col-xs-push-7 {
  left: 58.33333%;
}

.elq-form .col-xs-push-8 {
  left: 66.66667%;
}

.elq-form .col-xs-push-9 {
  left: 75%;
}

.elq-form .col-xs-push-10 {
  left: 83.33333%;
}

.elq-form .col-xs-push-11 {
  left: 91.66667%;
}

.elq-form .col-xs-push-12 {
  left: 100%;
}

.elq-form .col-xs-offset-0 {
  margin-left: 0;
}

.elq-form .col-xs-offset-1 {
  margin-left: 8.33333%;
}

.elq-form .col-xs-offset-2 {
  margin-left: 16.66667%;
}

.elq-form .col-xs-offset-3 {
  margin-left: 25%;
}

.elq-form .col-xs-offset-4 {
  margin-left: 33.33333%;
}

.elq-form .col-xs-offset-5 {
  margin-left: 41.66667%;
}

.elq-form .col-xs-offset-6 {
  margin-left: 50%;
}

.elq-form .col-xs-offset-7 {
  margin-left: 58.33333%;
}

.elq-form .col-xs-offset-8 {
  margin-left: 66.66667%;
}

.elq-form .col-xs-offset-9 {
  margin-left: 75%;
}

.elq-form .col-xs-offset-10 {
  margin-left: 83.33333%;
}

.elq-form .col-xs-offset-11 {
  margin-left: 91.66667%;
}

.elq-form .col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .elq-form .col-sm-1,
  .elq-form .col-sm-2,
  .elq-form .col-sm-3,
  .elq-form .col-sm-4,
  .elq-form .col-sm-5,
  .elq-form .col-sm-6,
  .elq-form .col-sm-7,
  .elq-form .col-sm-8,
  .elq-form .col-sm-9,
  .elq-form .col-sm-10,
  .elq-form .col-sm-11,
  .elq-form .col-sm-12 {
    float: left;
  }

  .elq-form .col-sm-1 {
    width: 8.33333%;
  }

  .elq-form .col-sm-2 {
    width: 16.66667%;
  }

  .elq-form .col-sm-3 {
    width: 25%;
  }

  .elq-form .col-sm-4 {
    width: 33.33333%;
  }

  .elq-form .col-sm-5 {
    width: 41.66667%;
  }

  .elq-form .col-sm-6 {
    width: 50%;
  }

  .elq-form .col-sm-7 {
    width: 58.33333%;
  }

  .elq-form .col-sm-8 {
    width: 66.66667%;
  }

  .elq-form .col-sm-9 {
    width: 75%;
  }

  .elq-form .col-sm-10 {
    width: 83.33333%;
  }

  .elq-form .col-sm-11 {
    width: 91.66667%;
  }

  .elq-form .col-sm-12 {
    width: 100%;
  }

  .elq-form .col-sm-pull-0 {
    right: auto;
  }

  .elq-form .col-sm-pull-1 {
    right: 8.33333%;
  }

  .elq-form .col-sm-pull-2 {
    right: 16.66667%;
  }

  .elq-form .col-sm-pull-3 {
    right: 25%;
  }

  .elq-form .col-sm-pull-4 {
    right: 33.33333%;
  }

  .elq-form .col-sm-pull-5 {
    right: 41.66667%;
  }

  .elq-form .col-sm-pull-6 {
    right: 50%;
  }

  .elq-form .col-sm-pull-7 {
    right: 58.33333%;
  }

  .elq-form .col-sm-pull-8 {
    right: 66.66667%;
  }

  .elq-form .col-sm-pull-9 {
    right: 75%;
  }

  .elq-form .col-sm-pull-10 {
    right: 83.33333%;
  }

  .elq-form .col-sm-pull-11 {
    right: 91.66667%;
  }

  .elq-form .col-sm-pull-12 {
    right: 100%;
  }

  .elq-form .col-sm-push-0 {
    left: auto;
  }

  .elq-form .col-sm-push-1 {
    left: 8.33333%;
  }

  .elq-form .col-sm-push-2 {
    left: 16.66667%;
  }

  .elq-form .col-sm-push-3 {
    left: 25%;
  }

  .elq-form .col-sm-push-4 {
    left: 33.33333%;
  }

  .elq-form .col-sm-push-5 {
    left: 41.66667%;
  }

  .elq-form .col-sm-push-6 {
    left: 50%;
  }

  .elq-form .col-sm-push-7 {
    left: 58.33333%;
  }

  .elq-form .col-sm-push-8 {
    left: 66.66667%;
  }

  .elq-form .col-sm-push-9 {
    left: 75%;
  }

  .elq-form .col-sm-push-10 {
    left: 83.33333%;
  }

  .elq-form .col-sm-push-11 {
    left: 91.66667%;
  }

  .elq-form .col-sm-push-12 {
    left: 100%;
  }

  .elq-form .col-sm-offset-0 {
    margin-left: 0;
  }

  .elq-form .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  .elq-form .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  .elq-form .col-sm-offset-3 {
    margin-left: 25%;
  }

  .elq-form .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  .elq-form .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  .elq-form .col-sm-offset-6 {
    margin-left: 50%;
  }

  .elq-form .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  .elq-form .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  .elq-form .col-sm-offset-9 {
    margin-left: 75%;
  }

  .elq-form .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  .elq-form .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  .elq-form .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {
  .elq-form .col-md-1,
  .elq-form .col-md-2,
  .elq-form .col-md-3,
  .elq-form .col-md-4,
  .elq-form .col-md-5,
  .elq-form .col-md-6,
  .elq-form .col-md-7,
  .elq-form .col-md-8,
  .elq-form .col-md-9,
  .elq-form .col-md-10,
  .elq-form .col-md-11,
  .elq-form .col-md-12 {
    float: left;
  }

  .elq-form .col-md-1 {
    width: 8.33333%;
  }

  .elq-form .col-md-2 {
    width: 16.66667%;
  }

  .elq-form .col-md-3 {
    width: 25%;
  }

  .elq-form .col-md-4 {
    width: 33.33333%;
  }

  .elq-form .col-md-5 {
    width: 41.66667%;
  }

  .elq-form .col-md-6 {
    width: 50%;
  }

  .elq-form .col-md-7 {
    width: 58.33333%;
  }

  .elq-form .col-md-8 {
    width: 66.66667%;
  }

  .elq-form .col-md-9 {
    width: 75%;
  }

  .elq-form .col-md-10 {
    width: 83.33333%;
  }

  .elq-form .col-md-11 {
    width: 91.66667%;
  }

  .elq-form .col-md-12 {
    width: 100%;
  }

  .elq-form .col-md-pull-0 {
    right: auto;
  }

  .elq-form .col-md-pull-1 {
    right: 8.33333%;
  }

  .elq-form .col-md-pull-2 {
    right: 16.66667%;
  }

  .elq-form .col-md-pull-3 {
    right: 25%;
  }

  .elq-form .col-md-pull-4 {
    right: 33.33333%;
  }

  .elq-form .col-md-pull-5 {
    right: 41.66667%;
  }

  .elq-form .col-md-pull-6 {
    right: 50%;
  }

  .elq-form .col-md-pull-7 {
    right: 58.33333%;
  }

  .elq-form .col-md-pull-8 {
    right: 66.66667%;
  }

  .elq-form .col-md-pull-9 {
    right: 75%;
  }

  .elq-form .col-md-pull-10 {
    right: 83.33333%;
  }

  .elq-form .col-md-pull-11 {
    right: 91.66667%;
  }

  .elq-form .col-md-pull-12 {
    right: 100%;
  }

  .elq-form .col-md-push-0 {
    left: auto;
  }

  .elq-form .col-md-push-1 {
    left: 8.33333%;
  }

  .elq-form .col-md-push-2 {
    left: 16.66667%;
  }

  .elq-form .col-md-push-3 {
    left: 25%;
  }

  .elq-form .col-md-push-4 {
    left: 33.33333%;
  }

  .elq-form .col-md-push-5 {
    left: 41.66667%;
  }

  .elq-form .col-md-push-6 {
    left: 50%;
  }

  .elq-form .col-md-push-7 {
    left: 58.33333%;
  }

  .elq-form .col-md-push-8 {
    left: 66.66667%;
  }

  .elq-form .col-md-push-9 {
    left: 75%;
  }

  .elq-form .col-md-push-10 {
    left: 83.33333%;
  }

  .elq-form .col-md-push-11 {
    left: 91.66667%;
  }

  .elq-form .col-md-push-12 {
    left: 100%;
  }

  .elq-form .col-md-offset-0 {
    margin-left: 0;
  }

  .elq-form .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  .elq-form .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  .elq-form .col-md-offset-3 {
    margin-left: 25%;
  }

  .elq-form .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  .elq-form .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  .elq-form .col-md-offset-6 {
    margin-left: 50%;
  }

  .elq-form .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  .elq-form .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  .elq-form .col-md-offset-9 {
    margin-left: 75%;
  }

  .elq-form .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  .elq-form .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  .elq-form .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1200px) {
  .elq-form .col-lg-1,
  .elq-form .col-lg-2,
  .elq-form .col-lg-3,
  .elq-form .col-lg-4,
  .elq-form .col-lg-5,
  .elq-form .col-lg-6,
  .elq-form .EPiServerForms .Form__Element .FormTextbox,
  .EPiServerForms .Form__Element .elq-form .FormTextbox,
  .elq-form .EPiServerForms .Form__Element .FormSelection,
  .EPiServerForms .Form__Element .elq-form .FormSelection,
  .elq-form .col-lg-7,
  .elq-form .col-lg-8,
  .elq-form .col-lg-9,
  .elq-form .col-lg-10,
  .elq-form .col-lg-11,
  .elq-form .col-lg-12 {
    float: left;
  }

  .elq-form .col-lg-1 {
    width: 8.33333%;
  }

  .elq-form .col-lg-2 {
    width: 16.66667%;
  }

  .elq-form .col-lg-3 {
    width: 25%;
  }

  .elq-form .col-lg-4 {
    width: 33.33333%;
  }

  .elq-form .col-lg-5 {
    width: 41.66667%;
  }

  .elq-form .col-lg-6,
  .elq-form .EPiServerForms .Form__Element .FormTextbox,
  .EPiServerForms .Form__Element .elq-form .FormTextbox,
  .elq-form .EPiServerForms .Form__Element .FormSelection,
  .EPiServerForms .Form__Element .elq-form .FormSelection {
    width: 50%;
  }

  .elq-form .col-lg-7 {
    width: 58.33333%;
  }

  .elq-form .col-lg-8 {
    width: 66.66667%;
  }

  .elq-form .col-lg-9 {
    width: 75%;
  }

  .elq-form .col-lg-10 {
    width: 83.33333%;
  }

  .elq-form .col-lg-11 {
    width: 91.66667%;
  }

  .elq-form .col-lg-12 {
    width: 100%;
  }

  .elq-form .col-lg-pull-0 {
    right: auto;
  }

  .elq-form .col-lg-pull-1 {
    right: 8.33333%;
  }

  .elq-form .col-lg-pull-2 {
    right: 16.66667%;
  }

  .elq-form .col-lg-pull-3 {
    right: 25%;
  }

  .elq-form .col-lg-pull-4 {
    right: 33.33333%;
  }

  .elq-form .col-lg-pull-5 {
    right: 41.66667%;
  }

  .elq-form .col-lg-pull-6 {
    right: 50%;
  }

  .elq-form .col-lg-pull-7 {
    right: 58.33333%;
  }

  .elq-form .col-lg-pull-8 {
    right: 66.66667%;
  }

  .elq-form .col-lg-pull-9 {
    right: 75%;
  }

  .elq-form .col-lg-pull-10 {
    right: 83.33333%;
  }

  .elq-form .col-lg-pull-11 {
    right: 91.66667%;
  }

  .elq-form .col-lg-pull-12 {
    right: 100%;
  }

  .elq-form .col-lg-push-0 {
    left: auto;
  }

  .elq-form .col-lg-push-1 {
    left: 8.33333%;
  }

  .elq-form .col-lg-push-2 {
    left: 16.66667%;
  }

  .elq-form .col-lg-push-3 {
    left: 25%;
  }

  .elq-form .col-lg-push-4 {
    left: 33.33333%;
  }

  .elq-form .col-lg-push-5 {
    left: 41.66667%;
  }

  .elq-form .col-lg-push-6 {
    left: 50%;
  }

  .elq-form .col-lg-push-7 {
    left: 58.33333%;
  }

  .elq-form .col-lg-push-8 {
    left: 66.66667%;
  }

  .elq-form .col-lg-push-9 {
    left: 75%;
  }

  .elq-form .col-lg-push-10 {
    left: 83.33333%;
  }

  .elq-form .col-lg-push-11 {
    left: 91.66667%;
  }

  .elq-form .col-lg-push-12 {
    left: 100%;
  }

  .elq-form .col-lg-offset-0 {
    margin-left: 0;
  }

  .elq-form .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  .elq-form .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  .elq-form .col-lg-offset-3 {
    margin-left: 25%;
  }

  .elq-form .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  .elq-form .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  .elq-form .col-lg-offset-6 {
    margin-left: 50%;
  }

  .elq-form .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  .elq-form .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  .elq-form .col-lg-offset-9 {
    margin-left: 75%;
  }

  .elq-form .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  .elq-form .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  .elq-form .col-lg-offset-12 {
    margin-left: 100%;
  }
}

.elq-form .row,
.elq-form .flickity-slider {
  display: inherit;
}

#header {
  background-color: transparent;
}

#header .navbar-brand > img {
  height: 4rem;
}

#header .navbar {
  padding: 0;
}

#header .navbar-toggler {
  padding: 0;
  border: none;
}

#header .navbar-toggler:focus {
  outline: none;
}

#header .navbar-collapse {
  transition: height .1s ease-in-out;
}

#header .navbar-collapse.show {
  height: 100vh;
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#header .commerce-nav {
  background-color: #dcddde;
  height: 40px;
}

#header .commerce-nav.mobile-nav {
  padding: 0 15px;
}

#header .commerce-nav.mobile-nav .nav-item:active {
  background: #dcddde;
}

#header .commerce-nav.mobile-nav .nav-item a:hover {
  color: #191a37 !important;
}

#header .commerce-nav .shop-dropdown:hover .nav-link.dropdown-toggle,
#header .commerce-nav .shop-dropdown.show .nav-link.dropdown-toggle {
  padding-bottom: 0;
  border-bottom: solid 1px #191a37;
}

#header .commerce-nav li.nav-item .nav-link {
  color: #191a37;
}

#header .commerce-nav li.nav-item .nav-link.dropdown-toggle::after {
  display: inline;
  content: url(/fe/dist/css/../fonts/caret-down-black.svg);
  border: none;
  margin: 0;
  vertical-align: top;
}

#header .commerce-nav li.nav-item .nav-link#commerceDropdown {
  margin-left: 0;
}

@media (min-width: 992px) {
  #header .commerce-nav li.nav-item .nav-link {
    margin-left: 30px;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  #header .commerce-nav li.nav-item.dropdown:hover .dropdown-menu {
    display: flex;
    margin-top: 0;
  }

  #header .commerce-nav li.nav-item.dropdown.account-dropdown:hover .nav-link {
    padding-bottom: 0;
    border-bottom: solid 1px #191a37;
    padding-left: 0;
    margin-left: 30px;
  }

  #header .commerce-nav li.nav-item.dropdown.account-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

#header .commerce-nav .dropdown-heading {
  color: #191a37 !important;
  padding-bottom: 10px;
  margin-right: 40px;
  border-bottom: 1px solid #9d9fa2;
  width: 318px;
  padding-left: 0;
}

#header .commerce-nav .account-dropdown {
  height: 40px;
}

#header .commerce-nav .account-dropdown .dropdown.show .nav-link.dropdown-toggle {
  padding-bottom: 0;
  border-bottom: solid 1px #191a37;
  padding-left: 0;
  margin-left: 15px;
  height: 37px;
}

#header .commerce-nav .account-menu-dropdown {
  border: none;
}

#header .commerce-nav .account-menu-dropdown .dropdown {
  height: 40px;
}

#header .commerce-nav .account-menu-dropdown .dropdown .nav-link.dropdown-toggle {
  padding-bottom: 0;
}

#header .commerce-nav .account-menu-dropdown .dropdown .nav-link.dropdown-toggle .border-wrap {
  padding-bottom: 0.5rem;
}

#header .commerce-nav .account-menu-dropdown .logout-link {
  margin-top: 10px;
  padding-top: 20px;
  border-top: solid 2px #9d9fa2;
}

#header .commerce-nav .account-menu-dropdown.show {
  display: block;
}

#header .commerce-nav .commerce-menu-dropdown {
  top: 94%;
  border: none;
}

#header .commerce-nav .commerce-menu-dropdown .sub-menu {
  display: block;
}

#header .commerce-nav .commerce-menu-dropdown .sub-menu a.cm-child {
  color: #575757;
  font-weight: 500;
}

#header .commerce-nav .commerce-menu-dropdown.show {
  display: flex;
}

@media (min-width: 992px) {
  #header #headerTopLinksNav .navbar-nav {
    align-items: center;
    height: 60px;
  }
}

#header #headerTopLinksNav .navbar-nav .nav-item a.nav-link {
  font-weight: 400;
  font-size: 18px;
  color: #da2128;
}

#header #headerTopLinksNav .navbar-nav li.nav-item a.nav-link:hover {
  color: #000 !important;
}

@media (min-width: 992px) {
  #header #headerTopLinksNav .navbar-nav li.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

#header #headerTopLinksNav .navbar-nav li.nav-item.dropdown.language-links #navbarDropdown:hover {
  color: #9d9fa2 !important;
  background-color: #fff !important;
}

#header #headerTopLinksNav .navbar-nav li.nav-item.dropdown.language-links:hover a.nav-link.dropdown-toggle::after {
  content: url(/fe/dist/css/../fonts/caret-down-gray.svg);
}

#header #headerTopLinksNav .navbar-nav li.nav-item.dropdown.language-links.show a.dropdown-toggle.nav-link {
  color: #9d9fa2 !important;
}

#header #headerTopLinksNav .navbar-nav li.nav-item.dropdown.language-links.show a.nav-link.dropdown-toggle::after {
  content: url(/fe/dist/css/../fonts/caret-up-gray.svg) !important;
  border: none;
  margin: 0;
  vertical-align: top;
}

#header #headerTopLinksNav .navbar-nav li.nav-item.dropdown.language-links a.nav-link {
  color: #191a37 !important;
}

#header #headerTopLinksNav .navbar-nav li.nav-item.dropdown.language-links a.nav-link:hover {
  background: #da2128;
  color: #fff !important;
}

#header #headerTopLinksNav .navbar-nav li.nav-item.dropdown.language-links a.nav-link.dropdown-toggle::after {
  display: inline;
  content: url(/fe/dist/css/../fonts/caret-down-black.svg);
  border: none;
  margin: 0;
  vertical-align: top;
}

#header .header-bottom .dss-nav-height {
  height: 123px;
}

#header .header-bottom #mobileAccountOption {
  z-index: 2000;
}

#header .header-bottom .input-group-append .fa-search {
  font-size: 35px;
  vertical-align: top;
}

#header .header-bottom .form-inline {
  border-top: 1px solid #dcddde;
  right: -18px;
  top: 0;
  width: 750px;
  background: #fff;
}

@media (min-width: 1200px) {
  #header .header-bottom .form-inline {
    width: 890px;
  }
}

#header .header-bottom .form-inline button {
  background: #fff;
  border: none;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 1rem;
  cursor: pointer;
}

#header .header-bottom .form-inline .form-control {
  height: 122px;
  border: none;
}

#header .header-bottom .nav-item:active {
  background: #191a37;
  outline: none;
}

#header .header-bottom .nav-item a.dropdown-toggle:after {
  border: none;
}

#header .header-bottom .nav-item a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

#header .header-bottom .nav-item a:hover {
  color: #dcddde !important;
}

#header .header-bottom .nav-item .dropdown-menu {
  background: #dcddde;
}

@media (min-width: 992px) {
  #header .header-bottom .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  #header .header-bottom .nav-item:hover a.dropdown-toggle,
  #header .header-bottom .nav-item:active a.dropdown-toggle,
  #header .header-bottom .nav-item.show a.dropdown-toggle {
    color: #dcddde !important;
    border-bottom: 20px solid #da2128;
  }

  #header .header-bottom .nav-item:hover a.dropdown-toggle .nav-toggle-text,
  #header .header-bottom .nav-item:active a.dropdown-toggle .nav-toggle-text,
  #header .header-bottom .nav-item.show a.dropdown-toggle .nav-toggle-text {
    margin-top: 20px;
  }
}

#header .header-bottom .nav-item .dropdown-title {
  padding-top: 1rem;
  padding-bottom: 0;
  font-weight: 900;
}

#header .header-bottom .nav-item .dropdown-title:after {
  content: "";
  display: block;
  padding-top: 8px;
  border-bottom: 1px solid #c7c9ca;
}

#header .header-bottom .nav-item .dropdown-title:hover {
  background: #dcddde;
}

#header .header-bottom .fa-search {
  font-size: 25px;
  vertical-align: bottom;
  transform: scaleX(-1);
}

#header .header-bottom .close-search {
  cursor: pointer;
  font-size: 48px;
  color: #da2128;
}

#header .header-bottom .mobile-menu-close {
  display: none;
}

#header #mobileNavbarCollapse {
  margin-top: 15px;
}

#header #mobileNavbarCollapse .nav-item {
  border-bottom: 1px solid #dcddde;
  margin-left: 1rem;
  margin-right: 1rem;
}

#header #mobileNavbarCollapse .nav-item.commerce-mobile-dropdown {
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0;
}

#header #mobileNavbarCollapse .nav-item:active {
  background: #fff;
}

#header #mobileNavbarCollapse .nav-item.show {
  background: #fff;
  color: #000 !important;
}

#header #mobileNavbarCollapse .nav-item.show a.nav-link.dropdown-toggle:after {
  content: url(/fe/dist/css/../fonts/caret-up-black.svg);
}

#header #mobileNavbarCollapse .nav-item a:hover {
  color: #000 !important;
}

#header #mobileNavbarCollapse .nav-item .nav-link {
  color: #000;
  font-weight: 400;
}

#header #mobileNavbarCollapse .nav-item .nav-link:hover {
  color: #000;
}

#header #mobileNavbarCollapse .nav-item .nav-link.dropdown-toggle::after {
  content: url(/fe/dist/css/../fonts/caret-down-black.svg);
  float: right;
  font-size: 20px;
  font-weight: 600;
  border: none;
  width: 16px;
  height: 16px;
}

#header #mobileNavbarCollapse .nav-item .language-header {
  color: #575757 !important;
}

#header #mobileNavbarCollapse .nav-item .language-header:hover,
#header #mobileNavbarCollapse .nav-item .language-header :focus {
  color: #575757 !important;
}

#header #mobileNavbarCollapse .nav-item .dropdown-menu {
  background: #fff;
  border: none;
  padding-bottom: 0;
}

#header #mobileNavbarCollapse .nav-item .dropdown-menu a.dropdown-item {
  font-weight: 400;
  color: #453d56;
  border-top: 1px solid #dcddde;
  white-space: normal;
}

#header #mobileNavbarCollapse .commerce-mobile-dropdown {
  background-color: #dcddde;
}

#header #mobileNavbarCollapse .commerce-mobile-dropdown.show {
  background-color: #dcddde;
}

#header #mobileNavbarCollapse .commerce-mobile-dropdown.show .dropdown-item {
  background-color: #dcddde;
}

#header #mobileNavbarCollapse .commerce-mobile-dropdown .dropdown-toggle {
  border-bottom: 1px solid #191a37;
}

#header .dropdown-menu {
  background: #dcddde;
  padding-bottom: 30px;
}

#header .dropdown-menu a.dropdown-item {
  color: #575757;
  font-weight: 600;
  font-size: 1em;
}

#header .dropdown-menu a.dropdown-item:hover {
  background: inherit;
  color: #da2128 !important;
}

#header .navbar-collapse.show {
  height: calc(100vh - 105px);
  padding-bottom: 110px;
}

.dismissable-banner__container {
  background: white;
  font-weight: 600;
  color: #191a37;
  text-align: center;
  padding: .6rem;
  z-index: 5;
  transition: .2s ease-in;
  min-height: 40px;
}

.dismissable-banner__container .dismissable-banner__close {
  position: absolute;
  right: 20px;
  transition: .1s ease-in;
  color: #63666a !important;
}

.dismissable-banner__container a {
  font-weight: 600;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 100000;
}

.modal-open .sticky {
  z-index: 500;
}

body.noscroll #header .navbar button.navbar-toggler .btn-hamburger {
  display: none;
}

body.noscroll #header .navbar button.navbar-toggler .mobile-menu-close {
  display: inline-block;
  border-radius: 50%;
  font-size: 30px;
}

.breadcrumb-container {
  z-index: 2;
  margin-top: 103px;
}

.breadcrumb-container.is-authorized {
  margin-top: 141px;
}

@media (min-width: 992px) {
  .breadcrumb-container {
    margin-top: 187px;
  }

  .breadcrumb-container.is-authorized {
    margin-top: 225px;
  }
}

.breadcrumb-container .breadcrumb {
  padding: .5rem 0;
  margin-bottom: 0;
  background-color: transparent;
}

#wrapper {
  margin-top: 106px;
}

#wrapper.is-authorized {
  margin-top: 146px;
}

@media (min-width: 992px) {
  #wrapper {
    margin-top: 183px;
  }

  #wrapper.is-authorized {
    margin-top: 223px;
  }
}

.titles-link {
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

#titlesIncludedInLicense .close {
  opacity: 1;
  position: absolute;
  right: 2%;
}

#titlesIncludedInLicense .close .modal-close:before {
  color: #000;
}

#titlesIncludedInLicense .modal-body .title-table div:not(:first-child) {
  border-top: none;
}

#titlesIncludedInLicense .modal-body .title-table .title-column {
  border: 1px solid #bab4c0;
}

#titlesIncludedInLicense .modal-body .title-table .format-column {
  border: 1px solid #bab4c0;
  border-left: none;
  justify-content: space-between;
}

#titlesIncludedInLicense .modal-body .title-table .format-column .remove-from-license {
  align-items: center;
  font-size: 20px;
}

#titlesIncludedInLicense .modal-body .title-table .title-column,
#titlesIncludedInLicense .modal-body .title-table .format-column {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-top: none;
}

#titlesIncludedInLicense .modal-body .title-table .title-column.heading,
#titlesIncludedInLicense .modal-body .title-table .format-column.heading {
  border-top: 1px solid #bab4c0;
}

@font-face {
  font-family: "Mark W1G";
  font-weight: 400;
  font-style: normal;
  src: url(/fe/dist/css/../fonts/FontFont-Mark_W1G_Regular.otf) format("opentype");
}

@font-face {
  font-family: "Mark W1G";
  font-weight: 500;
  font-style: normal;
  src: url(/fe/dist/css/../fonts/FontFont-Mark_W1G_Medium.otf) format("opentype");
}

@font-face {
  font-family: "Mark W1G";
  font-weight: 600;
  font-style: normal;
  src: url(/fe/dist/css/../fonts/FontFont-Mark_W1G_Bold.otf) format("opentype");
}

@font-face {
  font-family: "Mark W1G";
  font-weight: 900;
  font-style: normal;
  src: url(/fe/dist/css/../fonts/FontFont-Mark_W1G_Heavy.otf) format("opentype");
}

@font-face {
  font-family: "Mark W1G";
  font-style: italic;
  font-weight: 400;
  src: url(/fe/dist/css/../fonts/FontFont-Mark_W1G_Italic.otf) format("opentype");
}

@font-face {
  font-family: "Mark W1G";
  font-style: italic;
  font-weight: 500;
  src: url(/fe/dist/css/../fonts/FontFont-Mark_W1G_Medium_Italic.otf) format("opentype");
}

@font-face {
  font-family: "Mark W1G";
  font-style: italic;
  font-weight: 600;
  src: url(/fe/dist/css/../fonts/FontFont-Mark_W1G_Bold_Italic.otf) format("opentype");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: normal;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.headline,
.EPiServerForms .Form__Title {
  margin-bottom: .5rem;
  line-height: 1.2;
  font-weight: 400;
}

.headline.headline-xs,
.EPiServerForms .headline-xs.Form__Title {
  font-size: 1.125rem;
}

@media (min-width: 992px) {
  .headline.headline-xs,
  .EPiServerForms .headline-xs.Form__Title {
    font-size: 1.25rem;
  }
}

.headline.headline-sm,
.EPiServerForms .headline-sm.Form__Title {
  font-size: 1.375rem;
  font-weight: 500;
}

@media (min-width: 992px) {
  .headline.headline-sm,
  .EPiServerForms .headline-sm.Form__Title {
    font-size: 1.5rem;
  }
}

.headline.headline-md,
.EPiServerForms .headline-md.Form__Title {
  font-size: 1.5rem;
}

@media (min-width: 992px) {
  .headline.headline-md,
  .EPiServerForms .headline-md.Form__Title {
    font-size: 1.875rem;
  }
}

.headline.headline-lg,
.EPiServerForms .headline-lg.Form__Title {
  font-size: 1.5rem;
  font-weight: 500;
}

@media (min-width: 992px) {
  .headline.headline-lg,
  .EPiServerForms .headline-lg.Form__Title {
    font-size: 1.875rem;
  }
}

.headline.headline-xl,
.EPiServerForms .Form__Title {
  font-size: 1.625rem;
}

@media (min-width: 992px) {
  .headline.headline-xl,
  .EPiServerForms .Form__Title {
    font-size: 2.5rem;
  }
}

.headline.headline-xxl,
.EPiServerForms .headline-xxl.Form__Title {
  font-size: 2.5rem;
}

@media (min-width: 992px) {
  .headline.headline-xxl,
  .EPiServerForms .headline-xxl.Form__Title {
    font-size: 3.75rem;
  }
}

.body-text.text-sm {
  font-weight: 400;
}

.body-text.text-md {
  font-weight: 500;
}

.body-text.text-lg {
  font-weight: 500;
}

@media (min-width: 992px) {
  .body-text.text-lg {
    font-weight: 600;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.product-grid > div {
  height: 420px;
}

.product-grid .product-tile.card {
  background: #fff;
  height: 100%;
}

.product-grid .product-tile.card .card-body {
  padding: .5rem;
  display: flex;
  flex-direction: column;
}

.product-grid .product-tile.card .card-body .card-title {
  flex-grow: 1;
}

.product-grid .product-tile.card .card-body .price-previous {
  text-decoration-line: line-through;
  margin-right: 7px;
}

.product-grid .product-tile.card .card-body .price-sale {
  font-weight: bold;
}

.product-grid .product-tile.card .card-body a:hover {
  text-decoration: none;
}

.product-grid .product-tile.card .card-body > a {
  text-align: center;
}

.product-grid .product-tile.card .card-footer {
  text-align: center;
  background: #fff;
  border: none;
  padding: .5rem 1.25rem;
}

.product-grid .carousel .carousel-control-prev,
.product-grid .carousel .carousel-control-next {
  color: #212529;
}

.product-details-wrapper .product-details-center .product-prices {
  font-size: 24px;
  color: #da2128;
  font-weight: 500;
}

.product-details-wrapper .product-details-center .product-prices .price-previous {
  text-decoration: line-through;
}

.product-details-wrapper .product-details-center .product-prices .price-sale {
  font-weight: bold;
}

.product-details-wrapper .quantity-table {
  overflow-x: scroll;
}

.product-details-wrapper .quantity-table td {
  border: 1px solid #191a37;
  padding: 0.5rem;
}

.category-page .category-list a:hover {
  text-decoration: none;
}

.category-page .category-list-item {
  background-position: center center;
  background-size: cover;
  border: none;
  min-height: 189px;
}

.category-page .category-list-item a {
  color: #fff;
}

.braintree-form__field-group[data-braintree-id="save-card-field-group"] label {
  min-width: 100px;
}

.minicart .modal-dialog {
  max-width: 400px;
  height: 515px;
}

@media (min-width: 992px) {
  .minicart .modal-dialog {
    max-width: 800px;
  }
}

.minicart .modal-dialog .modal-content .modal-header {
  border-bottom: 1px solid #bab4c0;
  flex-direction: column;
}

.minicart .modal-dialog .modal-content .modal-header .close {
  opacity: 1;
  position: absolute;
  right: 2%;
}

.minicart .modal-dialog .modal-content .modal-header .close .modal-close:before {
  color: #000;
}

.minicart .modal-dialog .modal-content .modal-body {
  padding: 0;
}

.minicart .modal-dialog .modal-content .modal-body ul.list-unstyled,
.minicart .modal-dialog .modal-content .modal-body .footer-link-col ul,
.footer-link-col .minicart .modal-dialog .modal-content .modal-body ul {
  margin-bottom: 0;
}

.minicart .modal-dialog .modal-content .modal-body ul.list-unstyled .product-item,
.minicart .modal-dialog .modal-content .modal-body .footer-link-col ul .product-item,
.footer-link-col .minicart .modal-dialog .modal-content .modal-body ul .product-item {
  border-bottom: 1px solid #bab4c0;
}

.minicart .modal-dialog .modal-content .modal-body ul.list-unstyled .product-item:not(:first-child),
.minicart .modal-dialog .modal-content .modal-body .footer-link-col ul .product-item:not(:first-child),
.footer-link-col .minicart .modal-dialog .modal-content .modal-body ul .product-item:not(:first-child) {
  display: none;
}

@media (min-width: 992px) {
  .minicart .modal-dialog .modal-content .modal-body ul.list-unstyled .product-item:not(:first-child),
  .minicart .modal-dialog .modal-content .modal-body .footer-link-col ul .product-item:not(:first-child),
  .footer-link-col .minicart .modal-dialog .modal-content .modal-body ul .product-item:not(:first-child) {
    display: flex;
  }
}

.minicart .modal-dialog .modal-content .modal-body ul.list-unstyled .product-item .media,
.minicart .modal-dialog .modal-content .modal-body .footer-link-col ul .product-item .media,
.footer-link-col .minicart .modal-dialog .modal-content .modal-body ul .product-item .media {
  padding-left: 1rem;
  flex-direction: column;
}

@media (min-width: 992px) {
  .minicart .modal-dialog .modal-content .modal-body ul.list-unstyled .product-item .media,
  .minicart .modal-dialog .modal-content .modal-body .footer-link-col ul .product-item .media,
  .footer-link-col .minicart .modal-dialog .modal-content .modal-body ul .product-item .media {
    flex-direction: row;
  }
}

.minicart .modal-dialog .modal-content .modal-body ul.list-unstyled .product-item .media .minicart-product-image,
.minicart .modal-dialog .modal-content .modal-body .footer-link-col ul .product-item .media .minicart-product-image,
.footer-link-col .minicart .modal-dialog .modal-content .modal-body ul .product-item .media .minicart-product-image {
  padding-bottom: 1rem;
}

.minicart .modal-dialog .modal-content .modal-body ul.list-unstyled .product-item .media .minicart-product-image .minicart-img,
.minicart .modal-dialog .modal-content .modal-body .footer-link-col ul .product-item .media .minicart-product-image .minicart-img,
.footer-link-col .minicart .modal-dialog .modal-content .modal-body ul .product-item .media .minicart-product-image .minicart-img {
  height: 112px;
  display: flex;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 9;
}

@media (min-width: 992px) {
  .minicart .modal-dialog .modal-content .modal-body ul.list-unstyled .product-item .media .minicart-product-image .minicart-img,
  .minicart .modal-dialog .modal-content .modal-body .footer-link-col ul .product-item .media .minicart-product-image .minicart-img,
  .footer-link-col .minicart .modal-dialog .modal-content .modal-body ul .product-item .media .minicart-product-image .minicart-img {
    height: 127px;
  }
}

.minicart .modal-dialog .modal-content .modal-body ul.list-unstyled .product-item .media .delete-from-cart,
.minicart .modal-dialog .modal-content .modal-body .footer-link-col ul .product-item .media .delete-from-cart,
.footer-link-col .minicart .modal-dialog .modal-content .modal-body ul .product-item .media .delete-from-cart {
  position: absolute;
  right: 2%;
}

.minicart .modal-dialog .modal-content .modal-body ul.list-unstyled .product-item .media .delete-from-cart .fa-times-circle,
.minicart .modal-dialog .modal-content .modal-body .footer-link-col ul .product-item .media .delete-from-cart .fa-times-circle,
.footer-link-col .minicart .modal-dialog .modal-content .modal-body ul .product-item .media .delete-from-cart .fa-times-circle {
  color: #da2128;
}

.minicart .modal-dialog .modal-content .modal-body ul.list-unstyled .product-item .media .delete-from-cart .fa-times-circle:before,
.minicart .modal-dialog .modal-content .modal-body .footer-link-col ul .product-item .media .delete-from-cart .fa-times-circle:before,
.footer-link-col .minicart .modal-dialog .modal-content .modal-body ul .product-item .media .delete-from-cart .fa-times-circle:before {
  color: #da2128;
}

.minicart .modal-dialog .modal-content .modal-body ul.list-unstyled .product-item .media .media-body .headline,
.minicart .modal-dialog .modal-content .modal-body .footer-link-col ul .product-item .media .media-body .headline,
.footer-link-col .minicart .modal-dialog .modal-content .modal-body ul .product-item .media .media-body .headline,
.minicart .modal-dialog .modal-content .modal-body ul.list-unstyled .product-item .media .media-body .EPiServerForms .Form__Title,
.EPiServerForms .minicart .modal-dialog .modal-content .modal-body ul.list-unstyled .product-item .media .media-body .Form__Title,
.minicart .modal-dialog .modal-content .modal-body .footer-link-col ul .product-item .media .media-body .EPiServerForms .Form__Title,
.EPiServerForms .minicart .modal-dialog .modal-content .modal-body .footer-link-col ul .product-item .media .media-body .Form__Title,
.footer-link-col .minicart .modal-dialog .modal-content .modal-body ul .product-item .media .media-body .EPiServerForms .Form__Title,
.EPiServerForms .footer-link-col .minicart .modal-dialog .modal-content .modal-body ul .product-item .media .media-body .Form__Title {
  color: #000;
}

.minicart .modal-dialog .modal-content .modal-body ul.list-unstyled .product-item .media .media-body .each-label,
.minicart .modal-dialog .modal-content .modal-body .footer-link-col ul .product-item .media .media-body .each-label,
.footer-link-col .minicart .modal-dialog .modal-content .modal-body ul .product-item .media .media-body .each-label {
  color: #9d9fa2;
  font-weight: 600;
}

.minicart .modal-dialog .modal-content .modal-footer {
  padding-top: 0;
  justify-content: space-between;
  border: none;
}

.minicart .modal-dialog .modal-content .modal-footer .minicart-btns {
  display: block;
}

@media (min-width: 410px) {
  .minicart .modal-dialog .modal-content .modal-footer .minicart-btns {
    display: flex;
  }
}

@media (min-width: 992px) {
  .minicart .modal-dialog .modal-content .modal-footer .minicart-btns {
    display: block;
  }
}

.minicart .modal-dialog .modal-content .modal-footer .minicart-btns a.btn,
.minicart .modal-dialog .modal-content .modal-footer .minicart-btns .elq-form a.submit-button-style,
.elq-form .minicart .modal-dialog .modal-content .modal-footer .minicart-btns a.submit-button-style {
  margin: .25rem .5rem;
}

@media (min-width: 992px) {
  .minicart .modal-dialog .modal-content .modal-footer .minicart-btns a.btn,
  .minicart .modal-dialog .modal-content .modal-footer .minicart-btns .elq-form a.submit-button-style,
  .elq-form .minicart .modal-dialog .modal-content .modal-footer .minicart-btns a.submit-button-style {
    margin: 0 .5rem;
  }
}

.accordion-block {
  border-top: 1px solid;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.accordion-block__item {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .carousel--services {
    min-height: 500px;
  }
}

.carousel--services .carousel-cell {
  width: 381px;
  padding-right: 0;
}

.carousel--services .slider-image {
  min-height: 215px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  transition: all 500ms ease-in-out;
}

.carousel--services .slider-image:hover {
  transform: scale(1.05);
}

.carousel--services .slider-text {
  min-height: 4em;
}

@media (min-width: 992px) {
  .carousel--services .slider-text {
    padding-right: 80px;
  }
}

.carousel--services .service-detail-links {
  text-decoration: underline;
}

@media (min-width: 992px) {
  .carousel--services .service-detail-links {
    text-decoration: none;
  }
}

.carousel--services .service-detail-links a:hover,
.carousel--services .service-detail-links a :active {
  color: #9d9fa2 !important;
  text-decoration: none !important;
}

.carousel--services .flickity-prev-next-button {
  top: 90%;
  display: none;
}

.carousel--services .flickity-prev-next-button.previous {
  background: #000;
  left: 60%;
}

.carousel--services .flickity-prev-next-button.previous::before {
  content: url(/fe/dist/css/../fonts/icon-arrow-left-white.svg);
}

@media (min-width: 992px) {
  .carousel--services .flickity-prev-next-button.previous {
    display: block;
    left: 50%;
  }
}

@media (min-width: 1200px) {
  .carousel--services .flickity-prev-next-button.previous {
    left: 55%;
  }
}

@media (min-width: 992px) {
  .carousel--services .flickity-prev-next-button.next {
    display: block;
  }
}

.carousel--industries .carousel-cell,
.carousel--sliderBlock .carousel-cell {
  margin: 0;
}

.carousel--industries .carousel-cell .black-overlay,
.carousel--sliderBlock .carousel-cell .black-overlay {
  z-index: 1;
  display: block;
  background-color: #000;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.6;
}

@media (min-width: 992px) {
  .carousel--industries .carousel-cell,
  .carousel--sliderBlock .carousel-cell {
    width: 80%;
  }
}

.carousel--industries .carousel-cell.is-selected .black-overlay,
.carousel--sliderBlock .carousel-cell.is-selected .black-overlay {
  opacity: 0.5;
}

.carousel--industries .carousel-cell.is-selected .slider-image .container,
.carousel--sliderBlock .carousel-cell.is-selected .slider-image .container {
  z-index: 2;
}

.carousel--industries .carousel-cell .slider-image,
.carousel--sliderBlock .carousel-cell .slider-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 480px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 992px) {
  .carousel--industries .carousel-cell .slider-image,
  .carousel--sliderBlock .carousel-cell .slider-image {
    min-height: 700px;
  }
}

.carousel--industries .carousel-cell .slider-image .slider-text,
.carousel--sliderBlock .carousel-cell .slider-image .slider-text {
  max-width: 480px;
  color: #fff;
  z-index: 2;
}

.carousel--industries .flickity-prev-next-button.previous:hover::before,
.carousel--sliderBlock .flickity-prev-next-button.previous:hover::before {
  content: url(/fe/dist/css/../fonts/icon-arrow-left-white.svg) !important;
}

.carousel--industries .flickity-prev-next-button,
.carousel--sliderBlock .flickity-prev-next-button {
  top: 85%;
}

.carousel--industries .flickity-prev-next-button.previous,
.carousel--sliderBlock .flickity-prev-next-button.previous {
  background: #fff;
}

.carousel--industries .flickity-prev-next-button.previous::before,
.carousel--sliderBlock .flickity-prev-next-button.previous::before {
  content: url(/fe/dist/css/../fonts/icon-arrow-left-black.svg);
}

@media (min-width: 992px) {
  .carousel--industries .flickity-prev-next-button.previous,
  .carousel--sliderBlock .flickity-prev-next-button.previous {
    left: 15vw;
  }
}

@media (min-width: 1500px) {
  .carousel--industries .flickity-prev-next-button.previous,
  .carousel--sliderBlock .flickity-prev-next-button.previous {
    left: 19vw;
  }
}

@media (min-width: 2000px) {
  .carousel--industries .flickity-prev-next-button.previous,
  .carousel--sliderBlock .flickity-prev-next-button.previous {
    left: 27vw;
  }
}

.carousel--industries .flickity-page-dots,
.carousel--sliderBlock .flickity-page-dots {
  bottom: 20px;
}

.carousel--industries .flickity-page-dots .dot,
.carousel--sliderBlock .flickity-page-dots .dot {
  background: #fff;
  opacity: 1;
}

.carousel--industries .flickity-page-dots .dot.is-selected,
.carousel--sliderBlock .flickity-page-dots .dot.is-selected {
  transform: scale(1.4);
}

.carousel--insights .carousel-cell.mobile-news-cell {
  padding-right: .5em !important;
}

.carousel--insights .carousel-cell .slider-image {
  max-width: 586px;
  min-height: 159px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 500ms ease-in-out;
}

@media (min-width: 992px) {
  .carousel--insights .carousel-cell .slider-image {
    aspect-ratio: 16 / 9;
    min-height: 332px;
    margin: 0;
  }
}

.carousel--insights .carousel-cell .slider-image:hover {
  transform: scale(1.05);
}

.carousel--insights .carousel-cell .slider-text .read-now {
  text-decoration: underline;
  font-size: 12px;
}

.carousel--insights .carousel-cell .slider-text .read-now:hover {
  color: #9d9fa2 !important;
}

.carousel--insights .carousel-cell .button-block {
  margin-top: 3em;
}

@media (min-width: 992px) {
  .carousel--insights .carousel-cell .button-block {
    bottom: 0;
    transform: translateX(50%);
  }
}

.carousel--insights .carousel-cell .btn,
.carousel--insights .carousel-cell .EPiServerForms .Form__MainBody button,
.EPiServerForms .Form__MainBody .carousel--insights .carousel-cell button,
.carousel--insights .carousel-cell .elq-form .submit-button-style,
.elq-form .carousel--insights .carousel-cell .submit-button-style {
  width: 162px;
}

.carousel--insights .flickity-prev-next-button.next {
  top: 45%;
  left: 70%;
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .carousel--insights .flickity-prev-next-button.next {
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 992px) {
  .carousel--insights .flickity-prev-next-button.next {
    left: 68%;
  }
}

@media (min-width: 1500px) {
  .carousel--insights .flickity-prev-next-button.next {
    left: 65%;
  }
}

.carousel--insights .flickity-prev-next-button.previous {
  display: none;
}

.carousel__title {
  font-size: 1.75rem;
  color: #746a7f;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.5rem;
}

.carousel .flickity-prev-next-button {
  display: none;
  border: none;
  border-radius: 50%;
  height: 54px;
  width: 54px;
}

.carousel .flickity-prev-next-button:active {
  height: 48px;
  width: 48px;
  transition: all 200ms ease-in-out !important;
}

@media (min-width: 992px) {
  .carousel .flickity-prev-next-button {
    display: block;
  }
}

.carousel .flickity-prev-next-button::before {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carousel .flickity-prev-next-button:hover {
  transition: none;
  background-color: #9d9fa2 !important;
  color: #fff !important;
  cursor: pointer;
}

.carousel .flickity-prev-next-button:active {
  opacity: 1.0;
}

.carousel .flickity-prev-next-button.next {
  background: #da2128;
  right: 30%;
}

.carousel .flickity-prev-next-button.next::before {
  content: url(/fe/dist/css/../fonts/icon-arrow-right-white.svg);
}

.carousel .flickity-prev-next-button .flickity-button-icon {
  display: none;
}

.insights-news-slider-block .cr-button-block {
  display: flex;
  justify-content: center;
}

.catalogcontentcontainerblock .carousel {
  width: 100%;
}

.catalogcontentcontainerblock .featured-product {
  padding: .9rem;
  background-color: rgba(186, 180, 192, 0.2);
}

@media (max-width: 991.98px) {
  .flickity-viewport {
    overflow-x: auto;
    scrollbar-color: transparent transparent;
  }

  .flickity-viewport::-webkit-scrollbar {
    display: none;
    height: 0;
    width: 0;
  }

  .flickity-viewport::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
    -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  }

  .flickity-viewport::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0);
    -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  }

  .flickity-viewport::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(0, 0, 0, 0);
  }

  .flickity-slider {
    -webkit-overflow-scrolling: touch;
  }
}

.case-studies-slider .case-studies-hero {
  position: relative;
  height: 100%;
}

.case-studies-slider .case-studies-hero .parallax-window {
  background: transparent;
}

.case-studies-slider .case-studies-hero .case-studies-image {
  display: flex;
  z-index: -2;
  min-height: 480px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

@media (min-width: 992px) {
  .case-studies-slider .case-studies-hero .case-studies-image {
    min-height: 700px;
    background-attachment: fixed;
  }
}

.case-studies-slider .case-studies-hero .cs-content {
  width: auto;
  position: relative;
  text-align: center;
  z-index: 2;
}

@media (min-width: 992px) {
  .case-studies-slider .case-studies-hero .cs-content {
    text-align: left;
  }
}

.case-studies-slider .carousel--case-studies.desktop.slider {
  padding-bottom: calc(2rem + 54px);
}

.case-studies-slider .carousel--case-studies.desktop.slider .flickity-prev-next-button {
  top: calc(100% - 14px);
}

.case-studies-slider .carousel--case-studies .carousel-cell.mobile-case-studies-cell {
  padding-right: .5em !important;
}

@media (min-width: 992px) {
  .case-studies-slider .carousel--case-studies .carousel-cell {
    width: 490px;
  }
}

.case-studies-slider .carousel--case-studies .slider-image {
  min-height: 280px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  transition: all 500ms ease-in-out;
}

.case-studies-slider .carousel--case-studies .slider-image:hover {
  transform: scale(1.05);
}

@media (min-width: 992px) {
  .case-studies-slider .carousel--case-studies .slider-image {
    max-width: 490px;
  }
}

@media (min-width: 992px) {
  .case-studies-slider .carousel--case-studies .slider-text {
    max-width: 380px;
  }
}

.case-studies-slider .carousel--case-studies .learn-more {
  bottom: 0;
}

.case-studies-slider .carousel--case-studies a:hover {
  text-decoration: none !important;
}

.case-studies-slider .carousel--case-studies .flickity-prev-next-button {
  top: 110%;
}

.case-studies-slider .carousel--case-studies .flickity-prev-next-button.previous {
  background: #000;
}

.case-studies-slider .carousel--case-studies .flickity-prev-next-button.previous::before {
  content: url(/fe/dist/css/../fonts/icon-arrow-left-white.svg);
}

@media (min-width: 992px) {
  .case-studies-slider .carousel--case-studies .flickity-prev-next-button.previous {
    display: block;
    left: 60%;
  }
}

@media (min-width: 1200px) {
  .case-studies-slider .carousel--case-studies .flickity-prev-next-button.previous {
    left: 64%;
  }
}

@media (min-width: 1500px) {
  .case-studies-slider .carousel--case-studies .flickity-prev-next-button.previous {
    left: 69%;
  }
}

@media (min-width: 992px) {
  .case-studies-slider .carousel--case-studies .flickity-prev-next-button.next {
    display: block;
    right: 350px !important;
  }
}

@media (min-width: 992px) {
  .content-hub-feature-block .content-hub-card {
    min-height: 440px;
  }
}

.content-hub-feature-block .content-hub-card .card-img {
  border-radius: 0;
  transition: all 500ms ease-in-out;
}

.content-hub-feature-block .content-hub-card .card-img:hover {
  transform: scale(1.05);
}

@media (min-width: 992px) {
  .content-hub-feature-block .content-hub-card .title {
    max-width: 300px;
    min-height: 4em;
  }
}

.content-hub-feature-block .content-hub-card .link-arrow {
  color: #da2128;
}

@media (min-width: 992px) {
  .content-image-block .image-right {
    order: 2;
  }
}

.content-image-block .bg-img {
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .content-image-block .bg-img {
    margin-bottom: 0;
  }
}

.description-accordion {
  padding-top: 1rem;
  margin-bottom: 2rem;
}

.description-accordion .collapse,
.description-accordion .collapsing {
  height: 500px;
  max-width: 700px;
  display: inline-block;
}

@media (min-width: 992px) {
  .description-accordion .collapse,
  .description-accordion .collapsing {
    height: 195px;
  }
}

.description-accordion .collapse {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.description-accordion .collapse:before {
  position: absolute;
  right: 0;
  bottom: 0;
}

.description-accordion .collapse.show {
  height: auto;
  -webkit-mask-image: none;
  mask-image: none;
}

.description-accordion .collapse.show:before {
  display: none;
}

.description-accordion a.accordion-default {
  vertical-align: top;
}

@media (min-width: 992px) {
  .description-accordion a.accordion-default {
    margin-left: 30px;
  }
}

.description-accordion .clear-webkit-mask {
  -webkit-mask-image: none;
  mask-image: none;
}

.featured-content-block .featured-content-item {
  margin-bottom: 1.875rem;
}

.featured-content-block .featured-content-item__image {
  object-fit: cover;
  width: 100%;
}

.featured-content-block .featured-content-item__image.rectangle {
  aspect-ratio: 16 / 9;
}

.featured-content-block .featured-content-item__image.square {
  background: #fff;
}

.featured-content-block .featured-content-item__title {
  margin-top: 0.75rem;
  font-weight: 500;
}

.featured-content-block .featured-content-item__description {
  margin-top: 0.75rem;
}

.featured-content-block .featured-content-item__description + .btn,
.featured-content-block .EPiServerForms .Form__MainBody .featured-content-item__description + button,
.EPiServerForms .Form__MainBody .featured-content-block .featured-content-item__description + button,
.featured-content-block .elq-form .featured-content-item__description + .submit-button-style,
.elq-form .featured-content-block .featured-content-item__description + .submit-button-style {
  margin-top: 12px;
}

.hero-page-header-block {
  position: relative;
  /*margin-bottom: 3rem;*/
  overflow: hidden;
}

.hero-page-header-block .red-shape-overlay {
  position: absolute;
  height: 435px;
  width: 393px;
  top: -154px;
  right: -12px;
  transform: translateX(49%);
  z-index: 50;
}

@media (min-width: 992px) {
  .hero-page-header-block .red-shape-overlay {
    height: 1232px;
    width: 1113px;
    top: -504px;
    right: -50px;
    z-index: 50;
  }
}

@media (min-width: 1500px) {
  .hero-page-header-block .red-shape-overlay {
    height: 1453px;
    width: 1309px;
    top: -620px;
  }
}

.hero-page-header-block__image {
  display: flex;
  align-items: flex-end;
  height: 70vh;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-page-header-block__image .hero-btn {
  padding-top: 1rem;
  display: inline-block;
}

.hero-page-header-block__video-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: end;
  align-items: end;
}

@media (min-width: 992px) {
  .hero-page-header-block__video-container {
    justify-content: center;
    align-items: center;
  }
}

.hero-page-header-block__video-container.hero-page-header__content-align-left {
  justify-content: left;
}

.hero-page-header-block__video-container.hero-page-header__content-align-center {
  justify-content: center;
}

.hero-page-header-block__video-container.hero-page-header__content-align-right {
  justify-content: right;
}

.hero-page-header-block__content {
  position: relative;
  z-index: 2;
  width: auto;
  padding-bottom: 3em;
  color: #fff !important;
}

.hero-page-header-block__content h1,
.hero-page-header-block__content h2,
.hero-page-header-block__content h3 {
  margin-bottom: 0;
}

.hero-page-header-block__content h1:last-of-type,
.hero-page-header-block__content h2:last-of-type,
.hero-page-header-block__content h3:last-of-type {
  margin-bottom: .5em;
}

@media (min-width: 992px) {
  .hero-page-header-block__content {
    padding-bottom: 0;
  }
}

.hero-page-header-block__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh;
  /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  /*z-index: -1;*/
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

.hero-page-header-block .video-image {
  min-width: auto !important;
  min-height: 100% !important;
}

.media-block .media-block-image img {
  width: 100%;
}

.meet-the-team-block {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1em;
}

.meet-the-team-block .block-text {
  min-height: 5.5em;
}

.meet-the-team-block .title-region {
  font-size: 16px;
}

.meet-the-team-block .profile-image {
  margin-bottom: 1em;
  max-width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.meet-the-team-block a.accordion-default {
  min-height: 47px;
  min-width: 47px;
  width: 47px;
  height: 47px;
  align-items: center;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
}

.meet-the-team-block a.accordion-default.collapsed::before {
  font-size: 30px;
  content: "+";
}

.meet-the-team-block a.accordion-default:not(.collapsed)::before {
  content: url(/fe/dist/css/../fonts/icon-minus-small.svg);
}

.meet-the-team-block .social-accordion-tray {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: .5em;
  padding-bottom: .5em;
}

.meet-the-team-preview .profile-image {
  margin-bottom: 1em;
  max-width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.meet-the-team-preview p,
.meet-the-team-preview .EPiServerForms .Form__Description,
.EPiServerForms .meet-the-team-preview .Form__Description {
  max-width: 500px;
}

.meet-the-team-preview .description {
  background-color: #c7c9ca;
}

.meet-the-team-preview .description .desc-text {
  padding: 2em 4em;
}

.meet-the-team-preview .carousel {
  padding-bottom: calc(1rem + 25px);
}

.meet-the-team-preview .carousel .flickity-slider {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.meet-the-team-preview .carousel .flickity-page-dots {
  bottom: 0px !important;
}

.meet-the-team-preview .carousel .flickity-page-dots .dot {
  opacity: 1 !important;
}

.meet-the-team-preview .carousel .flickity-page-dots .dot.is-selected {
  transform: scale(1.4);
}

.meet-the-team-preview .carousel .item {
  text-align: center;
}

.meet-the-team-preview .carousel .item .profile-image {
  margin-bottom: 1em;
}

@media (min-width: 992px) {
  .meet-the-team-preview .carousel .item {
    text-align: left;
  }
}

.tilecarousel-tile {
  padding: .9rem;
}

.tilecarousel-tile__image {
  height: 11.625rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 0.875rem;
  background-color: #f5f5f5;
}

.tilecarousel-tile__heading {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.tilecarousel-tile__description {
  font-size: 1rem;
  margin-bottom: 0.375rem;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tilecarousel-tile__link {
  display: inline-block;
  position: relative;
  font-size: 1rem;
  color: #191a37;
  padding: 0 0.25rem 0.25rem 0;
  border-bottom: 1px solid #191a37;
}

.tilecarousel-tile__link:hover {
  text-decoration: none;
  color: #0033a8;
}

.tilecarousel-tile__link:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  bottom: -4px;
  right: 0;
  width: 0.4375rem;
  height: 0.4375rem;
  border-right: 1px solid #191a37;
  border-bottom: 1px solid #191a37;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (min-width: 768px) {
  .tilecarousel-tile__image {
    height: 16.25rem;
    margin-bottom: 1.25rem;
  }

  .tilecarousel-tile__link {
    font-size: 1.25rem;
  }
}

.video-preview-block {
  position: relative;
  height: 400px;
}

@media (min-width: 992px) {
  .video-preview-block {
    height: 700px;
  }
}

.video-preview-block__preview {
  height: 100%;
}

.video-preview-block__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-preview-block .container .video-preview-block__overlay {
  width: calc(100% - 30px);
}

.video-preview-block__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
}

.video-preview-block__overlay .overlay-content {
  color: #fff;
  z-index: 2;
}

.video-preview-block__overlay .overlay-content .col-12,
.video-preview-block__overlay .overlay-content .EPiServerForms .Form__Element .FormTextbox.FormTextbox--Textarea,
.EPiServerForms .Form__Element .video-preview-block__overlay .overlay-content .FormTextbox.FormTextbox--Textarea,
.video-preview-block__overlay .overlay-content .EPiServerForms .Form__Element .FormChoice,
.EPiServerForms .Form__Element .video-preview-block__overlay .overlay-content .FormChoice {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-preview-block__play-button {
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  outline: 0 !important;
  font-size: 1rem;
  background: #da2128;
  color: #fff;
  transition: all .2s linear;
}

.video-preview-block__play-button:hover {
  cursor: pointer;
  background: #fff;
  color: #000;
}

.video-preview-block__play-button > i {
  position: relative;
  left: .125rem;
}

.video-preview-block__modal .close-button {
  margin-bottom: 1.25rem;
  margin-left: auto;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  background: #000;
  color: white;
}

.video-preview-block__modal .close-button:hover {
  cursor: pointer;
  background: #9d9fa2;
}

.resource-tabs {
  background: #bfbac5;
  border: 1px solid #746a7f;
  border-radius: .25em;
}

.resource-tabs .nav-link {
  color: #212529;
  transition: .2s ease-in;
  font-weight: 600;
  padding: .75rem 2rem;
}

.resource-tabs .nav-link:hover {
  color: #4e4755;
}

@media (min-width: 992px) {
  .filters {
    width: 200px;
  }
}

.filters .form-control {
  border-color: #746a7f;
  background: #bfbac5;
  color: #383d42;
}

.card {
  border: none;
  padding: .8rem;
  background-color: #dcddde;
}

.card-resource {
  height: 100%;
}

.card-resource-featured .card-body {
  padding: 0;
}

.card-resource-featured .card-type {
  display: table;
  /* prevents type from displaying full width in IE*/
  width: max-content;
  /* prevents type from displaying full width in chrome */
}

@media (min-width: 992px) {
  .card-resource-featured {
    display: flex;
    flex-direction: row;
  }

  .card-resource-featured .card-img.card-img-lg {
    width: 60%;
    margin-bottom: 0;
  }

  .card-resource-featured .card-body {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
  }
}

.card .card-date {
  background: rgba(255, 255, 255, 0.8);
  font-size: .8rem;
  display: inline-flex;
  padding: .5rem;
  margin: .5rem;
  font-weight: 500;
}

.card-type {
  color: #fff;
  background: #746a7f;
  border-radius: .25em;
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: .2rem .5rem;
  margin-bottom: 1rem;
}

.card-img {
  width: 100%;
  height: 200px;
  background: #746a7f;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: .5rem;
  border-radius: .25em;
}

.card-img.card-img-lg {
  height: 260px;
}

@media (min-width: 992px) {
  .card-img.card-img-lg {
    height: 360px;
  }
}

.contact-us-page .contact-details .contact-detail {
  margin-bottom: 1.5rem;
}

.contact-us-page .contact-details .contact-detail__image {
  width: 100%;
  height: 200px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  object-fit: cover;
}

.contact-us-page .contact-details .contact-detail__connect-links {
  font-size: 53px;
  margin-top: -5px;
}

.contact-us-page .contact-details .contact-detail__connect-links a {
  color: #191a37;
  height: auto;
}

.contact-us-page .contact-details .contact-detail__connect-links a i {
  vertical-align: top;
}

.wishlist-wrapper {
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .wishlist-wrapper {
    margin: 3rem auto;
  }
}

.wishlist-wrapper .launch-modal-button {
  margin: 50px auto;
  display: block;
}

.wishlist-wrapper .wishlist-title {
  background: #191a37;
  color: #fff;
  text-align: center;
  padding: .25rem;
}

.wishlist-wrapper .alert {
  margin-top: 15px;
}

.wishlist-items li {
  list-style: none;
}

.list-sidebar {
  background: #f5f5f5;
  padding: 0;
  min-height: 600px;
}

@media (min-width: 768px) {
  .list-sidebar {
    padding: 0 0 80px;
  }
}

.list-sidebar a,
.list-sidebar li {
  color: #212529;
  display: block;
  transition: .2s ease-in-out;
}

.list-sidebar a:hover,
.list-sidebar li:hover {
  background-color: #fff;
  color: #191a37;
}

.list-sidebar a:hover .btn-edit,
.list-sidebar li:hover .btn-edit {
  display: block;
}

.list-sidebar.modal-body li:hover {
  cursor: pointer;
}

.list-sidebar .create-list {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border: 1px solid #dee2e6;
}

.list-sidebar .create-list .list-option {
  border-bottom: none;
}

.list-sidebar .list-option {
  border-bottom: 1px solid #dee2e6;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.list-sidebar .list-option h4 {
  margin: 0;
}

.list-sidebar .list-option.active {
  background: #fff;
  color: #191a37;
}

.list-sidebar .list-option.active .btn-edit {
  display: block;
}

.list-sidebar .list-option .dropdown-menu {
  width: 100%;
  top: 1rem !important;
  left: -1rem !important;
}

.list-sidebar .list-option .dropdown-menu .form-control {
  border: none;
}

.list-sidebar .list-option .dropdown-menu .btn,
.list-sidebar .list-option .dropdown-menu .EPiServerForms .Form__MainBody button,
.EPiServerForms .Form__MainBody .list-sidebar .list-option .dropdown-menu button,
.list-sidebar .list-option .dropdown-menu .elq-form .submit-button-style,
.elq-form .list-sidebar .list-option .dropdown-menu .submit-button-style {
  border-radius: 0;
}

.list-sidebar .list-option .btn-edit {
  background: none;
  border: none;
  color: #da2128;
  cursor: pointer;
  line-height: 0;
  display: none;
  font-size: 20px;
  transition: .2s ease-in;
  padding: 0;
}

.list-sidebar .list-option .btn-edit:hover {
  color: #F1680C;
}

.list-content {
  padding: 0rem .5rem 2rem .5rem;
}

@media (max-width: 768px) {
  .list-content .btn-xs {
    font-size: .8rem;
  }
}

@media (min-width: 768px) {
  .list-content {
    padding: 0rem 2rem 2rem 2rem;
  }
}

.list-content .table th,
.list-content .table td {
  border-top: none;
}

.list-content .tools button {
  margin: 0 .5rem .5rem 0;
}

@media (min-width: 576px) {
  .list-content .tools button {
    margin: 0 0 0 .5rem;
  }
}

.list-content .list-item {
  background: #f5f5f5;
  margin-bottom: 10px;
  justify-content: space-between;
  border-top: 1px solid #dee2e6;
  padding: .5rem;
}

.list-content .list-item .item-image img {
  width: 100%;
  min-width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .list-content .list-item .item-image img {
    width: 150px;
    margin-bottom: 0;
  }
}

.list-content .list-item .btn-xs {
  font-size: .8rem;
}

@media (min-width: 768px) {
  .list-content .list-item {
    display: flex;
    flex-wrap: wrap;
  }
}

.list-content .shopping-list-items .item-image img {
  width: 150px;
  min-width: 150px;
  height: auto;
}

.list-content .shopping-list-items .item-info {
  width: 100%;
}

.list-content .price {
  width: 100%;
}

@media (min-width: 768px) {
  .list-content .price {
    max-width: 200px;
  }
}

.list-content .price .price-regular {
  font-size: 16px;
  margin: 0 0 5px;
  min-width: 125px;
  min-width: 170px;
}

.list-content .price .btn,
.list-content .price .EPiServerForms .Form__MainBody button,
.EPiServerForms .Form__MainBody .list-content .price button,
.list-content .price .elq-form .submit-button-style,
.elq-form .list-content .price .submit-button-style {
  white-space: normal;
  font-size: 1em;
  padding-left: 10px;
  padding-right: 10px;
}

.list-content .dropdown-menu {
  width: 100%;
  border-radius: .25em;
}

.list-content .dropdown-menu li a {
  color: #383d42;
  font-weight: normal;
  font-size: .9rem;
  padding: .3rem .6rem;
  border-bottom: 1px solid #dee2e6;
  display: block;
}

.list-content .dropdown-menu li a:hover {
  background: #f5f5f5;
}

.list-content .quantity-wrapper {
  display: flex;
  align-items: center;
}

.list-content .quantity-wrapper input {
  padding: .35rem;
  width: 65px;
  margin-top: 1rem;
}

.list-content .item-name h4 {
  margin: 0;
}

.list-content .col-flex {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}

.list-modal {
  height: 500px;
}

.list-modal .modal-title {
  margin-bottom: 0 !important;
}

.list-modal .modal-body {
  background: #f5f5f5;
  min-height: 200px;
}

.list-modal .modal-body.list-sidebar > .container-fluid {
  height: 100%;
}

.list-modal .modal-body.list-sidebar > .container-fluid > .row,
.list-modal .modal-body.list-sidebar > .container-fluid > .flickity-slider {
  height: 100%;
}

.list-modal .modal-body .list-modal-product {
  border-right: 1px solid #dee2e6;
  background: #fff;
  padding: 2rem;
}

.list-modal .modal-body .list-modal-product img {
  margin-bottom: 10px;
}

.list-modal .modal-body .list-modal-lists {
  overflow: auto;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-height: 100%;
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .list-modal .modal-body .modal-create-list {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}

.list-modal .modal-body .input-group {
  margin-top: 10px;
}

.list-modal .modal-body .input-group input.form-control {
  margin-top: 0;
}

.list-modal .modal-body .input-group input.form-control:focus {
  background-color: #fff !important;
  border: 1px solid #191a37;
}

.list-modal .modal-body .tabs-container {
  display: contents;
}

.list-modal .input-group .btn,
.list-modal .input-group .EPiServerForms .Form__MainBody button,
.EPiServerForms .Form__MainBody .list-modal .input-group button,
.list-modal .input-group .elq-form .submit-button-style,
.elq-form .list-modal .input-group .submit-button-style {
  border-radius: 0;
}

.list-modal .modal-footer {
  background: #f5f5f5;
}

.list-modal.new-list-modal {
  height: auto;
}

@media (max-width: 1199.98px) {
  .list-modal {
    height: calc(100vh - 1rem);
    max-height: 500px;
  }
}

.my-account-page .nav-item a.nav-link {
  background-color: #bab4bf;
}

.my-account-page .card {
  background-color: #dcddde;
}

.my-account-page .k-grid {
  color: black;
  background-color: #dcddde;
}

.my-account-page .k-grid .k-grid-header,
.my-account-page .k-grid .k-link:visited {
  color: black;
}

.my-account-page .k-grid .k-header,
.my-account-page .k-grid .k-pager-wrap {
  color: black;
  background-color: #dcddde;
}

.my-account-page .k-grid .k-pager-wrap .k-link {
  color: #191a37;
  background-color: #bab4c0;
  border-color: transparent;
}

.my-account-page .k-grid .k-pager-wrap .k-link.k-state-selected {
  color: #fff;
  background-color: #191a37;
}

.my-account-page .k-grid .k-pager-wrap .k-link.k-state-disabled {
  background-color: #bab4bf;
}

.my-account-page .k-grid .k-pager-wrap .k-link:focus {
  box-shadow: none;
}

.my-account-page .k-grid tr:hover {
  background-color: #dcddde;
}

.my-account-page .k-grid tr {
  background-color: white;
}

.my-account-page #userListGrid .k-hierarchy-cell .k-icon {
  margin: 15px 8px;
}

.my-account-page #userListGrid .tbl-order {
  background: #fff;
  border-width: 1px 0;
  border-style: solid;
  border-color: inherit;
}

.my-account-page #userListGrid .k-grid-toolbar,
.my-account-page #userListGrid .k-grid-pager {
  border: 0;
  background-color: #dcddde;
}

.my-account-page #userListGrid .toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.my-account-page #userListGrid .toolbar label {
  margin: 0;
}

.my-account-page .list-wrapper .list-sidebar {
  background: #dcddde;
  min-height: 400px;
  border-right: 1px solid #9d9fa2;
}

.my-account-page .list-wrapper .list-sidebar ul {
  flex-grow: 1;
}

.my-account-page .list-wrapper .list-sidebar a,
.my-account-page .list-wrapper .list-sidebar li {
  border-bottom: 1px solid transparent;
  transition: .1s ease-in-out;
}

.my-account-page .list-wrapper .list-sidebar a:hover,
.my-account-page .list-wrapper .list-sidebar li:hover {
  border-bottom: 1px solid #191a37;
  text-decoration: none;
  color: #191a37;
}

.my-account-page .list-wrapper .list-sidebar .list-option {
  display: flex;
  justify-content: space-between;
  padding: .5rem 1rem;
  align-items: center;
  cursor: pointer;
}

.my-account-page .list-wrapper .list-sidebar .list-option h5 {
  margin: 0;
}

.my-account-page .list-wrapper .list-sidebar .list-option.active {
  color: #191a37;
}

.my-account-page .list-wrapper .list-sidebar .create-list {
  display: block;
  border-top: 1px solid #dcddde;
}

.my-account-page .list-wrapper .list-content .shopping-list-items .list-item {
  border-bottom: 1px solid #9d9fa2;
  display: grid;
}

@media (min-width: 576px) {
  .my-account-page .list-wrapper .list-content .shopping-list-items .list-item {
    display: block;
  }
}

.my-account-page .list-wrapper .list-content .shopping-list-items .list-item table td {
  padding: .5rem;
}

.my-account-page .list-wrapper .list-content .shopping-list-items .list-item:last-child {
  border-bottom: none;
}

.my-account-page .list-wrapper .list-content .shopping-list-items .list-item .item-image {
  width: 140px;
  height: auto;
  font-size: 12px;
}

.my-account-page .list-wrapper .list-content .shopping-list-items .list-item .item-image img {
  width: 140px;
  min-width: 140px;
  height: auto;
}

.my-account-page .list-wrapper .list-content .shopping-list-items .list-item .item-info {
  width: 100%;
  /*        .item-name a {
                            font-weight: 500;
                            color: $neogen-teal;
                            font-size: 1.25rem;
                        }*/
}

.my-account-page .list-wrapper .list-content .shopping-list-items .list-item .item-info .price-regular {
  font-weight: 400;
}

.my-account-page .list-wrapper .list-content .shopping-list-items .list-item .item-info .qty-option {
  max-width: 100px;
  padding: 0 .5rem;
}

.my-account-page .list-wrapper .list-content .shopping-list-items .list-item .item-btns {
  min-width: 200px;
}

.my-account-page .list-wrapper .list-content .shopping-list-items .list-item .dropdown-menu {
  width: 100%;
  margin: 0;
}

.my-account-page .reorder-wrapper .reorder-container .item-img {
  height: 102px;
  aspect-ratio: 16 / 9;
}

.my-account-page .reorder-wrapper .reorder-container .sub-link {
  color: #da2128;
}

.content-hub-feature-block a.content-hub-card:hover {
  text-decoration: none;
}

.content-hub-feature-block a.content-hub-card p,
.content-hub-feature-block a.content-hub-card .EPiServerForms .Form__Description,
.EPiServerForms .content-hub-feature-block a.content-hub-card .Form__Description {
  color: #000;
}

.content-hub-feature-block .link-arrow {
  bottom: 0;
}

.content-hub-page {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.content-hub-page .page-gray-shape {
  top: -43px;
}

.content-hub-page .page-title {
  max-width: 700px;
}

.content-hub-page .content-detail-item {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.content-hub-page .content-detail-item__image {
  margin-bottom: 0.75rem;
  width: 100%;
  height: 150px;
}

.content-hub-page .content-detail-item__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.content-hub-page .content-detail-item__page-type {
  margin-bottom: 0.75rem;
  font-size: 14px;
}

.content-hub-page .content-detail-item__title {
  min-height: 3.8em;
}

.content-hub-page .content-detail-item__description {
  min-height: 6em;
}

.content-hub-page .results-count-label {
  margin-bottom: 1rem;
}

.content-hub-page .filter-by-wrapper {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
}

.content-hub-page .filter-by-wrapper .filter-by-label {
  margin-right: .5rem;
  display: inline-block;
  font-weight: 600;
}

.content-hub-page .filter-by-wrapper .filter {
  margin-right: .5rem;
  padding: .5rem 1rem;
  display: flex;
  align-items: center;
  background: #dcddde;
}

.content-hub-page .filter-by-wrapper .filter .filter-label {
  margin-right: 1rem;
}

.content-hub-page .filter-by-wrapper .filter .remove-button {
  border: none;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  background: #da2128;
  color: white;
}

.content-hub-page .filter-by-wrapper .filter .remove-button i {
  position: relative;
  top: -5px;
  font-size: 10px;
}

.content-hub-page .load-more-button {
  text-transform: uppercase;
}

.content-detail-page {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.content-detail-page__top-section {
  margin-bottom: 3rem;
}

.content-detail-page__top-section h1 {
  max-width: 700px;
}

.content-detail-page__top-section .social-links-col {
  display: flex;
  flex-direction: column-reverse;
}

.content-detail-page__top-section .social-links-col .social-links {
  display: flex;
  justify-content: right;
}

@media (max-width: 767.98px) {
  .content-detail-page__top-section .social-links-col .social-links {
    justify-content: space-between;
  }
}

.content-detail-page__top-section .social-links-col .social-links a {
  color: #191a37;
}

.content-detail-page__top-section .social-links-col .social-links a:hover {
  color: #191a37 !important;
}

.content-detail-page .content-detail-page__byline + .content-detail-page__date {
  margin-top: 1.5rem;
}

.product-accordion {
  border-top: 1px solid black;
}

.product-accordion .panel {
  border-bottom: 1px solid black;
}

.product-accordion .panel .panel-heading {
  margin: 5px 15px;
}

.product-accordion .panel .panel-heading a {
  font-weight: 500;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-accordion .panel .panel-heading a:hover {
  color: black !important;
}

.product-accordion .panel .panel-collapse {
  margin: 15px;
}

.product-accordion .panel .panel-body .product-description {
  max-height: 10000px;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.product-accordion .panel .panel-body .product-description.mh-130 {
  max-height: 130px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.5s cubic-bezier(0, 1, 0, 1);
  -moz-transition: all 0.5s cubic-bezier(0, 1, 0, 1);
  -o-transition: all 0.5s cubic-bezier(0, 1, 0, 1);
  transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}

.product-accordion .panel .panel-body .product-description.mh-130::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  /* Adjust as needed */
  background: linear-gradient(transparent, white);
}

.product-details-attributes td {
  vertical-align: middle;
  padding: 15px;
}

/*Dropdown*/

.button.button-dropdown {
  border: 1px solid #707070;
  background-color: #fff;
  padding: 5px 25px 5px 10px;
  color: #453d56;
  text-align: left;
  position: relative;
  font-size: 1em;
  text-transform: none;
  border-radius: 0;
  display: block;
}

#divResults .button-dropdown span {
  font-size: 14px;
}

/*.button.button-dropdown:hover, .button-dropdown.active {
        background: #da2128;
        border: 1px solid #da2128;
        color:#fff;
}*/

.button.button-dropdown:after {
  font-family: "Font Awesome 5 Free";
  content: "\F078";
  position: absolute;
  right: 12px;
  top: 10px;
  color: #000;
  font-size: 10px;
  font-weight: 900;
}

.button-dropdown.active:after {
  content: "\F077";
}

.button-option-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.button-option-list.active {
  display: block;
  position: absolute;
}

.button-option-list {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #eeedea;
  display: none;
  font-size: 14px;
  line-height: 1.71429em;
  list-style-type: none;
  margin: 0;
  padding: 0;
  z-index: 3;
  width: 100%;
}

.button-option-list ul,
.license-drop {
  overflow-y: auto;
  max-height: 10em;
  z-index: 1;
  width: 100%;
}

.button-option-list li {
  padding: .425rem;
}

.button-option-list li:hover {
  cursor: pointer;
}

.button-option-list li a {
  color: #1d1d1d;
  display: block;
}

.button-option-list li a:hover {
  color: var(--dss-red);
}

/* lists */

.list--unstyled {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.list--unstyled:before,
.list--unstyled:after {
  content: " ";
  display: table;
}

.list--unstyled:after {
  clear: both;
}

.btn-addtoplaylist {
  padding: 6px 10px 5px 10px;
  display: block;
  border-top: 1px solid #d6d6d6;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
}

.button-options--reset {
  position: relative;
  border: 0;
  overflow: visible;
}

.item-details {
  color: #6b6e79;
  font-size: 12px;
  text-transform: none;
}

.item-details > span.first {
  border-right: 1px solid #c7c9ca;
  padding-right: .5em;
  margin-right: .5em;
  display: inline-block;
  line-height: 1em;
}

.item-details span > label {
  display: inline-block;
  color: #6b6e79;
  font-weight: 400;
  margin-bottom: 0;
}

.item-details > span:last-child,
.item-details > span.last,
.item-details div > span:last-child,
.item-details div > span.last {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

.item-details a {
  text-transform: none;
}

.button-option-list .playlist-option li a {
  font-size: 16px;
}

.international-alert div > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.events-page {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.events-page__event-group-buttons {
  margin-bottom: 2.5rem;
}

.events-page__event-group-buttons .btn,
.events-page__event-group-buttons .EPiServerForms .Form__MainBody button,
.EPiServerForms .Form__MainBody .events-page__event-group-buttons button,
.events-page__event-group-buttons .elq-form .submit-button-style,
.elq-form .events-page__event-group-buttons .submit-button-style {
  text-transform: unset;
}

.events-page .results-container {
  flex-direction: column;
}

@media (min-width: 992px) {
  .events-page .result {
    border-bottom: 1px solid #000;
  }

  .events-page .result:first-child {
    border-top: 1px solid #000;
  }
}

.events-page .event-item {
  display: flex;
  flex-direction: column;
}

.events-page .event-item__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.events-page .event-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-page .event-item__info {
  flex-grow: 1;
  padding-left: 1rem;
  padding-right: 1rem;
}

.events-page .event-item__info > div {
  margin-bottom: .25rem;
}

.events-page .event-item__date,
.events-page .event-item__time {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.events-page .event-item__type {
  font-size: 14px;
}

.events-page .event-item__type > span {
  padding: 0px 4px;
  background: #dcddde;
}

.events-page .event-item__title {
  font-size: 20px;
}

@media (max-width: 991.98px) {
  .events-page .event-item {
    margin-bottom: 1rem;
  }

  .events-page .event-item__info {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media (min-width: 992px) {
  .events-page .event-item {
    flex-direction: row;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .events-page .event-item__image {
    width: 277px;
    max-height: 167px;
  }

  .events-page .event-item__image img {
    width: 277px;
  }
}

.events-page .results-count-label {
  margin-bottom: 1rem;
}

.events-page .filter-by-wrapper {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
}

.events-page .filter-by-wrapper .filter-by-label {
  margin-right: .5rem;
  display: inline-block;
  font-weight: 600;
}

.events-page .filter-by-wrapper .filter {
  margin-right: .5rem;
  padding: .5rem 1rem;
  display: flex;
  align-items: center;
  background: #dcddde;
}

.events-page .filter-by-wrapper .filter .filter-label {
  margin-right: 1rem;
}

.events-page .filter-by-wrapper .filter .remove-button {
  border: none;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  background: #da2128;
  color: white;
}

.events-page .filter-by-wrapper .filter .remove-button i {
  position: relative;
  top: -5px;
  font-size: 10px;
}

.events-page .load-more-button {
  margin-top: 3rem;
  text-transform: uppercase;
}

.industry-detail-page {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.industry-detail-page__top-section {
  margin-bottom: 3rem;
}

.industry-detail-page__top-section h1 {
  max-width: 700px;
}

.meet-the-team-page .short-description {
  padding-top: 1em;
  display: none;
}

.meet-the-team-page .tab-content {
  margin-top: 2em;
}

.meet-the-team-page .tab-content .description,
.meet-the-team-page .tab-content .mobile-description {
  background-color: #c7c9ca;
}

.meet-the-team-page .tab-content .description .desc-text,
.meet-the-team-page .tab-content .mobile-description .desc-text {
  padding: 2em 4em;
}

.meet-the-team-page .tab-content .description {
  display: none;
}

@media (min-width: 992px) {
  .meet-the-team-page .tab-content .mobile-description {
    display: none;
  }

  .meet-the-team-page .tab-content .description {
    display: inline-block;
  }
}

.meet-the-team-page ul.nav-pills {
  display: inline-block;
}

.meet-the-team-page ul.nav-pills .nav-item {
  min-width: 200px;
  text-align: left;
}

.meet-the-team-page ul.nav-pills :not(:first-child) {
  padding-top: 1em;
  padding-bottom: 1em;
}

@media (min-width: 992px) {
  .meet-the-team-page ul.nav-pills {
    display: flex;
  }

  .meet-the-team-page ul.nav-pills :not(:first-child) {
    padding: 0;
    margin-left: 1em;
  }
}

.services-landing-page .services-overview {
  background-color: #191a37;
  padding-top: 3em;
  padding-bottom: 3em;
}

.services-overview-accordion {
  border-bottom: 1px solid #fff;
  color: #fff;
  padding-top: .75em;
  padding-bottom: .75em;
}

.services-overview-accordion:first-child {
  border-top: 1px solid #fff;
}

.services-overview-accordion .preview-panel .overview-expand:not(.collapsed) span {
  display: none;
}

.services-overview-accordion .overview-dropdown {
  padding-bottom: 1em;
}

.services-overview-accordion .overview-dropdown .related-links {
  padding-top: .5em;
  padding-bottom: .5em;
}

.services-overview-accordion .overview-dropdown .related-links a {
  color: #fff !important;
}

.services-overview-accordion .overview-dropdown .related-links a:hover {
  color: #e56045 !important;
}

.services-overview-accordion .overview-dropdown .related-links a:hover:before {
  content: url(/fe/dist/css/../fonts/icon-arrow-right-red70.svg);
}

.services-overview-accordion .overview-dropdown .related-links a:before {
  padding-right: .25em;
  vertical-align: middle;
  content: url(/fe/dist/css/../fonts/icon-arrow-right-white.svg);
}

.login-page .card-deck {
  padding-top: 2.5rem;
}

.login-page .card {
  background-color: #dcddde;
  border-radius: 0;
}

.login-page .btn-red {
  margin-top: 0.5rem;
}

.login-page label {
  text-transform: uppercase;
}

.login-page .sign-in-btn {
  display: flex;
  justify-content: space-between;
}

.login-page .sign-in-btn a.forgot-password {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  color: #da2128;
  font-weight: 500;
}

.forgot-password-page .card {
  background: #dcddde;
  margin-top: 2.5rem;
  padding: 1.5rem;
}

.forgot-password-page .card button {
  margin-top: 0.25rem;
}

.password-change .card {
  margin-top: 2.5rem;
}

.password-change .btn,
.password-change .EPiServerForms .Form__MainBody button,
.EPiServerForms .Form__MainBody .password-change button,
.password-change .elq-form .submit-button-style,
.elq-form .password-change .submit-button-style {
  margin-top: 0.5rem;
}

.shopping-cart-page-wrapper h1.headline.headline-xl,
.shopping-cart-page-wrapper .EPiServerForms h1.Form__Title,
.EPiServerForms .shopping-cart-page-wrapper h1.Form__Title {
  padding-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .shopping-cart-page-wrapper h1.headline.headline-xl,
  .shopping-cart-page-wrapper .EPiServerForms h1.Form__Title,
  .EPiServerForms .shopping-cart-page-wrapper h1.Form__Title {
    padding-bottom: 1rem;
  }
}

.shopping-cart-page-wrapper #shoppingCartItems .summary-subtotal {
  background-color: #dcddde;
}

.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-item {
  background-color: #dcddde;
}

.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-item label {
  margin-bottom: .25rem;
}

.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-item .item-img {
  height: 102px;
  aspect-ratio: 16 / 9;
  margin-right: 1rem;
}

.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-item .qty-option {
  max-width: 150px;
  margin-right: 1rem;
}

.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-item .btn-link:hover {
  text-decoration: none;
}

.shopping-cart-page-wrapper #shoppingCartItems .partner-id-dropdown {
  text-decoration: underline;
}

.shopping-cart-page-wrapper #shoppingCartItems .sub-link:hover {
  color: #da2128 !important;
}

.shopping-cart-page-wrapper #shoppingCartItems .sub-link.collapsed:after {
  font-family: "Font Awesome 5 Free";
  content: "\F055";
  font-weight: 600;
  color: #da2128;
}

.shopping-cart-page-wrapper #shoppingCartItems .sub-link:after {
  font-family: "Font Awesome 5 Free";
  content: "\F056";
  font-weight: 600;
  color: #000;
  font-size: 16px;
}

.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-coupon-wrapper,
.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-summary-wrapper,
.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-estimate-wrapper {
  padding: 0.5rem 1rem;
}

.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-coupon-wrapper .tax-tooltip,
.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-summary-wrapper .tax-tooltip,
.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-estimate-wrapper .tax-tooltip {
  font-size: 14px;
}

.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-coupon-wrapper .headline,
.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-coupon-wrapper .EPiServerForms .Form__Title,
.EPiServerForms .shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-coupon-wrapper .Form__Title,
.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-summary-wrapper .headline,
.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-summary-wrapper .EPiServerForms .Form__Title,
.EPiServerForms .shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-summary-wrapper .Form__Title,
.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-estimate-wrapper .headline,
.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-estimate-wrapper .EPiServerForms .Form__Title,
.EPiServerForms .shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-estimate-wrapper .Form__Title {
  margin-bottom: 0;
}

.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-coupon-wrapper a:hover,
.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-summary-wrapper a:hover,
.shopping-cart-page-wrapper #shoppingCartItems .shopping-cart-estimate-wrapper a:hover {
  text-decoration: none;
}

.checkout-page .checkout-summary-wrapper label {
  margin-bottom: 0;
}

.checkout-page .checkout-navigation-wrapper .checkout-navigation {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 0;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #fff;
}

.checkout-page .checkout-navigation-wrapper .checkout-navigation-item {
  font-weight: 600;
  font-size: 12px;
  color: #da2128;
  letter-spacing: 0.48px;
  line-height: 26px;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
}

.checkout-page .checkout-navigation-wrapper .checkout-navigation-item + .checkout-navigation-item {
  padding-left: 0.5rem;
}

.checkout-page .checkout-navigation-wrapper .checkout-navigation-item + .checkout-navigation-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #bab4c0;
  content: ">";
}

.checkout-page .checkout-navigation-wrapper .checkout-navigation-item + .checkout-navigation-item:hover::before {
  text-decoration: underline;
}

.checkout-page .checkout-navigation-wrapper .checkout-navigation-item + .checkout-navigation-item:hover::before {
  text-decoration: none;
}

.checkout-page .checkout-navigation-wrapper .checkout-navigation-item.active {
  color: #191a37;
  cursor: default;
}

.checkout-page .checkout-navigation-wrapper .checkout-navigation-item.disabled {
  color: #bab4c0;
  cursor: default;
}

.checkout-page .shipping-method .shipping-method-description {
  margin-left: 28px;
}

.checkout-page .checkout-cart-item {
  background-color: #dcddde;
}

.checkout-page .checkout-cart-item label {
  margin-bottom: .25rem;
}

.checkout-page .checkout-cart-item .item-img {
  height: 102px;
  aspect-ratio: 16 / 9;
  margin-right: 1rem;
}

.checkout-page .checkout-cart-item .qty-option {
  max-width: 100px;
  margin-right: 1rem;
}

.checkout-page .checkout-cart-item .btn-link:hover {
  text-decoration: none;
}

.checkout-page .coupon-container {
  display: flex;
  justify-content: start;
  align-items: center;
}

.checkout-page .coupon-container button {
  margin-left: 1rem;
}

#typeahead-results {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 100000;
  background: white;
  width: 100%;
}

#typeahead-results h5,
#typeahead-results a {
  display: block;
}

.typeahead-results-list.view-all {
  padding: 1rem 1.25rem;
  text-align: center;
  background-color: #191a37;
  color: #fff;
  position: fixed;
  width: 100%;
  bottom: 0;
}

@media (min-width: 992px) {
  .typeahead-results-list.view-all {
    position: relative;
    width: auto;
  }
}

.typeahead-results-list.view-all a {
  text-transform: uppercase;
  color: #fff;
}

.typeahead-results-list.view-all a:hover {
  text-decoration: none !important;
  color: #fff !important;
}

.typeahead-results-list.view-all a::after {
  content: url(/fe/dist/css/../fonts/icon-arrow-right-white.svg);
  padding-left: 15px;
  vertical-align: middle;
}

.typeahead-result-wrapper a {
  color: #fff;
  font-weight: 500;
  padding-left: 3.5em;
  padding-bottom: 15px;
}

@media (min-width: 992px) {
  .typeahead-result-wrapper a {
    color: #000;
    text-align: left;
    padding-left: 2.5em;
  }
}

.typeahead-result-wrapper a:hover {
  text-decoration: none;
}

.typeahead-result-wrapper img {
  max-height: 30px;
  margin-right: 10px;
}

#typeahead-mobile-wrapper {
  position: relative;
  width: 100%;
  background: #000;
  z-index: 1000;
}

#typeahead-mobile-wrapper #navbar-search {
  background: #000;
  height: 55px;
  border: none;
  font-weight: 400;
}

#typeahead-mobile-wrapper #navbar-search::placeholder {
  color: #fff;
  font-weight: 400;
}

#typeahead-mobile-results-search-wrapper #navbar-mini-search-button {
  transform: scaleX(-1);
}

#typeahead-mobile-results-search-wrapper #navbar-mini-search-button .fa-search {
  font-size: 30px;
}

#typeahead-mobile-results-search-wrapper #navbar-mini-search-button .fa-search::before {
  content: url(/fe/dist/css/../fonts/search-white.svg);
}

#typeahead-mobile-results-search-wrapper #typeahead-results {
  overflow-y: scroll;
  position: fixed;
  top: 153px;
  bottom: 0;
  height: 100vh;
  background: #000;
}

#typeahead-mobile-results-search-wrapper #typeahead-results .typeahead-results-list {
  border-bottom: 2px;
}

#navbar-mini-search-button {
  background-color: transparent;
  border: 0;
  font-size: 1.25em;
  padding-top: 10px;
  padding-bottom: 10px;
}

#navbar-mini-search-button:hover {
  cursor: pointer;
}

.typeahead-close-btn {
  position: absolute;
  right: 20%;
  top: 31px;
  border: none;
}

.search-app {
  padding-bottom: 1rem;
}

.search-app .banner-wrapper {
  position: relative;
  margin-bottom: 1em;
}

.search-app .tab-container {
  background-color: #dcddde;
}

.search-app .tab-container .tab {
  border: 0;
  border-left: 1px solid #9d9fa2;
  border-top: 1px solid #9d9fa2;
  border-right: 1px solid #9d9fa2;
  padding: .5rem 1rem;
  margin-top: 2rem;
  margin-right: 1rem;
  color: #191a37;
  font-size: 23px;
  font-weight: bold;
}

.search-app .tab-container .tab.active {
  background: #fff;
  border: 0;
}

.search-app .tab-container .tab .count {
  font-weight: normal;
  font-size: 18px;
}

.search-app .search-results-text .search-string {
  color: #453d56;
}

.search-app .search-result-img {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
}

.search-app .search-result-img img {
  height: 242px;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 992px) {
  .search-app .search-result-img img {
    height: 155px;
  }
}

.search-app .category-list-pagination-wrapper .pagination-dropdown-wrapper {
  justify-content: space-between;
}

.search-app .pagination-wrapper .total-results,
.search-app .category-list-pagination-wrapper .total-results {
  font-weight: 600;
}

.search-app .pagination-wrapper #sort-by-dropdown > button,
.search-app .category-list-pagination-wrapper #sort-by-dropdown > button {
  border: 1px solid #9d9fa2;
  background: #191a37;
  color: #fff;
  min-width: 190px;
  letter-spacing: 1.4px;
}

.search-app .pagination-wrapper #sort-by-dropdown > button .sort-by,
.search-app .category-list-pagination-wrapper #sort-by-dropdown > button .sort-by {
  text-transform: uppercase;
  font-size: 14px;
  text-align: left;
}

.search-app .pagination-wrapper #sort-by-dropdown > button .sort-by-selection,
.search-app .category-list-pagination-wrapper #sort-by-dropdown > button .sort-by-selection {
  text-transform: capitalize !important;
}

.search-app .pagination-wrapper #sort-by-dropdown .fa-chevron-down,
.search-app .category-list-pagination-wrapper #sort-by-dropdown .fa-chevron-down {
  font-size: 16px;
}

.search-app .pagination-wrapper #sort-by-dropdown .dropdown-menu,
.search-app .category-list-pagination-wrapper #sort-by-dropdown .dropdown-menu {
  padding: 0;
  letter-spacing: 1.4px;
}

.search-app .pagination-wrapper #sort-by-dropdown .dropdown-menu .dropdown-item,
.search-app .category-list-pagination-wrapper #sort-by-dropdown .dropdown-menu .dropdown-item {
  letter-spacing: 1.4px;
}

.search-app .pagination-wrapper #sort-by-dropdown .dropdown-menu .dropdown-item:hover,
.search-app .category-list-pagination-wrapper #sort-by-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #9d9fa2;
  color: #fff;
}

.search-app .pagination-wrapper .filter-sort-wrapper,
.search-app .category-list-pagination-wrapper .filter-sort-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .search-app .pagination-wrapper .filter-sort-wrapper,
  .search-app .category-list-pagination-wrapper .filter-sort-wrapper {
    flex-wrap: nowrap;
  }
}

.search-app .pagination-wrapper .pagination-dropdown-wrapper,
.search-app .category-list-pagination-wrapper .pagination-dropdown-wrapper {
  flex-shrink: 0;
  justify-content: space-between !important;
}

.search-app .selected-facets {
  display: flex;
}

.search-app .selected-facets .filter-by-label {
  padding-left: 15px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.search-app .selected-facets .selected-facet {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 37px;
  width: 233px;
  background-color: #dcddde;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
  margin: 10px;
}

.search-app .selected-facets .selected-facet .facet-text {
  padding-right: .25rem;
  padding-top: 10px;
  padding-bottom: 10px;
}

.search-app .selected-facets .selected-facet i {
  color: #da2128;
  background-color: #fff;
  border-radius: 10px;
  font-size: 16px;
  height: 12px;
  width: 12px;
}

.search-app .article-search-article-item-wrapper .article-list-wrapper .text-sm-left {
  font-size: 14px;
}

@media (min-width: 992px) {
  .search-app .article-search-article-item-wrapper .article-list-wrapper .row:last-child .item-tile,
  .search-app .article-search-article-item-wrapper .article-list-wrapper .flickity-slider:last-child .item-tile {
    border-bottom: 1px solid #000;
  }
}

@media (min-width: 992px) {
  .search-app .article-search-article-item-wrapper .article-list-wrapper .item-tile {
    border-top: 1px solid #000;
  }
}

.search-app .article-search-article-item-wrapper .article-list-wrapper .item-tile:last-child {
  border-bottom: 1px solid #000;
}

.search-app .article-search-article-item-wrapper .article-list-wrapper .item-tile:hover {
  color: #000 !important;
}

.search-app .facets .facet {
  padding: 1rem 0;
  border-bottom: 1px solid #9d9fa2;
}

.search-app .facets .facet input {
  width: 13px;
  min-width: 13px;
  height: 13px;
  margin-right: .5rem;
}

.search-app .facets .facet .facet-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-top: #000 solid 1px;
  border-bottom: #000 solid 1px;
}

.search-app .facets .facet .facet-header .expand-button {
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-app .facets .facet .facet-header .expand-button::before {
  top: 0;
}

.search-app .facets .facet .facet-header span {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.search-app .facets .facet .facet-header i {
  margin-right: .5rem;
}

.search-app .facets .facet .facet-header .accordion-icon-plus:after {
  content: url(/fe/dist/css/../fonts/icon-accordion-alt-plus.svg);
  width: 21px;
  height: 21px;
  display: flex;
  margin-left: 0.5rem;
}

.search-app .facets .facet .facet-header .accordion-icon-minus:after {
  content: url(/fe/dist/css/../fonts/icon-minus-small.svg);
  width: 21px;
  height: 21px;
  display: flex;
  margin-left: 0.5rem;
}

.search-app .facets .facet .facet-header:hover,
.search-app .facets .facet input:hover,
.search-app .facets .facet label:hover {
  cursor: pointer;
}

.search-app .facets .facet:first-child {
  padding-top: 0;
}

.search-app .facets .facet:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.search-app .facets .facet .facet-values {
  margin-top: 1rem;
}

.search-app .facets .facet .facet-values .facet-value {
  align-items: center;
  margin-left: 0.5rem;
  font-size: 15px;
}

.search-app .facets .facet .facet-values .facet-value label {
  margin-bottom: 0;
}

.search-app .facets .facet .facet-values .toggle-show-more-button {
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
}

.search-app .selected-attributes {
  padding-top: 0.5rem;
  padding-bottom: 1.25rem;
}

.search-app .product-list-wrapper .results-wrapper-bottom {
  font-weight: 600;
  padding-top: 2rem;
}

.search-app .product-list-wrapper .load-more-wrapper button.btn.btn-secondary,
.search-app .product-list-wrapper .load-more-wrapper .EPiServerForms .Form__MainBody button.btn-secondary,
.EPiServerForms .Form__MainBody .search-app .product-list-wrapper .load-more-wrapper button.btn-secondary,
.search-app .product-list-wrapper .load-more-wrapper .elq-form button.btn-secondary.submit-button-style,
.elq-form .search-app .product-list-wrapper .load-more-wrapper button.btn-secondary.submit-button-style {
  background-color: #191a37;
  width: 135px;
}

.search-app .product-list-wrapper .product-list .row:first-child .result-tile-borders,
.search-app .product-list-wrapper .product-list .flickity-slider:first-child .result-tile-borders {
  border-top: 1px solid;
}

.search-app .product-list-wrapper .product-list .row .result-tile-borders,
.search-app .product-list-wrapper .product-list .flickity-slider .result-tile-borders {
  border-bottom: 1px solid;
}

.search-app .product-tile {
  font-size: 17px;
  color: #191a37;
  position: relative;
  min-height: 430px;
}

.search-app .product-tile h3.headline:hover,
.search-app .product-tile .EPiServerForms h3.Form__Title:hover,
.EPiServerForms .search-app .product-tile h3.Form__Title:hover {
  text-decoration: underline;
}

.search-app .product-tile:hover {
  color: #191a37 !important;
}

@media (min-width: 992px) {
  .search-app .product-tile {
    min-height: 200px;
    height: auto;
  }
}

.search-app .item-tile {
  color: #191a37;
  padding-top: 15px;
  padding-bottom: 15px;
}

.search-app .item-tile .product-tile-inner {
  height: 100%;
}

@media (min-width: 768px) {
  .search-app .item-tile .product-tile-inner {
    display: flex;
  }
}

.search-app .item-tile .product-tile-inner .img-bg {
  height: 110px;
  width: 110px;
  background-color: #fff;
  margin: 0 0 15px 0;
  flex-grow: 0;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 768px) {
  .search-app .item-tile .product-tile-inner .img-bg {
    margin: 0 25px 0 0;
    height: 157px;
    width: 278px;
  }
}

.search-app .item-tile .product-tile-inner .description {
  width: 100%;
  font-size: 16px;
  letter-spacing: 0;
}

.search-app .item-tile .product-tile-inner .description p,
.search-app .item-tile .product-tile-inner .description .EPiServerForms .Form__Description,
.EPiServerForms .search-app .item-tile .product-tile-inner .description .Form__Description {
  margin-bottom: .5rem;
}

.search-app .item-tile .product-tile-inner .description p:last-child,
.search-app .item-tile .product-tile-inner .description .EPiServerForms .Form__Description:last-child,
.EPiServerForms .search-app .item-tile .product-tile-inner .description .Form__Description:last-child {
  margin-bottom: 0;
}

.search-app .item-tile .product-tile-inner .sub-name {
  font-size: 19px;
}

.search-app .item-tile .product-tile-inner .sub-name,
.search-app .item-tile .product-tile-inner .spec-heading {
  font-weight: bold;
}

.search-app .item-tile .product-tile-inner .spec-heading {
  opacity: 0.85;
}

.search-app .item-tile .product-tile-inner .end {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .search-app .item-tile .product-tile-inner .end .code {
    position: absolute;
    top: 15px;
    right: 15px;
  }
}

.search-app .item-tile .product-tile-inner .end .code i {
  color: #191a37 !important;
}

.search-app .item-tile .product-tile-inner .end .code i:hover {
  color: #191a37 !important;
}

.search-app .item-tile .product-tile-inner .end .arrow {
  margin-top: auto;
}

.search-app .item-tile .product-tile-inner .end .arrow i {
  float: right;
}

.search-app .item-tile .product-tile-inner .end .arrow i:after {
  content: url(/static/img/icons-26-x-26-arrow.svg);
}

.search-app .item-tile .product-tile-inner .end .arrow i:hover:after {
  content: url(/static/img/icons-26-x-26-arrow-red.svg);
}

.search-app .item-tile .product-tile-inner h4 {
  color: #453d56;
  font-size: 29px;
  font-weight: bold;
}

.search-app .item-tile .product-tile-inner .p-format {
  padding-top: 0.5rem;
  letter-spacing: 1.4px;
  bottom: 0;
  font-size: 14px;
}

.search-app .item-tile .product-tile-inner .fa.fa-check {
  color: #da2128;
}

.search-app .item-tile i {
  color: #191a37;
}

.search-app .item-tile:hover {
  cursor: pointer;
  text-decoration: none;
}

.search-app .item-tile:hover .product-tile-inner .end .arrow i:after {
  content: url(/static/img/icons-26-x-26-arrow-red.svg);
}

.search-app .combined-search-wrapper .nav.nav-tabs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: none;
}

.search-app .combined-search-wrapper .nav.nav-tabs li.nav-item:not(:first-child) {
  margin-left: 1rem;
}

.search-app .combined-search-wrapper .nav.nav-tabs li.nav-item {
  width: 125px;
  flex: none;
}

.search-app .combined-search-wrapper .nav.nav-tabs li.nav-item .nav-link {
  color: #191a37;
  background-color: #bab4c0;
}

.search-app .combined-search-wrapper .nav.nav-tabs li.nav-item .nav-link.active {
  background-color: #191a37;
  color: #fff;
}


/*# sourceMappingURL=app.css.map*/