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

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

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

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

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

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (min-width: 360px) {
  .xs\:d-none {
    display: none !important;
  }
  .xs\:d-inline {
    display: inline !important;
  }
  .xs\:d-inline-block {
    display: inline-block !important;
  }
  .xs\:d-block {
    display: block !important;
  }
  .xs\:d-table {
    display: table !important;
  }
  .xs\:d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 480px) {
  .sm\:d-none {
    display: none !important;
  }
  .sm\:d-inline {
    display: inline !important;
  }
  .sm\:d-inline-block {
    display: inline-block !important;
  }
  .sm\:d-block {
    display: block !important;
  }
  .sm\:d-table {
    display: table !important;
  }
  .sm\:d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 768px) {
  .md\:d-none {
    display: none !important;
  }
  .md\:d-inline {
    display: inline !important;
  }
  .md\:d-inline-block {
    display: inline-block !important;
  }
  .md\:d-block {
    display: block !important;
  }
  .md\:d-table {
    display: table !important;
  }
  .md\:d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 1024px) {
  .lg\:d-none {
    display: none !important;
  }
  .lg\:d-inline {
    display: inline !important;
  }
  .lg\:d-inline-block {
    display: inline-block !important;
  }
  .lg\:d-block {
    display: block !important;
  }
  .lg\:d-table {
    display: table !important;
  }
  .lg\:d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 1440px) {
  .xl\:d-none {
    display: none !important;
  }
  .xl\:d-inline {
    display: inline !important;
  }
  .xl\:d-inline-block {
    display: inline-block !important;
  }
  .xl\:d-block {
    display: block !important;
  }
  .xl\:d-table {
    display: table !important;
  }
  .xl\:d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media only screen {
  .screen\:d-none {
    display: none !important;
  }
  .screen\:d-inline {
    display: inline !important;
  }
  .screen\:d-inline-block {
    display: inline-block !important;
  }
  .screen\:d-block {
    display: block !important;
  }
  .screen\:d-table {
    display: table !important;
  }
  .screen\:d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media only print {
  .print\:d-none {
    display: none !important;
  }
  .print\:d-inline {
    display: inline !important;
  }
  .print\:d-inline-block {
    display: inline-block !important;
  }
  .print\:d-block {
    display: block !important;
  }
  .print\:d-table {
    display: table !important;
  }
  .print\:d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.family-monospace {
  font-family: monospace !important;
}

.flex,
[class^=flex-],
[class*=" flex-"] {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: inherit !important;
  -webkit-column-gap: inherit !important;
     -moz-column-gap: inherit !important;
          column-gap: inherit !important;
  row-gap: inherit !important;
}

.flex-grid {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-col {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.flex-stretch {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.flex-left-center {
  -webkit-box-pack: left !important;
      -ms-flex-pack: left !important;
          justify-content: left !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.flex-right-center {
  -webkit-box-pack: right !important;
      -ms-flex-pack: right !important;
          justify-content: right !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.flex-center-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.flex-between-center {
  -webkit-box-pack: left !important;
      -ms-flex-pack: left !important;
          justify-content: left !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.flex-around-center {
  -webkit-box-pack: left !important;
      -ms-flex-pack: left !important;
          justify-content: left !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.flex-left-stretch {
  -webkit-box-pack: left !important;
      -ms-flex-pack: left !important;
          justify-content: left !important;
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.flex-right-stretch {
  -webkit-box-pack: right !important;
      -ms-flex-pack: right !important;
          justify-content: right !important;
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.flex-center-stretch {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.flex-between-stretch {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.flex-around-stretch {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

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

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

.flex-d-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-d-col {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-x-left {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.flex-x-right {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.flex-x-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.flex-x-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.flex-x-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.flex-y-up {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}

.flex-y-down {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.flex-y-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.flex-y-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.flex-z-begin {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.flex-z-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.flex-z-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.flex-shrink-1 {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.flex-basis-0 {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.flex-basis-auto {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

.font-normal {
  font-weight: normal !important;
}

.font-bold {
  font-weight: bold !important;
}

.font-default {
  font-style: normal !important;
}

.font-italic {
  font-style: italic !important;
}

.font-0 {
  font-size: 0 !important;
}

.font-10 {
  font-size: 10pt !important;
}

.font-11 {
  font-size: 11pt !important;
}

.font-12 {
  font-size: 12pt !important;
}

.font-14 {
  font-size: 14pt !important;
}

.font-16 {
  font-size: 16pt !important;
}

.font-18 {
  font-size: 18pt !important;
}

.font-22 {
  font-size: 22pt !important;
}

.font-26 {
  font-size: 26pt !important;
}

.font-30 {
  font-size: 30pt !important;
}

.font-075 {
  font-size: 0.75rem !important;
}

.font-080 {
  font-size: 0.8rem !important;
}

.font-085 {
  font-size: 0.85rem !important;
}

.font-100 {
  font-size: 1rem !important;
}

.font-110 {
  font-size: 1.1rem !important;
}

.font-120 {
  font-size: 1.2rem !important;
}

.font-130 {
  font-size: 1.3rem !important;
}

.font-145 {
  font-size: 1.45rem !important;
}

.font-160 {
  font-size: 1.6rem !important;
}

.font-175 {
  font-size: 1.75rem !important;
}

.font-200 {
  font-size: 2rem !important;
}

.font-250 {
  font-size: 2.5rem !important;
}

.font-300 {
  font-size: 3rem !important;
}

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

.g-0125 {
  gap: 0.125rem !important;
}

.g-025 {
  gap: 0.25rem !important;
}

.g-050 {
  gap: 0.5rem !important;
}

.g-075 {
  gap: 0.75rem !important;
}

.g-100 {
  gap: 1rem !important;
}

.g-125 {
  gap: 1.25rem !important;
}

.g-150 {
  gap: 1.5rem !important;
}

.g-200 {
  gap: 2rem !important;
}

.g-300 {
  gap: 3rem !important;
}

.g-400 {
  gap: 4rem !important;
}

.g-600 {
  gap: 6rem !important;
}

.gx-0 {
  -webkit-column-gap: 0 !important;
     -moz-column-gap: 0 !important;
          column-gap: 0 !important;
}

.gx-0125 {
  -webkit-column-gap: 0.25rem !important;
     -moz-column-gap: 0.25rem !important;
          column-gap: 0.25rem !important;
}

.gx-025 {
  -webkit-column-gap: 0.25rem !important;
     -moz-column-gap: 0.25rem !important;
          column-gap: 0.25rem !important;
}

.gx-050 {
  -webkit-column-gap: 0.5rem !important;
     -moz-column-gap: 0.5rem !important;
          column-gap: 0.5rem !important;
}

.gx-075 {
  -webkit-column-gap: 0.75rem !important;
     -moz-column-gap: 0.75rem !important;
          column-gap: 0.75rem !important;
}

.gx-100 {
  -webkit-column-gap: 1rem !important;
     -moz-column-gap: 1rem !important;
          column-gap: 1rem !important;
}

.gx-125 {
  -webkit-column-gap: 1.25rem !important;
     -moz-column-gap: 1.25rem !important;
          column-gap: 1.25rem !important;
}

.gx-150 {
  -webkit-column-gap: 1.5rem !important;
     -moz-column-gap: 1.5rem !important;
          column-gap: 1.5rem !important;
}

.gx-200 {
  -webkit-column-gap: 2rem !important;
     -moz-column-gap: 2rem !important;
          column-gap: 2rem !important;
}

.gx-300 {
  -webkit-column-gap: 3rem !important;
     -moz-column-gap: 3rem !important;
          column-gap: 3rem !important;
}

.gx-400 {
  -webkit-column-gap: 4rem !important;
     -moz-column-gap: 4rem !important;
          column-gap: 4rem !important;
}

.gx-600 {
  -webkit-column-gap: 6rem !important;
     -moz-column-gap: 6rem !important;
          column-gap: 6rem !important;
}

.gy-0 {
  -webkit-column-gap: 0 !important;
     -moz-column-gap: 0 !important;
          column-gap: 0 !important;
}

.gy-0125 {
  -webkit-column-gap: 0.125rem !important;
     -moz-column-gap: 0.125rem !important;
          column-gap: 0.125rem !important;
}

.gy-025 {
  -webkit-column-gap: 0.25rem !important;
     -moz-column-gap: 0.25rem !important;
          column-gap: 0.25rem !important;
}

.gy-050 {
  -webkit-column-gap: 0.5rem !important;
     -moz-column-gap: 0.5rem !important;
          column-gap: 0.5rem !important;
}

.gy-075 {
  -webkit-column-gap: 0.75rem !important;
     -moz-column-gap: 0.75rem !important;
          column-gap: 0.75rem !important;
}

.gy-100 {
  -webkit-column-gap: 1rem !important;
     -moz-column-gap: 1rem !important;
          column-gap: 1rem !important;
}

.gy-125 {
  -webkit-column-gap: 1.25rem !important;
     -moz-column-gap: 1.25rem !important;
          column-gap: 1.25rem !important;
}

.gy-150 {
  -webkit-column-gap: 1.5rem !important;
     -moz-column-gap: 1.5rem !important;
          column-gap: 1.5rem !important;
}

.gy-200 {
  -webkit-column-gap: 2rem !important;
     -moz-column-gap: 2rem !important;
          column-gap: 2rem !important;
}

.gy-300 {
  -webkit-column-gap: 3rem !important;
     -moz-column-gap: 3rem !important;
          column-gap: 3rem !important;
}

.gy-400 {
  -webkit-column-gap: 4rem !important;
     -moz-column-gap: 4rem !important;
          column-gap: 4rem !important;
}

.gy-600 {
  -webkit-column-gap: 6rem !important;
     -moz-column-gap: 6rem !important;
          column-gap: 6rem !important;
}

.img {
  display: inline-block !important;
  vertical-align: middle;
}

.picture {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.img-fluid {
  display: inline-block !important;
  vertical-align: middle;
}

.picture-fluid {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.img-fluid,
.picture-fluid {
  max-width: 100% !important;
  height: auto;
  max-height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: center !important;
     object-position: center !important;
}

.line-0,
.line-0-baseline,
.line-0-center {
  line-height: 0 !important;
}

.line-1,
.line-1-baseline,
.line-1-center {
  line-height: 1 !important;
}

.line-0-baseline > *,
.line-1-baseline > * {
  vertical-align: baseline !important;
}

.line-0-center > *,
.line-1-center > * {
  vertical-align: middle !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-0125 {
  margin-top: 0.125rem !important;
}

.mt-025 {
  margin-top: 0.25rem !important;
}

.mt-050 {
  margin-top: 0.5rem !important;
}

.mt-075 {
  margin-top: 0.75rem !important;
}

.mt-100 {
  margin-top: 1rem !important;
}

.mt-125 {
  margin-top: 1.25rem !important;
}

.mt-150 {
  margin-top: 1.5rem !important;
}

.mt-200 {
  margin-top: 2rem !important;
}

.mt-300 {
  margin-top: 3rem !important;
}

.mt-400 {
  margin-top: 4rem !important;
}

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

.mtz-0125 {
  margin-top: -0.125rem !important;
}

.mtz-025 {
  margin-top: -0.25rem !important;
}

.mtz-050 {
  margin-top: -0.5rem !important;
}

.mtz-075 {
  margin-top: -0.75rem !important;
}

.mtz-100 {
  margin-top: -1rem !important;
}

.mtz-125 {
  margin-top: -1.25rem !important;
}

.mtz-150 {
  margin-top: -1.5rem !important;
}

.mtz-200 {
  margin-top: -2rem !important;
}

.mtz-300 {
  margin-top: -3rem !important;
}

.mtz-400 {
  margin-top: -4rem !important;
}

.mtz-600 {
  margin-top: -6rem !important;
}

.mr-0 {
  margin-right: 0 !important;
}

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

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mxz-0125 {
  margin-left: -0.125rem !important;
  margin-right: -0.125rem !important;
}

.mx-025 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.mx-050 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.mx-075 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.mx-100 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.mx-125 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.mx-150 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.mx-200 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.mx-300 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.mx-400 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.mx-600 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.mxz-0125 {
  margin-left: -0.125rem !important;
  margin-right: -0.125rem !important;
}

.mxz-025 {
  margin-left: -0.25rem !important;
  margin-right: -0.25rem !important;
}

.mxz-050 {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}

.mxz-075 {
  margin-left: -0.75rem !important;
  margin-right: -0.75rem !important;
}

.mxz-100 {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}

.mxz-125 {
  margin-left: -1.25rem !important;
  margin-right: -1.25rem !important;
}

.mxz-150 {
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
}

.mxz-200 {
  margin-left: -2rem !important;
  margin-right: -2rem !important;
}

.mxz-300 {
  margin-left: -3rem !important;
  margin-right: -3rem !important;
}

.mxz-400 {
  margin-left: -4rem !important;
  margin-right: -4rem !important;
}

.mxz-600 {
  margin-left: -6rem !important;
  margin-right: -6rem !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-0125 {
  padding-right: 0.125rem !important;
}

.pr-025 {
  padding-right: 0.25rem !important;
}

.pr-050 {
  padding-right: 0.5rem !important;
}

.pr-075 {
  padding-right: 0.75rem !important;
}

.pr-100 {
  padding-right: 1rem !important;
}

.pr-125 {
  padding-right: 1.25rem !important;
}

.pr-150 {
  padding-right: 1.5rem !important;
}

.pr-200 {
  padding-right: 2rem !important;
}

.pr-300 {
  padding-right: 3rem !important;
}

.pr-400 {
  padding-right: 4rem !important;
}

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

.pl-0 {
  padding-left: 0 !important;
}

.pl-0125 {
  padding-left: 0.125rem !important;
}

.pl-025 {
  padding-left: 0.25rem !important;
}

.pl-050 {
  padding-left: 0.5rem !important;
}

.pl-075 {
  padding-left: 0.75rem !important;
}

.pl-100 {
  padding-left: 1rem !important;
}

.pl-125 {
  padding-left: 1.25rem !important;
}

.pl-150 {
  padding-left: 1.5rem !important;
}

.pl-200 {
  padding-left: 2rem !important;
}

.pl-300 {
  padding-left: 3rem !important;
}

.pl-400 {
  padding-left: 4rem !important;
}

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

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-0125 {
  padding-left: 0.125rem !important;
  padding-right: 0.125rem !important;
}

.px-025 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.px-050 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-075 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.px-100 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-125 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.px-150 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-200 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.px-300 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.px-400 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.px-600 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

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

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

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

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

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

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

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

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

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.text-top {
  vertical-align: top !important;
}

.text-center {
  vertical-align: middle !important;
}

.text-bottom {
  vertical-align: bottom !important;
}

.text-baseline {
  vertical-align: baseline !important;
}

.container {
  width: 100%;
  max-width: 100%;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

@media only screen and (min-width: 360px) {
  .container {
    max-width: calc(360px - 2 * 1rem - 1.25rem + 0px);
  }
  .xs\:container {
    max-width: calc(360px - 2 * 1rem - 1.25rem + 0px);
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
}
@media only screen and (min-width: 480px) {
  .container {
    max-width: calc(480px - 2 * 1rem - 1.25rem + 0px);
  }
  .sm\:container {
    max-width: calc(480px - 2 * 1rem - 1.25rem + 0px);
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: calc(768px - 2 * 1rem - 1.25rem + 0px);
  }
  .md\:container {
    max-width: calc(768px - 2 * 1rem - 1.25rem + 0px);
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
}
@media only screen and (min-width: 1024px) {
  .container {
    max-width: calc(1024px - 2 * 1rem - 1.25rem + 0px);
  }
  .lg\:container {
    max-width: calc(1024px - 2 * 1rem - 1.25rem + 0px);
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
}
@media only screen and (min-width: 1440px) {
  .container {
    max-width: calc(1440px - 2 * 1rem - 1.25rem + 0px);
  }
  .xl\:container {
    max-width: calc(1440px - 2 * 1rem - 1.25rem + 0px);
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
}
.row {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  width: auto !important;
  gap: 0 !important;
}
.row > * {
  width: 100%;
}

.frow {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  width: 100% !important;
  gap: 0;
}
.frow > * {
  width: 100%;
}

.row-gutter {
  margin-top: -1rem !important;
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}
.row-gutter > * {
  margin-top: 1rem !important;
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.row-0125 {
  margin-top: -0.125rem !important;
  margin-right: -0.0625rem !important;
  margin-left: -0.0625rem !important;
}
.row-0125 > * {
  margin-top: 0.125rem !important;
  padding-right: 0.0625rem !important;
  padding-left: 0.0625rem !important;
}

.row-025 {
  margin-top: -0.25rem !important;
  margin-right: -0.125rem !important;
  margin-left: -0.125rem !important;
}
.row-025 > * {
  margin-top: 0.25rem !important;
  padding-right: 0.125rem !important;
  padding-left: 0.125rem !important;
}

.row-050 {
  margin-top: -0.5rem !important;
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}
.row-050 > * {
  margin-top: 0.5rem !important;
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.row-075 {
  margin-top: -0.75rem !important;
  margin-right: -0.375rem !important;
  margin-left: -0.375rem !important;
}
.row-075 > * {
  margin-top: 0.75rem !important;
  padding-right: 0.375rem !important;
  padding-left: 0.375rem !important;
}

.row-100 {
  margin-top: -1rem !important;
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}
.row-100 > * {
  margin-top: 1rem !important;
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.row-125 {
  margin-top: -1.25rem !important;
  margin-right: -0.625rem !important;
  margin-left: -0.625rem !important;
}
.row-125 > * {
  margin-top: 1.25rem !important;
  padding-right: 0.625rem !important;
  padding-left: 0.625rem !important;
}

.row-150 {
  margin-top: -1.5rem !important;
  margin-right: -0.75rem !important;
  margin-left: -0.75rem !important;
}
.row-150 > * {
  margin-top: 1.5rem !important;
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
}

.row-200 {
  margin-top: -2rem !important;
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}
.row-200 > * {
  margin-top: 2rem !important;
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.row-300 {
  margin-top: -3rem !important;
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}
.row-300 > * {
  margin-top: 3rem !important;
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.row-400 {
  margin-top: -4rem !important;
  margin-right: -2rem !important;
  margin-left: -2rem !important;
}
.row-400 > * {
  margin-top: 4rem !important;
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.row-600 {
  margin-top: -6rem !important;
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}
.row-600 > * {
  margin-top: 6rem !important;
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.row-x-gutter {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}
.row-x-gutter > * {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.row-x-0125 {
  margin-right: -0.0625rem !important;
  margin-left: -0.0625rem !important;
}
.row-x-0125 > * {
  padding-right: 0.0625rem !important;
  padding-left: 0.0625rem !important;
}

.row-x-025 {
  margin-right: -0.125rem !important;
  margin-left: -0.125rem !important;
}
.row-x-025 > * {
  padding-right: 0.125rem !important;
  padding-left: 0.125rem !important;
}

.row-x-050 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}
.row-x-050 > * {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.row-x-075 {
  margin-right: -0.375rem !important;
  margin-left: -0.375rem !important;
}
.row-x-075 > * {
  padding-right: 0.375rem !important;
  padding-left: 0.375rem !important;
}

.row-x-100 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}
.row-x-100 > * {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.row-x-125 {
  margin-right: -0.625rem !important;
  margin-left: -0.625rem !important;
}
.row-x-125 > * {
  padding-right: 0.625rem !important;
  padding-left: 0.625rem !important;
}

.row-x-150 {
  margin-right: -0.75rem !important;
  margin-left: -0.75rem !important;
}
.row-x-150 > * {
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
}

.row-x-200 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}
.row-x-200 > * {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.row-x-300 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}
.row-x-300 > * {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.row-x-400 {
  margin-right: -2rem !important;
  margin-left: -2rem !important;
}
.row-x-400 > * {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.row-x-600 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}
.row-x-600 > * {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.row-y-gutter {
  margin-top: -1rem !important;
}
.row-y-gutter > * {
  margin-top: 1rem !important;
}

.row-y-0125 {
  margin-top: -0.125rem !important;
}
.row-y-0125 > * {
  margin-top: 0.125rem !important;
}

.row-y-025 {
  margin-top: -0.25rem !important;
}
.row-y-025 > * {
  margin-top: 0.25rem !important;
}

.row-y-050 {
  margin-top: -0.5rem !important;
}
.row-y-050 > * {
  margin-top: 0.5rem !important;
}

.row-y-075 {
  margin-top: -0.75rem !important;
}
.row-y-075 > * {
  margin-top: 0.75rem !important;
}

.row-y-100 {
  margin-top: -1rem !important;
}
.row-y-100 > * {
  margin-top: 1rem !important;
}

.row-y-125 {
  margin-top: -1.25rem !important;
}
.row-y-125 > * {
  margin-top: 1.25rem !important;
}

.row-y-150 {
  margin-top: -1.5rem !important;
}
.row-y-150 > * {
  margin-top: 1.5rem !important;
}

.row-y-200 {
  margin-top: -2rem !important;
}
.row-y-200 > * {
  margin-top: 2rem !important;
}

.row-y-300 {
  margin-top: -3rem !important;
}
.row-y-300 > * {
  margin-top: 3rem !important;
}

.row-y-400 {
  margin-top: -4rem !important;
}
.row-y-400 > * {
  margin-top: 4rem !important;
}

.row-y-600 {
  margin-top: -6rem !important;
}
.row-y-600 > * {
  margin-top: 6rem !important;
}

[class^=row-]:not(:first-child),
[class*=" row-"]:not(:first-child) {
  margin-top: 0 !important;
}

.col,
.fcol,
[class^=col-],
[class^=fcol-],
[class*=" col-"],
[class*=" fcol-"] {
  max-width: 100% !important;
}

.col {
  width: auto;
}

.fcol {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 0 0px !important;
          flex: 1 0 0 !important;
  width: auto;
}

.col-1 {
  width: 8.3333%;
}

.fcol-1 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: 8.3333%;
}

.col-2 {
  width: 16.6667%;
}

.fcol-2 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: 16.6667%;
}

.col-3 {
  width: 25%;
}

.fcol-3 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: 25%;
}

.col-4 {
  width: 33.3333%;
}

.fcol-4 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: 33.3333%;
}

.col-5 {
  width: 41.6667%;
}

.fcol-5 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: 41.6667%;
}

.col-6 {
  width: 50%;
}

.fcol-6 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: 50%;
}

.col-7 {
  width: 58.3333%;
}

.fcol-7 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: 58.3333%;
}

.col-8 {
  width: 66.6667%;
}

.fcol-8 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: 66.6667%;
}

.col-9 {
  width: 75%;
}

.fcol-9 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: 75%;
}

.col-10 {
  width: 83.3333%;
}

.fcol-10 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: 83.3333%;
}

.col-11 {
  width: 91.6667%;
}

.fcol-11 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: 91.6667%;
}

.col-12 {
  width: 100%;
}

.fcol-12 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: 100%;
}

.col-auto {
  width: auto;
}

.col-zero {
  width: auto;
}

.fcol-auto {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 0 0px !important;
          flex: 1 0 0 !important;
  width: auto;
}

.fcol-zero {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: auto;
}

@media (min-width: 360px) {
  .xs\:col-1 {
    width: 8.3333%;
  }
  .xs\:fcol-1 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 8.3333%;
  }
  .xs\:col-2 {
    width: 16.6667%;
  }
  .xs\:fcol-2 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 16.6667%;
  }
  .xs\:col-3 {
    width: 25%;
  }
  .xs\:fcol-3 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 25%;
  }
  .xs\:col-4 {
    width: 33.3333%;
  }
  .xs\:fcol-4 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 33.3333%;
  }
  .xs\:col-5 {
    width: 41.6667%;
  }
  .xs\:fcol-5 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 41.6667%;
  }
  .xs\:col-6 {
    width: 50%;
  }
  .xs\:fcol-6 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 50%;
  }
  .xs\:col-7 {
    width: 58.3333%;
  }
  .xs\:fcol-7 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 58.3333%;
  }
  .xs\:col-8 {
    width: 66.6667%;
  }
  .xs\:fcol-8 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 66.6667%;
  }
  .xs\:col-9 {
    width: 75%;
  }
  .xs\:fcol-9 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 75%;
  }
  .xs\:col-10 {
    width: 83.3333%;
  }
  .xs\:fcol-10 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 83.3333%;
  }
  .xs\:col-11 {
    width: 91.6667%;
  }
  .xs\:fcol-11 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 91.6667%;
  }
  .xs\:col-12 {
    width: 100%;
  }
  .xs\:fcol-12 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 100%;
  }
}
@media (min-width: 480px) {
  .sm\:col-1 {
    width: 8.3333%;
  }
  .sm\:fcol-1 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 8.3333%;
  }
  .sm\:col-2 {
    width: 16.6667%;
  }
  .sm\:fcol-2 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 16.6667%;
  }
  .sm\:col-3 {
    width: 25%;
  }
  .sm\:fcol-3 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 25%;
  }
  .sm\:col-4 {
    width: 33.3333%;
  }
  .sm\:fcol-4 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 33.3333%;
  }
  .sm\:col-5 {
    width: 41.6667%;
  }
  .sm\:fcol-5 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 41.6667%;
  }
  .sm\:col-6 {
    width: 50%;
  }
  .sm\:fcol-6 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 50%;
  }
  .sm\:col-7 {
    width: 58.3333%;
  }
  .sm\:fcol-7 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 58.3333%;
  }
  .sm\:col-8 {
    width: 66.6667%;
  }
  .sm\:fcol-8 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 66.6667%;
  }
  .sm\:col-9 {
    width: 75%;
  }
  .sm\:fcol-9 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 75%;
  }
  .sm\:col-10 {
    width: 83.3333%;
  }
  .sm\:fcol-10 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 83.3333%;
  }
  .sm\:col-11 {
    width: 91.6667%;
  }
  .sm\:fcol-11 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 91.6667%;
  }
  .sm\:col-12 {
    width: 100%;
  }
  .sm\:fcol-12 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .md\:col-1 {
    width: 8.3333%;
  }
  .md\:fcol-1 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 8.3333%;
  }
  .md\:col-2 {
    width: 16.6667%;
  }
  .md\:fcol-2 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 16.6667%;
  }
  .md\:col-3 {
    width: 25%;
  }
  .md\:fcol-3 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 25%;
  }
  .md\:col-4 {
    width: 33.3333%;
  }
  .md\:fcol-4 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 33.3333%;
  }
  .md\:col-5 {
    width: 41.6667%;
  }
  .md\:fcol-5 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 41.6667%;
  }
  .md\:col-6 {
    width: 50%;
  }
  .md\:fcol-6 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 50%;
  }
  .md\:col-7 {
    width: 58.3333%;
  }
  .md\:fcol-7 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 58.3333%;
  }
  .md\:col-8 {
    width: 66.6667%;
  }
  .md\:fcol-8 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 66.6667%;
  }
  .md\:col-9 {
    width: 75%;
  }
  .md\:fcol-9 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 75%;
  }
  .md\:col-10 {
    width: 83.3333%;
  }
  .md\:fcol-10 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 83.3333%;
  }
  .md\:col-11 {
    width: 91.6667%;
  }
  .md\:fcol-11 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 91.6667%;
  }
  .md\:col-12 {
    width: 100%;
  }
  .md\:fcol-12 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .lg\:col-1 {
    width: 8.3333%;
  }
  .lg\:fcol-1 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 8.3333%;
  }
  .lg\:col-2 {
    width: 16.6667%;
  }
  .lg\:fcol-2 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 16.6667%;
  }
  .lg\:col-3 {
    width: 25%;
  }
  .lg\:fcol-3 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 25%;
  }
  .lg\:col-4 {
    width: 33.3333%;
  }
  .lg\:fcol-4 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 33.3333%;
  }
  .lg\:col-5 {
    width: 41.6667%;
  }
  .lg\:fcol-5 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 41.6667%;
  }
  .lg\:col-6 {
    width: 50%;
  }
  .lg\:fcol-6 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 50%;
  }
  .lg\:col-7 {
    width: 58.3333%;
  }
  .lg\:fcol-7 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 58.3333%;
  }
  .lg\:col-8 {
    width: 66.6667%;
  }
  .lg\:fcol-8 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 66.6667%;
  }
  .lg\:col-9 {
    width: 75%;
  }
  .lg\:fcol-9 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 75%;
  }
  .lg\:col-10 {
    width: 83.3333%;
  }
  .lg\:fcol-10 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 83.3333%;
  }
  .lg\:col-11 {
    width: 91.6667%;
  }
  .lg\:fcol-11 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 91.6667%;
  }
  .lg\:col-12 {
    width: 100%;
  }
  .lg\:fcol-12 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 100%;
  }
}
@media (min-width: 1440px) {
  .xl\:col-1 {
    width: 8.3333%;
  }
  .xl\:fcol-1 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 8.3333%;
  }
  .xl\:col-2 {
    width: 16.6667%;
  }
  .xl\:fcol-2 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 16.6667%;
  }
  .xl\:col-3 {
    width: 25%;
  }
  .xl\:fcol-3 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 25%;
  }
  .xl\:col-4 {
    width: 33.3333%;
  }
  .xl\:fcol-4 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 33.3333%;
  }
  .xl\:col-5 {
    width: 41.6667%;
  }
  .xl\:fcol-5 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 41.6667%;
  }
  .xl\:col-6 {
    width: 50%;
  }
  .xl\:fcol-6 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 50%;
  }
  .xl\:col-7 {
    width: 58.3333%;
  }
  .xl\:fcol-7 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 58.3333%;
  }
  .xl\:col-8 {
    width: 66.6667%;
  }
  .xl\:fcol-8 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 66.6667%;
  }
  .xl\:col-9 {
    width: 75%;
  }
  .xl\:fcol-9 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 75%;
  }
  .xl\:col-10 {
    width: 83.3333%;
  }
  .xl\:fcol-10 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 83.3333%;
  }
  .xl\:col-11 {
    width: 91.6667%;
  }
  .xl\:fcol-11 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 91.6667%;
  }
  .xl\:col-12 {
    width: 100%;
  }
  .xl\:fcol-12 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: 100%;
  }
}
@media (min-width: 360px) {
  .xs\:col-auto {
    width: auto;
  }
  .xs\:col-zero {
    width: auto;
  }
  .xs\:fcol-auto {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 0 0px !important;
            flex: 1 0 0 !important;
    width: auto;
  }
  .xs\:fcol-zero {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: auto;
  }
}
@media (min-width: 480px) {
  .sm\:col-auto {
    width: auto;
  }
  .sm\:col-zero {
    width: auto;
  }
  .sm\:fcol-auto {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 0 0px !important;
            flex: 1 0 0 !important;
    width: auto;
  }
  .sm\:fcol-zero {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: auto;
  }
}
@media (min-width: 768px) {
  .md\:col-auto {
    width: auto;
  }
  .md\:col-zero {
    width: auto;
  }
  .md\:fcol-auto {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 0 0px !important;
            flex: 1 0 0 !important;
    width: auto;
  }
  .md\:fcol-zero {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: auto;
  }
}
@media (min-width: 1024px) {
  .lg\:col-auto {
    width: auto;
  }
  .lg\:col-zero {
    width: auto;
  }
  .lg\:fcol-auto {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 0 0px !important;
            flex: 1 0 0 !important;
    width: auto;
  }
  .lg\:fcol-zero {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: auto;
  }
}
@media (min-width: 1440px) {
  .xl\:col-auto {
    width: auto;
  }
  .xl\:col-zero {
    width: auto;
  }
  .xl\:fcol-auto {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 0 0px !important;
            flex: 1 0 0 !important;
    width: auto;
  }
  .xl\:fcol-zero {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
            flex: 0 0 auto !important;
    width: auto;
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: inherit;
  -webkit-column-gap: inherit;
     -moz-column-gap: inherit;
          column-gap: inherit;
  row-gap: inherit;
}

html {
  height: 100%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  background: transparent;
  gap: 0.5rem;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  row-gap: 0.5rem;
}
@media (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

body {
  position: relative;
  height: 100%;
  margin: 0;
  background-color: #fcfaeb;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

fieldset,
optgroup {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.15;
}

button,
input,
select,
textarea {
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.15;
}

button,
select {
  text-transform: none;
}

input {
  overflow: visible;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
}

p {
  margin: 0;
}

.footer-wrapper {
  position: relative;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overflow: hidden auto !important;
  min-height: 100%;
}

.footer-spacer {
  display: none;
}
@media (min-width: 1024px) {
  .footer-spacer {
    height: 52.5rem;
  }
}

.footer {
  position: relative;
}
@media (min-width: 1024px) {
  .footer {
    min-height: 52.5rem;
  }
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  height: auto;
  min-height: 2rem;
  padding: 0.25rem;
  text-align: center;
  color: #000000;
  font-size: 0.9rem;
  border: 0.0625rem solid #b3ac86;
  border-radius: 0;
  background: #dcdcdc;
  gap: 0.25rem;
}
.btn:hover, .btn:focus {
  border-color: rgb(189, 183, 150);
  background-color: rgb(233, 233, 233);
}
.btn:active {
  border-color: rgb(195, 189, 159);
  background-color: rgb(240, 240, 240);
}
.btn:disabled {
  opacity: 0.75 !important;
  color: #6e6e6e !important;
  border-color: rgb(199, 193, 165) !important;
  background-color: #dcdcdc !important;
}
.btn:disabled img, .btn:disabled svg {
  -webkit-filter: grayscale(1) opacity(0.5);
          filter: grayscale(1) opacity(0.5);
}
.btn:not(:disabled) {
  cursor: pointer;
}

.btn_nofocus:focus {
  border-color: #b3ac86 !important;
  background-color: #dcdcdc !important;
}

.btn_fake,
.btn_fake:hover,
.btn_fake:focus,
.btn_fake:active,
.btn_fake:disabled {
  border-color: transparent !important;
}

.btn_small {
  min-height: 1.5rem !important;
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
  font-size: 0.75rem !important;
  line-height: 1 !important;
}

.btn_middle {
  min-height: 2.375rem !important;
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
  font-size: 0.8rem !important;
  line-height: 1 !important;
}

.btn_full {
  padding: 0 !important;
}

.btn_oneline > span:only-child {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  vertical-align: middle;
  white-space: nowrap;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

.fieldset-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.5rem;
  padding-right: 0.25rem;
  padding-left: 0.25rem;
  border: 0.0625rem solid #c1c9d1;
  background: #ffffff;
}

.fieldset-input:disabled {
  background-color: #dcdcdc;
}

.fieldset-input:disabled img,
.fieldset-input:disabled svg {
  -webkit-filter: grayscale(1) opacity(0.5) !important;
          filter: grayscale(1) opacity(0.5) !important;
}

.field-input {
  cursor: text;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: normal;
  border: 0 solid #c1c9d1;
  background: transparent;
  -webkit-appearance: textfield;
}
.field-input:hover, .field-input:focus, .field-input:active {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.field-input:disabled {
  color: #aeaeae !important;
}
.field-input::-webkit-search-decoration, .field-input::-webkit-search-cancel-button, .field-input::-webkit-search-results-button, .field-input::-webkit-search-results-decoration {
  display: none !important;
}

.field-input-button {
  cursor: pointer;
  display: block;
  height: 3rem;
  border: 0;
  background: transparent;
}
.field-input-button:hover, .field-input-button:focus, .field-input-button:active {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

::-webkit-scrollbar {
  width: 1vw;
  height: 1vh;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(44, 31, 22, 0.8);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #2c1f16;
}

@-webkit-keyframes shacker {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}
@keyframes shacker {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}