@charset "UTF-8";
/**
 * ds-grid — Grid / スペーシング / Flex ユーティリティ（ds- プレフィックス）
 * Bootstrap 本体は不要。既存サイトの標準クラス名と競合しません。
 */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
  --ds-gutter-x: 1.5rem;
  --ds-gutter-y: 0;
  /* スペーシングスケール（gutter / margin / padding で共通） */
  --ds-spacer-0: 0;
  --ds-spacer-1: 0.25rem;
  --ds-spacer-2: 0.5rem;
  --ds-spacer-3: 1rem;
  --ds-spacer-4: 1.5rem;
  --ds-spacer-5: 3rem;
  --ds-gutter-0: var(--ds-spacer-0);
  --ds-gutter-1: var(--ds-spacer-1);
  --ds-gutter-2: var(--ds-spacer-2);
  --ds-gutter-3: var(--ds-spacer-3);
  --ds-gutter-4: var(--ds-spacer-4);
  --ds-gutter-5: var(--ds-spacer-5);
  --ds-breakpoint-sm: 576px;
  --ds-breakpoint-md: 768px;
  --ds-breakpoint-lg: 992px;
  --ds-breakpoint-xl: 1200px;
}

/* --------------------------------------------------------------------------
   Container
   -------------------------------------------------------------------------- */
.ds-container,
.ds-container-fluid {
  box-sizing: border-box;
  width: 100%;
  padding-right: calc(var(--ds-gutter-x) * 0.5);
  padding-left: calc(var(--ds-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.ds-container-fluid {
  max-width: none;
}

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

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

@media (min-width: 992px) {
  .ds-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .ds-container {
    max-width: 1140px;
  }
}

/* --------------------------------------------------------------------------
   Row
   -------------------------------------------------------------------------- */
.ds-row {
  box-sizing: border-box;
  --ds-gutter-x: 1.5rem;
  --ds-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--ds-gutter-y));
  margin-right: calc(-0.5 * var(--ds-gutter-x));
  margin-left: calc(-0.5 * var(--ds-gutter-x));
}

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

/* --------------------------------------------------------------------------
   Gutter utilities (.ds-g-0 ～ .ds-g-5)
   -------------------------------------------------------------------------- */
.ds-g-0 {
  --ds-gutter-x: var(--ds-gutter-0);
  --ds-gutter-y: var(--ds-gutter-0);
}

.ds-g-1 {
  --ds-gutter-x: var(--ds-gutter-1);
  --ds-gutter-y: var(--ds-gutter-1);
}

.ds-g-2 {
  --ds-gutter-x: var(--ds-gutter-2);
  --ds-gutter-y: var(--ds-gutter-2);
}

.ds-g-3 {
  --ds-gutter-x: var(--ds-gutter-3);
  --ds-gutter-y: var(--ds-gutter-3);
}

.ds-g-4 {
  --ds-gutter-x: var(--ds-gutter-4);
  --ds-gutter-y: var(--ds-gutter-4);
}

.ds-g-5 {
  --ds-gutter-x: var(--ds-gutter-5);
  --ds-gutter-y: var(--ds-gutter-5);
}

/* --------------------------------------------------------------------------
   Column — equal-width flex column
   -------------------------------------------------------------------------- */
.ds-col {
  flex: 1 0 0%;
}

/* --------------------------------------------------------------------------
   Column widths — default (all viewports, mobile-first base)
   -------------------------------------------------------------------------- */
.ds-col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------------------
   sm — 576px+
   -------------------------------------------------------------------------- */
@media (min-width: 576px) {
  .ds-col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------------------
   md — 768px+
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .ds-col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------------------
   lg — 992px+
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  .ds-col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------------------
   xl — 1200px+
   -------------------------------------------------------------------------- */
@media (min-width: 1200px) {
  .ds-col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

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

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

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

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------------------
   Spacing utilities — margin / padding
   t / b / s / e / x / y + 0〜5（--ds-spacer-*）
   -------------------------------------------------------------------------- */

.ds-m-0 {
  margin: var(--ds-spacer-0) !important;
}

.ds-m-1 {
  margin: var(--ds-spacer-1) !important;
}

.ds-m-2 {
  margin: var(--ds-spacer-2) !important;
}

.ds-m-3 {
  margin: var(--ds-spacer-3) !important;
}

.ds-m-4 {
  margin: var(--ds-spacer-4) !important;
}

.ds-m-5 {
  margin: var(--ds-spacer-5) !important;
}

.ds-p-0 {
  padding: var(--ds-spacer-0) !important;
}

.ds-p-1 {
  padding: var(--ds-spacer-1) !important;
}

.ds-p-2 {
  padding: var(--ds-spacer-2) !important;
}

.ds-p-3 {
  padding: var(--ds-spacer-3) !important;
}

.ds-p-4 {
  padding: var(--ds-spacer-4) !important;
}

.ds-p-5 {
  padding: var(--ds-spacer-5) !important;
}

/* margin — 方向別 */

.ds-mt-0 {
  margin-top: var(--ds-spacer-0) !important;
}

.ds-mt-1 {
  margin-top: var(--ds-spacer-1) !important;
}

.ds-mt-2 {
  margin-top: var(--ds-spacer-2) !important;
}

.ds-mt-3 {
  margin-top: var(--ds-spacer-3) !important;
}

.ds-mt-4 {
  margin-top: var(--ds-spacer-4) !important;
}

.ds-mt-5 {
  margin-top: var(--ds-spacer-5) !important;
}

.ds-mb-0 {
  margin-bottom: var(--ds-spacer-0) !important;
}

.ds-mb-1 {
  margin-bottom: var(--ds-spacer-1) !important;
}

.ds-mb-2 {
  margin-bottom: var(--ds-spacer-2) !important;
}

.ds-mb-3 {
  margin-bottom: var(--ds-spacer-3) !important;
}

.ds-mb-4 {
  margin-bottom: var(--ds-spacer-4) !important;
}

.ds-mb-5 {
  margin-bottom: var(--ds-spacer-5) !important;
}

.ds-ms-0 {
  margin-inline-start: var(--ds-spacer-0) !important;
}

.ds-ms-1 {
  margin-inline-start: var(--ds-spacer-1) !important;
}

.ds-ms-2 {
  margin-inline-start: var(--ds-spacer-2) !important;
}

.ds-ms-3 {
  margin-inline-start: var(--ds-spacer-3) !important;
}

.ds-ms-4 {
  margin-inline-start: var(--ds-spacer-4) !important;
}

.ds-ms-5 {
  margin-inline-start: var(--ds-spacer-5) !important;
}

.ds-me-0 {
  margin-inline-end: var(--ds-spacer-0) !important;
}

.ds-me-1 {
  margin-inline-end: var(--ds-spacer-1) !important;
}

.ds-me-2 {
  margin-inline-end: var(--ds-spacer-2) !important;
}

.ds-me-3 {
  margin-inline-end: var(--ds-spacer-3) !important;
}

.ds-me-4 {
  margin-inline-end: var(--ds-spacer-4) !important;
}

.ds-me-5 {
  margin-inline-end: var(--ds-spacer-5) !important;
}

.ds-mx-0 {
  margin-inline: var(--ds-spacer-0) !important;
}

.ds-mx-1 {
  margin-inline: var(--ds-spacer-1) !important;
}

.ds-mx-2 {
  margin-inline: var(--ds-spacer-2) !important;
}

.ds-mx-3 {
  margin-inline: var(--ds-spacer-3) !important;
}

.ds-mx-4 {
  margin-inline: var(--ds-spacer-4) !important;
}

.ds-mx-5 {
  margin-inline: var(--ds-spacer-5) !important;
}

.ds-my-0 {
  margin-block: var(--ds-spacer-0) !important;
}

.ds-my-1 {
  margin-block: var(--ds-spacer-1) !important;
}

.ds-my-2 {
  margin-block: var(--ds-spacer-2) !important;
}

.ds-my-3 {
  margin-block: var(--ds-spacer-3) !important;
}

.ds-my-4 {
  margin-block: var(--ds-spacer-4) !important;
}

.ds-my-5 {
  margin-block: var(--ds-spacer-5) !important;
}

/* padding — 方向別 */

.ds-pt-0 {
  padding-top: var(--ds-spacer-0) !important;
}

.ds-pt-1 {
  padding-top: var(--ds-spacer-1) !important;
}

.ds-pt-2 {
  padding-top: var(--ds-spacer-2) !important;
}

.ds-pt-3 {
  padding-top: var(--ds-spacer-3) !important;
}

.ds-pt-4 {
  padding-top: var(--ds-spacer-4) !important;
}

.ds-pt-5 {
  padding-top: var(--ds-spacer-5) !important;
}

.ds-pb-0 {
  padding-bottom: var(--ds-spacer-0) !important;
}

.ds-pb-1 {
  padding-bottom: var(--ds-spacer-1) !important;
}

.ds-pb-2 {
  padding-bottom: var(--ds-spacer-2) !important;
}

.ds-pb-3 {
  padding-bottom: var(--ds-spacer-3) !important;
}

.ds-pb-4 {
  padding-bottom: var(--ds-spacer-4) !important;
}

.ds-pb-5 {
  padding-bottom: var(--ds-spacer-5) !important;
}

.ds-ps-0 {
  padding-inline-start: var(--ds-spacer-0) !important;
}

.ds-ps-1 {
  padding-inline-start: var(--ds-spacer-1) !important;
}

.ds-ps-2 {
  padding-inline-start: var(--ds-spacer-2) !important;
}

.ds-ps-3 {
  padding-inline-start: var(--ds-spacer-3) !important;
}

.ds-ps-4 {
  padding-inline-start: var(--ds-spacer-4) !important;
}

.ds-ps-5 {
  padding-inline-start: var(--ds-spacer-5) !important;
}

.ds-pe-0 {
  padding-inline-end: var(--ds-spacer-0) !important;
}

.ds-pe-1 {
  padding-inline-end: var(--ds-spacer-1) !important;
}

.ds-pe-2 {
  padding-inline-end: var(--ds-spacer-2) !important;
}

.ds-pe-3 {
  padding-inline-end: var(--ds-spacer-3) !important;
}

.ds-pe-4 {
  padding-inline-end: var(--ds-spacer-4) !important;
}

.ds-pe-5 {
  padding-inline-end: var(--ds-spacer-5) !important;
}

.ds-px-0 {
  padding-inline: var(--ds-spacer-0) !important;
}

.ds-px-1 {
  padding-inline: var(--ds-spacer-1) !important;
}

.ds-px-2 {
  padding-inline: var(--ds-spacer-2) !important;
}

.ds-px-3 {
  padding-inline: var(--ds-spacer-3) !important;
}

.ds-px-4 {
  padding-inline: var(--ds-spacer-4) !important;
}

.ds-px-5 {
  padding-inline: var(--ds-spacer-5) !important;
}

.ds-py-0 {
  padding-block: var(--ds-spacer-0) !important;
}

.ds-py-1 {
  padding-block: var(--ds-spacer-1) !important;
}

.ds-py-2 {
  padding-block: var(--ds-spacer-2) !important;
}

.ds-py-3 {
  padding-block: var(--ds-spacer-3) !important;
}

.ds-py-4 {
  padding-block: var(--ds-spacer-4) !important;
}

.ds-py-5 {
  padding-block: var(--ds-spacer-5) !important;
}

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

.ds-mt-auto,
.ds-my-auto {
  margin-top: auto !important;
}

.ds-mr-auto,
.ds-mx-auto {
  margin-right: auto !important;
}

.ds-mb-auto,
.ds-my-auto {
  margin-bottom: auto !important;
}

.ds-ml-auto,
.ds-mx-auto {
  margin-left: auto !important;
}
/* --------------------------------------------------------------------------
   Flex utilities
   -------------------------------------------------------------------------- */

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

.ds-gap-0 {
  gap: var(--ds-spacer-0) !important
}

.ds-gap-1 {
  gap: var(--ds-spacer-1) !important
}

.ds-gap-2 {
  gap: var(--ds-spacer-2) !important
}

.ds-gap-3 {
  gap: var(--ds-spacer-3) !important
}

.ds-gap-4 {
  gap: var(--ds-spacer-4) !important
}

.ds-gap-5 {
  gap: var(--ds-spacer-5) !important
}

.ds-row-gap-0 {
  row-gap: var(--ds-spacer-0) !important
}

.ds-row-gap-1 {
  row-gap: var(--ds-spacer-1) !important
}

.ds-row-gap-2 {
  row-gap: var(--ds-spacer-2) !important
}

.ds-row-gap-3 {
  row-gap: var(--ds-spacer-3) !important
}

.ds-row-gap-4 {
  row-gap: var(--ds-spacer-4) !important
}

.ds-row-gap-5 {
  row-gap: var(--ds-spacer-5) !important
}

.ds-column-gap-0 {
  column-gap: var(--ds-spacer-0) !important
}

.ds-column-gap-1 {
  column-gap: var(--ds-spacer-1) !important
}

.ds-column-gap-2 {
  column-gap: var(--ds-spacer-2) !important
}

.ds-column-gap-3 {
  column-gap: var(--ds-spacer-3) !important
}

.ds-column-gap-4 {
  column-gap: var(--ds-spacer-4) !important
}

.ds-column-gap-5 {
  column-gap: var(--ds-spacer-5) !important
}

@media (min-width: 576px) {

  .ds-gap-sm-0 {
    gap: var(--ds-spacer-0) !important;
  }

  .ds-gap-sm-1 {
    gap: var(--ds-spacer-1) !important;
  }

  .ds-gap-sm-2 {
    gap: var(--ds-spacer-2) !important;
  }

  .ds-gap-sm-3 {
    gap: var(--ds-spacer-3) !important;
  }

  .ds-gap-sm-4 {
    gap: var(--ds-spacer-4) !important;
  }

  .ds-gap-sm-5 {
    gap: var(--ds-spacer-5) !important;
  }

  .ds-row-gap-sm-0 {
    row-gap: var(--ds-spacer-0) !important;
  }

  .ds-row-gap-sm-1 {
    row-gap: var(--ds-spacer-1) !important;
  }

  .ds-row-gap-sm-2 {
    row-gap: var(--ds-spacer-2) !important;
  }

  .ds-row-gap-sm-3 {
    row-gap: var(--ds-spacer-3) !important;
  }

  .ds-row-gap-sm-4 {
    row-gap: var(--ds-spacer-4) !important;
  }

  .ds-row-gap-sm-5 {
    row-gap: var(--ds-spacer-5) !important;
  }

  .ds-column-gap-sm-0 {
    column-gap: var(--ds-spacer-0) !important;
  }

  .ds-column-gap-sm-1 {
    column-gap: var(--ds-spacer-1) !important;
  }

  .ds-column-gap-sm-2 {
    column-gap: var(--ds-spacer-2) !important;
  }

  .ds-column-gap-sm-3 {
    column-gap: var(--ds-spacer-3) !important;
  }

  .ds-column-gap-sm-4 {
    column-gap: var(--ds-spacer-4) !important;
  }

  .ds-column-gap-sm-5 {
    column-gap: var(--ds-spacer-5) !important;
  }

}

@media (min-width: 768px) {

  .ds-gap-md-0 {
    gap: var(--ds-spacer-0) !important;
  }

  .ds-gap-md-1 {
    gap: var(--ds-spacer-1) !important;
  }

  .ds-gap-md-2 {
    gap: var(--ds-spacer-2) !important;
  }

  .ds-gap-md-3 {
    gap: var(--ds-spacer-3) !important;
  }

  .ds-gap-md-4 {
    gap: var(--ds-spacer-4) !important;
  }

  .ds-gap-md-5 {
    gap: var(--ds-spacer-5) !important;
  }

  .ds-row-gap-md-0 {
    row-gap: var(--ds-spacer-0) !important;
  }

  .ds-row-gap-md-1 {
    row-gap: var(--ds-spacer-1) !important;
  }

  .ds-row-gap-md-2 {
    row-gap: var(--ds-spacer-2) !important;
  }

  .ds-row-gap-md-3 {
    row-gap: var(--ds-spacer-3) !important;
  }

  .ds-row-gap-md-4 {
    row-gap: var(--ds-spacer-4) !important;
  }

  .ds-row-gap-md-5 {
    row-gap: var(--ds-spacer-5) !important;
  }

  .ds-column-gap-md-0 {
    column-gap: var(--ds-spacer-0) !important;
  }

  .ds-column-gap-md-1 {
    column-gap: var(--ds-spacer-1) !important;
  }

  .ds-column-gap-md-2 {
    column-gap: var(--ds-spacer-2) !important;
  }

  .ds-column-gap-md-3 {
    column-gap: var(--ds-spacer-3) !important;
  }

  .ds-column-gap-md-4 {
    column-gap: var(--ds-spacer-4) !important;
  }

  .ds-column-gap-md-5 {
    column-gap: var(--ds-spacer-5) !important;
  }

}

@media (min-width: 992px) {

  .ds-gap-lg-0 {
    gap: var(--ds-spacer-0) !important;
  }

  .ds-gap-lg-1 {
    gap: var(--ds-spacer-1) !important;
  }

  .ds-gap-lg-2 {
    gap: var(--ds-spacer-2) !important;
  }

  .ds-gap-lg-3 {
    gap: var(--ds-spacer-3) !important;
  }

  .ds-gap-lg-4 {
    gap: var(--ds-spacer-4) !important;
  }

  .ds-gap-lg-5 {
    gap: var(--ds-spacer-5) !important;
  }

  .ds-row-gap-lg-0 {
    row-gap: var(--ds-spacer-0) !important;
  }

  .ds-row-gap-lg-1 {
    row-gap: var(--ds-spacer-1) !important;
  }

  .ds-row-gap-lg-2 {
    row-gap: var(--ds-spacer-2) !important;
  }

  .ds-row-gap-lg-3 {
    row-gap: var(--ds-spacer-3) !important;
  }

  .ds-row-gap-lg-4 {
    row-gap: var(--ds-spacer-4) !important;
  }

  .ds-row-gap-lg-5 {
    row-gap: var(--ds-spacer-5) !important;
  }

  .ds-column-gap-lg-0 {
    column-gap: var(--ds-spacer-0) !important;
  }

  .ds-column-gap-lg-1 {
    column-gap: var(--ds-spacer-1) !important;
  }

  .ds-column-gap-lg-2 {
    column-gap: var(--ds-spacer-2) !important;
  }

  .ds-column-gap-lg-3 {
    column-gap: var(--ds-spacer-3) !important;
  }

  .ds-column-gap-lg-4 {
    column-gap: var(--ds-spacer-4) !important;
  }

  .ds-column-gap-lg-5 {
    column-gap: var(--ds-spacer-5) !important;
  }

}

@media (min-width: 1200px) {

  .ds-gap-xl-0 {
    gap: var(--ds-spacer-0) !important;
  }

  .ds-gap-xl-1 {
    gap: var(--ds-spacer-1) !important;
  }

  .ds-gap-xl-2 {
    gap: var(--ds-spacer-2) !important;
  }

  .ds-gap-xl-3 {
    gap: var(--ds-spacer-3) !important;
  }

  .ds-gap-xl-4 {
    gap: var(--ds-spacer-4) !important;
  }

  .ds-gap-xl-5 {
    gap: var(--ds-spacer-5) !important;
  }

  .ds-row-gap-xl-0 {
    row-gap: var(--ds-spacer-0) !important;
  }

  .ds-row-gap-xl-1 {
    row-gap: var(--ds-spacer-1) !important;
  }

  .ds-row-gap-xl-2 {
    row-gap: var(--ds-spacer-2) !important;
  }

  .ds-row-gap-xl-3 {
    row-gap: var(--ds-spacer-3) !important;
  }

  .ds-row-gap-xl-4 {
    row-gap: var(--ds-spacer-4) !important;
  }

  .ds-row-gap-xl-5 {
    row-gap: var(--ds-spacer-5) !important;
  }

  .ds-column-gap-xl-0 {
    column-gap: var(--ds-spacer-0) !important;
  }

  .ds-column-gap-xl-1 {
    column-gap: var(--ds-spacer-1) !important;
  }

  .ds-column-gap-xl-2 {
    column-gap: var(--ds-spacer-2) !important;
  }

  .ds-column-gap-xl-3 {
    column-gap: var(--ds-spacer-3) !important;
  }

  .ds-column-gap-xl-4 {
    column-gap: var(--ds-spacer-4) !important;
  }

  .ds-column-gap-xl-5 {
    column-gap: var(--ds-spacer-5) !important;
  }

}

.ds-d-flex {
  display: flex !important
}

.ds-d-inline-flex {
  display: inline-flex !important
}

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

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

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

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

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

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

.ds-flex-wrap-reverse {
  flex-wrap: wrap-reverse !important
}

.ds-justify-content-start {
  justify-content: flex-start !important
}

.ds-justify-content-end {
  justify-content: flex-end !important
}

.ds-justify-content-center {
  justify-content: center !important
}

.ds-justify-content-between {
  justify-content: space-between !important
}

.ds-justify-content-around {
  justify-content: space-around !important
}

.ds-justify-content-evenly {
  justify-content: space-evenly !important
}

.ds-align-items-start {
  align-items: flex-start !important
}

.ds-align-items-end {
  align-items: flex-end !important
}

.ds-align-items-center {
  align-items: center !important
}

.ds-align-items-baseline {
  align-items: baseline !important
}

.ds-align-items-stretch {
  align-items: stretch !important
}

.ds-align-self-auto {
  align-self: auto !important
}

.ds-align-self-start {
  align-self: flex-start !important
}

.ds-align-self-end {
  align-self: flex-end !important
}

.ds-align-self-center {
  align-self: center !important
}

.ds-align-self-baseline {
  align-self: baseline !important
}

.ds-align-self-stretch {
  align-self: stretch !important
}

.ds-align-content-start {
  align-content: flex-start !important
}

.ds-align-content-end {
  align-content: flex-end !important
}

.ds-align-content-center {
  align-content: center !important
}

.ds-align-content-between {
  align-content: space-between !important
}

.ds-align-content-around {
  align-content: space-around !important
}

.ds-align-content-stretch {
  align-content: stretch !important
}

.ds-flex-grow-0 {
  flex-grow: 0 !important
}

.ds-flex-grow-1 {
  flex-grow: 1 !important
}

.ds-flex-shrink-0 {
  flex-shrink: 0 !important
}

.ds-flex-shrink-1 {
  flex-shrink: 1 !important
}

.ds-order-first {
  order: -1 !important
}

.ds-order-0 {
  order: 0 !important
}

.ds-order-1 {
  order: 1 !important
}

.ds-order-2 {
  order: 2 !important
}

.ds-order-3 {
  order: 3 !important
}

.ds-order-4 {
  order: 4 !important
}

.ds-order-5 {
  order: 5 !important
}

.ds-order-last {
  order: 6 !important
}

@media (min-width: 576px) {

  .ds-d-sm-flex {
    display: flex !important;
  }

  .ds-d-sm-inline-flex {
    display: inline-flex !important;
  }

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

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

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

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

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

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

  .ds-flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .ds-justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .ds-justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .ds-justify-content-sm-center {
    justify-content: center !important;
  }

  .ds-justify-content-sm-between {
    justify-content: space-between !important;
  }

  .ds-justify-content-sm-around {
    justify-content: space-around !important;
  }

  .ds-justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .ds-align-items-sm-start {
    align-items: flex-start !important;
  }

  .ds-align-items-sm-end {
    align-items: flex-end !important;
  }

  .ds-align-items-sm-center {
    align-items: center !important;
  }

  .ds-align-items-sm-baseline {
    align-items: baseline !important;
  }

  .ds-align-items-sm-stretch {
    align-items: stretch !important;
  }

  .ds-align-self-sm-auto {
    align-self: auto !important;
  }

  .ds-align-self-sm-start {
    align-self: flex-start !important;
  }

  .ds-align-self-sm-end {
    align-self: flex-end !important;
  }

  .ds-align-self-sm-center {
    align-self: center !important;
  }

  .ds-align-self-sm-baseline {
    align-self: baseline !important;
  }

  .ds-align-self-sm-stretch {
    align-self: stretch !important;
  }

  .ds-align-content-sm-start {
    align-content: flex-start !important;
  }

  .ds-align-content-sm-end {
    align-content: flex-end !important;
  }

  .ds-align-content-sm-center {
    align-content: center !important;
  }

  .ds-align-content-sm-between {
    align-content: space-between !important;
  }

  .ds-align-content-sm-around {
    align-content: space-around !important;
  }

  .ds-align-content-sm-stretch {
    align-content: stretch !important;
  }

  .ds-flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .ds-flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .ds-flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .ds-flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .ds-order-sm-first {
    order: -1 !important;
  }

  .ds-order-sm-0 {
    order: 0 !important;
  }

  .ds-order-sm-1 {
    order: 1 !important;
  }

  .ds-order-sm-2 {
    order: 2 !important;
  }

  .ds-order-sm-3 {
    order: 3 !important;
  }

  .ds-order-sm-4 {
    order: 4 !important;
  }

  .ds-order-sm-5 {
    order: 5 !important;
  }

  .ds-order-sm-last {
    order: 6 !important;
  }

}

@media (min-width: 768px) {

  .ds-d-md-flex {
    display: flex !important;
  }

  .ds-d-md-inline-flex {
    display: inline-flex !important;
  }

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

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

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

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

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

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

  .ds-flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .ds-justify-content-md-start {
    justify-content: flex-start !important;
  }

  .ds-justify-content-md-end {
    justify-content: flex-end !important;
  }

  .ds-justify-content-md-center {
    justify-content: center !important;
  }

  .ds-justify-content-md-between {
    justify-content: space-between !important;
  }

  .ds-justify-content-md-around {
    justify-content: space-around !important;
  }

  .ds-justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .ds-align-items-md-start {
    align-items: flex-start !important;
  }

  .ds-align-items-md-end {
    align-items: flex-end !important;
  }

  .ds-align-items-md-center {
    align-items: center !important;
  }

  .ds-align-items-md-baseline {
    align-items: baseline !important;
  }

  .ds-align-items-md-stretch {
    align-items: stretch !important;
  }

  .ds-align-self-md-auto {
    align-self: auto !important;
  }

  .ds-align-self-md-start {
    align-self: flex-start !important;
  }

  .ds-align-self-md-end {
    align-self: flex-end !important;
  }

  .ds-align-self-md-center {
    align-self: center !important;
  }

  .ds-align-self-md-baseline {
    align-self: baseline !important;
  }

  .ds-align-self-md-stretch {
    align-self: stretch !important;
  }

  .ds-align-content-md-start {
    align-content: flex-start !important;
  }

  .ds-align-content-md-end {
    align-content: flex-end !important;
  }

  .ds-align-content-md-center {
    align-content: center !important;
  }

  .ds-align-content-md-between {
    align-content: space-between !important;
  }

  .ds-align-content-md-around {
    align-content: space-around !important;
  }

  .ds-align-content-md-stretch {
    align-content: stretch !important;
  }

  .ds-flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .ds-flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .ds-flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .ds-flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .ds-order-md-first {
    order: -1 !important;
  }

  .ds-order-md-0 {
    order: 0 !important;
  }

  .ds-order-md-1 {
    order: 1 !important;
  }

  .ds-order-md-2 {
    order: 2 !important;
  }

  .ds-order-md-3 {
    order: 3 !important;
  }

  .ds-order-md-4 {
    order: 4 !important;
  }

  .ds-order-md-5 {
    order: 5 !important;
  }

  .ds-order-md-last {
    order: 6 !important;
  }

}

@media (min-width: 992px) {

  .ds-d-lg-flex {
    display: flex !important;
  }

  .ds-d-lg-inline-flex {
    display: inline-flex !important;
  }

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

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

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

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

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

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

  .ds-flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .ds-justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .ds-justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .ds-justify-content-lg-center {
    justify-content: center !important;
  }

  .ds-justify-content-lg-between {
    justify-content: space-between !important;
  }

  .ds-justify-content-lg-around {
    justify-content: space-around !important;
  }

  .ds-justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .ds-align-items-lg-start {
    align-items: flex-start !important;
  }

  .ds-align-items-lg-end {
    align-items: flex-end !important;
  }

  .ds-align-items-lg-center {
    align-items: center !important;
  }

  .ds-align-items-lg-baseline {
    align-items: baseline !important;
  }

  .ds-align-items-lg-stretch {
    align-items: stretch !important;
  }

  .ds-align-self-lg-auto {
    align-self: auto !important;
  }

  .ds-align-self-lg-start {
    align-self: flex-start !important;
  }

  .ds-align-self-lg-end {
    align-self: flex-end !important;
  }

  .ds-align-self-lg-center {
    align-self: center !important;
  }

  .ds-align-self-lg-baseline {
    align-self: baseline !important;
  }

  .ds-align-self-lg-stretch {
    align-self: stretch !important;
  }

  .ds-align-content-lg-start {
    align-content: flex-start !important;
  }

  .ds-align-content-lg-end {
    align-content: flex-end !important;
  }

  .ds-align-content-lg-center {
    align-content: center !important;
  }

  .ds-align-content-lg-between {
    align-content: space-between !important;
  }

  .ds-align-content-lg-around {
    align-content: space-around !important;
  }

  .ds-align-content-lg-stretch {
    align-content: stretch !important;
  }

  .ds-flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .ds-flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .ds-flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .ds-flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .ds-order-lg-first {
    order: -1 !important;
  }

  .ds-order-lg-0 {
    order: 0 !important;
  }

  .ds-order-lg-1 {
    order: 1 !important;
  }

  .ds-order-lg-2 {
    order: 2 !important;
  }

  .ds-order-lg-3 {
    order: 3 !important;
  }

  .ds-order-lg-4 {
    order: 4 !important;
  }

  .ds-order-lg-5 {
    order: 5 !important;
  }

  .ds-order-lg-last {
    order: 6 !important;
  }

}

@media (min-width: 1200px) {

  .ds-d-xl-flex {
    display: flex !important;
  }

  .ds-d-xl-inline-flex {
    display: inline-flex !important;
  }

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

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

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

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

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

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

  .ds-flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .ds-justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .ds-justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .ds-justify-content-xl-center {
    justify-content: center !important;
  }

  .ds-justify-content-xl-between {
    justify-content: space-between !important;
  }

  .ds-justify-content-xl-around {
    justify-content: space-around !important;
  }

  .ds-justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .ds-align-items-xl-start {
    align-items: flex-start !important;
  }

  .ds-align-items-xl-end {
    align-items: flex-end !important;
  }

  .ds-align-items-xl-center {
    align-items: center !important;
  }

  .ds-align-items-xl-baseline {
    align-items: baseline !important;
  }

  .ds-align-items-xl-stretch {
    align-items: stretch !important;
  }

  .ds-align-self-xl-auto {
    align-self: auto !important;
  }

  .ds-align-self-xl-start {
    align-self: flex-start !important;
  }

  .ds-align-self-xl-end {
    align-self: flex-end !important;
  }

  .ds-align-self-xl-center {
    align-self: center !important;
  }

  .ds-align-self-xl-baseline {
    align-self: baseline !important;
  }

  .ds-align-self-xl-stretch {
    align-self: stretch !important;
  }

  .ds-align-content-xl-start {
    align-content: flex-start !important;
  }

  .ds-align-content-xl-end {
    align-content: flex-end !important;
  }

  .ds-align-content-xl-center {
    align-content: center !important;
  }

  .ds-align-content-xl-between {
    align-content: space-between !important;
  }

  .ds-align-content-xl-around {
    align-content: space-around !important;
  }

  .ds-align-content-xl-stretch {
    align-content: stretch !important;
  }

  .ds-flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .ds-flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .ds-flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .ds-flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .ds-order-xl-first {
    order: -1 !important;
  }

  .ds-order-xl-0 {
    order: 0 !important;
  }

  .ds-order-xl-1 {
    order: 1 !important;
  }

  .ds-order-xl-2 {
    order: 2 !important;
  }

  .ds-order-xl-3 {
    order: 3 !important;
  }

  .ds-order-xl-4 {
    order: 4 !important;
  }

  .ds-order-xl-5 {
    order: 5 !important;
  }

  .ds-order-xl-last {
    order: 6 !important;
  }

}
.ds-img-fluid {
  max-width: 100%;
  height: auto;
}
.ds-text-center {
    text-align: center;
}
.ds-text-start {
    text-align: left;
}
.ds-text-end {
    text-align: right;
}