

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.625rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

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

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

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

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

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

.row {
  --bs-gutter-x: 1.625rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

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

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

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

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

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

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

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

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

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

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

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

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

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

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.col-form-label {
  padding-top: calc(0.543rem + var(--bs-border-width));
  padding-bottom: calc(0.543rem + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.375;
  color: var(--bs-heading-color);
}

.col-form-label-lg {
  padding-top: calc(0.7075rem + var(--bs-border-width));
  padding-bottom: calc(0.7075rem + var(--bs-border-width));
  font-size: 1.0625rem;
}

.col-form-label-sm {
  padding-top: calc(0.3165rem + var(--bs-border-width));
  padding-bottom: calc(0.3165rem + var(--bs-border-width));
  font-size: 0.8125rem;
}

.row-bordered {
  overflow: hidden;
}

.row-bordered > .col,
.row-bordered > [class^=col-],
.row-bordered > [class*=" col-"],
.row-bordered > [class^="col "],
.row-bordered > [class*=" col "],
.row-bordered > [class$=" col"],
.row-bordered > [class=col] {
  position: relative;
  padding-block-start: 1px;
}

.row-bordered > .col::before,
.row-bordered > [class^=col-]::before,
.row-bordered > [class*=" col-"]::before,
.row-bordered > [class^="col "]::before,
.row-bordered > [class*=" col "]::before,
.row-bordered > [class$=" col"]::before,
.row-bordered > [class=col]::before {
  position: absolute;
  display: block;
  block-size: 0;
  border-block-start: 1px solid var(--bs-border-color);
  content: "";
  inset-block-end: -1px;
  inset-inline: 0;
}

.row-bordered > .col::after,
.row-bordered > [class^=col-]::after,
.row-bordered > [class*=" col-"]::after,
.row-bordered > [class^="col "]::after,
.row-bordered > [class*=" col "]::after,
.row-bordered > [class$=" col"]::after,
.row-bordered > [class=col]::after {
  position: absolute;
  display: block;
  border-inline-start: 1px solid var(--bs-border-color);
  content: "";
  inline-size: 0;
  inset-block: 0;
  inset-inline-start: -1px;
}

.row-bordered.row-border-light > .col::before, .row-bordered.row-border-light > .col::after,
.row-bordered.row-border-light > [class^=col-]::before,
.row-bordered.row-border-light > [class^=col-]::after,
.row-bordered.row-border-light > [class*=" col-"]::before,
.row-bordered.row-border-light > [class*=" col-"]::after,
.row-bordered.row-border-light > [class^="col "]::before,
.row-bordered.row-border-light > [class^="col "]::after,
.row-bordered.row-border-light > [class*=" col "]::before,
.row-bordered.row-border-light > [class*=" col "]::after,
.row-bordered.row-border-light > [class$=" col"]::before,
.row-bordered.row-border-light > [class$=" col"]::after,
.row-bordered.row-border-light > [class=col]::before,
.row-bordered.row-border-light > [class=col]::after {
  border-color: var(--theme-color-8);
}

.container-p-x {
  padding-inline: 1rem !important;
}

@media (min-width: 992px) {
  .container-p-x {
    padding-inline: 1.625rem !important;
  }
}

.container-m-nx {
  margin-inline: -1rem !important;
}

@media (min-width: 992px) {
  .container-m-nx {
    margin-inline: -1.625rem !important;
  }
}

.container-p-y:not([class^=pt-]):not([class*=" pt-"]) {
  padding-block-start: 1.5rem !important;
}

.container-p-y:not([class^=pb-]):not([class*=" pb-"]) {
  padding-block-end: 1.5rem !important;
}

.container-m-ny:not([class^=mt-]):not([class*=" mt-"]) {
  margin-block-start: -1.5rem !important;
}

.container-m-ny:not([class^=mb-]):not([class*=" mb-"]) {
  margin-block-end: -1.5rem !important;
}

.col-form-label {
  white-space: nowrap;
}

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

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !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;
}

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

.w-px-18 {
  width: 18px !important;
}

.w-px-20 {
  width: 20px !important;
}

.w-px-26 {
  width: 26px !important;
}

.w-px-30 {
  width: 30px !important;
}

.w-px-34 {
  width: 34px !important;
}

.w-px-40 {
  width: 40px !important;
}

.w-px-42 {
  width: 42px !important;
}

.w-px-44 {
  width: 44px !important;
}

.w-px-50 {
  width: 50px !important;
}

.w-px-52 {
  width: 52px !important;
}

.w-px-75 {
  width: 75px !important;
}

.w-px-100 {
  width: 100px !important;
}

.w-px-120 {
  width: 120px !important;
}

.w-px-150 {
  width: 150px !important;
}

.w-px-160 {
  width: 160px !important;
}

.w-px-200 {
  width: 200px !important;
}

.w-px-250 {
  width: 250px !important;
}

.w-px-300 {
  width: 300px !important;
}

.w-px-350 {
  width: 350px !important;
}

.w-px-400 {
  width: 400px !important;
}

.w-px-500 {
  width: 500px !important;
}

.w-px-600 {
  width: 600px !important;
}

.w-px-700 {
  width: 700px !important;
}

.w-px-800 {
  width: 800px !important;
}

.w-auto {
  width: auto !important;
}

.w-20 {
  width: 20% !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-60 {
  width: 60% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.h-px-18 {
  height: 18px !important;
}

.h-px-20 {
  height: 20px !important;
}

.h-px-26 {
  height: 26px !important;
}

.h-px-30 {
  height: 30px !important;
}

.h-px-34 {
  height: 34px !important;
}

.h-px-40 {
  height: 40px !important;
}

.h-px-42 {
  height: 42px !important;
}

.h-px-44 {
  height: 44px !important;
}

.h-px-50 {
  height: 50px !important;
}

.h-px-52 {
  height: 52px !important;
}

.h-px-75 {
  height: 75px !important;
}

.h-px-100 {
  height: 100px !important;
}

.h-px-120 {
  height: 120px !important;
}

.h-px-150 {
  height: 150px !important;
}

.h-px-160 {
  height: 160px !important;
}

.h-px-200 {
  height: 200px !important;
}

.h-px-250 {
  height: 250px !important;
}

.h-px-300 {
  height: 300px !important;
}

.h-px-350 {
  height: 350px !important;
}

.h-px-400 {
  height: 400px !important;
}

.h-px-500 {
  height: 500px !important;
}

.h-px-600 {
  height: 600px !important;
}

.h-px-700 {
  height: 700px !important;
}

.h-px-800 {
  height: 800px !important;
}

.h-auto {
  height: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-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;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !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;
}

.justify-content-evenly {
  justify-content: space-evenly !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;
}

.m-0 {
  margin: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-inline-end: 0 !important;
  margin-inline-start: 0 !important;
}

.mx-50 {
  margin-inline-end: 0.125rem !important;
  margin-inline-start: 0.125rem !important;
}

.mx-1 {
  margin-inline-end: 0.25rem !important;
  margin-inline-start: 0.25rem !important;
}

.mx-1_5 {
  margin-inline-end: 0.375rem !important;
  margin-inline-start: 0.375rem !important;
}

.mx-2 {
  margin-inline-end: 0.5rem !important;
  margin-inline-start: 0.5rem !important;
}

.mx-3 {
  margin-inline-end: 0.75rem !important;
  margin-inline-start: 0.75rem !important;
}

.mx-4 {
  margin-inline-end: 1rem !important;
  margin-inline-start: 1rem !important;
}

.mx-5 {
  margin-inline-end: 1.25rem !important;
  margin-inline-start: 1.25rem !important;
}

.mx-6 {
  margin-inline-end: 1.5rem !important;
  margin-inline-start: 1.5rem !important;
}

.mx-7 {
  margin-inline-end: 1.75rem !important;
  margin-inline-start: 1.75rem !important;
}

.mx-8 {
  margin-inline-end: 2rem !important;
  margin-inline-start: 2rem !important;
}

.mx-9 {
  margin-inline-end: 2.25rem !important;
  margin-inline-start: 2.25rem !important;
}

.mx-10 {
  margin-inline-end: 2.5rem !important;
  margin-inline-start: 2.5rem !important;
}

.mx-11 {
  margin-inline-end: 2.75rem !important;
  margin-inline-start: 2.75rem !important;
}

.mx-12 {
  margin-inline-end: 3rem !important;
  margin-inline-start: 3rem !important;
}

.mx-auto {
  margin-inline-end: auto !important;
  margin-inline-start: auto !important;
}

.my-0 {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.my-50 {
  margin-block-start: 0.125rem !important;
  margin-block-end: 0.125rem !important;
}

.my-1 {
  margin-block-start: 0.25rem !important;
  margin-block-end: 0.25rem !important;
}

.my-1_5 {
  margin-block-start: 0.375rem !important;
  margin-block-end: 0.375rem !important;
}

.my-2 {
  margin-block-start: 0.5rem !important;
  margin-block-end: 0.5rem !important;
}

.my-3 {
  margin-block-start: 0.75rem !important;
  margin-block-end: 0.75rem !important;
}

.my-4 {
  margin-block-start: 1rem !important;
  margin-block-end: 1rem !important;
}

.my-5 {
  margin-block-start: 1.25rem !important;
  margin-block-end: 1.25rem !important;
}

.my-6 {
  margin-block-start: 1.5rem !important;
  margin-block-end: 1.5rem !important;
}

.my-7 {
  margin-block-start: 1.75rem !important;
  margin-block-end: 1.75rem !important;
}

.my-8 {
  margin-block-start: 2rem !important;
  margin-block-end: 2rem !important;
}

.my-9 {
  margin-block-start: 2.25rem !important;
  margin-block-end: 2.25rem !important;
}

.my-10 {
  margin-block-start: 2.5rem !important;
  margin-block-end: 2.5rem !important;
}

.my-11 {
  margin-block-start: 2.75rem !important;
  margin-block-end: 2.75rem !important;
}

.my-12 {
  margin-block-start: 3rem !important;
  margin-block-end: 3rem !important;
}

.my-auto {
  margin-block-start: auto !important;
  margin-block-end: auto !important;
}

.mt-0 {
  margin-block-start: 0 !important;
}

.mt-50 {
  margin-block-start: 0.125rem !important;
}

.mt-1 {
  margin-block-start: 0.25rem !important;
}

.mt-1_5 {
  margin-block-start: 0.375rem !important;
}

.mt-2 {
  margin-block-start: 0.5rem !important;
}

.mt-3 {
  margin-block-start: 0.75rem !important;
}

.mt-4 {
  margin-block-start: 1rem !important;
}

.mt-5 {
  margin-block-start: 1.25rem !important;
}

.mt-6 {
  margin-block-start: 1.5rem !important;
}

.mt-7 {
  margin-block-start: 1.75rem !important;
}

.mt-8 {
  margin-block-start: 2rem !important;
}

.mt-9 {
  margin-block-start: 2.25rem !important;
}

.mt-10 {
  margin-block-start: 2.5rem !important;
}

.mt-11 {
  margin-block-start: 2.75rem !important;
}

.mt-12 {
  margin-block-start: 3rem !important;
}

.mt-auto {
  margin-block-start: auto !important;
}

.mb-0 {
  margin-block-end: 0 !important;
}

.mb-50 {
  margin-block-end: 0.125rem !important;
}

.mb-1 {
  margin-block-end: 0.25rem !important;
}

.mb-1_5 {
  margin-block-end: 0.375rem !important;
}

.mb-2 {
  margin-block-end: 0.5rem !important;
}

.mb-3 {
  margin-block-end: 0.75rem !important;
}

.mb-4 {
  margin-block-end: 1rem !important;
}

.mb-5 {
  margin-block-end: 1.25rem !important;
}

.mb-6 {
  margin-block-end: 1.5rem !important;
}

.mb-7 {
  margin-block-end: 1.75rem !important;
}

.mb-8 {
  margin-block-end: 2rem !important;
}

.mb-9 {
  margin-block-end: 2.25rem !important;
}

.mb-10 {
  margin-block-end: 2.5rem !important;
}

.mb-11 {
  margin-block-end: 2.75rem !important;
}

.mb-12 {
  margin-block-end: 3rem !important;
}

.mb-auto {
  margin-block-end: auto !important;
}

.m-n50 {
  margin: -0.125rem !important;
}

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

.m-n1_5 {
  margin: -0.375rem !important;
}

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

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

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

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

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

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

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

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

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

.m-n11 {
  margin: -2.75rem !important;
}

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

.mx-n50 {
  margin-inline-end: -0.125rem !important;
  margin-inline-start: -0.125rem !important;
}

.mx-n1 {
  margin-inline-end: -0.25rem !important;
  margin-inline-start: -0.25rem !important;
}

.mx-n1_5 {
  margin-inline-end: -0.375rem !important;
  margin-inline-start: -0.375rem !important;
}

.mx-n2 {
  margin-inline-end: -0.5rem !important;
  margin-inline-start: -0.5rem !important;
}

.mx-n3 {
  margin-inline-end: -0.75rem !important;
  margin-inline-start: -0.75rem !important;
}

.mx-n4 {
  margin-inline-end: -1rem !important;
  margin-inline-start: -1rem !important;
}

.mx-n5 {
  margin-inline-end: -1.25rem !important;
  margin-inline-start: -1.25rem !important;
}

.mx-n6 {
  margin-inline-end: -1.5rem !important;
  margin-inline-start: -1.5rem !important;
}

.mx-n7 {
  margin-inline-end: -1.75rem !important;
  margin-inline-start: -1.75rem !important;
}

.mx-n8 {
  margin-inline-end: -2rem !important;
  margin-inline-start: -2rem !important;
}

.mx-n9 {
  margin-inline-end: -2.25rem !important;
  margin-inline-start: -2.25rem !important;
}

.mx-n10 {
  margin-inline-end: -2.5rem !important;
  margin-inline-start: -2.5rem !important;
}

.mx-n11 {
  margin-inline-end: -2.75rem !important;
  margin-inline-start: -2.75rem !important;
}

.mx-n12 {
  margin-inline-end: -3rem !important;
  margin-inline-start: -3rem !important;
}

.my-n50 {
  margin-block-start: -0.125rem !important;
  margin-block-end: -0.125rem !important;
}

.my-n1 {
  margin-block-start: -0.25rem !important;
  margin-block-end: -0.25rem !important;
}

.my-n1_5 {
  margin-block-start: -0.375rem !important;
  margin-block-end: -0.375rem !important;
}

.my-n2 {
  margin-block-start: -0.5rem !important;
  margin-block-end: -0.5rem !important;
}

.my-n3 {
  margin-block-start: -0.75rem !important;
  margin-block-end: -0.75rem !important;
}

.my-n4 {
  margin-block-start: -1rem !important;
  margin-block-end: -1rem !important;
}

.my-n5 {
  margin-block-start: -1.25rem !important;
  margin-block-end: -1.25rem !important;
}

.my-n6 {
  margin-block-start: -1.5rem !important;
  margin-block-end: -1.5rem !important;
}

.my-n7 {
  margin-block-start: -1.75rem !important;
  margin-block-end: -1.75rem !important;
}

.my-n8 {
  margin-block-start: -2rem !important;
  margin-block-end: -2rem !important;
}

.my-n9 {
  margin-block-start: -2.25rem !important;
  margin-block-end: -2.25rem !important;
}

.my-n10 {
  margin-block-start: -2.5rem !important;
  margin-block-end: -2.5rem !important;
}

.my-n11 {
  margin-block-start: -2.75rem !important;
  margin-block-end: -2.75rem !important;
}

.my-n12 {
  margin-block-start: -3rem !important;
  margin-block-end: -3rem !important;
}

.mt-n50 {
  margin-block-start: -0.125rem !important;
}

.mt-n1 {
  margin-block-start: -0.25rem !important;
}

.mt-n1_5 {
  margin-block-start: -0.375rem !important;
}

.mt-n2 {
  margin-block-start: -0.5rem !important;
}

.mt-n3 {
  margin-block-start: -0.75rem !important;
}

.mt-n4 {
  margin-block-start: -1rem !important;
}

.mt-n5 {
  margin-block-start: -1.25rem !important;
}

.mt-n6 {
  margin-block-start: -1.5rem !important;
}

.mt-n7 {
  margin-block-start: -1.75rem !important;
}

.mt-n8 {
  margin-block-start: -2rem !important;
}

.mt-n9 {
  margin-block-start: -2.25rem !important;
}

.mt-n10 {
  margin-block-start: -2.5rem !important;
}

.mt-n11 {
  margin-block-start: -2.75rem !important;
}

.mt-n12 {
  margin-block-start: -3rem !important;
}

.mb-n50 {
  margin-block-end: -0.125rem !important;
}

.mb-n1 {
  margin-block-end: -0.25rem !important;
}

.mb-n1_5 {
  margin-block-end: -0.375rem !important;
}

.mb-n2 {
  margin-block-end: -0.5rem !important;
}

.mb-n3 {
  margin-block-end: -0.75rem !important;
}

.mb-n4 {
  margin-block-end: -1rem !important;
}

.mb-n5 {
  margin-block-end: -1.25rem !important;
}

.mb-n6 {
  margin-block-end: -1.5rem !important;
}

.mb-n7 {
  margin-block-end: -1.75rem !important;
}

.mb-n8 {
  margin-block-end: -2rem !important;
}

.mb-n9 {
  margin-block-end: -2.25rem !important;
}

.mb-n10 {
  margin-block-end: -2.5rem !important;
}

.mb-n11 {
  margin-block-end: -2.75rem !important;
}

.mb-n12 {
  margin-block-end: -3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-50 {
  padding: 0.125rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.px-0 {
  padding-inline-end: 0 !important;
  padding-inline-start: 0 !important;
}

.px-50 {
  padding-inline-end: 0.125rem !important;
  padding-inline-start: 0.125rem !important;
}

.px-1 {
  padding-inline-end: 0.25rem !important;
  padding-inline-start: 0.25rem !important;
}

.px-1_5 {
  padding-inline-end: 0.375rem !important;
  padding-inline-start: 0.375rem !important;
}

.px-2 {
  padding-inline-end: 0.5rem !important;
  padding-inline-start: 0.5rem !important;
}

.px-3 {
  padding-inline-end: 0.75rem !important;
  padding-inline-start: 0.75rem !important;
}

.px-4 {
  padding-inline-end: 1rem !important;
  padding-inline-start: 1rem !important;
}

.px-5 {
  padding-inline-end: 1.25rem !important;
  padding-inline-start: 1.25rem !important;
}

.px-6 {
  padding-inline-end: 1.5rem !important;
  padding-inline-start: 1.5rem !important;
}

.px-7 {
  padding-inline-end: 1.75rem !important;
  padding-inline-start: 1.75rem !important;
}

.px-8 {
  padding-inline-end: 2rem !important;
  padding-inline-start: 2rem !important;
}

.px-9 {
  padding-inline-end: 2.25rem !important;
  padding-inline-start: 2.25rem !important;
}

.px-10 {
  padding-inline-end: 2.5rem !important;
  padding-inline-start: 2.5rem !important;
}

.px-11 {
  padding-inline-end: 2.75rem !important;
  padding-inline-start: 2.75rem !important;
}

.px-12 {
  padding-inline-end: 3rem !important;
  padding-inline-start: 3rem !important;
}

.py-0 {
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
}

.py-50 {
  padding-block-start: 0.125rem !important;
  padding-block-end: 0.125rem !important;
}

.py-1 {
  padding-block-start: 0.25rem !important;
  padding-block-end: 0.25rem !important;
}

.py-1_5 {
  padding-block-start: 0.375rem !important;
  padding-block-end: 0.375rem !important;
}

.py-2 {
  padding-block-start: 0.5rem !important;
  padding-block-end: 0.5rem !important;
}

.py-3 {
  padding-block-start: 0.75rem !important;
  padding-block-end: 0.75rem !important;
}

.py-4 {
  padding-block-start: 1rem !important;
  padding-block-end: 1rem !important;
}

.py-5 {
  padding-block-start: 1.25rem !important;
  padding-block-end: 1.25rem !important;
}

.py-6 {
  padding-block-start: 1.5rem !important;
  padding-block-end: 1.5rem !important;
}

.py-7 {
  padding-block-start: 1.75rem !important;
  padding-block-end: 1.75rem !important;
}

.py-8 {
  padding-block-start: 2rem !important;
  padding-block-end: 2rem !important;
}

.py-9 {
  padding-block-start: 2.25rem !important;
  padding-block-end: 2.25rem !important;
}

.py-10 {
  padding-block-start: 2.5rem !important;
  padding-block-end: 2.5rem !important;
}

.py-11 {
  padding-block-start: 2.75rem !important;
  padding-block-end: 2.75rem !important;
}

.py-12 {
  padding-block-start: 3rem !important;
  padding-block-end: 3rem !important;
}

.pt-0 {
  padding-block-start: 0 !important;
}

.pt-50 {
  padding-block-start: 0.125rem !important;
}

.pt-1 {
  padding-block-start: 0.25rem !important;
}

.pt-1_5 {
  padding-block-start: 0.375rem !important;
}

.pt-2 {
  padding-block-start: 0.5rem !important;
}

.pt-3 {
  padding-block-start: 0.75rem !important;
}

.pt-4 {
  padding-block-start: 1rem !important;
}

.pt-5 {
  padding-block-start: 1.25rem !important;
}

.pt-6 {
  padding-block-start: 1.5rem !important;
}

.pt-7 {
  padding-block-start: 1.75rem !important;
}

.pt-8 {
  padding-block-start: 2rem !important;
}

.pt-9 {
  padding-block-start: 2.25rem !important;
}

.pt-10 {
  padding-block-start: 2.5rem !important;
}

.pt-11 {
  padding-block-start: 2.75rem !important;
}

.pt-12 {
  padding-block-start: 3rem !important;
}

.pb-0 {
  padding-block-end: 0 !important;
}

.pb-50 {
  padding-block-end: 0.125rem !important;
}

.pb-1 {
  padding-block-end: 0.25rem !important;
}

.pb-1_5 {
  padding-block-end: 0.375rem !important;
}

.pb-2 {
  padding-block-end: 0.5rem !important;
}

.pb-3 {
  padding-block-end: 0.75rem !important;
}

.pb-4 {
  padding-block-end: 1rem !important;
}

.pb-5 {
  padding-block-end: 1.25rem !important;
}

.pb-6 {
  padding-block-end: 1.5rem !important;
}

.pb-7 {
  padding-block-end: 1.75rem !important;
}

.pb-8 {
  padding-block-end: 2rem !important;
}

.pb-9 {
  padding-block-end: 2.25rem !important;
}

.pb-10 {
  padding-block-end: 2.5rem !important;
}

.pb-11 {
  padding-block-end: 2.75rem !important;
}

.pb-12 {
  padding-block-end: 3rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-50 {
  gap: 0.125rem !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-1_5 {
  gap: 0.375rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 0.75rem !important;
}

.gap-4 {
  gap: 1rem !important;
}

.gap-5 {
  gap: 1.25rem !important;
}

.gap-6 {
  gap: 1.5rem !important;
}

.gap-7 {
  gap: 1.75rem !important;
}

.gap-8 {
  gap: 2rem !important;
}

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

.gap-12 {
  gap: 3rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-50 {
  row-gap: 0.125rem !important;
}

.row-gap-1 {
  row-gap: 0.25rem !important;
}

.row-gap-1_5 {
  row-gap: 0.375rem !important;
}

.row-gap-2 {
  row-gap: 0.5rem !important;
}

.row-gap-3 {
  row-gap: 0.75rem !important;
}

.row-gap-4 {
  row-gap: 1rem !important;
}

.row-gap-5 {
  row-gap: 1.25rem !important;
}

.row-gap-6 {
  row-gap: 1.5rem !important;
}

.row-gap-7 {
  row-gap: 1.75rem !important;
}

.row-gap-8 {
  row-gap: 2rem !important;
}

.row-gap-9 {
  row-gap: 2.25rem !important;
}

.row-gap-10 {
  row-gap: 2.5rem !important;
}

.row-gap-11 {
  row-gap: 2.75rem !important;
}

.row-gap-12 {
  row-gap: 3rem !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !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;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !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;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-50 {
    margin: 0.125rem !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-1_5 {
    margin: 0.375rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 0.75rem !important;
  }
  .m-sm-4 {
    margin: 1rem !important;
  }
  .m-sm-5 {
    margin: 1.25rem !important;
  }
  .m-sm-6 {
    margin: 1.5rem !important;
  }
  .m-sm-7 {
    margin: 1.75rem !important;
  }
  .m-sm-8 {
    margin: 2rem !important;
  }
  .m-sm-9 {
    margin: 2.25rem !important;
  }
  .m-sm-10 {
    margin: 2.5rem !important;
  }
  .m-sm-11 {
    margin: 2.75rem !important;
  }
  .m-sm-12 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-inline-end: 0 !important;
    margin-inline-start: 0 !important;
  }
  .mx-sm-50 {
    margin-inline-end: 0.125rem !important;
    margin-inline-start: 0.125rem !important;
  }
  .mx-sm-1 {
    margin-inline-end: 0.25rem !important;
    margin-inline-start: 0.25rem !important;
  }
  .mx-sm-1_5 {
    margin-inline-end: 0.375rem !important;
    margin-inline-start: 0.375rem !important;
  }
  .mx-sm-2 {
    margin-inline-end: 0.5rem !important;
    margin-inline-start: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-inline-end: 0.75rem !important;
    margin-inline-start: 0.75rem !important;
  }
  .mx-sm-4 {
    margin-inline-end: 1rem !important;
    margin-inline-start: 1rem !important;
  }
  .mx-sm-5 {
    margin-inline-end: 1.25rem !important;
    margin-inline-start: 1.25rem !important;
  }
  .mx-sm-6 {
    margin-inline-end: 1.5rem !important;
    margin-inline-start: 1.5rem !important;
  }
  .mx-sm-7 {
    margin-inline-end: 1.75rem !important;
    margin-inline-start: 1.75rem !important;
  }
  .mx-sm-8 {
    margin-inline-end: 2rem !important;
    margin-inline-start: 2rem !important;
  }
  .mx-sm-9 {
    margin-inline-end: 2.25rem !important;
    margin-inline-start: 2.25rem !important;
  }
  .mx-sm-10 {
    margin-inline-end: 2.5rem !important;
    margin-inline-start: 2.5rem !important;
  }
  .mx-sm-11 {
    margin-inline-end: 2.75rem !important;
    margin-inline-start: 2.75rem !important;
  }
  .mx-sm-12 {
    margin-inline-end: 3rem !important;
    margin-inline-start: 3rem !important;
  }
  .mx-sm-auto {
    margin-inline-end: auto !important;
    margin-inline-start: auto !important;
  }
  .my-sm-0 {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
  }
  .my-sm-50 {
    margin-block-start: 0.125rem !important;
    margin-block-end: 0.125rem !important;
  }
  .my-sm-1 {
    margin-block-start: 0.25rem !important;
    margin-block-end: 0.25rem !important;
  }
  .my-sm-1_5 {
    margin-block-start: 0.375rem !important;
    margin-block-end: 0.375rem !important;
  }
  .my-sm-2 {
    margin-block-start: 0.5rem !important;
    margin-block-end: 0.5rem !important;
  }
  .my-sm-3 {
    margin-block-start: 0.75rem !important;
    margin-block-end: 0.75rem !important;
  }
  .my-sm-4 {
    margin-block-start: 1rem !important;
    margin-block-end: 1rem !important;
  }
  .my-sm-5 {
    margin-block-start: 1.25rem !important;
    margin-block-end: 1.25rem !important;
  }
  .my-sm-6 {
    margin-block-start: 1.5rem !important;
    margin-block-end: 1.5rem !important;
  }
  .my-sm-7 {
    margin-block-start: 1.75rem !important;
    margin-block-end: 1.75rem !important;
  }
  .my-sm-8 {
    margin-block-start: 2rem !important;
    margin-block-end: 2rem !important;
  }
  .my-sm-9 {
    margin-block-start: 2.25rem !important;
    margin-block-end: 2.25rem !important;
  }
  .my-sm-10 {
    margin-block-start: 2.5rem !important;
    margin-block-end: 2.5rem !important;
  }
  .my-sm-11 {
    margin-block-start: 2.75rem !important;
    margin-block-end: 2.75rem !important;
  }
  .my-sm-12 {
    margin-block-start: 3rem !important;
    margin-block-end: 3rem !important;
  }
  .my-sm-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .mt-sm-0 {
    margin-block-start: 0 !important;
  }
  .mt-sm-50 {
    margin-block-start: 0.125rem !important;
  }
  .mt-sm-1 {
    margin-block-start: 0.25rem !important;
  }
  .mt-sm-1_5 {
    margin-block-start: 0.375rem !important;
  }
  .mt-sm-2 {
    margin-block-start: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-block-start: 0.75rem !important;
  }
  .mt-sm-4 {
    margin-block-start: 1rem !important;
  }
  .mt-sm-5 {
    margin-block-start: 1.25rem !important;
  }
  .mt-sm-6 {
    margin-block-start: 1.5rem !important;
  }
  .mt-sm-7 {
    margin-block-start: 1.75rem !important;
  }
  .mt-sm-8 {
    margin-block-start: 2rem !important;
  }
  .mt-sm-9 {
    margin-block-start: 2.25rem !important;
  }
  .mt-sm-10 {
    margin-block-start: 2.5rem !important;
  }
  .mt-sm-11 {
    margin-block-start: 2.75rem !important;
  }
  .mt-sm-12 {
    margin-block-start: 3rem !important;
  }
  .mt-sm-auto {
    margin-block-start: auto !important;
  }
  .mb-sm-0 {
    margin-block-end: 0 !important;
  }
  .mb-sm-50 {
    margin-block-end: 0.125rem !important;
  }
  .mb-sm-1 {
    margin-block-end: 0.25rem !important;
  }
  .mb-sm-1_5 {
    margin-block-end: 0.375rem !important;
  }
  .mb-sm-2 {
    margin-block-end: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-block-end: 0.75rem !important;
  }
  .mb-sm-4 {
    margin-block-end: 1rem !important;
  }
  .mb-sm-5 {
    margin-block-end: 1.25rem !important;
  }
  .mb-sm-6 {
    margin-block-end: 1.5rem !important;
  }
  .mb-sm-7 {
    margin-block-end: 1.75rem !important;
  }
  .mb-sm-8 {
    margin-block-end: 2rem !important;
  }
  .mb-sm-9 {
    margin-block-end: 2.25rem !important;
  }
  .mb-sm-10 {
    margin-block-end: 2.5rem !important;
  }
  .mb-sm-11 {
    margin-block-end: 2.75rem !important;
  }
  .mb-sm-12 {
    margin-block-end: 3rem !important;
  }
  .mb-sm-auto {
    margin-block-end: auto !important;
  }
  .m-sm-n50 {
    margin: -0.125rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .m-sm-n1_5 {
    margin: -0.375rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -0.75rem !important;
  }
  .m-sm-n4 {
    margin: -1rem !important;
  }
  .m-sm-n5 {
    margin: -1.25rem !important;
  }
  .m-sm-n6 {
    margin: -1.5rem !important;
  }
  .m-sm-n7 {
    margin: -1.75rem !important;
  }
  .m-sm-n8 {
    margin: -2rem !important;
  }
  .m-sm-n9 {
    margin: -2.25rem !important;
  }
  .m-sm-n10 {
    margin: -2.5rem !important;
  }
  .m-sm-n11 {
    margin: -2.75rem !important;
  }
  .m-sm-n12 {
    margin: -3rem !important;
  }
  .mx-sm-n50 {
    margin-inline-end: -0.125rem !important;
    margin-inline-start: -0.125rem !important;
  }
  .mx-sm-n1 {
    margin-inline-end: -0.25rem !important;
    margin-inline-start: -0.25rem !important;
  }
  .mx-sm-n1_5 {
    margin-inline-end: -0.375rem !important;
    margin-inline-start: -0.375rem !important;
  }
  .mx-sm-n2 {
    margin-inline-end: -0.5rem !important;
    margin-inline-start: -0.5rem !important;
  }
  .mx-sm-n3 {
    margin-inline-end: -0.75rem !important;
    margin-inline-start: -0.75rem !important;
  }
  .mx-sm-n4 {
    margin-inline-end: -1rem !important;
    margin-inline-start: -1rem !important;
  }
  .mx-sm-n5 {
    margin-inline-end: -1.25rem !important;
    margin-inline-start: -1.25rem !important;
  }
  .mx-sm-n6 {
    margin-inline-end: -1.5rem !important;
    margin-inline-start: -1.5rem !important;
  }
  .mx-sm-n7 {
    margin-inline-end: -1.75rem !important;
    margin-inline-start: -1.75rem !important;
  }
  .mx-sm-n8 {
    margin-inline-end: -2rem !important;
    margin-inline-start: -2rem !important;
  }
  .mx-sm-n9 {
    margin-inline-end: -2.25rem !important;
    margin-inline-start: -2.25rem !important;
  }
  .mx-sm-n10 {
    margin-inline-end: -2.5rem !important;
    margin-inline-start: -2.5rem !important;
  }
  .mx-sm-n11 {
    margin-inline-end: -2.75rem !important;
    margin-inline-start: -2.75rem !important;
  }
  .mx-sm-n12 {
    margin-inline-end: -3rem !important;
    margin-inline-start: -3rem !important;
  }
  .my-sm-n50 {
    margin-block-start: -0.125rem !important;
    margin-block-end: -0.125rem !important;
  }
  .my-sm-n1 {
    margin-block-start: -0.25rem !important;
    margin-block-end: -0.25rem !important;
  }
  .my-sm-n1_5 {
    margin-block-start: -0.375rem !important;
    margin-block-end: -0.375rem !important;
  }
  .my-sm-n2 {
    margin-block-start: -0.5rem !important;
    margin-block-end: -0.5rem !important;
  }
  .my-sm-n3 {
    margin-block-start: -0.75rem !important;
    margin-block-end: -0.75rem !important;
  }
  .my-sm-n4 {
    margin-block-start: -1rem !important;
    margin-block-end: -1rem !important;
  }
  .my-sm-n5 {
    margin-block-start: -1.25rem !important;
    margin-block-end: -1.25rem !important;
  }
  .my-sm-n6 {
    margin-block-start: -1.5rem !important;
    margin-block-end: -1.5rem !important;
  }
  .my-sm-n7 {
    margin-block-start: -1.75rem !important;
    margin-block-end: -1.75rem !important;
  }
  .my-sm-n8 {
    margin-block-start: -2rem !important;
    margin-block-end: -2rem !important;
  }
  .my-sm-n9 {
    margin-block-start: -2.25rem !important;
    margin-block-end: -2.25rem !important;
  }
  .my-sm-n10 {
    margin-block-start: -2.5rem !important;
    margin-block-end: -2.5rem !important;
  }
  .my-sm-n11 {
    margin-block-start: -2.75rem !important;
    margin-block-end: -2.75rem !important;
  }
  .my-sm-n12 {
    margin-block-start: -3rem !important;
    margin-block-end: -3rem !important;
  }
  .mt-sm-n50 {
    margin-block-start: -0.125rem !important;
  }
  .mt-sm-n1 {
    margin-block-start: -0.25rem !important;
  }
  .mt-sm-n1_5 {
    margin-block-start: -0.375rem !important;
  }
  .mt-sm-n2 {
    margin-block-start: -0.5rem !important;
  }
  .mt-sm-n3 {
    margin-block-start: -0.75rem !important;
  }
  .mt-sm-n4 {
    margin-block-start: -1rem !important;
  }
  .mt-sm-n5 {
    margin-block-start: -1.25rem !important;
  }
  .mt-sm-n6 {
    margin-block-start: -1.5rem !important;
  }
  .mt-sm-n7 {
    margin-block-start: -1.75rem !important;
  }
  .mt-sm-n8 {
    margin-block-start: -2rem !important;
  }
  .mt-sm-n9 {
    margin-block-start: -2.25rem !important;
  }
  .mt-sm-n10 {
    margin-block-start: -2.5rem !important;
  }
  .mt-sm-n11 {
    margin-block-start: -2.75rem !important;
  }
  .mt-sm-n12 {
    margin-block-start: -3rem !important;
  }
  .mb-sm-n50 {
    margin-block-end: -0.125rem !important;
  }
  .mb-sm-n1 {
    margin-block-end: -0.25rem !important;
  }
  .mb-sm-n1_5 {
    margin-block-end: -0.375rem !important;
  }
  .mb-sm-n2 {
    margin-block-end: -0.5rem !important;
  }
  .mb-sm-n3 {
    margin-block-end: -0.75rem !important;
  }
  .mb-sm-n4 {
    margin-block-end: -1rem !important;
  }
  .mb-sm-n5 {
    margin-block-end: -1.25rem !important;
  }
  .mb-sm-n6 {
    margin-block-end: -1.5rem !important;
  }
  .mb-sm-n7 {
    margin-block-end: -1.75rem !important;
  }
  .mb-sm-n8 {
    margin-block-end: -2rem !important;
  }
  .mb-sm-n9 {
    margin-block-end: -2.25rem !important;
  }
  .mb-sm-n10 {
    margin-block-end: -2.5rem !important;
  }
  .mb-sm-n11 {
    margin-block-end: -2.75rem !important;
  }
  .mb-sm-n12 {
    margin-block-end: -3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-50 {
    padding: 0.125rem !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-1_5 {
    padding: 0.375rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 0.75rem !important;
  }
  .p-sm-4 {
    padding: 1rem !important;
  }
  .p-sm-5 {
    padding: 1.25rem !important;
  }
  .p-sm-6 {
    padding: 1.5rem !important;
  }
  .p-sm-7 {
    padding: 1.75rem !important;
  }
  .p-sm-8 {
    padding: 2rem !important;
  }
  .p-sm-9 {
    padding: 2.25rem !important;
  }
  .p-sm-10 {
    padding: 2.5rem !important;
  }
  .p-sm-11 {
    padding: 2.75rem !important;
  }
  .p-sm-12 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-inline-end: 0 !important;
    padding-inline-start: 0 !important;
  }
  .px-sm-50 {
    padding-inline-end: 0.125rem !important;
    padding-inline-start: 0.125rem !important;
  }
  .px-sm-1 {
    padding-inline-end: 0.25rem !important;
    padding-inline-start: 0.25rem !important;
  }
  .px-sm-1_5 {
    padding-inline-end: 0.375rem !important;
    padding-inline-start: 0.375rem !important;
  }
  .px-sm-2 {
    padding-inline-end: 0.5rem !important;
    padding-inline-start: 0.5rem !important;
  }
  .px-sm-3 {
    padding-inline-end: 0.75rem !important;
    padding-inline-start: 0.75rem !important;
  }
  .px-sm-4 {
    padding-inline-end: 1rem !important;
    padding-inline-start: 1rem !important;
  }
  .px-sm-5 {
    padding-inline-end: 1.25rem !important;
    padding-inline-start: 1.25rem !important;
  }
  .px-sm-6 {
    padding-inline-end: 1.5rem !important;
    padding-inline-start: 1.5rem !important;
  }
  .px-sm-7 {
    padding-inline-end: 1.75rem !important;
    padding-inline-start: 1.75rem !important;
  }
  .px-sm-8 {
    padding-inline-end: 2rem !important;
    padding-inline-start: 2rem !important;
  }
  .px-sm-9 {
    padding-inline-end: 2.25rem !important;
    padding-inline-start: 2.25rem !important;
  }
  .px-sm-10 {
    padding-inline-end: 2.5rem !important;
    padding-inline-start: 2.5rem !important;
  }
  .px-sm-11 {
    padding-inline-end: 2.75rem !important;
    padding-inline-start: 2.75rem !important;
  }
  .px-sm-12 {
    padding-inline-end: 3rem !important;
    padding-inline-start: 3rem !important;
  }
  .py-sm-0 {
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
  }
  .py-sm-50 {
    padding-block-start: 0.125rem !important;
    padding-block-end: 0.125rem !important;
  }
  .py-sm-1 {
    padding-block-start: 0.25rem !important;
    padding-block-end: 0.25rem !important;
  }
  .py-sm-1_5 {
    padding-block-start: 0.375rem !important;
    padding-block-end: 0.375rem !important;
  }
  .py-sm-2 {
    padding-block-start: 0.5rem !important;
    padding-block-end: 0.5rem !important;
  }
  .py-sm-3 {
    padding-block-start: 0.75rem !important;
    padding-block-end: 0.75rem !important;
  }
  .py-sm-4 {
    padding-block-start: 1rem !important;
    padding-block-end: 1rem !important;
  }
  .py-sm-5 {
    padding-block-start: 1.25rem !important;
    padding-block-end: 1.25rem !important;
  }
  .py-sm-6 {
    padding-block-start: 1.5rem !important;
    padding-block-end: 1.5rem !important;
  }
  .py-sm-7 {
    padding-block-start: 1.75rem !important;
    padding-block-end: 1.75rem !important;
  }
  .py-sm-8 {
    padding-block-start: 2rem !important;
    padding-block-end: 2rem !important;
  }
  .py-sm-9 {
    padding-block-start: 2.25rem !important;
    padding-block-end: 2.25rem !important;
  }
  .py-sm-10 {
    padding-block-start: 2.5rem !important;
    padding-block-end: 2.5rem !important;
  }
  .py-sm-11 {
    padding-block-start: 2.75rem !important;
    padding-block-end: 2.75rem !important;
  }
  .py-sm-12 {
    padding-block-start: 3rem !important;
    padding-block-end: 3rem !important;
  }
  .pt-sm-0 {
    padding-block-start: 0 !important;
  }
  .pt-sm-50 {
    padding-block-start: 0.125rem !important;
  }
  .pt-sm-1 {
    padding-block-start: 0.25rem !important;
  }
  .pt-sm-1_5 {
    padding-block-start: 0.375rem !important;
  }
  .pt-sm-2 {
    padding-block-start: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-block-start: 0.75rem !important;
  }
  .pt-sm-4 {
    padding-block-start: 1rem !important;
  }
  .pt-sm-5 {
    padding-block-start: 1.25rem !important;
  }
  .pt-sm-6 {
    padding-block-start: 1.5rem !important;
  }
  .pt-sm-7 {
    padding-block-start: 1.75rem !important;
  }
  .pt-sm-8 {
    padding-block-start: 2rem !important;
  }
  .pt-sm-9 {
    padding-block-start: 2.25rem !important;
  }
  .pt-sm-10 {
    padding-block-start: 2.5rem !important;
  }
  .pt-sm-11 {
    padding-block-start: 2.75rem !important;
  }
  .pt-sm-12 {
    padding-block-start: 3rem !important;
  }
  .pb-sm-0 {
    padding-block-end: 0 !important;
  }
  .pb-sm-50 {
    padding-block-end: 0.125rem !important;
  }
  .pb-sm-1 {
    padding-block-end: 0.25rem !important;
  }
  .pb-sm-1_5 {
    padding-block-end: 0.375rem !important;
  }
  .pb-sm-2 {
    padding-block-end: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-block-end: 0.75rem !important;
  }
  .pb-sm-4 {
    padding-block-end: 1rem !important;
  }
  .pb-sm-5 {
    padding-block-end: 1.25rem !important;
  }
  .pb-sm-6 {
    padding-block-end: 1.5rem !important;
  }
  .pb-sm-7 {
    padding-block-end: 1.75rem !important;
  }
  .pb-sm-8 {
    padding-block-end: 2rem !important;
  }
  .pb-sm-9 {
    padding-block-end: 2.25rem !important;
  }
  .pb-sm-10 {
    padding-block-end: 2.5rem !important;
  }
  .pb-sm-11 {
    padding-block-end: 2.75rem !important;
  }
  .pb-sm-12 {
    padding-block-end: 3rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-50 {
    gap: 0.125rem !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-1_5 {
    gap: 0.375rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 0.75rem !important;
  }
  .gap-sm-4 {
    gap: 1rem !important;
  }
  .gap-sm-5 {
    gap: 1.25rem !important;
  }
  .gap-sm-6 {
    gap: 1.5rem !important;
  }
  .gap-sm-7 {
    gap: 1.75rem !important;
  }
  .gap-sm-8 {
    gap: 2rem !important;
  }
  .gap-sm-9 {
    gap: 2.25rem !important;
  }
  .gap-sm-10 {
    gap: 2.5rem !important;
  }
  .gap-sm-11 {
    gap: 2.75rem !important;
  }
  .gap-sm-12 {
    gap: 3rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-50 {
    row-gap: 0.125rem !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-1_5 {
    row-gap: 0.375rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-sm-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-7 {
    row-gap: 1.75rem !important;
  }
  .row-gap-sm-8 {
    row-gap: 2rem !important;
  }
  .row-gap-sm-9 {
    row-gap: 2.25rem !important;
  }
  .row-gap-sm-10 {
    row-gap: 2.5rem !important;
  }
  .row-gap-sm-11 {
    row-gap: 2.75rem !important;
  }
  .row-gap-sm-12 {
    row-gap: 3rem !important;
  }
}

@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !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;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !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;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-50 {
    margin: 0.125rem !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-1_5 {
    margin: 0.375rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 0.75rem !important;
  }
  .m-md-4 {
    margin: 1rem !important;
  }
  .m-md-5 {
    margin: 1.25rem !important;
  }
  .m-md-6 {
    margin: 1.5rem !important;
  }
  .m-md-7 {
    margin: 1.75rem !important;
  }
  .m-md-8 {
    margin: 2rem !important;
  }
  .m-md-9 {
    margin: 2.25rem !important;
  }
  .m-md-10 {
    margin: 2.5rem !important;
  }
  .m-md-11 {
    margin: 2.75rem !important;
  }
  .m-md-12 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-inline-end: 0 !important;
    margin-inline-start: 0 !important;
  }
  .mx-md-50 {
    margin-inline-end: 0.125rem !important;
    margin-inline-start: 0.125rem !important;
  }
  .mx-md-1 {
    margin-inline-end: 0.25rem !important;
    margin-inline-start: 0.25rem !important;
  }
  .mx-md-1_5 {
    margin-inline-end: 0.375rem !important;
    margin-inline-start: 0.375rem !important;
  }
  .mx-md-2 {
    margin-inline-end: 0.5rem !important;
    margin-inline-start: 0.5rem !important;
  }
  .mx-md-3 {
    margin-inline-end: 0.75rem !important;
    margin-inline-start: 0.75rem !important;
  }
  .mx-md-4 {
    margin-inline-end: 1rem !important;
    margin-inline-start: 1rem !important;
  }
  .mx-md-5 {
    margin-inline-end: 1.25rem !important;
    margin-inline-start: 1.25rem !important;
  }
  .mx-md-6 {
    margin-inline-end: 1.5rem !important;
    margin-inline-start: 1.5rem !important;
  }
  .mx-md-7 {
    margin-inline-end: 1.75rem !important;
    margin-inline-start: 1.75rem !important;
  }
  .mx-md-8 {
    margin-inline-end: 2rem !important;
    margin-inline-start: 2rem !important;
  }
  .mx-md-9 {
    margin-inline-end: 2.25rem !important;
    margin-inline-start: 2.25rem !important;
  }
  .mx-md-10 {
    margin-inline-end: 2.5rem !important;
    margin-inline-start: 2.5rem !important;
  }
  .mx-md-11 {
    margin-inline-end: 2.75rem !important;
    margin-inline-start: 2.75rem !important;
  }
  .mx-md-12 {
    margin-inline-end: 3rem !important;
    margin-inline-start: 3rem !important;
  }
  .mx-md-auto {
    margin-inline-end: auto !important;
    margin-inline-start: auto !important;
  }
  .my-md-0 {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
  }
  .my-md-50 {
    margin-block-start: 0.125rem !important;
    margin-block-end: 0.125rem !important;
  }
  .my-md-1 {
    margin-block-start: 0.25rem !important;
    margin-block-end: 0.25rem !important;
  }
  .my-md-1_5 {
    margin-block-start: 0.375rem !important;
    margin-block-end: 0.375rem !important;
  }
  .my-md-2 {
    margin-block-start: 0.5rem !important;
    margin-block-end: 0.5rem !important;
  }
  .my-md-3 {
    margin-block-start: 0.75rem !important;
    margin-block-end: 0.75rem !important;
  }
  .my-md-4 {
    margin-block-start: 1rem !important;
    margin-block-end: 1rem !important;
  }
  .my-md-5 {
    margin-block-start: 1.25rem !important;
    margin-block-end: 1.25rem !important;
  }
  .my-md-6 {
    margin-block-start: 1.5rem !important;
    margin-block-end: 1.5rem !important;
  }
  .my-md-7 {
    margin-block-start: 1.75rem !important;
    margin-block-end: 1.75rem !important;
  }
  .my-md-8 {
    margin-block-start: 2rem !important;
    margin-block-end: 2rem !important;
  }
  .my-md-9 {
    margin-block-start: 2.25rem !important;
    margin-block-end: 2.25rem !important;
  }
  .my-md-10 {
    margin-block-start: 2.5rem !important;
    margin-block-end: 2.5rem !important;
  }
  .my-md-11 {
    margin-block-start: 2.75rem !important;
    margin-block-end: 2.75rem !important;
  }
  .my-md-12 {
    margin-block-start: 3rem !important;
    margin-block-end: 3rem !important;
  }
  .my-md-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .mt-md-0 {
    margin-block-start: 0 !important;
  }
  .mt-md-50 {
    margin-block-start: 0.125rem !important;
  }
  .mt-md-1 {
    margin-block-start: 0.25rem !important;
  }
  .mt-md-1_5 {
    margin-block-start: 0.375rem !important;
  }
  .mt-md-2 {
    margin-block-start: 0.5rem !important;
  }
  .mt-md-3 {
    margin-block-start: 0.75rem !important;
  }
  .mt-md-4 {
    margin-block-start: 1rem !important;
  }
  .mt-md-5 {
    margin-block-start: 1.25rem !important;
  }
  .mt-md-6 {
    margin-block-start: 1.5rem !important;
  }
  .mt-md-7 {
    margin-block-start: 1.75rem !important;
  }
  .mt-md-8 {
    margin-block-start: 2rem !important;
  }
  .mt-md-9 {
    margin-block-start: 2.25rem !important;
  }
  .mt-md-10 {
    margin-block-start: 2.5rem !important;
  }
  .mt-md-11 {
    margin-block-start: 2.75rem !important;
  }
  .mt-md-12 {
    margin-block-start: 3rem !important;
  }
  .mt-md-auto {
    margin-block-start: auto !important;
  }
  .mb-md-0 {
    margin-block-end: 0 !important;
  }
  .mb-md-50 {
    margin-block-end: 0.125rem !important;
  }
  .mb-md-1 {
    margin-block-end: 0.25rem !important;
  }
  .mb-md-1_5 {
    margin-block-end: 0.375rem !important;
  }
  .mb-md-2 {
    margin-block-end: 0.5rem !important;
  }
  .mb-md-3 {
    margin-block-end: 0.75rem !important;
  }
  .mb-md-4 {
    margin-block-end: 1rem !important;
  }
  .mb-md-5 {
    margin-block-end: 1.25rem !important;
  }
  .mb-md-6 {
    margin-block-end: 1.5rem !important;
  }
  .mb-md-7 {
    margin-block-end: 1.75rem !important;
  }
  .mb-md-8 {
    margin-block-end: 2rem !important;
  }
  .mb-md-9 {
    margin-block-end: 2.25rem !important;
  }
  .mb-md-10 {
    margin-block-end: 2.5rem !important;
  }
  .mb-md-11 {
    margin-block-end: 2.75rem !important;
  }
  .mb-md-12 {
    margin-block-end: 3rem !important;
  }
  .mb-md-auto {
    margin-block-end: auto !important;
  }
  .m-md-n50 {
    margin: -0.125rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .m-md-n1_5 {
    margin: -0.375rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -0.75rem !important;
  }
  .m-md-n4 {
    margin: -1rem !important;
  }
  .m-md-n5 {
    margin: -1.25rem !important;
  }
  .m-md-n6 {
    margin: -1.5rem !important;
  }
  .m-md-n7 {
    margin: -1.75rem !important;
  }
  .m-md-n8 {
    margin: -2rem !important;
  }
  .m-md-n9 {
    margin: -2.25rem !important;
  }
  .m-md-n10 {
    margin: -2.5rem !important;
  }
  .m-md-n11 {
    margin: -2.75rem !important;
  }
  .m-md-n12 {
    margin: -3rem !important;
  }
  .mx-md-n50 {
    margin-inline-end: -0.125rem !important;
    margin-inline-start: -0.125rem !important;
  }
  .mx-md-n1 {
    margin-inline-end: -0.25rem !important;
    margin-inline-start: -0.25rem !important;
  }
  .mx-md-n1_5 {
    margin-inline-end: -0.375rem !important;
    margin-inline-start: -0.375rem !important;
  }
  .mx-md-n2 {
    margin-inline-end: -0.5rem !important;
    margin-inline-start: -0.5rem !important;
  }
  .mx-md-n3 {
    margin-inline-end: -0.75rem !important;
    margin-inline-start: -0.75rem !important;
  }
  .mx-md-n4 {
    margin-inline-end: -1rem !important;
    margin-inline-start: -1rem !important;
  }
  .mx-md-n5 {
    margin-inline-end: -1.25rem !important;
    margin-inline-start: -1.25rem !important;
  }
  .mx-md-n6 {
    margin-inline-end: -1.5rem !important;
    margin-inline-start: -1.5rem !important;
  }
  .mx-md-n7 {
    margin-inline-end: -1.75rem !important;
    margin-inline-start: -1.75rem !important;
  }
  .mx-md-n8 {
    margin-inline-end: -2rem !important;
    margin-inline-start: -2rem !important;
  }
  .mx-md-n9 {
    margin-inline-end: -2.25rem !important;
    margin-inline-start: -2.25rem !important;
  }
  .mx-md-n10 {
    margin-inline-end: -2.5rem !important;
    margin-inline-start: -2.5rem !important;
  }
  .mx-md-n11 {
    margin-inline-end: -2.75rem !important;
    margin-inline-start: -2.75rem !important;
  }
  .mx-md-n12 {
    margin-inline-end: -3rem !important;
    margin-inline-start: -3rem !important;
  }
  .my-md-n50 {
    margin-block-start: -0.125rem !important;
    margin-block-end: -0.125rem !important;
  }
  .my-md-n1 {
    margin-block-start: -0.25rem !important;
    margin-block-end: -0.25rem !important;
  }
  .my-md-n1_5 {
    margin-block-start: -0.375rem !important;
    margin-block-end: -0.375rem !important;
  }
  .my-md-n2 {
    margin-block-start: -0.5rem !important;
    margin-block-end: -0.5rem !important;
  }
  .my-md-n3 {
    margin-block-start: -0.75rem !important;
    margin-block-end: -0.75rem !important;
  }
  .my-md-n4 {
    margin-block-start: -1rem !important;
    margin-block-end: -1rem !important;
  }
  .my-md-n5 {
    margin-block-start: -1.25rem !important;
    margin-block-end: -1.25rem !important;
  }
  .my-md-n6 {
    margin-block-start: -1.5rem !important;
    margin-block-end: -1.5rem !important;
  }
  .my-md-n7 {
    margin-block-start: -1.75rem !important;
    margin-block-end: -1.75rem !important;
  }
  .my-md-n8 {
    margin-block-start: -2rem !important;
    margin-block-end: -2rem !important;
  }
  .my-md-n9 {
    margin-block-start: -2.25rem !important;
    margin-block-end: -2.25rem !important;
  }
  .my-md-n10 {
    margin-block-start: -2.5rem !important;
    margin-block-end: -2.5rem !important;
  }
  .my-md-n11 {
    margin-block-start: -2.75rem !important;
    margin-block-end: -2.75rem !important;
  }
  .my-md-n12 {
    margin-block-start: -3rem !important;
    margin-block-end: -3rem !important;
  }
  .mt-md-n50 {
    margin-block-start: -0.125rem !important;
  }
  .mt-md-n1 {
    margin-block-start: -0.25rem !important;
  }
  .mt-md-n1_5 {
    margin-block-start: -0.375rem !important;
  }
  .mt-md-n2 {
    margin-block-start: -0.5rem !important;
  }
  .mt-md-n3 {
    margin-block-start: -0.75rem !important;
  }
  .mt-md-n4 {
    margin-block-start: -1rem !important;
  }
  .mt-md-n5 {
    margin-block-start: -1.25rem !important;
  }
  .mt-md-n6 {
    margin-block-start: -1.5rem !important;
  }
  .mt-md-n7 {
    margin-block-start: -1.75rem !important;
  }
  .mt-md-n8 {
    margin-block-start: -2rem !important;
  }
  .mt-md-n9 {
    margin-block-start: -2.25rem !important;
  }
  .mt-md-n10 {
    margin-block-start: -2.5rem !important;
  }
  .mt-md-n11 {
    margin-block-start: -2.75rem !important;
  }
  .mt-md-n12 {
    margin-block-start: -3rem !important;
  }
  .mb-md-n50 {
    margin-block-end: -0.125rem !important;
  }
  .mb-md-n1 {
    margin-block-end: -0.25rem !important;
  }
  .mb-md-n1_5 {
    margin-block-end: -0.375rem !important;
  }
  .mb-md-n2 {
    margin-block-end: -0.5rem !important;
  }
  .mb-md-n3 {
    margin-block-end: -0.75rem !important;
  }
  .mb-md-n4 {
    margin-block-end: -1rem !important;
  }
  .mb-md-n5 {
    margin-block-end: -1.25rem !important;
  }
  .mb-md-n6 {
    margin-block-end: -1.5rem !important;
  }
  .mb-md-n7 {
    margin-block-end: -1.75rem !important;
  }
  .mb-md-n8 {
    margin-block-end: -2rem !important;
  }
  .mb-md-n9 {
    margin-block-end: -2.25rem !important;
  }
  .mb-md-n10 {
    margin-block-end: -2.5rem !important;
  }
  .mb-md-n11 {
    margin-block-end: -2.75rem !important;
  }
  .mb-md-n12 {
    margin-block-end: -3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-50 {
    padding: 0.125rem !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-1_5 {
    padding: 0.375rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 0.75rem !important;
  }
  .p-md-4 {
    padding: 1rem !important;
  }
  .p-md-5 {
    padding: 1.25rem !important;
  }
  .p-md-6 {
    padding: 1.5rem !important;
  }
  .p-md-7 {
    padding: 1.75rem !important;
  }
  .p-md-8 {
    padding: 2rem !important;
  }
  .p-md-9 {
    padding: 2.25rem !important;
  }
  .p-md-10 {
    padding: 2.5rem !important;
  }
  .p-md-11 {
    padding: 2.75rem !important;
  }
  .p-md-12 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-inline-end: 0 !important;
    padding-inline-start: 0 !important;
  }
  .px-md-50 {
    padding-inline-end: 0.125rem !important;
    padding-inline-start: 0.125rem !important;
  }
  .px-md-1 {
    padding-inline-end: 0.25rem !important;
    padding-inline-start: 0.25rem !important;
  }
  .px-md-1_5 {
    padding-inline-end: 0.375rem !important;
    padding-inline-start: 0.375rem !important;
  }
  .px-md-2 {
    padding-inline-end: 0.5rem !important;
    padding-inline-start: 0.5rem !important;
  }
  .px-md-3 {
    padding-inline-end: 0.75rem !important;
    padding-inline-start: 0.75rem !important;
  }
  .px-md-4 {
    padding-inline-end: 1rem !important;
    padding-inline-start: 1rem !important;
  }
  .px-md-5 {
    padding-inline-end: 1.25rem !important;
    padding-inline-start: 1.25rem !important;
  }
  .px-md-6 {
    padding-inline-end: 1.5rem !important;
    padding-inline-start: 1.5rem !important;
  }
  .px-md-7 {
    padding-inline-end: 1.75rem !important;
    padding-inline-start: 1.75rem !important;
  }
  .px-md-8 {
    padding-inline-end: 2rem !important;
    padding-inline-start: 2rem !important;
  }
  .px-md-9 {
    padding-inline-end: 2.25rem !important;
    padding-inline-start: 2.25rem !important;
  }
  .px-md-10 {
    padding-inline-end: 2.5rem !important;
    padding-inline-start: 2.5rem !important;
  }
  .px-md-11 {
    padding-inline-end: 2.75rem !important;
    padding-inline-start: 2.75rem !important;
  }
  .px-md-12 {
    padding-inline-end: 3rem !important;
    padding-inline-start: 3rem !important;
  }
  .py-md-0 {
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
  }
  .py-md-50 {
    padding-block-start: 0.125rem !important;
    padding-block-end: 0.125rem !important;
  }
  .py-md-1 {
    padding-block-start: 0.25rem !important;
    padding-block-end: 0.25rem !important;
  }
  .py-md-1_5 {
    padding-block-start: 0.375rem !important;
    padding-block-end: 0.375rem !important;
  }
  .py-md-2 {
    padding-block-start: 0.5rem !important;
    padding-block-end: 0.5rem !important;
  }
  .py-md-3 {
    padding-block-start: 0.75rem !important;
    padding-block-end: 0.75rem !important;
  }
  .py-md-4 {
    padding-block-start: 1rem !important;
    padding-block-end: 1rem !important;
  }
  .py-md-5 {
    padding-block-start: 1.25rem !important;
    padding-block-end: 1.25rem !important;
  }
  .py-md-6 {
    padding-block-start: 1.5rem !important;
    padding-block-end: 1.5rem !important;
  }
  .py-md-7 {
    padding-block-start: 1.75rem !important;
    padding-block-end: 1.75rem !important;
  }
  .py-md-8 {
    padding-block-start: 2rem !important;
    padding-block-end: 2rem !important;
  }
  .py-md-9 {
    padding-block-start: 2.25rem !important;
    padding-block-end: 2.25rem !important;
  }
  .py-md-10 {
    padding-block-start: 2.5rem !important;
    padding-block-end: 2.5rem !important;
  }
  .py-md-11 {
    padding-block-start: 2.75rem !important;
    padding-block-end: 2.75rem !important;
  }
  .py-md-12 {
    padding-block-start: 3rem !important;
    padding-block-end: 3rem !important;
  }
  .pt-md-0 {
    padding-block-start: 0 !important;
  }
  .pt-md-50 {
    padding-block-start: 0.125rem !important;
  }
  .pt-md-1 {
    padding-block-start: 0.25rem !important;
  }
  .pt-md-1_5 {
    padding-block-start: 0.375rem !important;
  }
  .pt-md-2 {
    padding-block-start: 0.5rem !important;
  }
  .pt-md-3 {
    padding-block-start: 0.75rem !important;
  }
  .pt-md-4 {
    padding-block-start: 1rem !important;
  }
  .pt-md-5 {
    padding-block-start: 1.25rem !important;
  }
  .pt-md-6 {
    padding-block-start: 1.5rem !important;
  }
  .pt-md-7 {
    padding-block-start: 1.75rem !important;
  }
  .pt-md-8 {
    padding-block-start: 2rem !important;
  }
  .pt-md-9 {
    padding-block-start: 2.25rem !important;
  }
  .pt-md-10 {
    padding-block-start: 2.5rem !important;
  }
  .pt-md-11 {
    padding-block-start: 2.75rem !important;
  }
  .pt-md-12 {
    padding-block-start: 3rem !important;
  }
  .pb-md-0 {
    padding-block-end: 0 !important;
  }
  .pb-md-50 {
    padding-block-end: 0.125rem !important;
  }
  .pb-md-1 {
    padding-block-end: 0.25rem !important;
  }
  .pb-md-1_5 {
    padding-block-end: 0.375rem !important;
  }
  .pb-md-2 {
    padding-block-end: 0.5rem !important;
  }
  .pb-md-3 {
    padding-block-end: 0.75rem !important;
  }
  .pb-md-4 {
    padding-block-end: 1rem !important;
  }
  .pb-md-5 {
    padding-block-end: 1.25rem !important;
  }
  .pb-md-6 {
    padding-block-end: 1.5rem !important;
  }
  .pb-md-7 {
    padding-block-end: 1.75rem !important;
  }
  .pb-md-8 {
    padding-block-end: 2rem !important;
  }
  .pb-md-9 {
    padding-block-end: 2.25rem !important;
  }
  .pb-md-10 {
    padding-block-end: 2.5rem !important;
  }
  .pb-md-11 {
    padding-block-end: 2.75rem !important;
  }
  .pb-md-12 {
    padding-block-end: 3rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-50 {
    gap: 0.125rem !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-1_5 {
    gap: 0.375rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 0.75rem !important;
  }
  .gap-md-4 {
    gap: 1rem !important;
  }
  .gap-md-5 {
    gap: 1.25rem !important;
  }
  .gap-md-6 {
    gap: 1.5rem !important;
  }
  .gap-md-7 {
    gap: 1.75rem !important;
  }
  .gap-md-8 {
    gap: 2rem !important;
  }
  .gap-md-9 {
    gap: 2.25rem !important;
  }
  .gap-md-10 {
    gap: 2.5rem !important;
  }
  .gap-md-11 {
    gap: 2.75rem !important;
  }
  .gap-md-12 {
    gap: 3rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-50 {
    row-gap: 0.125rem !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-1_5 {
    row-gap: 0.375rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1rem !important;
  }
  .row-gap-md-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-md-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-7 {
    row-gap: 1.75rem !important;
  }
  .row-gap-md-8 {
    row-gap: 2rem !important;
  }
  .row-gap-md-9 {
    row-gap: 2.25rem !important;
  }
  .row-gap-md-10 {
    row-gap: 2.5rem !important;
  }
  .row-gap-md-11 {
    row-gap: 2.75rem !important;
  }
  .row-gap-md-12 {
    row-gap: 3rem !important;
  }
}

@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !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;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !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;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-50 {
    margin: 0.125rem !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-1_5 {
    margin: 0.375rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 0.75rem !important;
  }
  .m-lg-4 {
    margin: 1rem !important;
  }
  .m-lg-5 {
    margin: 1.25rem !important;
  }
  .m-lg-6 {
    margin: 1.5rem !important;
  }
  .m-lg-7 {
    margin: 1.75rem !important;
  }
  .m-lg-8 {
    margin: 2rem !important;
  }
  .m-lg-9 {
    margin: 2.25rem !important;
  }
  .m-lg-10 {
    margin: 2.5rem !important;
  }
  .m-lg-11 {
    margin: 2.75rem !important;
  }
  .m-lg-12 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-inline-end: 0 !important;
    margin-inline-start: 0 !important;
  }
  .mx-lg-50 {
    margin-inline-end: 0.125rem !important;
    margin-inline-start: 0.125rem !important;
  }
  .mx-lg-1 {
    margin-inline-end: 0.25rem !important;
    margin-inline-start: 0.25rem !important;
  }
  .mx-lg-1_5 {
    margin-inline-end: 0.375rem !important;
    margin-inline-start: 0.375rem !important;
  }
  .mx-lg-2 {
    margin-inline-end: 0.5rem !important;
    margin-inline-start: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-inline-end: 0.75rem !important;
    margin-inline-start: 0.75rem !important;
  }
  .mx-lg-4 {
    margin-inline-end: 1rem !important;
    margin-inline-start: 1rem !important;
  }
  .mx-lg-5 {
    margin-inline-end: 1.25rem !important;
    margin-inline-start: 1.25rem !important;
  }
  .mx-lg-6 {
    margin-inline-end: 1.5rem !important;
    margin-inline-start: 1.5rem !important;
  }
  .mx-lg-7 {
    margin-inline-end: 1.75rem !important;
    margin-inline-start: 1.75rem !important;
  }
  .mx-lg-8 {
    margin-inline-end: 2rem !important;
    margin-inline-start: 2rem !important;
  }
  .mx-lg-9 {
    margin-inline-end: 2.25rem !important;
    margin-inline-start: 2.25rem !important;
  }
  .mx-lg-10 {
    margin-inline-end: 2.5rem !important;
    margin-inline-start: 2.5rem !important;
  }
  .mx-lg-11 {
    margin-inline-end: 2.75rem !important;
    margin-inline-start: 2.75rem !important;
  }
  .mx-lg-12 {
    margin-inline-end: 3rem !important;
    margin-inline-start: 3rem !important;
  }
  .mx-lg-auto {
    margin-inline-end: auto !important;
    margin-inline-start: auto !important;
  }
  .my-lg-0 {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
  }
  .my-lg-50 {
    margin-block-start: 0.125rem !important;
    margin-block-end: 0.125rem !important;
  }
  .my-lg-1 {
    margin-block-start: 0.25rem !important;
    margin-block-end: 0.25rem !important;
  }
  .my-lg-1_5 {
    margin-block-start: 0.375rem !important;
    margin-block-end: 0.375rem !important;
  }
  .my-lg-2 {
    margin-block-start: 0.5rem !important;
    margin-block-end: 0.5rem !important;
  }
  .my-lg-3 {
    margin-block-start: 0.75rem !important;
    margin-block-end: 0.75rem !important;
  }
  .my-lg-4 {
    margin-block-start: 1rem !important;
    margin-block-end: 1rem !important;
  }
  .my-lg-5 {
    margin-block-start: 1.25rem !important;
    margin-block-end: 1.25rem !important;
  }
  .my-lg-6 {
    margin-block-start: 1.5rem !important;
    margin-block-end: 1.5rem !important;
  }
  .my-lg-7 {
    margin-block-start: 1.75rem !important;
    margin-block-end: 1.75rem !important;
  }
  .my-lg-8 {
    margin-block-start: 2rem !important;
    margin-block-end: 2rem !important;
  }
  .my-lg-9 {
    margin-block-start: 2.25rem !important;
    margin-block-end: 2.25rem !important;
  }
  .my-lg-10 {
    margin-block-start: 2.5rem !important;
    margin-block-end: 2.5rem !important;
  }
  .my-lg-11 {
    margin-block-start: 2.75rem !important;
    margin-block-end: 2.75rem !important;
  }
  .my-lg-12 {
    margin-block-start: 3rem !important;
    margin-block-end: 3rem !important;
  }
  .my-lg-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .mt-lg-0 {
    margin-block-start: 0 !important;
  }
  .mt-lg-50 {
    margin-block-start: 0.125rem !important;
  }
  .mt-lg-1 {
    margin-block-start: 0.25rem !important;
  }
  .mt-lg-1_5 {
    margin-block-start: 0.375rem !important;
  }
  .mt-lg-2 {
    margin-block-start: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-block-start: 0.75rem !important;
  }
  .mt-lg-4 {
    margin-block-start: 1rem !important;
  }
  .mt-lg-5 {
    margin-block-start: 1.25rem !important;
  }
  .mt-lg-6 {
    margin-block-start: 1.5rem !important;
  }
  .mt-lg-7 {
    margin-block-start: 1.75rem !important;
  }
  .mt-lg-8 {
    margin-block-start: 2rem !important;
  }
  .mt-lg-9 {
    margin-block-start: 2.25rem !important;
  }
  .mt-lg-10 {
    margin-block-start: 2.5rem !important;
  }
  .mt-lg-11 {
    margin-block-start: 2.75rem !important;
  }
  .mt-lg-12 {
    margin-block-start: 3rem !important;
  }
  .mt-lg-auto {
    margin-block-start: auto !important;
  }
  .mb-lg-0 {
    margin-block-end: 0 !important;
  }
  .mb-lg-50 {
    margin-block-end: 0.125rem !important;
  }
  .mb-lg-1 {
    margin-block-end: 0.25rem !important;
  }
  .mb-lg-1_5 {
    margin-block-end: 0.375rem !important;
  }
  .mb-lg-2 {
    margin-block-end: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-block-end: 0.75rem !important;
  }
  .mb-lg-4 {
    margin-block-end: 1rem !important;
  }
  .mb-lg-5 {
    margin-block-end: 1.25rem !important;
  }
  .mb-lg-6 {
    margin-block-end: 1.5rem !important;
  }
  .mb-lg-7 {
    margin-block-end: 1.75rem !important;
  }
  .mb-lg-8 {
    margin-block-end: 2rem !important;
  }
  .mb-lg-9 {
    margin-block-end: 2.25rem !important;
  }
  .mb-lg-10 {
    margin-block-end: 2.5rem !important;
  }
  .mb-lg-11 {
    margin-block-end: 2.75rem !important;
  }
  .mb-lg-12 {
    margin-block-end: 3rem !important;
  }
  .mb-lg-auto {
    margin-block-end: auto !important;
  }
  .m-lg-n50 {
    margin: -0.125rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .m-lg-n1_5 {
    margin: -0.375rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -0.75rem !important;
  }
  .m-lg-n4 {
    margin: -1rem !important;
  }
  .m-lg-n5 {
    margin: -1.25rem !important;
  }
  .m-lg-n6 {
    margin: -1.5rem !important;
  }
  .m-lg-n7 {
    margin: -1.75rem !important;
  }
  .m-lg-n8 {
    margin: -2rem !important;
  }
  .m-lg-n9 {
    margin: -2.25rem !important;
  }
  .m-lg-n10 {
    margin: -2.5rem !important;
  }
  .m-lg-n11 {
    margin: -2.75rem !important;
  }
  .m-lg-n12 {
    margin: -3rem !important;
  }
  .mx-lg-n50 {
    margin-inline-end: -0.125rem !important;
    margin-inline-start: -0.125rem !important;
  }
  .mx-lg-n1 {
    margin-inline-end: -0.25rem !important;
    margin-inline-start: -0.25rem !important;
  }
  .mx-lg-n1_5 {
    margin-inline-end: -0.375rem !important;
    margin-inline-start: -0.375rem !important;
  }
  .mx-lg-n2 {
    margin-inline-end: -0.5rem !important;
    margin-inline-start: -0.5rem !important;
  }
  .mx-lg-n3 {
    margin-inline-end: -0.75rem !important;
    margin-inline-start: -0.75rem !important;
  }
  .mx-lg-n4 {
    margin-inline-end: -1rem !important;
    margin-inline-start: -1rem !important;
  }
  .mx-lg-n5 {
    margin-inline-end: -1.25rem !important;
    margin-inline-start: -1.25rem !important;
  }
  .mx-lg-n6 {
    margin-inline-end: -1.5rem !important;
    margin-inline-start: -1.5rem !important;
  }
  .mx-lg-n7 {
    margin-inline-end: -1.75rem !important;
    margin-inline-start: -1.75rem !important;
  }
  .mx-lg-n8 {
    margin-inline-end: -2rem !important;
    margin-inline-start: -2rem !important;
  }
  .mx-lg-n9 {
    margin-inline-end: -2.25rem !important;
    margin-inline-start: -2.25rem !important;
  }
  .mx-lg-n10 {
    margin-inline-end: -2.5rem !important;
    margin-inline-start: -2.5rem !important;
  }
  .mx-lg-n11 {
    margin-inline-end: -2.75rem !important;
    margin-inline-start: -2.75rem !important;
  }
  .mx-lg-n12 {
    margin-inline-end: -3rem !important;
    margin-inline-start: -3rem !important;
  }
  .my-lg-n50 {
    margin-block-start: -0.125rem !important;
    margin-block-end: -0.125rem !important;
  }
  .my-lg-n1 {
    margin-block-start: -0.25rem !important;
    margin-block-end: -0.25rem !important;
  }
  .my-lg-n1_5 {
    margin-block-start: -0.375rem !important;
    margin-block-end: -0.375rem !important;
  }
  .my-lg-n2 {
    margin-block-start: -0.5rem !important;
    margin-block-end: -0.5rem !important;
  }
  .my-lg-n3 {
    margin-block-start: -0.75rem !important;
    margin-block-end: -0.75rem !important;
  }
  .my-lg-n4 {
    margin-block-start: -1rem !important;
    margin-block-end: -1rem !important;
  }
  .my-lg-n5 {
    margin-block-start: -1.25rem !important;
    margin-block-end: -1.25rem !important;
  }
  .my-lg-n6 {
    margin-block-start: -1.5rem !important;
    margin-block-end: -1.5rem !important;
  }
  .my-lg-n7 {
    margin-block-start: -1.75rem !important;
    margin-block-end: -1.75rem !important;
  }
  .my-lg-n8 {
    margin-block-start: -2rem !important;
    margin-block-end: -2rem !important;
  }
  .my-lg-n9 {
    margin-block-start: -2.25rem !important;
    margin-block-end: -2.25rem !important;
  }
  .my-lg-n10 {
    margin-block-start: -2.5rem !important;
    margin-block-end: -2.5rem !important;
  }
  .my-lg-n11 {
    margin-block-start: -2.75rem !important;
    margin-block-end: -2.75rem !important;
  }
  .my-lg-n12 {
    margin-block-start: -3rem !important;
    margin-block-end: -3rem !important;
  }
  .mt-lg-n50 {
    margin-block-start: -0.125rem !important;
  }
  .mt-lg-n1 {
    margin-block-start: -0.25rem !important;
  }
  .mt-lg-n1_5 {
    margin-block-start: -0.375rem !important;
  }
  .mt-lg-n2 {
    margin-block-start: -0.5rem !important;
  }
  .mt-lg-n3 {
    margin-block-start: -0.75rem !important;
  }
  .mt-lg-n4 {
    margin-block-start: -1rem !important;
  }
  .mt-lg-n5 {
    margin-block-start: -1.25rem !important;
  }
  .mt-lg-n6 {
    margin-block-start: -1.5rem !important;
  }
  .mt-lg-n7 {
    margin-block-start: -1.75rem !important;
  }
  .mt-lg-n8 {
    margin-block-start: -2rem !important;
  }
  .mt-lg-n9 {
    margin-block-start: -2.25rem !important;
  }
  .mt-lg-n10 {
    margin-block-start: -2.5rem !important;
  }
  .mt-lg-n11 {
    margin-block-start: -2.75rem !important;
  }
  .mt-lg-n12 {
    margin-block-start: -3rem !important;
  }
  .mb-lg-n50 {
    margin-block-end: -0.125rem !important;
  }
  .mb-lg-n1 {
    margin-block-end: -0.25rem !important;
  }
  .mb-lg-n1_5 {
    margin-block-end: -0.375rem !important;
  }
  .mb-lg-n2 {
    margin-block-end: -0.5rem !important;
  }
  .mb-lg-n3 {
    margin-block-end: -0.75rem !important;
  }
  .mb-lg-n4 {
    margin-block-end: -1rem !important;
  }
  .mb-lg-n5 {
    margin-block-end: -1.25rem !important;
  }
  .mb-lg-n6 {
    margin-block-end: -1.5rem !important;
  }
  .mb-lg-n7 {
    margin-block-end: -1.75rem !important;
  }
  .mb-lg-n8 {
    margin-block-end: -2rem !important;
  }
  .mb-lg-n9 {
    margin-block-end: -2.25rem !important;
  }
  .mb-lg-n10 {
    margin-block-end: -2.5rem !important;
  }
  .mb-lg-n11 {
    margin-block-end: -2.75rem !important;
  }
  .mb-lg-n12 {
    margin-block-end: -3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-50 {
    padding: 0.125rem !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-1_5 {
    padding: 0.375rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 0.75rem !important;
  }
  .p-lg-4 {
    padding: 1rem !important;
  }
  .p-lg-5 {
    padding: 1.25rem !important;
  }
  .p-lg-6 {
    padding: 1.5rem !important;
  }
  .p-lg-7 {
    padding: 1.75rem !important;
  }
  .p-lg-8 {
    padding: 2rem !important;
  }
  .p-lg-9 {
    padding: 2.25rem !important;
  }
  .p-lg-10 {
    padding: 2.5rem !important;
  }
  .p-lg-11 {
    padding: 2.75rem !important;
  }
  .p-lg-12 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-inline-end: 0 !important;
    padding-inline-start: 0 !important;
  }
  .px-lg-50 {
    padding-inline-end: 0.125rem !important;
    padding-inline-start: 0.125rem !important;
  }
  .px-lg-1 {
    padding-inline-end: 0.25rem !important;
    padding-inline-start: 0.25rem !important;
  }
  .px-lg-1_5 {
    padding-inline-end: 0.375rem !important;
    padding-inline-start: 0.375rem !important;
  }
  .px-lg-2 {
    padding-inline-end: 0.5rem !important;
    padding-inline-start: 0.5rem !important;
  }
  .px-lg-3 {
    padding-inline-end: 0.75rem !important;
    padding-inline-start: 0.75rem !important;
  }
  .px-lg-4 {
    padding-inline-end: 1rem !important;
    padding-inline-start: 1rem !important;
  }
  .px-lg-5 {
    padding-inline-end: 1.25rem !important;
    padding-inline-start: 1.25rem !important;
  }
  .px-lg-6 {
    padding-inline-end: 1.5rem !important;
    padding-inline-start: 1.5rem !important;
  }
  .px-lg-7 {
    padding-inline-end: 1.75rem !important;
    padding-inline-start: 1.75rem !important;
  }
  .px-lg-8 {
    padding-inline-end: 2rem !important;
    padding-inline-start: 2rem !important;
  }
  .px-lg-9 {
    padding-inline-end: 2.25rem !important;
    padding-inline-start: 2.25rem !important;
  }
  .px-lg-10 {
    padding-inline-end: 2.5rem !important;
    padding-inline-start: 2.5rem !important;
  }
  .px-lg-11 {
    padding-inline-end: 2.75rem !important;
    padding-inline-start: 2.75rem !important;
  }
  .px-lg-12 {
    padding-inline-end: 3rem !important;
    padding-inline-start: 3rem !important;
  }
  .py-lg-0 {
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
  }
  .py-lg-50 {
    padding-block-start: 0.125rem !important;
    padding-block-end: 0.125rem !important;
  }
  .py-lg-1 {
    padding-block-start: 0.25rem !important;
    padding-block-end: 0.25rem !important;
  }
  .py-lg-1_5 {
    padding-block-start: 0.375rem !important;
    padding-block-end: 0.375rem !important;
  }
  .py-lg-2 {
    padding-block-start: 0.5rem !important;
    padding-block-end: 0.5rem !important;
  }
  .py-lg-3 {
    padding-block-start: 0.75rem !important;
    padding-block-end: 0.75rem !important;
  }
  .py-lg-4 {
    padding-block-start: 1rem !important;
    padding-block-end: 1rem !important;
  }
  .py-lg-5 {
    padding-block-start: 1.25rem !important;
    padding-block-end: 1.25rem !important;
  }
  .py-lg-6 {
    padding-block-start: 1.5rem !important;
    padding-block-end: 1.5rem !important;
  }
  .py-lg-7 {
    padding-block-start: 1.75rem !important;
    padding-block-end: 1.75rem !important;
  }
  .py-lg-8 {
    padding-block-start: 2rem !important;
    padding-block-end: 2rem !important;
  }
  .py-lg-9 {
    padding-block-start: 2.25rem !important;
    padding-block-end: 2.25rem !important;
  }
  .py-lg-10 {
    padding-block-start: 2.5rem !important;
    padding-block-end: 2.5rem !important;
  }
  .py-lg-11 {
    padding-block-start: 2.75rem !important;
    padding-block-end: 2.75rem !important;
  }
  .py-lg-12 {
    padding-block-start: 3rem !important;
    padding-block-end: 3rem !important;
  }
  .pt-lg-0 {
    padding-block-start: 0 !important;
  }
  .pt-lg-50 {
    padding-block-start: 0.125rem !important;
  }
  .pt-lg-1 {
    padding-block-start: 0.25rem !important;
  }
  .pt-lg-1_5 {
    padding-block-start: 0.375rem !important;
  }
  .pt-lg-2 {
    padding-block-start: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-block-start: 0.75rem !important;
  }
  .pt-lg-4 {
    padding-block-start: 1rem !important;
  }
  .pt-lg-5 {
    padding-block-start: 1.25rem !important;
  }
  .pt-lg-6 {
    padding-block-start: 1.5rem !important;
  }
  .pt-lg-7 {
    padding-block-start: 1.75rem !important;
  }
  .pt-lg-8 {
    padding-block-start: 2rem !important;
  }
  .pt-lg-9 {
    padding-block-start: 2.25rem !important;
  }
  .pt-lg-10 {
    padding-block-start: 2.5rem !important;
  }
  .pt-lg-11 {
    padding-block-start: 2.75rem !important;
  }
  .pt-lg-12 {
    padding-block-start: 3rem !important;
  }
  .pb-lg-0 {
    padding-block-end: 0 !important;
  }
  .pb-lg-50 {
    padding-block-end: 0.125rem !important;
  }
  .pb-lg-1 {
    padding-block-end: 0.25rem !important;
  }
  .pb-lg-1_5 {
    padding-block-end: 0.375rem !important;
  }
  .pb-lg-2 {
    padding-block-end: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-block-end: 0.75rem !important;
  }
  .pb-lg-4 {
    padding-block-end: 1rem !important;
  }
  .pb-lg-5 {
    padding-block-end: 1.25rem !important;
  }
  .pb-lg-6 {
    padding-block-end: 1.5rem !important;
  }
  .pb-lg-7 {
    padding-block-end: 1.75rem !important;
  }
  .pb-lg-8 {
    padding-block-end: 2rem !important;
  }
  .pb-lg-9 {
    padding-block-end: 2.25rem !important;
  }
  .pb-lg-10 {
    padding-block-end: 2.5rem !important;
  }
  .pb-lg-11 {
    padding-block-end: 2.75rem !important;
  }
  .pb-lg-12 {
    padding-block-end: 3rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-50 {
    gap: 0.125rem !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-1_5 {
    gap: 0.375rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 0.75rem !important;
  }
  .gap-lg-4 {
    gap: 1rem !important;
  }
  .gap-lg-5 {
    gap: 1.25rem !important;
  }
  .gap-lg-6 {
    gap: 1.5rem !important;
  }
  .gap-lg-7 {
    gap: 1.75rem !important;
  }
  .gap-lg-8 {
    gap: 2rem !important;
  }
  .gap-lg-9 {
    gap: 2.25rem !important;
  }
  .gap-lg-10 {
    gap: 2.5rem !important;
  }
  .gap-lg-11 {
    gap: 2.75rem !important;
  }
  .gap-lg-12 {
    gap: 3rem !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-50 {
    row-gap: 0.125rem !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-1_5 {
    row-gap: 0.375rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-lg-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-7 {
    row-gap: 1.75rem !important;
  }
  .row-gap-lg-8 {
    row-gap: 2rem !important;
  }
  .row-gap-lg-9 {
    row-gap: 2.25rem !important;
  }
  .row-gap-lg-10 {
    row-gap: 2.5rem !important;
  }
  .row-gap-lg-11 {
    row-gap: 2.75rem !important;
  }
  .row-gap-lg-12 {
    row-gap: 3rem !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !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;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .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-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;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !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;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-50 {
    margin: 0.125rem !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-1_5 {
    margin: 0.375rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 0.75rem !important;
  }
  .m-xl-4 {
    margin: 1rem !important;
  }
  .m-xl-5 {
    margin: 1.25rem !important;
  }
  .m-xl-6 {
    margin: 1.5rem !important;
  }
  .m-xl-7 {
    margin: 1.75rem !important;
  }
  .m-xl-8 {
    margin: 2rem !important;
  }
  .m-xl-9 {
    margin: 2.25rem !important;
  }
  .m-xl-10 {
    margin: 2.5rem !important;
  }
  .m-xl-11 {
    margin: 2.75rem !important;
  }
  .m-xl-12 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-inline-end: 0 !important;
    margin-inline-start: 0 !important;
  }
  .mx-xl-50 {
    margin-inline-end: 0.125rem !important;
    margin-inline-start: 0.125rem !important;
  }
  .mx-xl-1 {
    margin-inline-end: 0.25rem !important;
    margin-inline-start: 0.25rem !important;
  }
  .mx-xl-1_5 {
    margin-inline-end: 0.375rem !important;
    margin-inline-start: 0.375rem !important;
  }
  .mx-xl-2 {
    margin-inline-end: 0.5rem !important;
    margin-inline-start: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-inline-end: 0.75rem !important;
    margin-inline-start: 0.75rem !important;
  }
  .mx-xl-4 {
    margin-inline-end: 1rem !important;
    margin-inline-start: 1rem !important;
  }
  .mx-xl-5 {
    margin-inline-end: 1.25rem !important;
    margin-inline-start: 1.25rem !important;
  }
  .mx-xl-6 {
    margin-inline-end: 1.5rem !important;
    margin-inline-start: 1.5rem !important;
  }
  .mx-xl-7 {
    margin-inline-end: 1.75rem !important;
    margin-inline-start: 1.75rem !important;
  }
  .mx-xl-8 {
    margin-inline-end: 2rem !important;
    margin-inline-start: 2rem !important;
  }
  .mx-xl-9 {
    margin-inline-end: 2.25rem !important;
    margin-inline-start: 2.25rem !important;
  }
  .mx-xl-10 {
    margin-inline-end: 2.5rem !important;
    margin-inline-start: 2.5rem !important;
  }
  .mx-xl-11 {
    margin-inline-end: 2.75rem !important;
    margin-inline-start: 2.75rem !important;
  }
  .mx-xl-12 {
    margin-inline-end: 3rem !important;
    margin-inline-start: 3rem !important;
  }
  .mx-xl-auto {
    margin-inline-end: auto !important;
    margin-inline-start: auto !important;
  }
  .my-xl-0 {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
  }
  .my-xl-50 {
    margin-block-start: 0.125rem !important;
    margin-block-end: 0.125rem !important;
  }
  .my-xl-1 {
    margin-block-start: 0.25rem !important;
    margin-block-end: 0.25rem !important;
  }
  .my-xl-1_5 {
    margin-block-start: 0.375rem !important;
    margin-block-end: 0.375rem !important;
  }
  .my-xl-2 {
    margin-block-start: 0.5rem !important;
    margin-block-end: 0.5rem !important;
  }
  .my-xl-3 {
    margin-block-start: 0.75rem !important;
    margin-block-end: 0.75rem !important;
  }
  .my-xl-4 {
    margin-block-start: 1rem !important;
    margin-block-end: 1rem !important;
  }
  .my-xl-5 {
    margin-block-start: 1.25rem !important;
    margin-block-end: 1.25rem !important;
  }
  .my-xl-6 {
    margin-block-start: 1.5rem !important;
    margin-block-end: 1.5rem !important;
  }
  .my-xl-7 {
    margin-block-start: 1.75rem !important;
    margin-block-end: 1.75rem !important;
  }
  .my-xl-8 {
    margin-block-start: 2rem !important;
    margin-block-end: 2rem !important;
  }
  .my-xl-9 {
    margin-block-start: 2.25rem !important;
    margin-block-end: 2.25rem !important;
  }
  .my-xl-10 {
    margin-block-start: 2.5rem !important;
    margin-block-end: 2.5rem !important;
  }
  .my-xl-11 {
    margin-block-start: 2.75rem !important;
    margin-block-end: 2.75rem !important;
  }
  .my-xl-12 {
    margin-block-start: 3rem !important;
    margin-block-end: 3rem !important;
  }
  .my-xl-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .mt-xl-0 {
    margin-block-start: 0 !important;
  }
  .mt-xl-50 {
    margin-block-start: 0.125rem !important;
  }
  .mt-xl-1 {
    margin-block-start: 0.25rem !important;
  }
  .mt-xl-1_5 {
    margin-block-start: 0.375rem !important;
  }
  .mt-xl-2 {
    margin-block-start: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-block-start: 0.75rem !important;
  }
  .mt-xl-4 {
    margin-block-start: 1rem !important;
  }
  .mt-xl-5 {
    margin-block-start: 1.25rem !important;
  }
  .mt-xl-6 {
    margin-block-start: 1.5rem !important;
  }
  .mt-xl-7 {
    margin-block-start: 1.75rem !important;
  }
  .mt-xl-8 {
    margin-block-start: 2rem !important;
  }
  .mt-xl-9 {
    margin-block-start: 2.25rem !important;
  }
  .mt-xl-10 {
    margin-block-start: 2.5rem !important;
  }
  .mt-xl-11 {
    margin-block-start: 2.75rem !important;
  }
  .mt-xl-12 {
    margin-block-start: 3rem !important;
  }
  .mt-xl-auto {
    margin-block-start: auto !important;
  }
  .mb-xl-0 {
    margin-block-end: 0 !important;
  }
  .mb-xl-50 {
    margin-block-end: 0.125rem !important;
  }
  .mb-xl-1 {
    margin-block-end: 0.25rem !important;
  }
  .mb-xl-1_5 {
    margin-block-end: 0.375rem !important;
  }
  .mb-xl-2 {
    margin-block-end: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-block-end: 0.75rem !important;
  }
  .mb-xl-4 {
    margin-block-end: 1rem !important;
  }
  .mb-xl-5 {
    margin-block-end: 1.25rem !important;
  }
  .mb-xl-6 {
    margin-block-end: 1.5rem !important;
  }
  .mb-xl-7 {
    margin-block-end: 1.75rem !important;
  }
  .mb-xl-8 {
    margin-block-end: 2rem !important;
  }
  .mb-xl-9 {
    margin-block-end: 2.25rem !important;
  }
  .mb-xl-10 {
    margin-block-end: 2.5rem !important;
  }
  .mb-xl-11 {
    margin-block-end: 2.75rem !important;
  }
  .mb-xl-12 {
    margin-block-end: 3rem !important;
  }
  .mb-xl-auto {
    margin-block-end: auto !important;
  }
  .m-xl-n50 {
    margin: -0.125rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .m-xl-n1_5 {
    margin: -0.375rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -0.75rem !important;
  }
  .m-xl-n4 {
    margin: -1rem !important;
  }
  .m-xl-n5 {
    margin: -1.25rem !important;
  }
  .m-xl-n6 {
    margin: -1.5rem !important;
  }
  .m-xl-n7 {
    margin: -1.75rem !important;
  }
  .m-xl-n8 {
    margin: -2rem !important;
  }
  .m-xl-n9 {
    margin: -2.25rem !important;
  }
  .m-xl-n10 {
    margin: -2.5rem !important;
  }
  .m-xl-n11 {
    margin: -2.75rem !important;
  }
  .m-xl-n12 {
    margin: -3rem !important;
  }
  .mx-xl-n50 {
    margin-inline-end: -0.125rem !important;
    margin-inline-start: -0.125rem !important;
  }
  .mx-xl-n1 {
    margin-inline-end: -0.25rem !important;
    margin-inline-start: -0.25rem !important;
  }
  .mx-xl-n1_5 {
    margin-inline-end: -0.375rem !important;
    margin-inline-start: -0.375rem !important;
  }
  .mx-xl-n2 {
    margin-inline-end: -0.5rem !important;
    margin-inline-start: -0.5rem !important;
  }
  .mx-xl-n3 {
    margin-inline-end: -0.75rem !important;
    margin-inline-start: -0.75rem !important;
  }
  .mx-xl-n4 {
    margin-inline-end: -1rem !important;
    margin-inline-start: -1rem !important;
  }
  .mx-xl-n5 {
    margin-inline-end: -1.25rem !important;
    margin-inline-start: -1.25rem !important;
  }
  .mx-xl-n6 {
    margin-inline-end: -1.5rem !important;
    margin-inline-start: -1.5rem !important;
  }
  .mx-xl-n7 {
    margin-inline-end: -1.75rem !important;
    margin-inline-start: -1.75rem !important;
  }
  .mx-xl-n8 {
    margin-inline-end: -2rem !important;
    margin-inline-start: -2rem !important;
  }
  .mx-xl-n9 {
    margin-inline-end: -2.25rem !important;
    margin-inline-start: -2.25rem !important;
  }
  .mx-xl-n10 {
    margin-inline-end: -2.5rem !important;
    margin-inline-start: -2.5rem !important;
  }
  .mx-xl-n11 {
    margin-inline-end: -2.75rem !important;
    margin-inline-start: -2.75rem !important;
  }
  .mx-xl-n12 {
    margin-inline-end: -3rem !important;
    margin-inline-start: -3rem !important;
  }
  .my-xl-n50 {
    margin-block-start: -0.125rem !important;
    margin-block-end: -0.125rem !important;
  }
  .my-xl-n1 {
    margin-block-start: -0.25rem !important;
    margin-block-end: -0.25rem !important;
  }
  .my-xl-n1_5 {
    margin-block-start: -0.375rem !important;
    margin-block-end: -0.375rem !important;
  }
  .my-xl-n2 {
    margin-block-start: -0.5rem !important;
    margin-block-end: -0.5rem !important;
  }
  .my-xl-n3 {
    margin-block-start: -0.75rem !important;
    margin-block-end: -0.75rem !important;
  }
  .my-xl-n4 {
    margin-block-start: -1rem !important;
    margin-block-end: -1rem !important;
  }
  .my-xl-n5 {
    margin-block-start: -1.25rem !important;
    margin-block-end: -1.25rem !important;
  }
  .my-xl-n6 {
    margin-block-start: -1.5rem !important;
    margin-block-end: -1.5rem !important;
  }
  .my-xl-n7 {
    margin-block-start: -1.75rem !important;
    margin-block-end: -1.75rem !important;
  }
  .my-xl-n8 {
    margin-block-start: -2rem !important;
    margin-block-end: -2rem !important;
  }
  .my-xl-n9 {
    margin-block-start: -2.25rem !important;
    margin-block-end: -2.25rem !important;
  }
  .my-xl-n10 {
    margin-block-start: -2.5rem !important;
    margin-block-end: -2.5rem !important;
  }
  .my-xl-n11 {
    margin-block-start: -2.75rem !important;
    margin-block-end: -2.75rem !important;
  }
  .my-xl-n12 {
    margin-block-start: -3rem !important;
    margin-block-end: -3rem !important;
  }
  .mt-xl-n50 {
    margin-block-start: -0.125rem !important;
  }
  .mt-xl-n1 {
    margin-block-start: -0.25rem !important;
  }
  .mt-xl-n1_5 {
    margin-block-start: -0.375rem !important;
  }
  .mt-xl-n2 {
    margin-block-start: -0.5rem !important;
  }
  .mt-xl-n3 {
    margin-block-start: -0.75rem !important;
  }
  .mt-xl-n4 {
    margin-block-start: -1rem !important;
  }
  .mt-xl-n5 {
    margin-block-start: -1.25rem !important;
  }
  .mt-xl-n6 {
    margin-block-start: -1.5rem !important;
  }
  .mt-xl-n7 {
    margin-block-start: -1.75rem !important;
  }
  .mt-xl-n8 {
    margin-block-start: -2rem !important;
  }
  .mt-xl-n9 {
    margin-block-start: -2.25rem !important;
  }
  .mt-xl-n10 {
    margin-block-start: -2.5rem !important;
  }
  .mt-xl-n11 {
    margin-block-start: -2.75rem !important;
  }
  .mt-xl-n12 {
    margin-block-start: -3rem !important;
  }
  .mb-xl-n50 {
    margin-block-end: -0.125rem !important;
  }
  .mb-xl-n1 {
    margin-block-end: -0.25rem !important;
  }
  .mb-xl-n1_5 {
    margin-block-end: -0.375rem !important;
  }
  .mb-xl-n2 {
    margin-block-end: -0.5rem !important;
  }
  .mb-xl-n3 {
    margin-block-end: -0.75rem !important;
  }
  .mb-xl-n4 {
    margin-block-end: -1rem !important;
  }
  .mb-xl-n5 {
    margin-block-end: -1.25rem !important;
  }
  .mb-xl-n6 {
    margin-block-end: -1.5rem !important;
  }
  .mb-xl-n7 {
    margin-block-end: -1.75rem !important;
  }
  .mb-xl-n8 {
    margin-block-end: -2rem !important;
  }
  .mb-xl-n9 {
    margin-block-end: -2.25rem !important;
  }
  .mb-xl-n10 {
    margin-block-end: -2.5rem !important;
  }
  .mb-xl-n11 {
    margin-block-end: -2.75rem !important;
  }
  .mb-xl-n12 {
    margin-block-end: -3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-50 {
    padding: 0.125rem !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-1_5 {
    padding: 0.375rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 0.75rem !important;
  }
  .p-xl-4 {
    padding: 1rem !important;
  }
  .p-xl-5 {
    padding: 1.25rem !important;
  }
  .p-xl-6 {
    padding: 1.5rem !important;
  }
  .p-xl-7 {
    padding: 1.75rem !important;
  }
  .p-xl-8 {
    padding: 2rem !important;
  }
  .p-xl-9 {
    padding: 2.25rem !important;
  }
  .p-xl-10 {
    padding: 2.5rem !important;
  }
  .p-xl-11 {
    padding: 2.75rem !important;
  }
  .p-xl-12 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-inline-end: 0 !important;
    padding-inline-start: 0 !important;
  }
  .px-xl-50 {
    padding-inline-end: 0.125rem !important;
    padding-inline-start: 0.125rem !important;
  }
  .px-xl-1 {
    padding-inline-end: 0.25rem !important;
    padding-inline-start: 0.25rem !important;
  }
  .px-xl-1_5 {
    padding-inline-end: 0.375rem !important;
    padding-inline-start: 0.375rem !important;
  }
  .px-xl-2 {
    padding-inline-end: 0.5rem !important;
    padding-inline-start: 0.5rem !important;
  }
  .px-xl-3 {
    padding-inline-end: 0.75rem !important;
    padding-inline-start: 0.75rem !important;
  }
  .px-xl-4 {
    padding-inline-end: 1rem !important;
    padding-inline-start: 1rem !important;
  }
  .px-xl-5 {
    padding-inline-end: 1.25rem !important;
    padding-inline-start: 1.25rem !important;
  }
  .px-xl-6 {
    padding-inline-end: 1.5rem !important;
    padding-inline-start: 1.5rem !important;
  }
  .px-xl-7 {
    padding-inline-end: 1.75rem !important;
    padding-inline-start: 1.75rem !important;
  }
  .px-xl-8 {
    padding-inline-end: 2rem !important;
    padding-inline-start: 2rem !important;
  }
  .px-xl-9 {
    padding-inline-end: 2.25rem !important;
    padding-inline-start: 2.25rem !important;
  }
  .px-xl-10 {
    padding-inline-end: 2.5rem !important;
    padding-inline-start: 2.5rem !important;
  }
  .px-xl-11 {
    padding-inline-end: 2.75rem !important;
    padding-inline-start: 2.75rem !important;
  }
  .px-xl-12 {
    padding-inline-end: 3rem !important;
    padding-inline-start: 3rem !important;
  }
  .py-xl-0 {
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
  }
  .py-xl-50 {
    padding-block-start: 0.125rem !important;
    padding-block-end: 0.125rem !important;
  }
  .py-xl-1 {
    padding-block-start: 0.25rem !important;
    padding-block-end: 0.25rem !important;
  }
  .py-xl-1_5 {
    padding-block-start: 0.375rem !important;
    padding-block-end: 0.375rem !important;
  }
  .py-xl-2 {
    padding-block-start: 0.5rem !important;
    padding-block-end: 0.5rem !important;
  }
  .py-xl-3 {
    padding-block-start: 0.75rem !important;
    padding-block-end: 0.75rem !important;
  }
  .py-xl-4 {
    padding-block-start: 1rem !important;
    padding-block-end: 1rem !important;
  }
  .py-xl-5 {
    padding-block-start: 1.25rem !important;
    padding-block-end: 1.25rem !important;
  }
  .py-xl-6 {
    padding-block-start: 1.5rem !important;
    padding-block-end: 1.5rem !important;
  }
  .py-xl-7 {
    padding-block-start: 1.75rem !important;
    padding-block-end: 1.75rem !important;
  }
  .py-xl-8 {
    padding-block-start: 2rem !important;
    padding-block-end: 2rem !important;
  }
  .py-xl-9 {
    padding-block-start: 2.25rem !important;
    padding-block-end: 2.25rem !important;
  }
  .py-xl-10 {
    padding-block-start: 2.5rem !important;
    padding-block-end: 2.5rem !important;
  }
  .py-xl-11 {
    padding-block-start: 2.75rem !important;
    padding-block-end: 2.75rem !important;
  }
  .py-xl-12 {
    padding-block-start: 3rem !important;
    padding-block-end: 3rem !important;
  }
  .pt-xl-0 {
    padding-block-start: 0 !important;
  }
  .pt-xl-50 {
    padding-block-start: 0.125rem !important;
  }
  .pt-xl-1 {
    padding-block-start: 0.25rem !important;
  }
  .pt-xl-1_5 {
    padding-block-start: 0.375rem !important;
  }
  .pt-xl-2 {
    padding-block-start: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-block-start: 0.75rem !important;
  }
  .pt-xl-4 {
    padding-block-start: 1rem !important;
  }
  .pt-xl-5 {
    padding-block-start: 1.25rem !important;
  }
  .pt-xl-6 {
    padding-block-start: 1.5rem !important;
  }
  .pt-xl-7 {
    padding-block-start: 1.75rem !important;
  }
  .pt-xl-8 {
    padding-block-start: 2rem !important;
  }
  .pt-xl-9 {
    padding-block-start: 2.25rem !important;
  }
  .pt-xl-10 {
    padding-block-start: 2.5rem !important;
  }
  .pt-xl-11 {
    padding-block-start: 2.75rem !important;
  }
  .pt-xl-12 {
    padding-block-start: 3rem !important;
  }
  .pb-xl-0 {
    padding-block-end: 0 !important;
  }
  .pb-xl-50 {
    padding-block-end: 0.125rem !important;
  }
  .pb-xl-1 {
    padding-block-end: 0.25rem !important;
  }
  .pb-xl-1_5 {
    padding-block-end: 0.375rem !important;
  }
  .pb-xl-2 {
    padding-block-end: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-block-end: 0.75rem !important;
  }
  .pb-xl-4 {
    padding-block-end: 1rem !important;
  }
  .pb-xl-5 {
    padding-block-end: 1.25rem !important;
  }
  .pb-xl-6 {
    padding-block-end: 1.5rem !important;
  }
  .pb-xl-7 {
    padding-block-end: 1.75rem !important;
  }
  .pb-xl-8 {
    padding-block-end: 2rem !important;
  }
  .pb-xl-9 {
    padding-block-end: 2.25rem !important;
  }
  .pb-xl-10 {
    padding-block-end: 2.5rem !important;
  }
  .pb-xl-11 {
    padding-block-end: 2.75rem !important;
  }
  .pb-xl-12 {
    padding-block-end: 3rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-50 {
    gap: 0.125rem !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-1_5 {
    gap: 0.375rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 0.75rem !important;
  }
  .gap-xl-4 {
    gap: 1rem !important;
  }
  .gap-xl-5 {
    gap: 1.25rem !important;
  }
  .gap-xl-6 {
    gap: 1.5rem !important;
  }
  .gap-xl-7 {
    gap: 1.75rem !important;
  }
  .gap-xl-8 {
    gap: 2rem !important;
  }
  .gap-xl-9 {
    gap: 2.25rem !important;
  }
  .gap-xl-10 {
    gap: 2.5rem !important;
  }
  .gap-xl-11 {
    gap: 2.75rem !important;
  }
  .gap-xl-12 {
    gap: 3rem !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-50 {
    row-gap: 0.125rem !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-1_5 {
    row-gap: 0.375rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-xl-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-7 {
    row-gap: 1.75rem !important;
  }
  .row-gap-xl-8 {
    row-gap: 2rem !important;
  }
  .row-gap-xl-9 {
    row-gap: 2.25rem !important;
  }
  .row-gap-xl-10 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xl-11 {
    row-gap: 2.75rem !important;
  }
  .row-gap-xl-12 {
    row-gap: 3rem !important;
  }
}

@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-50 {
    margin: 0.125rem !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-1_5 {
    margin: 0.375rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 0.75rem !important;
  }
  .m-xxl-4 {
    margin: 1rem !important;
  }
  .m-xxl-5 {
    margin: 1.25rem !important;
  }
  .m-xxl-6 {
    margin: 1.5rem !important;
  }
  .m-xxl-7 {
    margin: 1.75rem !important;
  }
  .m-xxl-8 {
    margin: 2rem !important;
  }
  .m-xxl-9 {
    margin: 2.25rem !important;
  }
  .m-xxl-10 {
    margin: 2.5rem !important;
  }
  .m-xxl-11 {
    margin: 2.75rem !important;
  }
  .m-xxl-12 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-inline-end: 0 !important;
    margin-inline-start: 0 !important;
  }
  .mx-xxl-50 {
    margin-inline-end: 0.125rem !important;
    margin-inline-start: 0.125rem !important;
  }
  .mx-xxl-1 {
    margin-inline-end: 0.25rem !important;
    margin-inline-start: 0.25rem !important;
  }
  .mx-xxl-1_5 {
    margin-inline-end: 0.375rem !important;
    margin-inline-start: 0.375rem !important;
  }
  .mx-xxl-2 {
    margin-inline-end: 0.5rem !important;
    margin-inline-start: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-inline-end: 0.75rem !important;
    margin-inline-start: 0.75rem !important;
  }
  .mx-xxl-4 {
    margin-inline-end: 1rem !important;
    margin-inline-start: 1rem !important;
  }
  .mx-xxl-5 {
    margin-inline-end: 1.25rem !important;
    margin-inline-start: 1.25rem !important;
  }
  .mx-xxl-6 {
    margin-inline-end: 1.5rem !important;
    margin-inline-start: 1.5rem !important;
  }
  .mx-xxl-7 {
    margin-inline-end: 1.75rem !important;
    margin-inline-start: 1.75rem !important;
  }
  .mx-xxl-8 {
    margin-inline-end: 2rem !important;
    margin-inline-start: 2rem !important;
  }
  .mx-xxl-9 {
    margin-inline-end: 2.25rem !important;
    margin-inline-start: 2.25rem !important;
  }
  .mx-xxl-10 {
    margin-inline-end: 2.5rem !important;
    margin-inline-start: 2.5rem !important;
  }
  .mx-xxl-11 {
    margin-inline-end: 2.75rem !important;
    margin-inline-start: 2.75rem !important;
  }
  .mx-xxl-12 {
    margin-inline-end: 3rem !important;
    margin-inline-start: 3rem !important;
  }
  .mx-xxl-auto {
    margin-inline-end: auto !important;
    margin-inline-start: auto !important;
  }
  .my-xxl-0 {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
  }
  .my-xxl-50 {
    margin-block-start: 0.125rem !important;
    margin-block-end: 0.125rem !important;
  }
  .my-xxl-1 {
    margin-block-start: 0.25rem !important;
    margin-block-end: 0.25rem !important;
  }
  .my-xxl-1_5 {
    margin-block-start: 0.375rem !important;
    margin-block-end: 0.375rem !important;
  }
  .my-xxl-2 {
    margin-block-start: 0.5rem !important;
    margin-block-end: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-block-start: 0.75rem !important;
    margin-block-end: 0.75rem !important;
  }
  .my-xxl-4 {
    margin-block-start: 1rem !important;
    margin-block-end: 1rem !important;
  }
  .my-xxl-5 {
    margin-block-start: 1.25rem !important;
    margin-block-end: 1.25rem !important;
  }
  .my-xxl-6 {
    margin-block-start: 1.5rem !important;
    margin-block-end: 1.5rem !important;
  }
  .my-xxl-7 {
    margin-block-start: 1.75rem !important;
    margin-block-end: 1.75rem !important;
  }
  .my-xxl-8 {
    margin-block-start: 2rem !important;
    margin-block-end: 2rem !important;
  }
  .my-xxl-9 {
    margin-block-start: 2.25rem !important;
    margin-block-end: 2.25rem !important;
  }
  .my-xxl-10 {
    margin-block-start: 2.5rem !important;
    margin-block-end: 2.5rem !important;
  }
  .my-xxl-11 {
    margin-block-start: 2.75rem !important;
    margin-block-end: 2.75rem !important;
  }
  .my-xxl-12 {
    margin-block-start: 3rem !important;
    margin-block-end: 3rem !important;
  }
  .my-xxl-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .mt-xxl-0 {
    margin-block-start: 0 !important;
  }
  .mt-xxl-50 {
    margin-block-start: 0.125rem !important;
  }
  .mt-xxl-1 {
    margin-block-start: 0.25rem !important;
  }
  .mt-xxl-1_5 {
    margin-block-start: 0.375rem !important;
  }
  .mt-xxl-2 {
    margin-block-start: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-block-start: 0.75rem !important;
  }
  .mt-xxl-4 {
    margin-block-start: 1rem !important;
  }
  .mt-xxl-5 {
    margin-block-start: 1.25rem !important;
  }
  .mt-xxl-6 {
    margin-block-start: 1.5rem !important;
  }
  .mt-xxl-7 {
    margin-block-start: 1.75rem !important;
  }
  .mt-xxl-8 {
    margin-block-start: 2rem !important;
  }
  .mt-xxl-9 {
    margin-block-start: 2.25rem !important;
  }
  .mt-xxl-10 {
    margin-block-start: 2.5rem !important;
  }
  .mt-xxl-11 {
    margin-block-start: 2.75rem !important;
  }
  .mt-xxl-12 {
    margin-block-start: 3rem !important;
  }
  .mt-xxl-auto {
    margin-block-start: auto !important;
  }
  .mb-xxl-0 {
    margin-block-end: 0 !important;
  }
  .mb-xxl-50 {
    margin-block-end: 0.125rem !important;
  }
  .mb-xxl-1 {
    margin-block-end: 0.25rem !important;
  }
  .mb-xxl-1_5 {
    margin-block-end: 0.375rem !important;
  }
  .mb-xxl-2 {
    margin-block-end: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-block-end: 0.75rem !important;
  }
  .mb-xxl-4 {
    margin-block-end: 1rem !important;
  }
  .mb-xxl-5 {
    margin-block-end: 1.25rem !important;
  }
  .mb-xxl-6 {
    margin-block-end: 1.5rem !important;
  }
  .mb-xxl-7 {
    margin-block-end: 1.75rem !important;
  }
  .mb-xxl-8 {
    margin-block-end: 2rem !important;
  }
  .mb-xxl-9 {
    margin-block-end: 2.25rem !important;
  }
  .mb-xxl-10 {
    margin-block-end: 2.5rem !important;
  }
  .mb-xxl-11 {
    margin-block-end: 2.75rem !important;
  }
  .mb-xxl-12 {
    margin-block-end: 3rem !important;
  }
  .mb-xxl-auto {
    margin-block-end: auto !important;
  }
  .m-xxl-n50 {
    margin: -0.125rem !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .m-xxl-n1_5 {
    margin: -0.375rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin: -0.75rem !important;
  }
  .m-xxl-n4 {
    margin: -1rem !important;
  }
  .m-xxl-n5 {
    margin: -1.25rem !important;
  }
  .m-xxl-n6 {
    margin: -1.5rem !important;
  }
  .m-xxl-n7 {
    margin: -1.75rem !important;
  }
  .m-xxl-n8 {
    margin: -2rem !important;
  }
  .m-xxl-n9 {
    margin: -2.25rem !important;
  }
  .m-xxl-n10 {
    margin: -2.5rem !important;
  }
  .m-xxl-n11 {
    margin: -2.75rem !important;
  }
  .m-xxl-n12 {
    margin: -3rem !important;
  }
  .mx-xxl-n50 {
    margin-inline-end: -0.125rem !important;
    margin-inline-start: -0.125rem !important;
  }
  .mx-xxl-n1 {
    margin-inline-end: -0.25rem !important;
    margin-inline-start: -0.25rem !important;
  }
  .mx-xxl-n1_5 {
    margin-inline-end: -0.375rem !important;
    margin-inline-start: -0.375rem !important;
  }
  .mx-xxl-n2 {
    margin-inline-end: -0.5rem !important;
    margin-inline-start: -0.5rem !important;
  }
  .mx-xxl-n3 {
    margin-inline-end: -0.75rem !important;
    margin-inline-start: -0.75rem !important;
  }
  .mx-xxl-n4 {
    margin-inline-end: -1rem !important;
    margin-inline-start: -1rem !important;
  }
  .mx-xxl-n5 {
    margin-inline-end: -1.25rem !important;
    margin-inline-start: -1.25rem !important;
  }
  .mx-xxl-n6 {
    margin-inline-end: -1.5rem !important;
    margin-inline-start: -1.5rem !important;
  }
  .mx-xxl-n7 {
    margin-inline-end: -1.75rem !important;
    margin-inline-start: -1.75rem !important;
  }
  .mx-xxl-n8 {
    margin-inline-end: -2rem !important;
    margin-inline-start: -2rem !important;
  }
  .mx-xxl-n9 {
    margin-inline-end: -2.25rem !important;
    margin-inline-start: -2.25rem !important;
  }
  .mx-xxl-n10 {
    margin-inline-end: -2.5rem !important;
    margin-inline-start: -2.5rem !important;
  }
  .mx-xxl-n11 {
    margin-inline-end: -2.75rem !important;
    margin-inline-start: -2.75rem !important;
  }
  .mx-xxl-n12 {
    margin-inline-end: -3rem !important;
    margin-inline-start: -3rem !important;
  }
  .my-xxl-n50 {
    margin-block-start: -0.125rem !important;
    margin-block-end: -0.125rem !important;
  }
  .my-xxl-n1 {
    margin-block-start: -0.25rem !important;
    margin-block-end: -0.25rem !important;
  }
  .my-xxl-n1_5 {
    margin-block-start: -0.375rem !important;
    margin-block-end: -0.375rem !important;
  }
  .my-xxl-n2 {
    margin-block-start: -0.5rem !important;
    margin-block-end: -0.5rem !important;
  }
  .my-xxl-n3 {
    margin-block-start: -0.75rem !important;
    margin-block-end: -0.75rem !important;
  }
  .my-xxl-n4 {
    margin-block-start: -1rem !important;
    margin-block-end: -1rem !important;
  }
  .my-xxl-n5 {
    margin-block-start: -1.25rem !important;
    margin-block-end: -1.25rem !important;
  }
  .my-xxl-n6 {
    margin-block-start: -1.5rem !important;
    margin-block-end: -1.5rem !important;
  }
  .my-xxl-n7 {
    margin-block-start: -1.75rem !important;
    margin-block-end: -1.75rem !important;
  }
  .my-xxl-n8 {
    margin-block-start: -2rem !important;
    margin-block-end: -2rem !important;
  }
  .my-xxl-n9 {
    margin-block-start: -2.25rem !important;
    margin-block-end: -2.25rem !important;
  }
  .my-xxl-n10 {
    margin-block-start: -2.5rem !important;
    margin-block-end: -2.5rem !important;
  }
  .my-xxl-n11 {
    margin-block-start: -2.75rem !important;
    margin-block-end: -2.75rem !important;
  }
  .my-xxl-n12 {
    margin-block-start: -3rem !important;
    margin-block-end: -3rem !important;
  }
  .mt-xxl-n50 {
    margin-block-start: -0.125rem !important;
  }
  .mt-xxl-n1 {
    margin-block-start: -0.25rem !important;
  }
  .mt-xxl-n1_5 {
    margin-block-start: -0.375rem !important;
  }
  .mt-xxl-n2 {
    margin-block-start: -0.5rem !important;
  }
  .mt-xxl-n3 {
    margin-block-start: -0.75rem !important;
  }
  .mt-xxl-n4 {
    margin-block-start: -1rem !important;
  }
  .mt-xxl-n5 {
    margin-block-start: -1.25rem !important;
  }
  .mt-xxl-n6 {
    margin-block-start: -1.5rem !important;
  }
  .mt-xxl-n7 {
    margin-block-start: -1.75rem !important;
  }
  .mt-xxl-n8 {
    margin-block-start: -2rem !important;
  }
  .mt-xxl-n9 {
    margin-block-start: -2.25rem !important;
  }
  .mt-xxl-n10 {
    margin-block-start: -2.5rem !important;
  }
  .mt-xxl-n11 {
    margin-block-start: -2.75rem !important;
  }
  .mt-xxl-n12 {
    margin-block-start: -3rem !important;
  }
  .mb-xxl-n50 {
    margin-block-end: -0.125rem !important;
  }
  .mb-xxl-n1 {
    margin-block-end: -0.25rem !important;
  }
  .mb-xxl-n1_5 {
    margin-block-end: -0.375rem !important;
  }
  .mb-xxl-n2 {
    margin-block-end: -0.5rem !important;
  }
  .mb-xxl-n3 {
    margin-block-end: -0.75rem !important;
  }
  .mb-xxl-n4 {
    margin-block-end: -1rem !important;
  }
  .mb-xxl-n5 {
    margin-block-end: -1.25rem !important;
  }
  .mb-xxl-n6 {
    margin-block-end: -1.5rem !important;
  }
  .mb-xxl-n7 {
    margin-block-end: -1.75rem !important;
  }
  .mb-xxl-n8 {
    margin-block-end: -2rem !important;
  }
  .mb-xxl-n9 {
    margin-block-end: -2.25rem !important;
  }
  .mb-xxl-n10 {
    margin-block-end: -2.5rem !important;
  }
  .mb-xxl-n11 {
    margin-block-end: -2.75rem !important;
  }
  .mb-xxl-n12 {
    margin-block-end: -3rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-50 {
    padding: 0.125rem !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-1_5 {
    padding: 0.375rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 0.75rem !important;
  }
  .p-xxl-4 {
    padding: 1rem !important;
  }
  .p-xxl-5 {
    padding: 1.25rem !important;
  }
  .p-xxl-6 {
    padding: 1.5rem !important;
  }
  .p-xxl-7 {
    padding: 1.75rem !important;
  }
  .p-xxl-8 {
    padding: 2rem !important;
  }
  .p-xxl-9 {
    padding: 2.25rem !important;
  }
  .p-xxl-10 {
    padding: 2.5rem !important;
  }
  .p-xxl-11 {
    padding: 2.75rem !important;
  }
  .p-xxl-12 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-inline-end: 0 !important;
    padding-inline-start: 0 !important;
  }
  .px-xxl-50 {
    padding-inline-end: 0.125rem !important;
    padding-inline-start: 0.125rem !important;
  }
  .px-xxl-1 {
    padding-inline-end: 0.25rem !important;
    padding-inline-start: 0.25rem !important;
  }
  .px-xxl-1_5 {
    padding-inline-end: 0.375rem !important;
    padding-inline-start: 0.375rem !important;
  }
  .px-xxl-2 {
    padding-inline-end: 0.5rem !important;
    padding-inline-start: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-inline-end: 0.75rem !important;
    padding-inline-start: 0.75rem !important;
  }
  .px-xxl-4 {
    padding-inline-end: 1rem !important;
    padding-inline-start: 1rem !important;
  }
  .px-xxl-5 {
    padding-inline-end: 1.25rem !important;
    padding-inline-start: 1.25rem !important;
  }
  .px-xxl-6 {
    padding-inline-end: 1.5rem !important;
    padding-inline-start: 1.5rem !important;
  }
  .px-xxl-7 {
    padding-inline-end: 1.75rem !important;
    padding-inline-start: 1.75rem !important;
  }
  .px-xxl-8 {
    padding-inline-end: 2rem !important;
    padding-inline-start: 2rem !important;
  }
  .px-xxl-9 {
    padding-inline-end: 2.25rem !important;
    padding-inline-start: 2.25rem !important;
  }
  .px-xxl-10 {
    padding-inline-end: 2.5rem !important;
    padding-inline-start: 2.5rem !important;
  }
  .px-xxl-11 {
    padding-inline-end: 2.75rem !important;
    padding-inline-start: 2.75rem !important;
  }
  .px-xxl-12 {
    padding-inline-end: 3rem !important;
    padding-inline-start: 3rem !important;
  }
  .py-xxl-0 {
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
  }
  .py-xxl-50 {
    padding-block-start: 0.125rem !important;
    padding-block-end: 0.125rem !important;
  }
  .py-xxl-1 {
    padding-block-start: 0.25rem !important;
    padding-block-end: 0.25rem !important;
  }
  .py-xxl-1_5 {
    padding-block-start: 0.375rem !important;
    padding-block-end: 0.375rem !important;
  }
  .py-xxl-2 {
    padding-block-start: 0.5rem !important;
    padding-block-end: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-block-start: 0.75rem !important;
    padding-block-end: 0.75rem !important;
  }
  .py-xxl-4 {
    padding-block-start: 1rem !important;
    padding-block-end: 1rem !important;
  }
  .py-xxl-5 {
    padding-block-start: 1.25rem !important;
    padding-block-end: 1.25rem !important;
  }
  .py-xxl-6 {
    padding-block-start: 1.5rem !important;
    padding-block-end: 1.5rem !important;
  }
  .py-xxl-7 {
    padding-block-start: 1.75rem !important;
    padding-block-end: 1.75rem !important;
  }
  .py-xxl-8 {
    padding-block-start: 2rem !important;
    padding-block-end: 2rem !important;
  }
  .py-xxl-9 {
    padding-block-start: 2.25rem !important;
    padding-block-end: 2.25rem !important;
  }
  .py-xxl-10 {
    padding-block-start: 2.5rem !important;
    padding-block-end: 2.5rem !important;
  }
  .py-xxl-11 {
    padding-block-start: 2.75rem !important;
    padding-block-end: 2.75rem !important;
  }
  .py-xxl-12 {
    padding-block-start: 3rem !important;
    padding-block-end: 3rem !important;
  }
  .pt-xxl-0 {
    padding-block-start: 0 !important;
  }
  .pt-xxl-50 {
    padding-block-start: 0.125rem !important;
  }
  .pt-xxl-1 {
    padding-block-start: 0.25rem !important;
  }
  .pt-xxl-1_5 {
    padding-block-start: 0.375rem !important;
  }
  .pt-xxl-2 {
    padding-block-start: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-block-start: 0.75rem !important;
  }
  .pt-xxl-4 {
    padding-block-start: 1rem !important;
  }
  .pt-xxl-5 {
    padding-block-start: 1.25rem !important;
  }
  .pt-xxl-6 {
    padding-block-start: 1.5rem !important;
  }
  .pt-xxl-7 {
    padding-block-start: 1.75rem !important;
  }
  .pt-xxl-8 {
    padding-block-start: 2rem !important;
  }
  .pt-xxl-9 {
    padding-block-start: 2.25rem !important;
  }
  .pt-xxl-10 {
    padding-block-start: 2.5rem !important;
  }
  .pt-xxl-11 {
    padding-block-start: 2.75rem !important;
  }
  .pt-xxl-12 {
    padding-block-start: 3rem !important;
  }
  .pb-xxl-0 {
    padding-block-end: 0 !important;
  }
  .pb-xxl-50 {
    padding-block-end: 0.125rem !important;
  }
  .pb-xxl-1 {
    padding-block-end: 0.25rem !important;
  }
  .pb-xxl-1_5 {
    padding-block-end: 0.375rem !important;
  }
  .pb-xxl-2 {
    padding-block-end: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-block-end: 0.75rem !important;
  }
  .pb-xxl-4 {
    padding-block-end: 1rem !important;
  }
  .pb-xxl-5 {
    padding-block-end: 1.25rem !important;
  }
  .pb-xxl-6 {
    padding-block-end: 1.5rem !important;
  }
  .pb-xxl-7 {
    padding-block-end: 1.75rem !important;
  }
  .pb-xxl-8 {
    padding-block-end: 2rem !important;
  }
  .pb-xxl-9 {
    padding-block-end: 2.25rem !important;
  }
  .pb-xxl-10 {
    padding-block-end: 2.5rem !important;
  }
  .pb-xxl-11 {
    padding-block-end: 2.75rem !important;
  }
  .pb-xxl-12 {
    padding-block-end: 3rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-50 {
    gap: 0.125rem !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-1_5 {
    gap: 0.375rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 0.75rem !important;
  }
  .gap-xxl-4 {
    gap: 1rem !important;
  }
  .gap-xxl-5 {
    gap: 1.25rem !important;
  }
  .gap-xxl-6 {
    gap: 1.5rem !important;
  }
  .gap-xxl-7 {
    gap: 1.75rem !important;
  }
  .gap-xxl-8 {
    gap: 2rem !important;
  }
  .gap-xxl-9 {
    gap: 2.25rem !important;
  }
  .gap-xxl-10 {
    gap: 2.5rem !important;
  }
  .gap-xxl-11 {
    gap: 2.75rem !important;
  }
  .gap-xxl-12 {
    gap: 3rem !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-50 {
    row-gap: 0.125rem !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-1_5 {
    row-gap: 0.375rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-xxl-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-7 {
    row-gap: 1.75rem !important;
  }
  .row-gap-xxl-8 {
    row-gap: 2rem !important;
  }
  .row-gap-xxl-9 {
    row-gap: 2.25rem !important;
  }
  .row-gap-xxl-10 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xxl-11 {
    row-gap: 2.75rem !important;
  }
  .row-gap-xxl-12 {
    row-gap: 3rem !important;
  }
}

@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !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;
  }
  .d-print-none {
    display: none !important;
  }
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  padding-inline: 1rem;
}

@media (min-width: 992px) {
  .container,
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    padding-inline: 1.625rem;
  }
}

.layout-navbar-fixed .container-p-y:not([class^=pt-]):not([class*=" pt-"]) {
  padding-block-start: 1.75rem !important;
}

@media (min-width: 1200px) {
  .layout-footer-fixed:not(.layout-menu-collapsed).swal2-shown .layout-wrapper .content-footer:has(.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl), .layout-footer-fixed:not(.layout-menu-collapsed) .modal-open .layout-wrapper .content-footer:has(.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl) {
    inline-size: calc(100% - 16.25rem - var(--bs-scrollbar-width));
  }
}

@media (min-width: 992px) {
  .container-xxl, .container-fluid, .container-p-y {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
}

@media (max-width: 768px) {
  .container, .container-xxl, .container-fluid, .container-p-y {
    padding-left: 4px !important;
    padding-right: 4px !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .row > * {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
}