@charset "UTF-8";
html {
  font-size: 10px;
}

/*!
 * Bootstrap Grid v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 768px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 992px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 1200px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1500px;
  }
}
@media (min-width: 1500px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1550px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1500px;
}

.row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

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

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

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

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

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

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

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

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1500px) {
  .col-xxl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

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

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

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

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

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
  -ms-flex-order: -1 !important;
  order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
  -ms-flex-order: 0 !important;
  order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
  -ms-flex-order: 1 !important;
  order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
  -ms-flex-order: 3 !important;
  order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
  -ms-flex-order: 4 !important;
  order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
  -ms-flex-order: 5 !important;
  order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
  -ms-flex-order: 6 !important;
  order: 6 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-13 {
  margin: 13rem !important;
}

.m-15 {
  margin: 15rem !important;
}

.m-20 {
  margin: 20rem !important;
}

.m-25 {
  margin: 25rem !important;
}

.m-30 {
  margin: 30rem !important;
}

.m-35 {
  margin: 35rem !important;
}

.m-40 {
  margin: 40rem !important;
}

.m-45 {
  margin: 45rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-0_5 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-1_5 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-2 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.my-2_5 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-3_5 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.my-4 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.my-5 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.my-6 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.my-7 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

.my-8 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.my-9 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

.my-10 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.my-13 {
  margin-top: 13rem !important;
  margin-bottom: 13rem !important;
}

.my-15 {
  margin-top: 15rem !important;
  margin-bottom: 15rem !important;
}

.my-20 {
  margin-top: 20rem !important;
  margin-bottom: 20rem !important;
}

.my-25 {
  margin-top: 25rem !important;
  margin-bottom: 25rem !important;
}

.my-30 {
  margin-top: 30rem !important;
  margin-bottom: 30rem !important;
}

.my-35 {
  margin-top: 35rem !important;
  margin-bottom: 35rem !important;
}

.my-40 {
  margin-top: 40rem !important;
  margin-bottom: 40rem !important;
}

.my-45 {
  margin-top: 45rem !important;
  margin-bottom: 45rem !important;
}

.my-50 {
  margin-top: 50rem !important;
  margin-bottom: 50rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.me-0_5 {
  margin-right: 0.5rem !important;
}

.me-1 {
  margin-right: 1rem !important;
}

.me-1_5 {
  margin-right: 1.5rem !important;
}

.me-2 {
  margin-right: 2rem !important;
}

.me-2_5 {
  margin-right: 2.5rem !important;
}

.me-3 {
  margin-right: 3rem !important;
}

.me-3_5 {
  margin-right: 3.5rem !important;
}

.me-4 {
  margin-right: 4rem !important;
}

.me-5 {
  margin-right: 5rem !important;
}

.me-6 {
  margin-right: 6rem !important;
}

.me-7 {
  margin-right: 7rem !important;
}

.me-8 {
  margin-right: 8rem !important;
}

.me-9 {
  margin-right: 9rem !important;
}

.me-10 {
  margin-right: 10rem !important;
}

.me-13 {
  margin-right: 13rem !important;
}

.me-15 {
  margin-right: 15rem !important;
}

.me-20 {
  margin-right: 20rem !important;
}

.me-25 {
  margin-right: 25rem !important;
}

.me-30 {
  margin-right: 30rem !important;
}

.me-35 {
  margin-right: 35rem !important;
}

.me-40 {
  margin-right: 40rem !important;
}

.me-45 {
  margin-right: 45rem !important;
}

.me-50 {
  margin-right: 50rem !important;
}

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

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

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

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-1_5 {
  margin-bottom: 1.5rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-2_5 {
  margin-bottom: 2.5rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-3_5 {
  margin-bottom: 3.5rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

.mb-8 {
  margin-bottom: 8rem !important;
}

.mb-9 {
  margin-bottom: 9rem !important;
}

.mb-10 {
  margin-bottom: 10rem !important;
}

.mb-13 {
  margin-bottom: 13rem !important;
}

.mb-15 {
  margin-bottom: 15rem !important;
}

.mb-20 {
  margin-bottom: 20rem !important;
}

.mb-25 {
  margin-bottom: 25rem !important;
}

.mb-30 {
  margin-bottom: 30rem !important;
}

.mb-35 {
  margin-bottom: 35rem !important;
}

.mb-40 {
  margin-bottom: 40rem !important;
}

.mb-45 {
  margin-bottom: 45rem !important;
}

.mb-50 {
  margin-bottom: 50rem !important;
}

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

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

.ms-0_5 {
  margin-left: 0.5rem !important;
}

.ms-1 {
  margin-left: 1rem !important;
}

.ms-1_5 {
  margin-left: 1.5rem !important;
}

.ms-2 {
  margin-left: 2rem !important;
}

.ms-2_5 {
  margin-left: 2.5rem !important;
}

.ms-3 {
  margin-left: 3rem !important;
}

.ms-3_5 {
  margin-left: 3.5rem !important;
}

.ms-4 {
  margin-left: 4rem !important;
}

.ms-5 {
  margin-left: 5rem !important;
}

.ms-6 {
  margin-left: 6rem !important;
}

.ms-7 {
  margin-left: 7rem !important;
}

.ms-8 {
  margin-left: 8rem !important;
}

.ms-9 {
  margin-left: 9rem !important;
}

.ms-10 {
  margin-left: 10rem !important;
}

.ms-13 {
  margin-left: 13rem !important;
}

.ms-15 {
  margin-left: 15rem !important;
}

.ms-20 {
  margin-left: 20rem !important;
}

.ms-25 {
  margin-left: 25rem !important;
}

.ms-30 {
  margin-left: 30rem !important;
}

.ms-35 {
  margin-left: 35rem !important;
}

.ms-40 {
  margin-left: 40rem !important;
}

.ms-45 {
  margin-left: 45rem !important;
}

.ms-50 {
  margin-left: 50rem !important;
}

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

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

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

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

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

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

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

.m-n3_5 {
  margin: -3.5rem !important;
}

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

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

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

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

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

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

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

.m-n13 {
  margin: -13rem !important;
}

.m-n15 {
  margin: -15rem !important;
}

.m-n20 {
  margin: -20rem !important;
}

.m-n25 {
  margin: -25rem !important;
}

.m-n30 {
  margin: -30rem !important;
}

.m-n35 {
  margin: -35rem !important;
}

.m-n40 {
  margin: -40rem !important;
}

.m-n45 {
  margin: -45rem !important;
}

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

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

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

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

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

.mx-n2_5 {
  margin-right: -2.5rem !important;
  margin-left: -2.5rem !important;
}

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

.mx-n3_5 {
  margin-right: -3.5rem !important;
  margin-left: -3.5rem !important;
}

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

.mx-n5 {
  margin-right: -5rem !important;
  margin-left: -5rem !important;
}

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

.mx-n7 {
  margin-right: -7rem !important;
  margin-left: -7rem !important;
}

.mx-n8 {
  margin-right: -8rem !important;
  margin-left: -8rem !important;
}

.mx-n9 {
  margin-right: -9rem !important;
  margin-left: -9rem !important;
}

.mx-n10 {
  margin-right: -10rem !important;
  margin-left: -10rem !important;
}

.mx-n13 {
  margin-right: -13rem !important;
  margin-left: -13rem !important;
}

.mx-n15 {
  margin-right: -15rem !important;
  margin-left: -15rem !important;
}

.mx-n20 {
  margin-right: -20rem !important;
  margin-left: -20rem !important;
}

.mx-n25 {
  margin-right: -25rem !important;
  margin-left: -25rem !important;
}

.mx-n30 {
  margin-right: -30rem !important;
  margin-left: -30rem !important;
}

.mx-n35 {
  margin-right: -35rem !important;
  margin-left: -35rem !important;
}

.mx-n40 {
  margin-right: -40rem !important;
  margin-left: -40rem !important;
}

.mx-n45 {
  margin-right: -45rem !important;
  margin-left: -45rem !important;
}

.mx-n50 {
  margin-right: -50rem !important;
  margin-left: -50rem !important;
}

.my-n0_5 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.my-n1 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.my-n1_5 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.my-n2 {
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}

.my-n2_5 {
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}

.my-n3 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.my-n3_5 {
  margin-top: -3.5rem !important;
  margin-bottom: -3.5rem !important;
}

.my-n4 {
  margin-top: -4rem !important;
  margin-bottom: -4rem !important;
}

.my-n5 {
  margin-top: -5rem !important;
  margin-bottom: -5rem !important;
}

.my-n6 {
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}

.my-n7 {
  margin-top: -7rem !important;
  margin-bottom: -7rem !important;
}

.my-n8 {
  margin-top: -8rem !important;
  margin-bottom: -8rem !important;
}

.my-n9 {
  margin-top: -9rem !important;
  margin-bottom: -9rem !important;
}

.my-n10 {
  margin-top: -10rem !important;
  margin-bottom: -10rem !important;
}

.my-n13 {
  margin-top: -13rem !important;
  margin-bottom: -13rem !important;
}

.my-n15 {
  margin-top: -15rem !important;
  margin-bottom: -15rem !important;
}

.my-n20 {
  margin-top: -20rem !important;
  margin-bottom: -20rem !important;
}

.my-n25 {
  margin-top: -25rem !important;
  margin-bottom: -25rem !important;
}

.my-n30 {
  margin-top: -30rem !important;
  margin-bottom: -30rem !important;
}

.my-n35 {
  margin-top: -35rem !important;
  margin-bottom: -35rem !important;
}

.my-n40 {
  margin-top: -40rem !important;
  margin-bottom: -40rem !important;
}

.my-n45 {
  margin-top: -45rem !important;
  margin-bottom: -45rem !important;
}

.my-n50 {
  margin-top: -50rem !important;
  margin-bottom: -50rem !important;
}

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

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

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

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

.mt-n2_5 {
  margin-top: -2.5rem !important;
}

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

.mt-n3_5 {
  margin-top: -3.5rem !important;
}

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

.mt-n5 {
  margin-top: -5rem !important;
}

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

.mt-n7 {
  margin-top: -7rem !important;
}

.mt-n8 {
  margin-top: -8rem !important;
}

.mt-n9 {
  margin-top: -9rem !important;
}

.mt-n10 {
  margin-top: -10rem !important;
}

.mt-n13 {
  margin-top: -13rem !important;
}

.mt-n15 {
  margin-top: -15rem !important;
}

.mt-n20 {
  margin-top: -20rem !important;
}

.mt-n25 {
  margin-top: -25rem !important;
}

.mt-n30 {
  margin-top: -30rem !important;
}

.mt-n35 {
  margin-top: -35rem !important;
}

.mt-n40 {
  margin-top: -40rem !important;
}

.mt-n45 {
  margin-top: -45rem !important;
}

.mt-n50 {
  margin-top: -50rem !important;
}

.me-n0_5 {
  margin-right: -0.5rem !important;
}

.me-n1 {
  margin-right: -1rem !important;
}

.me-n1_5 {
  margin-right: -1.5rem !important;
}

.me-n2 {
  margin-right: -2rem !important;
}

.me-n2_5 {
  margin-right: -2.5rem !important;
}

.me-n3 {
  margin-right: -3rem !important;
}

.me-n3_5 {
  margin-right: -3.5rem !important;
}

.me-n4 {
  margin-right: -4rem !important;
}

.me-n5 {
  margin-right: -5rem !important;
}

.me-n6 {
  margin-right: -6rem !important;
}

.me-n7 {
  margin-right: -7rem !important;
}

.me-n8 {
  margin-right: -8rem !important;
}

.me-n9 {
  margin-right: -9rem !important;
}

.me-n10 {
  margin-right: -10rem !important;
}

.me-n13 {
  margin-right: -13rem !important;
}

.me-n15 {
  margin-right: -15rem !important;
}

.me-n20 {
  margin-right: -20rem !important;
}

.me-n25 {
  margin-right: -25rem !important;
}

.me-n30 {
  margin-right: -30rem !important;
}

.me-n35 {
  margin-right: -35rem !important;
}

.me-n40 {
  margin-right: -40rem !important;
}

.me-n45 {
  margin-right: -45rem !important;
}

.me-n50 {
  margin-right: -50rem !important;
}

.mb-n0_5 {
  margin-bottom: -0.5rem !important;
}

.mb-n1 {
  margin-bottom: -1rem !important;
}

.mb-n1_5 {
  margin-bottom: -1.5rem !important;
}

.mb-n2 {
  margin-bottom: -2rem !important;
}

.mb-n2_5 {
  margin-bottom: -2.5rem !important;
}

.mb-n3 {
  margin-bottom: -3rem !important;
}

.mb-n3_5 {
  margin-bottom: -3.5rem !important;
}

.mb-n4 {
  margin-bottom: -4rem !important;
}

.mb-n5 {
  margin-bottom: -5rem !important;
}

.mb-n6 {
  margin-bottom: -6rem !important;
}

.mb-n7 {
  margin-bottom: -7rem !important;
}

.mb-n8 {
  margin-bottom: -8rem !important;
}

.mb-n9 {
  margin-bottom: -9rem !important;
}

.mb-n10 {
  margin-bottom: -10rem !important;
}

.mb-n13 {
  margin-bottom: -13rem !important;
}

.mb-n15 {
  margin-bottom: -15rem !important;
}

.mb-n20 {
  margin-bottom: -20rem !important;
}

.mb-n25 {
  margin-bottom: -25rem !important;
}

.mb-n30 {
  margin-bottom: -30rem !important;
}

.mb-n35 {
  margin-bottom: -35rem !important;
}

.mb-n40 {
  margin-bottom: -40rem !important;
}

.mb-n45 {
  margin-bottom: -45rem !important;
}

.mb-n50 {
  margin-bottom: -50rem !important;
}

.ms-n0_5 {
  margin-left: -0.5rem !important;
}

.ms-n1 {
  margin-left: -1rem !important;
}

.ms-n1_5 {
  margin-left: -1.5rem !important;
}

.ms-n2 {
  margin-left: -2rem !important;
}

.ms-n2_5 {
  margin-left: -2.5rem !important;
}

.ms-n3 {
  margin-left: -3rem !important;
}

.ms-n3_5 {
  margin-left: -3.5rem !important;
}

.ms-n4 {
  margin-left: -4rem !important;
}

.ms-n5 {
  margin-left: -5rem !important;
}

.ms-n6 {
  margin-left: -6rem !important;
}

.ms-n7 {
  margin-left: -7rem !important;
}

.ms-n8 {
  margin-left: -8rem !important;
}

.ms-n9 {
  margin-left: -9rem !important;
}

.ms-n10 {
  margin-left: -10rem !important;
}

.ms-n13 {
  margin-left: -13rem !important;
}

.ms-n15 {
  margin-left: -15rem !important;
}

.ms-n20 {
  margin-left: -20rem !important;
}

.ms-n25 {
  margin-left: -25rem !important;
}

.ms-n30 {
  margin-left: -30rem !important;
}

.ms-n35 {
  margin-left: -35rem !important;
}

.ms-n40 {
  margin-left: -40rem !important;
}

.ms-n45 {
  margin-left: -45rem !important;
}

.ms-n50 {
  margin-left: -50rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-13 {
  padding: 13rem !important;
}

.p-15 {
  padding: 15rem !important;
}

.p-20 {
  padding: 20rem !important;
}

.p-25 {
  padding: 25rem !important;
}

.p-30 {
  padding: 30rem !important;
}

.p-35 {
  padding: 35rem !important;
}

.p-40 {
  padding: 40rem !important;
}

.p-45 {
  padding: 45rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-0_5 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-1_5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-2 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-2_5 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-3_5 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.py-4 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.py-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.py-7 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.py-8 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.py-9 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

.py-10 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.py-13 {
  padding-top: 13rem !important;
  padding-bottom: 13rem !important;
}

.py-15 {
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}

.py-20 {
  padding-top: 20rem !important;
  padding-bottom: 20rem !important;
}

.py-25 {
  padding-top: 25rem !important;
  padding-bottom: 25rem !important;
}

.py-30 {
  padding-top: 30rem !important;
  padding-bottom: 30rem !important;
}

.py-35 {
  padding-top: 35rem !important;
  padding-bottom: 35rem !important;
}

.py-40 {
  padding-top: 40rem !important;
  padding-bottom: 40rem !important;
}

.py-45 {
  padding-top: 45rem !important;
  padding-bottom: 45rem !important;
}

.py-50 {
  padding-top: 50rem !important;
  padding-bottom: 50rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-0_5 {
  padding-top: 0.5rem !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pt-1_5 {
  padding-top: 1.5rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pt-2_5 {
  padding-top: 2.5rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pt-3_5 {
  padding-top: 3.5rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.pt-8 {
  padding-top: 8rem !important;
}

.pt-9 {
  padding-top: 9rem !important;
}

.pt-10 {
  padding-top: 10rem !important;
}

.pt-13 {
  padding-top: 13rem !important;
}

.pt-15 {
  padding-top: 15rem !important;
}

.pt-20 {
  padding-top: 20rem !important;
}

.pt-25 {
  padding-top: 25rem !important;
}

.pt-30 {
  padding-top: 30rem !important;
}

.pt-35 {
  padding-top: 35rem !important;
}

.pt-40 {
  padding-top: 40rem !important;
}

.pt-45 {
  padding-top: 45rem !important;
}

.pt-50 {
  padding-top: 50rem !important;
}

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

.pe-0_5 {
  padding-right: 0.5rem !important;
}

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

.pe-1_5 {
  padding-right: 1.5rem !important;
}

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

.pe-2_5 {
  padding-right: 2.5rem !important;
}

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

.pe-3_5 {
  padding-right: 3.5rem !important;
}

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

.pe-5 {
  padding-right: 5rem !important;
}

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

.pe-7 {
  padding-right: 7rem !important;
}

.pe-8 {
  padding-right: 8rem !important;
}

.pe-9 {
  padding-right: 9rem !important;
}

.pe-10 {
  padding-right: 10rem !important;
}

.pe-13 {
  padding-right: 13rem !important;
}

.pe-15 {
  padding-right: 15rem !important;
}

.pe-20 {
  padding-right: 20rem !important;
}

.pe-25 {
  padding-right: 25rem !important;
}

.pe-30 {
  padding-right: 30rem !important;
}

.pe-35 {
  padding-right: 35rem !important;
}

.pe-40 {
  padding-right: 40rem !important;
}

.pe-45 {
  padding-right: 45rem !important;
}

.pe-50 {
  padding-right: 50rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-0_5 {
  padding-bottom: 0.5rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pb-1_5 {
  padding-bottom: 1.5rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.pb-2_5 {
  padding-bottom: 2.5rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.pb-3_5 {
  padding-bottom: 3.5rem !important;
}

.pb-4 {
  padding-bottom: 4rem !important;
}

.pb-5 {
  padding-bottom: 5rem !important;
}

.pb-6 {
  padding-bottom: 6rem !important;
}

.pb-7 {
  padding-bottom: 7rem !important;
}

.pb-8 {
  padding-bottom: 8rem !important;
}

.pb-9 {
  padding-bottom: 9rem !important;
}

.pb-10 {
  padding-bottom: 10rem !important;
}

.pb-13 {
  padding-bottom: 13rem !important;
}

.pb-15 {
  padding-bottom: 15rem !important;
}

.pb-20 {
  padding-bottom: 20rem !important;
}

.pb-25 {
  padding-bottom: 25rem !important;
}

.pb-30 {
  padding-bottom: 30rem !important;
}

.pb-35 {
  padding-bottom: 35rem !important;
}

.pb-40 {
  padding-bottom: 40rem !important;
}

.pb-45 {
  padding-bottom: 45rem !important;
}

.pb-50 {
  padding-bottom: 50rem !important;
}

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

.ps-0_5 {
  padding-left: 0.5rem !important;
}

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

.ps-1_5 {
  padding-left: 1.5rem !important;
}

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

.ps-2_5 {
  padding-left: 2.5rem !important;
}

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

.ps-3_5 {
  padding-left: 3.5rem !important;
}

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

.ps-5 {
  padding-left: 5rem !important;
}

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

.ps-7 {
  padding-left: 7rem !important;
}

.ps-8 {
  padding-left: 8rem !important;
}

.ps-9 {
  padding-left: 9rem !important;
}

.ps-10 {
  padding-left: 10rem !important;
}

.ps-13 {
  padding-left: 13rem !important;
}

.ps-15 {
  padding-left: 15rem !important;
}

.ps-20 {
  padding-left: 20rem !important;
}

.ps-25 {
  padding-left: 25rem !important;
}

.ps-30 {
  padding-left: 30rem !important;
}

.ps-35 {
  padding-left: 35rem !important;
}

.ps-40 {
  padding-left: 40rem !important;
}

.ps-45 {
  padding-left: 45rem !important;
}

.ps-50 {
  padding-left: 50rem !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-0_5 {
    margin: 0.5rem !important;
  }
  .m-sm-1 {
    margin: 1rem !important;
  }
  .m-sm-1_5 {
    margin: 1.5rem !important;
  }
  .m-sm-2 {
    margin: 2rem !important;
  }
  .m-sm-2_5 {
    margin: 2.5rem !important;
  }
  .m-sm-3 {
    margin: 3rem !important;
  }
  .m-sm-3_5 {
    margin: 3.5rem !important;
  }
  .m-sm-4 {
    margin: 4rem !important;
  }
  .m-sm-5 {
    margin: 5rem !important;
  }
  .m-sm-6 {
    margin: 6rem !important;
  }
  .m-sm-7 {
    margin: 7rem !important;
  }
  .m-sm-8 {
    margin: 8rem !important;
  }
  .m-sm-9 {
    margin: 9rem !important;
  }
  .m-sm-10 {
    margin: 10rem !important;
  }
  .m-sm-13 {
    margin: 13rem !important;
  }
  .m-sm-15 {
    margin: 15rem !important;
  }
  .m-sm-20 {
    margin: 20rem !important;
  }
  .m-sm-25 {
    margin: 25rem !important;
  }
  .m-sm-30 {
    margin: 30rem !important;
  }
  .m-sm-35 {
    margin: 35rem !important;
  }
  .m-sm-40 {
    margin: 40rem !important;
  }
  .m-sm-45 {
    margin: 45rem !important;
  }
  .m-sm-50 {
    margin: 50rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-sm-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-sm-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-sm-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-sm-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-sm-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-sm-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-sm-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-sm-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-sm-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-sm-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-sm-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-sm-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-sm-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-sm-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-sm-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-sm-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sm-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-sm-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-sm-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-sm-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-sm-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-sm-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-sm-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-sm-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-sm-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-sm-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-sm-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-sm-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-sm-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-sm-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-sm-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-sm-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-sm-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-1 {
    margin-top: 1rem !important;
  }
  .mt-sm-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-2 {
    margin-top: 2rem !important;
  }
  .mt-sm-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 3rem !important;
  }
  .mt-sm-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-sm-4 {
    margin-top: 4rem !important;
  }
  .mt-sm-5 {
    margin-top: 5rem !important;
  }
  .mt-sm-6 {
    margin-top: 6rem !important;
  }
  .mt-sm-7 {
    margin-top: 7rem !important;
  }
  .mt-sm-8 {
    margin-top: 8rem !important;
  }
  .mt-sm-9 {
    margin-top: 9rem !important;
  }
  .mt-sm-10 {
    margin-top: 10rem !important;
  }
  .mt-sm-13 {
    margin-top: 13rem !important;
  }
  .mt-sm-15 {
    margin-top: 15rem !important;
  }
  .mt-sm-20 {
    margin-top: 20rem !important;
  }
  .mt-sm-25 {
    margin-top: 25rem !important;
  }
  .mt-sm-30 {
    margin-top: 30rem !important;
  }
  .mt-sm-35 {
    margin-top: 35rem !important;
  }
  .mt-sm-40 {
    margin-top: 40rem !important;
  }
  .mt-sm-45 {
    margin-top: 45rem !important;
  }
  .mt-sm-50 {
    margin-top: 50rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-sm-1 {
    margin-right: 1rem !important;
  }
  .me-sm-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-sm-2 {
    margin-right: 2rem !important;
  }
  .me-sm-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-sm-3 {
    margin-right: 3rem !important;
  }
  .me-sm-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-sm-4 {
    margin-right: 4rem !important;
  }
  .me-sm-5 {
    margin-right: 5rem !important;
  }
  .me-sm-6 {
    margin-right: 6rem !important;
  }
  .me-sm-7 {
    margin-right: 7rem !important;
  }
  .me-sm-8 {
    margin-right: 8rem !important;
  }
  .me-sm-9 {
    margin-right: 9rem !important;
  }
  .me-sm-10 {
    margin-right: 10rem !important;
  }
  .me-sm-13 {
    margin-right: 13rem !important;
  }
  .me-sm-15 {
    margin-right: 15rem !important;
  }
  .me-sm-20 {
    margin-right: 20rem !important;
  }
  .me-sm-25 {
    margin-right: 25rem !important;
  }
  .me-sm-30 {
    margin-right: 30rem !important;
  }
  .me-sm-35 {
    margin-right: 35rem !important;
  }
  .me-sm-40 {
    margin-right: 40rem !important;
  }
  .me-sm-45 {
    margin-right: 45rem !important;
  }
  .me-sm-50 {
    margin-right: 50rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 5rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 7rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 8rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 9rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 10rem !important;
  }
  .mb-sm-13 {
    margin-bottom: 13rem !important;
  }
  .mb-sm-15 {
    margin-bottom: 15rem !important;
  }
  .mb-sm-20 {
    margin-bottom: 20rem !important;
  }
  .mb-sm-25 {
    margin-bottom: 25rem !important;
  }
  .mb-sm-30 {
    margin-bottom: 30rem !important;
  }
  .mb-sm-35 {
    margin-bottom: 35rem !important;
  }
  .mb-sm-40 {
    margin-bottom: 40rem !important;
  }
  .mb-sm-45 {
    margin-bottom: 45rem !important;
  }
  .mb-sm-50 {
    margin-bottom: 50rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-1 {
    margin-left: 1rem !important;
  }
  .ms-sm-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-2 {
    margin-left: 2rem !important;
  }
  .ms-sm-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 3rem !important;
  }
  .ms-sm-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-sm-4 {
    margin-left: 4rem !important;
  }
  .ms-sm-5 {
    margin-left: 5rem !important;
  }
  .ms-sm-6 {
    margin-left: 6rem !important;
  }
  .ms-sm-7 {
    margin-left: 7rem !important;
  }
  .ms-sm-8 {
    margin-left: 8rem !important;
  }
  .ms-sm-9 {
    margin-left: 9rem !important;
  }
  .ms-sm-10 {
    margin-left: 10rem !important;
  }
  .ms-sm-13 {
    margin-left: 13rem !important;
  }
  .ms-sm-15 {
    margin-left: 15rem !important;
  }
  .ms-sm-20 {
    margin-left: 20rem !important;
  }
  .ms-sm-25 {
    margin-left: 25rem !important;
  }
  .ms-sm-30 {
    margin-left: 30rem !important;
  }
  .ms-sm-35 {
    margin-left: 35rem !important;
  }
  .ms-sm-40 {
    margin-left: 40rem !important;
  }
  .ms-sm-45 {
    margin-left: 45rem !important;
  }
  .ms-sm-50 {
    margin-left: 50rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .m-sm-n0_5 {
    margin: -0.5rem !important;
  }
  .m-sm-n1 {
    margin: -1rem !important;
  }
  .m-sm-n1_5 {
    margin: -1.5rem !important;
  }
  .m-sm-n2 {
    margin: -2rem !important;
  }
  .m-sm-n2_5 {
    margin: -2.5rem !important;
  }
  .m-sm-n3 {
    margin: -3rem !important;
  }
  .m-sm-n3_5 {
    margin: -3.5rem !important;
  }
  .m-sm-n4 {
    margin: -4rem !important;
  }
  .m-sm-n5 {
    margin: -5rem !important;
  }
  .m-sm-n6 {
    margin: -6rem !important;
  }
  .m-sm-n7 {
    margin: -7rem !important;
  }
  .m-sm-n8 {
    margin: -8rem !important;
  }
  .m-sm-n9 {
    margin: -9rem !important;
  }
  .m-sm-n10 {
    margin: -10rem !important;
  }
  .m-sm-n13 {
    margin: -13rem !important;
  }
  .m-sm-n15 {
    margin: -15rem !important;
  }
  .m-sm-n20 {
    margin: -20rem !important;
  }
  .m-sm-n25 {
    margin: -25rem !important;
  }
  .m-sm-n30 {
    margin: -30rem !important;
  }
  .m-sm-n35 {
    margin: -35rem !important;
  }
  .m-sm-n40 {
    margin: -40rem !important;
  }
  .m-sm-n45 {
    margin: -45rem !important;
  }
  .m-sm-n50 {
    margin: -50rem !important;
  }
  .mx-sm-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-sm-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-sm-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-sm-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-sm-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-sm-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-sm-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-sm-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-sm-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-sm-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-sm-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-sm-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-sm-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-sm-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-sm-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-sm-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-sm-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-sm-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-sm-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-sm-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-sm-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-sm-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-sm-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-sm-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-sm-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-sm-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-sm-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-sm-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-sm-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-sm-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-sm-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-sm-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-sm-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-sm-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-sm-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-sm-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-sm-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-sm-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-sm-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-sm-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-sm-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-sm-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-sm-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-sm-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-sm-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-sm-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-sm-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-sm-n1 {
    margin-top: -1rem !important;
  }
  .mt-sm-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-sm-n2 {
    margin-top: -2rem !important;
  }
  .mt-sm-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-sm-n3 {
    margin-top: -3rem !important;
  }
  .mt-sm-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-sm-n4 {
    margin-top: -4rem !important;
  }
  .mt-sm-n5 {
    margin-top: -5rem !important;
  }
  .mt-sm-n6 {
    margin-top: -6rem !important;
  }
  .mt-sm-n7 {
    margin-top: -7rem !important;
  }
  .mt-sm-n8 {
    margin-top: -8rem !important;
  }
  .mt-sm-n9 {
    margin-top: -9rem !important;
  }
  .mt-sm-n10 {
    margin-top: -10rem !important;
  }
  .mt-sm-n13 {
    margin-top: -13rem !important;
  }
  .mt-sm-n15 {
    margin-top: -15rem !important;
  }
  .mt-sm-n20 {
    margin-top: -20rem !important;
  }
  .mt-sm-n25 {
    margin-top: -25rem !important;
  }
  .mt-sm-n30 {
    margin-top: -30rem !important;
  }
  .mt-sm-n35 {
    margin-top: -35rem !important;
  }
  .mt-sm-n40 {
    margin-top: -40rem !important;
  }
  .mt-sm-n45 {
    margin-top: -45rem !important;
  }
  .mt-sm-n50 {
    margin-top: -50rem !important;
  }
  .me-sm-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-sm-n1 {
    margin-right: -1rem !important;
  }
  .me-sm-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-sm-n2 {
    margin-right: -2rem !important;
  }
  .me-sm-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-sm-n3 {
    margin-right: -3rem !important;
  }
  .me-sm-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-sm-n4 {
    margin-right: -4rem !important;
  }
  .me-sm-n5 {
    margin-right: -5rem !important;
  }
  .me-sm-n6 {
    margin-right: -6rem !important;
  }
  .me-sm-n7 {
    margin-right: -7rem !important;
  }
  .me-sm-n8 {
    margin-right: -8rem !important;
  }
  .me-sm-n9 {
    margin-right: -9rem !important;
  }
  .me-sm-n10 {
    margin-right: -10rem !important;
  }
  .me-sm-n13 {
    margin-right: -13rem !important;
  }
  .me-sm-n15 {
    margin-right: -15rem !important;
  }
  .me-sm-n20 {
    margin-right: -20rem !important;
  }
  .me-sm-n25 {
    margin-right: -25rem !important;
  }
  .me-sm-n30 {
    margin-right: -30rem !important;
  }
  .me-sm-n35 {
    margin-right: -35rem !important;
  }
  .me-sm-n40 {
    margin-right: -40rem !important;
  }
  .me-sm-n45 {
    margin-right: -45rem !important;
  }
  .me-sm-n50 {
    margin-right: -50rem !important;
  }
  .mb-sm-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-sm-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-sm-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-sm-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-sm-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-sm-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-sm-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-sm-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-sm-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-sm-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-sm-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-sm-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-sm-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-sm-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-sm-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-sm-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-sm-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-sm-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-sm-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-sm-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-sm-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-sm-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-sm-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-sm-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-sm-n1 {
    margin-left: -1rem !important;
  }
  .ms-sm-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-sm-n2 {
    margin-left: -2rem !important;
  }
  .ms-sm-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-sm-n3 {
    margin-left: -3rem !important;
  }
  .ms-sm-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-sm-n4 {
    margin-left: -4rem !important;
  }
  .ms-sm-n5 {
    margin-left: -5rem !important;
  }
  .ms-sm-n6 {
    margin-left: -6rem !important;
  }
  .ms-sm-n7 {
    margin-left: -7rem !important;
  }
  .ms-sm-n8 {
    margin-left: -8rem !important;
  }
  .ms-sm-n9 {
    margin-left: -9rem !important;
  }
  .ms-sm-n10 {
    margin-left: -10rem !important;
  }
  .ms-sm-n13 {
    margin-left: -13rem !important;
  }
  .ms-sm-n15 {
    margin-left: -15rem !important;
  }
  .ms-sm-n20 {
    margin-left: -20rem !important;
  }
  .ms-sm-n25 {
    margin-left: -25rem !important;
  }
  .ms-sm-n30 {
    margin-left: -30rem !important;
  }
  .ms-sm-n35 {
    margin-left: -35rem !important;
  }
  .ms-sm-n40 {
    margin-left: -40rem !important;
  }
  .ms-sm-n45 {
    margin-left: -45rem !important;
  }
  .ms-sm-n50 {
    margin-left: -50rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-0_5 {
    padding: 0.5rem !important;
  }
  .p-sm-1 {
    padding: 1rem !important;
  }
  .p-sm-1_5 {
    padding: 1.5rem !important;
  }
  .p-sm-2 {
    padding: 2rem !important;
  }
  .p-sm-2_5 {
    padding: 2.5rem !important;
  }
  .p-sm-3 {
    padding: 3rem !important;
  }
  .p-sm-3_5 {
    padding: 3.5rem !important;
  }
  .p-sm-4 {
    padding: 4rem !important;
  }
  .p-sm-5 {
    padding: 5rem !important;
  }
  .p-sm-6 {
    padding: 6rem !important;
  }
  .p-sm-7 {
    padding: 7rem !important;
  }
  .p-sm-8 {
    padding: 8rem !important;
  }
  .p-sm-9 {
    padding: 9rem !important;
  }
  .p-sm-10 {
    padding: 10rem !important;
  }
  .p-sm-13 {
    padding: 13rem !important;
  }
  .p-sm-15 {
    padding: 15rem !important;
  }
  .p-sm-20 {
    padding: 20rem !important;
  }
  .p-sm-25 {
    padding: 25rem !important;
  }
  .p-sm-30 {
    padding: 30rem !important;
  }
  .p-sm-35 {
    padding: 35rem !important;
  }
  .p-sm-40 {
    padding: 40rem !important;
  }
  .p-sm-45 {
    padding: 45rem !important;
  }
  .p-sm-50 {
    padding: 50rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sm-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-sm-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-sm-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-sm-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-sm-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-sm-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-sm-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-sm-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-sm-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-sm-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-sm-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-sm-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-sm-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-sm-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-sm-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-sm-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-sm-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-sm-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-sm-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-sm-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-sm-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-sm-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-sm-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-sm-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-sm-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-sm-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-sm-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-sm-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-sm-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-sm-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-sm-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-sm-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-sm-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-1 {
    padding-top: 1rem !important;
  }
  .pt-sm-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-2 {
    padding-top: 2rem !important;
  }
  .pt-sm-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 3rem !important;
  }
  .pt-sm-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-sm-4 {
    padding-top: 4rem !important;
  }
  .pt-sm-5 {
    padding-top: 5rem !important;
  }
  .pt-sm-6 {
    padding-top: 6rem !important;
  }
  .pt-sm-7 {
    padding-top: 7rem !important;
  }
  .pt-sm-8 {
    padding-top: 8rem !important;
  }
  .pt-sm-9 {
    padding-top: 9rem !important;
  }
  .pt-sm-10 {
    padding-top: 10rem !important;
  }
  .pt-sm-13 {
    padding-top: 13rem !important;
  }
  .pt-sm-15 {
    padding-top: 15rem !important;
  }
  .pt-sm-20 {
    padding-top: 20rem !important;
  }
  .pt-sm-25 {
    padding-top: 25rem !important;
  }
  .pt-sm-30 {
    padding-top: 30rem !important;
  }
  .pt-sm-35 {
    padding-top: 35rem !important;
  }
  .pt-sm-40 {
    padding-top: 40rem !important;
  }
  .pt-sm-45 {
    padding-top: 45rem !important;
  }
  .pt-sm-50 {
    padding-top: 50rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-1 {
    padding-right: 1rem !important;
  }
  .pe-sm-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-2 {
    padding-right: 2rem !important;
  }
  .pe-sm-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 3rem !important;
  }
  .pe-sm-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-sm-4 {
    padding-right: 4rem !important;
  }
  .pe-sm-5 {
    padding-right: 5rem !important;
  }
  .pe-sm-6 {
    padding-right: 6rem !important;
  }
  .pe-sm-7 {
    padding-right: 7rem !important;
  }
  .pe-sm-8 {
    padding-right: 8rem !important;
  }
  .pe-sm-9 {
    padding-right: 9rem !important;
  }
  .pe-sm-10 {
    padding-right: 10rem !important;
  }
  .pe-sm-13 {
    padding-right: 13rem !important;
  }
  .pe-sm-15 {
    padding-right: 15rem !important;
  }
  .pe-sm-20 {
    padding-right: 20rem !important;
  }
  .pe-sm-25 {
    padding-right: 25rem !important;
  }
  .pe-sm-30 {
    padding-right: 30rem !important;
  }
  .pe-sm-35 {
    padding-right: 35rem !important;
  }
  .pe-sm-40 {
    padding-right: 40rem !important;
  }
  .pe-sm-45 {
    padding-right: 45rem !important;
  }
  .pe-sm-50 {
    padding-right: 50rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 4rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 5rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 6rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 7rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 8rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 9rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 10rem !important;
  }
  .pb-sm-13 {
    padding-bottom: 13rem !important;
  }
  .pb-sm-15 {
    padding-bottom: 15rem !important;
  }
  .pb-sm-20 {
    padding-bottom: 20rem !important;
  }
  .pb-sm-25 {
    padding-bottom: 25rem !important;
  }
  .pb-sm-30 {
    padding-bottom: 30rem !important;
  }
  .pb-sm-35 {
    padding-bottom: 35rem !important;
  }
  .pb-sm-40 {
    padding-bottom: 40rem !important;
  }
  .pb-sm-45 {
    padding-bottom: 45rem !important;
  }
  .pb-sm-50 {
    padding-bottom: 50rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-1 {
    padding-left: 1rem !important;
  }
  .ps-sm-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-2 {
    padding-left: 2rem !important;
  }
  .ps-sm-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 3rem !important;
  }
  .ps-sm-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-sm-4 {
    padding-left: 4rem !important;
  }
  .ps-sm-5 {
    padding-left: 5rem !important;
  }
  .ps-sm-6 {
    padding-left: 6rem !important;
  }
  .ps-sm-7 {
    padding-left: 7rem !important;
  }
  .ps-sm-8 {
    padding-left: 8rem !important;
  }
  .ps-sm-9 {
    padding-left: 9rem !important;
  }
  .ps-sm-10 {
    padding-left: 10rem !important;
  }
  .ps-sm-13 {
    padding-left: 13rem !important;
  }
  .ps-sm-15 {
    padding-left: 15rem !important;
  }
  .ps-sm-20 {
    padding-left: 20rem !important;
  }
  .ps-sm-25 {
    padding-left: 25rem !important;
  }
  .ps-sm-30 {
    padding-left: 30rem !important;
  }
  .ps-sm-35 {
    padding-left: 35rem !important;
  }
  .ps-sm-40 {
    padding-left: 40rem !important;
  }
  .ps-sm-45 {
    padding-left: 45rem !important;
  }
  .ps-sm-50 {
    padding-left: 50rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-0_5 {
    margin: 0.5rem !important;
  }
  .m-md-1 {
    margin: 1rem !important;
  }
  .m-md-1_5 {
    margin: 1.5rem !important;
  }
  .m-md-2 {
    margin: 2rem !important;
  }
  .m-md-2_5 {
    margin: 2.5rem !important;
  }
  .m-md-3 {
    margin: 3rem !important;
  }
  .m-md-3_5 {
    margin: 3.5rem !important;
  }
  .m-md-4 {
    margin: 4rem !important;
  }
  .m-md-5 {
    margin: 5rem !important;
  }
  .m-md-6 {
    margin: 6rem !important;
  }
  .m-md-7 {
    margin: 7rem !important;
  }
  .m-md-8 {
    margin: 8rem !important;
  }
  .m-md-9 {
    margin: 9rem !important;
  }
  .m-md-10 {
    margin: 10rem !important;
  }
  .m-md-13 {
    margin: 13rem !important;
  }
  .m-md-15 {
    margin: 15rem !important;
  }
  .m-md-20 {
    margin: 20rem !important;
  }
  .m-md-25 {
    margin: 25rem !important;
  }
  .m-md-30 {
    margin: 30rem !important;
  }
  .m-md-35 {
    margin: 35rem !important;
  }
  .m-md-40 {
    margin: 40rem !important;
  }
  .m-md-45 {
    margin: 45rem !important;
  }
  .m-md-50 {
    margin: 50rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-md-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-md-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-md-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-md-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-md-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-md-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-md-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-md-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-md-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-md-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-md-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-md-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-md-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-md-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-md-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-md-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-md-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-md-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-md-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-md-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-md-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-md-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-md-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-md-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-md-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-md-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-md-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-md-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-md-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-md-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-md-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-md-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-md-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-md-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-md-1 {
    margin-top: 1rem !important;
  }
  .mt-md-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-md-2 {
    margin-top: 2rem !important;
  }
  .mt-md-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-md-3 {
    margin-top: 3rem !important;
  }
  .mt-md-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-md-4 {
    margin-top: 4rem !important;
  }
  .mt-md-5 {
    margin-top: 5rem !important;
  }
  .mt-md-6 {
    margin-top: 6rem !important;
  }
  .mt-md-7 {
    margin-top: 7rem !important;
  }
  .mt-md-8 {
    margin-top: 8rem !important;
  }
  .mt-md-9 {
    margin-top: 9rem !important;
  }
  .mt-md-10 {
    margin-top: 10rem !important;
  }
  .mt-md-13 {
    margin-top: 13rem !important;
  }
  .mt-md-15 {
    margin-top: 15rem !important;
  }
  .mt-md-20 {
    margin-top: 20rem !important;
  }
  .mt-md-25 {
    margin-top: 25rem !important;
  }
  .mt-md-30 {
    margin-top: 30rem !important;
  }
  .mt-md-35 {
    margin-top: 35rem !important;
  }
  .mt-md-40 {
    margin-top: 40rem !important;
  }
  .mt-md-45 {
    margin-top: 45rem !important;
  }
  .mt-md-50 {
    margin-top: 50rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-md-1 {
    margin-right: 1rem !important;
  }
  .me-md-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-md-2 {
    margin-right: 2rem !important;
  }
  .me-md-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-md-3 {
    margin-right: 3rem !important;
  }
  .me-md-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-md-4 {
    margin-right: 4rem !important;
  }
  .me-md-5 {
    margin-right: 5rem !important;
  }
  .me-md-6 {
    margin-right: 6rem !important;
  }
  .me-md-7 {
    margin-right: 7rem !important;
  }
  .me-md-8 {
    margin-right: 8rem !important;
  }
  .me-md-9 {
    margin-right: 9rem !important;
  }
  .me-md-10 {
    margin-right: 10rem !important;
  }
  .me-md-13 {
    margin-right: 13rem !important;
  }
  .me-md-15 {
    margin-right: 15rem !important;
  }
  .me-md-20 {
    margin-right: 20rem !important;
  }
  .me-md-25 {
    margin-right: 25rem !important;
  }
  .me-md-30 {
    margin-right: 30rem !important;
  }
  .me-md-35 {
    margin-right: 35rem !important;
  }
  .me-md-40 {
    margin-right: 40rem !important;
  }
  .me-md-45 {
    margin-right: 45rem !important;
  }
  .me-md-50 {
    margin-right: 50rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-1 {
    margin-bottom: 1rem !important;
  }
  .mb-md-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-2 {
    margin-bottom: 2rem !important;
  }
  .mb-md-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 3rem !important;
  }
  .mb-md-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-md-4 {
    margin-bottom: 4rem !important;
  }
  .mb-md-5 {
    margin-bottom: 5rem !important;
  }
  .mb-md-6 {
    margin-bottom: 6rem !important;
  }
  .mb-md-7 {
    margin-bottom: 7rem !important;
  }
  .mb-md-8 {
    margin-bottom: 8rem !important;
  }
  .mb-md-9 {
    margin-bottom: 9rem !important;
  }
  .mb-md-10 {
    margin-bottom: 10rem !important;
  }
  .mb-md-13 {
    margin-bottom: 13rem !important;
  }
  .mb-md-15 {
    margin-bottom: 15rem !important;
  }
  .mb-md-20 {
    margin-bottom: 20rem !important;
  }
  .mb-md-25 {
    margin-bottom: 25rem !important;
  }
  .mb-md-30 {
    margin-bottom: 30rem !important;
  }
  .mb-md-35 {
    margin-bottom: 35rem !important;
  }
  .mb-md-40 {
    margin-bottom: 40rem !important;
  }
  .mb-md-45 {
    margin-bottom: 45rem !important;
  }
  .mb-md-50 {
    margin-bottom: 50rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-md-1 {
    margin-left: 1rem !important;
  }
  .ms-md-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-md-2 {
    margin-left: 2rem !important;
  }
  .ms-md-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-md-3 {
    margin-left: 3rem !important;
  }
  .ms-md-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-md-4 {
    margin-left: 4rem !important;
  }
  .ms-md-5 {
    margin-left: 5rem !important;
  }
  .ms-md-6 {
    margin-left: 6rem !important;
  }
  .ms-md-7 {
    margin-left: 7rem !important;
  }
  .ms-md-8 {
    margin-left: 8rem !important;
  }
  .ms-md-9 {
    margin-left: 9rem !important;
  }
  .ms-md-10 {
    margin-left: 10rem !important;
  }
  .ms-md-13 {
    margin-left: 13rem !important;
  }
  .ms-md-15 {
    margin-left: 15rem !important;
  }
  .ms-md-20 {
    margin-left: 20rem !important;
  }
  .ms-md-25 {
    margin-left: 25rem !important;
  }
  .ms-md-30 {
    margin-left: 30rem !important;
  }
  .ms-md-35 {
    margin-left: 35rem !important;
  }
  .ms-md-40 {
    margin-left: 40rem !important;
  }
  .ms-md-45 {
    margin-left: 45rem !important;
  }
  .ms-md-50 {
    margin-left: 50rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .m-md-n0_5 {
    margin: -0.5rem !important;
  }
  .m-md-n1 {
    margin: -1rem !important;
  }
  .m-md-n1_5 {
    margin: -1.5rem !important;
  }
  .m-md-n2 {
    margin: -2rem !important;
  }
  .m-md-n2_5 {
    margin: -2.5rem !important;
  }
  .m-md-n3 {
    margin: -3rem !important;
  }
  .m-md-n3_5 {
    margin: -3.5rem !important;
  }
  .m-md-n4 {
    margin: -4rem !important;
  }
  .m-md-n5 {
    margin: -5rem !important;
  }
  .m-md-n6 {
    margin: -6rem !important;
  }
  .m-md-n7 {
    margin: -7rem !important;
  }
  .m-md-n8 {
    margin: -8rem !important;
  }
  .m-md-n9 {
    margin: -9rem !important;
  }
  .m-md-n10 {
    margin: -10rem !important;
  }
  .m-md-n13 {
    margin: -13rem !important;
  }
  .m-md-n15 {
    margin: -15rem !important;
  }
  .m-md-n20 {
    margin: -20rem !important;
  }
  .m-md-n25 {
    margin: -25rem !important;
  }
  .m-md-n30 {
    margin: -30rem !important;
  }
  .m-md-n35 {
    margin: -35rem !important;
  }
  .m-md-n40 {
    margin: -40rem !important;
  }
  .m-md-n45 {
    margin: -45rem !important;
  }
  .m-md-n50 {
    margin: -50rem !important;
  }
  .mx-md-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-md-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-md-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-md-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-md-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-md-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-md-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-md-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-md-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-md-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-md-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-md-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-md-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-md-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-md-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-md-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-md-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-md-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-md-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-md-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-md-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-md-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-md-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-md-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-md-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-md-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-md-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-md-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-md-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-md-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-md-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-md-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-md-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-md-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-md-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-md-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-md-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-md-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-md-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-md-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-md-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-md-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-md-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-md-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-md-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-md-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-md-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-md-n1 {
    margin-top: -1rem !important;
  }
  .mt-md-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-md-n2 {
    margin-top: -2rem !important;
  }
  .mt-md-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-md-n3 {
    margin-top: -3rem !important;
  }
  .mt-md-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-md-n4 {
    margin-top: -4rem !important;
  }
  .mt-md-n5 {
    margin-top: -5rem !important;
  }
  .mt-md-n6 {
    margin-top: -6rem !important;
  }
  .mt-md-n7 {
    margin-top: -7rem !important;
  }
  .mt-md-n8 {
    margin-top: -8rem !important;
  }
  .mt-md-n9 {
    margin-top: -9rem !important;
  }
  .mt-md-n10 {
    margin-top: -10rem !important;
  }
  .mt-md-n13 {
    margin-top: -13rem !important;
  }
  .mt-md-n15 {
    margin-top: -15rem !important;
  }
  .mt-md-n20 {
    margin-top: -20rem !important;
  }
  .mt-md-n25 {
    margin-top: -25rem !important;
  }
  .mt-md-n30 {
    margin-top: -30rem !important;
  }
  .mt-md-n35 {
    margin-top: -35rem !important;
  }
  .mt-md-n40 {
    margin-top: -40rem !important;
  }
  .mt-md-n45 {
    margin-top: -45rem !important;
  }
  .mt-md-n50 {
    margin-top: -50rem !important;
  }
  .me-md-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-md-n1 {
    margin-right: -1rem !important;
  }
  .me-md-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-md-n2 {
    margin-right: -2rem !important;
  }
  .me-md-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-md-n3 {
    margin-right: -3rem !important;
  }
  .me-md-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-md-n4 {
    margin-right: -4rem !important;
  }
  .me-md-n5 {
    margin-right: -5rem !important;
  }
  .me-md-n6 {
    margin-right: -6rem !important;
  }
  .me-md-n7 {
    margin-right: -7rem !important;
  }
  .me-md-n8 {
    margin-right: -8rem !important;
  }
  .me-md-n9 {
    margin-right: -9rem !important;
  }
  .me-md-n10 {
    margin-right: -10rem !important;
  }
  .me-md-n13 {
    margin-right: -13rem !important;
  }
  .me-md-n15 {
    margin-right: -15rem !important;
  }
  .me-md-n20 {
    margin-right: -20rem !important;
  }
  .me-md-n25 {
    margin-right: -25rem !important;
  }
  .me-md-n30 {
    margin-right: -30rem !important;
  }
  .me-md-n35 {
    margin-right: -35rem !important;
  }
  .me-md-n40 {
    margin-right: -40rem !important;
  }
  .me-md-n45 {
    margin-right: -45rem !important;
  }
  .me-md-n50 {
    margin-right: -50rem !important;
  }
  .mb-md-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-md-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-md-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-md-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-md-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-md-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-md-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-md-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-md-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-md-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-md-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-md-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-md-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-md-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-md-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-md-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-md-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-md-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-md-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-md-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-md-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-md-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-md-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-md-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-md-n1 {
    margin-left: -1rem !important;
  }
  .ms-md-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-md-n2 {
    margin-left: -2rem !important;
  }
  .ms-md-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-md-n3 {
    margin-left: -3rem !important;
  }
  .ms-md-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-md-n4 {
    margin-left: -4rem !important;
  }
  .ms-md-n5 {
    margin-left: -5rem !important;
  }
  .ms-md-n6 {
    margin-left: -6rem !important;
  }
  .ms-md-n7 {
    margin-left: -7rem !important;
  }
  .ms-md-n8 {
    margin-left: -8rem !important;
  }
  .ms-md-n9 {
    margin-left: -9rem !important;
  }
  .ms-md-n10 {
    margin-left: -10rem !important;
  }
  .ms-md-n13 {
    margin-left: -13rem !important;
  }
  .ms-md-n15 {
    margin-left: -15rem !important;
  }
  .ms-md-n20 {
    margin-left: -20rem !important;
  }
  .ms-md-n25 {
    margin-left: -25rem !important;
  }
  .ms-md-n30 {
    margin-left: -30rem !important;
  }
  .ms-md-n35 {
    margin-left: -35rem !important;
  }
  .ms-md-n40 {
    margin-left: -40rem !important;
  }
  .ms-md-n45 {
    margin-left: -45rem !important;
  }
  .ms-md-n50 {
    margin-left: -50rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-0_5 {
    padding: 0.5rem !important;
  }
  .p-md-1 {
    padding: 1rem !important;
  }
  .p-md-1_5 {
    padding: 1.5rem !important;
  }
  .p-md-2 {
    padding: 2rem !important;
  }
  .p-md-2_5 {
    padding: 2.5rem !important;
  }
  .p-md-3 {
    padding: 3rem !important;
  }
  .p-md-3_5 {
    padding: 3.5rem !important;
  }
  .p-md-4 {
    padding: 4rem !important;
  }
  .p-md-5 {
    padding: 5rem !important;
  }
  .p-md-6 {
    padding: 6rem !important;
  }
  .p-md-7 {
    padding: 7rem !important;
  }
  .p-md-8 {
    padding: 8rem !important;
  }
  .p-md-9 {
    padding: 9rem !important;
  }
  .p-md-10 {
    padding: 10rem !important;
  }
  .p-md-13 {
    padding: 13rem !important;
  }
  .p-md-15 {
    padding: 15rem !important;
  }
  .p-md-20 {
    padding: 20rem !important;
  }
  .p-md-25 {
    padding: 25rem !important;
  }
  .p-md-30 {
    padding: 30rem !important;
  }
  .p-md-35 {
    padding: 35rem !important;
  }
  .p-md-40 {
    padding: 40rem !important;
  }
  .p-md-45 {
    padding: 45rem !important;
  }
  .p-md-50 {
    padding: 50rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-md-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-md-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-md-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-md-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-md-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-md-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-md-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-md-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-md-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-md-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-md-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-md-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-md-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-md-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-md-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-md-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-md-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-md-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-md-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-md-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-md-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-md-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-md-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-md-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-md-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-md-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-md-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-md-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-md-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-md-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-md-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-md-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-md-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-md-1 {
    padding-top: 1rem !important;
  }
  .pt-md-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-md-2 {
    padding-top: 2rem !important;
  }
  .pt-md-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-md-3 {
    padding-top: 3rem !important;
  }
  .pt-md-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-md-4 {
    padding-top: 4rem !important;
  }
  .pt-md-5 {
    padding-top: 5rem !important;
  }
  .pt-md-6 {
    padding-top: 6rem !important;
  }
  .pt-md-7 {
    padding-top: 7rem !important;
  }
  .pt-md-8 {
    padding-top: 8rem !important;
  }
  .pt-md-9 {
    padding-top: 9rem !important;
  }
  .pt-md-10 {
    padding-top: 10rem !important;
  }
  .pt-md-13 {
    padding-top: 13rem !important;
  }
  .pt-md-15 {
    padding-top: 15rem !important;
  }
  .pt-md-20 {
    padding-top: 20rem !important;
  }
  .pt-md-25 {
    padding-top: 25rem !important;
  }
  .pt-md-30 {
    padding-top: 30rem !important;
  }
  .pt-md-35 {
    padding-top: 35rem !important;
  }
  .pt-md-40 {
    padding-top: 40rem !important;
  }
  .pt-md-45 {
    padding-top: 45rem !important;
  }
  .pt-md-50 {
    padding-top: 50rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-md-1 {
    padding-right: 1rem !important;
  }
  .pe-md-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-md-2 {
    padding-right: 2rem !important;
  }
  .pe-md-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-md-3 {
    padding-right: 3rem !important;
  }
  .pe-md-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-md-4 {
    padding-right: 4rem !important;
  }
  .pe-md-5 {
    padding-right: 5rem !important;
  }
  .pe-md-6 {
    padding-right: 6rem !important;
  }
  .pe-md-7 {
    padding-right: 7rem !important;
  }
  .pe-md-8 {
    padding-right: 8rem !important;
  }
  .pe-md-9 {
    padding-right: 9rem !important;
  }
  .pe-md-10 {
    padding-right: 10rem !important;
  }
  .pe-md-13 {
    padding-right: 13rem !important;
  }
  .pe-md-15 {
    padding-right: 15rem !important;
  }
  .pe-md-20 {
    padding-right: 20rem !important;
  }
  .pe-md-25 {
    padding-right: 25rem !important;
  }
  .pe-md-30 {
    padding-right: 30rem !important;
  }
  .pe-md-35 {
    padding-right: 35rem !important;
  }
  .pe-md-40 {
    padding-right: 40rem !important;
  }
  .pe-md-45 {
    padding-right: 45rem !important;
  }
  .pe-md-50 {
    padding-right: 50rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-1 {
    padding-bottom: 1rem !important;
  }
  .pb-md-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-2 {
    padding-bottom: 2rem !important;
  }
  .pb-md-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 3rem !important;
  }
  .pb-md-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-md-4 {
    padding-bottom: 4rem !important;
  }
  .pb-md-5 {
    padding-bottom: 5rem !important;
  }
  .pb-md-6 {
    padding-bottom: 6rem !important;
  }
  .pb-md-7 {
    padding-bottom: 7rem !important;
  }
  .pb-md-8 {
    padding-bottom: 8rem !important;
  }
  .pb-md-9 {
    padding-bottom: 9rem !important;
  }
  .pb-md-10 {
    padding-bottom: 10rem !important;
  }
  .pb-md-13 {
    padding-bottom: 13rem !important;
  }
  .pb-md-15 {
    padding-bottom: 15rem !important;
  }
  .pb-md-20 {
    padding-bottom: 20rem !important;
  }
  .pb-md-25 {
    padding-bottom: 25rem !important;
  }
  .pb-md-30 {
    padding-bottom: 30rem !important;
  }
  .pb-md-35 {
    padding-bottom: 35rem !important;
  }
  .pb-md-40 {
    padding-bottom: 40rem !important;
  }
  .pb-md-45 {
    padding-bottom: 45rem !important;
  }
  .pb-md-50 {
    padding-bottom: 50rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-md-1 {
    padding-left: 1rem !important;
  }
  .ps-md-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-md-2 {
    padding-left: 2rem !important;
  }
  .ps-md-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-md-3 {
    padding-left: 3rem !important;
  }
  .ps-md-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-md-4 {
    padding-left: 4rem !important;
  }
  .ps-md-5 {
    padding-left: 5rem !important;
  }
  .ps-md-6 {
    padding-left: 6rem !important;
  }
  .ps-md-7 {
    padding-left: 7rem !important;
  }
  .ps-md-8 {
    padding-left: 8rem !important;
  }
  .ps-md-9 {
    padding-left: 9rem !important;
  }
  .ps-md-10 {
    padding-left: 10rem !important;
  }
  .ps-md-13 {
    padding-left: 13rem !important;
  }
  .ps-md-15 {
    padding-left: 15rem !important;
  }
  .ps-md-20 {
    padding-left: 20rem !important;
  }
  .ps-md-25 {
    padding-left: 25rem !important;
  }
  .ps-md-30 {
    padding-left: 30rem !important;
  }
  .ps-md-35 {
    padding-left: 35rem !important;
  }
  .ps-md-40 {
    padding-left: 40rem !important;
  }
  .ps-md-45 {
    padding-left: 45rem !important;
  }
  .ps-md-50 {
    padding-left: 50rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-0_5 {
    margin: 0.5rem !important;
  }
  .m-lg-1 {
    margin: 1rem !important;
  }
  .m-lg-1_5 {
    margin: 1.5rem !important;
  }
  .m-lg-2 {
    margin: 2rem !important;
  }
  .m-lg-2_5 {
    margin: 2.5rem !important;
  }
  .m-lg-3 {
    margin: 3rem !important;
  }
  .m-lg-3_5 {
    margin: 3.5rem !important;
  }
  .m-lg-4 {
    margin: 4rem !important;
  }
  .m-lg-5 {
    margin: 5rem !important;
  }
  .m-lg-6 {
    margin: 6rem !important;
  }
  .m-lg-7 {
    margin: 7rem !important;
  }
  .m-lg-8 {
    margin: 8rem !important;
  }
  .m-lg-9 {
    margin: 9rem !important;
  }
  .m-lg-10 {
    margin: 10rem !important;
  }
  .m-lg-13 {
    margin: 13rem !important;
  }
  .m-lg-15 {
    margin: 15rem !important;
  }
  .m-lg-20 {
    margin: 20rem !important;
  }
  .m-lg-25 {
    margin: 25rem !important;
  }
  .m-lg-30 {
    margin: 30rem !important;
  }
  .m-lg-35 {
    margin: 35rem !important;
  }
  .m-lg-40 {
    margin: 40rem !important;
  }
  .m-lg-45 {
    margin: 45rem !important;
  }
  .m-lg-50 {
    margin: 50rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-lg-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-lg-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-lg-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-lg-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-lg-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-lg-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-lg-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-lg-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-lg-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-lg-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-lg-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-lg-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-lg-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-lg-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-lg-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-lg-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-lg-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-lg-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-lg-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-lg-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-lg-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-lg-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-lg-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-lg-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-lg-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-lg-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-lg-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-lg-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-lg-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-lg-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-lg-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-lg-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-lg-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-1 {
    margin-top: 1rem !important;
  }
  .mt-lg-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-2 {
    margin-top: 2rem !important;
  }
  .mt-lg-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 3rem !important;
  }
  .mt-lg-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-lg-4 {
    margin-top: 4rem !important;
  }
  .mt-lg-5 {
    margin-top: 5rem !important;
  }
  .mt-lg-6 {
    margin-top: 6rem !important;
  }
  .mt-lg-7 {
    margin-top: 7rem !important;
  }
  .mt-lg-8 {
    margin-top: 8rem !important;
  }
  .mt-lg-9 {
    margin-top: 9rem !important;
  }
  .mt-lg-10 {
    margin-top: 10rem !important;
  }
  .mt-lg-13 {
    margin-top: 13rem !important;
  }
  .mt-lg-15 {
    margin-top: 15rem !important;
  }
  .mt-lg-20 {
    margin-top: 20rem !important;
  }
  .mt-lg-25 {
    margin-top: 25rem !important;
  }
  .mt-lg-30 {
    margin-top: 30rem !important;
  }
  .mt-lg-35 {
    margin-top: 35rem !important;
  }
  .mt-lg-40 {
    margin-top: 40rem !important;
  }
  .mt-lg-45 {
    margin-top: 45rem !important;
  }
  .mt-lg-50 {
    margin-top: 50rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-lg-1 {
    margin-right: 1rem !important;
  }
  .me-lg-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-lg-2 {
    margin-right: 2rem !important;
  }
  .me-lg-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-lg-3 {
    margin-right: 3rem !important;
  }
  .me-lg-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-lg-4 {
    margin-right: 4rem !important;
  }
  .me-lg-5 {
    margin-right: 5rem !important;
  }
  .me-lg-6 {
    margin-right: 6rem !important;
  }
  .me-lg-7 {
    margin-right: 7rem !important;
  }
  .me-lg-8 {
    margin-right: 8rem !important;
  }
  .me-lg-9 {
    margin-right: 9rem !important;
  }
  .me-lg-10 {
    margin-right: 10rem !important;
  }
  .me-lg-13 {
    margin-right: 13rem !important;
  }
  .me-lg-15 {
    margin-right: 15rem !important;
  }
  .me-lg-20 {
    margin-right: 20rem !important;
  }
  .me-lg-25 {
    margin-right: 25rem !important;
  }
  .me-lg-30 {
    margin-right: 30rem !important;
  }
  .me-lg-35 {
    margin-right: 35rem !important;
  }
  .me-lg-40 {
    margin-right: 40rem !important;
  }
  .me-lg-45 {
    margin-right: 45rem !important;
  }
  .me-lg-50 {
    margin-right: 50rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 5rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 7rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 8rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 9rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 10rem !important;
  }
  .mb-lg-13 {
    margin-bottom: 13rem !important;
  }
  .mb-lg-15 {
    margin-bottom: 15rem !important;
  }
  .mb-lg-20 {
    margin-bottom: 20rem !important;
  }
  .mb-lg-25 {
    margin-bottom: 25rem !important;
  }
  .mb-lg-30 {
    margin-bottom: 30rem !important;
  }
  .mb-lg-35 {
    margin-bottom: 35rem !important;
  }
  .mb-lg-40 {
    margin-bottom: 40rem !important;
  }
  .mb-lg-45 {
    margin-bottom: 45rem !important;
  }
  .mb-lg-50 {
    margin-bottom: 50rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-1 {
    margin-left: 1rem !important;
  }
  .ms-lg-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-2 {
    margin-left: 2rem !important;
  }
  .ms-lg-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 3rem !important;
  }
  .ms-lg-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-lg-4 {
    margin-left: 4rem !important;
  }
  .ms-lg-5 {
    margin-left: 5rem !important;
  }
  .ms-lg-6 {
    margin-left: 6rem !important;
  }
  .ms-lg-7 {
    margin-left: 7rem !important;
  }
  .ms-lg-8 {
    margin-left: 8rem !important;
  }
  .ms-lg-9 {
    margin-left: 9rem !important;
  }
  .ms-lg-10 {
    margin-left: 10rem !important;
  }
  .ms-lg-13 {
    margin-left: 13rem !important;
  }
  .ms-lg-15 {
    margin-left: 15rem !important;
  }
  .ms-lg-20 {
    margin-left: 20rem !important;
  }
  .ms-lg-25 {
    margin-left: 25rem !important;
  }
  .ms-lg-30 {
    margin-left: 30rem !important;
  }
  .ms-lg-35 {
    margin-left: 35rem !important;
  }
  .ms-lg-40 {
    margin-left: 40rem !important;
  }
  .ms-lg-45 {
    margin-left: 45rem !important;
  }
  .ms-lg-50 {
    margin-left: 50rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .m-lg-n0_5 {
    margin: -0.5rem !important;
  }
  .m-lg-n1 {
    margin: -1rem !important;
  }
  .m-lg-n1_5 {
    margin: -1.5rem !important;
  }
  .m-lg-n2 {
    margin: -2rem !important;
  }
  .m-lg-n2_5 {
    margin: -2.5rem !important;
  }
  .m-lg-n3 {
    margin: -3rem !important;
  }
  .m-lg-n3_5 {
    margin: -3.5rem !important;
  }
  .m-lg-n4 {
    margin: -4rem !important;
  }
  .m-lg-n5 {
    margin: -5rem !important;
  }
  .m-lg-n6 {
    margin: -6rem !important;
  }
  .m-lg-n7 {
    margin: -7rem !important;
  }
  .m-lg-n8 {
    margin: -8rem !important;
  }
  .m-lg-n9 {
    margin: -9rem !important;
  }
  .m-lg-n10 {
    margin: -10rem !important;
  }
  .m-lg-n13 {
    margin: -13rem !important;
  }
  .m-lg-n15 {
    margin: -15rem !important;
  }
  .m-lg-n20 {
    margin: -20rem !important;
  }
  .m-lg-n25 {
    margin: -25rem !important;
  }
  .m-lg-n30 {
    margin: -30rem !important;
  }
  .m-lg-n35 {
    margin: -35rem !important;
  }
  .m-lg-n40 {
    margin: -40rem !important;
  }
  .m-lg-n45 {
    margin: -45rem !important;
  }
  .m-lg-n50 {
    margin: -50rem !important;
  }
  .mx-lg-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-lg-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-lg-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-lg-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-lg-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-lg-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-lg-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-lg-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-lg-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-lg-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-lg-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-lg-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-lg-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-lg-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-lg-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-lg-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-lg-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-lg-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-lg-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-lg-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-lg-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-lg-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-lg-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-lg-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-lg-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-lg-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-lg-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-lg-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-lg-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-lg-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-lg-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-lg-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-lg-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-lg-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-lg-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-lg-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-lg-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-lg-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-lg-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-lg-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-lg-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-lg-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-lg-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-lg-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-lg-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-lg-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-lg-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-lg-n1 {
    margin-top: -1rem !important;
  }
  .mt-lg-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-lg-n2 {
    margin-top: -2rem !important;
  }
  .mt-lg-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-lg-n3 {
    margin-top: -3rem !important;
  }
  .mt-lg-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-lg-n4 {
    margin-top: -4rem !important;
  }
  .mt-lg-n5 {
    margin-top: -5rem !important;
  }
  .mt-lg-n6 {
    margin-top: -6rem !important;
  }
  .mt-lg-n7 {
    margin-top: -7rem !important;
  }
  .mt-lg-n8 {
    margin-top: -8rem !important;
  }
  .mt-lg-n9 {
    margin-top: -9rem !important;
  }
  .mt-lg-n10 {
    margin-top: -10rem !important;
  }
  .mt-lg-n13 {
    margin-top: -13rem !important;
  }
  .mt-lg-n15 {
    margin-top: -15rem !important;
  }
  .mt-lg-n20 {
    margin-top: -20rem !important;
  }
  .mt-lg-n25 {
    margin-top: -25rem !important;
  }
  .mt-lg-n30 {
    margin-top: -30rem !important;
  }
  .mt-lg-n35 {
    margin-top: -35rem !important;
  }
  .mt-lg-n40 {
    margin-top: -40rem !important;
  }
  .mt-lg-n45 {
    margin-top: -45rem !important;
  }
  .mt-lg-n50 {
    margin-top: -50rem !important;
  }
  .me-lg-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-lg-n1 {
    margin-right: -1rem !important;
  }
  .me-lg-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-lg-n2 {
    margin-right: -2rem !important;
  }
  .me-lg-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-lg-n3 {
    margin-right: -3rem !important;
  }
  .me-lg-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-lg-n4 {
    margin-right: -4rem !important;
  }
  .me-lg-n5 {
    margin-right: -5rem !important;
  }
  .me-lg-n6 {
    margin-right: -6rem !important;
  }
  .me-lg-n7 {
    margin-right: -7rem !important;
  }
  .me-lg-n8 {
    margin-right: -8rem !important;
  }
  .me-lg-n9 {
    margin-right: -9rem !important;
  }
  .me-lg-n10 {
    margin-right: -10rem !important;
  }
  .me-lg-n13 {
    margin-right: -13rem !important;
  }
  .me-lg-n15 {
    margin-right: -15rem !important;
  }
  .me-lg-n20 {
    margin-right: -20rem !important;
  }
  .me-lg-n25 {
    margin-right: -25rem !important;
  }
  .me-lg-n30 {
    margin-right: -30rem !important;
  }
  .me-lg-n35 {
    margin-right: -35rem !important;
  }
  .me-lg-n40 {
    margin-right: -40rem !important;
  }
  .me-lg-n45 {
    margin-right: -45rem !important;
  }
  .me-lg-n50 {
    margin-right: -50rem !important;
  }
  .mb-lg-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-lg-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-lg-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-lg-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-lg-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-lg-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-lg-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-lg-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-lg-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-lg-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-lg-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-lg-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-lg-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-lg-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-lg-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-lg-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-lg-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-lg-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-lg-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-lg-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-lg-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-lg-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-lg-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-lg-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-lg-n1 {
    margin-left: -1rem !important;
  }
  .ms-lg-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-lg-n2 {
    margin-left: -2rem !important;
  }
  .ms-lg-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-lg-n3 {
    margin-left: -3rem !important;
  }
  .ms-lg-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-lg-n4 {
    margin-left: -4rem !important;
  }
  .ms-lg-n5 {
    margin-left: -5rem !important;
  }
  .ms-lg-n6 {
    margin-left: -6rem !important;
  }
  .ms-lg-n7 {
    margin-left: -7rem !important;
  }
  .ms-lg-n8 {
    margin-left: -8rem !important;
  }
  .ms-lg-n9 {
    margin-left: -9rem !important;
  }
  .ms-lg-n10 {
    margin-left: -10rem !important;
  }
  .ms-lg-n13 {
    margin-left: -13rem !important;
  }
  .ms-lg-n15 {
    margin-left: -15rem !important;
  }
  .ms-lg-n20 {
    margin-left: -20rem !important;
  }
  .ms-lg-n25 {
    margin-left: -25rem !important;
  }
  .ms-lg-n30 {
    margin-left: -30rem !important;
  }
  .ms-lg-n35 {
    margin-left: -35rem !important;
  }
  .ms-lg-n40 {
    margin-left: -40rem !important;
  }
  .ms-lg-n45 {
    margin-left: -45rem !important;
  }
  .ms-lg-n50 {
    margin-left: -50rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-0_5 {
    padding: 0.5rem !important;
  }
  .p-lg-1 {
    padding: 1rem !important;
  }
  .p-lg-1_5 {
    padding: 1.5rem !important;
  }
  .p-lg-2 {
    padding: 2rem !important;
  }
  .p-lg-2_5 {
    padding: 2.5rem !important;
  }
  .p-lg-3 {
    padding: 3rem !important;
  }
  .p-lg-3_5 {
    padding: 3.5rem !important;
  }
  .p-lg-4 {
    padding: 4rem !important;
  }
  .p-lg-5 {
    padding: 5rem !important;
  }
  .p-lg-6 {
    padding: 6rem !important;
  }
  .p-lg-7 {
    padding: 7rem !important;
  }
  .p-lg-8 {
    padding: 8rem !important;
  }
  .p-lg-9 {
    padding: 9rem !important;
  }
  .p-lg-10 {
    padding: 10rem !important;
  }
  .p-lg-13 {
    padding: 13rem !important;
  }
  .p-lg-15 {
    padding: 15rem !important;
  }
  .p-lg-20 {
    padding: 20rem !important;
  }
  .p-lg-25 {
    padding: 25rem !important;
  }
  .p-lg-30 {
    padding: 30rem !important;
  }
  .p-lg-35 {
    padding: 35rem !important;
  }
  .p-lg-40 {
    padding: 40rem !important;
  }
  .p-lg-45 {
    padding: 45rem !important;
  }
  .p-lg-50 {
    padding: 50rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-lg-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-lg-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-lg-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-lg-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-lg-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-lg-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-lg-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-lg-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-lg-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-lg-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-lg-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-lg-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-lg-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-lg-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-lg-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-lg-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-lg-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-lg-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-lg-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-lg-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-lg-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-lg-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-lg-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-lg-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-lg-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-lg-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-lg-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-lg-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-lg-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-lg-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-lg-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-lg-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-lg-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-1 {
    padding-top: 1rem !important;
  }
  .pt-lg-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-2 {
    padding-top: 2rem !important;
  }
  .pt-lg-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 3rem !important;
  }
  .pt-lg-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-lg-4 {
    padding-top: 4rem !important;
  }
  .pt-lg-5 {
    padding-top: 5rem !important;
  }
  .pt-lg-6 {
    padding-top: 6rem !important;
  }
  .pt-lg-7 {
    padding-top: 7rem !important;
  }
  .pt-lg-8 {
    padding-top: 8rem !important;
  }
  .pt-lg-9 {
    padding-top: 9rem !important;
  }
  .pt-lg-10 {
    padding-top: 10rem !important;
  }
  .pt-lg-13 {
    padding-top: 13rem !important;
  }
  .pt-lg-15 {
    padding-top: 15rem !important;
  }
  .pt-lg-20 {
    padding-top: 20rem !important;
  }
  .pt-lg-25 {
    padding-top: 25rem !important;
  }
  .pt-lg-30 {
    padding-top: 30rem !important;
  }
  .pt-lg-35 {
    padding-top: 35rem !important;
  }
  .pt-lg-40 {
    padding-top: 40rem !important;
  }
  .pt-lg-45 {
    padding-top: 45rem !important;
  }
  .pt-lg-50 {
    padding-top: 50rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-1 {
    padding-right: 1rem !important;
  }
  .pe-lg-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-2 {
    padding-right: 2rem !important;
  }
  .pe-lg-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 3rem !important;
  }
  .pe-lg-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-lg-4 {
    padding-right: 4rem !important;
  }
  .pe-lg-5 {
    padding-right: 5rem !important;
  }
  .pe-lg-6 {
    padding-right: 6rem !important;
  }
  .pe-lg-7 {
    padding-right: 7rem !important;
  }
  .pe-lg-8 {
    padding-right: 8rem !important;
  }
  .pe-lg-9 {
    padding-right: 9rem !important;
  }
  .pe-lg-10 {
    padding-right: 10rem !important;
  }
  .pe-lg-13 {
    padding-right: 13rem !important;
  }
  .pe-lg-15 {
    padding-right: 15rem !important;
  }
  .pe-lg-20 {
    padding-right: 20rem !important;
  }
  .pe-lg-25 {
    padding-right: 25rem !important;
  }
  .pe-lg-30 {
    padding-right: 30rem !important;
  }
  .pe-lg-35 {
    padding-right: 35rem !important;
  }
  .pe-lg-40 {
    padding-right: 40rem !important;
  }
  .pe-lg-45 {
    padding-right: 45rem !important;
  }
  .pe-lg-50 {
    padding-right: 50rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 4rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 5rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 6rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 7rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 8rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 9rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 10rem !important;
  }
  .pb-lg-13 {
    padding-bottom: 13rem !important;
  }
  .pb-lg-15 {
    padding-bottom: 15rem !important;
  }
  .pb-lg-20 {
    padding-bottom: 20rem !important;
  }
  .pb-lg-25 {
    padding-bottom: 25rem !important;
  }
  .pb-lg-30 {
    padding-bottom: 30rem !important;
  }
  .pb-lg-35 {
    padding-bottom: 35rem !important;
  }
  .pb-lg-40 {
    padding-bottom: 40rem !important;
  }
  .pb-lg-45 {
    padding-bottom: 45rem !important;
  }
  .pb-lg-50 {
    padding-bottom: 50rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-1 {
    padding-left: 1rem !important;
  }
  .ps-lg-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-2 {
    padding-left: 2rem !important;
  }
  .ps-lg-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 3rem !important;
  }
  .ps-lg-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-lg-4 {
    padding-left: 4rem !important;
  }
  .ps-lg-5 {
    padding-left: 5rem !important;
  }
  .ps-lg-6 {
    padding-left: 6rem !important;
  }
  .ps-lg-7 {
    padding-left: 7rem !important;
  }
  .ps-lg-8 {
    padding-left: 8rem !important;
  }
  .ps-lg-9 {
    padding-left: 9rem !important;
  }
  .ps-lg-10 {
    padding-left: 10rem !important;
  }
  .ps-lg-13 {
    padding-left: 13rem !important;
  }
  .ps-lg-15 {
    padding-left: 15rem !important;
  }
  .ps-lg-20 {
    padding-left: 20rem !important;
  }
  .ps-lg-25 {
    padding-left: 25rem !important;
  }
  .ps-lg-30 {
    padding-left: 30rem !important;
  }
  .ps-lg-35 {
    padding-left: 35rem !important;
  }
  .ps-lg-40 {
    padding-left: 40rem !important;
  }
  .ps-lg-45 {
    padding-left: 45rem !important;
  }
  .ps-lg-50 {
    padding-left: 50rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-0_5 {
    margin: 0.5rem !important;
  }
  .m-xl-1 {
    margin: 1rem !important;
  }
  .m-xl-1_5 {
    margin: 1.5rem !important;
  }
  .m-xl-2 {
    margin: 2rem !important;
  }
  .m-xl-2_5 {
    margin: 2.5rem !important;
  }
  .m-xl-3 {
    margin: 3rem !important;
  }
  .m-xl-3_5 {
    margin: 3.5rem !important;
  }
  .m-xl-4 {
    margin: 4rem !important;
  }
  .m-xl-5 {
    margin: 5rem !important;
  }
  .m-xl-6 {
    margin: 6rem !important;
  }
  .m-xl-7 {
    margin: 7rem !important;
  }
  .m-xl-8 {
    margin: 8rem !important;
  }
  .m-xl-9 {
    margin: 9rem !important;
  }
  .m-xl-10 {
    margin: 10rem !important;
  }
  .m-xl-13 {
    margin: 13rem !important;
  }
  .m-xl-15 {
    margin: 15rem !important;
  }
  .m-xl-20 {
    margin: 20rem !important;
  }
  .m-xl-25 {
    margin: 25rem !important;
  }
  .m-xl-30 {
    margin: 30rem !important;
  }
  .m-xl-35 {
    margin: 35rem !important;
  }
  .m-xl-40 {
    margin: 40rem !important;
  }
  .m-xl-45 {
    margin: 45rem !important;
  }
  .m-xl-50 {
    margin: 50rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xl-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xl-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xl-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xl-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xl-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xl-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xl-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-xl-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-xl-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-xl-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-xl-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-xl-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-xl-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-xl-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-xl-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xl-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xl-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xl-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xl-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xl-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xl-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xl-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xl-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-xl-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-xl-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-xl-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-xl-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-xl-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-xl-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-xl-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-xl-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-1 {
    margin-top: 1rem !important;
  }
  .mt-xl-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-2 {
    margin-top: 2rem !important;
  }
  .mt-xl-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 3rem !important;
  }
  .mt-xl-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-xl-4 {
    margin-top: 4rem !important;
  }
  .mt-xl-5 {
    margin-top: 5rem !important;
  }
  .mt-xl-6 {
    margin-top: 6rem !important;
  }
  .mt-xl-7 {
    margin-top: 7rem !important;
  }
  .mt-xl-8 {
    margin-top: 8rem !important;
  }
  .mt-xl-9 {
    margin-top: 9rem !important;
  }
  .mt-xl-10 {
    margin-top: 10rem !important;
  }
  .mt-xl-13 {
    margin-top: 13rem !important;
  }
  .mt-xl-15 {
    margin-top: 15rem !important;
  }
  .mt-xl-20 {
    margin-top: 20rem !important;
  }
  .mt-xl-25 {
    margin-top: 25rem !important;
  }
  .mt-xl-30 {
    margin-top: 30rem !important;
  }
  .mt-xl-35 {
    margin-top: 35rem !important;
  }
  .mt-xl-40 {
    margin-top: 40rem !important;
  }
  .mt-xl-45 {
    margin-top: 45rem !important;
  }
  .mt-xl-50 {
    margin-top: 50rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-xl-1 {
    margin-right: 1rem !important;
  }
  .me-xl-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-xl-2 {
    margin-right: 2rem !important;
  }
  .me-xl-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-xl-3 {
    margin-right: 3rem !important;
  }
  .me-xl-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-xl-4 {
    margin-right: 4rem !important;
  }
  .me-xl-5 {
    margin-right: 5rem !important;
  }
  .me-xl-6 {
    margin-right: 6rem !important;
  }
  .me-xl-7 {
    margin-right: 7rem !important;
  }
  .me-xl-8 {
    margin-right: 8rem !important;
  }
  .me-xl-9 {
    margin-right: 9rem !important;
  }
  .me-xl-10 {
    margin-right: 10rem !important;
  }
  .me-xl-13 {
    margin-right: 13rem !important;
  }
  .me-xl-15 {
    margin-right: 15rem !important;
  }
  .me-xl-20 {
    margin-right: 20rem !important;
  }
  .me-xl-25 {
    margin-right: 25rem !important;
  }
  .me-xl-30 {
    margin-right: 30rem !important;
  }
  .me-xl-35 {
    margin-right: 35rem !important;
  }
  .me-xl-40 {
    margin-right: 40rem !important;
  }
  .me-xl-45 {
    margin-right: 45rem !important;
  }
  .me-xl-50 {
    margin-right: 50rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xl-13 {
    margin-bottom: 13rem !important;
  }
  .mb-xl-15 {
    margin-bottom: 15rem !important;
  }
  .mb-xl-20 {
    margin-bottom: 20rem !important;
  }
  .mb-xl-25 {
    margin-bottom: 25rem !important;
  }
  .mb-xl-30 {
    margin-bottom: 30rem !important;
  }
  .mb-xl-35 {
    margin-bottom: 35rem !important;
  }
  .mb-xl-40 {
    margin-bottom: 40rem !important;
  }
  .mb-xl-45 {
    margin-bottom: 45rem !important;
  }
  .mb-xl-50 {
    margin-bottom: 50rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-1 {
    margin-left: 1rem !important;
  }
  .ms-xl-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-2 {
    margin-left: 2rem !important;
  }
  .ms-xl-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 3rem !important;
  }
  .ms-xl-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-xl-4 {
    margin-left: 4rem !important;
  }
  .ms-xl-5 {
    margin-left: 5rem !important;
  }
  .ms-xl-6 {
    margin-left: 6rem !important;
  }
  .ms-xl-7 {
    margin-left: 7rem !important;
  }
  .ms-xl-8 {
    margin-left: 8rem !important;
  }
  .ms-xl-9 {
    margin-left: 9rem !important;
  }
  .ms-xl-10 {
    margin-left: 10rem !important;
  }
  .ms-xl-13 {
    margin-left: 13rem !important;
  }
  .ms-xl-15 {
    margin-left: 15rem !important;
  }
  .ms-xl-20 {
    margin-left: 20rem !important;
  }
  .ms-xl-25 {
    margin-left: 25rem !important;
  }
  .ms-xl-30 {
    margin-left: 30rem !important;
  }
  .ms-xl-35 {
    margin-left: 35rem !important;
  }
  .ms-xl-40 {
    margin-left: 40rem !important;
  }
  .ms-xl-45 {
    margin-left: 45rem !important;
  }
  .ms-xl-50 {
    margin-left: 50rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .m-xl-n0_5 {
    margin: -0.5rem !important;
  }
  .m-xl-n1 {
    margin: -1rem !important;
  }
  .m-xl-n1_5 {
    margin: -1.5rem !important;
  }
  .m-xl-n2 {
    margin: -2rem !important;
  }
  .m-xl-n2_5 {
    margin: -2.5rem !important;
  }
  .m-xl-n3 {
    margin: -3rem !important;
  }
  .m-xl-n3_5 {
    margin: -3.5rem !important;
  }
  .m-xl-n4 {
    margin: -4rem !important;
  }
  .m-xl-n5 {
    margin: -5rem !important;
  }
  .m-xl-n6 {
    margin: -6rem !important;
  }
  .m-xl-n7 {
    margin: -7rem !important;
  }
  .m-xl-n8 {
    margin: -8rem !important;
  }
  .m-xl-n9 {
    margin: -9rem !important;
  }
  .m-xl-n10 {
    margin: -10rem !important;
  }
  .m-xl-n13 {
    margin: -13rem !important;
  }
  .m-xl-n15 {
    margin: -15rem !important;
  }
  .m-xl-n20 {
    margin: -20rem !important;
  }
  .m-xl-n25 {
    margin: -25rem !important;
  }
  .m-xl-n30 {
    margin: -30rem !important;
  }
  .m-xl-n35 {
    margin: -35rem !important;
  }
  .m-xl-n40 {
    margin: -40rem !important;
  }
  .m-xl-n45 {
    margin: -45rem !important;
  }
  .m-xl-n50 {
    margin: -50rem !important;
  }
  .mx-xl-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xl-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xl-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xl-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-xl-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-xl-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xl-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-xl-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-xl-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-xl-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-xl-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-xl-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-xl-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-xl-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-xl-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-xl-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-xl-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-xl-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-xl-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-xl-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-xl-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-xl-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-xl-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-xl-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xl-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xl-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xl-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-xl-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-xl-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xl-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-xl-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-xl-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-xl-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-xl-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-xl-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-xl-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-xl-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-xl-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-xl-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-xl-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-xl-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-xl-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-xl-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-xl-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-xl-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-xl-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-xl-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-xl-n1 {
    margin-top: -1rem !important;
  }
  .mt-xl-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-xl-n2 {
    margin-top: -2rem !important;
  }
  .mt-xl-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-xl-n3 {
    margin-top: -3rem !important;
  }
  .mt-xl-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-xl-n4 {
    margin-top: -4rem !important;
  }
  .mt-xl-n5 {
    margin-top: -5rem !important;
  }
  .mt-xl-n6 {
    margin-top: -6rem !important;
  }
  .mt-xl-n7 {
    margin-top: -7rem !important;
  }
  .mt-xl-n8 {
    margin-top: -8rem !important;
  }
  .mt-xl-n9 {
    margin-top: -9rem !important;
  }
  .mt-xl-n10 {
    margin-top: -10rem !important;
  }
  .mt-xl-n13 {
    margin-top: -13rem !important;
  }
  .mt-xl-n15 {
    margin-top: -15rem !important;
  }
  .mt-xl-n20 {
    margin-top: -20rem !important;
  }
  .mt-xl-n25 {
    margin-top: -25rem !important;
  }
  .mt-xl-n30 {
    margin-top: -30rem !important;
  }
  .mt-xl-n35 {
    margin-top: -35rem !important;
  }
  .mt-xl-n40 {
    margin-top: -40rem !important;
  }
  .mt-xl-n45 {
    margin-top: -45rem !important;
  }
  .mt-xl-n50 {
    margin-top: -50rem !important;
  }
  .me-xl-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-xl-n1 {
    margin-right: -1rem !important;
  }
  .me-xl-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-xl-n2 {
    margin-right: -2rem !important;
  }
  .me-xl-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-xl-n3 {
    margin-right: -3rem !important;
  }
  .me-xl-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-xl-n4 {
    margin-right: -4rem !important;
  }
  .me-xl-n5 {
    margin-right: -5rem !important;
  }
  .me-xl-n6 {
    margin-right: -6rem !important;
  }
  .me-xl-n7 {
    margin-right: -7rem !important;
  }
  .me-xl-n8 {
    margin-right: -8rem !important;
  }
  .me-xl-n9 {
    margin-right: -9rem !important;
  }
  .me-xl-n10 {
    margin-right: -10rem !important;
  }
  .me-xl-n13 {
    margin-right: -13rem !important;
  }
  .me-xl-n15 {
    margin-right: -15rem !important;
  }
  .me-xl-n20 {
    margin-right: -20rem !important;
  }
  .me-xl-n25 {
    margin-right: -25rem !important;
  }
  .me-xl-n30 {
    margin-right: -30rem !important;
  }
  .me-xl-n35 {
    margin-right: -35rem !important;
  }
  .me-xl-n40 {
    margin-right: -40rem !important;
  }
  .me-xl-n45 {
    margin-right: -45rem !important;
  }
  .me-xl-n50 {
    margin-right: -50rem !important;
  }
  .mb-xl-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xl-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-xl-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xl-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-xl-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-xl-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-xl-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-xl-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-xl-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-xl-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-xl-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-xl-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-xl-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-xl-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-xl-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-xl-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-xl-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-xl-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-xl-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-xl-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-xl-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-xl-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-xl-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-xl-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-xl-n1 {
    margin-left: -1rem !important;
  }
  .ms-xl-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-xl-n2 {
    margin-left: -2rem !important;
  }
  .ms-xl-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-xl-n3 {
    margin-left: -3rem !important;
  }
  .ms-xl-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-xl-n4 {
    margin-left: -4rem !important;
  }
  .ms-xl-n5 {
    margin-left: -5rem !important;
  }
  .ms-xl-n6 {
    margin-left: -6rem !important;
  }
  .ms-xl-n7 {
    margin-left: -7rem !important;
  }
  .ms-xl-n8 {
    margin-left: -8rem !important;
  }
  .ms-xl-n9 {
    margin-left: -9rem !important;
  }
  .ms-xl-n10 {
    margin-left: -10rem !important;
  }
  .ms-xl-n13 {
    margin-left: -13rem !important;
  }
  .ms-xl-n15 {
    margin-left: -15rem !important;
  }
  .ms-xl-n20 {
    margin-left: -20rem !important;
  }
  .ms-xl-n25 {
    margin-left: -25rem !important;
  }
  .ms-xl-n30 {
    margin-left: -30rem !important;
  }
  .ms-xl-n35 {
    margin-left: -35rem !important;
  }
  .ms-xl-n40 {
    margin-left: -40rem !important;
  }
  .ms-xl-n45 {
    margin-left: -45rem !important;
  }
  .ms-xl-n50 {
    margin-left: -50rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-0_5 {
    padding: 0.5rem !important;
  }
  .p-xl-1 {
    padding: 1rem !important;
  }
  .p-xl-1_5 {
    padding: 1.5rem !important;
  }
  .p-xl-2 {
    padding: 2rem !important;
  }
  .p-xl-2_5 {
    padding: 2.5rem !important;
  }
  .p-xl-3 {
    padding: 3rem !important;
  }
  .p-xl-3_5 {
    padding: 3.5rem !important;
  }
  .p-xl-4 {
    padding: 4rem !important;
  }
  .p-xl-5 {
    padding: 5rem !important;
  }
  .p-xl-6 {
    padding: 6rem !important;
  }
  .p-xl-7 {
    padding: 7rem !important;
  }
  .p-xl-8 {
    padding: 8rem !important;
  }
  .p-xl-9 {
    padding: 9rem !important;
  }
  .p-xl-10 {
    padding: 10rem !important;
  }
  .p-xl-13 {
    padding: 13rem !important;
  }
  .p-xl-15 {
    padding: 15rem !important;
  }
  .p-xl-20 {
    padding: 20rem !important;
  }
  .p-xl-25 {
    padding: 25rem !important;
  }
  .p-xl-30 {
    padding: 30rem !important;
  }
  .p-xl-35 {
    padding: 35rem !important;
  }
  .p-xl-40 {
    padding: 40rem !important;
  }
  .p-xl-45 {
    padding: 45rem !important;
  }
  .p-xl-50 {
    padding: 50rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xl-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xl-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xl-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xl-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xl-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xl-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xl-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-xl-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-xl-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-xl-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-xl-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-xl-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-xl-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-xl-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-xl-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-xl-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xl-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xl-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xl-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xl-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xl-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xl-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xl-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-xl-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-xl-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-xl-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-xl-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-xl-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-xl-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-xl-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-xl-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-1 {
    padding-top: 1rem !important;
  }
  .pt-xl-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-2 {
    padding-top: 2rem !important;
  }
  .pt-xl-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 3rem !important;
  }
  .pt-xl-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-xl-4 {
    padding-top: 4rem !important;
  }
  .pt-xl-5 {
    padding-top: 5rem !important;
  }
  .pt-xl-6 {
    padding-top: 6rem !important;
  }
  .pt-xl-7 {
    padding-top: 7rem !important;
  }
  .pt-xl-8 {
    padding-top: 8rem !important;
  }
  .pt-xl-9 {
    padding-top: 9rem !important;
  }
  .pt-xl-10 {
    padding-top: 10rem !important;
  }
  .pt-xl-13 {
    padding-top: 13rem !important;
  }
  .pt-xl-15 {
    padding-top: 15rem !important;
  }
  .pt-xl-20 {
    padding-top: 20rem !important;
  }
  .pt-xl-25 {
    padding-top: 25rem !important;
  }
  .pt-xl-30 {
    padding-top: 30rem !important;
  }
  .pt-xl-35 {
    padding-top: 35rem !important;
  }
  .pt-xl-40 {
    padding-top: 40rem !important;
  }
  .pt-xl-45 {
    padding-top: 45rem !important;
  }
  .pt-xl-50 {
    padding-top: 50rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-1 {
    padding-right: 1rem !important;
  }
  .pe-xl-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-2 {
    padding-right: 2rem !important;
  }
  .pe-xl-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 3rem !important;
  }
  .pe-xl-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-xl-4 {
    padding-right: 4rem !important;
  }
  .pe-xl-5 {
    padding-right: 5rem !important;
  }
  .pe-xl-6 {
    padding-right: 6rem !important;
  }
  .pe-xl-7 {
    padding-right: 7rem !important;
  }
  .pe-xl-8 {
    padding-right: 8rem !important;
  }
  .pe-xl-9 {
    padding-right: 9rem !important;
  }
  .pe-xl-10 {
    padding-right: 10rem !important;
  }
  .pe-xl-13 {
    padding-right: 13rem !important;
  }
  .pe-xl-15 {
    padding-right: 15rem !important;
  }
  .pe-xl-20 {
    padding-right: 20rem !important;
  }
  .pe-xl-25 {
    padding-right: 25rem !important;
  }
  .pe-xl-30 {
    padding-right: 30rem !important;
  }
  .pe-xl-35 {
    padding-right: 35rem !important;
  }
  .pe-xl-40 {
    padding-right: 40rem !important;
  }
  .pe-xl-45 {
    padding-right: 45rem !important;
  }
  .pe-xl-50 {
    padding-right: 50rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 10rem !important;
  }
  .pb-xl-13 {
    padding-bottom: 13rem !important;
  }
  .pb-xl-15 {
    padding-bottom: 15rem !important;
  }
  .pb-xl-20 {
    padding-bottom: 20rem !important;
  }
  .pb-xl-25 {
    padding-bottom: 25rem !important;
  }
  .pb-xl-30 {
    padding-bottom: 30rem !important;
  }
  .pb-xl-35 {
    padding-bottom: 35rem !important;
  }
  .pb-xl-40 {
    padding-bottom: 40rem !important;
  }
  .pb-xl-45 {
    padding-bottom: 45rem !important;
  }
  .pb-xl-50 {
    padding-bottom: 50rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-1 {
    padding-left: 1rem !important;
  }
  .ps-xl-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-2 {
    padding-left: 2rem !important;
  }
  .ps-xl-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 3rem !important;
  }
  .ps-xl-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-xl-4 {
    padding-left: 4rem !important;
  }
  .ps-xl-5 {
    padding-left: 5rem !important;
  }
  .ps-xl-6 {
    padding-left: 6rem !important;
  }
  .ps-xl-7 {
    padding-left: 7rem !important;
  }
  .ps-xl-8 {
    padding-left: 8rem !important;
  }
  .ps-xl-9 {
    padding-left: 9rem !important;
  }
  .ps-xl-10 {
    padding-left: 10rem !important;
  }
  .ps-xl-13 {
    padding-left: 13rem !important;
  }
  .ps-xl-15 {
    padding-left: 15rem !important;
  }
  .ps-xl-20 {
    padding-left: 20rem !important;
  }
  .ps-xl-25 {
    padding-left: 25rem !important;
  }
  .ps-xl-30 {
    padding-left: 30rem !important;
  }
  .ps-xl-35 {
    padding-left: 35rem !important;
  }
  .ps-xl-40 {
    padding-left: 40rem !important;
  }
  .ps-xl-45 {
    padding-left: 45rem !important;
  }
  .ps-xl-50 {
    padding-left: 50rem !important;
  }
}
@media (min-width: 1500px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-0_5 {
    margin: 0.5rem !important;
  }
  .m-xxl-1 {
    margin: 1rem !important;
  }
  .m-xxl-1_5 {
    margin: 1.5rem !important;
  }
  .m-xxl-2 {
    margin: 2rem !important;
  }
  .m-xxl-2_5 {
    margin: 2.5rem !important;
  }
  .m-xxl-3 {
    margin: 3rem !important;
  }
  .m-xxl-3_5 {
    margin: 3.5rem !important;
  }
  .m-xxl-4 {
    margin: 4rem !important;
  }
  .m-xxl-5 {
    margin: 5rem !important;
  }
  .m-xxl-6 {
    margin: 6rem !important;
  }
  .m-xxl-7 {
    margin: 7rem !important;
  }
  .m-xxl-8 {
    margin: 8rem !important;
  }
  .m-xxl-9 {
    margin: 9rem !important;
  }
  .m-xxl-10 {
    margin: 10rem !important;
  }
  .m-xxl-13 {
    margin: 13rem !important;
  }
  .m-xxl-15 {
    margin: 15rem !important;
  }
  .m-xxl-20 {
    margin: 20rem !important;
  }
  .m-xxl-25 {
    margin: 25rem !important;
  }
  .m-xxl-30 {
    margin: 30rem !important;
  }
  .m-xxl-35 {
    margin: 35rem !important;
  }
  .m-xxl-40 {
    margin: 40rem !important;
  }
  .m-xxl-45 {
    margin: 45rem !important;
  }
  .m-xxl-50 {
    margin: 50rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xxl-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xxl-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xxl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xxl-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xxl-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xxl-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xxl-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xxl-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-xxl-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-xxl-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-xxl-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-xxl-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-xxl-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-xxl-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-xxl-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-xxl-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xxl-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xxl-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xxl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xxl-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xxl-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xxl-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xxl-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xxl-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-xxl-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-xxl-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-xxl-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-xxl-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-xxl-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-xxl-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-xxl-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-xxl-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-1 {
    margin-top: 1rem !important;
  }
  .mt-xxl-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-2 {
    margin-top: 2rem !important;
  }
  .mt-xxl-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 3rem !important;
  }
  .mt-xxl-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-xxl-4 {
    margin-top: 4rem !important;
  }
  .mt-xxl-5 {
    margin-top: 5rem !important;
  }
  .mt-xxl-6 {
    margin-top: 6rem !important;
  }
  .mt-xxl-7 {
    margin-top: 7rem !important;
  }
  .mt-xxl-8 {
    margin-top: 8rem !important;
  }
  .mt-xxl-9 {
    margin-top: 9rem !important;
  }
  .mt-xxl-10 {
    margin-top: 10rem !important;
  }
  .mt-xxl-13 {
    margin-top: 13rem !important;
  }
  .mt-xxl-15 {
    margin-top: 15rem !important;
  }
  .mt-xxl-20 {
    margin-top: 20rem !important;
  }
  .mt-xxl-25 {
    margin-top: 25rem !important;
  }
  .mt-xxl-30 {
    margin-top: 30rem !important;
  }
  .mt-xxl-35 {
    margin-top: 35rem !important;
  }
  .mt-xxl-40 {
    margin-top: 40rem !important;
  }
  .mt-xxl-45 {
    margin-top: 45rem !important;
  }
  .mt-xxl-50 {
    margin-top: 50rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-1 {
    margin-right: 1rem !important;
  }
  .me-xxl-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-2 {
    margin-right: 2rem !important;
  }
  .me-xxl-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 3rem !important;
  }
  .me-xxl-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-xxl-4 {
    margin-right: 4rem !important;
  }
  .me-xxl-5 {
    margin-right: 5rem !important;
  }
  .me-xxl-6 {
    margin-right: 6rem !important;
  }
  .me-xxl-7 {
    margin-right: 7rem !important;
  }
  .me-xxl-8 {
    margin-right: 8rem !important;
  }
  .me-xxl-9 {
    margin-right: 9rem !important;
  }
  .me-xxl-10 {
    margin-right: 10rem !important;
  }
  .me-xxl-13 {
    margin-right: 13rem !important;
  }
  .me-xxl-15 {
    margin-right: 15rem !important;
  }
  .me-xxl-20 {
    margin-right: 20rem !important;
  }
  .me-xxl-25 {
    margin-right: 25rem !important;
  }
  .me-xxl-30 {
    margin-right: 30rem !important;
  }
  .me-xxl-35 {
    margin-right: 35rem !important;
  }
  .me-xxl-40 {
    margin-right: 40rem !important;
  }
  .me-xxl-45 {
    margin-right: 45rem !important;
  }
  .me-xxl-50 {
    margin-right: 50rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xxl-13 {
    margin-bottom: 13rem !important;
  }
  .mb-xxl-15 {
    margin-bottom: 15rem !important;
  }
  .mb-xxl-20 {
    margin-bottom: 20rem !important;
  }
  .mb-xxl-25 {
    margin-bottom: 25rem !important;
  }
  .mb-xxl-30 {
    margin-bottom: 30rem !important;
  }
  .mb-xxl-35 {
    margin-bottom: 35rem !important;
  }
  .mb-xxl-40 {
    margin-bottom: 40rem !important;
  }
  .mb-xxl-45 {
    margin-bottom: 45rem !important;
  }
  .mb-xxl-50 {
    margin-bottom: 50rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-1 {
    margin-left: 1rem !important;
  }
  .ms-xxl-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-2 {
    margin-left: 2rem !important;
  }
  .ms-xxl-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 3rem !important;
  }
  .ms-xxl-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-xxl-4 {
    margin-left: 4rem !important;
  }
  .ms-xxl-5 {
    margin-left: 5rem !important;
  }
  .ms-xxl-6 {
    margin-left: 6rem !important;
  }
  .ms-xxl-7 {
    margin-left: 7rem !important;
  }
  .ms-xxl-8 {
    margin-left: 8rem !important;
  }
  .ms-xxl-9 {
    margin-left: 9rem !important;
  }
  .ms-xxl-10 {
    margin-left: 10rem !important;
  }
  .ms-xxl-13 {
    margin-left: 13rem !important;
  }
  .ms-xxl-15 {
    margin-left: 15rem !important;
  }
  .ms-xxl-20 {
    margin-left: 20rem !important;
  }
  .ms-xxl-25 {
    margin-left: 25rem !important;
  }
  .ms-xxl-30 {
    margin-left: 30rem !important;
  }
  .ms-xxl-35 {
    margin-left: 35rem !important;
  }
  .ms-xxl-40 {
    margin-left: 40rem !important;
  }
  .ms-xxl-45 {
    margin-left: 45rem !important;
  }
  .ms-xxl-50 {
    margin-left: 50rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .m-xxl-n0_5 {
    margin: -0.5rem !important;
  }
  .m-xxl-n1 {
    margin: -1rem !important;
  }
  .m-xxl-n1_5 {
    margin: -1.5rem !important;
  }
  .m-xxl-n2 {
    margin: -2rem !important;
  }
  .m-xxl-n2_5 {
    margin: -2.5rem !important;
  }
  .m-xxl-n3 {
    margin: -3rem !important;
  }
  .m-xxl-n3_5 {
    margin: -3.5rem !important;
  }
  .m-xxl-n4 {
    margin: -4rem !important;
  }
  .m-xxl-n5 {
    margin: -5rem !important;
  }
  .m-xxl-n6 {
    margin: -6rem !important;
  }
  .m-xxl-n7 {
    margin: -7rem !important;
  }
  .m-xxl-n8 {
    margin: -8rem !important;
  }
  .m-xxl-n9 {
    margin: -9rem !important;
  }
  .m-xxl-n10 {
    margin: -10rem !important;
  }
  .m-xxl-n13 {
    margin: -13rem !important;
  }
  .m-xxl-n15 {
    margin: -15rem !important;
  }
  .m-xxl-n20 {
    margin: -20rem !important;
  }
  .m-xxl-n25 {
    margin: -25rem !important;
  }
  .m-xxl-n30 {
    margin: -30rem !important;
  }
  .m-xxl-n35 {
    margin: -35rem !important;
  }
  .m-xxl-n40 {
    margin: -40rem !important;
  }
  .m-xxl-n45 {
    margin: -45rem !important;
  }
  .m-xxl-n50 {
    margin: -50rem !important;
  }
  .mx-xxl-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xxl-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xxl-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xxl-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-xxl-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-xxl-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xxl-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-xxl-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-xxl-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-xxl-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-xxl-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-xxl-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-xxl-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-xxl-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-xxl-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-xxl-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-xxl-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-xxl-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-xxl-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-xxl-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-xxl-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-xxl-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-xxl-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-xxl-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xxl-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xxl-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xxl-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-xxl-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-xxl-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xxl-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-xxl-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-xxl-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-xxl-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-xxl-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-xxl-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-xxl-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-xxl-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-xxl-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-xxl-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-xxl-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-xxl-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-xxl-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-xxl-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-xxl-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-xxl-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-xxl-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-xxl-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-xxl-n1 {
    margin-top: -1rem !important;
  }
  .mt-xxl-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-xxl-n2 {
    margin-top: -2rem !important;
  }
  .mt-xxl-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-xxl-n3 {
    margin-top: -3rem !important;
  }
  .mt-xxl-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-xxl-n4 {
    margin-top: -4rem !important;
  }
  .mt-xxl-n5 {
    margin-top: -5rem !important;
  }
  .mt-xxl-n6 {
    margin-top: -6rem !important;
  }
  .mt-xxl-n7 {
    margin-top: -7rem !important;
  }
  .mt-xxl-n8 {
    margin-top: -8rem !important;
  }
  .mt-xxl-n9 {
    margin-top: -9rem !important;
  }
  .mt-xxl-n10 {
    margin-top: -10rem !important;
  }
  .mt-xxl-n13 {
    margin-top: -13rem !important;
  }
  .mt-xxl-n15 {
    margin-top: -15rem !important;
  }
  .mt-xxl-n20 {
    margin-top: -20rem !important;
  }
  .mt-xxl-n25 {
    margin-top: -25rem !important;
  }
  .mt-xxl-n30 {
    margin-top: -30rem !important;
  }
  .mt-xxl-n35 {
    margin-top: -35rem !important;
  }
  .mt-xxl-n40 {
    margin-top: -40rem !important;
  }
  .mt-xxl-n45 {
    margin-top: -45rem !important;
  }
  .mt-xxl-n50 {
    margin-top: -50rem !important;
  }
  .me-xxl-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-xxl-n1 {
    margin-right: -1rem !important;
  }
  .me-xxl-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-xxl-n2 {
    margin-right: -2rem !important;
  }
  .me-xxl-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-xxl-n3 {
    margin-right: -3rem !important;
  }
  .me-xxl-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-xxl-n4 {
    margin-right: -4rem !important;
  }
  .me-xxl-n5 {
    margin-right: -5rem !important;
  }
  .me-xxl-n6 {
    margin-right: -6rem !important;
  }
  .me-xxl-n7 {
    margin-right: -7rem !important;
  }
  .me-xxl-n8 {
    margin-right: -8rem !important;
  }
  .me-xxl-n9 {
    margin-right: -9rem !important;
  }
  .me-xxl-n10 {
    margin-right: -10rem !important;
  }
  .me-xxl-n13 {
    margin-right: -13rem !important;
  }
  .me-xxl-n15 {
    margin-right: -15rem !important;
  }
  .me-xxl-n20 {
    margin-right: -20rem !important;
  }
  .me-xxl-n25 {
    margin-right: -25rem !important;
  }
  .me-xxl-n30 {
    margin-right: -30rem !important;
  }
  .me-xxl-n35 {
    margin-right: -35rem !important;
  }
  .me-xxl-n40 {
    margin-right: -40rem !important;
  }
  .me-xxl-n45 {
    margin-right: -45rem !important;
  }
  .me-xxl-n50 {
    margin-right: -50rem !important;
  }
  .mb-xxl-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xxl-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-xxl-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xxl-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-xxl-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-xxl-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-xxl-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-xxl-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-xxl-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-xxl-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-xxl-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-xxl-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-xxl-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-xxl-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-xxl-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-xxl-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-xxl-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-xxl-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-xxl-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-xxl-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-xxl-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-xxl-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-xxl-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-xxl-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-xxl-n1 {
    margin-left: -1rem !important;
  }
  .ms-xxl-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-xxl-n2 {
    margin-left: -2rem !important;
  }
  .ms-xxl-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-xxl-n3 {
    margin-left: -3rem !important;
  }
  .ms-xxl-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-xxl-n4 {
    margin-left: -4rem !important;
  }
  .ms-xxl-n5 {
    margin-left: -5rem !important;
  }
  .ms-xxl-n6 {
    margin-left: -6rem !important;
  }
  .ms-xxl-n7 {
    margin-left: -7rem !important;
  }
  .ms-xxl-n8 {
    margin-left: -8rem !important;
  }
  .ms-xxl-n9 {
    margin-left: -9rem !important;
  }
  .ms-xxl-n10 {
    margin-left: -10rem !important;
  }
  .ms-xxl-n13 {
    margin-left: -13rem !important;
  }
  .ms-xxl-n15 {
    margin-left: -15rem !important;
  }
  .ms-xxl-n20 {
    margin-left: -20rem !important;
  }
  .ms-xxl-n25 {
    margin-left: -25rem !important;
  }
  .ms-xxl-n30 {
    margin-left: -30rem !important;
  }
  .ms-xxl-n35 {
    margin-left: -35rem !important;
  }
  .ms-xxl-n40 {
    margin-left: -40rem !important;
  }
  .ms-xxl-n45 {
    margin-left: -45rem !important;
  }
  .ms-xxl-n50 {
    margin-left: -50rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-0_5 {
    padding: 0.5rem !important;
  }
  .p-xxl-1 {
    padding: 1rem !important;
  }
  .p-xxl-1_5 {
    padding: 1.5rem !important;
  }
  .p-xxl-2 {
    padding: 2rem !important;
  }
  .p-xxl-2_5 {
    padding: 2.5rem !important;
  }
  .p-xxl-3 {
    padding: 3rem !important;
  }
  .p-xxl-3_5 {
    padding: 3.5rem !important;
  }
  .p-xxl-4 {
    padding: 4rem !important;
  }
  .p-xxl-5 {
    padding: 5rem !important;
  }
  .p-xxl-6 {
    padding: 6rem !important;
  }
  .p-xxl-7 {
    padding: 7rem !important;
  }
  .p-xxl-8 {
    padding: 8rem !important;
  }
  .p-xxl-9 {
    padding: 9rem !important;
  }
  .p-xxl-10 {
    padding: 10rem !important;
  }
  .p-xxl-13 {
    padding: 13rem !important;
  }
  .p-xxl-15 {
    padding: 15rem !important;
  }
  .p-xxl-20 {
    padding: 20rem !important;
  }
  .p-xxl-25 {
    padding: 25rem !important;
  }
  .p-xxl-30 {
    padding: 30rem !important;
  }
  .p-xxl-35 {
    padding: 35rem !important;
  }
  .p-xxl-40 {
    padding: 40rem !important;
  }
  .p-xxl-45 {
    padding: 45rem !important;
  }
  .p-xxl-50 {
    padding: 50rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xxl-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xxl-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xxl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xxl-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xxl-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xxl-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xxl-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-xxl-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-xxl-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-xxl-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-xxl-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-xxl-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-xxl-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-xxl-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-xxl-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-xxl-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xxl-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xxl-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xxl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xxl-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xxl-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xxl-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xxl-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xxl-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-xxl-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-xxl-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-xxl-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-xxl-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-xxl-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-xxl-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-xxl-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-xxl-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-1 {
    padding-top: 1rem !important;
  }
  .pt-xxl-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-2 {
    padding-top: 2rem !important;
  }
  .pt-xxl-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 3rem !important;
  }
  .pt-xxl-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-xxl-4 {
    padding-top: 4rem !important;
  }
  .pt-xxl-5 {
    padding-top: 5rem !important;
  }
  .pt-xxl-6 {
    padding-top: 6rem !important;
  }
  .pt-xxl-7 {
    padding-top: 7rem !important;
  }
  .pt-xxl-8 {
    padding-top: 8rem !important;
  }
  .pt-xxl-9 {
    padding-top: 9rem !important;
  }
  .pt-xxl-10 {
    padding-top: 10rem !important;
  }
  .pt-xxl-13 {
    padding-top: 13rem !important;
  }
  .pt-xxl-15 {
    padding-top: 15rem !important;
  }
  .pt-xxl-20 {
    padding-top: 20rem !important;
  }
  .pt-xxl-25 {
    padding-top: 25rem !important;
  }
  .pt-xxl-30 {
    padding-top: 30rem !important;
  }
  .pt-xxl-35 {
    padding-top: 35rem !important;
  }
  .pt-xxl-40 {
    padding-top: 40rem !important;
  }
  .pt-xxl-45 {
    padding-top: 45rem !important;
  }
  .pt-xxl-50 {
    padding-top: 50rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-1 {
    padding-right: 1rem !important;
  }
  .pe-xxl-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-2 {
    padding-right: 2rem !important;
  }
  .pe-xxl-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 3rem !important;
  }
  .pe-xxl-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-xxl-4 {
    padding-right: 4rem !important;
  }
  .pe-xxl-5 {
    padding-right: 5rem !important;
  }
  .pe-xxl-6 {
    padding-right: 6rem !important;
  }
  .pe-xxl-7 {
    padding-right: 7rem !important;
  }
  .pe-xxl-8 {
    padding-right: 8rem !important;
  }
  .pe-xxl-9 {
    padding-right: 9rem !important;
  }
  .pe-xxl-10 {
    padding-right: 10rem !important;
  }
  .pe-xxl-13 {
    padding-right: 13rem !important;
  }
  .pe-xxl-15 {
    padding-right: 15rem !important;
  }
  .pe-xxl-20 {
    padding-right: 20rem !important;
  }
  .pe-xxl-25 {
    padding-right: 25rem !important;
  }
  .pe-xxl-30 {
    padding-right: 30rem !important;
  }
  .pe-xxl-35 {
    padding-right: 35rem !important;
  }
  .pe-xxl-40 {
    padding-right: 40rem !important;
  }
  .pe-xxl-45 {
    padding-right: 45rem !important;
  }
  .pe-xxl-50 {
    padding-right: 50rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 10rem !important;
  }
  .pb-xxl-13 {
    padding-bottom: 13rem !important;
  }
  .pb-xxl-15 {
    padding-bottom: 15rem !important;
  }
  .pb-xxl-20 {
    padding-bottom: 20rem !important;
  }
  .pb-xxl-25 {
    padding-bottom: 25rem !important;
  }
  .pb-xxl-30 {
    padding-bottom: 30rem !important;
  }
  .pb-xxl-35 {
    padding-bottom: 35rem !important;
  }
  .pb-xxl-40 {
    padding-bottom: 40rem !important;
  }
  .pb-xxl-45 {
    padding-bottom: 45rem !important;
  }
  .pb-xxl-50 {
    padding-bottom: 50rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-1 {
    padding-left: 1rem !important;
  }
  .ps-xxl-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-2 {
    padding-left: 2rem !important;
  }
  .ps-xxl-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 3rem !important;
  }
  .ps-xxl-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-xxl-4 {
    padding-left: 4rem !important;
  }
  .ps-xxl-5 {
    padding-left: 5rem !important;
  }
  .ps-xxl-6 {
    padding-left: 6rem !important;
  }
  .ps-xxl-7 {
    padding-left: 7rem !important;
  }
  .ps-xxl-8 {
    padding-left: 8rem !important;
  }
  .ps-xxl-9 {
    padding-left: 9rem !important;
  }
  .ps-xxl-10 {
    padding-left: 10rem !important;
  }
  .ps-xxl-13 {
    padding-left: 13rem !important;
  }
  .ps-xxl-15 {
    padding-left: 15rem !important;
  }
  .ps-xxl-20 {
    padding-left: 20rem !important;
  }
  .ps-xxl-25 {
    padding-left: 25rem !important;
  }
  .ps-xxl-30 {
    padding-left: 30rem !important;
  }
  .ps-xxl-35 {
    padding-left: 35rem !important;
  }
  .ps-xxl-40 {
    padding-left: 40rem !important;
  }
  .ps-xxl-45 {
    padding-left: 45rem !important;
  }
  .ps-xxl-50 {
    padding-left: 50rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/**
 * https://type-scale.com/
 */
@font-face {
  font-family: Chillax;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Chillax-Regular.woff2") format("woff2"), url("../fonts/Chillax-Regular.woff") format("woff"), url("../fonts/Chillax-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Chillax;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Chillax-Medium.woff2") format("woff2"), url("../fonts/Chillax-Medium.woff") format("woff"), url("../fonts/Chillax-Medium.ttf") format("truetype");
  font-display: swap;
}
/*
 Guida ai border radius
  Sono definiti 3 tipologie di border radius. Small, Medium, Large.
  Andrebbero usati in questà modalità:
   - Small : Per elementi piccoli, inline, che occupano 1 o 2 colonne tipo bottoni, badge ecc
   - Medium : Per gli elementi che occupano un po di
     spazio 3, 4, 5, 6 colonne tipo card, accordion, dropdown menu. modali piccoli
   - Large : Per gli elementi larghi 12 colonne
 */
/*
Timings must been set in seconds
*/
:root {
  --smx-base-transition-fast: ease-in-out 0.3s;
  --smx-base-transition-normal: ease-in-out 0.5s;
  --smx-base-transition-slow: ease-in-out 1s;
  --smx-mobile-breakpoint-down: md;
  --smx-mobile-breakpoint-up: lg;
  --smx-timing-fast: 0.3;
  --smx-timing-normal: 0.5;
  --smx-timing-slow: 1;
  --smx-breakpoint-xs: 0;
  --smx-breakpoint-sm: 576px;
  --smx-breakpoint-md: 768px;
  --smx-breakpoint-lg: 992px;
  --smx-breakpoint-xl: 1200px;
  --smx-breakpoint-xxl: 1500px;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-5-14 9:55:32
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 */
@-webkit-keyframes heartbeat {
  from {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  10% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
  }
  17% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
  }
  33% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
  }
  45% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartbeat {
  from {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  10% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
  }
  17% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
  }
  33% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
  }
  45% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartbeat {
  from {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  10% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
  }
  17% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
  }
  33% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
  }
  45% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 100%;
  border: 0;
  vertical-align: baseline;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

html,
body,
div,
header,
nav,
ul,
li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

b,
strong {
  font-weight: bold;
}

* {
  font-size: 1em;
  text-decoration: none;
}

sup {
  vertical-align: super;
  font-size: 0.83em;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: unset;
}
a:hover, a:visited {
  color: unset;
}

button {
  background: transparent;
  border: none;
}

a:active,
p:active,
h1:active,
h2:active,
h3:active,
h4:active,
h5:active,
h6:active,
li:active,
select:active,
button:active,
video:active,
input:active,
textarea:active,
div:active,
picture:active,
img:active {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
a:focus-within,
p:focus-within,
h1:focus-within,
h2:focus-within,
h3:focus-within,
h4:focus-within,
h5:focus-within,
h6:focus-within,
li:focus-within,
select:focus-within,
button:focus-within,
video:focus-within,
input:focus-within,
textarea:focus-within,
div:focus-within,
picture:focus-within,
img:focus-within {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
a:focus,
p:focus,
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus,
li:focus,
select:focus,
button:focus,
video:focus,
input:focus,
textarea:focus,
div:focus,
picture:focus,
img:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
a:visited,
p:visited,
h1:visited,
h2:visited,
h3:visited,
h4:visited,
h5:visited,
h6:visited,
li:visited,
select:visited,
button:visited,
video:visited,
input:visited,
textarea:visited,
div:visited,
picture:visited,
img:visited {
  color: inherit;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
  width: auto !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  white-space: normal !important;
  clip: auto !important;
  clip-path: none !important;
}

.has-white-color {
  color: #fff;
}

.has-white-background-color {
  background-color: #fff;
}

.white {
  color: #fff;
}
.white:visited {
  color: #fff;
}

.white-darken {
  color: rgb(229.5, 229.5, 229.5);
}

.bkg-white {
  background-color: #fff;
}

.bkg-white-darken {
  background-color: rgb(229.5, 229.5, 229.5);
}

.has-black-color {
  color: #000;
}

.has-black-background-color {
  background-color: #000;
}

.black {
  color: #000;
}
.black:visited {
  color: #000;
}

.black-darken {
  color: hsl(0, 0%, -10%);
}

.bkg-black {
  background-color: #000;
}

.bkg-black-darken {
  background-color: hsl(0, 0%, -10%);
}

.has-primary-color {
  color: #2b505c;
}

.has-primary-background-color {
  background-color: #2b505c;
}

.primary {
  color: #2b505c;
}
.primary:visited {
  color: #2b505c;
}

.primary-darken {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}

.bkg-primary {
  background-color: #2b505c;
}

.bkg-primary-darken {
  background-color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}

.has-secondary-color {
  color: #54bbab;
}

.has-secondary-background-color {
  background-color: #54bbab;
}

.secondary {
  color: #54bbab;
}
.secondary:visited {
  color: #54bbab;
}

.secondary-darken {
  color: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}

.bkg-secondary {
  background-color: #54bbab;
}

.bkg-secondary-darken {
  background-color: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}

.has-secondary-light-color {
  color: #6ecbbd;
}

.has-secondary-light-background-color {
  background-color: #6ecbbd;
}

.secondary-light {
  color: #6ecbbd;
}
.secondary-light:visited {
  color: #6ecbbd;
}

.secondary-light-darken {
  color: rgb(72.461928934, 189.538071066, 171.9137055838);
}

.bkg-secondary-light {
  background-color: #6ecbbd;
}

.bkg-secondary-light-darken {
  background-color: rgb(72.461928934, 189.538071066, 171.9137055838);
}

.has-secondary-dark-color {
  color: #289780;
}

.has-secondary-dark-background-color {
  background-color: #289780;
}

.secondary-dark {
  color: #289780;
}
.secondary-dark:visited {
  color: #289780;
}

.secondary-dark-darken {
  color: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}

.bkg-secondary-dark {
  background-color: #289780;
}

.bkg-secondary-dark-darken {
  background-color: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}

.has-typography-color {
  color: #2b505c;
}

.has-typography-background-color {
  background-color: #2b505c;
}

.typography {
  color: #2b505c;
}
.typography:visited {
  color: #2b505c;
}

.typography-darken {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}

.bkg-typography {
  background-color: #2b505c;
}

.bkg-typography-darken {
  background-color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}

.has-light-grey-color {
  color: #eff4f5;
}

.has-light-grey-background-color {
  background-color: #eff4f5;
}

.light-grey {
  color: #eff4f5;
}
.light-grey:visited {
  color: #eff4f5;
}

.light-grey-darken {
  color: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}

.bkg-light-grey {
  background-color: #eff4f5;
}

.bkg-light-grey-darken {
  background-color: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}

.grain,
.grain-background {
  position: relative;
  overflow: hidden;
}
.grain::after,
.grain-background::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/grain-3.jpg");
  background-size: 20%;
  opacity: 0.7;
  pointer-events: none;
  content: "";
  mix-blend-mode: luminosity;
}

.grain-background {
  background: radial-gradient(farthest-corner at -100% 190%, #54bbab, #2b505c) !important;
  mix-blend-mode: multiply;
}

h1, .heading-1, .has-heading-1-font-size {
  font-family: "Chillax", sans-serif;
  font-size: 4.5rem;
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 0.2em;
  letter-spacing: -0.05em;
}
@media (min-width: 768px) {
  h1, .heading-1, .has-heading-1-font-size {
    font-size: 5rem;
  }
}
@media (min-width: 992px) {
  h1, .heading-1, .has-heading-1-font-size {
    font-size: 6rem;
  }
}
@media (min-width: 768px) {
  h1, .heading-1, .has-heading-1-font-size {
    line-height: 1em;
  }
}
@media (min-width: 992px) {
  h1, .heading-1, .has-heading-1-font-size {
    line-height: 1em;
  }
}
h1.atk-breadcrumbs *, .heading-1.atk-breadcrumbs *, .has-heading-1-font-size.atk-breadcrumbs * {
  font-family: "Chillax", sans-serif;
  font-size: 4.5rem;
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 0.2em;
  letter-spacing: -0.05em;
}
@media (min-width: 768px) {
  h1.atk-breadcrumbs *, .heading-1.atk-breadcrumbs *, .has-heading-1-font-size.atk-breadcrumbs * {
    font-size: 5rem;
  }
}
@media (min-width: 992px) {
  h1.atk-breadcrumbs *, .heading-1.atk-breadcrumbs *, .has-heading-1-font-size.atk-breadcrumbs * {
    font-size: 6rem;
  }
}
@media (min-width: 768px) {
  h1.atk-breadcrumbs *, .heading-1.atk-breadcrumbs *, .has-heading-1-font-size.atk-breadcrumbs * {
    line-height: 1em;
  }
}
@media (min-width: 992px) {
  h1.atk-breadcrumbs *, .heading-1.atk-breadcrumbs *, .has-heading-1-font-size.atk-breadcrumbs * {
    line-height: 1em;
  }
}

h2, .heading-2, .has-heading-2-font-size {
  font-family: "Chillax", sans-serif;
  font-size: 3.1rem;
  line-height: 0.95em;
  font-weight: 500;
  margin-bottom: 0.25em;
  letter-spacing: -0.05em;
}
@media (min-width: 768px) {
  h2, .heading-2, .has-heading-2-font-size {
    font-size: 3.3rem;
  }
}
@media (min-width: 992px) {
  h2, .heading-2, .has-heading-2-font-size {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) {
  h2, .heading-2, .has-heading-2-font-size {
    line-height: 0.95em;
  }
}
@media (min-width: 992px) {
  h2, .heading-2, .has-heading-2-font-size {
    line-height: 0.95em;
  }
}
h2.atk-breadcrumbs *, .heading-2.atk-breadcrumbs *, .has-heading-2-font-size.atk-breadcrumbs * {
  font-family: "Chillax", sans-serif;
  font-size: 3.1rem;
  line-height: 0.95em;
  font-weight: 500;
  margin-bottom: 0.25em;
  letter-spacing: -0.05em;
}
@media (min-width: 768px) {
  h2.atk-breadcrumbs *, .heading-2.atk-breadcrumbs *, .has-heading-2-font-size.atk-breadcrumbs * {
    font-size: 3.3rem;
  }
}
@media (min-width: 992px) {
  h2.atk-breadcrumbs *, .heading-2.atk-breadcrumbs *, .has-heading-2-font-size.atk-breadcrumbs * {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) {
  h2.atk-breadcrumbs *, .heading-2.atk-breadcrumbs *, .has-heading-2-font-size.atk-breadcrumbs * {
    line-height: 0.95em;
  }
}
@media (min-width: 992px) {
  h2.atk-breadcrumbs *, .heading-2.atk-breadcrumbs *, .has-heading-2-font-size.atk-breadcrumbs * {
    line-height: 0.95em;
  }
}

h3, .heading-3, .has-heading-3-font-size {
  font-family: "Chillax", sans-serif;
  font-size: 2.3rem;
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 0.3em;
}
@media (min-width: 768px) {
  h3, .heading-3, .has-heading-3-font-size {
    font-size: 2.4rem;
  }
}
@media (min-width: 992px) {
  h3, .heading-3, .has-heading-3-font-size {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  h3, .heading-3, .has-heading-3-font-size {
    line-height: 1em;
  }
}
@media (min-width: 992px) {
  h3, .heading-3, .has-heading-3-font-size {
    line-height: 1em;
  }
}
h3.atk-breadcrumbs *, .heading-3.atk-breadcrumbs *, .has-heading-3-font-size.atk-breadcrumbs * {
  font-family: "Chillax", sans-serif;
  font-size: 2.3rem;
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 0.3em;
}
@media (min-width: 768px) {
  h3.atk-breadcrumbs *, .heading-3.atk-breadcrumbs *, .has-heading-3-font-size.atk-breadcrumbs * {
    font-size: 2.4rem;
  }
}
@media (min-width: 992px) {
  h3.atk-breadcrumbs *, .heading-3.atk-breadcrumbs *, .has-heading-3-font-size.atk-breadcrumbs * {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  h3.atk-breadcrumbs *, .heading-3.atk-breadcrumbs *, .has-heading-3-font-size.atk-breadcrumbs * {
    line-height: 1em;
  }
}
@media (min-width: 992px) {
  h3.atk-breadcrumbs *, .heading-3.atk-breadcrumbs *, .has-heading-3-font-size.atk-breadcrumbs * {
    line-height: 1em;
  }
}

p, div, ul, body, .text-1, .has-text-1-font-size {
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
  line-height: 1.1em;
  font-weight: 500;
}
@media (min-width: 768px) {
  p, div, ul, body, .text-1, .has-text-1-font-size {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  p, div, ul, body, .text-1, .has-text-1-font-size {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  p, div, ul, body, .text-1, .has-text-1-font-size {
    line-height: 1.1em;
  }
}
@media (min-width: 992px) {
  p, div, ul, body, .text-1, .has-text-1-font-size {
    line-height: 1.1em;
  }
}
p.atk-breadcrumbs *, div.atk-breadcrumbs *, ul.atk-breadcrumbs *, body.atk-breadcrumbs *, .text-1.atk-breadcrumbs *, .has-text-1-font-size.atk-breadcrumbs * {
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
  line-height: 1.1em;
  font-weight: 500;
}
@media (min-width: 768px) {
  p.atk-breadcrumbs *, div.atk-breadcrumbs *, ul.atk-breadcrumbs *, body.atk-breadcrumbs *, .text-1.atk-breadcrumbs *, .has-text-1-font-size.atk-breadcrumbs * {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  p.atk-breadcrumbs *, div.atk-breadcrumbs *, ul.atk-breadcrumbs *, body.atk-breadcrumbs *, .text-1.atk-breadcrumbs *, .has-text-1-font-size.atk-breadcrumbs * {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  p.atk-breadcrumbs *, div.atk-breadcrumbs *, ul.atk-breadcrumbs *, body.atk-breadcrumbs *, .text-1.atk-breadcrumbs *, .has-text-1-font-size.atk-breadcrumbs * {
    line-height: 1.1em;
  }
}
@media (min-width: 992px) {
  p.atk-breadcrumbs *, div.atk-breadcrumbs *, ul.atk-breadcrumbs *, body.atk-breadcrumbs *, .text-1.atk-breadcrumbs *, .has-text-1-font-size.atk-breadcrumbs * {
    line-height: 1.1em;
  }
}

.text-2, .wpcf7 .wpcf7-response-output, .has-text-2-font-size {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  line-height: 1.1em;
  font-weight: 500;
}
@media (min-width: 768px) {
  .text-2, .wpcf7 .wpcf7-response-output, .has-text-2-font-size {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .text-2, .wpcf7 .wpcf7-response-output, .has-text-2-font-size {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .text-2, .wpcf7 .wpcf7-response-output, .has-text-2-font-size {
    line-height: 1.1em;
  }
}
@media (min-width: 992px) {
  .text-2, .wpcf7 .wpcf7-response-output, .has-text-2-font-size {
    line-height: 1.1em;
  }
}
.text-2.atk-breadcrumbs *, .wpcf7 .atk-breadcrumbs.wpcf7-response-output *, .has-text-2-font-size.atk-breadcrumbs * {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  line-height: 1.1em;
  font-weight: 500;
}
@media (min-width: 768px) {
  .text-2.atk-breadcrumbs *, .wpcf7 .atk-breadcrumbs.wpcf7-response-output *, .has-text-2-font-size.atk-breadcrumbs * {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .text-2.atk-breadcrumbs *, .wpcf7 .atk-breadcrumbs.wpcf7-response-output *, .has-text-2-font-size.atk-breadcrumbs * {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .text-2.atk-breadcrumbs *, .wpcf7 .atk-breadcrumbs.wpcf7-response-output *, .has-text-2-font-size.atk-breadcrumbs * {
    line-height: 1.1em;
  }
}
@media (min-width: 992px) {
  .text-2.atk-breadcrumbs *, .wpcf7 .atk-breadcrumbs.wpcf7-response-output *, .has-text-2-font-size.atk-breadcrumbs * {
    line-height: 1.1em;
  }
}

body,
.editor-styles-wrapper {
  --wp--preset--font-size--heading-1: 4.5rem;
  --wp--preset--font-size--heading-2: 3.1rem;
  --wp--preset--font-size--heading-3: 2.3rem;
  --wp--preset--font-size--text-1: 1.7rem;
  --wp--preset--font-size--text-2: 1.5rem;
}
@media (min-width: 768px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--heading-1: 5rem;
  }
}
@media (min-width: 992px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--heading-1: 6rem;
  }
}
@media (min-width: 768px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--heading-2: 3.3rem;
  }
}
@media (min-width: 992px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--heading-2: 3.5rem;
  }
}
@media (min-width: 768px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--heading-3: 2.4rem;
  }
}
@media (min-width: 992px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--heading-3: 2.5rem;
  }
}
@media (min-width: 768px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--text-1: 1.8rem;
  }
}
@media (min-width: 992px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--text-1: 1.8rem;
  }
}
@media (min-width: 768px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--text-2: 1.6rem;
  }
}
@media (min-width: 992px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--text-2: 1.6rem;
  }
}

.text-align-center,
.is-content-justification-center {
  text-align: center;
}
.text-align-center > *,
.is-content-justification-center > * {
  text-align: center;
}

.text-align-left,
.is-content-justification-left {
  text-align: left;
}
.text-align-left > *,
.is-content-justification-left > * {
  text-align: left;
}

.text-align-right,
.is-content-justification-right {
  text-align: right;
}
.text-align-right > *,
.is-content-justification-right > * {
  text-align: right;
}

.text-align-xs-left,
.is-content-justification-xs-left {
  text-align: left;
}
.text-align-xs-left > *,
.is-content-justification-xs-left > * {
  text-align: left;
}

.text-align-xs-right,
.is-content-justification-xs-right {
  text-align: right;
}
.text-align-xs-right > *,
.is-content-justification-xs-right > * {
  text-align: right;
}

.text-align-xs-center,
.is-content-justification-xs-center {
  text-align: center;
}
.text-align-xs-center > *,
.is-content-justification-xs-center > * {
  text-align: center;
}

@media (min-width: 576px) {
  .text-align-sm-left,
  .is-content-justification-sm-left {
    text-align: left;
  }
  .text-align-sm-left > *,
  .is-content-justification-sm-left > * {
    text-align: left;
  }
  .text-align-sm-right,
  .is-content-justification-sm-right {
    text-align: right;
  }
  .text-align-sm-right > *,
  .is-content-justification-sm-right > * {
    text-align: right;
  }
  .text-align-sm-center,
  .is-content-justification-sm-center {
    text-align: center;
  }
  .text-align-sm-center > *,
  .is-content-justification-sm-center > * {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .text-align-md-left,
  .is-content-justification-md-left {
    text-align: left;
  }
  .text-align-md-left > *,
  .is-content-justification-md-left > * {
    text-align: left;
  }
  .text-align-md-right,
  .is-content-justification-md-right {
    text-align: right;
  }
  .text-align-md-right > *,
  .is-content-justification-md-right > * {
    text-align: right;
  }
  .text-align-md-center,
  .is-content-justification-md-center {
    text-align: center;
  }
  .text-align-md-center > *,
  .is-content-justification-md-center > * {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .text-align-lg-left,
  .is-content-justification-lg-left {
    text-align: left;
  }
  .text-align-lg-left > *,
  .is-content-justification-lg-left > * {
    text-align: left;
  }
  .text-align-lg-right,
  .is-content-justification-lg-right {
    text-align: right;
  }
  .text-align-lg-right > *,
  .is-content-justification-lg-right > * {
    text-align: right;
  }
  .text-align-lg-center,
  .is-content-justification-lg-center {
    text-align: center;
  }
  .text-align-lg-center > *,
  .is-content-justification-lg-center > * {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .text-align-xl-left,
  .is-content-justification-xl-left {
    text-align: left;
  }
  .text-align-xl-left > *,
  .is-content-justification-xl-left > * {
    text-align: left;
  }
  .text-align-xl-right,
  .is-content-justification-xl-right {
    text-align: right;
  }
  .text-align-xl-right > *,
  .is-content-justification-xl-right > * {
    text-align: right;
  }
  .text-align-xl-center,
  .is-content-justification-xl-center {
    text-align: center;
  }
  .text-align-xl-center > *,
  .is-content-justification-xl-center > * {
    text-align: center;
  }
}
@media (min-width: 1500px) {
  .text-align-xxl-left,
  .is-content-justification-xxl-left {
    text-align: left;
  }
  .text-align-xxl-left > *,
  .is-content-justification-xxl-left > * {
    text-align: left;
  }
  .text-align-xxl-right,
  .is-content-justification-xxl-right {
    text-align: right;
  }
  .text-align-xxl-right > *,
  .is-content-justification-xxl-right > * {
    text-align: right;
  }
  .text-align-xxl-center,
  .is-content-justification-xxl-center {
    text-align: center;
  }
  .text-align-xxl-center > *,
  .is-content-justification-xxl-center > * {
    text-align: center;
  }
}
.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.underline {
  text-decoration: underline;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.dark {
  font-weight: 800;
}

ul.list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.2rem;
}
ul.list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #54bbab;
  border-radius: 50%;
  content: "";
}
@media (max-width: 767.98px) {
  ul.list li::before {
    top: 0.4em;
  }
}
@media (max-width: 575.98px) {
  ul.list li::before {
    top: 0.5em;
  }
}

ul.list-small li {
  position: relative;
  margin: 0.5rem 0;
  padding-left: 1.8rem;
}
ul.list-small li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1rem;
  height: 1rem;
  background-image: url("../images/dot.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
ul.list-small.negative li::before {
  background-image: url("../images/dot-white.svg");
}
@media (max-width: 767.98px) {
  ul.list-small li::before {
    top: 0.4em;
  }
}
@media (max-width: 575.98px) {
  ul.list-small li::before {
    top: 0.6em;
  }
}

ul.list-dot {
  margin: 3rem 0;
}
ul.list-dot li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 3.5rem;
}
ul.list-dot li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2rem;
  height: 2rem;
  background-image: url("../images/dot.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  ul.list-dot li::before {
    top: 0.4em;
  }
}
@media (max-width: 575.98px) {
  ul.list-dot li {
    padding-left: 2.5rem;
  }
  ul.list-dot li::before {
    top: 0.5em;
    width: 1.6rem;
    height: 1.6rem;
  }
}

ol {
  list-style: decimal;
}
ol li {
  margin-left: 2rem;
  padding: 0.4rem 0;
}

section p {
  margin-bottom: 2rem;
}
section p:has(+ ul) {
  margin-bottom: 0;
}
section ul:not(.splide__pagination) {
  margin-bottom: 2rem;
}
section ul:not(.splide__pagination) li {
  position: relative;
  margin-top: 0.5rem;
  padding-left: 0.8em;
}
section ul:not(.splide__pagination) li::before {
  position: absolute;
  top: 0.4em;
  left: 0.1rem;
  display: inline-block;
  width: 0.25em;
  height: 0.25em;
  background-color: #2b505c;
  border-radius: 50%;
  content: "";
}
section.has-background:not(.has-light-grey-background-color) ul li::before {
  background-color: white;
}

.rank-math-breadcrumb p {
  font-family: "Chillax";
  font-size: 1.8rem;
}

.as-full-right {
  width: calc(100% + var(--smx-container-margin) + 1rem);
  margin-right: calc(var(--smx-container-margin-negative) - 1rem);
}

.as-full-left {
  width: calc(100% + var(--smx-container-margin) + 1rem);
  margin-left: calc(var(--smx-container-margin-negative) - 1rem);
}

.as-full-xs-right {
  width: calc(100% + var(--smx-container-margin) + 1rem);
  margin-right: calc(var(--smx-container-margin-negative) - 1rem);
}

.as-full-xs-left {
  width: calc(100% + var(--smx-container-margin) + 1rem);
  margin-left: calc(var(--smx-container-margin-negative) - 1rem);
}

@media (min-width: 576px) {
  .as-full-sm-right {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-sm-left {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 768px) {
  .as-full-md-right {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-md-left {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 992px) {
  .as-full-lg-right {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-lg-left {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 1200px) {
  .as-full-xl-right {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-xl-left {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 1500px) {
  .as-full-xxl-right {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-xxl-left {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
.px-0 .as-full-right {
  width: calc(100% + var(--smx-container-margin) + 0);
  margin-right: calc(var(--smx-container-margin-negative) - 0);
}
.px-0 .as-full-left {
  width: calc(100% + var(--smx-container-margin) + 0);
  margin-left: calc(var(--smx-container-margin-negative) - 0);
}

body {
  --smx--grid--gutter: 2rem;
  --vh: 1vh;
  --smx-breakpoint-xs: 0;
  --smx-breakpoint-sm: 576px;
  --smx-breakpoint-md: 768px;
  --smx-breakpoint-lg: 992px;
  --smx-breakpoint-xl: 1200px;
  --smx-breakpoint-xxl: 1500px;
}
@media (min-width: 576px) {
  body {
    --smx-container-width: 768px;
    --wp--style--global--content-size: 768px;
    --wp--style--global--wide-size: 768px;
    --smx--column--width: calc((var(--smx-container-width) / 12) - 2rem);
    --smx--column--with--gutter--width: calc((var(--smx-container-width) - 2rem) / 12);
  }
}
@media (min-width: 768px) {
  body {
    --smx-container-width: 992px;
    --wp--style--global--content-size: 992px;
    --wp--style--global--wide-size: 992px;
    --smx--column--width: calc((var(--smx-container-width) / 12) - 2rem);
    --smx--column--with--gutter--width: calc((var(--smx-container-width) - 2rem) / 12);
  }
}
@media (min-width: 992px) {
  body {
    --smx-container-width: 1200px;
    --wp--style--global--content-size: 1200px;
    --wp--style--global--wide-size: 1200px;
    --smx--column--width: calc((var(--smx-container-width) / 12) - 2rem);
    --smx--column--with--gutter--width: calc((var(--smx-container-width) - 2rem) / 12);
  }
}
@media (min-width: 1200px) {
  body {
    --smx-container-width: 1500px;
    --wp--style--global--content-size: 1500px;
    --wp--style--global--wide-size: 1500px;
    --smx--column--width: calc((var(--smx-container-width) / 12) - 2rem);
    --smx--column--with--gutter--width: calc((var(--smx-container-width) - 2rem) / 12);
  }
}
@media (min-width: 1500px) {
  body {
    --smx-container-width: 1550px;
    --wp--style--global--content-size: 1550px;
    --wp--style--global--wide-size: 1550px;
    --smx--column--width: calc((var(--smx-container-width) / 12) - 2rem);
    --smx--column--with--gutter--width: calc((var(--smx-container-width) - 2rem) / 12);
  }
}

.container-margin-left {
  margin-left: calc(var(--smx-container-margin) + 2rem / 2);
}

.container-padding-left {
  padding-left: calc(var(--smx-container-margin) + 2rem / 2);
}

.container-margin-right {
  margin-right: calc(var(--smx-container-margin) + 2rem / 2);
}

.container-padding-right {
  padding-right: calc(var(--smx-container-margin) + 2rem / 2);
}

.pl-column-width-1 {
  padding-left: calc(var(--smx--column--width) * 1 + 2rem);
}

.pr-column-width-1 {
  padding-right: calc(var(--smx--column--width) * 1 + 2rem);
}

.min-w-col-1 {
  min-width: calc(var(--smx--column--with--gutter--width) * 1);
}

.ml-n-col-1 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 1 * -1);
}

.pl-column-width-2 {
  padding-left: calc(var(--smx--column--width) * 2 + 2rem);
}

.pr-column-width-2 {
  padding-right: calc(var(--smx--column--width) * 2 + 2rem);
}

.min-w-col-2 {
  min-width: calc(var(--smx--column--with--gutter--width) * 2);
}

.ml-n-col-2 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 2 * -1);
}

.pl-column-width-3 {
  padding-left: calc(var(--smx--column--width) * 3 + 2rem);
}

.pr-column-width-3 {
  padding-right: calc(var(--smx--column--width) * 3 + 2rem);
}

.min-w-col-3 {
  min-width: calc(var(--smx--column--with--gutter--width) * 3);
}

.ml-n-col-3 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 3 * -1);
}

.pl-column-width-4 {
  padding-left: calc(var(--smx--column--width) * 4 + 2rem);
}

.pr-column-width-4 {
  padding-right: calc(var(--smx--column--width) * 4 + 2rem);
}

.min-w-col-4 {
  min-width: calc(var(--smx--column--with--gutter--width) * 4);
}

.ml-n-col-4 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 4 * -1);
}

.pl-column-width-5 {
  padding-left: calc(var(--smx--column--width) * 5 + 2rem);
}

.pr-column-width-5 {
  padding-right: calc(var(--smx--column--width) * 5 + 2rem);
}

.min-w-col-5 {
  min-width: calc(var(--smx--column--with--gutter--width) * 5);
}

.ml-n-col-5 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 5 * -1);
}

.pl-column-width-6 {
  padding-left: calc(var(--smx--column--width) * 6 + 2rem);
}

.pr-column-width-6 {
  padding-right: calc(var(--smx--column--width) * 6 + 2rem);
}

.min-w-col-6 {
  min-width: calc(var(--smx--column--with--gutter--width) * 6);
}

.ml-n-col-6 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 6 * -1);
}

.pl-column-width-7 {
  padding-left: calc(var(--smx--column--width) * 7 + 2rem);
}

.pr-column-width-7 {
  padding-right: calc(var(--smx--column--width) * 7 + 2rem);
}

.min-w-col-7 {
  min-width: calc(var(--smx--column--with--gutter--width) * 7);
}

.ml-n-col-7 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 7 * -1);
}

.pl-column-width-8 {
  padding-left: calc(var(--smx--column--width) * 8 + 2rem);
}

.pr-column-width-8 {
  padding-right: calc(var(--smx--column--width) * 8 + 2rem);
}

.min-w-col-8 {
  min-width: calc(var(--smx--column--with--gutter--width) * 8);
}

.ml-n-col-8 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 8 * -1);
}

.pl-column-width-9 {
  padding-left: calc(var(--smx--column--width) * 9 + 2rem);
}

.pr-column-width-9 {
  padding-right: calc(var(--smx--column--width) * 9 + 2rem);
}

.min-w-col-9 {
  min-width: calc(var(--smx--column--with--gutter--width) * 9);
}

.ml-n-col-9 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 9 * -1);
}

.pl-column-width-10 {
  padding-left: calc(var(--smx--column--width) * 10 + 2rem);
}

.pr-column-width-10 {
  padding-right: calc(var(--smx--column--width) * 10 + 2rem);
}

.min-w-col-10 {
  min-width: calc(var(--smx--column--with--gutter--width) * 10);
}

.ml-n-col-10 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 10 * -1);
}

.pl-column-width-11 {
  padding-left: calc(var(--smx--column--width) * 11 + 2rem);
}

.pr-column-width-11 {
  padding-right: calc(var(--smx--column--width) * 11 + 2rem);
}

.min-w-col-11 {
  min-width: calc(var(--smx--column--with--gutter--width) * 11);
}

.ml-n-col-11 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 11 * -1);
}

.pl-column-width-12 {
  padding-left: calc(var(--smx--column--width) * 12 + 2rem);
}

.pr-column-width-12 {
  padding-right: calc(var(--smx--column--width) * 12 + 2rem);
}

.min-w-col-12 {
  min-width: calc(var(--smx--column--with--gutter--width) * 12);
}

.ml-n-col-12 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 12 * -1);
}

.pl-column-width-xs-1 {
  padding-left: calc(var(--smx--column--width) * 1 + 2rem);
}

.pr-column-width-xs-1 {
  padding-right: calc(var(--smx--column--width) * 1 + 2rem);
}

.min-w-col-xs-1 {
  min-width: calc(var(--smx--column--with--gutter--width) * 1);
}

.ml-xs-n-col-1 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 1 * -1);
}

.pl-column-width-xs-2 {
  padding-left: calc(var(--smx--column--width) * 2 + 2rem);
}

.pr-column-width-xs-2 {
  padding-right: calc(var(--smx--column--width) * 2 + 2rem);
}

.min-w-col-xs-2 {
  min-width: calc(var(--smx--column--with--gutter--width) * 2);
}

.ml-xs-n-col-2 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 2 * -1);
}

.pl-column-width-xs-3 {
  padding-left: calc(var(--smx--column--width) * 3 + 2rem);
}

.pr-column-width-xs-3 {
  padding-right: calc(var(--smx--column--width) * 3 + 2rem);
}

.min-w-col-xs-3 {
  min-width: calc(var(--smx--column--with--gutter--width) * 3);
}

.ml-xs-n-col-3 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 3 * -1);
}

.pl-column-width-xs-4 {
  padding-left: calc(var(--smx--column--width) * 4 + 2rem);
}

.pr-column-width-xs-4 {
  padding-right: calc(var(--smx--column--width) * 4 + 2rem);
}

.min-w-col-xs-4 {
  min-width: calc(var(--smx--column--with--gutter--width) * 4);
}

.ml-xs-n-col-4 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 4 * -1);
}

.pl-column-width-xs-5 {
  padding-left: calc(var(--smx--column--width) * 5 + 2rem);
}

.pr-column-width-xs-5 {
  padding-right: calc(var(--smx--column--width) * 5 + 2rem);
}

.min-w-col-xs-5 {
  min-width: calc(var(--smx--column--with--gutter--width) * 5);
}

.ml-xs-n-col-5 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 5 * -1);
}

.pl-column-width-xs-6 {
  padding-left: calc(var(--smx--column--width) * 6 + 2rem);
}

.pr-column-width-xs-6 {
  padding-right: calc(var(--smx--column--width) * 6 + 2rem);
}

.min-w-col-xs-6 {
  min-width: calc(var(--smx--column--with--gutter--width) * 6);
}

.ml-xs-n-col-6 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 6 * -1);
}

.pl-column-width-xs-7 {
  padding-left: calc(var(--smx--column--width) * 7 + 2rem);
}

.pr-column-width-xs-7 {
  padding-right: calc(var(--smx--column--width) * 7 + 2rem);
}

.min-w-col-xs-7 {
  min-width: calc(var(--smx--column--with--gutter--width) * 7);
}

.ml-xs-n-col-7 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 7 * -1);
}

.pl-column-width-xs-8 {
  padding-left: calc(var(--smx--column--width) * 8 + 2rem);
}

.pr-column-width-xs-8 {
  padding-right: calc(var(--smx--column--width) * 8 + 2rem);
}

.min-w-col-xs-8 {
  min-width: calc(var(--smx--column--with--gutter--width) * 8);
}

.ml-xs-n-col-8 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 8 * -1);
}

.pl-column-width-xs-9 {
  padding-left: calc(var(--smx--column--width) * 9 + 2rem);
}

.pr-column-width-xs-9 {
  padding-right: calc(var(--smx--column--width) * 9 + 2rem);
}

.min-w-col-xs-9 {
  min-width: calc(var(--smx--column--with--gutter--width) * 9);
}

.ml-xs-n-col-9 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 9 * -1);
}

.pl-column-width-xs-10 {
  padding-left: calc(var(--smx--column--width) * 10 + 2rem);
}

.pr-column-width-xs-10 {
  padding-right: calc(var(--smx--column--width) * 10 + 2rem);
}

.min-w-col-xs-10 {
  min-width: calc(var(--smx--column--with--gutter--width) * 10);
}

.ml-xs-n-col-10 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 10 * -1);
}

.pl-column-width-xs-11 {
  padding-left: calc(var(--smx--column--width) * 11 + 2rem);
}

.pr-column-width-xs-11 {
  padding-right: calc(var(--smx--column--width) * 11 + 2rem);
}

.min-w-col-xs-11 {
  min-width: calc(var(--smx--column--with--gutter--width) * 11);
}

.ml-xs-n-col-11 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 11 * -1);
}

.pl-column-width-xs-12 {
  padding-left: calc(var(--smx--column--width) * 12 + 2rem);
}

.pr-column-width-xs-12 {
  padding-right: calc(var(--smx--column--width) * 12 + 2rem);
}

.min-w-col-xs-12 {
  min-width: calc(var(--smx--column--with--gutter--width) * 12);
}

.ml-xs-n-col-12 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 12 * -1);
}

.as-full-right-xs {
  width: calc(100% + var(--smx-container-margin) + 1rem);
  margin-right: calc(var(--smx-container-margin-negative) - 1rem);
}

.as-full-left-xs {
  width: calc(100% + var(--smx-container-margin) + 1rem);
  margin-left: calc(var(--smx-container-margin-negative) - 1rem);
}

@media (min-width: 576px) {
  .pl-column-width-sm-1 {
    padding-left: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .pr-column-width-sm-1 {
    padding-right: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .min-w-col-sm-1 {
    min-width: calc(var(--smx--column--with--gutter--width) * 1);
  }
  .ml-sm-n-col-1 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 1 * -1);
  }
  .pl-column-width-sm-2 {
    padding-left: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .pr-column-width-sm-2 {
    padding-right: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .min-w-col-sm-2 {
    min-width: calc(var(--smx--column--with--gutter--width) * 2);
  }
  .ml-sm-n-col-2 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 2 * -1);
  }
  .pl-column-width-sm-3 {
    padding-left: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .pr-column-width-sm-3 {
    padding-right: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .min-w-col-sm-3 {
    min-width: calc(var(--smx--column--with--gutter--width) * 3);
  }
  .ml-sm-n-col-3 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 3 * -1);
  }
  .pl-column-width-sm-4 {
    padding-left: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .pr-column-width-sm-4 {
    padding-right: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .min-w-col-sm-4 {
    min-width: calc(var(--smx--column--with--gutter--width) * 4);
  }
  .ml-sm-n-col-4 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 4 * -1);
  }
  .pl-column-width-sm-5 {
    padding-left: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .pr-column-width-sm-5 {
    padding-right: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .min-w-col-sm-5 {
    min-width: calc(var(--smx--column--with--gutter--width) * 5);
  }
  .ml-sm-n-col-5 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 5 * -1);
  }
  .pl-column-width-sm-6 {
    padding-left: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .pr-column-width-sm-6 {
    padding-right: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .min-w-col-sm-6 {
    min-width: calc(var(--smx--column--with--gutter--width) * 6);
  }
  .ml-sm-n-col-6 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 6 * -1);
  }
  .pl-column-width-sm-7 {
    padding-left: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .pr-column-width-sm-7 {
    padding-right: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .min-w-col-sm-7 {
    min-width: calc(var(--smx--column--with--gutter--width) * 7);
  }
  .ml-sm-n-col-7 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 7 * -1);
  }
  .pl-column-width-sm-8 {
    padding-left: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .pr-column-width-sm-8 {
    padding-right: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .min-w-col-sm-8 {
    min-width: calc(var(--smx--column--with--gutter--width) * 8);
  }
  .ml-sm-n-col-8 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 8 * -1);
  }
  .pl-column-width-sm-9 {
    padding-left: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .pr-column-width-sm-9 {
    padding-right: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .min-w-col-sm-9 {
    min-width: calc(var(--smx--column--with--gutter--width) * 9);
  }
  .ml-sm-n-col-9 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 9 * -1);
  }
  .pl-column-width-sm-10 {
    padding-left: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .pr-column-width-sm-10 {
    padding-right: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .min-w-col-sm-10 {
    min-width: calc(var(--smx--column--with--gutter--width) * 10);
  }
  .ml-sm-n-col-10 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 10 * -1);
  }
  .pl-column-width-sm-11 {
    padding-left: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .pr-column-width-sm-11 {
    padding-right: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .min-w-col-sm-11 {
    min-width: calc(var(--smx--column--with--gutter--width) * 11);
  }
  .ml-sm-n-col-11 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 11 * -1);
  }
  .pl-column-width-sm-12 {
    padding-left: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .pr-column-width-sm-12 {
    padding-right: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .min-w-col-sm-12 {
    min-width: calc(var(--smx--column--with--gutter--width) * 12);
  }
  .ml-sm-n-col-12 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 12 * -1);
  }
  .as-full-right-sm {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-left-sm {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 768px) {
  .pl-column-width-md-1 {
    padding-left: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .pr-column-width-md-1 {
    padding-right: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .min-w-col-md-1 {
    min-width: calc(var(--smx--column--with--gutter--width) * 1);
  }
  .ml-md-n-col-1 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 1 * -1);
  }
  .pl-column-width-md-2 {
    padding-left: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .pr-column-width-md-2 {
    padding-right: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .min-w-col-md-2 {
    min-width: calc(var(--smx--column--with--gutter--width) * 2);
  }
  .ml-md-n-col-2 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 2 * -1);
  }
  .pl-column-width-md-3 {
    padding-left: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .pr-column-width-md-3 {
    padding-right: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .min-w-col-md-3 {
    min-width: calc(var(--smx--column--with--gutter--width) * 3);
  }
  .ml-md-n-col-3 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 3 * -1);
  }
  .pl-column-width-md-4 {
    padding-left: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .pr-column-width-md-4 {
    padding-right: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .min-w-col-md-4 {
    min-width: calc(var(--smx--column--with--gutter--width) * 4);
  }
  .ml-md-n-col-4 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 4 * -1);
  }
  .pl-column-width-md-5 {
    padding-left: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .pr-column-width-md-5 {
    padding-right: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .min-w-col-md-5 {
    min-width: calc(var(--smx--column--with--gutter--width) * 5);
  }
  .ml-md-n-col-5 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 5 * -1);
  }
  .pl-column-width-md-6 {
    padding-left: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .pr-column-width-md-6 {
    padding-right: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .min-w-col-md-6 {
    min-width: calc(var(--smx--column--with--gutter--width) * 6);
  }
  .ml-md-n-col-6 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 6 * -1);
  }
  .pl-column-width-md-7 {
    padding-left: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .pr-column-width-md-7 {
    padding-right: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .min-w-col-md-7 {
    min-width: calc(var(--smx--column--with--gutter--width) * 7);
  }
  .ml-md-n-col-7 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 7 * -1);
  }
  .pl-column-width-md-8 {
    padding-left: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .pr-column-width-md-8 {
    padding-right: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .min-w-col-md-8 {
    min-width: calc(var(--smx--column--with--gutter--width) * 8);
  }
  .ml-md-n-col-8 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 8 * -1);
  }
  .pl-column-width-md-9 {
    padding-left: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .pr-column-width-md-9 {
    padding-right: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .min-w-col-md-9 {
    min-width: calc(var(--smx--column--with--gutter--width) * 9);
  }
  .ml-md-n-col-9 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 9 * -1);
  }
  .pl-column-width-md-10 {
    padding-left: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .pr-column-width-md-10 {
    padding-right: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .min-w-col-md-10 {
    min-width: calc(var(--smx--column--with--gutter--width) * 10);
  }
  .ml-md-n-col-10 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 10 * -1);
  }
  .pl-column-width-md-11 {
    padding-left: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .pr-column-width-md-11 {
    padding-right: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .min-w-col-md-11 {
    min-width: calc(var(--smx--column--with--gutter--width) * 11);
  }
  .ml-md-n-col-11 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 11 * -1);
  }
  .pl-column-width-md-12 {
    padding-left: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .pr-column-width-md-12 {
    padding-right: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .min-w-col-md-12 {
    min-width: calc(var(--smx--column--with--gutter--width) * 12);
  }
  .ml-md-n-col-12 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 12 * -1);
  }
  .as-full-right-md {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-left-md {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 992px) {
  .pl-column-width-lg-1 {
    padding-left: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .pr-column-width-lg-1 {
    padding-right: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .min-w-col-lg-1 {
    min-width: calc(var(--smx--column--with--gutter--width) * 1);
  }
  .ml-lg-n-col-1 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 1 * -1);
  }
  .pl-column-width-lg-2 {
    padding-left: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .pr-column-width-lg-2 {
    padding-right: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .min-w-col-lg-2 {
    min-width: calc(var(--smx--column--with--gutter--width) * 2);
  }
  .ml-lg-n-col-2 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 2 * -1);
  }
  .pl-column-width-lg-3 {
    padding-left: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .pr-column-width-lg-3 {
    padding-right: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .min-w-col-lg-3 {
    min-width: calc(var(--smx--column--with--gutter--width) * 3);
  }
  .ml-lg-n-col-3 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 3 * -1);
  }
  .pl-column-width-lg-4 {
    padding-left: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .pr-column-width-lg-4 {
    padding-right: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .min-w-col-lg-4 {
    min-width: calc(var(--smx--column--with--gutter--width) * 4);
  }
  .ml-lg-n-col-4 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 4 * -1);
  }
  .pl-column-width-lg-5 {
    padding-left: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .pr-column-width-lg-5 {
    padding-right: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .min-w-col-lg-5 {
    min-width: calc(var(--smx--column--with--gutter--width) * 5);
  }
  .ml-lg-n-col-5 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 5 * -1);
  }
  .pl-column-width-lg-6 {
    padding-left: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .pr-column-width-lg-6 {
    padding-right: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .min-w-col-lg-6 {
    min-width: calc(var(--smx--column--with--gutter--width) * 6);
  }
  .ml-lg-n-col-6 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 6 * -1);
  }
  .pl-column-width-lg-7 {
    padding-left: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .pr-column-width-lg-7 {
    padding-right: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .min-w-col-lg-7 {
    min-width: calc(var(--smx--column--with--gutter--width) * 7);
  }
  .ml-lg-n-col-7 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 7 * -1);
  }
  .pl-column-width-lg-8 {
    padding-left: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .pr-column-width-lg-8 {
    padding-right: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .min-w-col-lg-8 {
    min-width: calc(var(--smx--column--with--gutter--width) * 8);
  }
  .ml-lg-n-col-8 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 8 * -1);
  }
  .pl-column-width-lg-9 {
    padding-left: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .pr-column-width-lg-9 {
    padding-right: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .min-w-col-lg-9 {
    min-width: calc(var(--smx--column--with--gutter--width) * 9);
  }
  .ml-lg-n-col-9 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 9 * -1);
  }
  .pl-column-width-lg-10 {
    padding-left: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .pr-column-width-lg-10 {
    padding-right: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .min-w-col-lg-10 {
    min-width: calc(var(--smx--column--with--gutter--width) * 10);
  }
  .ml-lg-n-col-10 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 10 * -1);
  }
  .pl-column-width-lg-11 {
    padding-left: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .pr-column-width-lg-11 {
    padding-right: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .min-w-col-lg-11 {
    min-width: calc(var(--smx--column--with--gutter--width) * 11);
  }
  .ml-lg-n-col-11 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 11 * -1);
  }
  .pl-column-width-lg-12 {
    padding-left: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .pr-column-width-lg-12 {
    padding-right: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .min-w-col-lg-12 {
    min-width: calc(var(--smx--column--with--gutter--width) * 12);
  }
  .ml-lg-n-col-12 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 12 * -1);
  }
  .as-full-right-lg {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-left-lg {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 1200px) {
  .pl-column-width-xl-1 {
    padding-left: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .pr-column-width-xl-1 {
    padding-right: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .min-w-col-xl-1 {
    min-width: calc(var(--smx--column--with--gutter--width) * 1);
  }
  .ml-xl-n-col-1 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 1 * -1);
  }
  .pl-column-width-xl-2 {
    padding-left: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .pr-column-width-xl-2 {
    padding-right: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .min-w-col-xl-2 {
    min-width: calc(var(--smx--column--with--gutter--width) * 2);
  }
  .ml-xl-n-col-2 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 2 * -1);
  }
  .pl-column-width-xl-3 {
    padding-left: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .pr-column-width-xl-3 {
    padding-right: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .min-w-col-xl-3 {
    min-width: calc(var(--smx--column--with--gutter--width) * 3);
  }
  .ml-xl-n-col-3 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 3 * -1);
  }
  .pl-column-width-xl-4 {
    padding-left: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .pr-column-width-xl-4 {
    padding-right: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .min-w-col-xl-4 {
    min-width: calc(var(--smx--column--with--gutter--width) * 4);
  }
  .ml-xl-n-col-4 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 4 * -1);
  }
  .pl-column-width-xl-5 {
    padding-left: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .pr-column-width-xl-5 {
    padding-right: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .min-w-col-xl-5 {
    min-width: calc(var(--smx--column--with--gutter--width) * 5);
  }
  .ml-xl-n-col-5 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 5 * -1);
  }
  .pl-column-width-xl-6 {
    padding-left: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .pr-column-width-xl-6 {
    padding-right: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .min-w-col-xl-6 {
    min-width: calc(var(--smx--column--with--gutter--width) * 6);
  }
  .ml-xl-n-col-6 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 6 * -1);
  }
  .pl-column-width-xl-7 {
    padding-left: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .pr-column-width-xl-7 {
    padding-right: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .min-w-col-xl-7 {
    min-width: calc(var(--smx--column--with--gutter--width) * 7);
  }
  .ml-xl-n-col-7 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 7 * -1);
  }
  .pl-column-width-xl-8 {
    padding-left: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .pr-column-width-xl-8 {
    padding-right: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .min-w-col-xl-8 {
    min-width: calc(var(--smx--column--with--gutter--width) * 8);
  }
  .ml-xl-n-col-8 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 8 * -1);
  }
  .pl-column-width-xl-9 {
    padding-left: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .pr-column-width-xl-9 {
    padding-right: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .min-w-col-xl-9 {
    min-width: calc(var(--smx--column--with--gutter--width) * 9);
  }
  .ml-xl-n-col-9 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 9 * -1);
  }
  .pl-column-width-xl-10 {
    padding-left: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .pr-column-width-xl-10 {
    padding-right: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .min-w-col-xl-10 {
    min-width: calc(var(--smx--column--with--gutter--width) * 10);
  }
  .ml-xl-n-col-10 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 10 * -1);
  }
  .pl-column-width-xl-11 {
    padding-left: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .pr-column-width-xl-11 {
    padding-right: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .min-w-col-xl-11 {
    min-width: calc(var(--smx--column--with--gutter--width) * 11);
  }
  .ml-xl-n-col-11 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 11 * -1);
  }
  .pl-column-width-xl-12 {
    padding-left: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .pr-column-width-xl-12 {
    padding-right: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .min-w-col-xl-12 {
    min-width: calc(var(--smx--column--with--gutter--width) * 12);
  }
  .ml-xl-n-col-12 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 12 * -1);
  }
  .as-full-right-xl {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-left-xl {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 1500px) {
  .pl-column-width-xxl-1 {
    padding-left: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .pr-column-width-xxl-1 {
    padding-right: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .min-w-col-xxl-1 {
    min-width: calc(var(--smx--column--with--gutter--width) * 1);
  }
  .ml-xxl-n-col-1 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 1 * -1);
  }
  .pl-column-width-xxl-2 {
    padding-left: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .pr-column-width-xxl-2 {
    padding-right: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .min-w-col-xxl-2 {
    min-width: calc(var(--smx--column--with--gutter--width) * 2);
  }
  .ml-xxl-n-col-2 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 2 * -1);
  }
  .pl-column-width-xxl-3 {
    padding-left: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .pr-column-width-xxl-3 {
    padding-right: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .min-w-col-xxl-3 {
    min-width: calc(var(--smx--column--with--gutter--width) * 3);
  }
  .ml-xxl-n-col-3 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 3 * -1);
  }
  .pl-column-width-xxl-4 {
    padding-left: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .pr-column-width-xxl-4 {
    padding-right: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .min-w-col-xxl-4 {
    min-width: calc(var(--smx--column--with--gutter--width) * 4);
  }
  .ml-xxl-n-col-4 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 4 * -1);
  }
  .pl-column-width-xxl-5 {
    padding-left: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .pr-column-width-xxl-5 {
    padding-right: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .min-w-col-xxl-5 {
    min-width: calc(var(--smx--column--with--gutter--width) * 5);
  }
  .ml-xxl-n-col-5 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 5 * -1);
  }
  .pl-column-width-xxl-6 {
    padding-left: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .pr-column-width-xxl-6 {
    padding-right: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .min-w-col-xxl-6 {
    min-width: calc(var(--smx--column--with--gutter--width) * 6);
  }
  .ml-xxl-n-col-6 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 6 * -1);
  }
  .pl-column-width-xxl-7 {
    padding-left: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .pr-column-width-xxl-7 {
    padding-right: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .min-w-col-xxl-7 {
    min-width: calc(var(--smx--column--with--gutter--width) * 7);
  }
  .ml-xxl-n-col-7 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 7 * -1);
  }
  .pl-column-width-xxl-8 {
    padding-left: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .pr-column-width-xxl-8 {
    padding-right: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .min-w-col-xxl-8 {
    min-width: calc(var(--smx--column--with--gutter--width) * 8);
  }
  .ml-xxl-n-col-8 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 8 * -1);
  }
  .pl-column-width-xxl-9 {
    padding-left: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .pr-column-width-xxl-9 {
    padding-right: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .min-w-col-xxl-9 {
    min-width: calc(var(--smx--column--with--gutter--width) * 9);
  }
  .ml-xxl-n-col-9 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 9 * -1);
  }
  .pl-column-width-xxl-10 {
    padding-left: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .pr-column-width-xxl-10 {
    padding-right: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .min-w-col-xxl-10 {
    min-width: calc(var(--smx--column--with--gutter--width) * 10);
  }
  .ml-xxl-n-col-10 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 10 * -1);
  }
  .pl-column-width-xxl-11 {
    padding-left: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .pr-column-width-xxl-11 {
    padding-right: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .min-w-col-xxl-11 {
    min-width: calc(var(--smx--column--with--gutter--width) * 11);
  }
  .ml-xxl-n-col-11 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 11 * -1);
  }
  .pl-column-width-xxl-12 {
    padding-left: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .pr-column-width-xxl-12 {
    padding-right: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .min-w-col-xxl-12 {
    min-width: calc(var(--smx--column--with--gutter--width) * 12);
  }
  .ml-xxl-n-col-12 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 12 * -1);
  }
  .as-full-right-xxl {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-left-xxl {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
.w-6 {
  width: calc(0.6 * 10%);
}

.w-10 {
  width: calc(1 * 10%);
}

.w-15 {
  width: calc(1.5 * 10%);
}

.w-20 {
  width: calc(2 * 10%);
}

.w-25 {
  width: calc(2.5 * 10%);
}

.w-30 {
  width: calc(3 * 10%);
}

.w-35 {
  width: calc(3.5 * 10%);
}

.w-40 {
  width: calc(4 * 10%);
}

.w-45 {
  width: calc(4.5 * 10%);
}

.w-50 {
  width: calc(5 * 10%);
}

.w-55 {
  width: calc(5.5 * 10%);
}

.w-60 {
  width: calc(6 * 10%);
}

.w-65 {
  width: calc(6.5 * 10%);
}

.w-70 {
  width: calc(7 * 10%);
}

.w-75 {
  width: calc(7.5 * 10%);
}

.w-80 {
  width: calc(8 * 10%);
}

.w-85 {
  width: calc(8.5 * 10%);
}

.w-90 {
  width: calc(9 * 10%);
}

.w-95 {
  width: calc(9.5 * 10%);
}

.w-100 {
  width: calc(10 * 10%);
}

@media screen and (min-width: 576px) {
  .w-sm-6 {
    width: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-10 {
    width: calc(1 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-15 {
    width: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-20 {
    width: calc(2 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-25 {
    width: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-30 {
    width: calc(3 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-35 {
    width: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-40 {
    width: calc(4 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-45 {
    width: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-50 {
    width: calc(5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-55 {
    width: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-60 {
    width: calc(6 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-65 {
    width: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-70 {
    width: calc(7 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-75 {
    width: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-80 {
    width: calc(8 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-85 {
    width: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-90 {
    width: calc(9 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-95 {
    width: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-100 {
    width: calc(10 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-6 {
    width: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-10 {
    width: calc(1 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-15 {
    width: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-20 {
    width: calc(2 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-25 {
    width: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-30 {
    width: calc(3 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-35 {
    width: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-40 {
    width: calc(4 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-45 {
    width: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-50 {
    width: calc(5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-55 {
    width: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-60 {
    width: calc(6 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-65 {
    width: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-70 {
    width: calc(7 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-75 {
    width: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-80 {
    width: calc(8 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-85 {
    width: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-90 {
    width: calc(9 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-95 {
    width: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-100 {
    width: calc(10 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-6 {
    width: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-10 {
    width: calc(1 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-15 {
    width: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-20 {
    width: calc(2 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-25 {
    width: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-30 {
    width: calc(3 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-35 {
    width: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-40 {
    width: calc(4 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-45 {
    width: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-50 {
    width: calc(5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-55 {
    width: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-60 {
    width: calc(6 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-65 {
    width: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-70 {
    width: calc(7 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-75 {
    width: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-80 {
    width: calc(8 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-85 {
    width: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-90 {
    width: calc(9 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-95 {
    width: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-100 {
    width: calc(10 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-6 {
    width: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-10 {
    width: calc(1 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-15 {
    width: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-20 {
    width: calc(2 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-25 {
    width: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-30 {
    width: calc(3 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-35 {
    width: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-40 {
    width: calc(4 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-45 {
    width: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-50 {
    width: calc(5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-55 {
    width: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-60 {
    width: calc(6 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-65 {
    width: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-70 {
    width: calc(7 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-75 {
    width: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-80 {
    width: calc(8 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-85 {
    width: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-90 {
    width: calc(9 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-95 {
    width: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-100 {
    width: calc(10 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-6 {
    width: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-10 {
    width: calc(1 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-15 {
    width: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-20 {
    width: calc(2 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-25 {
    width: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-30 {
    width: calc(3 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-35 {
    width: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-40 {
    width: calc(4 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-45 {
    width: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-50 {
    width: calc(5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-55 {
    width: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-60 {
    width: calc(6 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-65 {
    width: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-70 {
    width: calc(7 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-75 {
    width: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-80 {
    width: calc(8 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-85 {
    width: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-90 {
    width: calc(9 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-95 {
    width: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-100 {
    width: calc(10 * 10%);
  }
}

.h-6 {
  height: calc(0.6 * 10%);
}

.h-10 {
  height: calc(1 * 10%);
}

.h-15 {
  height: calc(1.5 * 10%);
}

.h-20 {
  height: calc(2 * 10%);
}

.h-25 {
  height: calc(2.5 * 10%);
}

.h-30 {
  height: calc(3 * 10%);
}

.h-35 {
  height: calc(3.5 * 10%);
}

.h-40 {
  height: calc(4 * 10%);
}

.h-45 {
  height: calc(4.5 * 10%);
}

.h-50 {
  height: calc(5 * 10%);
}

.h-55 {
  height: calc(5.5 * 10%);
}

.h-60 {
  height: calc(6 * 10%);
}

.h-65 {
  height: calc(6.5 * 10%);
}

.h-70 {
  height: calc(7 * 10%);
}

.h-75 {
  height: calc(7.5 * 10%);
}

.h-80 {
  height: calc(8 * 10%);
}

.h-85 {
  height: calc(8.5 * 10%);
}

.h-90 {
  height: calc(9 * 10%);
}

.h-95 {
  height: calc(9.5 * 10%);
}

.h-100 {
  height: calc(10 * 10%);
}

@media screen and (min-width: 576px) {
  .h-sm-6 {
    height: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-10 {
    height: calc(1 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-15 {
    height: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-20 {
    height: calc(2 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-25 {
    height: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-30 {
    height: calc(3 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-35 {
    height: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-40 {
    height: calc(4 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-45 {
    height: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-50 {
    height: calc(5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-55 {
    height: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-60 {
    height: calc(6 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-65 {
    height: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-70 {
    height: calc(7 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-75 {
    height: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-80 {
    height: calc(8 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-85 {
    height: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-90 {
    height: calc(9 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-95 {
    height: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-100 {
    height: calc(10 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-6 {
    height: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-10 {
    height: calc(1 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-15 {
    height: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-20 {
    height: calc(2 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-25 {
    height: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-30 {
    height: calc(3 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-35 {
    height: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-40 {
    height: calc(4 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-45 {
    height: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-50 {
    height: calc(5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-55 {
    height: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-60 {
    height: calc(6 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-65 {
    height: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-70 {
    height: calc(7 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-75 {
    height: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-80 {
    height: calc(8 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-85 {
    height: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-90 {
    height: calc(9 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-95 {
    height: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-100 {
    height: calc(10 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-6 {
    height: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-10 {
    height: calc(1 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-15 {
    height: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-20 {
    height: calc(2 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-25 {
    height: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-30 {
    height: calc(3 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-35 {
    height: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-40 {
    height: calc(4 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-45 {
    height: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-50 {
    height: calc(5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-55 {
    height: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-60 {
    height: calc(6 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-65 {
    height: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-70 {
    height: calc(7 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-75 {
    height: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-80 {
    height: calc(8 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-85 {
    height: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-90 {
    height: calc(9 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-95 {
    height: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-100 {
    height: calc(10 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-6 {
    height: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-10 {
    height: calc(1 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-15 {
    height: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-20 {
    height: calc(2 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-25 {
    height: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-30 {
    height: calc(3 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-35 {
    height: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-40 {
    height: calc(4 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-45 {
    height: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-50 {
    height: calc(5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-55 {
    height: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-60 {
    height: calc(6 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-65 {
    height: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-70 {
    height: calc(7 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-75 {
    height: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-80 {
    height: calc(8 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-85 {
    height: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-90 {
    height: calc(9 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-95 {
    height: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-100 {
    height: calc(10 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-6 {
    height: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-10 {
    height: calc(1 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-15 {
    height: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-20 {
    height: calc(2 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-25 {
    height: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-30 {
    height: calc(3 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-35 {
    height: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-40 {
    height: calc(4 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-45 {
    height: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-50 {
    height: calc(5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-55 {
    height: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-60 {
    height: calc(6 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-65 {
    height: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-70 {
    height: calc(7 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-75 {
    height: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-80 {
    height: calc(8 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-85 {
    height: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-90 {
    height: calc(9 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-95 {
    height: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-100 {
    height: calc(10 * 10%);
  }
}

.rw-6 {
  width: calc(0.6 * 10rem);
}

.rw-10 {
  width: calc(1 * 10rem);
}

.rw-15 {
  width: calc(1.5 * 10rem);
}

.rw-20 {
  width: calc(2 * 10rem);
}

.rw-25 {
  width: calc(2.5 * 10rem);
}

.rw-30 {
  width: calc(3 * 10rem);
}

.rw-35 {
  width: calc(3.5 * 10rem);
}

.rw-40 {
  width: calc(4 * 10rem);
}

.rw-45 {
  width: calc(4.5 * 10rem);
}

.rw-50 {
  width: calc(5 * 10rem);
}

.rw-55 {
  width: calc(5.5 * 10rem);
}

.rw-60 {
  width: calc(6 * 10rem);
}

.rw-65 {
  width: calc(6.5 * 10rem);
}

.rw-70 {
  width: calc(7 * 10rem);
}

.rw-75 {
  width: calc(7.5 * 10rem);
}

.rw-80 {
  width: calc(8 * 10rem);
}

.rw-85 {
  width: calc(8.5 * 10rem);
}

.rw-90 {
  width: calc(9 * 10rem);
}

.rw-95 {
  width: calc(9.5 * 10rem);
}

.rw-100 {
  width: calc(10 * 10rem);
}

@media screen and (min-width: 576px) {
  .rw-sm-6 {
    width: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-10 {
    width: calc(1 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-15 {
    width: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-20 {
    width: calc(2 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-25 {
    width: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-30 {
    width: calc(3 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-35 {
    width: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-40 {
    width: calc(4 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-45 {
    width: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-50 {
    width: calc(5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-55 {
    width: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-60 {
    width: calc(6 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-65 {
    width: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-70 {
    width: calc(7 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-75 {
    width: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-80 {
    width: calc(8 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-85 {
    width: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-90 {
    width: calc(9 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-95 {
    width: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-100 {
    width: calc(10 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-6 {
    width: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-10 {
    width: calc(1 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-15 {
    width: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-20 {
    width: calc(2 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-25 {
    width: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-30 {
    width: calc(3 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-35 {
    width: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-40 {
    width: calc(4 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-45 {
    width: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-50 {
    width: calc(5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-55 {
    width: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-60 {
    width: calc(6 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-65 {
    width: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-70 {
    width: calc(7 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-75 {
    width: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-80 {
    width: calc(8 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-85 {
    width: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-90 {
    width: calc(9 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-95 {
    width: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-100 {
    width: calc(10 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-6 {
    width: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-10 {
    width: calc(1 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-15 {
    width: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-20 {
    width: calc(2 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-25 {
    width: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-30 {
    width: calc(3 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-35 {
    width: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-40 {
    width: calc(4 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-45 {
    width: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-50 {
    width: calc(5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-55 {
    width: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-60 {
    width: calc(6 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-65 {
    width: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-70 {
    width: calc(7 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-75 {
    width: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-80 {
    width: calc(8 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-85 {
    width: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-90 {
    width: calc(9 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-95 {
    width: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-100 {
    width: calc(10 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-6 {
    width: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-10 {
    width: calc(1 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-15 {
    width: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-20 {
    width: calc(2 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-25 {
    width: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-30 {
    width: calc(3 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-35 {
    width: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-40 {
    width: calc(4 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-45 {
    width: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-50 {
    width: calc(5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-55 {
    width: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-60 {
    width: calc(6 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-65 {
    width: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-70 {
    width: calc(7 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-75 {
    width: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-80 {
    width: calc(8 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-85 {
    width: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-90 {
    width: calc(9 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-95 {
    width: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-100 {
    width: calc(10 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-6 {
    width: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-10 {
    width: calc(1 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-15 {
    width: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-20 {
    width: calc(2 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-25 {
    width: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-30 {
    width: calc(3 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-35 {
    width: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-40 {
    width: calc(4 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-45 {
    width: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-50 {
    width: calc(5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-55 {
    width: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-60 {
    width: calc(6 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-65 {
    width: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-70 {
    width: calc(7 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-75 {
    width: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-80 {
    width: calc(8 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-85 {
    width: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-90 {
    width: calc(9 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-95 {
    width: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-100 {
    width: calc(10 * 10rem);
  }
}

.rh-6 {
  height: calc(0.6 * 10rem);
}

.rh-10 {
  height: calc(1 * 10rem);
}

.rh-15 {
  height: calc(1.5 * 10rem);
}

.rh-20 {
  height: calc(2 * 10rem);
}

.rh-25 {
  height: calc(2.5 * 10rem);
}

.rh-30 {
  height: calc(3 * 10rem);
}

.rh-35 {
  height: calc(3.5 * 10rem);
}

.rh-40 {
  height: calc(4 * 10rem);
}

.rh-45 {
  height: calc(4.5 * 10rem);
}

.rh-50 {
  height: calc(5 * 10rem);
}

.rh-55 {
  height: calc(5.5 * 10rem);
}

.rh-60 {
  height: calc(6 * 10rem);
}

.rh-65 {
  height: calc(6.5 * 10rem);
}

.rh-70 {
  height: calc(7 * 10rem);
}

.rh-75 {
  height: calc(7.5 * 10rem);
}

.rh-80 {
  height: calc(8 * 10rem);
}

.rh-85 {
  height: calc(8.5 * 10rem);
}

.rh-90 {
  height: calc(9 * 10rem);
}

.rh-95 {
  height: calc(9.5 * 10rem);
}

.rh-100 {
  height: calc(10 * 10rem);
}

@media screen and (min-width: 576px) {
  .rh-sm-6 {
    height: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-10 {
    height: calc(1 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-15 {
    height: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-20 {
    height: calc(2 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-25 {
    height: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-30 {
    height: calc(3 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-35 {
    height: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-40 {
    height: calc(4 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-45 {
    height: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-50 {
    height: calc(5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-55 {
    height: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-60 {
    height: calc(6 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-65 {
    height: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-70 {
    height: calc(7 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-75 {
    height: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-80 {
    height: calc(8 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-85 {
    height: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-90 {
    height: calc(9 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-95 {
    height: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-100 {
    height: calc(10 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-6 {
    height: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-10 {
    height: calc(1 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-15 {
    height: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-20 {
    height: calc(2 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-25 {
    height: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-30 {
    height: calc(3 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-35 {
    height: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-40 {
    height: calc(4 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-45 {
    height: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-50 {
    height: calc(5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-55 {
    height: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-60 {
    height: calc(6 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-65 {
    height: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-70 {
    height: calc(7 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-75 {
    height: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-80 {
    height: calc(8 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-85 {
    height: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-90 {
    height: calc(9 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-95 {
    height: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-100 {
    height: calc(10 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-6 {
    height: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-10 {
    height: calc(1 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-15 {
    height: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-20 {
    height: calc(2 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-25 {
    height: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-30 {
    height: calc(3 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-35 {
    height: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-40 {
    height: calc(4 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-45 {
    height: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-50 {
    height: calc(5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-55 {
    height: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-60 {
    height: calc(6 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-65 {
    height: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-70 {
    height: calc(7 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-75 {
    height: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-80 {
    height: calc(8 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-85 {
    height: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-90 {
    height: calc(9 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-95 {
    height: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-100 {
    height: calc(10 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-6 {
    height: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-10 {
    height: calc(1 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-15 {
    height: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-20 {
    height: calc(2 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-25 {
    height: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-30 {
    height: calc(3 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-35 {
    height: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-40 {
    height: calc(4 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-45 {
    height: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-50 {
    height: calc(5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-55 {
    height: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-60 {
    height: calc(6 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-65 {
    height: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-70 {
    height: calc(7 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-75 {
    height: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-80 {
    height: calc(8 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-85 {
    height: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-90 {
    height: calc(9 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-95 {
    height: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-100 {
    height: calc(10 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-6 {
    height: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-10 {
    height: calc(1 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-15 {
    height: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-20 {
    height: calc(2 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-25 {
    height: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-30 {
    height: calc(3 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-35 {
    height: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-40 {
    height: calc(4 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-45 {
    height: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-50 {
    height: calc(5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-55 {
    height: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-60 {
    height: calc(6 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-65 {
    height: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-70 {
    height: calc(7 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-75 {
    height: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-80 {
    height: calc(8 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-85 {
    height: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-90 {
    height: calc(9 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-95 {
    height: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-100 {
    height: calc(10 * 10rem);
  }
}

.vh-6 {
  height: calc(0.6 * 10vh);
}

.vh-10 {
  height: calc(1 * 10vh);
}

.vh-15 {
  height: calc(1.5 * 10vh);
}

.vh-20 {
  height: calc(2 * 10vh);
}

.vh-25 {
  height: calc(2.5 * 10vh);
}

.vh-30 {
  height: calc(3 * 10vh);
}

.vh-35 {
  height: calc(3.5 * 10vh);
}

.vh-40 {
  height: calc(4 * 10vh);
}

.vh-45 {
  height: calc(4.5 * 10vh);
}

.vh-50 {
  height: calc(5 * 10vh);
}

.vh-55 {
  height: calc(5.5 * 10vh);
}

.vh-60 {
  height: calc(6 * 10vh);
}

.vh-65 {
  height: calc(6.5 * 10vh);
}

.vh-70 {
  height: calc(7 * 10vh);
}

.vh-75 {
  height: calc(7.5 * 10vh);
}

.vh-80 {
  height: calc(8 * 10vh);
}

.vh-85 {
  height: calc(8.5 * 10vh);
}

.vh-90 {
  height: calc(9 * 10vh);
}

.vh-95 {
  height: calc(9.5 * 10vh);
}

.vh-100 {
  height: calc(10 * 10vh);
}

@media screen and (min-width: 576px) {
  .vh-sm-6 {
    height: calc(0.6 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-10 {
    height: calc(1 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-15 {
    height: calc(1.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-20 {
    height: calc(2 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-25 {
    height: calc(2.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-30 {
    height: calc(3 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-35 {
    height: calc(3.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-40 {
    height: calc(4 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-45 {
    height: calc(4.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-50 {
    height: calc(5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-55 {
    height: calc(5.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-60 {
    height: calc(6 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-65 {
    height: calc(6.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-70 {
    height: calc(7 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-75 {
    height: calc(7.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-80 {
    height: calc(8 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-85 {
    height: calc(8.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-90 {
    height: calc(9 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-95 {
    height: calc(9.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-100 {
    height: calc(10 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-6 {
    height: calc(0.6 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-10 {
    height: calc(1 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-15 {
    height: calc(1.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-20 {
    height: calc(2 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-25 {
    height: calc(2.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-30 {
    height: calc(3 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-35 {
    height: calc(3.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-40 {
    height: calc(4 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-45 {
    height: calc(4.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-50 {
    height: calc(5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-55 {
    height: calc(5.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-60 {
    height: calc(6 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-65 {
    height: calc(6.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-70 {
    height: calc(7 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-75 {
    height: calc(7.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-80 {
    height: calc(8 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-85 {
    height: calc(8.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-90 {
    height: calc(9 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-95 {
    height: calc(9.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-100 {
    height: calc(10 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-6 {
    height: calc(0.6 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-10 {
    height: calc(1 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-15 {
    height: calc(1.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-20 {
    height: calc(2 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-25 {
    height: calc(2.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-30 {
    height: calc(3 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-35 {
    height: calc(3.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-40 {
    height: calc(4 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-45 {
    height: calc(4.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-50 {
    height: calc(5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-55 {
    height: calc(5.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-60 {
    height: calc(6 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-65 {
    height: calc(6.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-70 {
    height: calc(7 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-75 {
    height: calc(7.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-80 {
    height: calc(8 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-85 {
    height: calc(8.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-90 {
    height: calc(9 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-95 {
    height: calc(9.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-100 {
    height: calc(10 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-6 {
    height: calc(0.6 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-10 {
    height: calc(1 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-15 {
    height: calc(1.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-20 {
    height: calc(2 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-25 {
    height: calc(2.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-30 {
    height: calc(3 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-35 {
    height: calc(3.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-40 {
    height: calc(4 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-45 {
    height: calc(4.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-50 {
    height: calc(5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-55 {
    height: calc(5.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-60 {
    height: calc(6 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-65 {
    height: calc(6.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-70 {
    height: calc(7 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-75 {
    height: calc(7.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-80 {
    height: calc(8 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-85 {
    height: calc(8.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-90 {
    height: calc(9 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-95 {
    height: calc(9.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-100 {
    height: calc(10 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-6 {
    height: calc(0.6 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-10 {
    height: calc(1 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-15 {
    height: calc(1.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-20 {
    height: calc(2 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-25 {
    height: calc(2.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-30 {
    height: calc(3 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-35 {
    height: calc(3.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-40 {
    height: calc(4 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-45 {
    height: calc(4.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-50 {
    height: calc(5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-55 {
    height: calc(5.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-60 {
    height: calc(6 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-65 {
    height: calc(6.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-70 {
    height: calc(7 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-75 {
    height: calc(7.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-80 {
    height: calc(8 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-85 {
    height: calc(8.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-90 {
    height: calc(9 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-95 {
    height: calc(9.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-100 {
    height: calc(10 * 10vh);
  }
}

.ar-1-1 {
  aspect-ratio: 1/1;
}

.ar-1-2 {
  aspect-ratio: 1/2;
}

.ar-1-3 {
  aspect-ratio: 1/3;
}

.ar-1-4 {
  aspect-ratio: 1/4;
}

.ar-2-1 {
  aspect-ratio: 2/1;
}

.ar-3-1 {
  aspect-ratio: 3/1;
}

.ar-4-1 {
  aspect-ratio: 4/1;
}

.ar-2-3 {
  aspect-ratio: 2/3;
}

.ar-3-4 {
  aspect-ratio: 3/4;
}

.ar-4-5 {
  aspect-ratio: 4/5;
}

.ar-5-6 {
  aspect-ratio: 5/6;
}

.ar-3-2 {
  aspect-ratio: 3/2;
}

.ar-4-3 {
  aspect-ratio: 4/3;
}

.ar-5-4 {
  aspect-ratio: 5/4;
}

.ar-6-5 {
  aspect-ratio: 6/5;
}

.ar-16-9 {
  aspect-ratio: 16/9;
}

.ar-9-16 {
  aspect-ratio: 9-/16;
}

@media screen and (min-width: 576px) {
  .ar-sm-1-1 {
    aspect-ratio: 1/1;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-1-2 {
    aspect-ratio: 1/2;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-1-3 {
    aspect-ratio: 1/3;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-1-4 {
    aspect-ratio: 1/4;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-2-1 {
    aspect-ratio: 2/1;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-3-1 {
    aspect-ratio: 3/1;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-4-1 {
    aspect-ratio: 4/1;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-2-3 {
    aspect-ratio: 2/3;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-3-4 {
    aspect-ratio: 3/4;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-4-5 {
    aspect-ratio: 4/5;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-5-6 {
    aspect-ratio: 5/6;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-3-2 {
    aspect-ratio: 3/2;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-4-3 {
    aspect-ratio: 4/3;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-5-4 {
    aspect-ratio: 5/4;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-6-5 {
    aspect-ratio: 6/5;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-16-9 {
    aspect-ratio: 16/9;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-9-16 {
    aspect-ratio: 9-/16;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-1-1 {
    aspect-ratio: 1/1;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-1-2 {
    aspect-ratio: 1/2;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-1-3 {
    aspect-ratio: 1/3;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-1-4 {
    aspect-ratio: 1/4;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-2-1 {
    aspect-ratio: 2/1;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-3-1 {
    aspect-ratio: 3/1;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-4-1 {
    aspect-ratio: 4/1;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-2-3 {
    aspect-ratio: 2/3;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-3-4 {
    aspect-ratio: 3/4;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-4-5 {
    aspect-ratio: 4/5;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-5-6 {
    aspect-ratio: 5/6;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-3-2 {
    aspect-ratio: 3/2;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-4-3 {
    aspect-ratio: 4/3;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-5-4 {
    aspect-ratio: 5/4;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-6-5 {
    aspect-ratio: 6/5;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-16-9 {
    aspect-ratio: 16/9;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-9-16 {
    aspect-ratio: 9-/16;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-1-1 {
    aspect-ratio: 1/1;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-1-2 {
    aspect-ratio: 1/2;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-1-3 {
    aspect-ratio: 1/3;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-1-4 {
    aspect-ratio: 1/4;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-2-1 {
    aspect-ratio: 2/1;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-3-1 {
    aspect-ratio: 3/1;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-4-1 {
    aspect-ratio: 4/1;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-2-3 {
    aspect-ratio: 2/3;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-3-4 {
    aspect-ratio: 3/4;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-4-5 {
    aspect-ratio: 4/5;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-5-6 {
    aspect-ratio: 5/6;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-3-2 {
    aspect-ratio: 3/2;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-4-3 {
    aspect-ratio: 4/3;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-5-4 {
    aspect-ratio: 5/4;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-6-5 {
    aspect-ratio: 6/5;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-16-9 {
    aspect-ratio: 16/9;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-9-16 {
    aspect-ratio: 9-/16;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-1-1 {
    aspect-ratio: 1/1;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-1-2 {
    aspect-ratio: 1/2;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-1-3 {
    aspect-ratio: 1/3;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-1-4 {
    aspect-ratio: 1/4;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-2-1 {
    aspect-ratio: 2/1;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-3-1 {
    aspect-ratio: 3/1;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-4-1 {
    aspect-ratio: 4/1;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-2-3 {
    aspect-ratio: 2/3;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-3-4 {
    aspect-ratio: 3/4;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-4-5 {
    aspect-ratio: 4/5;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-5-6 {
    aspect-ratio: 5/6;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-3-2 {
    aspect-ratio: 3/2;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-4-3 {
    aspect-ratio: 4/3;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-5-4 {
    aspect-ratio: 5/4;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-6-5 {
    aspect-ratio: 6/5;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-16-9 {
    aspect-ratio: 16/9;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-9-16 {
    aspect-ratio: 9-/16;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-1-1 {
    aspect-ratio: 1/1;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-1-2 {
    aspect-ratio: 1/2;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-1-3 {
    aspect-ratio: 1/3;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-1-4 {
    aspect-ratio: 1/4;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-2-1 {
    aspect-ratio: 2/1;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-3-1 {
    aspect-ratio: 3/1;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-4-1 {
    aspect-ratio: 4/1;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-2-3 {
    aspect-ratio: 2/3;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-3-4 {
    aspect-ratio: 3/4;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-4-5 {
    aspect-ratio: 4/5;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-5-6 {
    aspect-ratio: 5/6;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-3-2 {
    aspect-ratio: 3/2;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-4-3 {
    aspect-ratio: 4/3;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-5-4 {
    aspect-ratio: 5/4;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-6-5 {
    aspect-ratio: 6/5;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-16-9 {
    aspect-ratio: 16/9;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-9-16 {
    aspect-ratio: 9-/16;
  }
}

.w-auto {
  width: auto;
}

.h-auto {
  width: auto;
}

@media screen and (min-width: 576px) {
  .w-sm-auto {
    width: auto;
  }
}

@media screen and (min-width: 576px) {
  .h-sm-auto {
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .w-md-auto {
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .h-md-auto {
    width: auto;
  }
}

@media screen and (min-width: 992px) {
  .w-lg-auto {
    width: auto;
  }
}

@media screen and (min-width: 992px) {
  .h-lg-auto {
    width: auto;
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-auto {
    width: auto;
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-auto {
    width: auto;
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-auto {
    width: auto;
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-auto {
    width: auto;
  }
}

body {
  --wp--preset--spacing--size-1: 1rem;
  --wp--preset--spacing--size-2: 2rem;
  --wp--preset--spacing--size-3: 3rem;
  --wp--preset--spacing--size-4: 5rem;
  --wp--preset--spacing--size-5: 6rem;
}
@media (min-width: 768px) {
  body {
    --wp--preset--spacing--size-1: 1.5rem;
    --wp--preset--spacing--size-2: 3rem;
    --wp--preset--spacing--size-3: 4.5rem;
    --wp--preset--spacing--size-4: 7.5rem;
    --wp--preset--spacing--size-5: 9rem;
  }
}
@media (min-width: 992px) {
  body {
    --wp--preset--spacing--size-1: 3rem;
    --wp--preset--spacing--size-2: 5rem;
    --wp--preset--spacing--size-3: 7rem;
    --wp--preset--spacing--size-4: 10rem;
    --wp--preset--spacing--size-5: 13rem;
  }
}

video {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.wp-block-video video {
  height: 100%;
}

.no-scroll {
  overflow-y: hidden;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.no-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  background: transparent;
}

.circle {
  border-radius: 50%;
}

.z-index-1 {
  z-index: 1;
}

.z-index-n1 {
  z-index: -1;
}

.z-index-10 {
  z-index: 10;
}

.z-index-n10 {
  z-index: -10;
}

.z-index-20 {
  z-index: 20;
}

.z-index-n20 {
  z-index: -20;
}

.z-index-30 {
  z-index: 30;
}

.z-index-n30 {
  z-index: -30;
}

.z-index-40 {
  z-index: 40;
}

.z-index-n40 {
  z-index: -40;
}

.z-index-50 {
  z-index: 50;
}

.z-index-n50 {
  z-index: -50;
}

.z-index-60 {
  z-index: 60;
}

.z-index-n60 {
  z-index: -60;
}

.z-index-70 {
  z-index: 70;
}

.z-index-n70 {
  z-index: -70;
}

.z-index-80 {
  z-index: 80;
}

.z-index-n80 {
  z-index: -80;
}

.z-index-90 {
  z-index: 90;
}

.z-index-n90 {
  z-index: -90;
}

.z-index-100 {
  z-index: 100;
}

.z-index-n100 {
  z-index: -100;
}

.z-index-1000 {
  z-index: 1000;
}

.z-index-n1000 {
  z-index: -1000;
}

@media screen and (min-width: 576px) {
  .z-index-sm-1 {
    z-index: 1;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n1 {
    z-index: -1;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-10 {
    z-index: 10;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n10 {
    z-index: -10;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-20 {
    z-index: 20;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n20 {
    z-index: -20;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-30 {
    z-index: 30;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n30 {
    z-index: -30;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-40 {
    z-index: 40;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n40 {
    z-index: -40;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-50 {
    z-index: 50;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n50 {
    z-index: -50;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-60 {
    z-index: 60;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n60 {
    z-index: -60;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-70 {
    z-index: 70;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n70 {
    z-index: -70;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-80 {
    z-index: 80;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n80 {
    z-index: -80;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-90 {
    z-index: 90;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n90 {
    z-index: -90;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-100 {
    z-index: 100;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n100 {
    z-index: -100;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-1000 {
    z-index: 1000;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n1000 {
    z-index: -1000;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-1 {
    z-index: 1;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n1 {
    z-index: -1;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-10 {
    z-index: 10;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n10 {
    z-index: -10;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-20 {
    z-index: 20;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n20 {
    z-index: -20;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-30 {
    z-index: 30;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n30 {
    z-index: -30;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-40 {
    z-index: 40;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n40 {
    z-index: -40;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-50 {
    z-index: 50;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n50 {
    z-index: -50;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-60 {
    z-index: 60;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n60 {
    z-index: -60;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-70 {
    z-index: 70;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n70 {
    z-index: -70;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-80 {
    z-index: 80;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n80 {
    z-index: -80;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-90 {
    z-index: 90;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n90 {
    z-index: -90;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-100 {
    z-index: 100;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n100 {
    z-index: -100;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-1000 {
    z-index: 1000;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n1000 {
    z-index: -1000;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-1 {
    z-index: 1;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n1 {
    z-index: -1;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-10 {
    z-index: 10;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n10 {
    z-index: -10;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-20 {
    z-index: 20;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n20 {
    z-index: -20;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-30 {
    z-index: 30;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n30 {
    z-index: -30;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-40 {
    z-index: 40;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n40 {
    z-index: -40;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-50 {
    z-index: 50;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n50 {
    z-index: -50;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-60 {
    z-index: 60;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n60 {
    z-index: -60;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-70 {
    z-index: 70;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n70 {
    z-index: -70;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-80 {
    z-index: 80;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n80 {
    z-index: -80;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-90 {
    z-index: 90;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n90 {
    z-index: -90;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-100 {
    z-index: 100;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n100 {
    z-index: -100;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-1000 {
    z-index: 1000;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n1000 {
    z-index: -1000;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-1 {
    z-index: 1;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n1 {
    z-index: -1;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-10 {
    z-index: 10;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n10 {
    z-index: -10;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-20 {
    z-index: 20;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n20 {
    z-index: -20;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-30 {
    z-index: 30;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n30 {
    z-index: -30;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-40 {
    z-index: 40;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n40 {
    z-index: -40;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-50 {
    z-index: 50;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n50 {
    z-index: -50;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-60 {
    z-index: 60;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n60 {
    z-index: -60;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-70 {
    z-index: 70;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n70 {
    z-index: -70;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-80 {
    z-index: 80;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n80 {
    z-index: -80;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-90 {
    z-index: 90;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n90 {
    z-index: -90;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-100 {
    z-index: 100;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n100 {
    z-index: -100;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-1000 {
    z-index: 1000;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n1000 {
    z-index: -1000;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-1 {
    z-index: 1;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n1 {
    z-index: -1;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-10 {
    z-index: 10;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n10 {
    z-index: -10;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-20 {
    z-index: 20;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n20 {
    z-index: -20;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-30 {
    z-index: 30;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n30 {
    z-index: -30;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-40 {
    z-index: 40;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n40 {
    z-index: -40;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-50 {
    z-index: 50;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n50 {
    z-index: -50;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-60 {
    z-index: 60;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n60 {
    z-index: -60;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-70 {
    z-index: 70;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n70 {
    z-index: -70;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-80 {
    z-index: 80;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n80 {
    z-index: -80;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-90 {
    z-index: 90;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n90 {
    z-index: -90;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-100 {
    z-index: 100;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n100 {
    z-index: -100;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-1000 {
    z-index: 1000;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n1000 {
    z-index: -1000;
  }
}

.z-index-auto {
  z-index: auto;
}

@media screen and (min-width: 576px) {
  .z-index-sm-auto {
    z-index: auto;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-auto {
    z-index: auto;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-auto {
    z-index: auto;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-auto {
    z-index: auto;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-auto {
    z-index: auto;
  }
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.wp-block-separator {
  border-top-width: 1px;
}
.wp-block-separator.is-style-default {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  border-width: 0.5px;
}

.square {
  aspect-ratio: 1/1;
}

.wp-block-cover {
  padding: 0;
}
.wp-block-cover .wp-block-cover__background {
  z-index: 11;
}
.wp-block-cover .has-background-gradient {
  mix-blend-mode: multiply;
}
.wp-block-cover.grain .has-background-gradient {
  background: radial-gradient(farthest-corner at -100% 190%, #54bbab, #2b505c) !important;
}

.wp-block-group.grain {
  background: radial-gradient(farthest-corner at -100% 190%, #54bbab, #2b505c) !important;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible !important;
}

.smx-breadcrumbs.has-white-color * {
  color: #fff;
}
.smx-breadcrumbs.has-white-darken-color * {
  color: rgb(229.5, 229.5, 229.5);
}
.smx-breadcrumbs.has-black-color * {
  color: #000;
}
.smx-breadcrumbs.has-black-darken-color * {
  color: hsl(0, 0%, -10%);
}
.smx-breadcrumbs.has-primary-color * {
  color: #2b505c;
}
.smx-breadcrumbs.has-primary-darken-color * {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
.smx-breadcrumbs.has-secondary-color * {
  color: #54bbab;
}
.smx-breadcrumbs.has-secondary-darken-color * {
  color: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
.smx-breadcrumbs.has-secondary-light-color * {
  color: #6ecbbd;
}
.smx-breadcrumbs.has-secondary-light-darken-color * {
  color: rgb(72.461928934, 189.538071066, 171.9137055838);
}
.smx-breadcrumbs.has-secondary-dark-color * {
  color: #289780;
}
.smx-breadcrumbs.has-secondary-dark-darken-color * {
  color: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
.smx-breadcrumbs.has-typography-color * {
  color: #2b505c;
}
.smx-breadcrumbs.has-typography-darken-color * {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
.smx-breadcrumbs.has-light-grey-color * {
  color: #eff4f5;
}
.smx-breadcrumbs.has-light-grey-darken-color * {
  color: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}

.scroll-down {
  position: relative;
}
.scroll-down::after {
  position: absolute;
  top: calc(100vh - 13rem);
  left: calc(50% - 1px);
  z-index: 100;
  width: 2px;
  height: 13rem;
  background-color: white;
  -webkit-animation: scroll-down 1.7s ease-in-out infinite both alternate;
  animation: scroll-down 1.7s ease-in-out infinite both alternate;
  content: "";
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

.radius-0 {
  border-radius: 0;
}

.radius-top-left-0 {
  border-top-left-radius: 0;
}

.radius-xs-top-left-0 {
  border-top-left-radius: 0;
}

@media (min-width: 576px) {
  .radius-sm-top-left-0 {
    border-top-left-radius: 0;
  }
}
@media (min-width: 768px) {
  .radius-md-top-left-0 {
    border-top-left-radius: 0;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-left-0 {
    border-top-left-radius: 0;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-left-0 {
    border-top-left-radius: 0;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-left-0 {
    border-top-left-radius: 0;
  }
}
.radius-top-right-0 {
  border-top-right-radius: 0;
}

.radius-xs-top-right-0 {
  border-top-right-radius: 0;
}

@media (min-width: 576px) {
  .radius-sm-top-right-0 {
    border-top-right-radius: 0;
  }
}
@media (min-width: 768px) {
  .radius-md-top-right-0 {
    border-top-right-radius: 0;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-right-0 {
    border-top-right-radius: 0;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-right-0 {
    border-top-right-radius: 0;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-right-0 {
    border-top-right-radius: 0;
  }
}
.radius-bottom-left-0 {
  border-bottom-left-radius: 0;
}

.radius-xs-bottom-left-0 {
  border-bottom-left-radius: 0;
}

@media (min-width: 576px) {
  .radius-sm-bottom-left-0 {
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-left-0 {
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-left-0 {
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-left-0 {
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-left-0 {
    border-bottom-left-radius: 0;
  }
}
.radius-bottom-right-0 {
  border-bottom-right-radius: 0;
}

.radius-xs-bottom-right-0 {
  border-bottom-right-radius: 0;
}

@media (min-width: 576px) {
  .radius-sm-bottom-right-0 {
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-right-0 {
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-right-0 {
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-right-0 {
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-right-0 {
    border-bottom-right-radius: 0;
  }
}
.radius-1 {
  border-radius: 1rem;
}

.radius-top-left-1 {
  border-top-left-radius: 1rem;
}

.radius-xs-top-left-1 {
  border-top-left-radius: 1rem;
}

@media (min-width: 576px) {
  .radius-sm-top-left-1 {
    border-top-left-radius: 1rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-left-1 {
    border-top-left-radius: 1rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-left-1 {
    border-top-left-radius: 1rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-left-1 {
    border-top-left-radius: 1rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-left-1 {
    border-top-left-radius: 1rem;
  }
}
.radius-top-right-1 {
  border-top-right-radius: 1rem;
}

.radius-xs-top-right-1 {
  border-top-right-radius: 1rem;
}

@media (min-width: 576px) {
  .radius-sm-top-right-1 {
    border-top-right-radius: 1rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-right-1 {
    border-top-right-radius: 1rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-right-1 {
    border-top-right-radius: 1rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-right-1 {
    border-top-right-radius: 1rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-right-1 {
    border-top-right-radius: 1rem;
  }
}
.radius-bottom-left-1 {
  border-bottom-left-radius: 1rem;
}

.radius-xs-bottom-left-1 {
  border-bottom-left-radius: 1rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-left-1 {
    border-bottom-left-radius: 1rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-left-1 {
    border-bottom-left-radius: 1rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-left-1 {
    border-bottom-left-radius: 1rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-left-1 {
    border-bottom-left-radius: 1rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-left-1 {
    border-bottom-left-radius: 1rem;
  }
}
.radius-bottom-right-1 {
  border-bottom-right-radius: 1rem;
}

.radius-xs-bottom-right-1 {
  border-bottom-right-radius: 1rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-right-1 {
    border-bottom-right-radius: 1rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-right-1 {
    border-bottom-right-radius: 1rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-right-1 {
    border-bottom-right-radius: 1rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-right-1 {
    border-bottom-right-radius: 1rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-right-1 {
    border-bottom-right-radius: 1rem;
  }
}
.radius-2 {
  border-radius: 2rem;
}

.radius-top-left-2 {
  border-top-left-radius: 2rem;
}

.radius-xs-top-left-2 {
  border-top-left-radius: 2rem;
}

@media (min-width: 576px) {
  .radius-sm-top-left-2 {
    border-top-left-radius: 2rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-left-2 {
    border-top-left-radius: 2rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-left-2 {
    border-top-left-radius: 2rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-left-2 {
    border-top-left-radius: 2rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-left-2 {
    border-top-left-radius: 2rem;
  }
}
.radius-top-right-2 {
  border-top-right-radius: 2rem;
}

.radius-xs-top-right-2 {
  border-top-right-radius: 2rem;
}

@media (min-width: 576px) {
  .radius-sm-top-right-2 {
    border-top-right-radius: 2rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-right-2 {
    border-top-right-radius: 2rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-right-2 {
    border-top-right-radius: 2rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-right-2 {
    border-top-right-radius: 2rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-right-2 {
    border-top-right-radius: 2rem;
  }
}
.radius-bottom-left-2 {
  border-bottom-left-radius: 2rem;
}

.radius-xs-bottom-left-2 {
  border-bottom-left-radius: 2rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-left-2 {
    border-bottom-left-radius: 2rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-left-2 {
    border-bottom-left-radius: 2rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-left-2 {
    border-bottom-left-radius: 2rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-left-2 {
    border-bottom-left-radius: 2rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-left-2 {
    border-bottom-left-radius: 2rem;
  }
}
.radius-bottom-right-2 {
  border-bottom-right-radius: 2rem;
}

.radius-xs-bottom-right-2 {
  border-bottom-right-radius: 2rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-right-2 {
    border-bottom-right-radius: 2rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-right-2 {
    border-bottom-right-radius: 2rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-right-2 {
    border-bottom-right-radius: 2rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-right-2 {
    border-bottom-right-radius: 2rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-right-2 {
    border-bottom-right-radius: 2rem;
  }
}
.radius-3 {
  border-radius: 3rem;
}

.radius-top-left-3 {
  border-top-left-radius: 3rem;
}

.radius-xs-top-left-3 {
  border-top-left-radius: 3rem;
}

@media (min-width: 576px) {
  .radius-sm-top-left-3 {
    border-top-left-radius: 3rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-left-3 {
    border-top-left-radius: 3rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-left-3 {
    border-top-left-radius: 3rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-left-3 {
    border-top-left-radius: 3rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-left-3 {
    border-top-left-radius: 3rem;
  }
}
.radius-top-right-3 {
  border-top-right-radius: 3rem;
}

.radius-xs-top-right-3 {
  border-top-right-radius: 3rem;
}

@media (min-width: 576px) {
  .radius-sm-top-right-3 {
    border-top-right-radius: 3rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-right-3 {
    border-top-right-radius: 3rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-right-3 {
    border-top-right-radius: 3rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-right-3 {
    border-top-right-radius: 3rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-right-3 {
    border-top-right-radius: 3rem;
  }
}
.radius-bottom-left-3 {
  border-bottom-left-radius: 3rem;
}

.radius-xs-bottom-left-3 {
  border-bottom-left-radius: 3rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-left-3 {
    border-bottom-left-radius: 3rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-left-3 {
    border-bottom-left-radius: 3rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-left-3 {
    border-bottom-left-radius: 3rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-left-3 {
    border-bottom-left-radius: 3rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-left-3 {
    border-bottom-left-radius: 3rem;
  }
}
.radius-bottom-right-3 {
  border-bottom-right-radius: 3rem;
}

.radius-xs-bottom-right-3 {
  border-bottom-right-radius: 3rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-right-3 {
    border-bottom-right-radius: 3rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-right-3 {
    border-bottom-right-radius: 3rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-right-3 {
    border-bottom-right-radius: 3rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-right-3 {
    border-bottom-right-radius: 3rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-right-3 {
    border-bottom-right-radius: 3rem;
  }
}
.radius-4 {
  border-radius: 4rem;
}

.radius-top-left-4 {
  border-top-left-radius: 4rem;
}

.radius-xs-top-left-4 {
  border-top-left-radius: 4rem;
}

@media (min-width: 576px) {
  .radius-sm-top-left-4 {
    border-top-left-radius: 4rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-left-4 {
    border-top-left-radius: 4rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-left-4 {
    border-top-left-radius: 4rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-left-4 {
    border-top-left-radius: 4rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-left-4 {
    border-top-left-radius: 4rem;
  }
}
.radius-top-right-4 {
  border-top-right-radius: 4rem;
}

.radius-xs-top-right-4 {
  border-top-right-radius: 4rem;
}

@media (min-width: 576px) {
  .radius-sm-top-right-4 {
    border-top-right-radius: 4rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-right-4 {
    border-top-right-radius: 4rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-right-4 {
    border-top-right-radius: 4rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-right-4 {
    border-top-right-radius: 4rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-right-4 {
    border-top-right-radius: 4rem;
  }
}
.radius-bottom-left-4 {
  border-bottom-left-radius: 4rem;
}

.radius-xs-bottom-left-4 {
  border-bottom-left-radius: 4rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-left-4 {
    border-bottom-left-radius: 4rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-left-4 {
    border-bottom-left-radius: 4rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-left-4 {
    border-bottom-left-radius: 4rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-left-4 {
    border-bottom-left-radius: 4rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-left-4 {
    border-bottom-left-radius: 4rem;
  }
}
.radius-bottom-right-4 {
  border-bottom-right-radius: 4rem;
}

.radius-xs-bottom-right-4 {
  border-bottom-right-radius: 4rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-right-4 {
    border-bottom-right-radius: 4rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-right-4 {
    border-bottom-right-radius: 4rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-right-4 {
    border-bottom-right-radius: 4rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-right-4 {
    border-bottom-right-radius: 4rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-right-4 {
    border-bottom-right-radius: 4rem;
  }
}
.box-shadow {
  -webkit-box-shadow: 0 3px 20px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 20px 5px rgba(0, 0, 0, 0.1);
}
.box-shadow:active, .box-shadow:focus, .box-shadow:focus-within {
  -webkit-box-shadow: 0 3px 25px 5px rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 3px 25px 5px rgba(0, 0, 0, 0.1) !important;
}

.box-shadow-bottom {
  -webkit-box-shadow: 0 10px 20px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px 5px rgba(0, 0, 0, 0.1);
}
.box-shadow-bottom:active, .box-shadow-bottom:focus, .box-shadow-bottom:focus-within {
  -webkit-box-shadow: 0 10px 25px 5px rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 10px 25px 5px rgba(0, 0, 0, 0.1) !important;
}

.decorative-belt {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 10;
  width: 100%;
  height: 50rem;
  overflow: hidden;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.decorative-belt .wp-block-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 107%;
  -webkit-transform: translate(-50%, -50%) rotate(-4deg);
  transform: translate(-50%, -50%) rotate(-4deg);
}

.wp-block-cover__inner-container:has(.h-100) {
  height: 100%;
}

.vertical-center {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.orizontal-center {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.center-center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.spinner-wrapper {
  position: relative;
  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: 4rem;
  height: 4rem;
  margin: 2rem auto;
}
.spinner-wrapper .spinner {
  width: 100%;
  height: 100%;
  background-color: #2b505c;
  border-radius: 50%;
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
  animation: heartbeat 1.5s ease-in-out infinite both;
}
.spinner-wrapper.hide {
  opacity: 0;
}

.blur-4 {
  -webkit-filter: blur(4px);
  filter: blur(4px);
}

.smx-items-carousel .smx-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3rem;
  gap: 0.2rem;
}
.smx-items-carousel .smx-pagination li {
  padding: 0;
}
.smx-items-carousel .smx-pagination li::before {
  content: none;
}
.smx-items-carousel .smx-pagination li button {
  position: relative;
  width: 2.5rem;
  height: 3rem;
  padding: 0;
}
.smx-items-carousel .smx-pagination li button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  background: #2b505c;
  border-radius: 2rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  content: "";
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.smx-items-carousel .smx-pagination li button.is-active::after {
  width: 2rem;
}

:focus {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 2px solid red !important;
  outline-offset: 2px !important;
}
:focus:not(:focus-visible) {
  outline: none !important;
}

a,
button,
.button,
input,
select,
textarea {
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}
a:focus-visible,
button:focus-visible,
.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid red !important;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none !important;
}

input[type=hidden],
input[disabled],
button[disabled] {
  color: inherit !important;
  background-color: inherit !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

[tabindex="-1"]:focus {
  outline: none !important;
}

a:focus:not(:focus-visible) {
  outline: none;
}

.skip-link {
  position: fixed;
  top: -10rem;
  left: 6px;
  z-index: 100000;
  padding: 1rem;
  font-weight: 600;
  color: white !important;
  background-color: #54bbab;
}
.skip-link:active, .skip-link:focus, .skip-link:focus-visible {
  top: 6px !important;
}

button,
.button,
.smx-button {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Chillax";
  font-size: 1.8rem;
  line-height: 1.1em;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
button.button-primary, button.is-style-button-primary,
.button.button-primary,
.button.is-style-button-primary,
.smx-button.button-primary,
.smx-button.is-style-button-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 22rem;
  padding: 1.5rem 2rem;
  font-weight: 400;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0.4rem;
  gap: 0.7rem;
}
button.button-primary .icon, button.is-style-button-primary .icon,
.button.button-primary .icon,
.button.is-style-button-primary .icon,
.smx-button.button-primary .icon,
.smx-button.is-style-button-primary .icon {
  position: relative;
  top: 2px;
  overflow: visible;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
button.button-primary .icon svg, button.is-style-button-primary .icon svg,
.button.button-primary .icon svg,
.button.is-style-button-primary .icon svg,
.smx-button.button-primary .icon svg,
.smx-button.is-style-button-primary .icon svg {
  display: block;
  width: 1.2rem;
}
button.button-primary .icon svg *, button.is-style-button-primary .icon svg *,
.button.button-primary .icon svg *,
.button.is-style-button-primary .icon svg *,
.smx-button.button-primary .icon svg *,
.smx-button.is-style-button-primary .icon svg * {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
button.button-primary:hover .icon, button.is-style-button-primary:hover .icon,
.button.button-primary:hover .icon,
.button.is-style-button-primary:hover .icon,
.smx-button.button-primary:hover .icon,
.smx-button.is-style-button-primary:hover .icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
button.button-primary.has-white-background-color, button.is-style-button-primary.has-white-background-color,
.button.button-primary.has-white-background-color,
.button.is-style-button-primary.has-white-background-color,
.smx-button.button-primary.has-white-background-color,
.smx-button.is-style-button-primary.has-white-background-color {
  background-color: #fff;
}
button.button-primary.has-white-color, button.is-style-button-primary.has-white-color,
.button.button-primary.has-white-color,
.button.is-style-button-primary.has-white-color,
.smx-button.button-primary.has-white-color,
.smx-button.is-style-button-primary.has-white-color {
  color: #fff;
}
button.button-primary.has-white-color .icon svg *, button.is-style-button-primary.has-white-color .icon svg *,
.button.button-primary.has-white-color .icon svg *,
.button.is-style-button-primary.has-white-color .icon svg *,
.smx-button.button-primary.has-white-color .icon svg *,
.smx-button.is-style-button-primary.has-white-color .icon svg * {
  fill: #fff;
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-white-hover-background-color, button.is-style-button-primary:hover.has-white-hover-background-color,
.button.button-primary:hover.has-white-hover-background-color,
.button.is-style-button-primary:hover.has-white-hover-background-color,
.smx-button.button-primary:hover.has-white-hover-background-color,
.smx-button.is-style-button-primary:hover.has-white-hover-background-color {
  background-color: #fff;
}
button.button-primary:hover.has-white-hover-color, button.is-style-button-primary:hover.has-white-hover-color,
.button.button-primary:hover.has-white-hover-color,
.button.is-style-button-primary:hover.has-white-hover-color,
.smx-button.button-primary:hover.has-white-hover-color,
.smx-button.is-style-button-primary:hover.has-white-hover-color {
  color: #fff;
}
button.button-primary.has-white-darken-background-color, button.is-style-button-primary.has-white-darken-background-color,
.button.button-primary.has-white-darken-background-color,
.button.is-style-button-primary.has-white-darken-background-color,
.smx-button.button-primary.has-white-darken-background-color,
.smx-button.is-style-button-primary.has-white-darken-background-color {
  background-color: rgb(229.5, 229.5, 229.5);
}
button.button-primary.has-white-darken-color, button.is-style-button-primary.has-white-darken-color,
.button.button-primary.has-white-darken-color,
.button.is-style-button-primary.has-white-darken-color,
.smx-button.button-primary.has-white-darken-color,
.smx-button.is-style-button-primary.has-white-darken-color {
  color: rgb(229.5, 229.5, 229.5);
}
button.button-primary.has-white-darken-color .icon svg *, button.is-style-button-primary.has-white-darken-color .icon svg *,
.button.button-primary.has-white-darken-color .icon svg *,
.button.is-style-button-primary.has-white-darken-color .icon svg *,
.smx-button.button-primary.has-white-darken-color .icon svg *,
.smx-button.is-style-button-primary.has-white-darken-color .icon svg * {
  fill: rgb(229.5, 229.5, 229.5);
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-white-darken-hover-background-color, button.is-style-button-primary:hover.has-white-darken-hover-background-color,
.button.button-primary:hover.has-white-darken-hover-background-color,
.button.is-style-button-primary:hover.has-white-darken-hover-background-color,
.smx-button.button-primary:hover.has-white-darken-hover-background-color,
.smx-button.is-style-button-primary:hover.has-white-darken-hover-background-color {
  background-color: rgb(229.5, 229.5, 229.5);
}
button.button-primary:hover.has-white-darken-hover-color, button.is-style-button-primary:hover.has-white-darken-hover-color,
.button.button-primary:hover.has-white-darken-hover-color,
.button.is-style-button-primary:hover.has-white-darken-hover-color,
.smx-button.button-primary:hover.has-white-darken-hover-color,
.smx-button.is-style-button-primary:hover.has-white-darken-hover-color {
  color: rgb(229.5, 229.5, 229.5);
}
button.button-primary.has-black-background-color, button.is-style-button-primary.has-black-background-color,
.button.button-primary.has-black-background-color,
.button.is-style-button-primary.has-black-background-color,
.smx-button.button-primary.has-black-background-color,
.smx-button.is-style-button-primary.has-black-background-color {
  background-color: #000;
}
button.button-primary.has-black-color, button.is-style-button-primary.has-black-color,
.button.button-primary.has-black-color,
.button.is-style-button-primary.has-black-color,
.smx-button.button-primary.has-black-color,
.smx-button.is-style-button-primary.has-black-color {
  color: #000;
}
button.button-primary.has-black-color .icon svg *, button.is-style-button-primary.has-black-color .icon svg *,
.button.button-primary.has-black-color .icon svg *,
.button.is-style-button-primary.has-black-color .icon svg *,
.smx-button.button-primary.has-black-color .icon svg *,
.smx-button.is-style-button-primary.has-black-color .icon svg * {
  fill: #000;
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-black-hover-background-color, button.is-style-button-primary:hover.has-black-hover-background-color,
.button.button-primary:hover.has-black-hover-background-color,
.button.is-style-button-primary:hover.has-black-hover-background-color,
.smx-button.button-primary:hover.has-black-hover-background-color,
.smx-button.is-style-button-primary:hover.has-black-hover-background-color {
  background-color: #000;
}
button.button-primary:hover.has-black-hover-color, button.is-style-button-primary:hover.has-black-hover-color,
.button.button-primary:hover.has-black-hover-color,
.button.is-style-button-primary:hover.has-black-hover-color,
.smx-button.button-primary:hover.has-black-hover-color,
.smx-button.is-style-button-primary:hover.has-black-hover-color {
  color: #000;
}
button.button-primary.has-black-darken-background-color, button.is-style-button-primary.has-black-darken-background-color,
.button.button-primary.has-black-darken-background-color,
.button.is-style-button-primary.has-black-darken-background-color,
.smx-button.button-primary.has-black-darken-background-color,
.smx-button.is-style-button-primary.has-black-darken-background-color {
  background-color: hsl(0, 0%, -10%);
}
button.button-primary.has-black-darken-color, button.is-style-button-primary.has-black-darken-color,
.button.button-primary.has-black-darken-color,
.button.is-style-button-primary.has-black-darken-color,
.smx-button.button-primary.has-black-darken-color,
.smx-button.is-style-button-primary.has-black-darken-color {
  color: hsl(0, 0%, -10%);
}
button.button-primary.has-black-darken-color .icon svg *, button.is-style-button-primary.has-black-darken-color .icon svg *,
.button.button-primary.has-black-darken-color .icon svg *,
.button.is-style-button-primary.has-black-darken-color .icon svg *,
.smx-button.button-primary.has-black-darken-color .icon svg *,
.smx-button.is-style-button-primary.has-black-darken-color .icon svg * {
  fill: hsl(0, 0%, -10%);
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-black-darken-hover-background-color, button.is-style-button-primary:hover.has-black-darken-hover-background-color,
.button.button-primary:hover.has-black-darken-hover-background-color,
.button.is-style-button-primary:hover.has-black-darken-hover-background-color,
.smx-button.button-primary:hover.has-black-darken-hover-background-color,
.smx-button.is-style-button-primary:hover.has-black-darken-hover-background-color {
  background-color: hsl(0, 0%, -10%);
}
button.button-primary:hover.has-black-darken-hover-color, button.is-style-button-primary:hover.has-black-darken-hover-color,
.button.button-primary:hover.has-black-darken-hover-color,
.button.is-style-button-primary:hover.has-black-darken-hover-color,
.smx-button.button-primary:hover.has-black-darken-hover-color,
.smx-button.is-style-button-primary:hover.has-black-darken-hover-color {
  color: hsl(0, 0%, -10%);
}
button.button-primary.has-primary-background-color, button.is-style-button-primary.has-primary-background-color,
.button.button-primary.has-primary-background-color,
.button.is-style-button-primary.has-primary-background-color,
.smx-button.button-primary.has-primary-background-color,
.smx-button.is-style-button-primary.has-primary-background-color {
  background-color: #2b505c;
}
button.button-primary.has-primary-color, button.is-style-button-primary.has-primary-color,
.button.button-primary.has-primary-color,
.button.is-style-button-primary.has-primary-color,
.smx-button.button-primary.has-primary-color,
.smx-button.is-style-button-primary.has-primary-color {
  color: #2b505c;
}
button.button-primary.has-primary-color .icon svg *, button.is-style-button-primary.has-primary-color .icon svg *,
.button.button-primary.has-primary-color .icon svg *,
.button.is-style-button-primary.has-primary-color .icon svg *,
.smx-button.button-primary.has-primary-color .icon svg *,
.smx-button.is-style-button-primary.has-primary-color .icon svg * {
  fill: #2b505c;
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-primary-hover-background-color, button.is-style-button-primary:hover.has-primary-hover-background-color,
.button.button-primary:hover.has-primary-hover-background-color,
.button.is-style-button-primary:hover.has-primary-hover-background-color,
.smx-button.button-primary:hover.has-primary-hover-background-color,
.smx-button.is-style-button-primary:hover.has-primary-hover-background-color {
  background-color: #2b505c;
}
button.button-primary:hover.has-primary-hover-color, button.is-style-button-primary:hover.has-primary-hover-color,
.button.button-primary:hover.has-primary-hover-color,
.button.is-style-button-primary:hover.has-primary-hover-color,
.smx-button.button-primary:hover.has-primary-hover-color,
.smx-button.is-style-button-primary:hover.has-primary-hover-color {
  color: #2b505c;
}
button.button-primary.has-primary-darken-background-color, button.is-style-button-primary.has-primary-darken-background-color,
.button.button-primary.has-primary-darken-background-color,
.button.is-style-button-primary.has-primary-darken-background-color,
.smx-button.button-primary.has-primary-darken-background-color,
.smx-button.is-style-button-primary.has-primary-darken-background-color {
  background-color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-primary.has-primary-darken-color, button.is-style-button-primary.has-primary-darken-color,
.button.button-primary.has-primary-darken-color,
.button.is-style-button-primary.has-primary-darken-color,
.smx-button.button-primary.has-primary-darken-color,
.smx-button.is-style-button-primary.has-primary-darken-color {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-primary.has-primary-darken-color .icon svg *, button.is-style-button-primary.has-primary-darken-color .icon svg *,
.button.button-primary.has-primary-darken-color .icon svg *,
.button.is-style-button-primary.has-primary-darken-color .icon svg *,
.smx-button.button-primary.has-primary-darken-color .icon svg *,
.smx-button.is-style-button-primary.has-primary-darken-color .icon svg * {
  fill: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-primary-darken-hover-background-color, button.is-style-button-primary:hover.has-primary-darken-hover-background-color,
.button.button-primary:hover.has-primary-darken-hover-background-color,
.button.is-style-button-primary:hover.has-primary-darken-hover-background-color,
.smx-button.button-primary:hover.has-primary-darken-hover-background-color,
.smx-button.is-style-button-primary:hover.has-primary-darken-hover-background-color {
  background-color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-primary:hover.has-primary-darken-hover-color, button.is-style-button-primary:hover.has-primary-darken-hover-color,
.button.button-primary:hover.has-primary-darken-hover-color,
.button.is-style-button-primary:hover.has-primary-darken-hover-color,
.smx-button.button-primary:hover.has-primary-darken-hover-color,
.smx-button.is-style-button-primary:hover.has-primary-darken-hover-color {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-primary.has-secondary-background-color, button.is-style-button-primary.has-secondary-background-color,
.button.button-primary.has-secondary-background-color,
.button.is-style-button-primary.has-secondary-background-color,
.smx-button.button-primary.has-secondary-background-color,
.smx-button.is-style-button-primary.has-secondary-background-color {
  background-color: #54bbab;
}
button.button-primary.has-secondary-color, button.is-style-button-primary.has-secondary-color,
.button.button-primary.has-secondary-color,
.button.is-style-button-primary.has-secondary-color,
.smx-button.button-primary.has-secondary-color,
.smx-button.is-style-button-primary.has-secondary-color {
  color: #54bbab;
}
button.button-primary.has-secondary-color .icon svg *, button.is-style-button-primary.has-secondary-color .icon svg *,
.button.button-primary.has-secondary-color .icon svg *,
.button.is-style-button-primary.has-secondary-color .icon svg *,
.smx-button.button-primary.has-secondary-color .icon svg *,
.smx-button.is-style-button-primary.has-secondary-color .icon svg * {
  fill: #54bbab;
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-secondary-hover-background-color, button.is-style-button-primary:hover.has-secondary-hover-background-color,
.button.button-primary:hover.has-secondary-hover-background-color,
.button.is-style-button-primary:hover.has-secondary-hover-background-color,
.smx-button.button-primary:hover.has-secondary-hover-background-color,
.smx-button.is-style-button-primary:hover.has-secondary-hover-background-color {
  background-color: #54bbab;
}
button.button-primary:hover.has-secondary-hover-color, button.is-style-button-primary:hover.has-secondary-hover-color,
.button.button-primary:hover.has-secondary-hover-color,
.button.is-style-button-primary:hover.has-secondary-hover-color,
.smx-button.button-primary:hover.has-secondary-hover-color,
.smx-button.is-style-button-primary:hover.has-secondary-hover-color {
  color: #54bbab;
}
button.button-primary.has-secondary-darken-background-color, button.is-style-button-primary.has-secondary-darken-background-color,
.button.button-primary.has-secondary-darken-background-color,
.button.is-style-button-primary.has-secondary-darken-background-color,
.smx-button.button-primary.has-secondary-darken-background-color,
.smx-button.is-style-button-primary.has-secondary-darken-background-color {
  background-color: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
button.button-primary.has-secondary-darken-color, button.is-style-button-primary.has-secondary-darken-color,
.button.button-primary.has-secondary-darken-color,
.button.is-style-button-primary.has-secondary-darken-color,
.smx-button.button-primary.has-secondary-darken-color,
.smx-button.is-style-button-primary.has-secondary-darken-color {
  color: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
button.button-primary.has-secondary-darken-color .icon svg *, button.is-style-button-primary.has-secondary-darken-color .icon svg *,
.button.button-primary.has-secondary-darken-color .icon svg *,
.button.is-style-button-primary.has-secondary-darken-color .icon svg *,
.smx-button.button-primary.has-secondary-darken-color .icon svg *,
.smx-button.is-style-button-primary.has-secondary-darken-color .icon svg * {
  fill: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-secondary-darken-hover-background-color, button.is-style-button-primary:hover.has-secondary-darken-hover-background-color,
.button.button-primary:hover.has-secondary-darken-hover-background-color,
.button.is-style-button-primary:hover.has-secondary-darken-hover-background-color,
.smx-button.button-primary:hover.has-secondary-darken-hover-background-color,
.smx-button.is-style-button-primary:hover.has-secondary-darken-hover-background-color {
  background-color: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
button.button-primary:hover.has-secondary-darken-hover-color, button.is-style-button-primary:hover.has-secondary-darken-hover-color,
.button.button-primary:hover.has-secondary-darken-hover-color,
.button.is-style-button-primary:hover.has-secondary-darken-hover-color,
.smx-button.button-primary:hover.has-secondary-darken-hover-color,
.smx-button.is-style-button-primary:hover.has-secondary-darken-hover-color {
  color: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
button.button-primary.has-secondary-light-background-color, button.is-style-button-primary.has-secondary-light-background-color,
.button.button-primary.has-secondary-light-background-color,
.button.is-style-button-primary.has-secondary-light-background-color,
.smx-button.button-primary.has-secondary-light-background-color,
.smx-button.is-style-button-primary.has-secondary-light-background-color {
  background-color: #6ecbbd;
}
button.button-primary.has-secondary-light-color, button.is-style-button-primary.has-secondary-light-color,
.button.button-primary.has-secondary-light-color,
.button.is-style-button-primary.has-secondary-light-color,
.smx-button.button-primary.has-secondary-light-color,
.smx-button.is-style-button-primary.has-secondary-light-color {
  color: #6ecbbd;
}
button.button-primary.has-secondary-light-color .icon svg *, button.is-style-button-primary.has-secondary-light-color .icon svg *,
.button.button-primary.has-secondary-light-color .icon svg *,
.button.is-style-button-primary.has-secondary-light-color .icon svg *,
.smx-button.button-primary.has-secondary-light-color .icon svg *,
.smx-button.is-style-button-primary.has-secondary-light-color .icon svg * {
  fill: #6ecbbd;
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-secondary-light-hover-background-color, button.is-style-button-primary:hover.has-secondary-light-hover-background-color,
.button.button-primary:hover.has-secondary-light-hover-background-color,
.button.is-style-button-primary:hover.has-secondary-light-hover-background-color,
.smx-button.button-primary:hover.has-secondary-light-hover-background-color,
.smx-button.is-style-button-primary:hover.has-secondary-light-hover-background-color {
  background-color: #6ecbbd;
}
button.button-primary:hover.has-secondary-light-hover-color, button.is-style-button-primary:hover.has-secondary-light-hover-color,
.button.button-primary:hover.has-secondary-light-hover-color,
.button.is-style-button-primary:hover.has-secondary-light-hover-color,
.smx-button.button-primary:hover.has-secondary-light-hover-color,
.smx-button.is-style-button-primary:hover.has-secondary-light-hover-color {
  color: #6ecbbd;
}
button.button-primary.has-secondary-light-darken-background-color, button.is-style-button-primary.has-secondary-light-darken-background-color,
.button.button-primary.has-secondary-light-darken-background-color,
.button.is-style-button-primary.has-secondary-light-darken-background-color,
.smx-button.button-primary.has-secondary-light-darken-background-color,
.smx-button.is-style-button-primary.has-secondary-light-darken-background-color {
  background-color: rgb(72.461928934, 189.538071066, 171.9137055838);
}
button.button-primary.has-secondary-light-darken-color, button.is-style-button-primary.has-secondary-light-darken-color,
.button.button-primary.has-secondary-light-darken-color,
.button.is-style-button-primary.has-secondary-light-darken-color,
.smx-button.button-primary.has-secondary-light-darken-color,
.smx-button.is-style-button-primary.has-secondary-light-darken-color {
  color: rgb(72.461928934, 189.538071066, 171.9137055838);
}
button.button-primary.has-secondary-light-darken-color .icon svg *, button.is-style-button-primary.has-secondary-light-darken-color .icon svg *,
.button.button-primary.has-secondary-light-darken-color .icon svg *,
.button.is-style-button-primary.has-secondary-light-darken-color .icon svg *,
.smx-button.button-primary.has-secondary-light-darken-color .icon svg *,
.smx-button.is-style-button-primary.has-secondary-light-darken-color .icon svg * {
  fill: rgb(72.461928934, 189.538071066, 171.9137055838);
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-secondary-light-darken-hover-background-color, button.is-style-button-primary:hover.has-secondary-light-darken-hover-background-color,
.button.button-primary:hover.has-secondary-light-darken-hover-background-color,
.button.is-style-button-primary:hover.has-secondary-light-darken-hover-background-color,
.smx-button.button-primary:hover.has-secondary-light-darken-hover-background-color,
.smx-button.is-style-button-primary:hover.has-secondary-light-darken-hover-background-color {
  background-color: rgb(72.461928934, 189.538071066, 171.9137055838);
}
button.button-primary:hover.has-secondary-light-darken-hover-color, button.is-style-button-primary:hover.has-secondary-light-darken-hover-color,
.button.button-primary:hover.has-secondary-light-darken-hover-color,
.button.is-style-button-primary:hover.has-secondary-light-darken-hover-color,
.smx-button.button-primary:hover.has-secondary-light-darken-hover-color,
.smx-button.is-style-button-primary:hover.has-secondary-light-darken-hover-color {
  color: rgb(72.461928934, 189.538071066, 171.9137055838);
}
button.button-primary.has-secondary-dark-background-color, button.is-style-button-primary.has-secondary-dark-background-color,
.button.button-primary.has-secondary-dark-background-color,
.button.is-style-button-primary.has-secondary-dark-background-color,
.smx-button.button-primary.has-secondary-dark-background-color,
.smx-button.is-style-button-primary.has-secondary-dark-background-color {
  background-color: #289780;
}
button.button-primary.has-secondary-dark-color, button.is-style-button-primary.has-secondary-dark-color,
.button.button-primary.has-secondary-dark-color,
.button.is-style-button-primary.has-secondary-dark-color,
.smx-button.button-primary.has-secondary-dark-color,
.smx-button.is-style-button-primary.has-secondary-dark-color {
  color: #289780;
}
button.button-primary.has-secondary-dark-color .icon svg *, button.is-style-button-primary.has-secondary-dark-color .icon svg *,
.button.button-primary.has-secondary-dark-color .icon svg *,
.button.is-style-button-primary.has-secondary-dark-color .icon svg *,
.smx-button.button-primary.has-secondary-dark-color .icon svg *,
.smx-button.is-style-button-primary.has-secondary-dark-color .icon svg * {
  fill: #289780;
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-secondary-dark-hover-background-color, button.is-style-button-primary:hover.has-secondary-dark-hover-background-color,
.button.button-primary:hover.has-secondary-dark-hover-background-color,
.button.is-style-button-primary:hover.has-secondary-dark-hover-background-color,
.smx-button.button-primary:hover.has-secondary-dark-hover-background-color,
.smx-button.is-style-button-primary:hover.has-secondary-dark-hover-background-color {
  background-color: #289780;
}
button.button-primary:hover.has-secondary-dark-hover-color, button.is-style-button-primary:hover.has-secondary-dark-hover-color,
.button.button-primary:hover.has-secondary-dark-hover-color,
.button.is-style-button-primary:hover.has-secondary-dark-hover-color,
.smx-button.button-primary:hover.has-secondary-dark-hover-color,
.smx-button.is-style-button-primary:hover.has-secondary-dark-hover-color {
  color: #289780;
}
button.button-primary.has-secondary-dark-darken-background-color, button.is-style-button-primary.has-secondary-dark-darken-background-color,
.button.button-primary.has-secondary-dark-darken-background-color,
.button.is-style-button-primary.has-secondary-dark-darken-background-color,
.smx-button.button-primary.has-secondary-dark-darken-background-color,
.smx-button.is-style-button-primary.has-secondary-dark-darken-background-color {
  background-color: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
button.button-primary.has-secondary-dark-darken-color, button.is-style-button-primary.has-secondary-dark-darken-color,
.button.button-primary.has-secondary-dark-darken-color,
.button.is-style-button-primary.has-secondary-dark-darken-color,
.smx-button.button-primary.has-secondary-dark-darken-color,
.smx-button.is-style-button-primary.has-secondary-dark-darken-color {
  color: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
button.button-primary.has-secondary-dark-darken-color .icon svg *, button.is-style-button-primary.has-secondary-dark-darken-color .icon svg *,
.button.button-primary.has-secondary-dark-darken-color .icon svg *,
.button.is-style-button-primary.has-secondary-dark-darken-color .icon svg *,
.smx-button.button-primary.has-secondary-dark-darken-color .icon svg *,
.smx-button.is-style-button-primary.has-secondary-dark-darken-color .icon svg * {
  fill: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-secondary-dark-darken-hover-background-color, button.is-style-button-primary:hover.has-secondary-dark-darken-hover-background-color,
.button.button-primary:hover.has-secondary-dark-darken-hover-background-color,
.button.is-style-button-primary:hover.has-secondary-dark-darken-hover-background-color,
.smx-button.button-primary:hover.has-secondary-dark-darken-hover-background-color,
.smx-button.is-style-button-primary:hover.has-secondary-dark-darken-hover-background-color {
  background-color: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
button.button-primary:hover.has-secondary-dark-darken-hover-color, button.is-style-button-primary:hover.has-secondary-dark-darken-hover-color,
.button.button-primary:hover.has-secondary-dark-darken-hover-color,
.button.is-style-button-primary:hover.has-secondary-dark-darken-hover-color,
.smx-button.button-primary:hover.has-secondary-dark-darken-hover-color,
.smx-button.is-style-button-primary:hover.has-secondary-dark-darken-hover-color {
  color: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
button.button-primary.has-typography-background-color, button.is-style-button-primary.has-typography-background-color,
.button.button-primary.has-typography-background-color,
.button.is-style-button-primary.has-typography-background-color,
.smx-button.button-primary.has-typography-background-color,
.smx-button.is-style-button-primary.has-typography-background-color {
  background-color: #2b505c;
}
button.button-primary.has-typography-color, button.is-style-button-primary.has-typography-color,
.button.button-primary.has-typography-color,
.button.is-style-button-primary.has-typography-color,
.smx-button.button-primary.has-typography-color,
.smx-button.is-style-button-primary.has-typography-color {
  color: #2b505c;
}
button.button-primary.has-typography-color .icon svg *, button.is-style-button-primary.has-typography-color .icon svg *,
.button.button-primary.has-typography-color .icon svg *,
.button.is-style-button-primary.has-typography-color .icon svg *,
.smx-button.button-primary.has-typography-color .icon svg *,
.smx-button.is-style-button-primary.has-typography-color .icon svg * {
  fill: #2b505c;
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-typography-hover-background-color, button.is-style-button-primary:hover.has-typography-hover-background-color,
.button.button-primary:hover.has-typography-hover-background-color,
.button.is-style-button-primary:hover.has-typography-hover-background-color,
.smx-button.button-primary:hover.has-typography-hover-background-color,
.smx-button.is-style-button-primary:hover.has-typography-hover-background-color {
  background-color: #2b505c;
}
button.button-primary:hover.has-typography-hover-color, button.is-style-button-primary:hover.has-typography-hover-color,
.button.button-primary:hover.has-typography-hover-color,
.button.is-style-button-primary:hover.has-typography-hover-color,
.smx-button.button-primary:hover.has-typography-hover-color,
.smx-button.is-style-button-primary:hover.has-typography-hover-color {
  color: #2b505c;
}
button.button-primary.has-typography-darken-background-color, button.is-style-button-primary.has-typography-darken-background-color,
.button.button-primary.has-typography-darken-background-color,
.button.is-style-button-primary.has-typography-darken-background-color,
.smx-button.button-primary.has-typography-darken-background-color,
.smx-button.is-style-button-primary.has-typography-darken-background-color {
  background-color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-primary.has-typography-darken-color, button.is-style-button-primary.has-typography-darken-color,
.button.button-primary.has-typography-darken-color,
.button.is-style-button-primary.has-typography-darken-color,
.smx-button.button-primary.has-typography-darken-color,
.smx-button.is-style-button-primary.has-typography-darken-color {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-primary.has-typography-darken-color .icon svg *, button.is-style-button-primary.has-typography-darken-color .icon svg *,
.button.button-primary.has-typography-darken-color .icon svg *,
.button.is-style-button-primary.has-typography-darken-color .icon svg *,
.smx-button.button-primary.has-typography-darken-color .icon svg *,
.smx-button.is-style-button-primary.has-typography-darken-color .icon svg * {
  fill: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-typography-darken-hover-background-color, button.is-style-button-primary:hover.has-typography-darken-hover-background-color,
.button.button-primary:hover.has-typography-darken-hover-background-color,
.button.is-style-button-primary:hover.has-typography-darken-hover-background-color,
.smx-button.button-primary:hover.has-typography-darken-hover-background-color,
.smx-button.is-style-button-primary:hover.has-typography-darken-hover-background-color {
  background-color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-primary:hover.has-typography-darken-hover-color, button.is-style-button-primary:hover.has-typography-darken-hover-color,
.button.button-primary:hover.has-typography-darken-hover-color,
.button.is-style-button-primary:hover.has-typography-darken-hover-color,
.smx-button.button-primary:hover.has-typography-darken-hover-color,
.smx-button.is-style-button-primary:hover.has-typography-darken-hover-color {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-primary.has-light-grey-background-color, button.is-style-button-primary.has-light-grey-background-color,
.button.button-primary.has-light-grey-background-color,
.button.is-style-button-primary.has-light-grey-background-color,
.smx-button.button-primary.has-light-grey-background-color,
.smx-button.is-style-button-primary.has-light-grey-background-color {
  background-color: #eff4f5;
}
button.button-primary.has-light-grey-color, button.is-style-button-primary.has-light-grey-color,
.button.button-primary.has-light-grey-color,
.button.is-style-button-primary.has-light-grey-color,
.smx-button.button-primary.has-light-grey-color,
.smx-button.is-style-button-primary.has-light-grey-color {
  color: #eff4f5;
}
button.button-primary.has-light-grey-color .icon svg *, button.is-style-button-primary.has-light-grey-color .icon svg *,
.button.button-primary.has-light-grey-color .icon svg *,
.button.is-style-button-primary.has-light-grey-color .icon svg *,
.smx-button.button-primary.has-light-grey-color .icon svg *,
.smx-button.is-style-button-primary.has-light-grey-color .icon svg * {
  fill: #eff4f5;
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-light-grey-hover-background-color, button.is-style-button-primary:hover.has-light-grey-hover-background-color,
.button.button-primary:hover.has-light-grey-hover-background-color,
.button.is-style-button-primary:hover.has-light-grey-hover-background-color,
.smx-button.button-primary:hover.has-light-grey-hover-background-color,
.smx-button.is-style-button-primary:hover.has-light-grey-hover-background-color {
  background-color: #eff4f5;
}
button.button-primary:hover.has-light-grey-hover-color, button.is-style-button-primary:hover.has-light-grey-hover-color,
.button.button-primary:hover.has-light-grey-hover-color,
.button.is-style-button-primary:hover.has-light-grey-hover-color,
.smx-button.button-primary:hover.has-light-grey-hover-color,
.smx-button.is-style-button-primary:hover.has-light-grey-hover-color {
  color: #eff4f5;
}
button.button-primary.has-light-grey-darken-background-color, button.is-style-button-primary.has-light-grey-darken-background-color,
.button.button-primary.has-light-grey-darken-background-color,
.button.is-style-button-primary.has-light-grey-darken-background-color,
.smx-button.button-primary.has-light-grey-darken-background-color,
.smx-button.is-style-button-primary.has-light-grey-darken-background-color {
  background-color: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}
button.button-primary.has-light-grey-darken-color, button.is-style-button-primary.has-light-grey-darken-color,
.button.button-primary.has-light-grey-darken-color,
.button.is-style-button-primary.has-light-grey-darken-color,
.smx-button.button-primary.has-light-grey-darken-color,
.smx-button.is-style-button-primary.has-light-grey-darken-color {
  color: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}
button.button-primary.has-light-grey-darken-color .icon svg *, button.is-style-button-primary.has-light-grey-darken-color .icon svg *,
.button.button-primary.has-light-grey-darken-color .icon svg *,
.button.is-style-button-primary.has-light-grey-darken-color .icon svg *,
.smx-button.button-primary.has-light-grey-darken-color .icon svg *,
.smx-button.is-style-button-primary.has-light-grey-darken-color .icon svg * {
  fill: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}
button.button-primary:hover, button.is-style-button-primary:hover,
.button.button-primary:hover,
.button.is-style-button-primary:hover,
.smx-button.button-primary:hover,
.smx-button.is-style-button-primary:hover {
  color: white;
  background-color: #2b505c;
}
button.button-primary:hover .icon svg *, button.is-style-button-primary:hover .icon svg *,
.button.button-primary:hover .icon svg *,
.button.is-style-button-primary:hover .icon svg *,
.smx-button.button-primary:hover .icon svg *,
.smx-button.is-style-button-primary:hover .icon svg * {
  fill: white;
}
button.button-primary:hover.has-light-grey-darken-hover-background-color, button.is-style-button-primary:hover.has-light-grey-darken-hover-background-color,
.button.button-primary:hover.has-light-grey-darken-hover-background-color,
.button.is-style-button-primary:hover.has-light-grey-darken-hover-background-color,
.smx-button.button-primary:hover.has-light-grey-darken-hover-background-color,
.smx-button.is-style-button-primary:hover.has-light-grey-darken-hover-background-color {
  background-color: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}
button.button-primary:hover.has-light-grey-darken-hover-color, button.is-style-button-primary:hover.has-light-grey-darken-hover-color,
.button.button-primary:hover.has-light-grey-darken-hover-color,
.button.is-style-button-primary:hover.has-light-grey-darken-hover-color,
.smx-button.button-primary:hover.has-light-grey-darken-hover-color,
.smx-button.is-style-button-primary:hover.has-light-grey-darken-hover-color {
  color: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}
button.button-secondary, button.is-style-button-secondary,
.button.button-secondary,
.button.is-style-button-secondary,
.smx-button.button-secondary,
.smx-button.is-style-button-secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 22rem;
  padding: 1.5rem 2rem;
  font-weight: 400;
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
  border-radius: 0.4rem;
  gap: 0.7rem;
}
button.button-secondary .icon, button.is-style-button-secondary .icon,
.button.button-secondary .icon,
.button.is-style-button-secondary .icon,
.smx-button.button-secondary .icon,
.smx-button.is-style-button-secondary .icon {
  position: relative;
  top: 2px;
  overflow: visible;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
button.button-secondary .icon svg, button.is-style-button-secondary .icon svg,
.button.button-secondary .icon svg,
.button.is-style-button-secondary .icon svg,
.smx-button.button-secondary .icon svg,
.smx-button.is-style-button-secondary .icon svg {
  display: block;
  width: 1.2rem;
}
button.button-secondary .icon svg *, button.is-style-button-secondary .icon svg *,
.button.button-secondary .icon svg *,
.button.is-style-button-secondary .icon svg *,
.smx-button.button-secondary .icon svg *,
.smx-button.is-style-button-secondary .icon svg * {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
button.button-secondary:hover .icon, button.is-style-button-secondary:hover .icon,
.button.button-secondary:hover .icon,
.button.is-style-button-secondary:hover .icon,
.smx-button.button-secondary:hover .icon,
.smx-button.is-style-button-secondary:hover .icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
button.button-secondary.has-white-background-color, button.is-style-button-secondary.has-white-background-color,
.button.button-secondary.has-white-background-color,
.button.is-style-button-secondary.has-white-background-color,
.smx-button.button-secondary.has-white-background-color,
.smx-button.is-style-button-secondary.has-white-background-color {
  background-color: #fff;
}
button.button-secondary.has-white-color, button.is-style-button-secondary.has-white-color,
.button.button-secondary.has-white-color,
.button.is-style-button-secondary.has-white-color,
.smx-button.button-secondary.has-white-color,
.smx-button.is-style-button-secondary.has-white-color {
  color: #fff;
  border: 2px solid #fff;
}
button.button-secondary.has-white-color .icon svg *, button.is-style-button-secondary.has-white-color .icon svg *,
.button.button-secondary.has-white-color .icon svg *,
.button.is-style-button-secondary.has-white-color .icon svg *,
.smx-button.button-secondary.has-white-color .icon svg *,
.smx-button.is-style-button-secondary.has-white-color .icon svg * {
  fill: #fff;
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-white-hover-background-color, button.is-style-button-secondary:hover.has-white-hover-background-color,
.button.button-secondary:hover.has-white-hover-background-color,
.button.is-style-button-secondary:hover.has-white-hover-background-color,
.smx-button.button-secondary:hover.has-white-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-white-hover-background-color {
  background-color: #fff;
}
button.button-secondary:hover.has-white-hover-color, button.is-style-button-secondary:hover.has-white-hover-color,
.button.button-secondary:hover.has-white-hover-color,
.button.is-style-button-secondary:hover.has-white-hover-color,
.smx-button.button-secondary:hover.has-white-hover-color,
.smx-button.is-style-button-secondary:hover.has-white-hover-color {
  color: #fff;
}
button.button-secondary:hover.has-white-hover-color .icon *, button.is-style-button-secondary:hover.has-white-hover-color .icon *,
.button.button-secondary:hover.has-white-hover-color .icon *,
.button.is-style-button-secondary:hover.has-white-hover-color .icon *,
.smx-button.button-secondary:hover.has-white-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-white-hover-color .icon * {
  fill: #fff;
}
button.button-secondary.has-white-darken-background-color, button.is-style-button-secondary.has-white-darken-background-color,
.button.button-secondary.has-white-darken-background-color,
.button.is-style-button-secondary.has-white-darken-background-color,
.smx-button.button-secondary.has-white-darken-background-color,
.smx-button.is-style-button-secondary.has-white-darken-background-color {
  background-color: rgb(229.5, 229.5, 229.5);
}
button.button-secondary.has-white-darken-color, button.is-style-button-secondary.has-white-darken-color,
.button.button-secondary.has-white-darken-color,
.button.is-style-button-secondary.has-white-darken-color,
.smx-button.button-secondary.has-white-darken-color,
.smx-button.is-style-button-secondary.has-white-darken-color {
  color: rgb(229.5, 229.5, 229.5);
  border: 2px solid rgb(229.5, 229.5, 229.5);
}
button.button-secondary.has-white-darken-color .icon svg *, button.is-style-button-secondary.has-white-darken-color .icon svg *,
.button.button-secondary.has-white-darken-color .icon svg *,
.button.is-style-button-secondary.has-white-darken-color .icon svg *,
.smx-button.button-secondary.has-white-darken-color .icon svg *,
.smx-button.is-style-button-secondary.has-white-darken-color .icon svg * {
  fill: rgb(229.5, 229.5, 229.5);
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-white-darken-hover-background-color, button.is-style-button-secondary:hover.has-white-darken-hover-background-color,
.button.button-secondary:hover.has-white-darken-hover-background-color,
.button.is-style-button-secondary:hover.has-white-darken-hover-background-color,
.smx-button.button-secondary:hover.has-white-darken-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-white-darken-hover-background-color {
  background-color: rgb(229.5, 229.5, 229.5);
}
button.button-secondary:hover.has-white-darken-hover-color, button.is-style-button-secondary:hover.has-white-darken-hover-color,
.button.button-secondary:hover.has-white-darken-hover-color,
.button.is-style-button-secondary:hover.has-white-darken-hover-color,
.smx-button.button-secondary:hover.has-white-darken-hover-color,
.smx-button.is-style-button-secondary:hover.has-white-darken-hover-color {
  color: rgb(229.5, 229.5, 229.5);
}
button.button-secondary:hover.has-white-darken-hover-color .icon *, button.is-style-button-secondary:hover.has-white-darken-hover-color .icon *,
.button.button-secondary:hover.has-white-darken-hover-color .icon *,
.button.is-style-button-secondary:hover.has-white-darken-hover-color .icon *,
.smx-button.button-secondary:hover.has-white-darken-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-white-darken-hover-color .icon * {
  fill: rgb(229.5, 229.5, 229.5);
}
button.button-secondary.has-black-background-color, button.is-style-button-secondary.has-black-background-color,
.button.button-secondary.has-black-background-color,
.button.is-style-button-secondary.has-black-background-color,
.smx-button.button-secondary.has-black-background-color,
.smx-button.is-style-button-secondary.has-black-background-color {
  background-color: #000;
}
button.button-secondary.has-black-color, button.is-style-button-secondary.has-black-color,
.button.button-secondary.has-black-color,
.button.is-style-button-secondary.has-black-color,
.smx-button.button-secondary.has-black-color,
.smx-button.is-style-button-secondary.has-black-color {
  color: #000;
  border: 2px solid #000;
}
button.button-secondary.has-black-color .icon svg *, button.is-style-button-secondary.has-black-color .icon svg *,
.button.button-secondary.has-black-color .icon svg *,
.button.is-style-button-secondary.has-black-color .icon svg *,
.smx-button.button-secondary.has-black-color .icon svg *,
.smx-button.is-style-button-secondary.has-black-color .icon svg * {
  fill: #000;
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-black-hover-background-color, button.is-style-button-secondary:hover.has-black-hover-background-color,
.button.button-secondary:hover.has-black-hover-background-color,
.button.is-style-button-secondary:hover.has-black-hover-background-color,
.smx-button.button-secondary:hover.has-black-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-black-hover-background-color {
  background-color: #000;
}
button.button-secondary:hover.has-black-hover-color, button.is-style-button-secondary:hover.has-black-hover-color,
.button.button-secondary:hover.has-black-hover-color,
.button.is-style-button-secondary:hover.has-black-hover-color,
.smx-button.button-secondary:hover.has-black-hover-color,
.smx-button.is-style-button-secondary:hover.has-black-hover-color {
  color: #000;
}
button.button-secondary:hover.has-black-hover-color .icon *, button.is-style-button-secondary:hover.has-black-hover-color .icon *,
.button.button-secondary:hover.has-black-hover-color .icon *,
.button.is-style-button-secondary:hover.has-black-hover-color .icon *,
.smx-button.button-secondary:hover.has-black-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-black-hover-color .icon * {
  fill: #000;
}
button.button-secondary.has-black-darken-background-color, button.is-style-button-secondary.has-black-darken-background-color,
.button.button-secondary.has-black-darken-background-color,
.button.is-style-button-secondary.has-black-darken-background-color,
.smx-button.button-secondary.has-black-darken-background-color,
.smx-button.is-style-button-secondary.has-black-darken-background-color {
  background-color: hsl(0, 0%, -10%);
}
button.button-secondary.has-black-darken-color, button.is-style-button-secondary.has-black-darken-color,
.button.button-secondary.has-black-darken-color,
.button.is-style-button-secondary.has-black-darken-color,
.smx-button.button-secondary.has-black-darken-color,
.smx-button.is-style-button-secondary.has-black-darken-color {
  color: hsl(0, 0%, -10%);
  border: 2px solid hsl(0, 0%, -10%);
}
button.button-secondary.has-black-darken-color .icon svg *, button.is-style-button-secondary.has-black-darken-color .icon svg *,
.button.button-secondary.has-black-darken-color .icon svg *,
.button.is-style-button-secondary.has-black-darken-color .icon svg *,
.smx-button.button-secondary.has-black-darken-color .icon svg *,
.smx-button.is-style-button-secondary.has-black-darken-color .icon svg * {
  fill: hsl(0, 0%, -10%);
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-black-darken-hover-background-color, button.is-style-button-secondary:hover.has-black-darken-hover-background-color,
.button.button-secondary:hover.has-black-darken-hover-background-color,
.button.is-style-button-secondary:hover.has-black-darken-hover-background-color,
.smx-button.button-secondary:hover.has-black-darken-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-black-darken-hover-background-color {
  background-color: hsl(0, 0%, -10%);
}
button.button-secondary:hover.has-black-darken-hover-color, button.is-style-button-secondary:hover.has-black-darken-hover-color,
.button.button-secondary:hover.has-black-darken-hover-color,
.button.is-style-button-secondary:hover.has-black-darken-hover-color,
.smx-button.button-secondary:hover.has-black-darken-hover-color,
.smx-button.is-style-button-secondary:hover.has-black-darken-hover-color {
  color: hsl(0, 0%, -10%);
}
button.button-secondary:hover.has-black-darken-hover-color .icon *, button.is-style-button-secondary:hover.has-black-darken-hover-color .icon *,
.button.button-secondary:hover.has-black-darken-hover-color .icon *,
.button.is-style-button-secondary:hover.has-black-darken-hover-color .icon *,
.smx-button.button-secondary:hover.has-black-darken-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-black-darken-hover-color .icon * {
  fill: hsl(0, 0%, -10%);
}
button.button-secondary.has-primary-background-color, button.is-style-button-secondary.has-primary-background-color,
.button.button-secondary.has-primary-background-color,
.button.is-style-button-secondary.has-primary-background-color,
.smx-button.button-secondary.has-primary-background-color,
.smx-button.is-style-button-secondary.has-primary-background-color {
  background-color: #2b505c;
}
button.button-secondary.has-primary-color, button.is-style-button-secondary.has-primary-color,
.button.button-secondary.has-primary-color,
.button.is-style-button-secondary.has-primary-color,
.smx-button.button-secondary.has-primary-color,
.smx-button.is-style-button-secondary.has-primary-color {
  color: #2b505c;
  border: 2px solid #2b505c;
}
button.button-secondary.has-primary-color .icon svg *, button.is-style-button-secondary.has-primary-color .icon svg *,
.button.button-secondary.has-primary-color .icon svg *,
.button.is-style-button-secondary.has-primary-color .icon svg *,
.smx-button.button-secondary.has-primary-color .icon svg *,
.smx-button.is-style-button-secondary.has-primary-color .icon svg * {
  fill: #2b505c;
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-primary-hover-background-color, button.is-style-button-secondary:hover.has-primary-hover-background-color,
.button.button-secondary:hover.has-primary-hover-background-color,
.button.is-style-button-secondary:hover.has-primary-hover-background-color,
.smx-button.button-secondary:hover.has-primary-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-primary-hover-background-color {
  background-color: #2b505c;
}
button.button-secondary:hover.has-primary-hover-color, button.is-style-button-secondary:hover.has-primary-hover-color,
.button.button-secondary:hover.has-primary-hover-color,
.button.is-style-button-secondary:hover.has-primary-hover-color,
.smx-button.button-secondary:hover.has-primary-hover-color,
.smx-button.is-style-button-secondary:hover.has-primary-hover-color {
  color: #2b505c;
}
button.button-secondary:hover.has-primary-hover-color .icon *, button.is-style-button-secondary:hover.has-primary-hover-color .icon *,
.button.button-secondary:hover.has-primary-hover-color .icon *,
.button.is-style-button-secondary:hover.has-primary-hover-color .icon *,
.smx-button.button-secondary:hover.has-primary-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-primary-hover-color .icon * {
  fill: #2b505c;
}
button.button-secondary.has-primary-darken-background-color, button.is-style-button-secondary.has-primary-darken-background-color,
.button.button-secondary.has-primary-darken-background-color,
.button.is-style-button-secondary.has-primary-darken-background-color,
.smx-button.button-secondary.has-primary-darken-background-color,
.smx-button.is-style-button-secondary.has-primary-darken-background-color {
  background-color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-secondary.has-primary-darken-color, button.is-style-button-secondary.has-primary-darken-color,
.button.button-secondary.has-primary-darken-color,
.button.is-style-button-secondary.has-primary-darken-color,
.smx-button.button-secondary.has-primary-darken-color,
.smx-button.is-style-button-secondary.has-primary-darken-color {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
  border: 2px solid rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-secondary.has-primary-darken-color .icon svg *, button.is-style-button-secondary.has-primary-darken-color .icon svg *,
.button.button-secondary.has-primary-darken-color .icon svg *,
.button.is-style-button-secondary.has-primary-darken-color .icon svg *,
.smx-button.button-secondary.has-primary-darken-color .icon svg *,
.smx-button.is-style-button-secondary.has-primary-darken-color .icon svg * {
  fill: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-primary-darken-hover-background-color, button.is-style-button-secondary:hover.has-primary-darken-hover-background-color,
.button.button-secondary:hover.has-primary-darken-hover-background-color,
.button.is-style-button-secondary:hover.has-primary-darken-hover-background-color,
.smx-button.button-secondary:hover.has-primary-darken-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-primary-darken-hover-background-color {
  background-color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-secondary:hover.has-primary-darken-hover-color, button.is-style-button-secondary:hover.has-primary-darken-hover-color,
.button.button-secondary:hover.has-primary-darken-hover-color,
.button.is-style-button-secondary:hover.has-primary-darken-hover-color,
.smx-button.button-secondary:hover.has-primary-darken-hover-color,
.smx-button.is-style-button-secondary:hover.has-primary-darken-hover-color {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-secondary:hover.has-primary-darken-hover-color .icon *, button.is-style-button-secondary:hover.has-primary-darken-hover-color .icon *,
.button.button-secondary:hover.has-primary-darken-hover-color .icon *,
.button.is-style-button-secondary:hover.has-primary-darken-hover-color .icon *,
.smx-button.button-secondary:hover.has-primary-darken-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-primary-darken-hover-color .icon * {
  fill: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-secondary.has-secondary-background-color, button.is-style-button-secondary.has-secondary-background-color,
.button.button-secondary.has-secondary-background-color,
.button.is-style-button-secondary.has-secondary-background-color,
.smx-button.button-secondary.has-secondary-background-color,
.smx-button.is-style-button-secondary.has-secondary-background-color {
  background-color: #54bbab;
}
button.button-secondary.has-secondary-color, button.is-style-button-secondary.has-secondary-color,
.button.button-secondary.has-secondary-color,
.button.is-style-button-secondary.has-secondary-color,
.smx-button.button-secondary.has-secondary-color,
.smx-button.is-style-button-secondary.has-secondary-color {
  color: #54bbab;
  border: 2px solid #54bbab;
}
button.button-secondary.has-secondary-color .icon svg *, button.is-style-button-secondary.has-secondary-color .icon svg *,
.button.button-secondary.has-secondary-color .icon svg *,
.button.is-style-button-secondary.has-secondary-color .icon svg *,
.smx-button.button-secondary.has-secondary-color .icon svg *,
.smx-button.is-style-button-secondary.has-secondary-color .icon svg * {
  fill: #54bbab;
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-secondary-hover-background-color, button.is-style-button-secondary:hover.has-secondary-hover-background-color,
.button.button-secondary:hover.has-secondary-hover-background-color,
.button.is-style-button-secondary:hover.has-secondary-hover-background-color,
.smx-button.button-secondary:hover.has-secondary-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-secondary-hover-background-color {
  background-color: #54bbab;
}
button.button-secondary:hover.has-secondary-hover-color, button.is-style-button-secondary:hover.has-secondary-hover-color,
.button.button-secondary:hover.has-secondary-hover-color,
.button.is-style-button-secondary:hover.has-secondary-hover-color,
.smx-button.button-secondary:hover.has-secondary-hover-color,
.smx-button.is-style-button-secondary:hover.has-secondary-hover-color {
  color: #54bbab;
}
button.button-secondary:hover.has-secondary-hover-color .icon *, button.is-style-button-secondary:hover.has-secondary-hover-color .icon *,
.button.button-secondary:hover.has-secondary-hover-color .icon *,
.button.is-style-button-secondary:hover.has-secondary-hover-color .icon *,
.smx-button.button-secondary:hover.has-secondary-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-secondary-hover-color .icon * {
  fill: #54bbab;
}
button.button-secondary.has-secondary-darken-background-color, button.is-style-button-secondary.has-secondary-darken-background-color,
.button.button-secondary.has-secondary-darken-background-color,
.button.is-style-button-secondary.has-secondary-darken-background-color,
.smx-button.button-secondary.has-secondary-darken-background-color,
.smx-button.is-style-button-secondary.has-secondary-darken-background-color {
  background-color: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
button.button-secondary.has-secondary-darken-color, button.is-style-button-secondary.has-secondary-darken-color,
.button.button-secondary.has-secondary-darken-color,
.button.is-style-button-secondary.has-secondary-darken-color,
.smx-button.button-secondary.has-secondary-darken-color,
.smx-button.is-style-button-secondary.has-secondary-darken-color {
  color: rgb(62.5941422594, 157.4058577406, 142.6778242678);
  border: 2px solid rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
button.button-secondary.has-secondary-darken-color .icon svg *, button.is-style-button-secondary.has-secondary-darken-color .icon svg *,
.button.button-secondary.has-secondary-darken-color .icon svg *,
.button.is-style-button-secondary.has-secondary-darken-color .icon svg *,
.smx-button.button-secondary.has-secondary-darken-color .icon svg *,
.smx-button.is-style-button-secondary.has-secondary-darken-color .icon svg * {
  fill: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-secondary-darken-hover-background-color, button.is-style-button-secondary:hover.has-secondary-darken-hover-background-color,
.button.button-secondary:hover.has-secondary-darken-hover-background-color,
.button.is-style-button-secondary:hover.has-secondary-darken-hover-background-color,
.smx-button.button-secondary:hover.has-secondary-darken-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-secondary-darken-hover-background-color {
  background-color: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
button.button-secondary:hover.has-secondary-darken-hover-color, button.is-style-button-secondary:hover.has-secondary-darken-hover-color,
.button.button-secondary:hover.has-secondary-darken-hover-color,
.button.is-style-button-secondary:hover.has-secondary-darken-hover-color,
.smx-button.button-secondary:hover.has-secondary-darken-hover-color,
.smx-button.is-style-button-secondary:hover.has-secondary-darken-hover-color {
  color: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
button.button-secondary:hover.has-secondary-darken-hover-color .icon *, button.is-style-button-secondary:hover.has-secondary-darken-hover-color .icon *,
.button.button-secondary:hover.has-secondary-darken-hover-color .icon *,
.button.is-style-button-secondary:hover.has-secondary-darken-hover-color .icon *,
.smx-button.button-secondary:hover.has-secondary-darken-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-secondary-darken-hover-color .icon * {
  fill: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
button.button-secondary.has-secondary-light-background-color, button.is-style-button-secondary.has-secondary-light-background-color,
.button.button-secondary.has-secondary-light-background-color,
.button.is-style-button-secondary.has-secondary-light-background-color,
.smx-button.button-secondary.has-secondary-light-background-color,
.smx-button.is-style-button-secondary.has-secondary-light-background-color {
  background-color: #6ecbbd;
}
button.button-secondary.has-secondary-light-color, button.is-style-button-secondary.has-secondary-light-color,
.button.button-secondary.has-secondary-light-color,
.button.is-style-button-secondary.has-secondary-light-color,
.smx-button.button-secondary.has-secondary-light-color,
.smx-button.is-style-button-secondary.has-secondary-light-color {
  color: #6ecbbd;
  border: 2px solid #6ecbbd;
}
button.button-secondary.has-secondary-light-color .icon svg *, button.is-style-button-secondary.has-secondary-light-color .icon svg *,
.button.button-secondary.has-secondary-light-color .icon svg *,
.button.is-style-button-secondary.has-secondary-light-color .icon svg *,
.smx-button.button-secondary.has-secondary-light-color .icon svg *,
.smx-button.is-style-button-secondary.has-secondary-light-color .icon svg * {
  fill: #6ecbbd;
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-secondary-light-hover-background-color, button.is-style-button-secondary:hover.has-secondary-light-hover-background-color,
.button.button-secondary:hover.has-secondary-light-hover-background-color,
.button.is-style-button-secondary:hover.has-secondary-light-hover-background-color,
.smx-button.button-secondary:hover.has-secondary-light-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-secondary-light-hover-background-color {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-secondary-light-hover-color, button.is-style-button-secondary:hover.has-secondary-light-hover-color,
.button.button-secondary:hover.has-secondary-light-hover-color,
.button.is-style-button-secondary:hover.has-secondary-light-hover-color,
.smx-button.button-secondary:hover.has-secondary-light-hover-color,
.smx-button.is-style-button-secondary:hover.has-secondary-light-hover-color {
  color: #6ecbbd;
}
button.button-secondary:hover.has-secondary-light-hover-color .icon *, button.is-style-button-secondary:hover.has-secondary-light-hover-color .icon *,
.button.button-secondary:hover.has-secondary-light-hover-color .icon *,
.button.is-style-button-secondary:hover.has-secondary-light-hover-color .icon *,
.smx-button.button-secondary:hover.has-secondary-light-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-secondary-light-hover-color .icon * {
  fill: #6ecbbd;
}
button.button-secondary.has-secondary-light-darken-background-color, button.is-style-button-secondary.has-secondary-light-darken-background-color,
.button.button-secondary.has-secondary-light-darken-background-color,
.button.is-style-button-secondary.has-secondary-light-darken-background-color,
.smx-button.button-secondary.has-secondary-light-darken-background-color,
.smx-button.is-style-button-secondary.has-secondary-light-darken-background-color {
  background-color: rgb(72.461928934, 189.538071066, 171.9137055838);
}
button.button-secondary.has-secondary-light-darken-color, button.is-style-button-secondary.has-secondary-light-darken-color,
.button.button-secondary.has-secondary-light-darken-color,
.button.is-style-button-secondary.has-secondary-light-darken-color,
.smx-button.button-secondary.has-secondary-light-darken-color,
.smx-button.is-style-button-secondary.has-secondary-light-darken-color {
  color: rgb(72.461928934, 189.538071066, 171.9137055838);
  border: 2px solid rgb(72.461928934, 189.538071066, 171.9137055838);
}
button.button-secondary.has-secondary-light-darken-color .icon svg *, button.is-style-button-secondary.has-secondary-light-darken-color .icon svg *,
.button.button-secondary.has-secondary-light-darken-color .icon svg *,
.button.is-style-button-secondary.has-secondary-light-darken-color .icon svg *,
.smx-button.button-secondary.has-secondary-light-darken-color .icon svg *,
.smx-button.is-style-button-secondary.has-secondary-light-darken-color .icon svg * {
  fill: rgb(72.461928934, 189.538071066, 171.9137055838);
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-secondary-light-darken-hover-background-color, button.is-style-button-secondary:hover.has-secondary-light-darken-hover-background-color,
.button.button-secondary:hover.has-secondary-light-darken-hover-background-color,
.button.is-style-button-secondary:hover.has-secondary-light-darken-hover-background-color,
.smx-button.button-secondary:hover.has-secondary-light-darken-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-secondary-light-darken-hover-background-color {
  background-color: rgb(72.461928934, 189.538071066, 171.9137055838);
}
button.button-secondary:hover.has-secondary-light-darken-hover-color, button.is-style-button-secondary:hover.has-secondary-light-darken-hover-color,
.button.button-secondary:hover.has-secondary-light-darken-hover-color,
.button.is-style-button-secondary:hover.has-secondary-light-darken-hover-color,
.smx-button.button-secondary:hover.has-secondary-light-darken-hover-color,
.smx-button.is-style-button-secondary:hover.has-secondary-light-darken-hover-color {
  color: rgb(72.461928934, 189.538071066, 171.9137055838);
}
button.button-secondary:hover.has-secondary-light-darken-hover-color .icon *, button.is-style-button-secondary:hover.has-secondary-light-darken-hover-color .icon *,
.button.button-secondary:hover.has-secondary-light-darken-hover-color .icon *,
.button.is-style-button-secondary:hover.has-secondary-light-darken-hover-color .icon *,
.smx-button.button-secondary:hover.has-secondary-light-darken-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-secondary-light-darken-hover-color .icon * {
  fill: rgb(72.461928934, 189.538071066, 171.9137055838);
}
button.button-secondary.has-secondary-dark-background-color, button.is-style-button-secondary.has-secondary-dark-background-color,
.button.button-secondary.has-secondary-dark-background-color,
.button.is-style-button-secondary.has-secondary-dark-background-color,
.smx-button.button-secondary.has-secondary-dark-background-color,
.smx-button.is-style-button-secondary.has-secondary-dark-background-color {
  background-color: #289780;
}
button.button-secondary.has-secondary-dark-color, button.is-style-button-secondary.has-secondary-dark-color,
.button.button-secondary.has-secondary-dark-color,
.button.is-style-button-secondary.has-secondary-dark-color,
.smx-button.button-secondary.has-secondary-dark-color,
.smx-button.is-style-button-secondary.has-secondary-dark-color {
  color: #289780;
  border: 2px solid #289780;
}
button.button-secondary.has-secondary-dark-color .icon svg *, button.is-style-button-secondary.has-secondary-dark-color .icon svg *,
.button.button-secondary.has-secondary-dark-color .icon svg *,
.button.is-style-button-secondary.has-secondary-dark-color .icon svg *,
.smx-button.button-secondary.has-secondary-dark-color .icon svg *,
.smx-button.is-style-button-secondary.has-secondary-dark-color .icon svg * {
  fill: #289780;
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-secondary-dark-hover-background-color, button.is-style-button-secondary:hover.has-secondary-dark-hover-background-color,
.button.button-secondary:hover.has-secondary-dark-hover-background-color,
.button.is-style-button-secondary:hover.has-secondary-dark-hover-background-color,
.smx-button.button-secondary:hover.has-secondary-dark-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-secondary-dark-hover-background-color {
  background-color: #289780;
}
button.button-secondary:hover.has-secondary-dark-hover-color, button.is-style-button-secondary:hover.has-secondary-dark-hover-color,
.button.button-secondary:hover.has-secondary-dark-hover-color,
.button.is-style-button-secondary:hover.has-secondary-dark-hover-color,
.smx-button.button-secondary:hover.has-secondary-dark-hover-color,
.smx-button.is-style-button-secondary:hover.has-secondary-dark-hover-color {
  color: #289780;
}
button.button-secondary:hover.has-secondary-dark-hover-color .icon *, button.is-style-button-secondary:hover.has-secondary-dark-hover-color .icon *,
.button.button-secondary:hover.has-secondary-dark-hover-color .icon *,
.button.is-style-button-secondary:hover.has-secondary-dark-hover-color .icon *,
.smx-button.button-secondary:hover.has-secondary-dark-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-secondary-dark-hover-color .icon * {
  fill: #289780;
}
button.button-secondary.has-secondary-dark-darken-background-color, button.is-style-button-secondary.has-secondary-dark-darken-background-color,
.button.button-secondary.has-secondary-dark-darken-background-color,
.button.is-style-button-secondary.has-secondary-dark-darken-background-color,
.smx-button.button-secondary.has-secondary-dark-darken-background-color,
.smx-button.is-style-button-secondary.has-secondary-dark-darken-background-color {
  background-color: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
button.button-secondary.has-secondary-dark-darken-color, button.is-style-button-secondary.has-secondary-dark-darken-color,
.button.button-secondary.has-secondary-dark-darken-color,
.button.is-style-button-secondary.has-secondary-dark-darken-color,
.smx-button.button-secondary.has-secondary-dark-darken-color,
.smx-button.is-style-button-secondary.has-secondary-dark-darken-color {
  color: rgb(29.3193717277, 110.6806282723, 93.8219895288);
  border: 2px solid rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
button.button-secondary.has-secondary-dark-darken-color .icon svg *, button.is-style-button-secondary.has-secondary-dark-darken-color .icon svg *,
.button.button-secondary.has-secondary-dark-darken-color .icon svg *,
.button.is-style-button-secondary.has-secondary-dark-darken-color .icon svg *,
.smx-button.button-secondary.has-secondary-dark-darken-color .icon svg *,
.smx-button.is-style-button-secondary.has-secondary-dark-darken-color .icon svg * {
  fill: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-secondary-dark-darken-hover-background-color, button.is-style-button-secondary:hover.has-secondary-dark-darken-hover-background-color,
.button.button-secondary:hover.has-secondary-dark-darken-hover-background-color,
.button.is-style-button-secondary:hover.has-secondary-dark-darken-hover-background-color,
.smx-button.button-secondary:hover.has-secondary-dark-darken-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-secondary-dark-darken-hover-background-color {
  background-color: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
button.button-secondary:hover.has-secondary-dark-darken-hover-color, button.is-style-button-secondary:hover.has-secondary-dark-darken-hover-color,
.button.button-secondary:hover.has-secondary-dark-darken-hover-color,
.button.is-style-button-secondary:hover.has-secondary-dark-darken-hover-color,
.smx-button.button-secondary:hover.has-secondary-dark-darken-hover-color,
.smx-button.is-style-button-secondary:hover.has-secondary-dark-darken-hover-color {
  color: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
button.button-secondary:hover.has-secondary-dark-darken-hover-color .icon *, button.is-style-button-secondary:hover.has-secondary-dark-darken-hover-color .icon *,
.button.button-secondary:hover.has-secondary-dark-darken-hover-color .icon *,
.button.is-style-button-secondary:hover.has-secondary-dark-darken-hover-color .icon *,
.smx-button.button-secondary:hover.has-secondary-dark-darken-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-secondary-dark-darken-hover-color .icon * {
  fill: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
button.button-secondary.has-typography-background-color, button.is-style-button-secondary.has-typography-background-color,
.button.button-secondary.has-typography-background-color,
.button.is-style-button-secondary.has-typography-background-color,
.smx-button.button-secondary.has-typography-background-color,
.smx-button.is-style-button-secondary.has-typography-background-color {
  background-color: #2b505c;
}
button.button-secondary.has-typography-color, button.is-style-button-secondary.has-typography-color,
.button.button-secondary.has-typography-color,
.button.is-style-button-secondary.has-typography-color,
.smx-button.button-secondary.has-typography-color,
.smx-button.is-style-button-secondary.has-typography-color {
  color: #2b505c;
  border: 2px solid #2b505c;
}
button.button-secondary.has-typography-color .icon svg *, button.is-style-button-secondary.has-typography-color .icon svg *,
.button.button-secondary.has-typography-color .icon svg *,
.button.is-style-button-secondary.has-typography-color .icon svg *,
.smx-button.button-secondary.has-typography-color .icon svg *,
.smx-button.is-style-button-secondary.has-typography-color .icon svg * {
  fill: #2b505c;
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-typography-hover-background-color, button.is-style-button-secondary:hover.has-typography-hover-background-color,
.button.button-secondary:hover.has-typography-hover-background-color,
.button.is-style-button-secondary:hover.has-typography-hover-background-color,
.smx-button.button-secondary:hover.has-typography-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-typography-hover-background-color {
  background-color: #2b505c;
}
button.button-secondary:hover.has-typography-hover-color, button.is-style-button-secondary:hover.has-typography-hover-color,
.button.button-secondary:hover.has-typography-hover-color,
.button.is-style-button-secondary:hover.has-typography-hover-color,
.smx-button.button-secondary:hover.has-typography-hover-color,
.smx-button.is-style-button-secondary:hover.has-typography-hover-color {
  color: #2b505c;
}
button.button-secondary:hover.has-typography-hover-color .icon *, button.is-style-button-secondary:hover.has-typography-hover-color .icon *,
.button.button-secondary:hover.has-typography-hover-color .icon *,
.button.is-style-button-secondary:hover.has-typography-hover-color .icon *,
.smx-button.button-secondary:hover.has-typography-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-typography-hover-color .icon * {
  fill: #2b505c;
}
button.button-secondary.has-typography-darken-background-color, button.is-style-button-secondary.has-typography-darken-background-color,
.button.button-secondary.has-typography-darken-background-color,
.button.is-style-button-secondary.has-typography-darken-background-color,
.smx-button.button-secondary.has-typography-darken-background-color,
.smx-button.is-style-button-secondary.has-typography-darken-background-color {
  background-color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-secondary.has-typography-darken-color, button.is-style-button-secondary.has-typography-darken-color,
.button.button-secondary.has-typography-darken-color,
.button.is-style-button-secondary.has-typography-darken-color,
.smx-button.button-secondary.has-typography-darken-color,
.smx-button.is-style-button-secondary.has-typography-darken-color {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
  border: 2px solid rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-secondary.has-typography-darken-color .icon svg *, button.is-style-button-secondary.has-typography-darken-color .icon svg *,
.button.button-secondary.has-typography-darken-color .icon svg *,
.button.is-style-button-secondary.has-typography-darken-color .icon svg *,
.smx-button.button-secondary.has-typography-darken-color .icon svg *,
.smx-button.is-style-button-secondary.has-typography-darken-color .icon svg * {
  fill: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-typography-darken-hover-background-color, button.is-style-button-secondary:hover.has-typography-darken-hover-background-color,
.button.button-secondary:hover.has-typography-darken-hover-background-color,
.button.is-style-button-secondary:hover.has-typography-darken-hover-background-color,
.smx-button.button-secondary:hover.has-typography-darken-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-typography-darken-hover-background-color {
  background-color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-secondary:hover.has-typography-darken-hover-color, button.is-style-button-secondary:hover.has-typography-darken-hover-color,
.button.button-secondary:hover.has-typography-darken-hover-color,
.button.is-style-button-secondary:hover.has-typography-darken-hover-color,
.smx-button.button-secondary:hover.has-typography-darken-hover-color,
.smx-button.is-style-button-secondary:hover.has-typography-darken-hover-color {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-secondary:hover.has-typography-darken-hover-color .icon *, button.is-style-button-secondary:hover.has-typography-darken-hover-color .icon *,
.button.button-secondary:hover.has-typography-darken-hover-color .icon *,
.button.is-style-button-secondary:hover.has-typography-darken-hover-color .icon *,
.smx-button.button-secondary:hover.has-typography-darken-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-typography-darken-hover-color .icon * {
  fill: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-secondary.has-light-grey-background-color, button.is-style-button-secondary.has-light-grey-background-color,
.button.button-secondary.has-light-grey-background-color,
.button.is-style-button-secondary.has-light-grey-background-color,
.smx-button.button-secondary.has-light-grey-background-color,
.smx-button.is-style-button-secondary.has-light-grey-background-color {
  background-color: #eff4f5;
}
button.button-secondary.has-light-grey-color, button.is-style-button-secondary.has-light-grey-color,
.button.button-secondary.has-light-grey-color,
.button.is-style-button-secondary.has-light-grey-color,
.smx-button.button-secondary.has-light-grey-color,
.smx-button.is-style-button-secondary.has-light-grey-color {
  color: #eff4f5;
  border: 2px solid #eff4f5;
}
button.button-secondary.has-light-grey-color .icon svg *, button.is-style-button-secondary.has-light-grey-color .icon svg *,
.button.button-secondary.has-light-grey-color .icon svg *,
.button.is-style-button-secondary.has-light-grey-color .icon svg *,
.smx-button.button-secondary.has-light-grey-color .icon svg *,
.smx-button.is-style-button-secondary.has-light-grey-color .icon svg * {
  fill: #eff4f5;
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-light-grey-hover-background-color, button.is-style-button-secondary:hover.has-light-grey-hover-background-color,
.button.button-secondary:hover.has-light-grey-hover-background-color,
.button.is-style-button-secondary:hover.has-light-grey-hover-background-color,
.smx-button.button-secondary:hover.has-light-grey-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-light-grey-hover-background-color {
  background-color: #eff4f5;
}
button.button-secondary:hover.has-light-grey-hover-color, button.is-style-button-secondary:hover.has-light-grey-hover-color,
.button.button-secondary:hover.has-light-grey-hover-color,
.button.is-style-button-secondary:hover.has-light-grey-hover-color,
.smx-button.button-secondary:hover.has-light-grey-hover-color,
.smx-button.is-style-button-secondary:hover.has-light-grey-hover-color {
  color: #eff4f5;
}
button.button-secondary:hover.has-light-grey-hover-color .icon *, button.is-style-button-secondary:hover.has-light-grey-hover-color .icon *,
.button.button-secondary:hover.has-light-grey-hover-color .icon *,
.button.is-style-button-secondary:hover.has-light-grey-hover-color .icon *,
.smx-button.button-secondary:hover.has-light-grey-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-light-grey-hover-color .icon * {
  fill: #eff4f5;
}
button.button-secondary.has-light-grey-darken-background-color, button.is-style-button-secondary.has-light-grey-darken-background-color,
.button.button-secondary.has-light-grey-darken-background-color,
.button.is-style-button-secondary.has-light-grey-darken-background-color,
.smx-button.button-secondary.has-light-grey-darken-background-color,
.smx-button.is-style-button-secondary.has-light-grey-darken-background-color {
  background-color: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}
button.button-secondary.has-light-grey-darken-color, button.is-style-button-secondary.has-light-grey-darken-color,
.button.button-secondary.has-light-grey-darken-color,
.button.is-style-button-secondary.has-light-grey-darken-color,
.smx-button.button-secondary.has-light-grey-darken-color,
.smx-button.is-style-button-secondary.has-light-grey-darken-color {
  color: rgb(207.6153846154, 222.4230769231, 225.3846153846);
  border: 2px solid rgb(207.6153846154, 222.4230769231, 225.3846153846);
}
button.button-secondary.has-light-grey-darken-color .icon svg *, button.is-style-button-secondary.has-light-grey-darken-color .icon svg *,
.button.button-secondary.has-light-grey-darken-color .icon svg *,
.button.is-style-button-secondary.has-light-grey-darken-color .icon svg *,
.smx-button.button-secondary.has-light-grey-darken-color .icon svg *,
.smx-button.is-style-button-secondary.has-light-grey-darken-color .icon svg * {
  fill: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}
button.button-secondary:hover, button.is-style-button-secondary:hover,
.button.button-secondary:hover,
.button.is-style-button-secondary:hover,
.smx-button.button-secondary:hover,
.smx-button.is-style-button-secondary:hover {
  background-color: #6ecbbd;
}
button.button-secondary:hover.has-light-grey-darken-hover-background-color, button.is-style-button-secondary:hover.has-light-grey-darken-hover-background-color,
.button.button-secondary:hover.has-light-grey-darken-hover-background-color,
.button.is-style-button-secondary:hover.has-light-grey-darken-hover-background-color,
.smx-button.button-secondary:hover.has-light-grey-darken-hover-background-color,
.smx-button.is-style-button-secondary:hover.has-light-grey-darken-hover-background-color {
  background-color: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}
button.button-secondary:hover.has-light-grey-darken-hover-color, button.is-style-button-secondary:hover.has-light-grey-darken-hover-color,
.button.button-secondary:hover.has-light-grey-darken-hover-color,
.button.is-style-button-secondary:hover.has-light-grey-darken-hover-color,
.smx-button.button-secondary:hover.has-light-grey-darken-hover-color,
.smx-button.is-style-button-secondary:hover.has-light-grey-darken-hover-color {
  color: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}
button.button-secondary:hover.has-light-grey-darken-hover-color .icon *, button.is-style-button-secondary:hover.has-light-grey-darken-hover-color .icon *,
.button.button-secondary:hover.has-light-grey-darken-hover-color .icon *,
.button.is-style-button-secondary:hover.has-light-grey-darken-hover-color .icon *,
.smx-button.button-secondary:hover.has-light-grey-darken-hover-color .icon *,
.smx-button.is-style-button-secondary:hover.has-light-grey-darken-hover-color .icon * {
  fill: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}
button.button-tertiary, button.is-style-button-tertiary,
.button.button-tertiary,
.button.is-style-button-tertiary,
.smx-button.button-tertiary,
.smx-button.is-style-button-tertiary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Montserrat";
  font-weight: 500;
  text-align: left;
  text-decoration: underline;
  gap: 0.7rem;
  background-color: transparent;
  background-color: transparent;
  background-color: transparent;
  background-color: transparent;
  background-color: transparent;
  background-color: transparent;
  background-color: transparent;
  background-color: transparent;
  background-color: transparent;
  background-color: transparent;
  background-color: transparent;
  background-color: transparent;
  background-color: transparent;
  background-color: transparent;
  background-color: transparent;
  background-color: transparent;
}
button.button-tertiary .icon, button.is-style-button-tertiary .icon,
.button.button-tertiary .icon,
.button.is-style-button-tertiary .icon,
.smx-button.button-tertiary .icon,
.smx-button.is-style-button-tertiary .icon {
  position: relative;
  top: 2px;
  overflow: visible;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
button.button-tertiary .icon svg, button.is-style-button-tertiary .icon svg,
.button.button-tertiary .icon svg,
.button.is-style-button-tertiary .icon svg,
.smx-button.button-tertiary .icon svg,
.smx-button.is-style-button-tertiary .icon svg {
  display: block;
  width: 1.2rem;
}
button.button-tertiary .icon svg *, button.is-style-button-tertiary .icon svg *,
.button.button-tertiary .icon svg *,
.button.is-style-button-tertiary .icon svg *,
.smx-button.button-tertiary .icon svg *,
.smx-button.is-style-button-tertiary .icon svg * {
  fill: black;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
button.button-tertiary:hover .icon, button.is-style-button-tertiary:hover .icon,
.button.button-tertiary:hover .icon,
.button.is-style-button-tertiary:hover .icon,
.smx-button.button-tertiary:hover .icon,
.smx-button.is-style-button-tertiary:hover .icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
button.button-tertiary.has-white-color, button.is-style-button-tertiary.has-white-color,
.button.button-tertiary.has-white-color,
.button.is-style-button-tertiary.has-white-color,
.smx-button.button-tertiary.has-white-color,
.smx-button.is-style-button-tertiary.has-white-color {
  color: #fff;
}
button.button-tertiary.has-white-color .icon *, button.is-style-button-tertiary.has-white-color .icon *,
.button.button-tertiary.has-white-color .icon *,
.button.is-style-button-tertiary.has-white-color .icon *,
.smx-button.button-tertiary.has-white-color .icon *,
.smx-button.is-style-button-tertiary.has-white-color .icon * {
  fill: #fff;
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-white-hover-color, button.is-style-button-tertiary:hover.has-white-hover-color,
.button.button-tertiary:hover.has-white-hover-color,
.button.is-style-button-tertiary:hover.has-white-hover-color,
.smx-button.button-tertiary:hover.has-white-hover-color,
.smx-button.is-style-button-tertiary:hover.has-white-hover-color {
  color: #fff;
}
button.button-tertiary:hover.has-white-hover-color .icon *, button.is-style-button-tertiary:hover.has-white-hover-color .icon *,
.button.button-tertiary:hover.has-white-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-white-hover-color .icon *,
.smx-button.button-tertiary:hover.has-white-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-white-hover-color .icon * {
  fill: #fff;
}
button.button-tertiary.has-white-darken-color, button.is-style-button-tertiary.has-white-darken-color,
.button.button-tertiary.has-white-darken-color,
.button.is-style-button-tertiary.has-white-darken-color,
.smx-button.button-tertiary.has-white-darken-color,
.smx-button.is-style-button-tertiary.has-white-darken-color {
  color: rgb(229.5, 229.5, 229.5);
}
button.button-tertiary.has-white-darken-color .icon *, button.is-style-button-tertiary.has-white-darken-color .icon *,
.button.button-tertiary.has-white-darken-color .icon *,
.button.is-style-button-tertiary.has-white-darken-color .icon *,
.smx-button.button-tertiary.has-white-darken-color .icon *,
.smx-button.is-style-button-tertiary.has-white-darken-color .icon * {
  fill: rgb(229.5, 229.5, 229.5);
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-white-darken-hover-color, button.is-style-button-tertiary:hover.has-white-darken-hover-color,
.button.button-tertiary:hover.has-white-darken-hover-color,
.button.is-style-button-tertiary:hover.has-white-darken-hover-color,
.smx-button.button-tertiary:hover.has-white-darken-hover-color,
.smx-button.is-style-button-tertiary:hover.has-white-darken-hover-color {
  color: rgb(229.5, 229.5, 229.5);
}
button.button-tertiary:hover.has-white-darken-hover-color .icon *, button.is-style-button-tertiary:hover.has-white-darken-hover-color .icon *,
.button.button-tertiary:hover.has-white-darken-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-white-darken-hover-color .icon *,
.smx-button.button-tertiary:hover.has-white-darken-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-white-darken-hover-color .icon * {
  fill: rgb(229.5, 229.5, 229.5);
}
button.button-tertiary.has-black-color, button.is-style-button-tertiary.has-black-color,
.button.button-tertiary.has-black-color,
.button.is-style-button-tertiary.has-black-color,
.smx-button.button-tertiary.has-black-color,
.smx-button.is-style-button-tertiary.has-black-color {
  color: #000;
}
button.button-tertiary.has-black-color .icon *, button.is-style-button-tertiary.has-black-color .icon *,
.button.button-tertiary.has-black-color .icon *,
.button.is-style-button-tertiary.has-black-color .icon *,
.smx-button.button-tertiary.has-black-color .icon *,
.smx-button.is-style-button-tertiary.has-black-color .icon * {
  fill: #000;
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-black-hover-color, button.is-style-button-tertiary:hover.has-black-hover-color,
.button.button-tertiary:hover.has-black-hover-color,
.button.is-style-button-tertiary:hover.has-black-hover-color,
.smx-button.button-tertiary:hover.has-black-hover-color,
.smx-button.is-style-button-tertiary:hover.has-black-hover-color {
  color: #000;
}
button.button-tertiary:hover.has-black-hover-color .icon *, button.is-style-button-tertiary:hover.has-black-hover-color .icon *,
.button.button-tertiary:hover.has-black-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-black-hover-color .icon *,
.smx-button.button-tertiary:hover.has-black-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-black-hover-color .icon * {
  fill: #000;
}
button.button-tertiary.has-black-darken-color, button.is-style-button-tertiary.has-black-darken-color,
.button.button-tertiary.has-black-darken-color,
.button.is-style-button-tertiary.has-black-darken-color,
.smx-button.button-tertiary.has-black-darken-color,
.smx-button.is-style-button-tertiary.has-black-darken-color {
  color: hsl(0, 0%, -10%);
}
button.button-tertiary.has-black-darken-color .icon *, button.is-style-button-tertiary.has-black-darken-color .icon *,
.button.button-tertiary.has-black-darken-color .icon *,
.button.is-style-button-tertiary.has-black-darken-color .icon *,
.smx-button.button-tertiary.has-black-darken-color .icon *,
.smx-button.is-style-button-tertiary.has-black-darken-color .icon * {
  fill: hsl(0, 0%, -10%);
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-black-darken-hover-color, button.is-style-button-tertiary:hover.has-black-darken-hover-color,
.button.button-tertiary:hover.has-black-darken-hover-color,
.button.is-style-button-tertiary:hover.has-black-darken-hover-color,
.smx-button.button-tertiary:hover.has-black-darken-hover-color,
.smx-button.is-style-button-tertiary:hover.has-black-darken-hover-color {
  color: hsl(0, 0%, -10%);
}
button.button-tertiary:hover.has-black-darken-hover-color .icon *, button.is-style-button-tertiary:hover.has-black-darken-hover-color .icon *,
.button.button-tertiary:hover.has-black-darken-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-black-darken-hover-color .icon *,
.smx-button.button-tertiary:hover.has-black-darken-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-black-darken-hover-color .icon * {
  fill: hsl(0, 0%, -10%);
}
button.button-tertiary.has-primary-color, button.is-style-button-tertiary.has-primary-color,
.button.button-tertiary.has-primary-color,
.button.is-style-button-tertiary.has-primary-color,
.smx-button.button-tertiary.has-primary-color,
.smx-button.is-style-button-tertiary.has-primary-color {
  color: #2b505c;
}
button.button-tertiary.has-primary-color .icon *, button.is-style-button-tertiary.has-primary-color .icon *,
.button.button-tertiary.has-primary-color .icon *,
.button.is-style-button-tertiary.has-primary-color .icon *,
.smx-button.button-tertiary.has-primary-color .icon *,
.smx-button.is-style-button-tertiary.has-primary-color .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-primary-hover-color, button.is-style-button-tertiary:hover.has-primary-hover-color,
.button.button-tertiary:hover.has-primary-hover-color,
.button.is-style-button-tertiary:hover.has-primary-hover-color,
.smx-button.button-tertiary:hover.has-primary-hover-color,
.smx-button.is-style-button-tertiary:hover.has-primary-hover-color {
  color: #2b505c;
}
button.button-tertiary:hover.has-primary-hover-color .icon *, button.is-style-button-tertiary:hover.has-primary-hover-color .icon *,
.button.button-tertiary:hover.has-primary-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-primary-hover-color .icon *,
.smx-button.button-tertiary:hover.has-primary-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-primary-hover-color .icon * {
  fill: #2b505c;
}
button.button-tertiary.has-primary-darken-color, button.is-style-button-tertiary.has-primary-darken-color,
.button.button-tertiary.has-primary-darken-color,
.button.is-style-button-tertiary.has-primary-darken-color,
.smx-button.button-tertiary.has-primary-darken-color,
.smx-button.is-style-button-tertiary.has-primary-darken-color {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-tertiary.has-primary-darken-color .icon *, button.is-style-button-tertiary.has-primary-darken-color .icon *,
.button.button-tertiary.has-primary-darken-color .icon *,
.button.is-style-button-tertiary.has-primary-darken-color .icon *,
.smx-button.button-tertiary.has-primary-darken-color .icon *,
.smx-button.is-style-button-tertiary.has-primary-darken-color .icon * {
  fill: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-primary-darken-hover-color, button.is-style-button-tertiary:hover.has-primary-darken-hover-color,
.button.button-tertiary:hover.has-primary-darken-hover-color,
.button.is-style-button-tertiary:hover.has-primary-darken-hover-color,
.smx-button.button-tertiary:hover.has-primary-darken-hover-color,
.smx-button.is-style-button-tertiary:hover.has-primary-darken-hover-color {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-tertiary:hover.has-primary-darken-hover-color .icon *, button.is-style-button-tertiary:hover.has-primary-darken-hover-color .icon *,
.button.button-tertiary:hover.has-primary-darken-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-primary-darken-hover-color .icon *,
.smx-button.button-tertiary:hover.has-primary-darken-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-primary-darken-hover-color .icon * {
  fill: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-tertiary.has-secondary-color, button.is-style-button-tertiary.has-secondary-color,
.button.button-tertiary.has-secondary-color,
.button.is-style-button-tertiary.has-secondary-color,
.smx-button.button-tertiary.has-secondary-color,
.smx-button.is-style-button-tertiary.has-secondary-color {
  color: #54bbab;
}
button.button-tertiary.has-secondary-color .icon *, button.is-style-button-tertiary.has-secondary-color .icon *,
.button.button-tertiary.has-secondary-color .icon *,
.button.is-style-button-tertiary.has-secondary-color .icon *,
.smx-button.button-tertiary.has-secondary-color .icon *,
.smx-button.is-style-button-tertiary.has-secondary-color .icon * {
  fill: #54bbab;
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-secondary-hover-color, button.is-style-button-tertiary:hover.has-secondary-hover-color,
.button.button-tertiary:hover.has-secondary-hover-color,
.button.is-style-button-tertiary:hover.has-secondary-hover-color,
.smx-button.button-tertiary:hover.has-secondary-hover-color,
.smx-button.is-style-button-tertiary:hover.has-secondary-hover-color {
  color: #54bbab;
}
button.button-tertiary:hover.has-secondary-hover-color .icon *, button.is-style-button-tertiary:hover.has-secondary-hover-color .icon *,
.button.button-tertiary:hover.has-secondary-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-secondary-hover-color .icon *,
.smx-button.button-tertiary:hover.has-secondary-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-secondary-hover-color .icon * {
  fill: #54bbab;
}
button.button-tertiary.has-secondary-darken-color, button.is-style-button-tertiary.has-secondary-darken-color,
.button.button-tertiary.has-secondary-darken-color,
.button.is-style-button-tertiary.has-secondary-darken-color,
.smx-button.button-tertiary.has-secondary-darken-color,
.smx-button.is-style-button-tertiary.has-secondary-darken-color {
  color: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
button.button-tertiary.has-secondary-darken-color .icon *, button.is-style-button-tertiary.has-secondary-darken-color .icon *,
.button.button-tertiary.has-secondary-darken-color .icon *,
.button.is-style-button-tertiary.has-secondary-darken-color .icon *,
.smx-button.button-tertiary.has-secondary-darken-color .icon *,
.smx-button.is-style-button-tertiary.has-secondary-darken-color .icon * {
  fill: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-secondary-darken-hover-color, button.is-style-button-tertiary:hover.has-secondary-darken-hover-color,
.button.button-tertiary:hover.has-secondary-darken-hover-color,
.button.is-style-button-tertiary:hover.has-secondary-darken-hover-color,
.smx-button.button-tertiary:hover.has-secondary-darken-hover-color,
.smx-button.is-style-button-tertiary:hover.has-secondary-darken-hover-color {
  color: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
button.button-tertiary:hover.has-secondary-darken-hover-color .icon *, button.is-style-button-tertiary:hover.has-secondary-darken-hover-color .icon *,
.button.button-tertiary:hover.has-secondary-darken-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-secondary-darken-hover-color .icon *,
.smx-button.button-tertiary:hover.has-secondary-darken-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-secondary-darken-hover-color .icon * {
  fill: rgb(62.5941422594, 157.4058577406, 142.6778242678);
}
button.button-tertiary.has-secondary-light-color, button.is-style-button-tertiary.has-secondary-light-color,
.button.button-tertiary.has-secondary-light-color,
.button.is-style-button-tertiary.has-secondary-light-color,
.smx-button.button-tertiary.has-secondary-light-color,
.smx-button.is-style-button-tertiary.has-secondary-light-color {
  color: #6ecbbd;
}
button.button-tertiary.has-secondary-light-color .icon *, button.is-style-button-tertiary.has-secondary-light-color .icon *,
.button.button-tertiary.has-secondary-light-color .icon *,
.button.is-style-button-tertiary.has-secondary-light-color .icon *,
.smx-button.button-tertiary.has-secondary-light-color .icon *,
.smx-button.is-style-button-tertiary.has-secondary-light-color .icon * {
  fill: #6ecbbd;
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-secondary-light-hover-color, button.is-style-button-tertiary:hover.has-secondary-light-hover-color,
.button.button-tertiary:hover.has-secondary-light-hover-color,
.button.is-style-button-tertiary:hover.has-secondary-light-hover-color,
.smx-button.button-tertiary:hover.has-secondary-light-hover-color,
.smx-button.is-style-button-tertiary:hover.has-secondary-light-hover-color {
  color: #6ecbbd;
}
button.button-tertiary:hover.has-secondary-light-hover-color .icon *, button.is-style-button-tertiary:hover.has-secondary-light-hover-color .icon *,
.button.button-tertiary:hover.has-secondary-light-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-secondary-light-hover-color .icon *,
.smx-button.button-tertiary:hover.has-secondary-light-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-secondary-light-hover-color .icon * {
  fill: #6ecbbd;
}
button.button-tertiary.has-secondary-light-darken-color, button.is-style-button-tertiary.has-secondary-light-darken-color,
.button.button-tertiary.has-secondary-light-darken-color,
.button.is-style-button-tertiary.has-secondary-light-darken-color,
.smx-button.button-tertiary.has-secondary-light-darken-color,
.smx-button.is-style-button-tertiary.has-secondary-light-darken-color {
  color: rgb(72.461928934, 189.538071066, 171.9137055838);
}
button.button-tertiary.has-secondary-light-darken-color .icon *, button.is-style-button-tertiary.has-secondary-light-darken-color .icon *,
.button.button-tertiary.has-secondary-light-darken-color .icon *,
.button.is-style-button-tertiary.has-secondary-light-darken-color .icon *,
.smx-button.button-tertiary.has-secondary-light-darken-color .icon *,
.smx-button.is-style-button-tertiary.has-secondary-light-darken-color .icon * {
  fill: rgb(72.461928934, 189.538071066, 171.9137055838);
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-secondary-light-darken-hover-color, button.is-style-button-tertiary:hover.has-secondary-light-darken-hover-color,
.button.button-tertiary:hover.has-secondary-light-darken-hover-color,
.button.is-style-button-tertiary:hover.has-secondary-light-darken-hover-color,
.smx-button.button-tertiary:hover.has-secondary-light-darken-hover-color,
.smx-button.is-style-button-tertiary:hover.has-secondary-light-darken-hover-color {
  color: rgb(72.461928934, 189.538071066, 171.9137055838);
}
button.button-tertiary:hover.has-secondary-light-darken-hover-color .icon *, button.is-style-button-tertiary:hover.has-secondary-light-darken-hover-color .icon *,
.button.button-tertiary:hover.has-secondary-light-darken-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-secondary-light-darken-hover-color .icon *,
.smx-button.button-tertiary:hover.has-secondary-light-darken-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-secondary-light-darken-hover-color .icon * {
  fill: rgb(72.461928934, 189.538071066, 171.9137055838);
}
button.button-tertiary.has-secondary-dark-color, button.is-style-button-tertiary.has-secondary-dark-color,
.button.button-tertiary.has-secondary-dark-color,
.button.is-style-button-tertiary.has-secondary-dark-color,
.smx-button.button-tertiary.has-secondary-dark-color,
.smx-button.is-style-button-tertiary.has-secondary-dark-color {
  color: #289780;
}
button.button-tertiary.has-secondary-dark-color .icon *, button.is-style-button-tertiary.has-secondary-dark-color .icon *,
.button.button-tertiary.has-secondary-dark-color .icon *,
.button.is-style-button-tertiary.has-secondary-dark-color .icon *,
.smx-button.button-tertiary.has-secondary-dark-color .icon *,
.smx-button.is-style-button-tertiary.has-secondary-dark-color .icon * {
  fill: #289780;
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-secondary-dark-hover-color, button.is-style-button-tertiary:hover.has-secondary-dark-hover-color,
.button.button-tertiary:hover.has-secondary-dark-hover-color,
.button.is-style-button-tertiary:hover.has-secondary-dark-hover-color,
.smx-button.button-tertiary:hover.has-secondary-dark-hover-color,
.smx-button.is-style-button-tertiary:hover.has-secondary-dark-hover-color {
  color: #289780;
}
button.button-tertiary:hover.has-secondary-dark-hover-color .icon *, button.is-style-button-tertiary:hover.has-secondary-dark-hover-color .icon *,
.button.button-tertiary:hover.has-secondary-dark-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-secondary-dark-hover-color .icon *,
.smx-button.button-tertiary:hover.has-secondary-dark-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-secondary-dark-hover-color .icon * {
  fill: #289780;
}
button.button-tertiary.has-secondary-dark-darken-color, button.is-style-button-tertiary.has-secondary-dark-darken-color,
.button.button-tertiary.has-secondary-dark-darken-color,
.button.is-style-button-tertiary.has-secondary-dark-darken-color,
.smx-button.button-tertiary.has-secondary-dark-darken-color,
.smx-button.is-style-button-tertiary.has-secondary-dark-darken-color {
  color: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
button.button-tertiary.has-secondary-dark-darken-color .icon *, button.is-style-button-tertiary.has-secondary-dark-darken-color .icon *,
.button.button-tertiary.has-secondary-dark-darken-color .icon *,
.button.is-style-button-tertiary.has-secondary-dark-darken-color .icon *,
.smx-button.button-tertiary.has-secondary-dark-darken-color .icon *,
.smx-button.is-style-button-tertiary.has-secondary-dark-darken-color .icon * {
  fill: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-secondary-dark-darken-hover-color, button.is-style-button-tertiary:hover.has-secondary-dark-darken-hover-color,
.button.button-tertiary:hover.has-secondary-dark-darken-hover-color,
.button.is-style-button-tertiary:hover.has-secondary-dark-darken-hover-color,
.smx-button.button-tertiary:hover.has-secondary-dark-darken-hover-color,
.smx-button.is-style-button-tertiary:hover.has-secondary-dark-darken-hover-color {
  color: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
button.button-tertiary:hover.has-secondary-dark-darken-hover-color .icon *, button.is-style-button-tertiary:hover.has-secondary-dark-darken-hover-color .icon *,
.button.button-tertiary:hover.has-secondary-dark-darken-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-secondary-dark-darken-hover-color .icon *,
.smx-button.button-tertiary:hover.has-secondary-dark-darken-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-secondary-dark-darken-hover-color .icon * {
  fill: rgb(29.3193717277, 110.6806282723, 93.8219895288);
}
button.button-tertiary.has-typography-color, button.is-style-button-tertiary.has-typography-color,
.button.button-tertiary.has-typography-color,
.button.is-style-button-tertiary.has-typography-color,
.smx-button.button-tertiary.has-typography-color,
.smx-button.is-style-button-tertiary.has-typography-color {
  color: #2b505c;
}
button.button-tertiary.has-typography-color .icon *, button.is-style-button-tertiary.has-typography-color .icon *,
.button.button-tertiary.has-typography-color .icon *,
.button.is-style-button-tertiary.has-typography-color .icon *,
.smx-button.button-tertiary.has-typography-color .icon *,
.smx-button.is-style-button-tertiary.has-typography-color .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-typography-hover-color, button.is-style-button-tertiary:hover.has-typography-hover-color,
.button.button-tertiary:hover.has-typography-hover-color,
.button.is-style-button-tertiary:hover.has-typography-hover-color,
.smx-button.button-tertiary:hover.has-typography-hover-color,
.smx-button.is-style-button-tertiary:hover.has-typography-hover-color {
  color: #2b505c;
}
button.button-tertiary:hover.has-typography-hover-color .icon *, button.is-style-button-tertiary:hover.has-typography-hover-color .icon *,
.button.button-tertiary:hover.has-typography-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-typography-hover-color .icon *,
.smx-button.button-tertiary:hover.has-typography-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-typography-hover-color .icon * {
  fill: #2b505c;
}
button.button-tertiary.has-typography-darken-color, button.is-style-button-tertiary.has-typography-darken-color,
.button.button-tertiary.has-typography-darken-color,
.button.is-style-button-tertiary.has-typography-darken-color,
.smx-button.button-tertiary.has-typography-darken-color,
.smx-button.is-style-button-tertiary.has-typography-darken-color {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-tertiary.has-typography-darken-color .icon *, button.is-style-button-tertiary.has-typography-darken-color .icon *,
.button.button-tertiary.has-typography-darken-color .icon *,
.button.is-style-button-tertiary.has-typography-darken-color .icon *,
.smx-button.button-tertiary.has-typography-darken-color .icon *,
.smx-button.is-style-button-tertiary.has-typography-darken-color .icon * {
  fill: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-typography-darken-hover-color, button.is-style-button-tertiary:hover.has-typography-darken-hover-color,
.button.button-tertiary:hover.has-typography-darken-hover-color,
.button.is-style-button-tertiary:hover.has-typography-darken-hover-color,
.smx-button.button-tertiary:hover.has-typography-darken-hover-color,
.smx-button.is-style-button-tertiary:hover.has-typography-darken-hover-color {
  color: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-tertiary:hover.has-typography-darken-hover-color .icon *, button.is-style-button-tertiary:hover.has-typography-darken-hover-color .icon *,
.button.button-tertiary:hover.has-typography-darken-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-typography-darken-hover-color .icon *,
.smx-button.button-tertiary:hover.has-typography-darken-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-typography-darken-hover-color .icon * {
  fill: rgb(26.7555555556, 49.7777777778, 57.2444444444);
}
button.button-tertiary.has-light-grey-color, button.is-style-button-tertiary.has-light-grey-color,
.button.button-tertiary.has-light-grey-color,
.button.is-style-button-tertiary.has-light-grey-color,
.smx-button.button-tertiary.has-light-grey-color,
.smx-button.is-style-button-tertiary.has-light-grey-color {
  color: #eff4f5;
}
button.button-tertiary.has-light-grey-color .icon *, button.is-style-button-tertiary.has-light-grey-color .icon *,
.button.button-tertiary.has-light-grey-color .icon *,
.button.is-style-button-tertiary.has-light-grey-color .icon *,
.smx-button.button-tertiary.has-light-grey-color .icon *,
.smx-button.is-style-button-tertiary.has-light-grey-color .icon * {
  fill: #eff4f5;
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-light-grey-hover-color, button.is-style-button-tertiary:hover.has-light-grey-hover-color,
.button.button-tertiary:hover.has-light-grey-hover-color,
.button.is-style-button-tertiary:hover.has-light-grey-hover-color,
.smx-button.button-tertiary:hover.has-light-grey-hover-color,
.smx-button.is-style-button-tertiary:hover.has-light-grey-hover-color {
  color: #eff4f5;
}
button.button-tertiary:hover.has-light-grey-hover-color .icon *, button.is-style-button-tertiary:hover.has-light-grey-hover-color .icon *,
.button.button-tertiary:hover.has-light-grey-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-light-grey-hover-color .icon *,
.smx-button.button-tertiary:hover.has-light-grey-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-light-grey-hover-color .icon * {
  fill: #eff4f5;
}
button.button-tertiary.has-light-grey-darken-color, button.is-style-button-tertiary.has-light-grey-darken-color,
.button.button-tertiary.has-light-grey-darken-color,
.button.is-style-button-tertiary.has-light-grey-darken-color,
.smx-button.button-tertiary.has-light-grey-darken-color,
.smx-button.is-style-button-tertiary.has-light-grey-darken-color {
  color: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}
button.button-tertiary.has-light-grey-darken-color .icon *, button.is-style-button-tertiary.has-light-grey-darken-color .icon *,
.button.button-tertiary.has-light-grey-darken-color .icon *,
.button.is-style-button-tertiary.has-light-grey-darken-color .icon *,
.smx-button.button-tertiary.has-light-grey-darken-color .icon *,
.smx-button.is-style-button-tertiary.has-light-grey-darken-color .icon * {
  fill: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}
button.button-tertiary:hover, button.is-style-button-tertiary:hover,
.button.button-tertiary:hover,
.button.is-style-button-tertiary:hover,
.smx-button.button-tertiary:hover,
.smx-button.is-style-button-tertiary:hover {
  color: #2b505c;
}
button.button-tertiary:hover .icon *, button.is-style-button-tertiary:hover .icon *,
.button.button-tertiary:hover .icon *,
.button.is-style-button-tertiary:hover .icon *,
.smx-button.button-tertiary:hover .icon *,
.smx-button.is-style-button-tertiary:hover .icon * {
  fill: #2b505c;
}
button.button-tertiary:hover.has-light-grey-darken-hover-color, button.is-style-button-tertiary:hover.has-light-grey-darken-hover-color,
.button.button-tertiary:hover.has-light-grey-darken-hover-color,
.button.is-style-button-tertiary:hover.has-light-grey-darken-hover-color,
.smx-button.button-tertiary:hover.has-light-grey-darken-hover-color,
.smx-button.is-style-button-tertiary:hover.has-light-grey-darken-hover-color {
  color: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}
button.button-tertiary:hover.has-light-grey-darken-hover-color .icon *, button.is-style-button-tertiary:hover.has-light-grey-darken-hover-color .icon *,
.button.button-tertiary:hover.has-light-grey-darken-hover-color .icon *,
.button.is-style-button-tertiary:hover.has-light-grey-darken-hover-color .icon *,
.smx-button.button-tertiary:hover.has-light-grey-darken-hover-color .icon *,
.smx-button.is-style-button-tertiary:hover.has-light-grey-darken-hover-color .icon * {
  fill: rgb(207.6153846154, 222.4230769231, 225.3846153846);
}

button:hover,
.button:not(.no-link):hover,
a:hover,
input[type=submit]:hover {
  cursor: pointer;
}

.submit-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 2rem;
}
.submit-wrapper .button {
  margin-top: 0;
  text-align: left;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.7rem 1.1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Chillax";
  font-size: 1.8rem;
  line-height: 1.1em;
  color: #2b505c;
  background-color: #eff4f5;
  border: 1px solid transparent;
  border-radius: 1rem;
}
input[type=checkbox],
textarea[type=checkbox],
select[type=checkbox] {
  position: relative;
  top: 0.3rem;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin: 0;
  margin-right: 0.5rem;
  padding: 0;
  background: transparent;
  border: 1px solid #2b505c;
  border-radius: 0.5rem;
}
input[type=checkbox]:checked,
textarea[type=checkbox]:checked,
select[type=checkbox]:checked {
  background-color: #2b505c;
}
input[type=checkbox]:hover,
textarea[type=checkbox]:hover,
select[type=checkbox]:hover {
  cursor: pointer;
}
input[type=radio]:not(.visually-hidden),
textarea[type=radio]:not(.visually-hidden),
select[type=radio]:not(.visually-hidden) {
  position: relative;
  top: 0.4rem;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin: 0;
  margin-right: 0.5rem;
  padding: 0;
  background: transparent;
  border: 1px solid #eff4f5;
  border-radius: 0;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}
input[type=radio]:not(.visually-hidden):checked,
textarea[type=radio]:not(.visually-hidden):checked,
select[type=radio]:not(.visually-hidden):checked {
  background-color: black;
}
input[type=radio]:not(.visually-hidden):hover,
textarea[type=radio]:not(.visually-hidden):hover,
select[type=radio]:not(.visually-hidden):hover {
  cursor: pointer;
}
input[type=submit],
textarea[type=submit],
select[type=submit] {
  width: 100%;
  padding: 0;
  font-weight: 700;
  color: white !important;
  text-align: center !important;
  text-transform: uppercase;
  background-color: #2b505c;
  border-radius: 1rem;
}
input[type=submit]:disabled:hover,
textarea[type=submit]:disabled:hover,
select[type=submit]:disabled:hover {
  cursor: not-allowed;
}

select {
  padding: 1.5rem;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.5);
  background-color: #eff4f5;
  border: none;
  border-radius: 0.4rem;
}

button[type=submit] {
  width: 30rem;
  max-width: 100%;
  margin: 0;
  padding: 1.4rem 4rem;
  font-size: 1.8rem;
  font-weight: 500 !important;
  text-align: center !important;
  text-transform: uppercase;
  background-color: #6ecbbd;
  border: none;
  border-radius: 0.4rem;
}
button[type=submit] .icon {
  position: absolute;
  top: 50%;
  right: 2rem;
  z-index: 10;
  width: 1.4rem;
  height: 1.4rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
button[type=submit] .icon svg {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  pointer-events: none;
}

textarea {
  height: 10rem;
}

.submit-wrapper {
  width: 100%;
}

.negative input:not([type=submit]),
.negative textarea {
  background-color: white;
}
.negative input:not([type=submit])[type=checkbox], .negative input:not([type=submit])[type=radio],
.negative textarea[type=checkbox],
.negative textarea[type=radio] {
  border: none;
}

.wpcf7 .screen-reader-response {
  display: none !important;
}
.wpcf7 .response-wrapper {
  display: none;
}
.wpcf7 .wpcf7-response-output {
  margin-top: 1rem;
  margin-bottom: 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 1rem;
}
.wpcf7 .failed .response-wrapper,
.wpcf7 .invalid .response-wrapper,
.wpcf7 .aborted .response-wrapper {
  display: block !important;
  width: 100%;
}
.wpcf7 .failed .response-wrapper .wpcf7-response-output,
.wpcf7 .invalid .response-wrapper .wpcf7-response-output,
.wpcf7 .aborted .response-wrapper .wpcf7-response-output {
  color: red;
  border: 1px solid red;
}
.wpcf7 .sent .response-wrapper {
  display: block !important;
  width: 100%;
}
.wpcf7 .sent .response-wrapper .wpcf7-response-output {
  color: rgb(62, 128, 62);
  border: 1px solid rgb(62, 128, 62);
}
.wpcf7 .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.wpcf7 .wpcf7-not-valid-tip {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: block;
  width: 10rem;
  margin: 0;
  font-size: 1.2rem;
  line-height: 0.9em;
  color: red;
  text-align: right;
}
.wpcf7 [aria-invalid=true] {
  border-color: red !important;
}

label {
  display: block;
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #2b505c;
  text-transform: uppercase;
}

.smx-booking-form select#smx-expert {
  height: 6.4rem;
}
.smx-booking-form button[type=submit] {
  min-height: 6.4rem;
}
.smx-booking-form.half select {
  background-color: white;
}
.smx-booking-form.half .ts-wrapper.single .ts-control {
  background-color: white !important;
}

.ts-wrapper.single .ts-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 6.4rem;
  padding: 2rem 4rem;
  background-color: #eff4f5 !important;
  background-image: none !important;
  border: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-top-left-radius: 0.4rem;
  border-top-right-radius: 0.4rem;
}
.ts-wrapper.single .ts-control::before {
  position: absolute;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
  background-image: url("../images/services.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
.ts-wrapper.single .ts-control::after {
  top: auto !important;
  width: 2rem !important;
  height: 2rem !important;
  margin-top: 0 !important;
  background-image: url("../images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none !important;
}
.ts-wrapper.single .ts-control .item {
  max-width: calc(100% - 7rem);
  font-family: "Chillax";
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}
.ts-wrapper.single .ts-control:has(input[aria-expanded=true]) .item {
  display: none;
}
.ts-wrapper.single .ts-control:has(input:focus) {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 2px solid red !important;
  outline-offset: 2px !important;
}
.ts-wrapper.single .ts-control > input {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: calc(100% - 12rem);
  margin: 0 !important;
  padding: 0.7rem 1.1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Chillax" !important;
  font-size: 1.8rem;
  font-size: 1.5rem;
  line-height: 1.1em;
  color: #2b505c !important;
  background-color: transparent !important;
  border: 1px solid transparent !important;
  border-radius: 0.4rem;
  opacity: 1;
  -webkit-transform: none !important;
  transform: none !important;
}
.ts-wrapper.single .ts-control > input[aria-expanded=false] {
  position: absolute !important;
}
.ts-wrapper.single .ts-control > input[aria-activedescendant]:not([aria-expanded=true]) {
  opacity: 0;
}
.ts-wrapper.single.input-active, .ts-wrapper.single.dropdown-active {
  background-color: #eff4f5;
}
.ts-wrapper.single .ts-dropdown {
  margin-top: 0 !important;
  background-color: #eff4f5 !important;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 0;
  border-bottom-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}
.ts-wrapper.single .ts-dropdown .optgroup-header {
  font-family: "Chillax" !important;
  font-size: 1.5rem;
  background-color: rgba(255, 255, 255, 0.7) !important;
}
.ts-wrapper.single .ts-dropdown .option {
  padding-left: 1.5rem;
  font-family: "Chillax" !important;
  font-size: 1.5rem;
}

.booking-wrapper button[type=submit] {
  width: 100%;
}

.booking-wrapper .select-wrapper,
.smx-booking-form .select-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: none !important;
  border: none !important;
  border-radius: 0.4rem;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.booking-wrapper .select-wrapper select,
.smx-booking-form .select-wrapper select {
  padding: 2rem 4rem;
}
.booking-wrapper .select-wrapper::after,
.smx-booking-form .select-wrapper::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background-image: url("../images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  pointer-events: none;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.booking-wrapper .select-wrapper::before,
.smx-booking-form .select-wrapper::before {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.booking-wrapper .select-wrapper.service::before,
.smx-booking-form .select-wrapper.service::before {
  background-image: url("../images/services.svg");
}
.booking-wrapper .select-wrapper.expert::before,
.smx-booking-form .select-wrapper.expert::before {
  background-image: url("../images/experts.svg");
}

.card-doctor .expert-thumb {
  width: 14.5rem;
}

.card-service .wp-block-cover__image-background::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: calc(100% + 10rem);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(80%, rgba(0, 0, 0, 0.6)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.6) 80%);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  content: "";
}
.card-service .wp-block-cover__inner-container .wp-block-group {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transform: translateY(3rem);
  transform: translateY(3rem);
}
.card-service .wp-block-cover__inner-container .wp-block-group h2 {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.card-service .wp-block-cover__inner-container .wp-block-group a.button {
  -webkit-transition: 0.2s ease-in-out !important;
  transition: 0.2s ease-in-out !important;
  opacity: 0;
}
.card-service:hover .wp-block-cover__image-background::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(80%, rgba(0, 0, 0, 0.6)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.6) 80%);
  -webkit-transform: translateY(-10rem);
  transform: translateY(-10rem);
}
.card-service:hover .wp-block-cover__inner-container .wp-block-group {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.card-service:hover .wp-block-cover__inner-container .wp-block-group h2 {
  color: #54bbab;
}
.card-service:hover .wp-block-cover__inner-container .wp-block-group a.button {
  opacity: 1;
}
.card-service:hover .wp-block-cover__inner-container .wp-block-group a.button:hover {
  color: white !important;
}
.card-service:hover .wp-block-cover__inner-container .wp-block-group a.button:hover svg * {
  fill: white !important;
}

.service-card {
  position: relative;
}
.service-card::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid #2b505c;
  border-radius: 3rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 0;
  content: "";
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.service-card .button-wrapper {
  position: relative;
  width: 100%;
  height: 5rem;
  overflow: hidden;
}
.service-card .button-wrapper .inner-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(calc(-100% + 5rem));
  transform: translateX(calc(-100% + 5rem));
}
.service-card .button-wrapper .inner-wrapper .wp-block-image {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.service-card:hover::after {
  width: calc(100% + 1.6rem);
  height: calc(100% + 1.6rem);
  opacity: 1;
}
.service-card:hover .button-wrapper .inner-wrapper {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.service-card:hover .button-wrapper .inner-wrapper .wp-block-image {
  opacity: 0;
}

.smx-service-category-archive-loop .card-service figure::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: calc(100% + 10rem);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(80%, rgba(0, 0, 0, 0.6)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.6) 80%);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  content: "";
}
.smx-service-category-archive-loop .card-service .wp-block-group {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transform: translateY(3rem);
  transform: translateY(3rem);
}
.smx-service-category-archive-loop .card-service .wp-block-group h2 {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.smx-service-category-archive-loop .card-service .wp-block-group a.button {
  -webkit-transition: 0.2s ease-in-out !important;
  transition: 0.2s ease-in-out !important;
  opacity: 0;
}
.smx-service-category-archive-loop .card-service:hover figure::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(80%, rgba(0, 0, 0, 0.6)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.6) 80%);
  -webkit-transform: translateY(-10rem);
  transform: translateY(-10rem);
}
.smx-service-category-archive-loop .card-service:hover .wp-block-group {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.smx-service-category-archive-loop .card-service:hover .wp-block-group h2 {
  color: #54bbab;
}
.smx-service-category-archive-loop .card-service:hover .wp-block-group a.button {
  opacity: 1;
}
.smx-service-category-archive-loop .card-service:hover .wp-block-group a.button:hover {
  color: white !important;
}
.smx-service-category-archive-loop .card-service:hover .wp-block-group a.button:hover svg * {
  fill: white !important;
}

.red {
  color: red;
}

.booking-carousel label {
  position: relative;
}
.booking-carousel label.availability-label {
  font-weight: 500;
}
.booking-carousel label.availability-label:hover {
  cursor: pointer;
}
.booking-carousel label.availability-label::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  border: 0 solid red;
  border-radius: 1.4rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  content: "";
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.booking-carousel input[type=radio].visually-hidden {
  position: absolute;
  left: -10000px;
  opacity: 1;
  pointer-events: none;
}
.booking-carousel input[type=radio].visually-hidden:focus + label::after {
  border: 2px solid red;
}
.booking-carousel input[type=radio].visually-hidden[checked=checked] {
  color: white;
  background-color: #2b505c;
}
.booking-carousel input[type=radio].visually-hidden:checked + label {
  color: white;
  background-color: #2b505c;
}

#main-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 2rem 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
#main-header .site-branding {
  width: 17rem;
}
#main-header a {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
#main-header.scrolled, #main-header.positive {
  background-color: #6ecbbd;
}
#main-header.scrolled #cta-menu a, #main-header.positive #cta-menu a {
  color: white !important;
  background-color: #2b505c !important;
}
#main-header.scrolled a,
#main-header.scrolled #secondary-nav-toggler span, #main-header.positive a,
#main-header.positive #secondary-nav-toggler span {
  color: #2b505c !important;
}
#main-header.scrolled a .line,
#main-header.scrolled #secondary-nav-toggler span .line, #main-header.positive a .line,
#main-header.positive #secondary-nav-toggler span .line {
  background-color: #2b505c !important;
}
#main-header.scrolled .site-branding svg .svg-white, #main-header.positive .site-branding svg .svg-white {
  fill: #2b505c;
}
#main-header.scrolled .site-branding svg .svg-color, #main-header.positive .site-branding svg .svg-color {
  fill: white !important;
}
#main-header #main-nav.open .istitutional,
#main-header #main-nav.open .socials {
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  opacity: 0;
  -webkit-transform: translateY(2rem);
  transform: translateY(2rem);
}
#main-header #main-nav.open .istitutional h4,
#main-header #main-nav.open .socials h4 {
  font-family: "Montserrat";
}
#main-header #main-nav.open .istitutional .text-2,
#main-header #main-nav.open .socials .text-2 {
  line-height: 1.3em;
}
#main-header #main-nav.open .istitutional.is-visible,
#main-header #main-nav.open .socials.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.elem {
  opacity: 1;
}

#main-header #main-nav .primary-menu-wrapper #primary-menu li a,
#main-header #main-nav .primary-menu-wrapper #cta-menu li a {
  font-family: "Chillax";
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: white;
  text-decoration: underline;
  text-transform: uppercase;
}
#main-header #main-nav .primary-menu-wrapper #primary-menu li.smx-menu-booking a,
#main-header #main-nav .primary-menu-wrapper #cta-menu li.smx-menu-booking a {
  padding: 1rem 2rem;
  color: #2b505c;
  text-decoration: none;
  background-color: white;
  border-radius: 0.4rem;
}
@media screen and (max-width: 1270px) {
  #main-header #main-nav .primary-menu-wrapper #primary-menu li a,
  #main-header #main-nav .primary-menu-wrapper #cta-menu li a {
    font-size: 1.6rem;
    letter-spacing: -0.07em;
  }
}
#main-header #main-nav .primary-menu-wrapper #cta-menu {
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 1170px) {
  #main-header #main-nav .primary-menu-wrapper #primary-menu {
    display: none !important;
  }
}
#main-header #main-nav .primary-menu-wrapper #secondary-nav-toggler {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
  color: white;
  text-decoration: underline;
  text-transform: uppercase;
  gap: 0.5rem;
}
#main-header #main-nav .primary-menu-wrapper #secondary-nav-toggler .inner {
  position: relative;
  display: block;
  width: 2rem;
  height: 3rem;
}
#main-header #main-nav .primary-menu-wrapper #secondary-nav-toggler .inner .line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#main-header #main-nav .primary-menu-wrapper #secondary-nav-toggler .inner .line.one {
  -webkit-transform: translateY(calc(-50% - 0.6rem));
  transform: translateY(calc(-50% - 0.6rem));
}
#main-header #main-nav .primary-menu-wrapper #secondary-nav-toggler .inner .line.two {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#main-header #main-nav .primary-menu-wrapper #secondary-nav-toggler .inner .line.three {
  -webkit-transform: translateY(calc(-50% + 0.6rem));
  transform: translateY(calc(-50% + 0.6rem));
}
#main-header #main-nav .primary-menu-wrapper #secondary-nav-toggler .text {
  position: relative;
  height: 100%;
  overflow: hidden;
  opacity: 1;
}
#main-header #main-nav .primary-menu-wrapper #secondary-nav-toggler .text .hidden-text {
  font-weight: 500;
  text-decoration: underline;
  opacity: 0;
  pointer-events: none;
}
#main-header #main-nav .primary-menu-wrapper #secondary-nav-toggler .text .inner-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-weight: 500;
  text-decoration: underline;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
#main-header #main-nav .primary-menu-wrapper #secondary-nav-toggler[aria-expanded=true] .inner .line.one {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
#main-header #main-nav .primary-menu-wrapper #secondary-nav-toggler[aria-expanded=true] .inner .line.two {
  opacity: 0;
}
#main-header #main-nav .primary-menu-wrapper #secondary-nav-toggler[aria-expanded=true] .inner .line.three {
  -webkit-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}
#main-header #main-nav .primary-menu-wrapper #secondary-nav-toggler[aria-expanded=true] .text .inner-text {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
#main-header #main-nav .secondary-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 14rem;
  padding-bottom: 5rem;
  overflow-y: auto;
  background-color: #2b505c;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  pointer-events: none;
  -webkit-transform: translateY(-101%);
  transform: translateY(-101%);
}
#main-header #main-nav .secondary-menu-wrapper #secondary-menu {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
#main-header #main-nav .secondary-menu-wrapper #secondary-menu li.menu-item {
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  opacity: 0;
  -webkit-transform: translateY(2rem);
  transform: translateY(2rem);
}
#main-header #main-nav .secondary-menu-wrapper #secondary-menu li.menu-item.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#main-header #main-nav .secondary-menu-wrapper #secondary-menu li a {
  font-family: "Montserrat";
  font-size: 1.7rem;
  letter-spacing: -0.05em;
  color: white;
  text-decoration: underline;
}
#main-header #main-nav .secondary-menu-wrapper #secondary-menu li.menu-item-has-children {
  margin-top: 5rem;
}
#main-header #main-nav .secondary-menu-wrapper #secondary-menu li.menu-item-has-children:first-child {
  margin-top: 0;
}
#main-header #main-nav .secondary-menu-wrapper #secondary-menu li.menu-item-has-children > a {
  font-family: "Chillax";
  color: #6ecbbd;
  text-decoration: none;
  text-transform: uppercase;
  pointer-events: none;
}
#main-header #main-nav .secondary-menu-wrapper #secondary-menu li.menu-item-has-children .sub-menu a {
  margin-top: 0;
}
#main-header #main-nav .secondary-menu-wrapper a {
  display: none;
}
@media (max-width: 767.98px) {
  #main-header #main-nav .secondary-menu-wrapper #secondary-menu {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
#main-header #main-nav.open .secondary-menu-wrapper {
  pointer-events: auto;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#main-header #main-nav.open .secondary-menu-wrapper a {
  display: block;
}
#main-header #main-nav.open .secondary-menu-wrapper a.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

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

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

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

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

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

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.object-fit-contain {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.object-fit-fill {
  -o-object-fit: fill !important;
  object-fit: fill !important;
}

.object-fit-scale {
  -o-object-fit: scale-down !important;
  object-fit: scale-down !important;
}

.object-fit-none {
  -o-object-fit: none !important;
  object-fit: none !important;
}

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

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

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

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

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

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

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

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

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

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

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

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

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

.shadow {
  -webkit-box-shadow: var(--bs-box-shadow) !important;
  box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
  -webkit-box-shadow: var(--bs-box-shadow-sm) !important;
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  -webkit-box-shadow: var(--bs-box-shadow-lg) !important;
  box-shadow: var(--bs-box-shadow-lg) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

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

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

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

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

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

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

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
  -ms-flex-order: -1 !important;
  order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
  -ms-flex-order: 0 !important;
  order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
  -ms-flex-order: 1 !important;
  order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
  -ms-flex-order: 3 !important;
  order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
  -ms-flex-order: 4 !important;
  order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
  -ms-flex-order: 5 !important;
  order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
  -ms-flex-order: 6 !important;
  order: 6 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-13 {
  margin: 13rem !important;
}

.m-15 {
  margin: 15rem !important;
}

.m-20 {
  margin: 20rem !important;
}

.m-25 {
  margin: 25rem !important;
}

.m-30 {
  margin: 30rem !important;
}

.m-35 {
  margin: 35rem !important;
}

.m-40 {
  margin: 40rem !important;
}

.m-45 {
  margin: 45rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-0_5 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-1_5 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-2 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.my-2_5 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-3_5 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.my-4 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.my-5 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.my-6 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.my-7 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

.my-8 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.my-9 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

.my-10 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.my-13 {
  margin-top: 13rem !important;
  margin-bottom: 13rem !important;
}

.my-15 {
  margin-top: 15rem !important;
  margin-bottom: 15rem !important;
}

.my-20 {
  margin-top: 20rem !important;
  margin-bottom: 20rem !important;
}

.my-25 {
  margin-top: 25rem !important;
  margin-bottom: 25rem !important;
}

.my-30 {
  margin-top: 30rem !important;
  margin-bottom: 30rem !important;
}

.my-35 {
  margin-top: 35rem !important;
  margin-bottom: 35rem !important;
}

.my-40 {
  margin-top: 40rem !important;
  margin-bottom: 40rem !important;
}

.my-45 {
  margin-top: 45rem !important;
  margin-bottom: 45rem !important;
}

.my-50 {
  margin-top: 50rem !important;
  margin-bottom: 50rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.me-0_5 {
  margin-right: 0.5rem !important;
}

.me-1 {
  margin-right: 1rem !important;
}

.me-1_5 {
  margin-right: 1.5rem !important;
}

.me-2 {
  margin-right: 2rem !important;
}

.me-2_5 {
  margin-right: 2.5rem !important;
}

.me-3 {
  margin-right: 3rem !important;
}

.me-3_5 {
  margin-right: 3.5rem !important;
}

.me-4 {
  margin-right: 4rem !important;
}

.me-5 {
  margin-right: 5rem !important;
}

.me-6 {
  margin-right: 6rem !important;
}

.me-7 {
  margin-right: 7rem !important;
}

.me-8 {
  margin-right: 8rem !important;
}

.me-9 {
  margin-right: 9rem !important;
}

.me-10 {
  margin-right: 10rem !important;
}

.me-13 {
  margin-right: 13rem !important;
}

.me-15 {
  margin-right: 15rem !important;
}

.me-20 {
  margin-right: 20rem !important;
}

.me-25 {
  margin-right: 25rem !important;
}

.me-30 {
  margin-right: 30rem !important;
}

.me-35 {
  margin-right: 35rem !important;
}

.me-40 {
  margin-right: 40rem !important;
}

.me-45 {
  margin-right: 45rem !important;
}

.me-50 {
  margin-right: 50rem !important;
}

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

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

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

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-1_5 {
  margin-bottom: 1.5rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-2_5 {
  margin-bottom: 2.5rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-3_5 {
  margin-bottom: 3.5rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

.mb-8 {
  margin-bottom: 8rem !important;
}

.mb-9 {
  margin-bottom: 9rem !important;
}

.mb-10 {
  margin-bottom: 10rem !important;
}

.mb-13 {
  margin-bottom: 13rem !important;
}

.mb-15 {
  margin-bottom: 15rem !important;
}

.mb-20 {
  margin-bottom: 20rem !important;
}

.mb-25 {
  margin-bottom: 25rem !important;
}

.mb-30 {
  margin-bottom: 30rem !important;
}

.mb-35 {
  margin-bottom: 35rem !important;
}

.mb-40 {
  margin-bottom: 40rem !important;
}

.mb-45 {
  margin-bottom: 45rem !important;
}

.mb-50 {
  margin-bottom: 50rem !important;
}

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

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

.ms-0_5 {
  margin-left: 0.5rem !important;
}

.ms-1 {
  margin-left: 1rem !important;
}

.ms-1_5 {
  margin-left: 1.5rem !important;
}

.ms-2 {
  margin-left: 2rem !important;
}

.ms-2_5 {
  margin-left: 2.5rem !important;
}

.ms-3 {
  margin-left: 3rem !important;
}

.ms-3_5 {
  margin-left: 3.5rem !important;
}

.ms-4 {
  margin-left: 4rem !important;
}

.ms-5 {
  margin-left: 5rem !important;
}

.ms-6 {
  margin-left: 6rem !important;
}

.ms-7 {
  margin-left: 7rem !important;
}

.ms-8 {
  margin-left: 8rem !important;
}

.ms-9 {
  margin-left: 9rem !important;
}

.ms-10 {
  margin-left: 10rem !important;
}

.ms-13 {
  margin-left: 13rem !important;
}

.ms-15 {
  margin-left: 15rem !important;
}

.ms-20 {
  margin-left: 20rem !important;
}

.ms-25 {
  margin-left: 25rem !important;
}

.ms-30 {
  margin-left: 30rem !important;
}

.ms-35 {
  margin-left: 35rem !important;
}

.ms-40 {
  margin-left: 40rem !important;
}

.ms-45 {
  margin-left: 45rem !important;
}

.ms-50 {
  margin-left: 50rem !important;
}

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

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

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

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

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

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

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

.m-n3_5 {
  margin: -3.5rem !important;
}

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

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

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

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

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

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

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

.m-n13 {
  margin: -13rem !important;
}

.m-n15 {
  margin: -15rem !important;
}

.m-n20 {
  margin: -20rem !important;
}

.m-n25 {
  margin: -25rem !important;
}

.m-n30 {
  margin: -30rem !important;
}

.m-n35 {
  margin: -35rem !important;
}

.m-n40 {
  margin: -40rem !important;
}

.m-n45 {
  margin: -45rem !important;
}

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

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

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

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

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

.mx-n2_5 {
  margin-right: -2.5rem !important;
  margin-left: -2.5rem !important;
}

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

.mx-n3_5 {
  margin-right: -3.5rem !important;
  margin-left: -3.5rem !important;
}

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

.mx-n5 {
  margin-right: -5rem !important;
  margin-left: -5rem !important;
}

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

.mx-n7 {
  margin-right: -7rem !important;
  margin-left: -7rem !important;
}

.mx-n8 {
  margin-right: -8rem !important;
  margin-left: -8rem !important;
}

.mx-n9 {
  margin-right: -9rem !important;
  margin-left: -9rem !important;
}

.mx-n10 {
  margin-right: -10rem !important;
  margin-left: -10rem !important;
}

.mx-n13 {
  margin-right: -13rem !important;
  margin-left: -13rem !important;
}

.mx-n15 {
  margin-right: -15rem !important;
  margin-left: -15rem !important;
}

.mx-n20 {
  margin-right: -20rem !important;
  margin-left: -20rem !important;
}

.mx-n25 {
  margin-right: -25rem !important;
  margin-left: -25rem !important;
}

.mx-n30 {
  margin-right: -30rem !important;
  margin-left: -30rem !important;
}

.mx-n35 {
  margin-right: -35rem !important;
  margin-left: -35rem !important;
}

.mx-n40 {
  margin-right: -40rem !important;
  margin-left: -40rem !important;
}

.mx-n45 {
  margin-right: -45rem !important;
  margin-left: -45rem !important;
}

.mx-n50 {
  margin-right: -50rem !important;
  margin-left: -50rem !important;
}

.my-n0_5 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.my-n1 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.my-n1_5 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.my-n2 {
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}

.my-n2_5 {
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}

.my-n3 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.my-n3_5 {
  margin-top: -3.5rem !important;
  margin-bottom: -3.5rem !important;
}

.my-n4 {
  margin-top: -4rem !important;
  margin-bottom: -4rem !important;
}

.my-n5 {
  margin-top: -5rem !important;
  margin-bottom: -5rem !important;
}

.my-n6 {
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}

.my-n7 {
  margin-top: -7rem !important;
  margin-bottom: -7rem !important;
}

.my-n8 {
  margin-top: -8rem !important;
  margin-bottom: -8rem !important;
}

.my-n9 {
  margin-top: -9rem !important;
  margin-bottom: -9rem !important;
}

.my-n10 {
  margin-top: -10rem !important;
  margin-bottom: -10rem !important;
}

.my-n13 {
  margin-top: -13rem !important;
  margin-bottom: -13rem !important;
}

.my-n15 {
  margin-top: -15rem !important;
  margin-bottom: -15rem !important;
}

.my-n20 {
  margin-top: -20rem !important;
  margin-bottom: -20rem !important;
}

.my-n25 {
  margin-top: -25rem !important;
  margin-bottom: -25rem !important;
}

.my-n30 {
  margin-top: -30rem !important;
  margin-bottom: -30rem !important;
}

.my-n35 {
  margin-top: -35rem !important;
  margin-bottom: -35rem !important;
}

.my-n40 {
  margin-top: -40rem !important;
  margin-bottom: -40rem !important;
}

.my-n45 {
  margin-top: -45rem !important;
  margin-bottom: -45rem !important;
}

.my-n50 {
  margin-top: -50rem !important;
  margin-bottom: -50rem !important;
}

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

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

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

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

.mt-n2_5 {
  margin-top: -2.5rem !important;
}

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

.mt-n3_5 {
  margin-top: -3.5rem !important;
}

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

.mt-n5 {
  margin-top: -5rem !important;
}

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

.mt-n7 {
  margin-top: -7rem !important;
}

.mt-n8 {
  margin-top: -8rem !important;
}

.mt-n9 {
  margin-top: -9rem !important;
}

.mt-n10 {
  margin-top: -10rem !important;
}

.mt-n13 {
  margin-top: -13rem !important;
}

.mt-n15 {
  margin-top: -15rem !important;
}

.mt-n20 {
  margin-top: -20rem !important;
}

.mt-n25 {
  margin-top: -25rem !important;
}

.mt-n30 {
  margin-top: -30rem !important;
}

.mt-n35 {
  margin-top: -35rem !important;
}

.mt-n40 {
  margin-top: -40rem !important;
}

.mt-n45 {
  margin-top: -45rem !important;
}

.mt-n50 {
  margin-top: -50rem !important;
}

.me-n0_5 {
  margin-right: -0.5rem !important;
}

.me-n1 {
  margin-right: -1rem !important;
}

.me-n1_5 {
  margin-right: -1.5rem !important;
}

.me-n2 {
  margin-right: -2rem !important;
}

.me-n2_5 {
  margin-right: -2.5rem !important;
}

.me-n3 {
  margin-right: -3rem !important;
}

.me-n3_5 {
  margin-right: -3.5rem !important;
}

.me-n4 {
  margin-right: -4rem !important;
}

.me-n5 {
  margin-right: -5rem !important;
}

.me-n6 {
  margin-right: -6rem !important;
}

.me-n7 {
  margin-right: -7rem !important;
}

.me-n8 {
  margin-right: -8rem !important;
}

.me-n9 {
  margin-right: -9rem !important;
}

.me-n10 {
  margin-right: -10rem !important;
}

.me-n13 {
  margin-right: -13rem !important;
}

.me-n15 {
  margin-right: -15rem !important;
}

.me-n20 {
  margin-right: -20rem !important;
}

.me-n25 {
  margin-right: -25rem !important;
}

.me-n30 {
  margin-right: -30rem !important;
}

.me-n35 {
  margin-right: -35rem !important;
}

.me-n40 {
  margin-right: -40rem !important;
}

.me-n45 {
  margin-right: -45rem !important;
}

.me-n50 {
  margin-right: -50rem !important;
}

.mb-n0_5 {
  margin-bottom: -0.5rem !important;
}

.mb-n1 {
  margin-bottom: -1rem !important;
}

.mb-n1_5 {
  margin-bottom: -1.5rem !important;
}

.mb-n2 {
  margin-bottom: -2rem !important;
}

.mb-n2_5 {
  margin-bottom: -2.5rem !important;
}

.mb-n3 {
  margin-bottom: -3rem !important;
}

.mb-n3_5 {
  margin-bottom: -3.5rem !important;
}

.mb-n4 {
  margin-bottom: -4rem !important;
}

.mb-n5 {
  margin-bottom: -5rem !important;
}

.mb-n6 {
  margin-bottom: -6rem !important;
}

.mb-n7 {
  margin-bottom: -7rem !important;
}

.mb-n8 {
  margin-bottom: -8rem !important;
}

.mb-n9 {
  margin-bottom: -9rem !important;
}

.mb-n10 {
  margin-bottom: -10rem !important;
}

.mb-n13 {
  margin-bottom: -13rem !important;
}

.mb-n15 {
  margin-bottom: -15rem !important;
}

.mb-n20 {
  margin-bottom: -20rem !important;
}

.mb-n25 {
  margin-bottom: -25rem !important;
}

.mb-n30 {
  margin-bottom: -30rem !important;
}

.mb-n35 {
  margin-bottom: -35rem !important;
}

.mb-n40 {
  margin-bottom: -40rem !important;
}

.mb-n45 {
  margin-bottom: -45rem !important;
}

.mb-n50 {
  margin-bottom: -50rem !important;
}

.ms-n0_5 {
  margin-left: -0.5rem !important;
}

.ms-n1 {
  margin-left: -1rem !important;
}

.ms-n1_5 {
  margin-left: -1.5rem !important;
}

.ms-n2 {
  margin-left: -2rem !important;
}

.ms-n2_5 {
  margin-left: -2.5rem !important;
}

.ms-n3 {
  margin-left: -3rem !important;
}

.ms-n3_5 {
  margin-left: -3.5rem !important;
}

.ms-n4 {
  margin-left: -4rem !important;
}

.ms-n5 {
  margin-left: -5rem !important;
}

.ms-n6 {
  margin-left: -6rem !important;
}

.ms-n7 {
  margin-left: -7rem !important;
}

.ms-n8 {
  margin-left: -8rem !important;
}

.ms-n9 {
  margin-left: -9rem !important;
}

.ms-n10 {
  margin-left: -10rem !important;
}

.ms-n13 {
  margin-left: -13rem !important;
}

.ms-n15 {
  margin-left: -15rem !important;
}

.ms-n20 {
  margin-left: -20rem !important;
}

.ms-n25 {
  margin-left: -25rem !important;
}

.ms-n30 {
  margin-left: -30rem !important;
}

.ms-n35 {
  margin-left: -35rem !important;
}

.ms-n40 {
  margin-left: -40rem !important;
}

.ms-n45 {
  margin-left: -45rem !important;
}

.ms-n50 {
  margin-left: -50rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-13 {
  padding: 13rem !important;
}

.p-15 {
  padding: 15rem !important;
}

.p-20 {
  padding: 20rem !important;
}

.p-25 {
  padding: 25rem !important;
}

.p-30 {
  padding: 30rem !important;
}

.p-35 {
  padding: 35rem !important;
}

.p-40 {
  padding: 40rem !important;
}

.p-45 {
  padding: 45rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-0_5 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-1_5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-2 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-2_5 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-3_5 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.py-4 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.py-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.py-7 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.py-8 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.py-9 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

.py-10 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.py-13 {
  padding-top: 13rem !important;
  padding-bottom: 13rem !important;
}

.py-15 {
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}

.py-20 {
  padding-top: 20rem !important;
  padding-bottom: 20rem !important;
}

.py-25 {
  padding-top: 25rem !important;
  padding-bottom: 25rem !important;
}

.py-30 {
  padding-top: 30rem !important;
  padding-bottom: 30rem !important;
}

.py-35 {
  padding-top: 35rem !important;
  padding-bottom: 35rem !important;
}

.py-40 {
  padding-top: 40rem !important;
  padding-bottom: 40rem !important;
}

.py-45 {
  padding-top: 45rem !important;
  padding-bottom: 45rem !important;
}

.py-50 {
  padding-top: 50rem !important;
  padding-bottom: 50rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-0_5 {
  padding-top: 0.5rem !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pt-1_5 {
  padding-top: 1.5rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pt-2_5 {
  padding-top: 2.5rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pt-3_5 {
  padding-top: 3.5rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.pt-8 {
  padding-top: 8rem !important;
}

.pt-9 {
  padding-top: 9rem !important;
}

.pt-10 {
  padding-top: 10rem !important;
}

.pt-13 {
  padding-top: 13rem !important;
}

.pt-15 {
  padding-top: 15rem !important;
}

.pt-20 {
  padding-top: 20rem !important;
}

.pt-25 {
  padding-top: 25rem !important;
}

.pt-30 {
  padding-top: 30rem !important;
}

.pt-35 {
  padding-top: 35rem !important;
}

.pt-40 {
  padding-top: 40rem !important;
}

.pt-45 {
  padding-top: 45rem !important;
}

.pt-50 {
  padding-top: 50rem !important;
}

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

.pe-0_5 {
  padding-right: 0.5rem !important;
}

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

.pe-1_5 {
  padding-right: 1.5rem !important;
}

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

.pe-2_5 {
  padding-right: 2.5rem !important;
}

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

.pe-3_5 {
  padding-right: 3.5rem !important;
}

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

.pe-5 {
  padding-right: 5rem !important;
}

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

.pe-7 {
  padding-right: 7rem !important;
}

.pe-8 {
  padding-right: 8rem !important;
}

.pe-9 {
  padding-right: 9rem !important;
}

.pe-10 {
  padding-right: 10rem !important;
}

.pe-13 {
  padding-right: 13rem !important;
}

.pe-15 {
  padding-right: 15rem !important;
}

.pe-20 {
  padding-right: 20rem !important;
}

.pe-25 {
  padding-right: 25rem !important;
}

.pe-30 {
  padding-right: 30rem !important;
}

.pe-35 {
  padding-right: 35rem !important;
}

.pe-40 {
  padding-right: 40rem !important;
}

.pe-45 {
  padding-right: 45rem !important;
}

.pe-50 {
  padding-right: 50rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-0_5 {
  padding-bottom: 0.5rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pb-1_5 {
  padding-bottom: 1.5rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.pb-2_5 {
  padding-bottom: 2.5rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.pb-3_5 {
  padding-bottom: 3.5rem !important;
}

.pb-4 {
  padding-bottom: 4rem !important;
}

.pb-5 {
  padding-bottom: 5rem !important;
}

.pb-6 {
  padding-bottom: 6rem !important;
}

.pb-7 {
  padding-bottom: 7rem !important;
}

.pb-8 {
  padding-bottom: 8rem !important;
}

.pb-9 {
  padding-bottom: 9rem !important;
}

.pb-10 {
  padding-bottom: 10rem !important;
}

.pb-13 {
  padding-bottom: 13rem !important;
}

.pb-15 {
  padding-bottom: 15rem !important;
}

.pb-20 {
  padding-bottom: 20rem !important;
}

.pb-25 {
  padding-bottom: 25rem !important;
}

.pb-30 {
  padding-bottom: 30rem !important;
}

.pb-35 {
  padding-bottom: 35rem !important;
}

.pb-40 {
  padding-bottom: 40rem !important;
}

.pb-45 {
  padding-bottom: 45rem !important;
}

.pb-50 {
  padding-bottom: 50rem !important;
}

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

.ps-0_5 {
  padding-left: 0.5rem !important;
}

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

.ps-1_5 {
  padding-left: 1.5rem !important;
}

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

.ps-2_5 {
  padding-left: 2.5rem !important;
}

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

.ps-3_5 {
  padding-left: 3.5rem !important;
}

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

.ps-5 {
  padding-left: 5rem !important;
}

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

.ps-7 {
  padding-left: 7rem !important;
}

.ps-8 {
  padding-left: 8rem !important;
}

.ps-9 {
  padding-left: 9rem !important;
}

.ps-10 {
  padding-left: 10rem !important;
}

.ps-13 {
  padding-left: 13rem !important;
}

.ps-15 {
  padding-left: 15rem !important;
}

.ps-20 {
  padding-left: 20rem !important;
}

.ps-25 {
  padding-left: 25rem !important;
}

.ps-30 {
  padding-left: 30rem !important;
}

.ps-35 {
  padding-left: 35rem !important;
}

.ps-40 {
  padding-left: 40rem !important;
}

.ps-45 {
  padding-left: 45rem !important;
}

.ps-50 {
  padding-left: 50rem !important;
}

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

.gap-0_5 {
  gap: 0.5rem !important;
}

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

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

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

.gap-2_5 {
  gap: 2.5rem !important;
}

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

.gap-3_5 {
  gap: 3.5rem !important;
}

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

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

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

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

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

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

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

.gap-13 {
  gap: 13rem !important;
}

.gap-15 {
  gap: 15rem !important;
}

.gap-20 {
  gap: 20rem !important;
}

.gap-25 {
  gap: 25rem !important;
}

.gap-30 {
  gap: 30rem !important;
}

.gap-35 {
  gap: 35rem !important;
}

.gap-40 {
  gap: 40rem !important;
}

.gap-45 {
  gap: 45rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.row-gap-13 {
  row-gap: 13rem !important;
}

.row-gap-15 {
  row-gap: 15rem !important;
}

.row-gap-20 {
  row-gap: 20rem !important;
}

.row-gap-25 {
  row-gap: 25rem !important;
}

.row-gap-30 {
  row-gap: 30rem !important;
}

.row-gap-35 {
  row-gap: 35rem !important;
}

.row-gap-40 {
  row-gap: 40rem !important;
}

.row-gap-45 {
  row-gap: 45rem !important;
}

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

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

.column-gap-0_5 {
  -webkit-column-gap: 0.5rem !important;
  -moz-column-gap: 0.5rem !important;
  column-gap: 0.5rem !important;
}

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

.column-gap-1_5 {
  -webkit-column-gap: 1.5rem !important;
  -moz-column-gap: 1.5rem !important;
  column-gap: 1.5rem !important;
}

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

.column-gap-2_5 {
  -webkit-column-gap: 2.5rem !important;
  -moz-column-gap: 2.5rem !important;
  column-gap: 2.5rem !important;
}

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

.column-gap-3_5 {
  -webkit-column-gap: 3.5rem !important;
  -moz-column-gap: 3.5rem !important;
  column-gap: 3.5rem !important;
}

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

.column-gap-5 {
  -webkit-column-gap: 5rem !important;
  -moz-column-gap: 5rem !important;
  column-gap: 5rem !important;
}

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

.column-gap-7 {
  -webkit-column-gap: 7rem !important;
  -moz-column-gap: 7rem !important;
  column-gap: 7rem !important;
}

.column-gap-8 {
  -webkit-column-gap: 8rem !important;
  -moz-column-gap: 8rem !important;
  column-gap: 8rem !important;
}

.column-gap-9 {
  -webkit-column-gap: 9rem !important;
  -moz-column-gap: 9rem !important;
  column-gap: 9rem !important;
}

.column-gap-10 {
  -webkit-column-gap: 10rem !important;
  -moz-column-gap: 10rem !important;
  column-gap: 10rem !important;
}

.column-gap-13 {
  -webkit-column-gap: 13rem !important;
  -moz-column-gap: 13rem !important;
  column-gap: 13rem !important;
}

.column-gap-15 {
  -webkit-column-gap: 15rem !important;
  -moz-column-gap: 15rem !important;
  column-gap: 15rem !important;
}

.column-gap-20 {
  -webkit-column-gap: 20rem !important;
  -moz-column-gap: 20rem !important;
  column-gap: 20rem !important;
}

.column-gap-25 {
  -webkit-column-gap: 25rem !important;
  -moz-column-gap: 25rem !important;
  column-gap: 25rem !important;
}

.column-gap-30 {
  -webkit-column-gap: 30rem !important;
  -moz-column-gap: 30rem !important;
  column-gap: 30rem !important;
}

.column-gap-35 {
  -webkit-column-gap: 35rem !important;
  -moz-column-gap: 35rem !important;
  column-gap: 35rem !important;
}

.column-gap-40 {
  -webkit-column-gap: 40rem !important;
  -moz-column-gap: 40rem !important;
  column-gap: 40rem !important;
}

.column-gap-45 {
  -webkit-column-gap: 45rem !important;
  -moz-column-gap: 45rem !important;
  column-gap: 45rem !important;
}

.column-gap-50 {
  -webkit-column-gap: 50rem !important;
  -moz-column-gap: 50rem !important;
  column-gap: 50rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

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

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

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

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

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

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

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

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

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

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

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
  --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

.link-opacity-25 {
  --bs-link-opacity: 0.25;
}

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

.link-opacity-50 {
  --bs-link-opacity: 0.5;
}

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

.link-opacity-75 {
  --bs-link-opacity: 0.75;
}

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

.link-opacity-100 {
  --bs-link-opacity: 1;
}

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-sm-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-sm-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-sm-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-0_5 {
    margin: 0.5rem !important;
  }
  .m-sm-1 {
    margin: 1rem !important;
  }
  .m-sm-1_5 {
    margin: 1.5rem !important;
  }
  .m-sm-2 {
    margin: 2rem !important;
  }
  .m-sm-2_5 {
    margin: 2.5rem !important;
  }
  .m-sm-3 {
    margin: 3rem !important;
  }
  .m-sm-3_5 {
    margin: 3.5rem !important;
  }
  .m-sm-4 {
    margin: 4rem !important;
  }
  .m-sm-5 {
    margin: 5rem !important;
  }
  .m-sm-6 {
    margin: 6rem !important;
  }
  .m-sm-7 {
    margin: 7rem !important;
  }
  .m-sm-8 {
    margin: 8rem !important;
  }
  .m-sm-9 {
    margin: 9rem !important;
  }
  .m-sm-10 {
    margin: 10rem !important;
  }
  .m-sm-13 {
    margin: 13rem !important;
  }
  .m-sm-15 {
    margin: 15rem !important;
  }
  .m-sm-20 {
    margin: 20rem !important;
  }
  .m-sm-25 {
    margin: 25rem !important;
  }
  .m-sm-30 {
    margin: 30rem !important;
  }
  .m-sm-35 {
    margin: 35rem !important;
  }
  .m-sm-40 {
    margin: 40rem !important;
  }
  .m-sm-45 {
    margin: 45rem !important;
  }
  .m-sm-50 {
    margin: 50rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-sm-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-sm-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-sm-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-sm-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-sm-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-sm-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-sm-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-sm-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-sm-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-sm-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-sm-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-sm-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-sm-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-sm-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-sm-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-sm-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sm-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-sm-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-sm-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-sm-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-sm-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-sm-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-sm-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-sm-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-sm-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-sm-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-sm-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-sm-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-sm-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-sm-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-sm-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-sm-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-sm-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-1 {
    margin-top: 1rem !important;
  }
  .mt-sm-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-2 {
    margin-top: 2rem !important;
  }
  .mt-sm-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 3rem !important;
  }
  .mt-sm-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-sm-4 {
    margin-top: 4rem !important;
  }
  .mt-sm-5 {
    margin-top: 5rem !important;
  }
  .mt-sm-6 {
    margin-top: 6rem !important;
  }
  .mt-sm-7 {
    margin-top: 7rem !important;
  }
  .mt-sm-8 {
    margin-top: 8rem !important;
  }
  .mt-sm-9 {
    margin-top: 9rem !important;
  }
  .mt-sm-10 {
    margin-top: 10rem !important;
  }
  .mt-sm-13 {
    margin-top: 13rem !important;
  }
  .mt-sm-15 {
    margin-top: 15rem !important;
  }
  .mt-sm-20 {
    margin-top: 20rem !important;
  }
  .mt-sm-25 {
    margin-top: 25rem !important;
  }
  .mt-sm-30 {
    margin-top: 30rem !important;
  }
  .mt-sm-35 {
    margin-top: 35rem !important;
  }
  .mt-sm-40 {
    margin-top: 40rem !important;
  }
  .mt-sm-45 {
    margin-top: 45rem !important;
  }
  .mt-sm-50 {
    margin-top: 50rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-sm-1 {
    margin-right: 1rem !important;
  }
  .me-sm-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-sm-2 {
    margin-right: 2rem !important;
  }
  .me-sm-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-sm-3 {
    margin-right: 3rem !important;
  }
  .me-sm-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-sm-4 {
    margin-right: 4rem !important;
  }
  .me-sm-5 {
    margin-right: 5rem !important;
  }
  .me-sm-6 {
    margin-right: 6rem !important;
  }
  .me-sm-7 {
    margin-right: 7rem !important;
  }
  .me-sm-8 {
    margin-right: 8rem !important;
  }
  .me-sm-9 {
    margin-right: 9rem !important;
  }
  .me-sm-10 {
    margin-right: 10rem !important;
  }
  .me-sm-13 {
    margin-right: 13rem !important;
  }
  .me-sm-15 {
    margin-right: 15rem !important;
  }
  .me-sm-20 {
    margin-right: 20rem !important;
  }
  .me-sm-25 {
    margin-right: 25rem !important;
  }
  .me-sm-30 {
    margin-right: 30rem !important;
  }
  .me-sm-35 {
    margin-right: 35rem !important;
  }
  .me-sm-40 {
    margin-right: 40rem !important;
  }
  .me-sm-45 {
    margin-right: 45rem !important;
  }
  .me-sm-50 {
    margin-right: 50rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 5rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 7rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 8rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 9rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 10rem !important;
  }
  .mb-sm-13 {
    margin-bottom: 13rem !important;
  }
  .mb-sm-15 {
    margin-bottom: 15rem !important;
  }
  .mb-sm-20 {
    margin-bottom: 20rem !important;
  }
  .mb-sm-25 {
    margin-bottom: 25rem !important;
  }
  .mb-sm-30 {
    margin-bottom: 30rem !important;
  }
  .mb-sm-35 {
    margin-bottom: 35rem !important;
  }
  .mb-sm-40 {
    margin-bottom: 40rem !important;
  }
  .mb-sm-45 {
    margin-bottom: 45rem !important;
  }
  .mb-sm-50 {
    margin-bottom: 50rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-1 {
    margin-left: 1rem !important;
  }
  .ms-sm-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-2 {
    margin-left: 2rem !important;
  }
  .ms-sm-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 3rem !important;
  }
  .ms-sm-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-sm-4 {
    margin-left: 4rem !important;
  }
  .ms-sm-5 {
    margin-left: 5rem !important;
  }
  .ms-sm-6 {
    margin-left: 6rem !important;
  }
  .ms-sm-7 {
    margin-left: 7rem !important;
  }
  .ms-sm-8 {
    margin-left: 8rem !important;
  }
  .ms-sm-9 {
    margin-left: 9rem !important;
  }
  .ms-sm-10 {
    margin-left: 10rem !important;
  }
  .ms-sm-13 {
    margin-left: 13rem !important;
  }
  .ms-sm-15 {
    margin-left: 15rem !important;
  }
  .ms-sm-20 {
    margin-left: 20rem !important;
  }
  .ms-sm-25 {
    margin-left: 25rem !important;
  }
  .ms-sm-30 {
    margin-left: 30rem !important;
  }
  .ms-sm-35 {
    margin-left: 35rem !important;
  }
  .ms-sm-40 {
    margin-left: 40rem !important;
  }
  .ms-sm-45 {
    margin-left: 45rem !important;
  }
  .ms-sm-50 {
    margin-left: 50rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .m-sm-n0_5 {
    margin: -0.5rem !important;
  }
  .m-sm-n1 {
    margin: -1rem !important;
  }
  .m-sm-n1_5 {
    margin: -1.5rem !important;
  }
  .m-sm-n2 {
    margin: -2rem !important;
  }
  .m-sm-n2_5 {
    margin: -2.5rem !important;
  }
  .m-sm-n3 {
    margin: -3rem !important;
  }
  .m-sm-n3_5 {
    margin: -3.5rem !important;
  }
  .m-sm-n4 {
    margin: -4rem !important;
  }
  .m-sm-n5 {
    margin: -5rem !important;
  }
  .m-sm-n6 {
    margin: -6rem !important;
  }
  .m-sm-n7 {
    margin: -7rem !important;
  }
  .m-sm-n8 {
    margin: -8rem !important;
  }
  .m-sm-n9 {
    margin: -9rem !important;
  }
  .m-sm-n10 {
    margin: -10rem !important;
  }
  .m-sm-n13 {
    margin: -13rem !important;
  }
  .m-sm-n15 {
    margin: -15rem !important;
  }
  .m-sm-n20 {
    margin: -20rem !important;
  }
  .m-sm-n25 {
    margin: -25rem !important;
  }
  .m-sm-n30 {
    margin: -30rem !important;
  }
  .m-sm-n35 {
    margin: -35rem !important;
  }
  .m-sm-n40 {
    margin: -40rem !important;
  }
  .m-sm-n45 {
    margin: -45rem !important;
  }
  .m-sm-n50 {
    margin: -50rem !important;
  }
  .mx-sm-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-sm-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-sm-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-sm-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-sm-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-sm-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-sm-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-sm-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-sm-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-sm-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-sm-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-sm-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-sm-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-sm-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-sm-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-sm-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-sm-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-sm-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-sm-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-sm-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-sm-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-sm-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-sm-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-sm-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-sm-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-sm-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-sm-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-sm-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-sm-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-sm-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-sm-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-sm-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-sm-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-sm-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-sm-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-sm-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-sm-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-sm-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-sm-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-sm-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-sm-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-sm-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-sm-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-sm-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-sm-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-sm-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-sm-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-sm-n1 {
    margin-top: -1rem !important;
  }
  .mt-sm-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-sm-n2 {
    margin-top: -2rem !important;
  }
  .mt-sm-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-sm-n3 {
    margin-top: -3rem !important;
  }
  .mt-sm-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-sm-n4 {
    margin-top: -4rem !important;
  }
  .mt-sm-n5 {
    margin-top: -5rem !important;
  }
  .mt-sm-n6 {
    margin-top: -6rem !important;
  }
  .mt-sm-n7 {
    margin-top: -7rem !important;
  }
  .mt-sm-n8 {
    margin-top: -8rem !important;
  }
  .mt-sm-n9 {
    margin-top: -9rem !important;
  }
  .mt-sm-n10 {
    margin-top: -10rem !important;
  }
  .mt-sm-n13 {
    margin-top: -13rem !important;
  }
  .mt-sm-n15 {
    margin-top: -15rem !important;
  }
  .mt-sm-n20 {
    margin-top: -20rem !important;
  }
  .mt-sm-n25 {
    margin-top: -25rem !important;
  }
  .mt-sm-n30 {
    margin-top: -30rem !important;
  }
  .mt-sm-n35 {
    margin-top: -35rem !important;
  }
  .mt-sm-n40 {
    margin-top: -40rem !important;
  }
  .mt-sm-n45 {
    margin-top: -45rem !important;
  }
  .mt-sm-n50 {
    margin-top: -50rem !important;
  }
  .me-sm-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-sm-n1 {
    margin-right: -1rem !important;
  }
  .me-sm-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-sm-n2 {
    margin-right: -2rem !important;
  }
  .me-sm-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-sm-n3 {
    margin-right: -3rem !important;
  }
  .me-sm-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-sm-n4 {
    margin-right: -4rem !important;
  }
  .me-sm-n5 {
    margin-right: -5rem !important;
  }
  .me-sm-n6 {
    margin-right: -6rem !important;
  }
  .me-sm-n7 {
    margin-right: -7rem !important;
  }
  .me-sm-n8 {
    margin-right: -8rem !important;
  }
  .me-sm-n9 {
    margin-right: -9rem !important;
  }
  .me-sm-n10 {
    margin-right: -10rem !important;
  }
  .me-sm-n13 {
    margin-right: -13rem !important;
  }
  .me-sm-n15 {
    margin-right: -15rem !important;
  }
  .me-sm-n20 {
    margin-right: -20rem !important;
  }
  .me-sm-n25 {
    margin-right: -25rem !important;
  }
  .me-sm-n30 {
    margin-right: -30rem !important;
  }
  .me-sm-n35 {
    margin-right: -35rem !important;
  }
  .me-sm-n40 {
    margin-right: -40rem !important;
  }
  .me-sm-n45 {
    margin-right: -45rem !important;
  }
  .me-sm-n50 {
    margin-right: -50rem !important;
  }
  .mb-sm-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-sm-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-sm-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-sm-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-sm-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-sm-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-sm-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-sm-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-sm-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-sm-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-sm-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-sm-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-sm-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-sm-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-sm-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-sm-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-sm-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-sm-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-sm-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-sm-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-sm-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-sm-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-sm-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-sm-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-sm-n1 {
    margin-left: -1rem !important;
  }
  .ms-sm-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-sm-n2 {
    margin-left: -2rem !important;
  }
  .ms-sm-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-sm-n3 {
    margin-left: -3rem !important;
  }
  .ms-sm-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-sm-n4 {
    margin-left: -4rem !important;
  }
  .ms-sm-n5 {
    margin-left: -5rem !important;
  }
  .ms-sm-n6 {
    margin-left: -6rem !important;
  }
  .ms-sm-n7 {
    margin-left: -7rem !important;
  }
  .ms-sm-n8 {
    margin-left: -8rem !important;
  }
  .ms-sm-n9 {
    margin-left: -9rem !important;
  }
  .ms-sm-n10 {
    margin-left: -10rem !important;
  }
  .ms-sm-n13 {
    margin-left: -13rem !important;
  }
  .ms-sm-n15 {
    margin-left: -15rem !important;
  }
  .ms-sm-n20 {
    margin-left: -20rem !important;
  }
  .ms-sm-n25 {
    margin-left: -25rem !important;
  }
  .ms-sm-n30 {
    margin-left: -30rem !important;
  }
  .ms-sm-n35 {
    margin-left: -35rem !important;
  }
  .ms-sm-n40 {
    margin-left: -40rem !important;
  }
  .ms-sm-n45 {
    margin-left: -45rem !important;
  }
  .ms-sm-n50 {
    margin-left: -50rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-0_5 {
    padding: 0.5rem !important;
  }
  .p-sm-1 {
    padding: 1rem !important;
  }
  .p-sm-1_5 {
    padding: 1.5rem !important;
  }
  .p-sm-2 {
    padding: 2rem !important;
  }
  .p-sm-2_5 {
    padding: 2.5rem !important;
  }
  .p-sm-3 {
    padding: 3rem !important;
  }
  .p-sm-3_5 {
    padding: 3.5rem !important;
  }
  .p-sm-4 {
    padding: 4rem !important;
  }
  .p-sm-5 {
    padding: 5rem !important;
  }
  .p-sm-6 {
    padding: 6rem !important;
  }
  .p-sm-7 {
    padding: 7rem !important;
  }
  .p-sm-8 {
    padding: 8rem !important;
  }
  .p-sm-9 {
    padding: 9rem !important;
  }
  .p-sm-10 {
    padding: 10rem !important;
  }
  .p-sm-13 {
    padding: 13rem !important;
  }
  .p-sm-15 {
    padding: 15rem !important;
  }
  .p-sm-20 {
    padding: 20rem !important;
  }
  .p-sm-25 {
    padding: 25rem !important;
  }
  .p-sm-30 {
    padding: 30rem !important;
  }
  .p-sm-35 {
    padding: 35rem !important;
  }
  .p-sm-40 {
    padding: 40rem !important;
  }
  .p-sm-45 {
    padding: 45rem !important;
  }
  .p-sm-50 {
    padding: 50rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sm-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-sm-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-sm-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-sm-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-sm-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-sm-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-sm-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-sm-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-sm-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-sm-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-sm-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-sm-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-sm-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-sm-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-sm-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-sm-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-sm-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-sm-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-sm-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-sm-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-sm-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-sm-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-sm-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-sm-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-sm-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-sm-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-sm-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-sm-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-sm-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-sm-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-sm-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-sm-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-sm-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-1 {
    padding-top: 1rem !important;
  }
  .pt-sm-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-2 {
    padding-top: 2rem !important;
  }
  .pt-sm-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 3rem !important;
  }
  .pt-sm-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-sm-4 {
    padding-top: 4rem !important;
  }
  .pt-sm-5 {
    padding-top: 5rem !important;
  }
  .pt-sm-6 {
    padding-top: 6rem !important;
  }
  .pt-sm-7 {
    padding-top: 7rem !important;
  }
  .pt-sm-8 {
    padding-top: 8rem !important;
  }
  .pt-sm-9 {
    padding-top: 9rem !important;
  }
  .pt-sm-10 {
    padding-top: 10rem !important;
  }
  .pt-sm-13 {
    padding-top: 13rem !important;
  }
  .pt-sm-15 {
    padding-top: 15rem !important;
  }
  .pt-sm-20 {
    padding-top: 20rem !important;
  }
  .pt-sm-25 {
    padding-top: 25rem !important;
  }
  .pt-sm-30 {
    padding-top: 30rem !important;
  }
  .pt-sm-35 {
    padding-top: 35rem !important;
  }
  .pt-sm-40 {
    padding-top: 40rem !important;
  }
  .pt-sm-45 {
    padding-top: 45rem !important;
  }
  .pt-sm-50 {
    padding-top: 50rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-1 {
    padding-right: 1rem !important;
  }
  .pe-sm-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-2 {
    padding-right: 2rem !important;
  }
  .pe-sm-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 3rem !important;
  }
  .pe-sm-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-sm-4 {
    padding-right: 4rem !important;
  }
  .pe-sm-5 {
    padding-right: 5rem !important;
  }
  .pe-sm-6 {
    padding-right: 6rem !important;
  }
  .pe-sm-7 {
    padding-right: 7rem !important;
  }
  .pe-sm-8 {
    padding-right: 8rem !important;
  }
  .pe-sm-9 {
    padding-right: 9rem !important;
  }
  .pe-sm-10 {
    padding-right: 10rem !important;
  }
  .pe-sm-13 {
    padding-right: 13rem !important;
  }
  .pe-sm-15 {
    padding-right: 15rem !important;
  }
  .pe-sm-20 {
    padding-right: 20rem !important;
  }
  .pe-sm-25 {
    padding-right: 25rem !important;
  }
  .pe-sm-30 {
    padding-right: 30rem !important;
  }
  .pe-sm-35 {
    padding-right: 35rem !important;
  }
  .pe-sm-40 {
    padding-right: 40rem !important;
  }
  .pe-sm-45 {
    padding-right: 45rem !important;
  }
  .pe-sm-50 {
    padding-right: 50rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 4rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 5rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 6rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 7rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 8rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 9rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 10rem !important;
  }
  .pb-sm-13 {
    padding-bottom: 13rem !important;
  }
  .pb-sm-15 {
    padding-bottom: 15rem !important;
  }
  .pb-sm-20 {
    padding-bottom: 20rem !important;
  }
  .pb-sm-25 {
    padding-bottom: 25rem !important;
  }
  .pb-sm-30 {
    padding-bottom: 30rem !important;
  }
  .pb-sm-35 {
    padding-bottom: 35rem !important;
  }
  .pb-sm-40 {
    padding-bottom: 40rem !important;
  }
  .pb-sm-45 {
    padding-bottom: 45rem !important;
  }
  .pb-sm-50 {
    padding-bottom: 50rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-1 {
    padding-left: 1rem !important;
  }
  .ps-sm-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-2 {
    padding-left: 2rem !important;
  }
  .ps-sm-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 3rem !important;
  }
  .ps-sm-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-sm-4 {
    padding-left: 4rem !important;
  }
  .ps-sm-5 {
    padding-left: 5rem !important;
  }
  .ps-sm-6 {
    padding-left: 6rem !important;
  }
  .ps-sm-7 {
    padding-left: 7rem !important;
  }
  .ps-sm-8 {
    padding-left: 8rem !important;
  }
  .ps-sm-9 {
    padding-left: 9rem !important;
  }
  .ps-sm-10 {
    padding-left: 10rem !important;
  }
  .ps-sm-13 {
    padding-left: 13rem !important;
  }
  .ps-sm-15 {
    padding-left: 15rem !important;
  }
  .ps-sm-20 {
    padding-left: 20rem !important;
  }
  .ps-sm-25 {
    padding-left: 25rem !important;
  }
  .ps-sm-30 {
    padding-left: 30rem !important;
  }
  .ps-sm-35 {
    padding-left: 35rem !important;
  }
  .ps-sm-40 {
    padding-left: 40rem !important;
  }
  .ps-sm-45 {
    padding-left: 45rem !important;
  }
  .ps-sm-50 {
    padding-left: 50rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-0_5 {
    gap: 0.5rem !important;
  }
  .gap-sm-1 {
    gap: 1rem !important;
  }
  .gap-sm-1_5 {
    gap: 1.5rem !important;
  }
  .gap-sm-2 {
    gap: 2rem !important;
  }
  .gap-sm-2_5 {
    gap: 2.5rem !important;
  }
  .gap-sm-3 {
    gap: 3rem !important;
  }
  .gap-sm-3_5 {
    gap: 3.5rem !important;
  }
  .gap-sm-4 {
    gap: 4rem !important;
  }
  .gap-sm-5 {
    gap: 5rem !important;
  }
  .gap-sm-6 {
    gap: 6rem !important;
  }
  .gap-sm-7 {
    gap: 7rem !important;
  }
  .gap-sm-8 {
    gap: 8rem !important;
  }
  .gap-sm-9 {
    gap: 9rem !important;
  }
  .gap-sm-10 {
    gap: 10rem !important;
  }
  .gap-sm-13 {
    gap: 13rem !important;
  }
  .gap-sm-15 {
    gap: 15rem !important;
  }
  .gap-sm-20 {
    gap: 20rem !important;
  }
  .gap-sm-25 {
    gap: 25rem !important;
  }
  .gap-sm-30 {
    gap: 30rem !important;
  }
  .gap-sm-35 {
    gap: 35rem !important;
  }
  .gap-sm-40 {
    gap: 40rem !important;
  }
  .gap-sm-45 {
    gap: 45rem !important;
  }
  .gap-sm-50 {
    gap: 50rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-0_5 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-1 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-1_5 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 2rem !important;
  }
  .row-gap-sm-2_5 {
    row-gap: 2.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 3rem !important;
  }
  .row-gap-sm-3_5 {
    row-gap: 3.5rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 4rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 5rem !important;
  }
  .row-gap-sm-6 {
    row-gap: 6rem !important;
  }
  .row-gap-sm-7 {
    row-gap: 7rem !important;
  }
  .row-gap-sm-8 {
    row-gap: 8rem !important;
  }
  .row-gap-sm-9 {
    row-gap: 9rem !important;
  }
  .row-gap-sm-10 {
    row-gap: 10rem !important;
  }
  .row-gap-sm-13 {
    row-gap: 13rem !important;
  }
  .row-gap-sm-15 {
    row-gap: 15rem !important;
  }
  .row-gap-sm-20 {
    row-gap: 20rem !important;
  }
  .row-gap-sm-25 {
    row-gap: 25rem !important;
  }
  .row-gap-sm-30 {
    row-gap: 30rem !important;
  }
  .row-gap-sm-35 {
    row-gap: 35rem !important;
  }
  .row-gap-sm-40 {
    row-gap: 40rem !important;
  }
  .row-gap-sm-45 {
    row-gap: 45rem !important;
  }
  .row-gap-sm-50 {
    row-gap: 50rem !important;
  }
  .column-gap-sm-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-sm-0_5 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-sm-1 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-sm-1_5 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-sm-2 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .column-gap-sm-2_5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .column-gap-sm-3 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .column-gap-sm-3_5 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  .column-gap-sm-4 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  .column-gap-sm-5 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  .column-gap-sm-6 {
    -webkit-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }
  .column-gap-sm-7 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }
  .column-gap-sm-8 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }
  .column-gap-sm-9 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }
  .column-gap-sm-10 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }
  .column-gap-sm-13 {
    -webkit-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }
  .column-gap-sm-15 {
    -webkit-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }
  .column-gap-sm-20 {
    -webkit-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }
  .column-gap-sm-25 {
    -webkit-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }
  .column-gap-sm-30 {
    -webkit-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }
  .column-gap-sm-35 {
    -webkit-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }
  .column-gap-sm-40 {
    -webkit-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }
  .column-gap-sm-45 {
    -webkit-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }
  .column-gap-sm-50 {
    -webkit-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .object-fit-md-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-md-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-md-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-md-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-md-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-0_5 {
    margin: 0.5rem !important;
  }
  .m-md-1 {
    margin: 1rem !important;
  }
  .m-md-1_5 {
    margin: 1.5rem !important;
  }
  .m-md-2 {
    margin: 2rem !important;
  }
  .m-md-2_5 {
    margin: 2.5rem !important;
  }
  .m-md-3 {
    margin: 3rem !important;
  }
  .m-md-3_5 {
    margin: 3.5rem !important;
  }
  .m-md-4 {
    margin: 4rem !important;
  }
  .m-md-5 {
    margin: 5rem !important;
  }
  .m-md-6 {
    margin: 6rem !important;
  }
  .m-md-7 {
    margin: 7rem !important;
  }
  .m-md-8 {
    margin: 8rem !important;
  }
  .m-md-9 {
    margin: 9rem !important;
  }
  .m-md-10 {
    margin: 10rem !important;
  }
  .m-md-13 {
    margin: 13rem !important;
  }
  .m-md-15 {
    margin: 15rem !important;
  }
  .m-md-20 {
    margin: 20rem !important;
  }
  .m-md-25 {
    margin: 25rem !important;
  }
  .m-md-30 {
    margin: 30rem !important;
  }
  .m-md-35 {
    margin: 35rem !important;
  }
  .m-md-40 {
    margin: 40rem !important;
  }
  .m-md-45 {
    margin: 45rem !important;
  }
  .m-md-50 {
    margin: 50rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-md-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-md-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-md-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-md-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-md-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-md-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-md-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-md-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-md-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-md-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-md-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-md-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-md-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-md-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-md-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-md-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-md-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-md-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-md-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-md-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-md-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-md-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-md-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-md-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-md-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-md-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-md-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-md-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-md-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-md-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-md-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-md-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-md-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-md-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-md-1 {
    margin-top: 1rem !important;
  }
  .mt-md-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-md-2 {
    margin-top: 2rem !important;
  }
  .mt-md-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-md-3 {
    margin-top: 3rem !important;
  }
  .mt-md-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-md-4 {
    margin-top: 4rem !important;
  }
  .mt-md-5 {
    margin-top: 5rem !important;
  }
  .mt-md-6 {
    margin-top: 6rem !important;
  }
  .mt-md-7 {
    margin-top: 7rem !important;
  }
  .mt-md-8 {
    margin-top: 8rem !important;
  }
  .mt-md-9 {
    margin-top: 9rem !important;
  }
  .mt-md-10 {
    margin-top: 10rem !important;
  }
  .mt-md-13 {
    margin-top: 13rem !important;
  }
  .mt-md-15 {
    margin-top: 15rem !important;
  }
  .mt-md-20 {
    margin-top: 20rem !important;
  }
  .mt-md-25 {
    margin-top: 25rem !important;
  }
  .mt-md-30 {
    margin-top: 30rem !important;
  }
  .mt-md-35 {
    margin-top: 35rem !important;
  }
  .mt-md-40 {
    margin-top: 40rem !important;
  }
  .mt-md-45 {
    margin-top: 45rem !important;
  }
  .mt-md-50 {
    margin-top: 50rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-md-1 {
    margin-right: 1rem !important;
  }
  .me-md-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-md-2 {
    margin-right: 2rem !important;
  }
  .me-md-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-md-3 {
    margin-right: 3rem !important;
  }
  .me-md-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-md-4 {
    margin-right: 4rem !important;
  }
  .me-md-5 {
    margin-right: 5rem !important;
  }
  .me-md-6 {
    margin-right: 6rem !important;
  }
  .me-md-7 {
    margin-right: 7rem !important;
  }
  .me-md-8 {
    margin-right: 8rem !important;
  }
  .me-md-9 {
    margin-right: 9rem !important;
  }
  .me-md-10 {
    margin-right: 10rem !important;
  }
  .me-md-13 {
    margin-right: 13rem !important;
  }
  .me-md-15 {
    margin-right: 15rem !important;
  }
  .me-md-20 {
    margin-right: 20rem !important;
  }
  .me-md-25 {
    margin-right: 25rem !important;
  }
  .me-md-30 {
    margin-right: 30rem !important;
  }
  .me-md-35 {
    margin-right: 35rem !important;
  }
  .me-md-40 {
    margin-right: 40rem !important;
  }
  .me-md-45 {
    margin-right: 45rem !important;
  }
  .me-md-50 {
    margin-right: 50rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-1 {
    margin-bottom: 1rem !important;
  }
  .mb-md-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-2 {
    margin-bottom: 2rem !important;
  }
  .mb-md-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 3rem !important;
  }
  .mb-md-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-md-4 {
    margin-bottom: 4rem !important;
  }
  .mb-md-5 {
    margin-bottom: 5rem !important;
  }
  .mb-md-6 {
    margin-bottom: 6rem !important;
  }
  .mb-md-7 {
    margin-bottom: 7rem !important;
  }
  .mb-md-8 {
    margin-bottom: 8rem !important;
  }
  .mb-md-9 {
    margin-bottom: 9rem !important;
  }
  .mb-md-10 {
    margin-bottom: 10rem !important;
  }
  .mb-md-13 {
    margin-bottom: 13rem !important;
  }
  .mb-md-15 {
    margin-bottom: 15rem !important;
  }
  .mb-md-20 {
    margin-bottom: 20rem !important;
  }
  .mb-md-25 {
    margin-bottom: 25rem !important;
  }
  .mb-md-30 {
    margin-bottom: 30rem !important;
  }
  .mb-md-35 {
    margin-bottom: 35rem !important;
  }
  .mb-md-40 {
    margin-bottom: 40rem !important;
  }
  .mb-md-45 {
    margin-bottom: 45rem !important;
  }
  .mb-md-50 {
    margin-bottom: 50rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-md-1 {
    margin-left: 1rem !important;
  }
  .ms-md-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-md-2 {
    margin-left: 2rem !important;
  }
  .ms-md-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-md-3 {
    margin-left: 3rem !important;
  }
  .ms-md-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-md-4 {
    margin-left: 4rem !important;
  }
  .ms-md-5 {
    margin-left: 5rem !important;
  }
  .ms-md-6 {
    margin-left: 6rem !important;
  }
  .ms-md-7 {
    margin-left: 7rem !important;
  }
  .ms-md-8 {
    margin-left: 8rem !important;
  }
  .ms-md-9 {
    margin-left: 9rem !important;
  }
  .ms-md-10 {
    margin-left: 10rem !important;
  }
  .ms-md-13 {
    margin-left: 13rem !important;
  }
  .ms-md-15 {
    margin-left: 15rem !important;
  }
  .ms-md-20 {
    margin-left: 20rem !important;
  }
  .ms-md-25 {
    margin-left: 25rem !important;
  }
  .ms-md-30 {
    margin-left: 30rem !important;
  }
  .ms-md-35 {
    margin-left: 35rem !important;
  }
  .ms-md-40 {
    margin-left: 40rem !important;
  }
  .ms-md-45 {
    margin-left: 45rem !important;
  }
  .ms-md-50 {
    margin-left: 50rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .m-md-n0_5 {
    margin: -0.5rem !important;
  }
  .m-md-n1 {
    margin: -1rem !important;
  }
  .m-md-n1_5 {
    margin: -1.5rem !important;
  }
  .m-md-n2 {
    margin: -2rem !important;
  }
  .m-md-n2_5 {
    margin: -2.5rem !important;
  }
  .m-md-n3 {
    margin: -3rem !important;
  }
  .m-md-n3_5 {
    margin: -3.5rem !important;
  }
  .m-md-n4 {
    margin: -4rem !important;
  }
  .m-md-n5 {
    margin: -5rem !important;
  }
  .m-md-n6 {
    margin: -6rem !important;
  }
  .m-md-n7 {
    margin: -7rem !important;
  }
  .m-md-n8 {
    margin: -8rem !important;
  }
  .m-md-n9 {
    margin: -9rem !important;
  }
  .m-md-n10 {
    margin: -10rem !important;
  }
  .m-md-n13 {
    margin: -13rem !important;
  }
  .m-md-n15 {
    margin: -15rem !important;
  }
  .m-md-n20 {
    margin: -20rem !important;
  }
  .m-md-n25 {
    margin: -25rem !important;
  }
  .m-md-n30 {
    margin: -30rem !important;
  }
  .m-md-n35 {
    margin: -35rem !important;
  }
  .m-md-n40 {
    margin: -40rem !important;
  }
  .m-md-n45 {
    margin: -45rem !important;
  }
  .m-md-n50 {
    margin: -50rem !important;
  }
  .mx-md-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-md-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-md-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-md-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-md-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-md-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-md-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-md-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-md-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-md-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-md-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-md-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-md-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-md-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-md-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-md-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-md-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-md-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-md-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-md-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-md-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-md-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-md-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-md-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-md-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-md-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-md-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-md-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-md-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-md-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-md-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-md-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-md-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-md-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-md-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-md-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-md-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-md-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-md-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-md-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-md-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-md-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-md-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-md-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-md-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-md-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-md-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-md-n1 {
    margin-top: -1rem !important;
  }
  .mt-md-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-md-n2 {
    margin-top: -2rem !important;
  }
  .mt-md-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-md-n3 {
    margin-top: -3rem !important;
  }
  .mt-md-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-md-n4 {
    margin-top: -4rem !important;
  }
  .mt-md-n5 {
    margin-top: -5rem !important;
  }
  .mt-md-n6 {
    margin-top: -6rem !important;
  }
  .mt-md-n7 {
    margin-top: -7rem !important;
  }
  .mt-md-n8 {
    margin-top: -8rem !important;
  }
  .mt-md-n9 {
    margin-top: -9rem !important;
  }
  .mt-md-n10 {
    margin-top: -10rem !important;
  }
  .mt-md-n13 {
    margin-top: -13rem !important;
  }
  .mt-md-n15 {
    margin-top: -15rem !important;
  }
  .mt-md-n20 {
    margin-top: -20rem !important;
  }
  .mt-md-n25 {
    margin-top: -25rem !important;
  }
  .mt-md-n30 {
    margin-top: -30rem !important;
  }
  .mt-md-n35 {
    margin-top: -35rem !important;
  }
  .mt-md-n40 {
    margin-top: -40rem !important;
  }
  .mt-md-n45 {
    margin-top: -45rem !important;
  }
  .mt-md-n50 {
    margin-top: -50rem !important;
  }
  .me-md-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-md-n1 {
    margin-right: -1rem !important;
  }
  .me-md-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-md-n2 {
    margin-right: -2rem !important;
  }
  .me-md-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-md-n3 {
    margin-right: -3rem !important;
  }
  .me-md-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-md-n4 {
    margin-right: -4rem !important;
  }
  .me-md-n5 {
    margin-right: -5rem !important;
  }
  .me-md-n6 {
    margin-right: -6rem !important;
  }
  .me-md-n7 {
    margin-right: -7rem !important;
  }
  .me-md-n8 {
    margin-right: -8rem !important;
  }
  .me-md-n9 {
    margin-right: -9rem !important;
  }
  .me-md-n10 {
    margin-right: -10rem !important;
  }
  .me-md-n13 {
    margin-right: -13rem !important;
  }
  .me-md-n15 {
    margin-right: -15rem !important;
  }
  .me-md-n20 {
    margin-right: -20rem !important;
  }
  .me-md-n25 {
    margin-right: -25rem !important;
  }
  .me-md-n30 {
    margin-right: -30rem !important;
  }
  .me-md-n35 {
    margin-right: -35rem !important;
  }
  .me-md-n40 {
    margin-right: -40rem !important;
  }
  .me-md-n45 {
    margin-right: -45rem !important;
  }
  .me-md-n50 {
    margin-right: -50rem !important;
  }
  .mb-md-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-md-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-md-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-md-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-md-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-md-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-md-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-md-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-md-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-md-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-md-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-md-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-md-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-md-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-md-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-md-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-md-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-md-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-md-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-md-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-md-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-md-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-md-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-md-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-md-n1 {
    margin-left: -1rem !important;
  }
  .ms-md-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-md-n2 {
    margin-left: -2rem !important;
  }
  .ms-md-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-md-n3 {
    margin-left: -3rem !important;
  }
  .ms-md-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-md-n4 {
    margin-left: -4rem !important;
  }
  .ms-md-n5 {
    margin-left: -5rem !important;
  }
  .ms-md-n6 {
    margin-left: -6rem !important;
  }
  .ms-md-n7 {
    margin-left: -7rem !important;
  }
  .ms-md-n8 {
    margin-left: -8rem !important;
  }
  .ms-md-n9 {
    margin-left: -9rem !important;
  }
  .ms-md-n10 {
    margin-left: -10rem !important;
  }
  .ms-md-n13 {
    margin-left: -13rem !important;
  }
  .ms-md-n15 {
    margin-left: -15rem !important;
  }
  .ms-md-n20 {
    margin-left: -20rem !important;
  }
  .ms-md-n25 {
    margin-left: -25rem !important;
  }
  .ms-md-n30 {
    margin-left: -30rem !important;
  }
  .ms-md-n35 {
    margin-left: -35rem !important;
  }
  .ms-md-n40 {
    margin-left: -40rem !important;
  }
  .ms-md-n45 {
    margin-left: -45rem !important;
  }
  .ms-md-n50 {
    margin-left: -50rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-0_5 {
    padding: 0.5rem !important;
  }
  .p-md-1 {
    padding: 1rem !important;
  }
  .p-md-1_5 {
    padding: 1.5rem !important;
  }
  .p-md-2 {
    padding: 2rem !important;
  }
  .p-md-2_5 {
    padding: 2.5rem !important;
  }
  .p-md-3 {
    padding: 3rem !important;
  }
  .p-md-3_5 {
    padding: 3.5rem !important;
  }
  .p-md-4 {
    padding: 4rem !important;
  }
  .p-md-5 {
    padding: 5rem !important;
  }
  .p-md-6 {
    padding: 6rem !important;
  }
  .p-md-7 {
    padding: 7rem !important;
  }
  .p-md-8 {
    padding: 8rem !important;
  }
  .p-md-9 {
    padding: 9rem !important;
  }
  .p-md-10 {
    padding: 10rem !important;
  }
  .p-md-13 {
    padding: 13rem !important;
  }
  .p-md-15 {
    padding: 15rem !important;
  }
  .p-md-20 {
    padding: 20rem !important;
  }
  .p-md-25 {
    padding: 25rem !important;
  }
  .p-md-30 {
    padding: 30rem !important;
  }
  .p-md-35 {
    padding: 35rem !important;
  }
  .p-md-40 {
    padding: 40rem !important;
  }
  .p-md-45 {
    padding: 45rem !important;
  }
  .p-md-50 {
    padding: 50rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-md-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-md-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-md-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-md-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-md-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-md-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-md-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-md-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-md-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-md-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-md-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-md-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-md-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-md-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-md-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-md-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-md-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-md-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-md-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-md-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-md-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-md-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-md-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-md-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-md-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-md-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-md-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-md-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-md-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-md-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-md-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-md-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-md-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-md-1 {
    padding-top: 1rem !important;
  }
  .pt-md-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-md-2 {
    padding-top: 2rem !important;
  }
  .pt-md-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-md-3 {
    padding-top: 3rem !important;
  }
  .pt-md-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-md-4 {
    padding-top: 4rem !important;
  }
  .pt-md-5 {
    padding-top: 5rem !important;
  }
  .pt-md-6 {
    padding-top: 6rem !important;
  }
  .pt-md-7 {
    padding-top: 7rem !important;
  }
  .pt-md-8 {
    padding-top: 8rem !important;
  }
  .pt-md-9 {
    padding-top: 9rem !important;
  }
  .pt-md-10 {
    padding-top: 10rem !important;
  }
  .pt-md-13 {
    padding-top: 13rem !important;
  }
  .pt-md-15 {
    padding-top: 15rem !important;
  }
  .pt-md-20 {
    padding-top: 20rem !important;
  }
  .pt-md-25 {
    padding-top: 25rem !important;
  }
  .pt-md-30 {
    padding-top: 30rem !important;
  }
  .pt-md-35 {
    padding-top: 35rem !important;
  }
  .pt-md-40 {
    padding-top: 40rem !important;
  }
  .pt-md-45 {
    padding-top: 45rem !important;
  }
  .pt-md-50 {
    padding-top: 50rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-md-1 {
    padding-right: 1rem !important;
  }
  .pe-md-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-md-2 {
    padding-right: 2rem !important;
  }
  .pe-md-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-md-3 {
    padding-right: 3rem !important;
  }
  .pe-md-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-md-4 {
    padding-right: 4rem !important;
  }
  .pe-md-5 {
    padding-right: 5rem !important;
  }
  .pe-md-6 {
    padding-right: 6rem !important;
  }
  .pe-md-7 {
    padding-right: 7rem !important;
  }
  .pe-md-8 {
    padding-right: 8rem !important;
  }
  .pe-md-9 {
    padding-right: 9rem !important;
  }
  .pe-md-10 {
    padding-right: 10rem !important;
  }
  .pe-md-13 {
    padding-right: 13rem !important;
  }
  .pe-md-15 {
    padding-right: 15rem !important;
  }
  .pe-md-20 {
    padding-right: 20rem !important;
  }
  .pe-md-25 {
    padding-right: 25rem !important;
  }
  .pe-md-30 {
    padding-right: 30rem !important;
  }
  .pe-md-35 {
    padding-right: 35rem !important;
  }
  .pe-md-40 {
    padding-right: 40rem !important;
  }
  .pe-md-45 {
    padding-right: 45rem !important;
  }
  .pe-md-50 {
    padding-right: 50rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-1 {
    padding-bottom: 1rem !important;
  }
  .pb-md-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-2 {
    padding-bottom: 2rem !important;
  }
  .pb-md-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 3rem !important;
  }
  .pb-md-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-md-4 {
    padding-bottom: 4rem !important;
  }
  .pb-md-5 {
    padding-bottom: 5rem !important;
  }
  .pb-md-6 {
    padding-bottom: 6rem !important;
  }
  .pb-md-7 {
    padding-bottom: 7rem !important;
  }
  .pb-md-8 {
    padding-bottom: 8rem !important;
  }
  .pb-md-9 {
    padding-bottom: 9rem !important;
  }
  .pb-md-10 {
    padding-bottom: 10rem !important;
  }
  .pb-md-13 {
    padding-bottom: 13rem !important;
  }
  .pb-md-15 {
    padding-bottom: 15rem !important;
  }
  .pb-md-20 {
    padding-bottom: 20rem !important;
  }
  .pb-md-25 {
    padding-bottom: 25rem !important;
  }
  .pb-md-30 {
    padding-bottom: 30rem !important;
  }
  .pb-md-35 {
    padding-bottom: 35rem !important;
  }
  .pb-md-40 {
    padding-bottom: 40rem !important;
  }
  .pb-md-45 {
    padding-bottom: 45rem !important;
  }
  .pb-md-50 {
    padding-bottom: 50rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-md-1 {
    padding-left: 1rem !important;
  }
  .ps-md-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-md-2 {
    padding-left: 2rem !important;
  }
  .ps-md-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-md-3 {
    padding-left: 3rem !important;
  }
  .ps-md-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-md-4 {
    padding-left: 4rem !important;
  }
  .ps-md-5 {
    padding-left: 5rem !important;
  }
  .ps-md-6 {
    padding-left: 6rem !important;
  }
  .ps-md-7 {
    padding-left: 7rem !important;
  }
  .ps-md-8 {
    padding-left: 8rem !important;
  }
  .ps-md-9 {
    padding-left: 9rem !important;
  }
  .ps-md-10 {
    padding-left: 10rem !important;
  }
  .ps-md-13 {
    padding-left: 13rem !important;
  }
  .ps-md-15 {
    padding-left: 15rem !important;
  }
  .ps-md-20 {
    padding-left: 20rem !important;
  }
  .ps-md-25 {
    padding-left: 25rem !important;
  }
  .ps-md-30 {
    padding-left: 30rem !important;
  }
  .ps-md-35 {
    padding-left: 35rem !important;
  }
  .ps-md-40 {
    padding-left: 40rem !important;
  }
  .ps-md-45 {
    padding-left: 45rem !important;
  }
  .ps-md-50 {
    padding-left: 50rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-0_5 {
    gap: 0.5rem !important;
  }
  .gap-md-1 {
    gap: 1rem !important;
  }
  .gap-md-1_5 {
    gap: 1.5rem !important;
  }
  .gap-md-2 {
    gap: 2rem !important;
  }
  .gap-md-2_5 {
    gap: 2.5rem !important;
  }
  .gap-md-3 {
    gap: 3rem !important;
  }
  .gap-md-3_5 {
    gap: 3.5rem !important;
  }
  .gap-md-4 {
    gap: 4rem !important;
  }
  .gap-md-5 {
    gap: 5rem !important;
  }
  .gap-md-6 {
    gap: 6rem !important;
  }
  .gap-md-7 {
    gap: 7rem !important;
  }
  .gap-md-8 {
    gap: 8rem !important;
  }
  .gap-md-9 {
    gap: 9rem !important;
  }
  .gap-md-10 {
    gap: 10rem !important;
  }
  .gap-md-13 {
    gap: 13rem !important;
  }
  .gap-md-15 {
    gap: 15rem !important;
  }
  .gap-md-20 {
    gap: 20rem !important;
  }
  .gap-md-25 {
    gap: 25rem !important;
  }
  .gap-md-30 {
    gap: 30rem !important;
  }
  .gap-md-35 {
    gap: 35rem !important;
  }
  .gap-md-40 {
    gap: 40rem !important;
  }
  .gap-md-45 {
    gap: 45rem !important;
  }
  .gap-md-50 {
    gap: 50rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-0_5 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-1 {
    row-gap: 1rem !important;
  }
  .row-gap-md-1_5 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-2 {
    row-gap: 2rem !important;
  }
  .row-gap-md-2_5 {
    row-gap: 2.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 3rem !important;
  }
  .row-gap-md-3_5 {
    row-gap: 3.5rem !important;
  }
  .row-gap-md-4 {
    row-gap: 4rem !important;
  }
  .row-gap-md-5 {
    row-gap: 5rem !important;
  }
  .row-gap-md-6 {
    row-gap: 6rem !important;
  }
  .row-gap-md-7 {
    row-gap: 7rem !important;
  }
  .row-gap-md-8 {
    row-gap: 8rem !important;
  }
  .row-gap-md-9 {
    row-gap: 9rem !important;
  }
  .row-gap-md-10 {
    row-gap: 10rem !important;
  }
  .row-gap-md-13 {
    row-gap: 13rem !important;
  }
  .row-gap-md-15 {
    row-gap: 15rem !important;
  }
  .row-gap-md-20 {
    row-gap: 20rem !important;
  }
  .row-gap-md-25 {
    row-gap: 25rem !important;
  }
  .row-gap-md-30 {
    row-gap: 30rem !important;
  }
  .row-gap-md-35 {
    row-gap: 35rem !important;
  }
  .row-gap-md-40 {
    row-gap: 40rem !important;
  }
  .row-gap-md-45 {
    row-gap: 45rem !important;
  }
  .row-gap-md-50 {
    row-gap: 50rem !important;
  }
  .column-gap-md-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-md-0_5 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-md-1 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-md-1_5 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-md-2 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .column-gap-md-2_5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .column-gap-md-3 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .column-gap-md-3_5 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  .column-gap-md-4 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  .column-gap-md-5 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  .column-gap-md-6 {
    -webkit-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }
  .column-gap-md-7 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }
  .column-gap-md-8 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }
  .column-gap-md-9 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }
  .column-gap-md-10 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }
  .column-gap-md-13 {
    -webkit-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }
  .column-gap-md-15 {
    -webkit-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }
  .column-gap-md-20 {
    -webkit-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }
  .column-gap-md-25 {
    -webkit-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }
  .column-gap-md-30 {
    -webkit-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }
  .column-gap-md-35 {
    -webkit-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }
  .column-gap-md-40 {
    -webkit-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }
  .column-gap-md-45 {
    -webkit-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }
  .column-gap-md-50 {
    -webkit-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .object-fit-lg-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-lg-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-lg-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-lg-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-0_5 {
    margin: 0.5rem !important;
  }
  .m-lg-1 {
    margin: 1rem !important;
  }
  .m-lg-1_5 {
    margin: 1.5rem !important;
  }
  .m-lg-2 {
    margin: 2rem !important;
  }
  .m-lg-2_5 {
    margin: 2.5rem !important;
  }
  .m-lg-3 {
    margin: 3rem !important;
  }
  .m-lg-3_5 {
    margin: 3.5rem !important;
  }
  .m-lg-4 {
    margin: 4rem !important;
  }
  .m-lg-5 {
    margin: 5rem !important;
  }
  .m-lg-6 {
    margin: 6rem !important;
  }
  .m-lg-7 {
    margin: 7rem !important;
  }
  .m-lg-8 {
    margin: 8rem !important;
  }
  .m-lg-9 {
    margin: 9rem !important;
  }
  .m-lg-10 {
    margin: 10rem !important;
  }
  .m-lg-13 {
    margin: 13rem !important;
  }
  .m-lg-15 {
    margin: 15rem !important;
  }
  .m-lg-20 {
    margin: 20rem !important;
  }
  .m-lg-25 {
    margin: 25rem !important;
  }
  .m-lg-30 {
    margin: 30rem !important;
  }
  .m-lg-35 {
    margin: 35rem !important;
  }
  .m-lg-40 {
    margin: 40rem !important;
  }
  .m-lg-45 {
    margin: 45rem !important;
  }
  .m-lg-50 {
    margin: 50rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-lg-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-lg-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-lg-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-lg-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-lg-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-lg-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-lg-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-lg-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-lg-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-lg-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-lg-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-lg-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-lg-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-lg-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-lg-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-lg-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-lg-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-lg-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-lg-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-lg-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-lg-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-lg-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-lg-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-lg-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-lg-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-lg-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-lg-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-lg-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-lg-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-lg-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-lg-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-lg-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-lg-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-1 {
    margin-top: 1rem !important;
  }
  .mt-lg-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-2 {
    margin-top: 2rem !important;
  }
  .mt-lg-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 3rem !important;
  }
  .mt-lg-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-lg-4 {
    margin-top: 4rem !important;
  }
  .mt-lg-5 {
    margin-top: 5rem !important;
  }
  .mt-lg-6 {
    margin-top: 6rem !important;
  }
  .mt-lg-7 {
    margin-top: 7rem !important;
  }
  .mt-lg-8 {
    margin-top: 8rem !important;
  }
  .mt-lg-9 {
    margin-top: 9rem !important;
  }
  .mt-lg-10 {
    margin-top: 10rem !important;
  }
  .mt-lg-13 {
    margin-top: 13rem !important;
  }
  .mt-lg-15 {
    margin-top: 15rem !important;
  }
  .mt-lg-20 {
    margin-top: 20rem !important;
  }
  .mt-lg-25 {
    margin-top: 25rem !important;
  }
  .mt-lg-30 {
    margin-top: 30rem !important;
  }
  .mt-lg-35 {
    margin-top: 35rem !important;
  }
  .mt-lg-40 {
    margin-top: 40rem !important;
  }
  .mt-lg-45 {
    margin-top: 45rem !important;
  }
  .mt-lg-50 {
    margin-top: 50rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-lg-1 {
    margin-right: 1rem !important;
  }
  .me-lg-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-lg-2 {
    margin-right: 2rem !important;
  }
  .me-lg-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-lg-3 {
    margin-right: 3rem !important;
  }
  .me-lg-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-lg-4 {
    margin-right: 4rem !important;
  }
  .me-lg-5 {
    margin-right: 5rem !important;
  }
  .me-lg-6 {
    margin-right: 6rem !important;
  }
  .me-lg-7 {
    margin-right: 7rem !important;
  }
  .me-lg-8 {
    margin-right: 8rem !important;
  }
  .me-lg-9 {
    margin-right: 9rem !important;
  }
  .me-lg-10 {
    margin-right: 10rem !important;
  }
  .me-lg-13 {
    margin-right: 13rem !important;
  }
  .me-lg-15 {
    margin-right: 15rem !important;
  }
  .me-lg-20 {
    margin-right: 20rem !important;
  }
  .me-lg-25 {
    margin-right: 25rem !important;
  }
  .me-lg-30 {
    margin-right: 30rem !important;
  }
  .me-lg-35 {
    margin-right: 35rem !important;
  }
  .me-lg-40 {
    margin-right: 40rem !important;
  }
  .me-lg-45 {
    margin-right: 45rem !important;
  }
  .me-lg-50 {
    margin-right: 50rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 5rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 7rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 8rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 9rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 10rem !important;
  }
  .mb-lg-13 {
    margin-bottom: 13rem !important;
  }
  .mb-lg-15 {
    margin-bottom: 15rem !important;
  }
  .mb-lg-20 {
    margin-bottom: 20rem !important;
  }
  .mb-lg-25 {
    margin-bottom: 25rem !important;
  }
  .mb-lg-30 {
    margin-bottom: 30rem !important;
  }
  .mb-lg-35 {
    margin-bottom: 35rem !important;
  }
  .mb-lg-40 {
    margin-bottom: 40rem !important;
  }
  .mb-lg-45 {
    margin-bottom: 45rem !important;
  }
  .mb-lg-50 {
    margin-bottom: 50rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-1 {
    margin-left: 1rem !important;
  }
  .ms-lg-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-2 {
    margin-left: 2rem !important;
  }
  .ms-lg-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 3rem !important;
  }
  .ms-lg-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-lg-4 {
    margin-left: 4rem !important;
  }
  .ms-lg-5 {
    margin-left: 5rem !important;
  }
  .ms-lg-6 {
    margin-left: 6rem !important;
  }
  .ms-lg-7 {
    margin-left: 7rem !important;
  }
  .ms-lg-8 {
    margin-left: 8rem !important;
  }
  .ms-lg-9 {
    margin-left: 9rem !important;
  }
  .ms-lg-10 {
    margin-left: 10rem !important;
  }
  .ms-lg-13 {
    margin-left: 13rem !important;
  }
  .ms-lg-15 {
    margin-left: 15rem !important;
  }
  .ms-lg-20 {
    margin-left: 20rem !important;
  }
  .ms-lg-25 {
    margin-left: 25rem !important;
  }
  .ms-lg-30 {
    margin-left: 30rem !important;
  }
  .ms-lg-35 {
    margin-left: 35rem !important;
  }
  .ms-lg-40 {
    margin-left: 40rem !important;
  }
  .ms-lg-45 {
    margin-left: 45rem !important;
  }
  .ms-lg-50 {
    margin-left: 50rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .m-lg-n0_5 {
    margin: -0.5rem !important;
  }
  .m-lg-n1 {
    margin: -1rem !important;
  }
  .m-lg-n1_5 {
    margin: -1.5rem !important;
  }
  .m-lg-n2 {
    margin: -2rem !important;
  }
  .m-lg-n2_5 {
    margin: -2.5rem !important;
  }
  .m-lg-n3 {
    margin: -3rem !important;
  }
  .m-lg-n3_5 {
    margin: -3.5rem !important;
  }
  .m-lg-n4 {
    margin: -4rem !important;
  }
  .m-lg-n5 {
    margin: -5rem !important;
  }
  .m-lg-n6 {
    margin: -6rem !important;
  }
  .m-lg-n7 {
    margin: -7rem !important;
  }
  .m-lg-n8 {
    margin: -8rem !important;
  }
  .m-lg-n9 {
    margin: -9rem !important;
  }
  .m-lg-n10 {
    margin: -10rem !important;
  }
  .m-lg-n13 {
    margin: -13rem !important;
  }
  .m-lg-n15 {
    margin: -15rem !important;
  }
  .m-lg-n20 {
    margin: -20rem !important;
  }
  .m-lg-n25 {
    margin: -25rem !important;
  }
  .m-lg-n30 {
    margin: -30rem !important;
  }
  .m-lg-n35 {
    margin: -35rem !important;
  }
  .m-lg-n40 {
    margin: -40rem !important;
  }
  .m-lg-n45 {
    margin: -45rem !important;
  }
  .m-lg-n50 {
    margin: -50rem !important;
  }
  .mx-lg-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-lg-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-lg-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-lg-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-lg-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-lg-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-lg-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-lg-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-lg-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-lg-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-lg-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-lg-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-lg-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-lg-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-lg-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-lg-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-lg-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-lg-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-lg-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-lg-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-lg-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-lg-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-lg-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-lg-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-lg-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-lg-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-lg-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-lg-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-lg-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-lg-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-lg-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-lg-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-lg-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-lg-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-lg-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-lg-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-lg-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-lg-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-lg-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-lg-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-lg-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-lg-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-lg-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-lg-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-lg-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-lg-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-lg-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-lg-n1 {
    margin-top: -1rem !important;
  }
  .mt-lg-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-lg-n2 {
    margin-top: -2rem !important;
  }
  .mt-lg-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-lg-n3 {
    margin-top: -3rem !important;
  }
  .mt-lg-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-lg-n4 {
    margin-top: -4rem !important;
  }
  .mt-lg-n5 {
    margin-top: -5rem !important;
  }
  .mt-lg-n6 {
    margin-top: -6rem !important;
  }
  .mt-lg-n7 {
    margin-top: -7rem !important;
  }
  .mt-lg-n8 {
    margin-top: -8rem !important;
  }
  .mt-lg-n9 {
    margin-top: -9rem !important;
  }
  .mt-lg-n10 {
    margin-top: -10rem !important;
  }
  .mt-lg-n13 {
    margin-top: -13rem !important;
  }
  .mt-lg-n15 {
    margin-top: -15rem !important;
  }
  .mt-lg-n20 {
    margin-top: -20rem !important;
  }
  .mt-lg-n25 {
    margin-top: -25rem !important;
  }
  .mt-lg-n30 {
    margin-top: -30rem !important;
  }
  .mt-lg-n35 {
    margin-top: -35rem !important;
  }
  .mt-lg-n40 {
    margin-top: -40rem !important;
  }
  .mt-lg-n45 {
    margin-top: -45rem !important;
  }
  .mt-lg-n50 {
    margin-top: -50rem !important;
  }
  .me-lg-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-lg-n1 {
    margin-right: -1rem !important;
  }
  .me-lg-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-lg-n2 {
    margin-right: -2rem !important;
  }
  .me-lg-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-lg-n3 {
    margin-right: -3rem !important;
  }
  .me-lg-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-lg-n4 {
    margin-right: -4rem !important;
  }
  .me-lg-n5 {
    margin-right: -5rem !important;
  }
  .me-lg-n6 {
    margin-right: -6rem !important;
  }
  .me-lg-n7 {
    margin-right: -7rem !important;
  }
  .me-lg-n8 {
    margin-right: -8rem !important;
  }
  .me-lg-n9 {
    margin-right: -9rem !important;
  }
  .me-lg-n10 {
    margin-right: -10rem !important;
  }
  .me-lg-n13 {
    margin-right: -13rem !important;
  }
  .me-lg-n15 {
    margin-right: -15rem !important;
  }
  .me-lg-n20 {
    margin-right: -20rem !important;
  }
  .me-lg-n25 {
    margin-right: -25rem !important;
  }
  .me-lg-n30 {
    margin-right: -30rem !important;
  }
  .me-lg-n35 {
    margin-right: -35rem !important;
  }
  .me-lg-n40 {
    margin-right: -40rem !important;
  }
  .me-lg-n45 {
    margin-right: -45rem !important;
  }
  .me-lg-n50 {
    margin-right: -50rem !important;
  }
  .mb-lg-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-lg-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-lg-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-lg-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-lg-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-lg-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-lg-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-lg-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-lg-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-lg-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-lg-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-lg-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-lg-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-lg-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-lg-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-lg-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-lg-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-lg-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-lg-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-lg-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-lg-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-lg-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-lg-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-lg-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-lg-n1 {
    margin-left: -1rem !important;
  }
  .ms-lg-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-lg-n2 {
    margin-left: -2rem !important;
  }
  .ms-lg-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-lg-n3 {
    margin-left: -3rem !important;
  }
  .ms-lg-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-lg-n4 {
    margin-left: -4rem !important;
  }
  .ms-lg-n5 {
    margin-left: -5rem !important;
  }
  .ms-lg-n6 {
    margin-left: -6rem !important;
  }
  .ms-lg-n7 {
    margin-left: -7rem !important;
  }
  .ms-lg-n8 {
    margin-left: -8rem !important;
  }
  .ms-lg-n9 {
    margin-left: -9rem !important;
  }
  .ms-lg-n10 {
    margin-left: -10rem !important;
  }
  .ms-lg-n13 {
    margin-left: -13rem !important;
  }
  .ms-lg-n15 {
    margin-left: -15rem !important;
  }
  .ms-lg-n20 {
    margin-left: -20rem !important;
  }
  .ms-lg-n25 {
    margin-left: -25rem !important;
  }
  .ms-lg-n30 {
    margin-left: -30rem !important;
  }
  .ms-lg-n35 {
    margin-left: -35rem !important;
  }
  .ms-lg-n40 {
    margin-left: -40rem !important;
  }
  .ms-lg-n45 {
    margin-left: -45rem !important;
  }
  .ms-lg-n50 {
    margin-left: -50rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-0_5 {
    padding: 0.5rem !important;
  }
  .p-lg-1 {
    padding: 1rem !important;
  }
  .p-lg-1_5 {
    padding: 1.5rem !important;
  }
  .p-lg-2 {
    padding: 2rem !important;
  }
  .p-lg-2_5 {
    padding: 2.5rem !important;
  }
  .p-lg-3 {
    padding: 3rem !important;
  }
  .p-lg-3_5 {
    padding: 3.5rem !important;
  }
  .p-lg-4 {
    padding: 4rem !important;
  }
  .p-lg-5 {
    padding: 5rem !important;
  }
  .p-lg-6 {
    padding: 6rem !important;
  }
  .p-lg-7 {
    padding: 7rem !important;
  }
  .p-lg-8 {
    padding: 8rem !important;
  }
  .p-lg-9 {
    padding: 9rem !important;
  }
  .p-lg-10 {
    padding: 10rem !important;
  }
  .p-lg-13 {
    padding: 13rem !important;
  }
  .p-lg-15 {
    padding: 15rem !important;
  }
  .p-lg-20 {
    padding: 20rem !important;
  }
  .p-lg-25 {
    padding: 25rem !important;
  }
  .p-lg-30 {
    padding: 30rem !important;
  }
  .p-lg-35 {
    padding: 35rem !important;
  }
  .p-lg-40 {
    padding: 40rem !important;
  }
  .p-lg-45 {
    padding: 45rem !important;
  }
  .p-lg-50 {
    padding: 50rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-lg-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-lg-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-lg-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-lg-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-lg-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-lg-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-lg-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-lg-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-lg-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-lg-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-lg-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-lg-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-lg-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-lg-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-lg-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-lg-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-lg-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-lg-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-lg-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-lg-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-lg-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-lg-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-lg-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-lg-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-lg-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-lg-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-lg-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-lg-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-lg-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-lg-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-lg-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-lg-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-lg-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-1 {
    padding-top: 1rem !important;
  }
  .pt-lg-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-2 {
    padding-top: 2rem !important;
  }
  .pt-lg-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 3rem !important;
  }
  .pt-lg-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-lg-4 {
    padding-top: 4rem !important;
  }
  .pt-lg-5 {
    padding-top: 5rem !important;
  }
  .pt-lg-6 {
    padding-top: 6rem !important;
  }
  .pt-lg-7 {
    padding-top: 7rem !important;
  }
  .pt-lg-8 {
    padding-top: 8rem !important;
  }
  .pt-lg-9 {
    padding-top: 9rem !important;
  }
  .pt-lg-10 {
    padding-top: 10rem !important;
  }
  .pt-lg-13 {
    padding-top: 13rem !important;
  }
  .pt-lg-15 {
    padding-top: 15rem !important;
  }
  .pt-lg-20 {
    padding-top: 20rem !important;
  }
  .pt-lg-25 {
    padding-top: 25rem !important;
  }
  .pt-lg-30 {
    padding-top: 30rem !important;
  }
  .pt-lg-35 {
    padding-top: 35rem !important;
  }
  .pt-lg-40 {
    padding-top: 40rem !important;
  }
  .pt-lg-45 {
    padding-top: 45rem !important;
  }
  .pt-lg-50 {
    padding-top: 50rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-1 {
    padding-right: 1rem !important;
  }
  .pe-lg-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-2 {
    padding-right: 2rem !important;
  }
  .pe-lg-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 3rem !important;
  }
  .pe-lg-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-lg-4 {
    padding-right: 4rem !important;
  }
  .pe-lg-5 {
    padding-right: 5rem !important;
  }
  .pe-lg-6 {
    padding-right: 6rem !important;
  }
  .pe-lg-7 {
    padding-right: 7rem !important;
  }
  .pe-lg-8 {
    padding-right: 8rem !important;
  }
  .pe-lg-9 {
    padding-right: 9rem !important;
  }
  .pe-lg-10 {
    padding-right: 10rem !important;
  }
  .pe-lg-13 {
    padding-right: 13rem !important;
  }
  .pe-lg-15 {
    padding-right: 15rem !important;
  }
  .pe-lg-20 {
    padding-right: 20rem !important;
  }
  .pe-lg-25 {
    padding-right: 25rem !important;
  }
  .pe-lg-30 {
    padding-right: 30rem !important;
  }
  .pe-lg-35 {
    padding-right: 35rem !important;
  }
  .pe-lg-40 {
    padding-right: 40rem !important;
  }
  .pe-lg-45 {
    padding-right: 45rem !important;
  }
  .pe-lg-50 {
    padding-right: 50rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 4rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 5rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 6rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 7rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 8rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 9rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 10rem !important;
  }
  .pb-lg-13 {
    padding-bottom: 13rem !important;
  }
  .pb-lg-15 {
    padding-bottom: 15rem !important;
  }
  .pb-lg-20 {
    padding-bottom: 20rem !important;
  }
  .pb-lg-25 {
    padding-bottom: 25rem !important;
  }
  .pb-lg-30 {
    padding-bottom: 30rem !important;
  }
  .pb-lg-35 {
    padding-bottom: 35rem !important;
  }
  .pb-lg-40 {
    padding-bottom: 40rem !important;
  }
  .pb-lg-45 {
    padding-bottom: 45rem !important;
  }
  .pb-lg-50 {
    padding-bottom: 50rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-1 {
    padding-left: 1rem !important;
  }
  .ps-lg-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-2 {
    padding-left: 2rem !important;
  }
  .ps-lg-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 3rem !important;
  }
  .ps-lg-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-lg-4 {
    padding-left: 4rem !important;
  }
  .ps-lg-5 {
    padding-left: 5rem !important;
  }
  .ps-lg-6 {
    padding-left: 6rem !important;
  }
  .ps-lg-7 {
    padding-left: 7rem !important;
  }
  .ps-lg-8 {
    padding-left: 8rem !important;
  }
  .ps-lg-9 {
    padding-left: 9rem !important;
  }
  .ps-lg-10 {
    padding-left: 10rem !important;
  }
  .ps-lg-13 {
    padding-left: 13rem !important;
  }
  .ps-lg-15 {
    padding-left: 15rem !important;
  }
  .ps-lg-20 {
    padding-left: 20rem !important;
  }
  .ps-lg-25 {
    padding-left: 25rem !important;
  }
  .ps-lg-30 {
    padding-left: 30rem !important;
  }
  .ps-lg-35 {
    padding-left: 35rem !important;
  }
  .ps-lg-40 {
    padding-left: 40rem !important;
  }
  .ps-lg-45 {
    padding-left: 45rem !important;
  }
  .ps-lg-50 {
    padding-left: 50rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-0_5 {
    gap: 0.5rem !important;
  }
  .gap-lg-1 {
    gap: 1rem !important;
  }
  .gap-lg-1_5 {
    gap: 1.5rem !important;
  }
  .gap-lg-2 {
    gap: 2rem !important;
  }
  .gap-lg-2_5 {
    gap: 2.5rem !important;
  }
  .gap-lg-3 {
    gap: 3rem !important;
  }
  .gap-lg-3_5 {
    gap: 3.5rem !important;
  }
  .gap-lg-4 {
    gap: 4rem !important;
  }
  .gap-lg-5 {
    gap: 5rem !important;
  }
  .gap-lg-6 {
    gap: 6rem !important;
  }
  .gap-lg-7 {
    gap: 7rem !important;
  }
  .gap-lg-8 {
    gap: 8rem !important;
  }
  .gap-lg-9 {
    gap: 9rem !important;
  }
  .gap-lg-10 {
    gap: 10rem !important;
  }
  .gap-lg-13 {
    gap: 13rem !important;
  }
  .gap-lg-15 {
    gap: 15rem !important;
  }
  .gap-lg-20 {
    gap: 20rem !important;
  }
  .gap-lg-25 {
    gap: 25rem !important;
  }
  .gap-lg-30 {
    gap: 30rem !important;
  }
  .gap-lg-35 {
    gap: 35rem !important;
  }
  .gap-lg-40 {
    gap: 40rem !important;
  }
  .gap-lg-45 {
    gap: 45rem !important;
  }
  .gap-lg-50 {
    gap: 50rem !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-0_5 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-1 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-1_5 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 2rem !important;
  }
  .row-gap-lg-2_5 {
    row-gap: 2.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 3rem !important;
  }
  .row-gap-lg-3_5 {
    row-gap: 3.5rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 4rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 5rem !important;
  }
  .row-gap-lg-6 {
    row-gap: 6rem !important;
  }
  .row-gap-lg-7 {
    row-gap: 7rem !important;
  }
  .row-gap-lg-8 {
    row-gap: 8rem !important;
  }
  .row-gap-lg-9 {
    row-gap: 9rem !important;
  }
  .row-gap-lg-10 {
    row-gap: 10rem !important;
  }
  .row-gap-lg-13 {
    row-gap: 13rem !important;
  }
  .row-gap-lg-15 {
    row-gap: 15rem !important;
  }
  .row-gap-lg-20 {
    row-gap: 20rem !important;
  }
  .row-gap-lg-25 {
    row-gap: 25rem !important;
  }
  .row-gap-lg-30 {
    row-gap: 30rem !important;
  }
  .row-gap-lg-35 {
    row-gap: 35rem !important;
  }
  .row-gap-lg-40 {
    row-gap: 40rem !important;
  }
  .row-gap-lg-45 {
    row-gap: 45rem !important;
  }
  .row-gap-lg-50 {
    row-gap: 50rem !important;
  }
  .column-gap-lg-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-lg-0_5 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-lg-1 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-lg-1_5 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-lg-2 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .column-gap-lg-2_5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .column-gap-lg-3 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .column-gap-lg-3_5 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  .column-gap-lg-4 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  .column-gap-lg-5 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  .column-gap-lg-6 {
    -webkit-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }
  .column-gap-lg-7 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }
  .column-gap-lg-8 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }
  .column-gap-lg-9 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }
  .column-gap-lg-10 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }
  .column-gap-lg-13 {
    -webkit-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }
  .column-gap-lg-15 {
    -webkit-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }
  .column-gap-lg-20 {
    -webkit-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }
  .column-gap-lg-25 {
    -webkit-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }
  .column-gap-lg-30 {
    -webkit-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }
  .column-gap-lg-35 {
    -webkit-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }
  .column-gap-lg-40 {
    -webkit-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }
  .column-gap-lg-45 {
    -webkit-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }
  .column-gap-lg-50 {
    -webkit-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .object-fit-xl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-xl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-xl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-xl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-0_5 {
    margin: 0.5rem !important;
  }
  .m-xl-1 {
    margin: 1rem !important;
  }
  .m-xl-1_5 {
    margin: 1.5rem !important;
  }
  .m-xl-2 {
    margin: 2rem !important;
  }
  .m-xl-2_5 {
    margin: 2.5rem !important;
  }
  .m-xl-3 {
    margin: 3rem !important;
  }
  .m-xl-3_5 {
    margin: 3.5rem !important;
  }
  .m-xl-4 {
    margin: 4rem !important;
  }
  .m-xl-5 {
    margin: 5rem !important;
  }
  .m-xl-6 {
    margin: 6rem !important;
  }
  .m-xl-7 {
    margin: 7rem !important;
  }
  .m-xl-8 {
    margin: 8rem !important;
  }
  .m-xl-9 {
    margin: 9rem !important;
  }
  .m-xl-10 {
    margin: 10rem !important;
  }
  .m-xl-13 {
    margin: 13rem !important;
  }
  .m-xl-15 {
    margin: 15rem !important;
  }
  .m-xl-20 {
    margin: 20rem !important;
  }
  .m-xl-25 {
    margin: 25rem !important;
  }
  .m-xl-30 {
    margin: 30rem !important;
  }
  .m-xl-35 {
    margin: 35rem !important;
  }
  .m-xl-40 {
    margin: 40rem !important;
  }
  .m-xl-45 {
    margin: 45rem !important;
  }
  .m-xl-50 {
    margin: 50rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xl-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xl-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xl-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xl-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xl-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xl-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xl-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-xl-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-xl-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-xl-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-xl-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-xl-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-xl-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-xl-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-xl-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xl-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xl-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xl-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xl-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xl-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xl-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xl-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xl-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-xl-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-xl-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-xl-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-xl-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-xl-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-xl-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-xl-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-xl-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-1 {
    margin-top: 1rem !important;
  }
  .mt-xl-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-2 {
    margin-top: 2rem !important;
  }
  .mt-xl-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 3rem !important;
  }
  .mt-xl-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-xl-4 {
    margin-top: 4rem !important;
  }
  .mt-xl-5 {
    margin-top: 5rem !important;
  }
  .mt-xl-6 {
    margin-top: 6rem !important;
  }
  .mt-xl-7 {
    margin-top: 7rem !important;
  }
  .mt-xl-8 {
    margin-top: 8rem !important;
  }
  .mt-xl-9 {
    margin-top: 9rem !important;
  }
  .mt-xl-10 {
    margin-top: 10rem !important;
  }
  .mt-xl-13 {
    margin-top: 13rem !important;
  }
  .mt-xl-15 {
    margin-top: 15rem !important;
  }
  .mt-xl-20 {
    margin-top: 20rem !important;
  }
  .mt-xl-25 {
    margin-top: 25rem !important;
  }
  .mt-xl-30 {
    margin-top: 30rem !important;
  }
  .mt-xl-35 {
    margin-top: 35rem !important;
  }
  .mt-xl-40 {
    margin-top: 40rem !important;
  }
  .mt-xl-45 {
    margin-top: 45rem !important;
  }
  .mt-xl-50 {
    margin-top: 50rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-xl-1 {
    margin-right: 1rem !important;
  }
  .me-xl-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-xl-2 {
    margin-right: 2rem !important;
  }
  .me-xl-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-xl-3 {
    margin-right: 3rem !important;
  }
  .me-xl-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-xl-4 {
    margin-right: 4rem !important;
  }
  .me-xl-5 {
    margin-right: 5rem !important;
  }
  .me-xl-6 {
    margin-right: 6rem !important;
  }
  .me-xl-7 {
    margin-right: 7rem !important;
  }
  .me-xl-8 {
    margin-right: 8rem !important;
  }
  .me-xl-9 {
    margin-right: 9rem !important;
  }
  .me-xl-10 {
    margin-right: 10rem !important;
  }
  .me-xl-13 {
    margin-right: 13rem !important;
  }
  .me-xl-15 {
    margin-right: 15rem !important;
  }
  .me-xl-20 {
    margin-right: 20rem !important;
  }
  .me-xl-25 {
    margin-right: 25rem !important;
  }
  .me-xl-30 {
    margin-right: 30rem !important;
  }
  .me-xl-35 {
    margin-right: 35rem !important;
  }
  .me-xl-40 {
    margin-right: 40rem !important;
  }
  .me-xl-45 {
    margin-right: 45rem !important;
  }
  .me-xl-50 {
    margin-right: 50rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xl-13 {
    margin-bottom: 13rem !important;
  }
  .mb-xl-15 {
    margin-bottom: 15rem !important;
  }
  .mb-xl-20 {
    margin-bottom: 20rem !important;
  }
  .mb-xl-25 {
    margin-bottom: 25rem !important;
  }
  .mb-xl-30 {
    margin-bottom: 30rem !important;
  }
  .mb-xl-35 {
    margin-bottom: 35rem !important;
  }
  .mb-xl-40 {
    margin-bottom: 40rem !important;
  }
  .mb-xl-45 {
    margin-bottom: 45rem !important;
  }
  .mb-xl-50 {
    margin-bottom: 50rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-1 {
    margin-left: 1rem !important;
  }
  .ms-xl-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-2 {
    margin-left: 2rem !important;
  }
  .ms-xl-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 3rem !important;
  }
  .ms-xl-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-xl-4 {
    margin-left: 4rem !important;
  }
  .ms-xl-5 {
    margin-left: 5rem !important;
  }
  .ms-xl-6 {
    margin-left: 6rem !important;
  }
  .ms-xl-7 {
    margin-left: 7rem !important;
  }
  .ms-xl-8 {
    margin-left: 8rem !important;
  }
  .ms-xl-9 {
    margin-left: 9rem !important;
  }
  .ms-xl-10 {
    margin-left: 10rem !important;
  }
  .ms-xl-13 {
    margin-left: 13rem !important;
  }
  .ms-xl-15 {
    margin-left: 15rem !important;
  }
  .ms-xl-20 {
    margin-left: 20rem !important;
  }
  .ms-xl-25 {
    margin-left: 25rem !important;
  }
  .ms-xl-30 {
    margin-left: 30rem !important;
  }
  .ms-xl-35 {
    margin-left: 35rem !important;
  }
  .ms-xl-40 {
    margin-left: 40rem !important;
  }
  .ms-xl-45 {
    margin-left: 45rem !important;
  }
  .ms-xl-50 {
    margin-left: 50rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .m-xl-n0_5 {
    margin: -0.5rem !important;
  }
  .m-xl-n1 {
    margin: -1rem !important;
  }
  .m-xl-n1_5 {
    margin: -1.5rem !important;
  }
  .m-xl-n2 {
    margin: -2rem !important;
  }
  .m-xl-n2_5 {
    margin: -2.5rem !important;
  }
  .m-xl-n3 {
    margin: -3rem !important;
  }
  .m-xl-n3_5 {
    margin: -3.5rem !important;
  }
  .m-xl-n4 {
    margin: -4rem !important;
  }
  .m-xl-n5 {
    margin: -5rem !important;
  }
  .m-xl-n6 {
    margin: -6rem !important;
  }
  .m-xl-n7 {
    margin: -7rem !important;
  }
  .m-xl-n8 {
    margin: -8rem !important;
  }
  .m-xl-n9 {
    margin: -9rem !important;
  }
  .m-xl-n10 {
    margin: -10rem !important;
  }
  .m-xl-n13 {
    margin: -13rem !important;
  }
  .m-xl-n15 {
    margin: -15rem !important;
  }
  .m-xl-n20 {
    margin: -20rem !important;
  }
  .m-xl-n25 {
    margin: -25rem !important;
  }
  .m-xl-n30 {
    margin: -30rem !important;
  }
  .m-xl-n35 {
    margin: -35rem !important;
  }
  .m-xl-n40 {
    margin: -40rem !important;
  }
  .m-xl-n45 {
    margin: -45rem !important;
  }
  .m-xl-n50 {
    margin: -50rem !important;
  }
  .mx-xl-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xl-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xl-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xl-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-xl-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-xl-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xl-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-xl-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-xl-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-xl-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-xl-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-xl-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-xl-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-xl-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-xl-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-xl-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-xl-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-xl-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-xl-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-xl-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-xl-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-xl-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-xl-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-xl-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xl-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xl-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xl-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-xl-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-xl-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xl-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-xl-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-xl-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-xl-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-xl-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-xl-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-xl-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-xl-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-xl-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-xl-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-xl-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-xl-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-xl-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-xl-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-xl-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-xl-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-xl-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-xl-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-xl-n1 {
    margin-top: -1rem !important;
  }
  .mt-xl-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-xl-n2 {
    margin-top: -2rem !important;
  }
  .mt-xl-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-xl-n3 {
    margin-top: -3rem !important;
  }
  .mt-xl-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-xl-n4 {
    margin-top: -4rem !important;
  }
  .mt-xl-n5 {
    margin-top: -5rem !important;
  }
  .mt-xl-n6 {
    margin-top: -6rem !important;
  }
  .mt-xl-n7 {
    margin-top: -7rem !important;
  }
  .mt-xl-n8 {
    margin-top: -8rem !important;
  }
  .mt-xl-n9 {
    margin-top: -9rem !important;
  }
  .mt-xl-n10 {
    margin-top: -10rem !important;
  }
  .mt-xl-n13 {
    margin-top: -13rem !important;
  }
  .mt-xl-n15 {
    margin-top: -15rem !important;
  }
  .mt-xl-n20 {
    margin-top: -20rem !important;
  }
  .mt-xl-n25 {
    margin-top: -25rem !important;
  }
  .mt-xl-n30 {
    margin-top: -30rem !important;
  }
  .mt-xl-n35 {
    margin-top: -35rem !important;
  }
  .mt-xl-n40 {
    margin-top: -40rem !important;
  }
  .mt-xl-n45 {
    margin-top: -45rem !important;
  }
  .mt-xl-n50 {
    margin-top: -50rem !important;
  }
  .me-xl-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-xl-n1 {
    margin-right: -1rem !important;
  }
  .me-xl-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-xl-n2 {
    margin-right: -2rem !important;
  }
  .me-xl-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-xl-n3 {
    margin-right: -3rem !important;
  }
  .me-xl-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-xl-n4 {
    margin-right: -4rem !important;
  }
  .me-xl-n5 {
    margin-right: -5rem !important;
  }
  .me-xl-n6 {
    margin-right: -6rem !important;
  }
  .me-xl-n7 {
    margin-right: -7rem !important;
  }
  .me-xl-n8 {
    margin-right: -8rem !important;
  }
  .me-xl-n9 {
    margin-right: -9rem !important;
  }
  .me-xl-n10 {
    margin-right: -10rem !important;
  }
  .me-xl-n13 {
    margin-right: -13rem !important;
  }
  .me-xl-n15 {
    margin-right: -15rem !important;
  }
  .me-xl-n20 {
    margin-right: -20rem !important;
  }
  .me-xl-n25 {
    margin-right: -25rem !important;
  }
  .me-xl-n30 {
    margin-right: -30rem !important;
  }
  .me-xl-n35 {
    margin-right: -35rem !important;
  }
  .me-xl-n40 {
    margin-right: -40rem !important;
  }
  .me-xl-n45 {
    margin-right: -45rem !important;
  }
  .me-xl-n50 {
    margin-right: -50rem !important;
  }
  .mb-xl-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xl-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-xl-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xl-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-xl-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-xl-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-xl-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-xl-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-xl-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-xl-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-xl-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-xl-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-xl-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-xl-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-xl-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-xl-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-xl-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-xl-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-xl-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-xl-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-xl-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-xl-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-xl-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-xl-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-xl-n1 {
    margin-left: -1rem !important;
  }
  .ms-xl-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-xl-n2 {
    margin-left: -2rem !important;
  }
  .ms-xl-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-xl-n3 {
    margin-left: -3rem !important;
  }
  .ms-xl-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-xl-n4 {
    margin-left: -4rem !important;
  }
  .ms-xl-n5 {
    margin-left: -5rem !important;
  }
  .ms-xl-n6 {
    margin-left: -6rem !important;
  }
  .ms-xl-n7 {
    margin-left: -7rem !important;
  }
  .ms-xl-n8 {
    margin-left: -8rem !important;
  }
  .ms-xl-n9 {
    margin-left: -9rem !important;
  }
  .ms-xl-n10 {
    margin-left: -10rem !important;
  }
  .ms-xl-n13 {
    margin-left: -13rem !important;
  }
  .ms-xl-n15 {
    margin-left: -15rem !important;
  }
  .ms-xl-n20 {
    margin-left: -20rem !important;
  }
  .ms-xl-n25 {
    margin-left: -25rem !important;
  }
  .ms-xl-n30 {
    margin-left: -30rem !important;
  }
  .ms-xl-n35 {
    margin-left: -35rem !important;
  }
  .ms-xl-n40 {
    margin-left: -40rem !important;
  }
  .ms-xl-n45 {
    margin-left: -45rem !important;
  }
  .ms-xl-n50 {
    margin-left: -50rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-0_5 {
    padding: 0.5rem !important;
  }
  .p-xl-1 {
    padding: 1rem !important;
  }
  .p-xl-1_5 {
    padding: 1.5rem !important;
  }
  .p-xl-2 {
    padding: 2rem !important;
  }
  .p-xl-2_5 {
    padding: 2.5rem !important;
  }
  .p-xl-3 {
    padding: 3rem !important;
  }
  .p-xl-3_5 {
    padding: 3.5rem !important;
  }
  .p-xl-4 {
    padding: 4rem !important;
  }
  .p-xl-5 {
    padding: 5rem !important;
  }
  .p-xl-6 {
    padding: 6rem !important;
  }
  .p-xl-7 {
    padding: 7rem !important;
  }
  .p-xl-8 {
    padding: 8rem !important;
  }
  .p-xl-9 {
    padding: 9rem !important;
  }
  .p-xl-10 {
    padding: 10rem !important;
  }
  .p-xl-13 {
    padding: 13rem !important;
  }
  .p-xl-15 {
    padding: 15rem !important;
  }
  .p-xl-20 {
    padding: 20rem !important;
  }
  .p-xl-25 {
    padding: 25rem !important;
  }
  .p-xl-30 {
    padding: 30rem !important;
  }
  .p-xl-35 {
    padding: 35rem !important;
  }
  .p-xl-40 {
    padding: 40rem !important;
  }
  .p-xl-45 {
    padding: 45rem !important;
  }
  .p-xl-50 {
    padding: 50rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xl-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xl-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xl-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xl-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xl-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xl-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xl-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-xl-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-xl-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-xl-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-xl-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-xl-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-xl-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-xl-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-xl-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-xl-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xl-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xl-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xl-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xl-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xl-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xl-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xl-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-xl-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-xl-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-xl-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-xl-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-xl-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-xl-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-xl-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-xl-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-1 {
    padding-top: 1rem !important;
  }
  .pt-xl-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-2 {
    padding-top: 2rem !important;
  }
  .pt-xl-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 3rem !important;
  }
  .pt-xl-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-xl-4 {
    padding-top: 4rem !important;
  }
  .pt-xl-5 {
    padding-top: 5rem !important;
  }
  .pt-xl-6 {
    padding-top: 6rem !important;
  }
  .pt-xl-7 {
    padding-top: 7rem !important;
  }
  .pt-xl-8 {
    padding-top: 8rem !important;
  }
  .pt-xl-9 {
    padding-top: 9rem !important;
  }
  .pt-xl-10 {
    padding-top: 10rem !important;
  }
  .pt-xl-13 {
    padding-top: 13rem !important;
  }
  .pt-xl-15 {
    padding-top: 15rem !important;
  }
  .pt-xl-20 {
    padding-top: 20rem !important;
  }
  .pt-xl-25 {
    padding-top: 25rem !important;
  }
  .pt-xl-30 {
    padding-top: 30rem !important;
  }
  .pt-xl-35 {
    padding-top: 35rem !important;
  }
  .pt-xl-40 {
    padding-top: 40rem !important;
  }
  .pt-xl-45 {
    padding-top: 45rem !important;
  }
  .pt-xl-50 {
    padding-top: 50rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-1 {
    padding-right: 1rem !important;
  }
  .pe-xl-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-2 {
    padding-right: 2rem !important;
  }
  .pe-xl-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 3rem !important;
  }
  .pe-xl-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-xl-4 {
    padding-right: 4rem !important;
  }
  .pe-xl-5 {
    padding-right: 5rem !important;
  }
  .pe-xl-6 {
    padding-right: 6rem !important;
  }
  .pe-xl-7 {
    padding-right: 7rem !important;
  }
  .pe-xl-8 {
    padding-right: 8rem !important;
  }
  .pe-xl-9 {
    padding-right: 9rem !important;
  }
  .pe-xl-10 {
    padding-right: 10rem !important;
  }
  .pe-xl-13 {
    padding-right: 13rem !important;
  }
  .pe-xl-15 {
    padding-right: 15rem !important;
  }
  .pe-xl-20 {
    padding-right: 20rem !important;
  }
  .pe-xl-25 {
    padding-right: 25rem !important;
  }
  .pe-xl-30 {
    padding-right: 30rem !important;
  }
  .pe-xl-35 {
    padding-right: 35rem !important;
  }
  .pe-xl-40 {
    padding-right: 40rem !important;
  }
  .pe-xl-45 {
    padding-right: 45rem !important;
  }
  .pe-xl-50 {
    padding-right: 50rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 10rem !important;
  }
  .pb-xl-13 {
    padding-bottom: 13rem !important;
  }
  .pb-xl-15 {
    padding-bottom: 15rem !important;
  }
  .pb-xl-20 {
    padding-bottom: 20rem !important;
  }
  .pb-xl-25 {
    padding-bottom: 25rem !important;
  }
  .pb-xl-30 {
    padding-bottom: 30rem !important;
  }
  .pb-xl-35 {
    padding-bottom: 35rem !important;
  }
  .pb-xl-40 {
    padding-bottom: 40rem !important;
  }
  .pb-xl-45 {
    padding-bottom: 45rem !important;
  }
  .pb-xl-50 {
    padding-bottom: 50rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-1 {
    padding-left: 1rem !important;
  }
  .ps-xl-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-2 {
    padding-left: 2rem !important;
  }
  .ps-xl-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 3rem !important;
  }
  .ps-xl-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-xl-4 {
    padding-left: 4rem !important;
  }
  .ps-xl-5 {
    padding-left: 5rem !important;
  }
  .ps-xl-6 {
    padding-left: 6rem !important;
  }
  .ps-xl-7 {
    padding-left: 7rem !important;
  }
  .ps-xl-8 {
    padding-left: 8rem !important;
  }
  .ps-xl-9 {
    padding-left: 9rem !important;
  }
  .ps-xl-10 {
    padding-left: 10rem !important;
  }
  .ps-xl-13 {
    padding-left: 13rem !important;
  }
  .ps-xl-15 {
    padding-left: 15rem !important;
  }
  .ps-xl-20 {
    padding-left: 20rem !important;
  }
  .ps-xl-25 {
    padding-left: 25rem !important;
  }
  .ps-xl-30 {
    padding-left: 30rem !important;
  }
  .ps-xl-35 {
    padding-left: 35rem !important;
  }
  .ps-xl-40 {
    padding-left: 40rem !important;
  }
  .ps-xl-45 {
    padding-left: 45rem !important;
  }
  .ps-xl-50 {
    padding-left: 50rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-0_5 {
    gap: 0.5rem !important;
  }
  .gap-xl-1 {
    gap: 1rem !important;
  }
  .gap-xl-1_5 {
    gap: 1.5rem !important;
  }
  .gap-xl-2 {
    gap: 2rem !important;
  }
  .gap-xl-2_5 {
    gap: 2.5rem !important;
  }
  .gap-xl-3 {
    gap: 3rem !important;
  }
  .gap-xl-3_5 {
    gap: 3.5rem !important;
  }
  .gap-xl-4 {
    gap: 4rem !important;
  }
  .gap-xl-5 {
    gap: 5rem !important;
  }
  .gap-xl-6 {
    gap: 6rem !important;
  }
  .gap-xl-7 {
    gap: 7rem !important;
  }
  .gap-xl-8 {
    gap: 8rem !important;
  }
  .gap-xl-9 {
    gap: 9rem !important;
  }
  .gap-xl-10 {
    gap: 10rem !important;
  }
  .gap-xl-13 {
    gap: 13rem !important;
  }
  .gap-xl-15 {
    gap: 15rem !important;
  }
  .gap-xl-20 {
    gap: 20rem !important;
  }
  .gap-xl-25 {
    gap: 25rem !important;
  }
  .gap-xl-30 {
    gap: 30rem !important;
  }
  .gap-xl-35 {
    gap: 35rem !important;
  }
  .gap-xl-40 {
    gap: 40rem !important;
  }
  .gap-xl-45 {
    gap: 45rem !important;
  }
  .gap-xl-50 {
    gap: 50rem !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-0_5 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-1 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-1_5 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 2rem !important;
  }
  .row-gap-xl-2_5 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 3rem !important;
  }
  .row-gap-xl-3_5 {
    row-gap: 3.5rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 4rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 5rem !important;
  }
  .row-gap-xl-6 {
    row-gap: 6rem !important;
  }
  .row-gap-xl-7 {
    row-gap: 7rem !important;
  }
  .row-gap-xl-8 {
    row-gap: 8rem !important;
  }
  .row-gap-xl-9 {
    row-gap: 9rem !important;
  }
  .row-gap-xl-10 {
    row-gap: 10rem !important;
  }
  .row-gap-xl-13 {
    row-gap: 13rem !important;
  }
  .row-gap-xl-15 {
    row-gap: 15rem !important;
  }
  .row-gap-xl-20 {
    row-gap: 20rem !important;
  }
  .row-gap-xl-25 {
    row-gap: 25rem !important;
  }
  .row-gap-xl-30 {
    row-gap: 30rem !important;
  }
  .row-gap-xl-35 {
    row-gap: 35rem !important;
  }
  .row-gap-xl-40 {
    row-gap: 40rem !important;
  }
  .row-gap-xl-45 {
    row-gap: 45rem !important;
  }
  .row-gap-xl-50 {
    row-gap: 50rem !important;
  }
  .column-gap-xl-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-xl-0_5 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-xl-1 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-xl-1_5 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-xl-2 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .column-gap-xl-2_5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .column-gap-xl-3 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .column-gap-xl-3_5 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  .column-gap-xl-4 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  .column-gap-xl-5 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  .column-gap-xl-6 {
    -webkit-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }
  .column-gap-xl-7 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }
  .column-gap-xl-8 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }
  .column-gap-xl-9 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }
  .column-gap-xl-10 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }
  .column-gap-xl-13 {
    -webkit-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }
  .column-gap-xl-15 {
    -webkit-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }
  .column-gap-xl-20 {
    -webkit-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }
  .column-gap-xl-25 {
    -webkit-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }
  .column-gap-xl-30 {
    -webkit-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }
  .column-gap-xl-35 {
    -webkit-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }
  .column-gap-xl-40 {
    -webkit-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }
  .column-gap-xl-45 {
    -webkit-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }
  .column-gap-xl-50 {
    -webkit-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1500px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-0_5 {
    margin: 0.5rem !important;
  }
  .m-xxl-1 {
    margin: 1rem !important;
  }
  .m-xxl-1_5 {
    margin: 1.5rem !important;
  }
  .m-xxl-2 {
    margin: 2rem !important;
  }
  .m-xxl-2_5 {
    margin: 2.5rem !important;
  }
  .m-xxl-3 {
    margin: 3rem !important;
  }
  .m-xxl-3_5 {
    margin: 3.5rem !important;
  }
  .m-xxl-4 {
    margin: 4rem !important;
  }
  .m-xxl-5 {
    margin: 5rem !important;
  }
  .m-xxl-6 {
    margin: 6rem !important;
  }
  .m-xxl-7 {
    margin: 7rem !important;
  }
  .m-xxl-8 {
    margin: 8rem !important;
  }
  .m-xxl-9 {
    margin: 9rem !important;
  }
  .m-xxl-10 {
    margin: 10rem !important;
  }
  .m-xxl-13 {
    margin: 13rem !important;
  }
  .m-xxl-15 {
    margin: 15rem !important;
  }
  .m-xxl-20 {
    margin: 20rem !important;
  }
  .m-xxl-25 {
    margin: 25rem !important;
  }
  .m-xxl-30 {
    margin: 30rem !important;
  }
  .m-xxl-35 {
    margin: 35rem !important;
  }
  .m-xxl-40 {
    margin: 40rem !important;
  }
  .m-xxl-45 {
    margin: 45rem !important;
  }
  .m-xxl-50 {
    margin: 50rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xxl-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xxl-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xxl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xxl-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xxl-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xxl-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xxl-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xxl-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-xxl-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-xxl-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-xxl-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-xxl-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-xxl-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-xxl-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-xxl-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-xxl-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xxl-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xxl-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xxl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xxl-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xxl-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xxl-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xxl-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xxl-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-xxl-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-xxl-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-xxl-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-xxl-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-xxl-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-xxl-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-xxl-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-xxl-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-1 {
    margin-top: 1rem !important;
  }
  .mt-xxl-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-2 {
    margin-top: 2rem !important;
  }
  .mt-xxl-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 3rem !important;
  }
  .mt-xxl-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-xxl-4 {
    margin-top: 4rem !important;
  }
  .mt-xxl-5 {
    margin-top: 5rem !important;
  }
  .mt-xxl-6 {
    margin-top: 6rem !important;
  }
  .mt-xxl-7 {
    margin-top: 7rem !important;
  }
  .mt-xxl-8 {
    margin-top: 8rem !important;
  }
  .mt-xxl-9 {
    margin-top: 9rem !important;
  }
  .mt-xxl-10 {
    margin-top: 10rem !important;
  }
  .mt-xxl-13 {
    margin-top: 13rem !important;
  }
  .mt-xxl-15 {
    margin-top: 15rem !important;
  }
  .mt-xxl-20 {
    margin-top: 20rem !important;
  }
  .mt-xxl-25 {
    margin-top: 25rem !important;
  }
  .mt-xxl-30 {
    margin-top: 30rem !important;
  }
  .mt-xxl-35 {
    margin-top: 35rem !important;
  }
  .mt-xxl-40 {
    margin-top: 40rem !important;
  }
  .mt-xxl-45 {
    margin-top: 45rem !important;
  }
  .mt-xxl-50 {
    margin-top: 50rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-1 {
    margin-right: 1rem !important;
  }
  .me-xxl-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-2 {
    margin-right: 2rem !important;
  }
  .me-xxl-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 3rem !important;
  }
  .me-xxl-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-xxl-4 {
    margin-right: 4rem !important;
  }
  .me-xxl-5 {
    margin-right: 5rem !important;
  }
  .me-xxl-6 {
    margin-right: 6rem !important;
  }
  .me-xxl-7 {
    margin-right: 7rem !important;
  }
  .me-xxl-8 {
    margin-right: 8rem !important;
  }
  .me-xxl-9 {
    margin-right: 9rem !important;
  }
  .me-xxl-10 {
    margin-right: 10rem !important;
  }
  .me-xxl-13 {
    margin-right: 13rem !important;
  }
  .me-xxl-15 {
    margin-right: 15rem !important;
  }
  .me-xxl-20 {
    margin-right: 20rem !important;
  }
  .me-xxl-25 {
    margin-right: 25rem !important;
  }
  .me-xxl-30 {
    margin-right: 30rem !important;
  }
  .me-xxl-35 {
    margin-right: 35rem !important;
  }
  .me-xxl-40 {
    margin-right: 40rem !important;
  }
  .me-xxl-45 {
    margin-right: 45rem !important;
  }
  .me-xxl-50 {
    margin-right: 50rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xxl-13 {
    margin-bottom: 13rem !important;
  }
  .mb-xxl-15 {
    margin-bottom: 15rem !important;
  }
  .mb-xxl-20 {
    margin-bottom: 20rem !important;
  }
  .mb-xxl-25 {
    margin-bottom: 25rem !important;
  }
  .mb-xxl-30 {
    margin-bottom: 30rem !important;
  }
  .mb-xxl-35 {
    margin-bottom: 35rem !important;
  }
  .mb-xxl-40 {
    margin-bottom: 40rem !important;
  }
  .mb-xxl-45 {
    margin-bottom: 45rem !important;
  }
  .mb-xxl-50 {
    margin-bottom: 50rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-1 {
    margin-left: 1rem !important;
  }
  .ms-xxl-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-2 {
    margin-left: 2rem !important;
  }
  .ms-xxl-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 3rem !important;
  }
  .ms-xxl-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-xxl-4 {
    margin-left: 4rem !important;
  }
  .ms-xxl-5 {
    margin-left: 5rem !important;
  }
  .ms-xxl-6 {
    margin-left: 6rem !important;
  }
  .ms-xxl-7 {
    margin-left: 7rem !important;
  }
  .ms-xxl-8 {
    margin-left: 8rem !important;
  }
  .ms-xxl-9 {
    margin-left: 9rem !important;
  }
  .ms-xxl-10 {
    margin-left: 10rem !important;
  }
  .ms-xxl-13 {
    margin-left: 13rem !important;
  }
  .ms-xxl-15 {
    margin-left: 15rem !important;
  }
  .ms-xxl-20 {
    margin-left: 20rem !important;
  }
  .ms-xxl-25 {
    margin-left: 25rem !important;
  }
  .ms-xxl-30 {
    margin-left: 30rem !important;
  }
  .ms-xxl-35 {
    margin-left: 35rem !important;
  }
  .ms-xxl-40 {
    margin-left: 40rem !important;
  }
  .ms-xxl-45 {
    margin-left: 45rem !important;
  }
  .ms-xxl-50 {
    margin-left: 50rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .m-xxl-n0_5 {
    margin: -0.5rem !important;
  }
  .m-xxl-n1 {
    margin: -1rem !important;
  }
  .m-xxl-n1_5 {
    margin: -1.5rem !important;
  }
  .m-xxl-n2 {
    margin: -2rem !important;
  }
  .m-xxl-n2_5 {
    margin: -2.5rem !important;
  }
  .m-xxl-n3 {
    margin: -3rem !important;
  }
  .m-xxl-n3_5 {
    margin: -3.5rem !important;
  }
  .m-xxl-n4 {
    margin: -4rem !important;
  }
  .m-xxl-n5 {
    margin: -5rem !important;
  }
  .m-xxl-n6 {
    margin: -6rem !important;
  }
  .m-xxl-n7 {
    margin: -7rem !important;
  }
  .m-xxl-n8 {
    margin: -8rem !important;
  }
  .m-xxl-n9 {
    margin: -9rem !important;
  }
  .m-xxl-n10 {
    margin: -10rem !important;
  }
  .m-xxl-n13 {
    margin: -13rem !important;
  }
  .m-xxl-n15 {
    margin: -15rem !important;
  }
  .m-xxl-n20 {
    margin: -20rem !important;
  }
  .m-xxl-n25 {
    margin: -25rem !important;
  }
  .m-xxl-n30 {
    margin: -30rem !important;
  }
  .m-xxl-n35 {
    margin: -35rem !important;
  }
  .m-xxl-n40 {
    margin: -40rem !important;
  }
  .m-xxl-n45 {
    margin: -45rem !important;
  }
  .m-xxl-n50 {
    margin: -50rem !important;
  }
  .mx-xxl-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xxl-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xxl-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xxl-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-xxl-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-xxl-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xxl-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-xxl-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-xxl-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-xxl-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-xxl-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-xxl-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-xxl-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-xxl-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-xxl-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-xxl-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-xxl-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-xxl-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-xxl-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-xxl-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-xxl-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-xxl-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-xxl-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-xxl-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xxl-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xxl-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xxl-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-xxl-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-xxl-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xxl-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-xxl-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-xxl-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-xxl-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-xxl-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-xxl-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-xxl-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-xxl-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-xxl-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-xxl-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-xxl-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-xxl-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-xxl-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-xxl-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-xxl-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-xxl-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-xxl-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-xxl-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-xxl-n1 {
    margin-top: -1rem !important;
  }
  .mt-xxl-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-xxl-n2 {
    margin-top: -2rem !important;
  }
  .mt-xxl-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-xxl-n3 {
    margin-top: -3rem !important;
  }
  .mt-xxl-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-xxl-n4 {
    margin-top: -4rem !important;
  }
  .mt-xxl-n5 {
    margin-top: -5rem !important;
  }
  .mt-xxl-n6 {
    margin-top: -6rem !important;
  }
  .mt-xxl-n7 {
    margin-top: -7rem !important;
  }
  .mt-xxl-n8 {
    margin-top: -8rem !important;
  }
  .mt-xxl-n9 {
    margin-top: -9rem !important;
  }
  .mt-xxl-n10 {
    margin-top: -10rem !important;
  }
  .mt-xxl-n13 {
    margin-top: -13rem !important;
  }
  .mt-xxl-n15 {
    margin-top: -15rem !important;
  }
  .mt-xxl-n20 {
    margin-top: -20rem !important;
  }
  .mt-xxl-n25 {
    margin-top: -25rem !important;
  }
  .mt-xxl-n30 {
    margin-top: -30rem !important;
  }
  .mt-xxl-n35 {
    margin-top: -35rem !important;
  }
  .mt-xxl-n40 {
    margin-top: -40rem !important;
  }
  .mt-xxl-n45 {
    margin-top: -45rem !important;
  }
  .mt-xxl-n50 {
    margin-top: -50rem !important;
  }
  .me-xxl-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-xxl-n1 {
    margin-right: -1rem !important;
  }
  .me-xxl-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-xxl-n2 {
    margin-right: -2rem !important;
  }
  .me-xxl-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-xxl-n3 {
    margin-right: -3rem !important;
  }
  .me-xxl-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-xxl-n4 {
    margin-right: -4rem !important;
  }
  .me-xxl-n5 {
    margin-right: -5rem !important;
  }
  .me-xxl-n6 {
    margin-right: -6rem !important;
  }
  .me-xxl-n7 {
    margin-right: -7rem !important;
  }
  .me-xxl-n8 {
    margin-right: -8rem !important;
  }
  .me-xxl-n9 {
    margin-right: -9rem !important;
  }
  .me-xxl-n10 {
    margin-right: -10rem !important;
  }
  .me-xxl-n13 {
    margin-right: -13rem !important;
  }
  .me-xxl-n15 {
    margin-right: -15rem !important;
  }
  .me-xxl-n20 {
    margin-right: -20rem !important;
  }
  .me-xxl-n25 {
    margin-right: -25rem !important;
  }
  .me-xxl-n30 {
    margin-right: -30rem !important;
  }
  .me-xxl-n35 {
    margin-right: -35rem !important;
  }
  .me-xxl-n40 {
    margin-right: -40rem !important;
  }
  .me-xxl-n45 {
    margin-right: -45rem !important;
  }
  .me-xxl-n50 {
    margin-right: -50rem !important;
  }
  .mb-xxl-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xxl-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-xxl-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xxl-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-xxl-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-xxl-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-xxl-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-xxl-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-xxl-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-xxl-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-xxl-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-xxl-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-xxl-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-xxl-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-xxl-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-xxl-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-xxl-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-xxl-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-xxl-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-xxl-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-xxl-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-xxl-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-xxl-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-xxl-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-xxl-n1 {
    margin-left: -1rem !important;
  }
  .ms-xxl-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-xxl-n2 {
    margin-left: -2rem !important;
  }
  .ms-xxl-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-xxl-n3 {
    margin-left: -3rem !important;
  }
  .ms-xxl-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-xxl-n4 {
    margin-left: -4rem !important;
  }
  .ms-xxl-n5 {
    margin-left: -5rem !important;
  }
  .ms-xxl-n6 {
    margin-left: -6rem !important;
  }
  .ms-xxl-n7 {
    margin-left: -7rem !important;
  }
  .ms-xxl-n8 {
    margin-left: -8rem !important;
  }
  .ms-xxl-n9 {
    margin-left: -9rem !important;
  }
  .ms-xxl-n10 {
    margin-left: -10rem !important;
  }
  .ms-xxl-n13 {
    margin-left: -13rem !important;
  }
  .ms-xxl-n15 {
    margin-left: -15rem !important;
  }
  .ms-xxl-n20 {
    margin-left: -20rem !important;
  }
  .ms-xxl-n25 {
    margin-left: -25rem !important;
  }
  .ms-xxl-n30 {
    margin-left: -30rem !important;
  }
  .ms-xxl-n35 {
    margin-left: -35rem !important;
  }
  .ms-xxl-n40 {
    margin-left: -40rem !important;
  }
  .ms-xxl-n45 {
    margin-left: -45rem !important;
  }
  .ms-xxl-n50 {
    margin-left: -50rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-0_5 {
    padding: 0.5rem !important;
  }
  .p-xxl-1 {
    padding: 1rem !important;
  }
  .p-xxl-1_5 {
    padding: 1.5rem !important;
  }
  .p-xxl-2 {
    padding: 2rem !important;
  }
  .p-xxl-2_5 {
    padding: 2.5rem !important;
  }
  .p-xxl-3 {
    padding: 3rem !important;
  }
  .p-xxl-3_5 {
    padding: 3.5rem !important;
  }
  .p-xxl-4 {
    padding: 4rem !important;
  }
  .p-xxl-5 {
    padding: 5rem !important;
  }
  .p-xxl-6 {
    padding: 6rem !important;
  }
  .p-xxl-7 {
    padding: 7rem !important;
  }
  .p-xxl-8 {
    padding: 8rem !important;
  }
  .p-xxl-9 {
    padding: 9rem !important;
  }
  .p-xxl-10 {
    padding: 10rem !important;
  }
  .p-xxl-13 {
    padding: 13rem !important;
  }
  .p-xxl-15 {
    padding: 15rem !important;
  }
  .p-xxl-20 {
    padding: 20rem !important;
  }
  .p-xxl-25 {
    padding: 25rem !important;
  }
  .p-xxl-30 {
    padding: 30rem !important;
  }
  .p-xxl-35 {
    padding: 35rem !important;
  }
  .p-xxl-40 {
    padding: 40rem !important;
  }
  .p-xxl-45 {
    padding: 45rem !important;
  }
  .p-xxl-50 {
    padding: 50rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xxl-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xxl-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xxl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xxl-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xxl-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xxl-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xxl-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-xxl-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-xxl-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-xxl-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-xxl-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-xxl-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-xxl-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-xxl-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-xxl-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-xxl-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xxl-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xxl-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xxl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xxl-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xxl-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xxl-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xxl-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xxl-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-xxl-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-xxl-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-xxl-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-xxl-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-xxl-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-xxl-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-xxl-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-xxl-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-1 {
    padding-top: 1rem !important;
  }
  .pt-xxl-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-2 {
    padding-top: 2rem !important;
  }
  .pt-xxl-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 3rem !important;
  }
  .pt-xxl-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-xxl-4 {
    padding-top: 4rem !important;
  }
  .pt-xxl-5 {
    padding-top: 5rem !important;
  }
  .pt-xxl-6 {
    padding-top: 6rem !important;
  }
  .pt-xxl-7 {
    padding-top: 7rem !important;
  }
  .pt-xxl-8 {
    padding-top: 8rem !important;
  }
  .pt-xxl-9 {
    padding-top: 9rem !important;
  }
  .pt-xxl-10 {
    padding-top: 10rem !important;
  }
  .pt-xxl-13 {
    padding-top: 13rem !important;
  }
  .pt-xxl-15 {
    padding-top: 15rem !important;
  }
  .pt-xxl-20 {
    padding-top: 20rem !important;
  }
  .pt-xxl-25 {
    padding-top: 25rem !important;
  }
  .pt-xxl-30 {
    padding-top: 30rem !important;
  }
  .pt-xxl-35 {
    padding-top: 35rem !important;
  }
  .pt-xxl-40 {
    padding-top: 40rem !important;
  }
  .pt-xxl-45 {
    padding-top: 45rem !important;
  }
  .pt-xxl-50 {
    padding-top: 50rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-1 {
    padding-right: 1rem !important;
  }
  .pe-xxl-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-2 {
    padding-right: 2rem !important;
  }
  .pe-xxl-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 3rem !important;
  }
  .pe-xxl-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-xxl-4 {
    padding-right: 4rem !important;
  }
  .pe-xxl-5 {
    padding-right: 5rem !important;
  }
  .pe-xxl-6 {
    padding-right: 6rem !important;
  }
  .pe-xxl-7 {
    padding-right: 7rem !important;
  }
  .pe-xxl-8 {
    padding-right: 8rem !important;
  }
  .pe-xxl-9 {
    padding-right: 9rem !important;
  }
  .pe-xxl-10 {
    padding-right: 10rem !important;
  }
  .pe-xxl-13 {
    padding-right: 13rem !important;
  }
  .pe-xxl-15 {
    padding-right: 15rem !important;
  }
  .pe-xxl-20 {
    padding-right: 20rem !important;
  }
  .pe-xxl-25 {
    padding-right: 25rem !important;
  }
  .pe-xxl-30 {
    padding-right: 30rem !important;
  }
  .pe-xxl-35 {
    padding-right: 35rem !important;
  }
  .pe-xxl-40 {
    padding-right: 40rem !important;
  }
  .pe-xxl-45 {
    padding-right: 45rem !important;
  }
  .pe-xxl-50 {
    padding-right: 50rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 10rem !important;
  }
  .pb-xxl-13 {
    padding-bottom: 13rem !important;
  }
  .pb-xxl-15 {
    padding-bottom: 15rem !important;
  }
  .pb-xxl-20 {
    padding-bottom: 20rem !important;
  }
  .pb-xxl-25 {
    padding-bottom: 25rem !important;
  }
  .pb-xxl-30 {
    padding-bottom: 30rem !important;
  }
  .pb-xxl-35 {
    padding-bottom: 35rem !important;
  }
  .pb-xxl-40 {
    padding-bottom: 40rem !important;
  }
  .pb-xxl-45 {
    padding-bottom: 45rem !important;
  }
  .pb-xxl-50 {
    padding-bottom: 50rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-1 {
    padding-left: 1rem !important;
  }
  .ps-xxl-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-2 {
    padding-left: 2rem !important;
  }
  .ps-xxl-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 3rem !important;
  }
  .ps-xxl-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-xxl-4 {
    padding-left: 4rem !important;
  }
  .ps-xxl-5 {
    padding-left: 5rem !important;
  }
  .ps-xxl-6 {
    padding-left: 6rem !important;
  }
  .ps-xxl-7 {
    padding-left: 7rem !important;
  }
  .ps-xxl-8 {
    padding-left: 8rem !important;
  }
  .ps-xxl-9 {
    padding-left: 9rem !important;
  }
  .ps-xxl-10 {
    padding-left: 10rem !important;
  }
  .ps-xxl-13 {
    padding-left: 13rem !important;
  }
  .ps-xxl-15 {
    padding-left: 15rem !important;
  }
  .ps-xxl-20 {
    padding-left: 20rem !important;
  }
  .ps-xxl-25 {
    padding-left: 25rem !important;
  }
  .ps-xxl-30 {
    padding-left: 30rem !important;
  }
  .ps-xxl-35 {
    padding-left: 35rem !important;
  }
  .ps-xxl-40 {
    padding-left: 40rem !important;
  }
  .ps-xxl-45 {
    padding-left: 45rem !important;
  }
  .ps-xxl-50 {
    padding-left: 50rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-0_5 {
    gap: 0.5rem !important;
  }
  .gap-xxl-1 {
    gap: 1rem !important;
  }
  .gap-xxl-1_5 {
    gap: 1.5rem !important;
  }
  .gap-xxl-2 {
    gap: 2rem !important;
  }
  .gap-xxl-2_5 {
    gap: 2.5rem !important;
  }
  .gap-xxl-3 {
    gap: 3rem !important;
  }
  .gap-xxl-3_5 {
    gap: 3.5rem !important;
  }
  .gap-xxl-4 {
    gap: 4rem !important;
  }
  .gap-xxl-5 {
    gap: 5rem !important;
  }
  .gap-xxl-6 {
    gap: 6rem !important;
  }
  .gap-xxl-7 {
    gap: 7rem !important;
  }
  .gap-xxl-8 {
    gap: 8rem !important;
  }
  .gap-xxl-9 {
    gap: 9rem !important;
  }
  .gap-xxl-10 {
    gap: 10rem !important;
  }
  .gap-xxl-13 {
    gap: 13rem !important;
  }
  .gap-xxl-15 {
    gap: 15rem !important;
  }
  .gap-xxl-20 {
    gap: 20rem !important;
  }
  .gap-xxl-25 {
    gap: 25rem !important;
  }
  .gap-xxl-30 {
    gap: 30rem !important;
  }
  .gap-xxl-35 {
    gap: 35rem !important;
  }
  .gap-xxl-40 {
    gap: 40rem !important;
  }
  .gap-xxl-45 {
    gap: 45rem !important;
  }
  .gap-xxl-50 {
    gap: 50rem !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-0_5 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-1 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-1_5 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 2rem !important;
  }
  .row-gap-xxl-2_5 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 3rem !important;
  }
  .row-gap-xxl-3_5 {
    row-gap: 3.5rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 4rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 5rem !important;
  }
  .row-gap-xxl-6 {
    row-gap: 6rem !important;
  }
  .row-gap-xxl-7 {
    row-gap: 7rem !important;
  }
  .row-gap-xxl-8 {
    row-gap: 8rem !important;
  }
  .row-gap-xxl-9 {
    row-gap: 9rem !important;
  }
  .row-gap-xxl-10 {
    row-gap: 10rem !important;
  }
  .row-gap-xxl-13 {
    row-gap: 13rem !important;
  }
  .row-gap-xxl-15 {
    row-gap: 15rem !important;
  }
  .row-gap-xxl-20 {
    row-gap: 20rem !important;
  }
  .row-gap-xxl-25 {
    row-gap: 25rem !important;
  }
  .row-gap-xxl-30 {
    row-gap: 30rem !important;
  }
  .row-gap-xxl-35 {
    row-gap: 35rem !important;
  }
  .row-gap-xxl-40 {
    row-gap: 40rem !important;
  }
  .row-gap-xxl-45 {
    row-gap: 45rem !important;
  }
  .row-gap-xxl-50 {
    row-gap: 50rem !important;
  }
  .column-gap-xxl-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-xxl-0_5 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-xxl-1 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-xxl-1_5 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-xxl-2 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .column-gap-xxl-2_5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .column-gap-xxl-3 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .column-gap-xxl-3_5 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  .column-gap-xxl-4 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  .column-gap-xxl-5 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  .column-gap-xxl-6 {
    -webkit-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }
  .column-gap-xxl-7 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }
  .column-gap-xxl-8 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }
  .column-gap-xxl-9 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }
  .column-gap-xxl-10 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }
  .column-gap-xxl-13 {
    -webkit-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }
  .column-gap-xxl-15 {
    -webkit-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }
  .column-gap-xxl-20 {
    -webkit-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }
  .column-gap-xxl-25 {
    -webkit-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }
  .column-gap-xxl-30 {
    -webkit-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }
  .column-gap-xxl-35 {
    -webkit-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }
  .column-gap-xxl-40 {
    -webkit-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }
  .column-gap-xxl-45 {
    -webkit-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }
  .column-gap-xxl-50 {
    -webkit-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
.splide__container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s infinite linear;
  animation: splide-loading 1s infinite linear;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__play {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  background: #ccc;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.7;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 2em;
  width: 2em;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: #0bf 3px solid;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: #0bf 3px solid;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  padding: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 8px;
  opacity: 0.7;
}

.splide__pagination__page.is-active {
  background: #fff;
  z-index: 1;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: #0bf 3px solid;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: #0bf 3px solid;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 1rem;
}

.splide__slide {
  -webkit-tap-highlight-color: transparent;
}

.splide__slide:focus {
  outline: 0;
}

.splide__slide:focus-visible {
  /* IE does not support outline-offset */
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: #0bf 3px solid;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: #0bf 3px solid;
  }
}
.splide.is-focus-in .splide__slide:focus {
  /* IE does not support outline-offset */
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: #0bf 3px solid;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: #0bf 3px solid;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: #0bf 3px solid;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: #0bf 3px solid;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotateZ(-90deg);
  transform: rotateZ(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/**
 * tom-select.css (v//@@version)
 * Copyright (c) contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 */
.ts-control {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ts-wrapper.multi.has-items .ts-control {
  padding: calc(8px - 2px - 1px) 8px calc(8px - 2px - 3px - 1px);
}
.full .ts-control {
  background-color: #fff;
}
.disabled .ts-control, .disabled .ts-control * {
  cursor: default !important;
}
.focus .ts-control {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}
.ts-control > * {
  vertical-align: baseline;
  display: inline-block;
}
.ts-wrapper.multi .ts-control > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #1da7ee;
  color: #fff;
  border: 1px solid #0073bb;
}
.ts-wrapper.multi .ts-control > div.active {
  background: #92c836;
  color: #fff;
  border: 1px solid #00578d;
}
.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
  color: white;
  background: #d2d2d2;
  border: 1px solid #aaaaaa;
}
.ts-control > input {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 7rem;
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.ts-control > input::-ms-clear {
  display: none;
}
.ts-control > input:focus {
  outline: none !important;
}
.has-items .ts-control > input {
  margin: 0 4px !important;
}
.ts-control.rtl {
  text-align: right;
}
.ts-control.rtl.single .ts-control:after {
  left: 15px;
  right: auto;
}
.ts-control.rtl .ts-control > input {
  margin: 0 4px 0 -2px !important;
}
.disabled .ts-control {
  opacity: 0.5;
  background-color: #fafafa;
}
.input-hidden .ts-control > input {
  opacity: 0;
  position: absolute;
  left: -10000px;
}

.ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: 0.25rem 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}
.ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.ts-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}
.ts-dropdown .option,
.ts-dropdown .optgroup-header,
.ts-dropdown .no-results,
.ts-dropdown .create {
  padding: 5px 8px;
}
.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}
.ts-dropdown [data-selectable].option {
  opacity: 1;
  cursor: pointer;
}
.ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.ts-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}
.ts-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}
.ts-dropdown .active.create {
  color: #495c68;
}
.ts-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}
.ts-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px 8px;
}
.ts-dropdown .spinner::after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #d0d0d0;
  border-color: #d0d0d0 transparent #d0d0d0 transparent;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
  animation: lds-dual-ring 1.2s linear infinite;
}
@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.ts-dropdown-content {
  overflow: hidden auto;
  max-height: 200px;
  scroll-behavior: smooth;
}

.ts-wrapper.plugin-drag_drop .ts-dragging {
  color: transparent !important;
}
.ts-wrapper.plugin-drag_drop .ts-dragging > * {
  visibility: hidden !important;
}

.plugin-checkbox_options:not(.rtl) .option input {
  margin-right: 0.5rem;
}

.plugin-checkbox_options.rtl .option input {
  margin-left: 0.5rem;
}

/* stylelint-disable function-name-case */
.plugin-clear_button {
  --ts-pr-clear-button: 1em;
}
.plugin-clear_button .clear-button {
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc(8px - 6px);
  margin-right: 0 !important;
  background: transparent !important;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor: pointer;
}
.plugin-clear_button.form-select .clear-button, .plugin-clear_button.single .clear-button {
  right: max(var(--ts-pr-caret), 8px);
}
.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1;
}

.ts-wrapper .dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: color-mix(#fff, #d0d0d0, 85%);
  border-radius: 3px 3px 0 0;
}
.ts-wrapper .dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.ts-wrapper .dropdown-header-close:hover {
  color: black;
}

.plugin-dropdown_input.focus.dropdown-active .ts-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #d0d0d0;
  -webkit-box-shadow: var(--bs-box-shadow-inset);
  box-shadow: var(--bs-box-shadow-inset);
}
.plugin-dropdown_input .dropdown-input {
  border: 1px solid #d0d0d0;
  border-width: 0 0 1px;
  display: block;
  padding: 8px 8px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  width: 100%;
  background: transparent;
}
.plugin-dropdown_input.focus .ts-dropdown .dropdown-input {
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.plugin-dropdown_input .items-placeholder {
  border: 0 none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  width: 100%;
}
.plugin-dropdown_input.has-items .items-placeholder, .plugin-dropdown_input.dropdown-active .items-placeholder {
  display: none !important;
}

.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
  min-width: 0;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  min-width: 4px;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-webkit-input-placeholder {
  color: transparent;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-moz-placeholder {
  color: transparent;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input:-ms-input-placeholder {
  color: transparent;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-ms-input-placeholder {
  color: transparent;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
  color: transparent;
}

.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  min-width: 0;
}
.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup::before {
  display: none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.ts-wrapper.plugin-remove_button .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ts-wrapper.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 0 6px;
  border-radius: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none;
}
.ts-wrapper.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item {
  padding-right: 0 !important;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
  border-left: 1px solid #0073bb;
  margin-left: 6px;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
  border-left-color: #00578d;
}
.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
  border-left-color: #aaaaaa;
}

.ts-wrapper.plugin-remove_button.rtl .item {
  padding-left: 0 !important;
}
.ts-wrapper.plugin-remove_button.rtl .item .remove {
  border-right: 1px solid #0073bb;
  margin-right: 6px;
}
.ts-wrapper.plugin-remove_button.rtl .item.active .remove {
  border-right-color: #00578d;
}
.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
  border-right-color: #aaaaaa;
}

:root {
  --ts-pr-clear-button: 0px;
  --ts-pr-caret: 0px;
  --ts-pr-min: .75rem;
}

.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {
  cursor: pointer;
}

.ts-control:not(.rtl) {
  padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-control.rtl {
  padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-wrapper {
  position: relative;
}

.ts-dropdown,
.ts-control,
.ts-control input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
  background: #fff;
  cursor: text;
}

.ts-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.ts-wrapper.single .ts-control {
  --ts-pr-caret: 2rem;
}
.ts-wrapper.single .ts-control::after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}
.ts-wrapper.single .ts-control:not(.rtl)::after {
  right: 15px;
}
.ts-wrapper.single .ts-control.rtl::after {
  left: 15px;
}
.ts-wrapper.single.dropdown-active .ts-control::after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}
.ts-wrapper.single.input-active .ts-control, .ts-wrapper.single.input-active .ts-control input {
  cursor: text;
}

.ts-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 36px;
}
.ts-wrapper.multi.has-items .ts-control {
  padding-left: 5px;
  --ts-pr-min: $padding-x;
}
.ts-wrapper.multi .ts-control [data-value] {
  text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
  border-radius: 3px;
  background-color: color-mix(#1da7ee, #178ee9, 60%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1da7ee), to(#178ee9));
  background-image: linear-gradient(to bottom, #1da7ee, #178ee9);
  background-repeat: repeat-x;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
}
.ts-wrapper.multi .ts-control [data-value].active {
  background-color: color-mix(#008fd8, #0075cf, 60%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#008fd8), to(#0075cf));
  background-image: linear-gradient(to bottom, #008fd8, #0075cf);
  background-repeat: repeat-x;
}
.ts-wrapper.multi.disabled .ts-control [data-value] {
  color: #999;
  text-shadow: none;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ts-wrapper.multi.disabled .ts-control [data-value], .ts-wrapper.multi.disabled .ts-control [data-value] .remove {
  border-color: #e6e6e6;
}
.ts-wrapper.multi.disabled .ts-control [data-value] .remove {
  background: none;
}
.ts-wrapper.single .ts-control {
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background-color: color-mix(#fefefe, #f2f2f2, 60%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#f2f2f2));
  background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
  background-repeat: repeat-x;
}

.ts-wrapper.single .ts-control, .ts-dropdown.single {
  border-color: #b8b8b8;
}

.dropdown-active .ts-control {
  border-radius: 3px 3px 0 0;
}

.ts-dropdown .optgroup-header {
  padding-top: 7px;
  font-weight: bold;
  font-size: 0.85em;
}
.ts-dropdown .optgroup {
  border-top: 1px solid #f0f0f0;
}
.ts-dropdown .optgroup:first-child {
  border-top: 0 none;
}

/*# sourceMappingURL=smx-theme.css.map */