*, *::after, *::before {
  box-sizing: border-box;
}

[class^=container] {
  width: 100%;
  margin-left: auto;
  margin-right: 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: 1320px;
  }
}
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

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

.row:has(> .grow, > .shrink) > * {
  width: unset;
}

.row.horizontal {
  flex-direction: row !important;
}
.row.reverse {
  flex-direction: row-reverse !important;
}
.row.vertical {
  flex-direction: column !important;
}
.row.vertical-reverse {
  flex-direction: column-reverse !important;
}
.row.wrap {
  flex-wrap: wrap !important;
}
.row.nowrap {
  flex-wrap: nowrap !important;
}
.row.wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.row > .grow {
  flex-grow: 1 !important;
}
.row > .shrink {
  flex-shrink: 1 !important;
}
.row.justify-start {
  justify-content: flex-start !important;
}
.row.justify-end {
  justify-content: flex-end !important;
}
.row.justify-center {
  justify-content: center !important;
}
.row.justify-between {
  justify-content: space-between !important;
}
.row.justify-around {
  justify-content: space-around !important;
}
.row.justify-evenly {
  justify-content: space-evenly !important;
}
.row.align-stretch {
  align-items: stretch !important;
}
.row.align-center {
  align-items: center !important;
}
.row.align-start {
  align-items: flex-start !important;
}
.row.align-end {
  align-items: flex-end !important;
}
.row.align-baseline {
  align-items: baseline !important;
}
.row.align-lines-stretch {
  align-content: stretch !important;
}
.row.align-lines-center {
  align-content: center !important;
}
.row.align-lines-start {
  align-content: flex-start !important;
}
.row.align-lines-end {
  align-content: flex-end !important;
}
.row.align-lines-between {
  align-content: space-between !important;
}
.row.align-lines-around {
  align-content: space-around !important;
}
.row.align-lines-evenly {
  align-content: space-evenly !important;
}

.col {
  flex: 1 0 0%;
}

.col-auto {
  width: auto;
}

.col-1 {
  width: 8.3333333333% !important;
}

.col-2 {
  width: 16.6666666667% !important;
}

.col-3 {
  width: 25% !important;
}

.col-4 {
  width: 33.3333333333% !important;
}

.col-5 {
  width: 41.6666666667% !important;
}

.col-6 {
  width: 50% !important;
}

.col-7 {
  width: 58.3333333333% !important;
}

.col-8 {
  width: 66.6666666667% !important;
}

.col-9 {
  width: 75% !important;
}

.col-10 {
  width: 83.3333333333% !important;
}

.col-11 {
  width: 91.6666666667% !important;
}

.col-12 {
  width: 100% !important;
}

.col.align-stretch {
  align-self: stretch !important;
}

.col.align-center {
  align-self: center !important;
}

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

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

.col.align-baseline {
  align-self: baseline !important;
}

@media (min-width: 576px) {
  .row.horizontal-sm {
    flex-direction: row !important;
  }
  .row.reverse-sm {
    flex-direction: row-reverse !important;
  }
  .row.vertical-sm {
    flex-direction: column !important;
  }
  .row.vertical-reverse-sm {
    flex-direction: column-reverse !important;
  }
  .row.wrap-sm {
    flex-wrap: wrap !important;
  }
  .row.nowrap-sm {
    flex-wrap: nowrap !important;
  }
  .row.wrap-reverse-sm {
    flex-wrap: wrap-reverse !important;
  }
  .row > .grow-sm {
    flex-grow: 1 !important;
  }
  .row > .shrink-sm {
    flex-shrink: 1 !important;
  }
  .row.justify-sm-start {
    justify-content: flex-start !important;
  }
  .row.justify-sm-end {
    justify-content: flex-end !important;
  }
  .row.justify-sm-center {
    justify-content: center !important;
  }
  .row.justify-sm-between {
    justify-content: space-between !important;
  }
  .row.justify-sm-around {
    justify-content: space-around !important;
  }
  .row.justify-sm-evenly {
    justify-content: space-evenly !important;
  }
  .row.align-sm-stretch {
    align-items: stretch !important;
  }
  .row.align-sm-center {
    align-items: center !important;
  }
  .row.align-sm-start {
    align-items: flex-start !important;
  }
  .row.align-sm-end {
    align-items: flex-end !important;
  }
  .row.align-sm-baseline {
    align-items: baseline !important;
  }
  .row.align-lines-sm-stretch {
    align-content: stretch !important;
  }
  .row.align-lines-sm-center {
    align-content: center !important;
  }
  .row.align-lines-sm-start {
    align-content: flex-start !important;
  }
  .row.align-lines-sm-end {
    align-content: flex-end !important;
  }
  .row.align-lines-sm-between {
    align-content: space-between !important;
  }
  .row.align-lines-sm-around {
    align-content: space-around !important;
  }
  .row.align-lines-sm-evenly {
    align-content: space-evenly !important;
  }
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-auto {
    width: auto;
  }
  .col-sm-1 {
    width: 8.3333333333% !important;
  }
  .col-sm-2 {
    width: 16.6666666667% !important;
  }
  .col-sm-3 {
    width: 25% !important;
  }
  .col-sm-4 {
    width: 33.3333333333% !important;
  }
  .col-sm-5 {
    width: 41.6666666667% !important;
  }
  .col-sm-6 {
    width: 50% !important;
  }
  .col-sm-7 {
    width: 58.3333333333% !important;
  }
  .col-sm-8 {
    width: 66.6666666667% !important;
  }
  .col-sm-9 {
    width: 75% !important;
  }
  .col-sm-10 {
    width: 83.3333333333% !important;
  }
  .col-sm-11 {
    width: 91.6666666667% !important;
  }
  .col-sm-12 {
    width: 100% !important;
  }
  .col.align-sm-stretch {
    align-self: stretch !important;
  }
  .col.align-sm-center {
    align-self: center !important;
  }
  .col.align-sm-start {
    align-self: flex-start !important;
  }
  .col.align-sm-end {
    align-self: flex-end !important;
  }
  .col.align-sm-baseline {
    align-self: baseline !important;
  }
}
@media (min-width: 768px) {
  .row.horizontal-md {
    flex-direction: row !important;
  }
  .row.reverse-md {
    flex-direction: row-reverse !important;
  }
  .row.vertical-md {
    flex-direction: column !important;
  }
  .row.vertical-reverse-md {
    flex-direction: column-reverse !important;
  }
  .row.wrap-md {
    flex-wrap: wrap !important;
  }
  .row.nowrap-md {
    flex-wrap: nowrap !important;
  }
  .row.wrap-reverse-md {
    flex-wrap: wrap-reverse !important;
  }
  .row > .grow-md {
    flex-grow: 1 !important;
  }
  .row > .shrink-md {
    flex-shrink: 1 !important;
  }
  .row.justify-md-start {
    justify-content: flex-start !important;
  }
  .row.justify-md-end {
    justify-content: flex-end !important;
  }
  .row.justify-md-center {
    justify-content: center !important;
  }
  .row.justify-md-between {
    justify-content: space-between !important;
  }
  .row.justify-md-around {
    justify-content: space-around !important;
  }
  .row.justify-md-evenly {
    justify-content: space-evenly !important;
  }
  .row.align-md-stretch {
    align-items: stretch !important;
  }
  .row.align-md-center {
    align-items: center !important;
  }
  .row.align-md-start {
    align-items: flex-start !important;
  }
  .row.align-md-end {
    align-items: flex-end !important;
  }
  .row.align-md-baseline {
    align-items: baseline !important;
  }
  .row.align-lines-md-stretch {
    align-content: stretch !important;
  }
  .row.align-lines-md-center {
    align-content: center !important;
  }
  .row.align-lines-md-start {
    align-content: flex-start !important;
  }
  .row.align-lines-md-end {
    align-content: flex-end !important;
  }
  .row.align-lines-md-between {
    align-content: space-between !important;
  }
  .row.align-lines-md-around {
    align-content: space-around !important;
  }
  .row.align-lines-md-evenly {
    align-content: space-evenly !important;
  }
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-auto {
    width: auto;
  }
  .col-md-1 {
    width: 8.3333333333% !important;
  }
  .col-md-2 {
    width: 16.6666666667% !important;
  }
  .col-md-3 {
    width: 25% !important;
  }
  .col-md-4 {
    width: 33.3333333333% !important;
  }
  .col-md-5 {
    width: 41.6666666667% !important;
  }
  .col-md-6 {
    width: 50% !important;
  }
  .col-md-7 {
    width: 58.3333333333% !important;
  }
  .col-md-8 {
    width: 66.6666666667% !important;
  }
  .col-md-9 {
    width: 75% !important;
  }
  .col-md-10 {
    width: 83.3333333333% !important;
  }
  .col-md-11 {
    width: 91.6666666667% !important;
  }
  .col-md-12 {
    width: 100% !important;
  }
  .col.align-md-stretch {
    align-self: stretch !important;
  }
  .col.align-md-center {
    align-self: center !important;
  }
  .col.align-md-start {
    align-self: flex-start !important;
  }
  .col.align-md-end {
    align-self: flex-end !important;
  }
  .col.align-md-baseline {
    align-self: baseline !important;
  }
}
@media (min-width: 992px) {
  .row.horizontal-lg {
    flex-direction: row !important;
  }
  .row.reverse-lg {
    flex-direction: row-reverse !important;
  }
  .row.vertical-lg {
    flex-direction: column !important;
  }
  .row.vertical-reverse-lg {
    flex-direction: column-reverse !important;
  }
  .row.wrap-lg {
    flex-wrap: wrap !important;
  }
  .row.nowrap-lg {
    flex-wrap: nowrap !important;
  }
  .row.wrap-reverse-lg {
    flex-wrap: wrap-reverse !important;
  }
  .row > .grow-lg {
    flex-grow: 1 !important;
  }
  .row > .shrink-lg {
    flex-shrink: 1 !important;
  }
  .row.justify-lg-start {
    justify-content: flex-start !important;
  }
  .row.justify-lg-end {
    justify-content: flex-end !important;
  }
  .row.justify-lg-center {
    justify-content: center !important;
  }
  .row.justify-lg-between {
    justify-content: space-between !important;
  }
  .row.justify-lg-around {
    justify-content: space-around !important;
  }
  .row.justify-lg-evenly {
    justify-content: space-evenly !important;
  }
  .row.align-lg-stretch {
    align-items: stretch !important;
  }
  .row.align-lg-center {
    align-items: center !important;
  }
  .row.align-lg-start {
    align-items: flex-start !important;
  }
  .row.align-lg-end {
    align-items: flex-end !important;
  }
  .row.align-lg-baseline {
    align-items: baseline !important;
  }
  .row.align-lines-lg-stretch {
    align-content: stretch !important;
  }
  .row.align-lines-lg-center {
    align-content: center !important;
  }
  .row.align-lines-lg-start {
    align-content: flex-start !important;
  }
  .row.align-lines-lg-end {
    align-content: flex-end !important;
  }
  .row.align-lines-lg-between {
    align-content: space-between !important;
  }
  .row.align-lines-lg-around {
    align-content: space-around !important;
  }
  .row.align-lines-lg-evenly {
    align-content: space-evenly !important;
  }
  .col-lg {
    flex: 1 0 0%;
  }
  .col-lg-auto {
    width: auto;
  }
  .col-lg-1 {
    width: 8.3333333333% !important;
  }
  .col-lg-2 {
    width: 16.6666666667% !important;
  }
  .col-lg-3 {
    width: 25% !important;
  }
  .col-lg-4 {
    width: 33.3333333333% !important;
  }
  .col-lg-5 {
    width: 41.6666666667% !important;
  }
  .col-lg-6 {
    width: 50% !important;
  }
  .col-lg-7 {
    width: 58.3333333333% !important;
  }
  .col-lg-8 {
    width: 66.6666666667% !important;
  }
  .col-lg-9 {
    width: 75% !important;
  }
  .col-lg-10 {
    width: 83.3333333333% !important;
  }
  .col-lg-11 {
    width: 91.6666666667% !important;
  }
  .col-lg-12 {
    width: 100% !important;
  }
  .col.align-lg-stretch {
    align-self: stretch !important;
  }
  .col.align-lg-center {
    align-self: center !important;
  }
  .col.align-lg-start {
    align-self: flex-start !important;
  }
  .col.align-lg-end {
    align-self: flex-end !important;
  }
  .col.align-lg-baseline {
    align-self: baseline !important;
  }
}
@media (min-width: 1200px) {
  .row.horizontal-xl {
    flex-direction: row !important;
  }
  .row.reverse-xl {
    flex-direction: row-reverse !important;
  }
  .row.vertical-xl {
    flex-direction: column !important;
  }
  .row.vertical-reverse-xl {
    flex-direction: column-reverse !important;
  }
  .row.wrap-xl {
    flex-wrap: wrap !important;
  }
  .row.nowrap-xl {
    flex-wrap: nowrap !important;
  }
  .row.wrap-reverse-xl {
    flex-wrap: wrap-reverse !important;
  }
  .row > .grow-xl {
    flex-grow: 1 !important;
  }
  .row > .shrink-xl {
    flex-shrink: 1 !important;
  }
  .row.justify-xl-start {
    justify-content: flex-start !important;
  }
  .row.justify-xl-end {
    justify-content: flex-end !important;
  }
  .row.justify-xl-center {
    justify-content: center !important;
  }
  .row.justify-xl-between {
    justify-content: space-between !important;
  }
  .row.justify-xl-around {
    justify-content: space-around !important;
  }
  .row.justify-xl-evenly {
    justify-content: space-evenly !important;
  }
  .row.align-xl-stretch {
    align-items: stretch !important;
  }
  .row.align-xl-center {
    align-items: center !important;
  }
  .row.align-xl-start {
    align-items: flex-start !important;
  }
  .row.align-xl-end {
    align-items: flex-end !important;
  }
  .row.align-xl-baseline {
    align-items: baseline !important;
  }
  .row.align-lines-xl-stretch {
    align-content: stretch !important;
  }
  .row.align-lines-xl-center {
    align-content: center !important;
  }
  .row.align-lines-xl-start {
    align-content: flex-start !important;
  }
  .row.align-lines-xl-end {
    align-content: flex-end !important;
  }
  .row.align-lines-xl-between {
    align-content: space-between !important;
  }
  .row.align-lines-xl-around {
    align-content: space-around !important;
  }
  .row.align-lines-xl-evenly {
    align-content: space-evenly !important;
  }
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-auto {
    width: auto;
  }
  .col-xl-1 {
    width: 8.3333333333% !important;
  }
  .col-xl-2 {
    width: 16.6666666667% !important;
  }
  .col-xl-3 {
    width: 25% !important;
  }
  .col-xl-4 {
    width: 33.3333333333% !important;
  }
  .col-xl-5 {
    width: 41.6666666667% !important;
  }
  .col-xl-6 {
    width: 50% !important;
  }
  .col-xl-7 {
    width: 58.3333333333% !important;
  }
  .col-xl-8 {
    width: 66.6666666667% !important;
  }
  .col-xl-9 {
    width: 75% !important;
  }
  .col-xl-10 {
    width: 83.3333333333% !important;
  }
  .col-xl-11 {
    width: 91.6666666667% !important;
  }
  .col-xl-12 {
    width: 100% !important;
  }
  .col.align-xl-stretch {
    align-self: stretch !important;
  }
  .col.align-xl-center {
    align-self: center !important;
  }
  .col.align-xl-start {
    align-self: flex-start !important;
  }
  .col.align-xl-end {
    align-self: flex-end !important;
  }
  .col.align-xl-baseline {
    align-self: baseline !important;
  }
}
@media (min-width: 1400px) {
  .row.horizontal-xxl {
    flex-direction: row !important;
  }
  .row.reverse-xxl {
    flex-direction: row-reverse !important;
  }
  .row.vertical-xxl {
    flex-direction: column !important;
  }
  .row.vertical-reverse-xxl {
    flex-direction: column-reverse !important;
  }
  .row.wrap-xxl {
    flex-wrap: wrap !important;
  }
  .row.nowrap-xxl {
    flex-wrap: nowrap !important;
  }
  .row.wrap-reverse-xxl {
    flex-wrap: wrap-reverse !important;
  }
  .row > .grow-xxl {
    flex-grow: 1 !important;
  }
  .row > .shrink-xxl {
    flex-shrink: 1 !important;
  }
  .row.justify-xxl-start {
    justify-content: flex-start !important;
  }
  .row.justify-xxl-end {
    justify-content: flex-end !important;
  }
  .row.justify-xxl-center {
    justify-content: center !important;
  }
  .row.justify-xxl-between {
    justify-content: space-between !important;
  }
  .row.justify-xxl-around {
    justify-content: space-around !important;
  }
  .row.justify-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .row.align-xxl-stretch {
    align-items: stretch !important;
  }
  .row.align-xxl-center {
    align-items: center !important;
  }
  .row.align-xxl-start {
    align-items: flex-start !important;
  }
  .row.align-xxl-end {
    align-items: flex-end !important;
  }
  .row.align-xxl-baseline {
    align-items: baseline !important;
  }
  .row.align-lines-xxl-stretch {
    align-content: stretch !important;
  }
  .row.align-lines-xxl-center {
    align-content: center !important;
  }
  .row.align-lines-xxl-start {
    align-content: flex-start !important;
  }
  .row.align-lines-xxl-end {
    align-content: flex-end !important;
  }
  .row.align-lines-xxl-between {
    align-content: space-between !important;
  }
  .row.align-lines-xxl-around {
    align-content: space-around !important;
  }
  .row.align-lines-xxl-evenly {
    align-content: space-evenly !important;
  }
  .col-xxl {
    flex: 1 0 0%;
  }
  .col-xxl-auto {
    width: auto;
  }
  .col-xxl-1 {
    width: 8.3333333333% !important;
  }
  .col-xxl-2 {
    width: 16.6666666667% !important;
  }
  .col-xxl-3 {
    width: 25% !important;
  }
  .col-xxl-4 {
    width: 33.3333333333% !important;
  }
  .col-xxl-5 {
    width: 41.6666666667% !important;
  }
  .col-xxl-6 {
    width: 50% !important;
  }
  .col-xxl-7 {
    width: 58.3333333333% !important;
  }
  .col-xxl-8 {
    width: 66.6666666667% !important;
  }
  .col-xxl-9 {
    width: 75% !important;
  }
  .col-xxl-10 {
    width: 83.3333333333% !important;
  }
  .col-xxl-11 {
    width: 91.6666666667% !important;
  }
  .col-xxl-12 {
    width: 100% !important;
  }
  .col.align-xxl-stretch {
    align-self: stretch !important;
  }
  .col.align-xxl-center {
    align-self: center !important;
  }
  .col.align-xxl-start {
    align-self: flex-start !important;
  }
  .col.align-xxl-end {
    align-self: flex-end !important;
  }
  .col.align-xxl-baseline {
    align-self: baseline !important;
  }
}

/*# sourceMappingURL=responsive.css.map */
