/*
*   $prefix
*
*   The way that all generated class names begin, e.g. .gc__container
*/
/*
*   $default-font
*
*   The font string that will be added to the <html> and <body> selectors
*/
/*
*   $useColourVariations
*
*   { Boolean } - true or false
*
*   If set to true, lighten, darken and transparentise classes will be generated for each colour in your chosen pack.
*   Can increase stylesheet size significantly
*
*   Tune with:
*       $colour-increment
*       $colour-shades
*/
/*
*   $useElevations
*
*   { Boolean } - true or false
*
*   If set to true, classes will be generated that create shadow effects for elevation
*
*   Example:
*       - .gc__elevate-10
*/
/*
*   $useAnimations
*
*   { Boolean } - true or false
*
*   Include animation classes
*/
/*
*   $columns
*
*   { integer }
*
*   Number of columns to use when constructing responsive grids
*
*   Min: 3 - Max - 20
*/
/*
*   $breakpoint-x
*
*   { integer }
*
*   The pixel count at which each breakpoint becomes activated
*/
/*
*   $colour-increment
*
*   { integer }
*
*   The percent step used for each shade of colour when using darken, lighten and transparentise classes
*   A higher number causes a greater difference between shades, lower numbers less so
*
*   Tune with:
*       $useColourVariations must be set to: true
*/
/*
*   $colour-shades
*
*   { integer }
*
*   The number of lighten, darken and transparentise classes to create for each colour
*   A value of 5 will create up to .gc__text-primary-darken-5
*
*   Tune with:
*       $useColourVariations must be set to: true
*/
/*
*   $margin-initial-increment
*
*   { float }
*
*   The initial step for margin classes. Thereafter, each step will be double the margin of the previous step
*
*   Example:
*       value = 0.25
*           .gc__mt-0: margin-top: 0
*           .gc__mt-1: margin-top: 0.25rem
*           .gc__mt-2: margin-top: 0.5rem
*           .gc__mt-3: margin-top: 1rem
*           .gc__mt-4: margin-top: 2rem
*           .gc__mt-5: margin-top: 4rem
*           .gc__mt-6: margin-top: 8rem
*           .gc__mt-7: margin-top: 16rem
*           .gc__mt-8: margin-top: 32rem
*/
/*
*   $margin-iterations
*
*   { float }
*
*   The number of margin classes to generate
*/
/*
*   $padding-initial-increment
*   $padding-iterations
*
*   See margin section above for further details
*/
/*
*   $gutter-x
*   $gutter-y
*
*   { float }
*
*   The value in 'rem' for the grid row gutters
*/
/*
*   $radius-default
*
*   { integer }
*
*   The number of pixels to use for the .gc__rounded class
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: "Courier New", Courier, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input { /* 1 */
  overflow: visible;
}

button,
select { /* 1 */
  text-transform: none;
}

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

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

:root {
  --border-radius: 8pxpx;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded {
  border-radius: 8pxpx !important;
}

.rounded-t {
  border-top-left-radius: 8pxpx !important;
  border-top-right-radius: 8pxpx !important;
}

.rounded-r {
  border-top-right-radius: 8pxpx !important;
  border-bottom-right-radius: 8pxpx !important;
}

.rounded-b {
  border-bottom-right-radius: 8pxpx !important;
  border-bottom-left-radius: 8pxpx !important;
}

.rounded-l {
  border-bottom-left-radius: 8pxpx !important;
  border-top-left-radius: 8pxpx !important;
}

.rounded-tl {
  border-top-left-radius: 8pxpx !important;
}

.rounded-tr {
  border-top-right-radius: 8pxpx !important;
}

.rounded-br {
  border-bottom-right-radius: 8pxpx !important;
}

.rounded-bl {
  border-bottom-left-radius: 8pxpx !important;
}

.rounded-sm {
  border-radius: 4pxpx !important;
}

.rounded-t-sm {
  border-top-left-radius: 4pxpx !important;
  border-top-right-radius: 4pxpx !important;
}

.rounded-r-sm {
  border-top-right-radius: 4pxpx !important;
  border-bottom-right-radius: 4pxpx !important;
}

.rounded-b-sm {
  border-bottom-right-radius: 4pxpx !important;
  border-bottom-left-radius: 4pxpx !important;
}

.rounded-l-sm {
  border-bottom-left-radius: 4pxpx !important;
  border-top-left-radius: 4pxpx !important;
}

.rounded-tl-sm {
  border-top-left-radius: 4pxpx !important;
}

.rounded-tr-sm {
  border-top-right-radius: 4pxpx !important;
}

.rounded-br-sm {
  border-bottom-right-radius: 4pxpx !important;
}

.rounded-bl-sm {
  border-bottom-left-radius: 4pxpx !important;
}

.rounded-lg {
  border-radius: 16pxpx !important;
}

.rounded-t-lg {
  border-top-left-radius: 16pxpx !important;
  border-top-right-radius: 16pxpx !important;
}

.rounded-r-lg {
  border-top-right-radius: 16pxpx !important;
  border-bottom-right-radius: 16pxpx !important;
}

.rounded-b-lg {
  border-bottom-right-radius: 16pxpx !important;
  border-bottom-left-radius: 16pxpx !important;
}

.rounded-l-lg {
  border-bottom-left-radius: 16pxpx !important;
  border-top-left-radius: 16pxpx !important;
}

.rounded-tl-lg {
  border-top-left-radius: 16pxpx !important;
}

.rounded-tr-lg {
  border-top-right-radius: 16pxpx !important;
}

.rounded-br-lg {
  border-bottom-right-radius: 16pxpx !important;
}

.rounded-bl-lg {
  border-bottom-left-radius: 16pxpx !important;
}

.rounded-xl {
  border-radius: 48pxpx !important;
}

.rounded-t-xl {
  border-top-left-radius: 48pxpx !important;
  border-top-right-radius: 48pxpx !important;
}

.rounded-r-xl {
  border-top-right-radius: 48pxpx !important;
  border-bottom-right-radius: 48pxpx !important;
}

.rounded-b-xl {
  border-bottom-right-radius: 48pxpx !important;
  border-bottom-left-radius: 48pxpx !important;
}

.rounded-l-xl {
  border-bottom-left-radius: 48pxpx !important;
  border-top-left-radius: 48pxpx !important;
}

.rounded-tl-xl {
  border-top-left-radius: 48pxpx !important;
}

.rounded-tr-xl {
  border-top-right-radius: 48pxpx !important;
}

.rounded-br-xl {
  border-bottom-right-radius: 48pxpx !important;
}

.rounded-bl-xl {
  border-bottom-left-radius: 48pxpx !important;
}

.rounded-pill {
  border-radius: 9999px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.full-height {
  height: 100%;
}

html, body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0.45px rgba(0, 0, 0, 0.1);
}

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

a, a:hover, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

button {
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

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

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

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

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

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

.row {
  display: flex;
  flex: 1 0 100%;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: 0rem;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-top: 0rem;
}

.row.no-gutters {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.row.no-gutters > .col,
.row.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col {
  flex: 1 0 0%;
}

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

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

.offset-0 {
  margin-left: 0%;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0%;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-auto {
    flex: 1 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0%;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0%;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0%;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0%;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.25em;
}

h1 {
  font-size: 200%;
  font-weight: bold;
  line-height: 1.5;
}

h2 {
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 3.75rem;
  letter-spacing: -0.0083333333em;
}

h3 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.125rem;
  letter-spacing: normal;
}

h4 {
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 2.5rem;
  letter-spacing: 0.0073529412em;
}

h5 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: normal;
}

h6 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
  letter-spacing: 0.125em;
}

.text-h1 {
  font-size: 200%;
  font-weight: bold;
  line-height: 1.5;
}

.text-h2 {
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 3.75rem;
  letter-spacing: -0.0083333333em;
}

.text-h3 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.125rem;
  letter-spacing: normal;
}

.text-h4 {
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 2.5rem;
  letter-spacing: 0.0073529412em;
}

.text-h5 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: normal;
}

.text-h6 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
  letter-spacing: 0.125em;
}

.text-subtitle-1 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: 0.03125em;
}

.text-subtitle-2 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375rem;
  letter-spacing: 0.0071428571em;
}

.text-body-1 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: 0.3125rem;
}

.text-body-2 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: 0.0178571429em;
}

@media (min-width: 576px) {
  .text-sm-h1 {
    font-size: 200%;
    font-weight: bold;
    line-height: 1.5;
  }
  .text-sm-h2 {
    font-size: 3.75rem;
    font-weight: 300;
    line-height: 3.75rem;
    letter-spacing: -0.0083333333em;
  }
  .text-sm-h3 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 3.125rem;
    letter-spacing: normal;
  }
  .text-sm-h4 {
    font-size: 2.125rem;
    font-weight: 400;
    line-height: 2.5rem;
    letter-spacing: 0.0073529412em;
  }
  .text-sm-h5 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: normal;
  }
  .text-sm-h6 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0.125em;
  }
  .text-sm-subtitle-1 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.03125em;
  }
  .text-sm-subtitle-2 {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.375rem;
    letter-spacing: 0.0071428571em;
  }
  .text-sm-body-1 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.3125rem;
  }
  .text-sm-body-2 {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: 0.0178571429em;
  }
}
@media (min-width: 768px) {
  .text-md-h1 {
    font-size: 200%;
    font-weight: bold;
    line-height: 1.5;
  }
  .text-md-h2 {
    font-size: 3.75rem;
    font-weight: 300;
    line-height: 3.75rem;
    letter-spacing: -0.0083333333em;
  }
  .text-md-h3 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 3.125rem;
    letter-spacing: normal;
  }
  .text-md-h4 {
    font-size: 2.125rem;
    font-weight: 400;
    line-height: 2.5rem;
    letter-spacing: 0.0073529412em;
  }
  .text-md-h5 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: normal;
  }
  .text-md-h6 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0.125em;
  }
  .text-md-subtitle-1 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.03125em;
  }
  .text-md-subtitle-2 {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.375rem;
    letter-spacing: 0.0071428571em;
  }
  .text-md-body-1 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.3125rem;
  }
  .text-md-body-2 {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: 0.0178571429em;
  }
}
@media (min-width: 992px) {
  .text-lg-h1 {
    font-size: 200%;
    font-weight: bold;
    line-height: 1.5;
  }
  .text-lg-h2 {
    font-size: 3.75rem;
    font-weight: 300;
    line-height: 3.75rem;
    letter-spacing: -0.0083333333em;
  }
  .text-lg-h3 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 3.125rem;
    letter-spacing: normal;
  }
  .text-lg-h4 {
    font-size: 2.125rem;
    font-weight: 400;
    line-height: 2.5rem;
    letter-spacing: 0.0073529412em;
  }
  .text-lg-h5 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: normal;
  }
  .text-lg-h6 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0.125em;
  }
  .text-lg-subtitle-1 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.03125em;
  }
  .text-lg-subtitle-2 {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.375rem;
    letter-spacing: 0.0071428571em;
  }
  .text-lg-body-1 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.3125rem;
  }
  .text-lg-body-2 {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: 0.0178571429em;
  }
}
@media (min-width: 1200px) {
  .text-xl-h1 {
    font-size: 200%;
    font-weight: bold;
    line-height: 1.5;
  }
  .text-xl-h2 {
    font-size: 3.75rem;
    font-weight: 300;
    line-height: 3.75rem;
    letter-spacing: -0.0083333333em;
  }
  .text-xl-h3 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 3.125rem;
    letter-spacing: normal;
  }
  .text-xl-h4 {
    font-size: 2.125rem;
    font-weight: 400;
    line-height: 2.5rem;
    letter-spacing: 0.0073529412em;
  }
  .text-xl-h5 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: normal;
  }
  .text-xl-h6 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0.125em;
  }
  .text-xl-subtitle-1 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.03125em;
  }
  .text-xl-subtitle-2 {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.375rem;
    letter-spacing: 0.0071428571em;
  }
  .text-xl-body-1 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.3125rem;
  }
  .text-xl-body-2 {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: 0.0178571429em;
  }
}
@media (min-width: 1400px) {
  .text-xxl-h1 {
    font-size: 200%;
    font-weight: bold;
    line-height: 1.5;
  }
  .text-xxl-h2 {
    font-size: 3.75rem;
    font-weight: 300;
    line-height: 3.75rem;
    letter-spacing: -0.0083333333em;
  }
  .text-xxl-h3 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 3.125rem;
    letter-spacing: normal;
  }
  .text-xxl-h4 {
    font-size: 2.125rem;
    font-weight: 400;
    line-height: 2.5rem;
    letter-spacing: 0.0073529412em;
  }
  .text-xxl-h5 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: normal;
  }
  .text-xxl-h6 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0.125em;
  }
  .text-xxl-subtitle-1 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.03125em;
  }
  .text-xxl-subtitle-2 {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.375rem;
    letter-spacing: 0.0071428571em;
  }
  .text-xxl-body-1 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.3125rem;
  }
  .text-xxl-body-2 {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: 0.0178571429em;
  }
}
.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.fw-light,
.light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

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

.fw-bold,
.bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.text-lowercase,
.lower {
  text-transform: lowercase !important;
}

.text-uppercase,
.upper {
  text-transform: uppercase !important;
}

.text-capitalise,
.text-capitalize {
  text-transform: capitalize !important;
}

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

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center,
  .text-sm-centre {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center,
  .text-md-centre {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center,
  .text-lg-centre {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center,
  .text-xl-centre {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center,
  .text-xxl-centre {
    text-align: center !important;
  }
}
.text-reset {
  color: inherit !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;
}

.flex-centre,
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

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

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

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

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

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

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

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

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

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

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.w-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 {
  flex: 1 1 auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.justify-content-center,
.justify-content-centre {
  justify-content: center !important;
}

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

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

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

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

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

.align-items-center,
.align-items-centre {
  align-items: center !important;
}

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

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

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

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

.align-content-center,
.align-content-centre {
  align-content: center !important;
}

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

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

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

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

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

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

.align-self-center,
.align-self-centre {
  align-self: center !important;
}

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

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

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center,
  .justify-content-sm-centre {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center,
  .align-items-sm-centre {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center,
  .align-content-sm-centre {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center,
  .align-self-sm-centre {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center,
  .justify-content-md-centre {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center,
  .align-items-md-centre {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center,
  .align-content-md-centre {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center,
  .align-self-md-centre {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center,
  .justify-content-lg-centre {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center,
  .align-items-lg-centre {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center,
  .align-content-lg-centre {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center,
  .align-self-lg-centre {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center,
  .justify-content-xl-centre {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center,
  .align-items-xl-centre {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center,
  .align-content-xl-centre {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center,
  .align-self-xl-centre {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-left {
    float: left !important;
  }
  .float-xxl-right {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center,
  .justify-content-xxl-centre {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center,
  .align-items-xxl-centre {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center,
  .align-content-xxl-centre {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center,
  .align-self-xxl-centre {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
}
@media (min-width: 1650px) {
  .float-xxxl-left {
    float: left !important;
  }
  .float-xxxl-right {
    float: right !important;
  }
  .float-xxxl-none {
    float: none !important;
  }
  .d-xxxl-none {
    display: none !important;
  }
  .d-xxxl-inline {
    display: inline !important;
  }
  .d-xxxl-inline-block {
    display: inline-block !important;
  }
  .d-xxxl-block {
    display: block !important;
  }
  .d-xxxl-table {
    display: table !important;
  }
  .d-xxxl-table-row {
    display: table-row !important;
  }
  .d-xxxl-table-cell {
    display: table-cell !important;
  }
  .d-xxxl-flex {
    display: flex !important;
  }
  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }
  .flex-xxxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxxl-row {
    flex-direction: row !important;
  }
  .flex-xxxl-column {
    flex-direction: column !important;
  }
  .flex-xxxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxxl-center,
  .justify-content-xxxl-centre {
    justify-content: center !important;
  }
  .justify-content-xxxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxxl-center,
  .align-items-xxxl-centre {
    align-items: center !important;
  }
  .align-items-xxxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxxl-center,
  .align-content-xxxl-centre {
    align-content: center !important;
  }
  .align-content-xxxl-between {
    align-content: space-between !important;
  }
  .align-content-xxxl-around {
    align-content: space-around !important;
  }
  .align-content-xxxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxxl-auto {
    align-self: auto !important;
  }
  .align-self-xxxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxxl-center,
  .align-self-xxxl-centre {
    align-self: center !important;
  }
  .align-self-xxxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxxl-stretch {
    align-self: stretch !important;
  }
  .order-xxxl-first {
    order: -1 !important;
  }
  .order-xxxl-0 {
    order: 0 !important;
  }
  .order-xxxl-1 {
    order: 1 !important;
  }
  .order-xxxl-2 {
    order: 2 !important;
  }
  .order-xxxl-3 {
    order: 3 !important;
  }
  .order-xxxl-4 {
    order: 4 !important;
  }
  .order-xxxl-5 {
    order: 5 !important;
  }
  .order-xxxl-last {
    order: 6 !important;
  }
}
@media (max-width: 575px) {
  .hide-sm {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hide-md {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .hide-lg {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .hide-xl {
    display: none !important;
  }
}
@media (max-width: 1399px) {
  .hide-xxl {
    display: none !important;
  }
}
@media (max-width: 1649px) {
  .hide-xxxl {
    display: none !important;
  }
}
.m-auto,
.ma-auto {
  margin: auto !important;
}

.m-0,
.ma-0 {
  margin: 0rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .m-sm-auto,
  .ma-sm-auto {
    margin: auto !important;
  }
  .ml-sm-0 {
    margin-left: 0rem !important;
  }
  .ml-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ml-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ml-sm-3 {
    margin-left: 1rem !important;
  }
  .ml-sm-4 {
    margin-left: 2rem !important;
  }
  .ml-sm-5 {
    margin-left: 4rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-sm-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-5 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .mx-sm-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-sm-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .mx-sm-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .mx-sm-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .mx-sm-5 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0rem !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 2rem !important;
  }
  .mt-sm-5 {
    margin-top: 4rem !important;
  }
  .mr-sm-auto {
    margin-right: auto !important;
  }
  .mr-sm-0 {
    margin-right: 0rem !important;
  }
  .mr-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mr-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mr-sm-3 {
    margin-right: 1rem !important;
  }
  .mr-sm-4 {
    margin-right: 2rem !important;
  }
  .mr-sm-5 {
    margin-right: 4rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 4rem !important;
  }
  .ml-sm-auto {
    margin-left: auto !important;
  }
  .ml-sm-0 {
    margin-left: 0rem !important;
  }
  .ml-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ml-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ml-sm-3 {
    margin-left: 1rem !important;
  }
  .ml-sm-4 {
    margin-left: 2rem !important;
  }
  .ml-sm-5 {
    margin-left: 4rem !important;
  }
}
@media (min-width: 768px) {
  .m-md-auto,
  .ma-md-auto {
    margin: auto !important;
  }
  .ml-md-0 {
    margin-left: 0rem !important;
  }
  .ml-md-1 {
    margin-left: 0.25rem !important;
  }
  .ml-md-2 {
    margin-left: 0.5rem !important;
  }
  .ml-md-3 {
    margin-left: 1rem !important;
  }
  .ml-md-4 {
    margin-left: 2rem !important;
  }
  .ml-md-5 {
    margin-left: 4rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-md-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-5 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-md-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .mx-md-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .mx-md-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .mx-md-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .mx-md-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .mx-md-5 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mt-md-0 {
    margin-top: 0rem !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 2rem !important;
  }
  .mt-md-5 {
    margin-top: 4rem !important;
  }
  .mr-md-auto {
    margin-right: auto !important;
  }
  .mr-md-0 {
    margin-right: 0rem !important;
  }
  .mr-md-1 {
    margin-right: 0.25rem !important;
  }
  .mr-md-2 {
    margin-right: 0.5rem !important;
  }
  .mr-md-3 {
    margin-right: 1rem !important;
  }
  .mr-md-4 {
    margin-right: 2rem !important;
  }
  .mr-md-5 {
    margin-right: 4rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0rem !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 2rem !important;
  }
  .mb-md-5 {
    margin-bottom: 4rem !important;
  }
  .ml-md-auto {
    margin-left: auto !important;
  }
  .ml-md-0 {
    margin-left: 0rem !important;
  }
  .ml-md-1 {
    margin-left: 0.25rem !important;
  }
  .ml-md-2 {
    margin-left: 0.5rem !important;
  }
  .ml-md-3 {
    margin-left: 1rem !important;
  }
  .ml-md-4 {
    margin-left: 2rem !important;
  }
  .ml-md-5 {
    margin-left: 4rem !important;
  }
}
@media (min-width: 992px) {
  .m-lg-auto,
  .ma-lg-auto {
    margin: auto !important;
  }
  .ml-lg-0 {
    margin-left: 0rem !important;
  }
  .ml-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ml-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ml-lg-3 {
    margin-left: 1rem !important;
  }
  .ml-lg-4 {
    margin-left: 2rem !important;
  }
  .ml-lg-5 {
    margin-left: 4rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-lg-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-5 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .mx-lg-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-lg-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .mx-lg-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .mx-lg-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .mx-lg-5 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0rem !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 2rem !important;
  }
  .mt-lg-5 {
    margin-top: 4rem !important;
  }
  .mr-lg-auto {
    margin-right: auto !important;
  }
  .mr-lg-0 {
    margin-right: 0rem !important;
  }
  .mr-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mr-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mr-lg-3 {
    margin-right: 1rem !important;
  }
  .mr-lg-4 {
    margin-right: 2rem !important;
  }
  .mr-lg-5 {
    margin-right: 4rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 4rem !important;
  }
  .ml-lg-auto {
    margin-left: auto !important;
  }
  .ml-lg-0 {
    margin-left: 0rem !important;
  }
  .ml-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ml-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ml-lg-3 {
    margin-left: 1rem !important;
  }
  .ml-lg-4 {
    margin-left: 2rem !important;
  }
  .ml-lg-5 {
    margin-left: 4rem !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-auto,
  .ma-xl-auto {
    margin: auto !important;
  }
  .ml-xl-0 {
    margin-left: 0rem !important;
  }
  .ml-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ml-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ml-xl-3 {
    margin-left: 1rem !important;
  }
  .ml-xl-4 {
    margin-left: 2rem !important;
  }
  .ml-xl-5 {
    margin-left: 4rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-xl-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-5 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .mx-xl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-xl-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .mx-xl-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .mx-xl-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .mx-xl-5 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0rem !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 2rem !important;
  }
  .mt-xl-5 {
    margin-top: 4rem !important;
  }
  .mr-xl-auto {
    margin-right: auto !important;
  }
  .mr-xl-0 {
    margin-right: 0rem !important;
  }
  .mr-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mr-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mr-xl-3 {
    margin-right: 1rem !important;
  }
  .mr-xl-4 {
    margin-right: 2rem !important;
  }
  .mr-xl-5 {
    margin-right: 4rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 4rem !important;
  }
  .ml-xl-auto {
    margin-left: auto !important;
  }
  .ml-xl-0 {
    margin-left: 0rem !important;
  }
  .ml-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ml-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ml-xl-3 {
    margin-left: 1rem !important;
  }
  .ml-xl-4 {
    margin-left: 2rem !important;
  }
  .ml-xl-5 {
    margin-left: 4rem !important;
  }
}
@media (min-width: 1400px) {
  .m-xxl-auto,
  .ma-xxl-auto {
    margin: auto !important;
  }
  .ml-xxl-0 {
    margin-left: 0rem !important;
  }
  .ml-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ml-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ml-xxl-3 {
    margin-left: 1rem !important;
  }
  .ml-xxl-4 {
    margin-left: 2rem !important;
  }
  .ml-xxl-5 {
    margin-left: 4rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-5 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .mx-xxl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mx-xxl-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .mx-xxl-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .mx-xxl-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .mx-xxl-5 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0rem !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 2rem !important;
  }
  .mt-xxl-5 {
    margin-top: 4rem !important;
  }
  .mr-xxl-auto {
    margin-right: auto !important;
  }
  .mr-xxl-0 {
    margin-right: 0rem !important;
  }
  .mr-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mr-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mr-xxl-3 {
    margin-right: 1rem !important;
  }
  .mr-xxl-4 {
    margin-right: 2rem !important;
  }
  .mr-xxl-5 {
    margin-right: 4rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0rem !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 4rem !important;
  }
  .ml-xxl-auto {
    margin-left: auto !important;
  }
  .ml-xxl-0 {
    margin-left: 0rem !important;
  }
  .ml-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ml-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ml-xxl-3 {
    margin-left: 1rem !important;
  }
  .ml-xxl-4 {
    margin-left: 2rem !important;
  }
  .ml-xxl-5 {
    margin-left: 4rem !important;
  }
}
.p-0,
.pa-0 {
  padding: 0rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .p-sm-0,
  .pa-sm-0 {
    padding: 0rem !important;
  }
  .p-sm-1,
  .pa-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2,
  .pa-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3,
  .pa-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4,
  .pa-sm-4 {
    padding: 2rem !important;
  }
  .p-sm-5,
  .pa-sm-5 {
    padding: 4rem !important;
  }
  .py-sm-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .px-sm-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .px-sm-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .px-sm-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-sm-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-sm-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .px-sm-5 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .pt-sm-0 {
    padding-top: 0rem !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 2rem !important;
  }
  .pt-sm-5 {
    padding-top: 4rem !important;
  }
  .pr-sm-0 {
    padding-right: 0rem !important;
  }
  .pr-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pr-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pr-sm-3 {
    padding-right: 1rem !important;
  }
  .pr-sm-4 {
    padding-right: 2rem !important;
  }
  .pr-sm-5 {
    padding-right: 4rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 4rem !important;
  }
  .pl-sm-0 {
    padding-left: 0rem !important;
  }
  .pl-sm-1 {
    padding-left: 0.25rem !important;
  }
  .pl-sm-2 {
    padding-left: 0.5rem !important;
  }
  .pl-sm-3 {
    padding-left: 1rem !important;
  }
  .pl-sm-4 {
    padding-left: 2rem !important;
  }
  .pl-sm-5 {
    padding-left: 4rem !important;
  }
}
@media (min-width: 768px) {
  .p-md-0,
  .pa-md-0 {
    padding: 0rem !important;
  }
  .p-md-1,
  .pa-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2,
  .pa-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3,
  .pa-md-3 {
    padding: 1rem !important;
  }
  .p-md-4,
  .pa-md-4 {
    padding: 2rem !important;
  }
  .p-md-5,
  .pa-md-5 {
    padding: 4rem !important;
  }
  .py-md-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .px-md-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .px-md-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .px-md-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-md-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-md-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .px-md-5 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .pt-md-0 {
    padding-top: 0rem !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 2rem !important;
  }
  .pt-md-5 {
    padding-top: 4rem !important;
  }
  .pr-md-0 {
    padding-right: 0rem !important;
  }
  .pr-md-1 {
    padding-right: 0.25rem !important;
  }
  .pr-md-2 {
    padding-right: 0.5rem !important;
  }
  .pr-md-3 {
    padding-right: 1rem !important;
  }
  .pr-md-4 {
    padding-right: 2rem !important;
  }
  .pr-md-5 {
    padding-right: 4rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0rem !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 2rem !important;
  }
  .pb-md-5 {
    padding-bottom: 4rem !important;
  }
  .pl-md-0 {
    padding-left: 0rem !important;
  }
  .pl-md-1 {
    padding-left: 0.25rem !important;
  }
  .pl-md-2 {
    padding-left: 0.5rem !important;
  }
  .pl-md-3 {
    padding-left: 1rem !important;
  }
  .pl-md-4 {
    padding-left: 2rem !important;
  }
  .pl-md-5 {
    padding-left: 4rem !important;
  }
}
@media (min-width: 992px) {
  .p-lg-0,
  .pa-lg-0 {
    padding: 0rem !important;
  }
  .p-lg-1,
  .pa-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2,
  .pa-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3,
  .pa-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4,
  .pa-lg-4 {
    padding: 2rem !important;
  }
  .p-lg-5,
  .pa-lg-5 {
    padding: 4rem !important;
  }
  .py-lg-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .px-lg-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .px-lg-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .px-lg-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-lg-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-lg-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .px-lg-5 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .pt-lg-0 {
    padding-top: 0rem !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 2rem !important;
  }
  .pt-lg-5 {
    padding-top: 4rem !important;
  }
  .pr-lg-0 {
    padding-right: 0rem !important;
  }
  .pr-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pr-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pr-lg-3 {
    padding-right: 1rem !important;
  }
  .pr-lg-4 {
    padding-right: 2rem !important;
  }
  .pr-lg-5 {
    padding-right: 4rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 4rem !important;
  }
  .pl-lg-0 {
    padding-left: 0rem !important;
  }
  .pl-lg-1 {
    padding-left: 0.25rem !important;
  }
  .pl-lg-2 {
    padding-left: 0.5rem !important;
  }
  .pl-lg-3 {
    padding-left: 1rem !important;
  }
  .pl-lg-4 {
    padding-left: 2rem !important;
  }
  .pl-lg-5 {
    padding-left: 4rem !important;
  }
}
@media (min-width: 1200px) {
  .p-xl-0,
  .pa-xl-0 {
    padding: 0rem !important;
  }
  .p-xl-1,
  .pa-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2,
  .pa-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3,
  .pa-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4,
  .pa-xl-4 {
    padding: 2rem !important;
  }
  .p-xl-5,
  .pa-xl-5 {
    padding: 4rem !important;
  }
  .py-xl-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .px-xl-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .px-xl-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .px-xl-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-xl-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-xl-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .px-xl-5 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .pt-xl-0 {
    padding-top: 0rem !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 2rem !important;
  }
  .pt-xl-5 {
    padding-top: 4rem !important;
  }
  .pr-xl-0 {
    padding-right: 0rem !important;
  }
  .pr-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pr-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pr-xl-3 {
    padding-right: 1rem !important;
  }
  .pr-xl-4 {
    padding-right: 2rem !important;
  }
  .pr-xl-5 {
    padding-right: 4rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 4rem !important;
  }
  .pl-xl-0 {
    padding-left: 0rem !important;
  }
  .pl-xl-1 {
    padding-left: 0.25rem !important;
  }
  .pl-xl-2 {
    padding-left: 0.5rem !important;
  }
  .pl-xl-3 {
    padding-left: 1rem !important;
  }
  .pl-xl-4 {
    padding-left: 2rem !important;
  }
  .pl-xl-5 {
    padding-left: 4rem !important;
  }
}
@media (min-width: 1400px) {
  .p-xxl-0,
  .pa-xxl-0 {
    padding: 0rem !important;
  }
  .p-xxl-1,
  .pa-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2,
  .pa-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3,
  .pa-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4,
  .pa-xxl-4 {
    padding: 2rem !important;
  }
  .p-xxl-5,
  .pa-xxl-5 {
    padding: 4rem !important;
  }
  .py-xxl-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .px-xxl-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .px-xxl-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .px-xxl-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .px-xxl-5 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0rem !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 2rem !important;
  }
  .pt-xxl-5 {
    padding-top: 4rem !important;
  }
  .pr-xxl-0 {
    padding-right: 0rem !important;
  }
  .pr-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pr-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pr-xxl-3 {
    padding-right: 1rem !important;
  }
  .pr-xxl-4 {
    padding-right: 2rem !important;
  }
  .pr-xxl-5 {
    padding-right: 4rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0rem !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 4rem !important;
  }
  .pl-xxl-0 {
    padding-left: 0rem !important;
  }
  .pl-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .pl-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .pl-xxl-3 {
    padding-left: 1rem !important;
  }
  .pl-xxl-4 {
    padding-left: 2rem !important;
  }
  .pl-xxl-5 {
    padding-left: 4rem !important;
  }
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98 px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98 px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98 px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98 px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98 px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.c-light {
  color: #019fe3;
}

.c-dark {
  color: #662684;
}

.cur-p {
  cursor: pointer;
}

.cur-copy {
  cursor: copy;
}

.pos-r {
  position: relative;
}

.op-0 {
  opacity: 0;
}

.op-25 {
  opacity: 0.25;
}

.op-5 {
  opacity: 0.5;
}

.op-6 {
  opacity: 0.6;
}

.op-7 {
  opacity: 0.7;
}

.op-8 {
  opacity: 0.8;
}

.op-9 {
  opacity: 0.9;
}

.op-1 {
  opacity: 1;
}

.fz-0 {
  font-size: 0%;
}

.fz-10 {
  font-size: 10%;
}

.fz-20 {
  font-size: 20%;
}

.fz-30 {
  font-size: 30%;
}

.fz-40 {
  font-size: 40%;
}

.fz-50 {
  font-size: 50%;
}

.fz-60 {
  font-size: 60%;
}

.fz-70 {
  font-size: 70%;
}

.fz-80 {
  font-size: 80%;
}

.fz-90 {
  font-size: 90%;
}

.fz-100 {
  font-size: 100%;
}

.fz-110 {
  font-size: 110%;
}

.fz-120 {
  font-size: 120%;
}

.fz-130 {
  font-size: 130%;
}

.fz-140 {
  font-size: 140%;
}

.fz-150 {
  font-size: 150%;
}

.fz-160 {
  font-size: 160%;
}

.fz-170 {
  font-size: 170%;
}

.fz-180 {
  font-size: 180%;
}

.fz-190 {
  font-size: 190%;
}

.fz-200 {
  font-size: 200%;
}

.border-none {
  border: none !important;
}

.border-1 {
  border-width: 1px;
  border-style: solid;
}

.border-2 {
  border-width: 2px;
  border-style: solid;
}

.border-3 {
  border-width: 3px;
  border-style: solid;
}

.border-4 {
  border-width: 4px;
  border-style: solid;
}

.ellipsis {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.round-top-left-4 {
  border-top-left-radius: 4px;
}

.round-top-right-4 {
  border-top-right-radius: 4px;
}

.round-bottom-right-4 {
  border-bottom-right-radius: 4px;
}

.round-bottom-left-4 {
  border-bottom-left-radius: 4px;
}

div > .show-parent-hover {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

div:hover > .show-parent-hover {
  opacity: 1;
  visibility: visible;
}

.fa-pulsate {
  animation: faPulsate 2s infinite;
}

@keyframes faPulsate {
  0% {
    text-shadow: 0px 0px 0px red;
  }
  50% {
    text-shadow: 0px 0px 10px red;
  }
  100% {
    text-shadow: 0px 0px 0px red;
  }
}
.nowrap {
  white-space: nowrap;
}

td.nowrap {
  width: 50px;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --white: rgba(255, 255, 255, 0.87);
  --grey: #878787;
  --primary: #6db762;
  --secondary: #8B60AC;
  --info: #4a86bf;
  --success: #489148;
  --warning: #bf904a;
  --danger: #bf4a4a;
  --l0: #121212;
  --l1: #262626;
  --l2: #353535;
  --l3: #464646;
  --l4: #5a5a5a;
}

.c-white {
  color: rgba(255, 255, 255, 0.87) !important;
}

.c-hover-white:hover {
  color: rgba(255, 255, 255, 0.87) !important;
}

.c-grey {
  color: #878787 !important;
}

.c-hover-grey:hover {
  color: #878787 !important;
}

.c-primary {
  color: #6db762 !important;
}

.c-hover-primary:hover {
  color: #6db762 !important;
}

.c-secondary {
  color: #8B60AC !important;
}

.c-hover-secondary:hover {
  color: #8B60AC !important;
}

.c-info {
  color: #4a86bf !important;
}

.c-hover-info:hover {
  color: #4a86bf !important;
}

.c-success {
  color: #489148 !important;
}

.c-hover-success:hover {
  color: #489148 !important;
}

.c-warning {
  color: #bf904a !important;
}

.c-hover-warning:hover {
  color: #bf904a !important;
}

.c-danger {
  color: #bf4a4a !important;
}

.c-hover-danger:hover {
  color: #bf4a4a !important;
}

.c-l0 {
  color: #121212 !important;
}

.c-hover-l0:hover {
  color: #121212 !important;
}

.c-l1 {
  color: #262626 !important;
}

.c-hover-l1:hover {
  color: #262626 !important;
}

.c-l2 {
  color: #353535 !important;
}

.c-hover-l2:hover {
  color: #353535 !important;
}

.c-l3 {
  color: #464646 !important;
}

.c-hover-l3:hover {
  color: #464646 !important;
}

.c-l4 {
  color: #5a5a5a !important;
}

.c-hover-l4:hover {
  color: #5a5a5a !important;
}

.bgc-white {
  background-color: rgba(255, 255, 255, 0.87) !important;
}

.bgc-hover-white:hover {
  background-color: rgba(255, 255, 255, 0.87) !important;
}

.bgc-grey {
  background-color: #878787 !important;
}

.bgc-hover-grey:hover {
  background-color: #878787 !important;
}

.bgc-primary {
  background-color: #6db762 !important;
}

.bgc-hover-primary:hover {
  background-color: #6db762 !important;
}

.bgc-secondary {
  background-color: #8B60AC !important;
}

.bgc-hover-secondary:hover {
  background-color: #8B60AC !important;
}

.bgc-info {
  background-color: #4a86bf !important;
}

.bgc-hover-info:hover {
  background-color: #4a86bf !important;
}

.bgc-success {
  background-color: #489148 !important;
}

.bgc-hover-success:hover {
  background-color: #489148 !important;
}

.bgc-warning {
  background-color: #bf904a !important;
}

.bgc-hover-warning:hover {
  background-color: #bf904a !important;
}

.bgc-danger {
  background-color: #bf4a4a !important;
}

.bgc-hover-danger:hover {
  background-color: #bf4a4a !important;
}

.bgc-l0 {
  background-color: #121212 !important;
}

.bgc-hover-l0:hover {
  background-color: #121212 !important;
}

.bgc-l1 {
  background-color: #262626 !important;
}

.bgc-hover-l1:hover {
  background-color: #262626 !important;
}

.bgc-l2 {
  background-color: #353535 !important;
}

.bgc-hover-l2:hover {
  background-color: #353535 !important;
}

.bgc-l3 {
  background-color: #464646 !important;
}

.bgc-hover-l3:hover {
  background-color: #464646 !important;
}

.bgc-l4 {
  background-color: #5a5a5a !important;
}

.bgc-hover-l4:hover {
  background-color: #5a5a5a !important;
}

.border-white {
  border-color: rgba(255, 255, 255, 0.87) !important;
}

.border-grey {
  border-color: #878787 !important;
}

.border-primary {
  border-color: #6db762 !important;
}

.border-secondary {
  border-color: #8B60AC !important;
}

.border-info {
  border-color: #4a86bf !important;
}

.border-success {
  border-color: #489148 !important;
}

.border-warning {
  border-color: #bf904a !important;
}

.border-danger {
  border-color: #bf4a4a !important;
}

.border-l0 {
  border-color: #121212 !important;
}

.border-l1 {
  border-color: #262626 !important;
}

.border-l2 {
  border-color: #353535 !important;
}

.border-l3 {
  border-color: #464646 !important;
}

.border-l4 {
  border-color: #5a5a5a !important;
}

@keyframes rippleEffect {
  from {
    transform: scale(1);
    opacity: 0.4;
  }
  to {
    transform: scale(100);
    opacity: 0;
  }
}
.ripple-insert {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  animation: rippleEffect ease-in 0.4s 1;
  opacity: 0;
  z-index: 99;
}

.alert {
  padding: 16px;
  border-left: solid 8px;
  margin-bottom: 1rem;
}
.alert.alert-success {
  border-left-color: #008430;
  background: rgba(0, 132, 48, 0.2509803922);
}
.alert.alert-warning {
  border-left-color: #FFBD40;
  background: rgba(255, 189, 64, 0.2509803922);
}
.alert.alert-danger {
  border-left-color: #EA0029;
  background: rgba(234, 0, 41, 0.2509803922);
}
.alert.alert-info {
  border-left-color: #296CC1;
  background: rgba(41, 108, 193, 0.2509803922);
}
.alert.alert-grey {
  border-left-color: #444444;
  background: rgba(68, 68, 68, 0.2509803922);
}
.alert + .alert {
  margin-top: 8px;
}
.alert.alert-overview {
  cursor: pointer;
}
.alert.alert-overview .overview.hidden {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.alert[data-label] {
  position: relative;
  border-left-width: 16px;
}
.alert[data-label]::before {
  content: attr(data-label);
  position: absolute;
  left: -15px;
  transform: rotate(270deg) translate(-100%);
  transform-origin: top left;
  display: block;
  top: 5px;
  text-align: center;
  color: white;
  font-size: 13px;
}

.big-figure {
  text-align: center;
  padding: 32px;
}
.big-figure[href] {
  cursor: pointer;
  transition: all 0.4s ease;
}
.big-figure[href]:hover {
  background-color: #353535;
}
.big-figure .bf-label {
  margin-bottom: 8px;
  opacity: 0.8;
  white-space: nowrap;
}
.big-figure .bf-figure {
  font-size: 30px;
  font-weight: bold;
}

.block {
  padding: 32px;
  position: relative;
  background-color: #262626;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.87);
  transition: padding 0.4s ease;
}
.block:has(.block-title) {
  padding: 0 32px 32px;
}
.block .block-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  padding-top: 32px;
  position: relative;
  background-color: inherit;
  transition: padding 0.4s ease;
  z-index: 2;
}
.block .block-title strong {
  font-size: 25px;
  font-weight: 100;
}
.block .block-title .block-right {
  flex: 1;
}
.block.sticky-title .block-title {
  position: sticky;
  top: -32px;
}
.block.loading {
  overflow: hidden;
}
.block.loading::after {
  opacity: 1;
  visibility: visible;
}
.block.loading .block-title {
  opacity: 0.5;
  background-color: transparent;
  z-index: 2;
}
.block.loading .block-title > div {
  opacity: 0;
}
.block .block-content + .block-collapse-toggle {
  text-align: center;
  font-size: 90%;
  margin-top: 16px;
  -webkit-text-decoration: underline rgba(255, 255, 255, 0.5);
          text-decoration: underline rgba(255, 255, 255, 0.5);
  cursor: pointer;
  opacity: 0.8;
}
.block::after {
  animation: loadingBlock 2s ease-in-out infinite;
  background-color: #262626;
  background-image: linear-gradient(100deg, #262626 30%, #464646 50%, #262626 70%);
  background-size: 400%;
  bottom: 0;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

@keyframes loadingBlock {
  0% {
    background-position: 100% 50%;
  }
  60% {
    background-position: 0 50%;
  }
}
@media screen and (max-width: 576px) {
  .block {
    padding: 16px;
  }
  .block:has(.block-title) {
    padding: 0 16px 16px;
  }
  .block .block-title {
    padding-top: 16px;
    flex-direction: column;
    text-align: center;
  }
  .block .block-right {
    padding-top: 16px;
  }
  .block.sticky-title .block-title {
    top: -16px;
  }
}
#breadcrumbs {
  margin-bottom: 12px;
  max-width: 100%;
  overflow: auto;
  padding-bottom: 4px;
  white-space: nowrap;
  scrollbar-width: none; /* Firefox */
}
#breadcrumbs::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
#breadcrumbs ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
#breadcrumbs ul li {
  padding-right: 8px;
  opacity: 0.8;
}
#breadcrumbs ul li:not(:last-child)::after {
  content: "/";
  padding-left: 8px;
}
#breadcrumbs ul li:last-child {
  font-weight: bold;
  opacity: 1;
}

.btn {
  padding: 8px 30px;
  display: inline-block;
  font-size: 90%;
  line-height: 1.3;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  border-radius: 4px;
  text-transform: uppercase;
}
.btn.btn-block {
  display: block;
  width: 100%;
}
.btn.btn-sm {
  padding: 4px 8px;
  font-size: 13px;
  line-height: 1;
}
.btn.btn-disabled {
  cursor: not-allowed;
  opacity: 0.75;
}
.btn.btn-white {
  background-color: rgba(255, 255, 255, 0.87);
  border: 2px solid rgba(255, 255, 255, 0.87);
  color: #FFFFFF;
}
.btn.btn-white:hover {
  background-color: rgba(204, 204, 204, 0.87);
}
.btn.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.87);
  color: rgba(255, 255, 255, 0.87);
  background-color: transparent;
}
.btn.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.87);
  color: #222222;
}
.btn.btn-grey {
  background-color: #878787;
  border: 2px solid #878787;
  color: #FFFFFF;
}
.btn.btn-grey:hover {
  background-color: #545454;
}
.btn.btn-outline-grey {
  border: 2px solid #878787;
  color: #878787;
  background-color: transparent;
}
.btn.btn-outline-grey:hover {
  background-color: #878787;
  color: #222222;
}
.btn.btn-primary {
  background-color: #6db762;
  border: 2px solid #6db762;
  color: #FFFFFF;
}
.btn.btn-primary:hover {
  background-color: #417b38;
}
.btn.btn-outline-primary {
  border: 2px solid #6db762;
  color: #6db762;
  background-color: transparent;
}
.btn.btn-outline-primary:hover {
  background-color: #6db762;
  color: #222222;
}
.btn.btn-secondary {
  background-color: #8B60AC;
  border: 2px solid #8B60AC;
  color: #FFFFFF;
}
.btn.btn-secondary:hover {
  background-color: #56396d;
}
.btn.btn-outline-secondary {
  border: 2px solid #8B60AC;
  color: #8B60AC;
  background-color: transparent;
}
.btn.btn-outline-secondary:hover {
  background-color: #8B60AC;
  color: #222222;
}
.btn.btn-info {
  background-color: #4a86bf;
  border: 2px solid #4a86bf;
  color: #FFFFFF;
}
.btn.btn-info:hover {
  background-color: #2b5278;
}
.btn.btn-outline-info {
  border: 2px solid #4a86bf;
  color: #4a86bf;
  background-color: transparent;
}
.btn.btn-outline-info:hover {
  background-color: #4a86bf;
  color: #222222;
}
.btn.btn-success {
  background-color: #489148;
  border: 2px solid #489148;
  color: #FFFFFF;
}
.btn.btn-success:hover {
  background-color: #264d26;
}
.btn.btn-outline-success {
  border: 2px solid #489148;
  color: #489148;
  background-color: transparent;
}
.btn.btn-outline-success:hover {
  background-color: #489148;
  color: #FFFFFF;
}
.btn.btn-warning {
  background-color: #bf904a;
  border: 2px solid #bf904a;
  color: #FFFFFF;
}
.btn.btn-warning:hover {
  background-color: #78592b;
}
.btn.btn-outline-warning {
  border: 2px solid #bf904a;
  color: #bf904a;
  background-color: transparent;
}
.btn.btn-outline-warning:hover {
  background-color: #bf904a;
  color: #222222;
}
.btn.btn-danger {
  background-color: #bf4a4a;
  border: 2px solid #bf4a4a;
  color: #FFFFFF;
}
.btn.btn-danger:hover {
  background-color: #782b2b;
}
.btn.btn-outline-danger {
  border: 2px solid #bf4a4a;
  color: #bf4a4a;
  background-color: transparent;
}
.btn.btn-outline-danger:hover {
  background-color: #bf4a4a;
  color: #222222;
}
.btn.btn-l0 {
  background-color: #121212;
  border: 2px solid #121212;
  color: #FFFFFF;
}
.btn.btn-l0:hover {
  background-color: black;
}
.btn.btn-outline-l0 {
  border: 2px solid #121212;
  color: #121212;
  background-color: transparent;
}
.btn.btn-outline-l0:hover {
  background-color: #121212;
  color: #FFFFFF;
}
.btn.btn-l1 {
  background-color: #262626;
  border: 2px solid #262626;
  color: #FFFFFF;
}
.btn.btn-l1:hover {
  background-color: black;
}
.btn.btn-outline-l1 {
  border: 2px solid #262626;
  color: #262626;
  background-color: transparent;
}
.btn.btn-outline-l1:hover {
  background-color: #262626;
  color: #FFFFFF;
}
.btn.btn-l2 {
  background-color: #353535;
  border: 2px solid #353535;
  color: #FFFFFF;
}
.btn.btn-l2:hover {
  background-color: #020202;
}
.btn.btn-outline-l2 {
  border: 2px solid #353535;
  color: #353535;
  background-color: transparent;
}
.btn.btn-outline-l2:hover {
  background-color: #353535;
  color: #FFFFFF;
}
.btn.btn-l3 {
  background-color: #464646;
  border: 2px solid #464646;
  color: #FFFFFF;
}
.btn.btn-l3:hover {
  background-color: #131313;
}
.btn.btn-outline-l3 {
  border: 2px solid #464646;
  color: #464646;
  background-color: transparent;
}
.btn.btn-outline-l3:hover {
  background-color: #464646;
  color: #FFFFFF;
}
.btn.btn-l4 {
  background-color: #5a5a5a;
  border: 2px solid #5a5a5a;
  color: #FFFFFF;
}
.btn.btn-l4:hover {
  background-color: #272727;
}
.btn.btn-outline-l4 {
  border: 2px solid #5a5a5a;
  color: #5a5a5a;
  background-color: transparent;
}
.btn.btn-outline-l4:hover {
  background-color: #5a5a5a;
  color: #FFFFFF;
}

.btn-group {
  display: inline-flex;
  font-size: 12px;
  align-items: center;
  border-radius: 8px;
  flex-wrap: wrap;
}
.btn-group .btn {
  white-space: nowrap;
  opacity: 0.4;
  transition: all 0.4s ease;
  flex: 1;
}
.btn-group .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .btn:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group .btn.active, .btn-group .btn:hover {
  opacity: 1;
}

.calendar-container .cal-daynames {
  display: flex;
}
.calendar-container .cal-daynames .cal-dayname {
  flex-basis: 14.2857142857%;
  text-align: center;
  opacity: 0.8;
  font-size: 80%;
  line-height: 30px;
}
.calendar-container .cal-days {
  display: flex;
  flex-wrap: wrap;
}
.calendar-container .cal-days .cal-day {
  flex-basis: calc(14.2857142857% - 8px);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  margin: 4px;
  line-height: 30px;
  opacity: 0.7;
  transition: all 0.4s ease;
  cursor: pointer;
}
.calendar-container .cal-days .cal-day input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.calendar-container .cal-days .cal-day:hover {
  opacity: 1;
}
.calendar-container .cal-days .cal-day.active {
  background-color: #6db762;
  opacity: 1;
}
.calendar-container .cal-days .cal-offset-1 {
  margin-left: calc(14.2857142857% + 4px);
}
.calendar-container .cal-days .cal-offset-2 {
  margin-left: calc(28.5714285714% + 4px);
}
.calendar-container .cal-days .cal-offset-3 {
  margin-left: calc(42.8571428571% + 4px);
}
.calendar-container .cal-days .cal-offset-4 {
  margin-left: calc(57.1428571429% + 4px);
}
.calendar-container .cal-days .cal-offset-5 {
  margin-left: calc(71.4285714286% + 4px);
}
.calendar-container .cal-days .cal-offset-6 {
  margin-left: calc(85.7142857143% + 4px);
}
.calendar-container .cal-days .cal-offset-7 {
  margin-left: calc(100% + 4px);
}

.chart {
  padding: 16px;
  position: relative;
}
.chart .chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: solid 1px #b3b3b3;
}
.chart .chart-title strong {
  font-size: 25px;
  font-weight: 100;
}
.chart .chart-canvas {
  height: 240px;
}
.chart .no-data {
  position: relative;
}
.chart .no-data::before {
  background: rgba(255, 0, 0, 0.1);
  border-radius: 4px;
  border: solid 1px #ff4c4c;
  color: #ff4c4c;
  content: "No Data";
  font-weight: bold;
  left: 50%;
  padding: 8px 16px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.chart .no-data canvas {
  filter: blur(1.5px);
  opacity: 0.5;
}

@keyframes loadingEllipsis {
  0% {
    transform: translateX(0%);
  }
  70% {
    transform: translateX(100%);
  }
  71% {
    transform: translateX(0%);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 1023px) {
  .chart .chart-title {
    flex-direction: column;
  }
  .chart .chart-title > * {
    padding: 4px 0;
  }
}
@media screen and (max-width: 767px) {
  .chart {
    padding: 16px 0 0 0;
    border-top: dashed 1px #b3b3b3;
    margin-top: 16px;
  }
  .first-chart .chart {
    padding: 0;
    border-top: none;
    margin-top: 0;
  }
  .chart .chart-canvas {
    position: relative;
    height: 40vh;
  }
}
.dotted-bg {
  background-image: radial-gradient(var(--color-actual_alternative, orange) 35%, transparent 50%);
  background-color: transparent;
  background-position: 0 -7px;
  background-size: 15px 15px;
}

.actual-bg {
  background-color: var(--color-actual, green);
}

.thermometer {
  height: 500px;
  width: 150px;
  margin: 0 auto;
}

.therm-tube {
  height: calc(100% - 75px);
}

.therm-bottom {
  height: 146px;
  width: 146px;
}

.therm-content {
  height: calc(100% - 75px);
}

.therm-markings {
  height: calc(100% - 148px);
}

.therm-join {
  height: 100px;
}

.thermometer,
.therm-content {
  position: relative;
}

.thermometer, .thermometer * {
  box-sizing: initial;
}

.therm-tube {
  background-color: #fff;
  border-radius: 5px;
  border: solid 2px black;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  width: 60%;
  overflow: hidden;
}

.therm-bottom {
  background-color: var(--color-actual, green);
  border-radius: 50%;
  border: solid 2px black;
  bottom: 0;
  left: 0;
  position: absolute;
}

.therm-join {
  background-color: var(--color-actual, green);
  width: 60%;
  position: absolute;
  bottom: 50px;
  transform: translateX(-50%);
  left: 50%;
}

.therm-content span {
  animation: thermometerFill 5s ease;
  bottom: 0;
  max-height: 100%;
  position: absolute;
  width: 100%;
}

.therm-markings {
  position: absolute;
  top: 2px;
  width: 100%;
}

.therm-markings span {
  border-bottom: solid 2px rgba(0, 0, 0, 0.5);
  font-size: 10px;
  left: 20%;
  padding-left: calc(60% + 10px);
  padding-right: 10px;
  position: absolute;
  width: auto;
}

@keyframes thermometerFill {
  from {
    max-height: 0%;
  }
  to {
    max-height: 100%;
  }
}
.bonus-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  height: 100%;
  border: solid 2px #b3b3b3;
  margin: 0 4px;
  padding: 16px;
}
.bonus-content strong {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.bonus-content strong .bonus-key {
  border-radius: 50%;
  color: #FFFFFF;
  display: inline-block;
  font-size: 11px;
  line-height: 30px;
  margin-right: 8px;
  text-align: center;
  width: 30px;
}
.bonus-content strong .bonus-key.actual-key {
  background-color: var(--color-actual, green);
}
.bonus-content strong .bonus-key.potential-key {
  background-color: var(--color-actual_alternative, orange);
}
.bonus-content .bonus-value {
  text-align: center;
}
.bonus-content .bonus-value small {
  display: block;
  margin-top: 8px;
}
.bonus-content .bonus-value strong {
  font-size: 25px;
}
.bonus-content.bonus-all .bonus-value {
  flex: 1;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.bonus-content.bonus-all .bonus-value strong {
  margin: 0;
}

code {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.87);
}

.data-rows .data-row:first-child {
  border-top: none;
}

.data-rows.no-flex .data-row {
  display: block;
}

.data-row {
  align-items: center;
  border-top: dashed 1px #b3b3b3;
  display: flex;
  justify-content: space-between;
  padding: 16px 8px;
  position: relative;
}
.data-row[data-seperator-text]::before {
  background-color: #FFF;
  content: attr(data-seperator-text);
  font-size: 11px;
  left: 50%;
  padding: 0 4px;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
}

.dataTables_wrapper {
  display: flex;
  flex-direction: column;
  padding: 5px 0;
}
.dataTables_wrapper .dataTables_filter label {
  background: transparent;
  border-bottom: dashed 1px #b3b3b3;
  border-radius: 0;
  display: block;
  margin: 0 auto 15px;
  position: relative;
  width: 50%;
}
.dataTables_wrapper .dataTables_filter label::after {
  content: "\f002";
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  font-weight: 900;
  line-height: 44px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 50px;
}
.dataTables_wrapper .dataTables_filter label input {
  line-height: 2rem;
  font-size: 1rem;
  background-color: transparent;
  padding-right: 50px;
  margin: 0;
  width: 100%;
  border: none;
}
.dataTables_wrapper .dataTables_filter label input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #949494;
}
.dataTables_wrapper .dataTables_filter label input::-moz-placeholder { /* Firefox 19+ */
  color: #949494;
}
.dataTables_wrapper .dataTable thead th {
  padding: 0 24px 4px 8px !important;
  position: relative;
}
.dataTables_wrapper .dataTable thead th.sorting, .dataTables_wrapper .dataTable thead th.sorting_asc, .dataTables_wrapper .dataTable thead th.sorting_desc {
  cursor: pointer;
}
.dataTables_wrapper .dataTable thead th.sorting::after, .dataTables_wrapper .dataTable thead th.sorting_asc::after, .dataTables_wrapper .dataTable thead th.sorting_desc::after {
  position: absolute;
  padding-left: 16px;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.dataTables_wrapper .dataTable thead th.sorting::after {
  content: "\f0dc";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}
.dataTables_wrapper .dataTable thead th.sorting_asc::after {
  content: "\f0de";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}
.dataTables_wrapper .dataTable thead th.sorting_desc::after {
  content: "\f0dd";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}
.dataTables_wrapper .bottom {
  align-items: center;
  border-top: dashed 1px #b3b3b3;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
}
.dataTables_wrapper .bottom .info {
  display: flex;
  align-items: center;
}
.dataTables_wrapper .bottom .info .dataTables_length label {
  align-items: center;
  background: transparent;
  border-radius: 0;
  display: flex;
  margin: 0;
  max-width: 100%;
  padding: 0;
}
.dataTables_wrapper .bottom .info .dataTables_length label select {
  padding: 0 5px;
  margin: 0 5px;
  text-align: center;
  width: auto;
}
.dataTables_wrapper .bottom .info .dataTables_info {
  border-left: dashed 1px #b3b3b3;
  font-size: 0.8rem;
  height: 1rem;
  line-height: 1rem;
  margin-left: 8px;
  padding-left: 8px;
}
.dataTables_wrapper .bottom .dataTables_paginate {
  display: flex;
}
.dataTables_wrapper .bottom .dataTables_paginate span {
  display: flex;
}
.dataTables_wrapper .bottom .dataTables_paginate .paginate_button {
  border: 2px solid #00ADEE;
  background-color: #00ADEE;
  color: #FFF;
  margin: 0 2px;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}
.dataTables_wrapper .bottom .dataTables_paginate .paginate_button:hover {
  color: #00ADEE;
  background-color: transparent;
}
.dataTables_wrapper .bottom .dataTables_paginate .paginate_button.disabled {
  display: none;
}
.dataTables_wrapper .bottom .dataTables_paginate .paginate_button.current {
  background-color: transparent;
  border-color: #b3b3b3;
  color: #b3b3b3;
}
.dataTables_wrapper .bottom .dataTables_paginate .ellipsis {
  line-height: 40px;
  padding: 0 4px;
}

.dot {
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  height: 10px;
  width: 10px;
}

.big-dot {
  height: 15px;
  margin-bottom: 6.5px;
  width: 15px;
}

.icon-dot {
  background-color: black;
  color: white;
  width: 24px;
  height: 24px;
  display: inline-block;
  padding: 4px;
  border-radius: 50%;
}
.icon-dot i {
  transform: scale(60%);
  width: 16px;
}

#errors-container {
  bottom: 16px;
  pointer-events: none;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 4;
}
#errors-container ul {
  align-items: center;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
#errors-container ul li {
  background: #FFFFFF;
  border-radius: 4px;
  color: #FFFFFF;
  cursor: pointer;
  margin-bottom: 4px;
  padding: 8px 16px;
  pointer-events: all;
}
#errors-container ul li.error-success {
  background-color: #489148;
}
#errors-container ul li.error-warning {
  background-color: #bf904a;
}
#errors-container ul li.error-danger {
  background-color: #bf4a4a;
}

body input:-webkit-autofill {
  margin: 0;
}

input, textarea {
  caret-color: #6db762;
}

.input-group > div {
  flex: 1;
}
.input-group span {
  font-size: 90%;
  opacity: 0.75;
}

[data-form-type=select], [data-form-type=inline-select] {
  background-color: #464646;
  display: flex;
  flex-direction: column;
  color: #fff;
  margin: 8px 0;
  border-bottom: solid 2px #FFF;
  position: relative;
}
[data-form-type=select]:has(select:focus), [data-form-type=inline-select]:has(select:focus) {
  border-bottom-color: #6db762;
}
[data-form-type=select].no-label label, [data-form-type=inline-select].no-label label {
  display: none;
}
[data-form-type=select].no-label select, [data-form-type=inline-select].no-label select {
  height: 100%;
  padding: 15px 8px 14px;
}
[data-form-type=select] label, [data-form-type=inline-select] label {
  font-size: 12px;
  height: 25px;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  transition-property: font-size, padding, height;
  position: absolute;
  display: flex;
  align-items: center;
  line-height: 13px;
  width: 100%;
  padding-left: 8px;
}
[data-form-type=select] select, [data-form-type=inline-select] select {
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  padding: 25px 8px 4px;
  margin: 0;
  outline: none;
  opacity: 1;
  visibility: visible;
  border: none;
  line-height: 1.5;
  width: 100%;
  min-height: 25px;
}
[data-form-type=select] select option, [data-form-type=inline-select] select option {
  background-color: #262626;
  color: rgba(255, 255, 255, 0.87);
}
[data-form-type=select] select option:checked, [data-form-type=select] select option:hover, [data-form-type=inline-select] select option:checked, [data-form-type=inline-select] select option:hover {
  background-color: #6db762;
  box-shadow: 0 0 10px 100px #000 inset;
}

[data-form-type=inline-select] {
  display: inline-block;
  margin: 1px 4px;
  border: none;
  border-radius: 4px;
}
[data-form-type=inline-select] select {
  font-size: 12px;
  height: 25px;
  min-height: 22px;
  padding: 4px 8px 4px 2px;
}

[data-form-type=text],
[data-form-type=search],
[data-form-type=tel],
[data-form-type=date],
[data-form-type=inline-date],
[data-form-type=time],
[data-form-type=number],
[data-form-type=password],
[data-form-type=email] {
  background-color: #464646;
  display: flex;
  flex-direction: column;
  color: #fff;
  margin: 8px 0;
  border-bottom: solid 2px #FFF;
  position: relative;
}
[data-form-type=text]:has(input:focus),
[data-form-type=search]:has(input:focus),
[data-form-type=tel]:has(input:focus),
[data-form-type=date]:has(input:focus),
[data-form-type=inline-date]:has(input:focus),
[data-form-type=time]:has(input:focus),
[data-form-type=number]:has(input:focus),
[data-form-type=password]:has(input:focus),
[data-form-type=email]:has(input:focus) {
  border-bottom-color: #6db762;
}
[data-form-type=text]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) label,
[data-form-type=search]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) label,
[data-form-type=tel]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) label,
[data-form-type=date]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) label,
[data-form-type=inline-date]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) label,
[data-form-type=time]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) label,
[data-form-type=number]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) label,
[data-form-type=password]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) label,
[data-form-type=email]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) label {
  font-size: 100%;
  height: 100%;
  padding: 0 8px;
}
[data-form-type=text]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) input, [data-form-type=text]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) span,
[data-form-type=search]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) input,
[data-form-type=search]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) span,
[data-form-type=tel]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) input,
[data-form-type=tel]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) span,
[data-form-type=date]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) input,
[data-form-type=date]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) span,
[data-form-type=inline-date]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) input,
[data-form-type=inline-date]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) span,
[data-form-type=time]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) input,
[data-form-type=time]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) span,
[data-form-type=number]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) input,
[data-form-type=number]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) span,
[data-form-type=password]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) input,
[data-form-type=password]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) span,
[data-form-type=email]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) input,
[data-form-type=email]:has(input:placeholder-shown:not(:focus):not(:-webkit-autofill):not(.show-placeholder)) span {
  opacity: 0;
}
[data-form-type=text]:has(input:-webkit-autofill) label,
[data-form-type=search]:has(input:-webkit-autofill) label,
[data-form-type=tel]:has(input:-webkit-autofill) label,
[data-form-type=date]:has(input:-webkit-autofill) label,
[data-form-type=inline-date]:has(input:-webkit-autofill) label,
[data-form-type=time]:has(input:-webkit-autofill) label,
[data-form-type=number]:has(input:-webkit-autofill) label,
[data-form-type=password]:has(input:-webkit-autofill) label,
[data-form-type=email]:has(input:-webkit-autofill) label {
  background-color: #464646;
}
[data-form-type=text]:has(input[disabled]),
[data-form-type=search]:has(input[disabled]),
[data-form-type=tel]:has(input[disabled]),
[data-form-type=date]:has(input[disabled]),
[data-form-type=inline-date]:has(input[disabled]),
[data-form-type=time]:has(input[disabled]),
[data-form-type=number]:has(input[disabled]),
[data-form-type=password]:has(input[disabled]),
[data-form-type=email]:has(input[disabled]) {
  opacity: 0.5;
}
[data-form-type=text]:has(input[disabled]) label, [data-form-type=text]:has(input[disabled]) input,
[data-form-type=search]:has(input[disabled]) label,
[data-form-type=search]:has(input[disabled]) input,
[data-form-type=tel]:has(input[disabled]) label,
[data-form-type=tel]:has(input[disabled]) input,
[data-form-type=date]:has(input[disabled]) label,
[data-form-type=date]:has(input[disabled]) input,
[data-form-type=inline-date]:has(input[disabled]) label,
[data-form-type=inline-date]:has(input[disabled]) input,
[data-form-type=time]:has(input[disabled]) label,
[data-form-type=time]:has(input[disabled]) input,
[data-form-type=number]:has(input[disabled]) label,
[data-form-type=number]:has(input[disabled]) input,
[data-form-type=password]:has(input[disabled]) label,
[data-form-type=password]:has(input[disabled]) input,
[data-form-type=email]:has(input[disabled]) label,
[data-form-type=email]:has(input[disabled]) input {
  cursor: no-drop;
}
[data-form-type=text].inline-input,
[data-form-type=search].inline-input,
[data-form-type=tel].inline-input,
[data-form-type=date].inline-input,
[data-form-type=inline-date].inline-input,
[data-form-type=time].inline-input,
[data-form-type=number].inline-input,
[data-form-type=password].inline-input,
[data-form-type=email].inline-input {
  display: inline-flex;
  flex-direction: row;
}
[data-form-type=text].inline-input label,
[data-form-type=search].inline-input label,
[data-form-type=tel].inline-input label,
[data-form-type=date].inline-input label,
[data-form-type=inline-date].inline-input label,
[data-form-type=time].inline-input label,
[data-form-type=number].inline-input label,
[data-form-type=password].inline-input label,
[data-form-type=email].inline-input label {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  height: auto;
  display: flex;
}
[data-form-type=text].inline-input input,
[data-form-type=search].inline-input input,
[data-form-type=tel].inline-input input,
[data-form-type=date].inline-input input,
[data-form-type=inline-date].inline-input input,
[data-form-type=time].inline-input input,
[data-form-type=number].inline-input input,
[data-form-type=password].inline-input input,
[data-form-type=email].inline-input input {
  padding: 8px;
}
[data-form-type=text] label,
[data-form-type=search] label,
[data-form-type=tel] label,
[data-form-type=date] label,
[data-form-type=inline-date] label,
[data-form-type=time] label,
[data-form-type=number] label,
[data-form-type=password] label,
[data-form-type=email] label {
  font-size: 12px;
  height: 25px;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  transition-property: font-size, padding, height;
  position: absolute;
  display: flex;
  align-items: center;
  line-height: 13px;
  width: 100%;
  padding: 12px 8px;
}
[data-form-type=text] label + input, [data-form-type=text] label + * input,
[data-form-type=search] label + input,
[data-form-type=search] label + * input,
[data-form-type=tel] label + input,
[data-form-type=tel] label + * input,
[data-form-type=date] label + input,
[data-form-type=date] label + * input,
[data-form-type=inline-date] label + input,
[data-form-type=inline-date] label + * input,
[data-form-type=time] label + input,
[data-form-type=time] label + * input,
[data-form-type=number] label + input,
[data-form-type=number] label + * input,
[data-form-type=password] label + input,
[data-form-type=password] label + * input,
[data-form-type=email] label + input,
[data-form-type=email] label + * input {
  padding: 25px 8px 4px;
}
[data-form-type=text] input,
[data-form-type=search] input,
[data-form-type=tel] input,
[data-form-type=date] input,
[data-form-type=inline-date] input,
[data-form-type=time] input,
[data-form-type=number] input,
[data-form-type=password] input,
[data-form-type=email] input {
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  margin: 0;
  outline: none;
  opacity: 1;
  padding: 4px 8px;
  visibility: visible;
  border: none;
  line-height: 1.5;
  width: 100%;
  min-height: 25px;
}
[data-form-type=text] .input-group,
[data-form-type=search] .input-group,
[data-form-type=tel] .input-group,
[data-form-type=date] .input-group,
[data-form-type=inline-date] .input-group,
[data-form-type=time] .input-group,
[data-form-type=number] .input-group,
[data-form-type=password] .input-group,
[data-form-type=email] .input-group {
  display: flex;
  align-items: baseline;
}
[data-form-type=text] .input-group span,
[data-form-type=search] .input-group span,
[data-form-type=tel] .input-group span,
[data-form-type=date] .input-group span,
[data-form-type=inline-date] .input-group span,
[data-form-type=time] .input-group span,
[data-form-type=number] .input-group span,
[data-form-type=password] .input-group span,
[data-form-type=email] .input-group span {
  padding: 0 16px;
}

[data-form-type=inline-date] {
  display: inline-block;
  margin: 1px 4px;
  border: none;
  border-radius: 4px;
}
[data-form-type=inline-date] input {
  font-size: 12px;
  height: 25px;
  min-height: 22px;
  padding: 4px 8px 4px 2px;
}
[data-form-type=inline-date] input::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.switch {
  align-items: center;
  cursor: pointer;
  display: flex;
  margin: 8px 0;
  max-width: 100%;
  min-height: 48px;
  padding-left: 0;
  padding-right: 0;
}
.switch input {
  height: 24px;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: auto;
}
.switch input[disabled] + span, .switch input[disabled] + span + p {
  cursor: no-drop;
}
.switch.on-off > span > span::before {
  content: "Off";
}
.switch.on-off > span > span::after {
  content: "On";
}
.switch > span {
  background-color: #262626;
  border-radius: 100px;
  border: solid 1px #5a5a5a;
  display: flex;
  flex-shrink: 0;
  height: 30px;
  justify-content: space-between;
  margin-right: 10px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.4s ease;
  width: 75px;
}
.switch > span > span {
  background-color: #5a5a5a;
  border-radius: 50px;
  display: block;
  height: calc(100% - 4px);
  left: 2px;
  opacity: 1;
  position: absolute;
  top: 2px;
  transition: all 0.4s ease;
  width: 40px;
}
.switch > span > span::before, .switch > span > span::after {
  flex-shrink: 0;
  font-size: 90%;
  font-weight: bold;
  left: 0;
  padding: 4px 0;
  position: absolute;
  text-align: center;
  top: 0;
  transition: opacity 0.4s ease;
  width: 100%;
  z-index: 2;
}
.switch > span > span::before {
  color: #1d1d1d;
  content: "No";
}
.switch > span > span::after {
  color: #FFFFFF;
  content: "Yes";
  opacity: 0;
}
.switch input:checked + span {
  border-color: #80C080;
}
.switch input:checked + span > span {
  background-color: #80C080;
  left: calc(100% - 2px);
  transform: translateX(-100%);
}
.switch input:checked + span > span::before {
  opacity: 0;
}
.switch input:checked + span > span::after {
  opacity: 1;
}
.switch p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 90%;
  margin: 0 !important;
}

[data-form-type=boolean-multi-inline] > label {
  display: block;
  padding-top: 12px;
  font-size: 12px;
}
[data-form-type=boolean-multi-inline] .switch {
  min-height: 30px;
  margin-top: 0;
}
[data-form-type=boolean-multi-inline]:hover > .row {
  background: #353535;
}
[data-form-type=boolean-multi-inline] > .row {
  border-radius: 8px;
  padding: 8px 0 0;
  transition: background-color 0.4s ease;
}

[data-form-type=textarea] {
  margin: 8px 0;
}
[data-form-type=textarea] label {
  display: block;
  background: #464646;
  font-size: 12px;
  padding: 12px 8px;
  height: 25px;
  line-height: 13px;
}
[data-form-type=textarea] textarea {
  display: block;
  min-height: 300px;
}

textarea {
  background-color: #464646;
  border-width: 0 0 2px 0;
  border-color: #FFF;
  border-style: solid;
  color: rgba(255, 255, 255, 0.87);
  min-height: 55px;
  outline: none;
  padding: 8px;
  resize: vertical;
  width: 100%;
}
textarea:focus {
  border-bottom-color: #6db762;
}
textarea.auto-height {
  display: block;
  overflow: hidden;
  resize: none;
}

[data-form-type=wysiwyg] textarea {
  opacity: 0;
  position: absolute;
  width: 0;
  padding: 0;
  margin: 0;
  height: 0;
  min-height: 0;
}
[data-form-type=wysiwyg] .ql-toolbar {
  background-color: rgba(255, 255, 255, 0.8);
}
[data-form-type=wysiwyg] .ql-container {
  background-color: #464646;
  color: rgba(255, 255, 255, 0.87);
  min-height: 300px;
  height: 0;
}
[data-form-type=wysiwyg] .ql-editor.ql-blank::before {
  color: rgba(255, 255, 255, 0.87);
  opacity: 0.6;
}

.glowable {
  border-radius: 8px;
  position: relative;
}
.glowable:hover::before {
  opacity: 0.6;
}
.glowable::before {
  border-radius: inherit;
  content: "";
  height: 100%;
  left: 0px;
  opacity: 0.3;
  position: absolute;
  top: 0px;
  transition: opacity 500ms;
  width: 100%;
  pointer-events: none;
}
.glowable::before {
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
  z-index: 3;
}
.glowable > div {
  z-index: 2;
}

.help-title {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.help-title div {
  margin-right: 20px;
  font-size: 30px;
  cursor: pointer;
}
.help-title h2 {
  margin: 0;
}

.help-intro {
  font-size: 20px;
  color: #888;
  font-weight: 100;
}

.help-groups {
  display: flex;
  flex-wrap: wrap;
}
.help-groups .help-group {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  padding: 22px 40px;
  border: solid 1px #888;
  justify-content: center;
  margin: 0 12px 12px 0;
  cursor: pointer;
  transition: all 0.4s ease;
}
.help-groups .help-group:hover {
  background-color: #8B60AC;
  color: #FFF;
}
.help-groups .help-group:hover .help-group-icon i {
  color: #FFF;
}
.help-groups .help-group:hover .help-group-icon img {
  filter: brightness(0) invert(1);
}
.help-groups .help-group .help-group-icon {
  height: 50px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.help-groups .help-group .help-group-icon img {
  max-height: 50px;
  transition: all 0.4s ease;
}
.help-groups .help-group .help-group-icon i {
  color: #6db762;
  font-size: 50px;
  transition: all 0.4s ease;
}
.help-groups .help-group span {
  font-weight: 100;
  flex: 1;
  font-size: 20px;
  text-align: center;
}

.help-section h3 {
  font-size: 35px;
  font-weight: 100;
}
.help-section ol {
  display: block;
  margin: 0;
  padding: 20px 0 20px 30px;
}
.help-section ol li {
  color: #888888;
  cursor: pointer;
  font-size: 30px;
  font-weight: 100;
  padding-bottom: 8px;
  text-decoration: underline;
}

.large-help-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.large-help-icons > *, .large-help-icons > *:visited {
  align-items: center;
  background: var(--primary);
  border: solid 5px #126d8f;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  height: 250px;
  justify-content: center;
  margin: 8px;
  width: 250px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.large-help-icons > *:hover, .large-help-icons > *:visited:hover {
  color: #FFFFFF;
  background-color: #126d8f;
}
.large-help-icons > * i, .large-help-icons > *:visited i {
  font-size: 55px;
  margin-bottom: 16px;
}
.large-help-icons > * div, .large-help-icons > *:visited div {
  font-weight: bold;
  font-size: 14px;
}

@media screen and (max-width: 992px) {
  .large-help-icons {
    margin-bottom: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .help-groups .help-group {
    width: calc(25% - 9px);
  }
  .help-groups .help-group:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .help-groups .help-group {
    width: calc(33.33% - 8px);
  }
  .help-groups .help-group:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 575px) {
  .help-groups .help-group {
    width: calc(50% - 6px);
  }
  .help-groups .help-group:nth-child(even) {
    margin-right: 0;
  }
}
.livewire-loading {
  cursor: wait;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.livewire-loading span {
  background: #6db762;
  border-radius: 4px;
  display: inline-block;
  left: 50%;
  top: 32px;
  padding: 8px 16px;
  position: relative;
  transform: translateX(-50%);
  color: #FFFFFF;
}
.livewire-loading span::after {
  content: "...";
}
.livewire-loading span::before {
  animation: loadingEllipsis 1.5s linear infinite;
  background: inherit;
  color: transparent;
  content: "...";
  position: absolute;
  right: 16px;
}
.livewire-loading ~ * {
  transition: opacity 0.3s ease;
}
.livewire-loading.active ~ * {
  opacity: 0.3;
}

body::after {
  align-items: center;
  background-color: rgba(44, 44, 44, 0.8);
  background-image: url("/assets/img/loading.gif");
  background-position: center;
  background-size: 100px;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 50px;
  position: fixed;
  text-align: center;
  top: 0;
  transition: all 0.4s ease;
  visibility: hidden;
  width: 100vw;
  z-index: 9;
}
body.loading::after {
  opacity: 1;
  visibility: visible;
}
body.loading-long::after {
  background-position: center 40%;
  content: "This appears to be taking some time. If you believe this to be an error, please refresh your page and try again.";
}

.modal-container {
  align-items: center;
  background-color: transparent;
  height: var(--vh100, 100vh);
  left: 0;
  position: fixed;
  top: 0;
  padding: 4vw 8vw;
  transition: background-color 0.4s ease;
  width: 100vw;
  z-index: 4;
}
.modal-open .modal-container {
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-container .modal {
  border-radius: 8px;
  opacity: 0;
  transition: all 0.4s ease;
  visibility: hidden;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  display: flex;
  width: 600px;
  max-width: 100%;
  max-height: 100%;
}
.modal-container .modal header {
  background: #353535;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  color: white;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}
.modal-container .modal header i {
  display: inline-flex;
  align-items: center;
  margin-left: 32px;
  cursor: pointer;
}
.modal-container .modal > div, .modal-container .modal > form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.modal-container .modal section {
  padding: 32px 32px 0 32px;
  flex: 1;
  position: relative;
  overflow-y: auto;
  background-color: #262626;
}
.modal-container .modal section > *:last-child {
  margin-bottom: 32px;
}
.modal-container .modal p {
  margin-bottom: 8px;
}
.modal-container .modal.modal-booking {
  max-width: 700px;
}
.modal-container .modal footer {
  margin-bottom: 0 !important;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #353535;
  padding: 8px 32px;
  align-items: center;
}
.modal-container .modal footer .button {
  padding: 2px 20px;
  font-size: calc(0.9rem + 0.1vw);
}

body.modal-open .modal {
  opacity: 1;
  visibility: visible;
}

.modal-message {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 4px;
  color: #FFF;
  font-weight: bold;
}

.confirm-click {
  cursor: pointer;
}

@media only screen and (max-width: 992px) {
  .modal-container .modal header {
    padding: 16px;
  }
  .modal-container .modal section {
    padding: 16px;
  }
  .modal-container .modal .modal-buttons {
    padding: 8px 16px;
  }
}
nav[name=pagination] {
  align-items: center;
  display: flex;
  justify-content: center;
}
nav[name=pagination] > * {
  margin-right: 8px;
}
nav[name=pagination] a {
  align-items: center;
  background-color: #353535;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  outline: solid 2px transparent;
  transition: outline 0.4s ease;
  width: 40px;
}
nav[name=pagination] a:hover {
  outline: solid 2px #6db762;
}
nav[name=pagination] input {
  background-color: #353535;
  border-radius: 4px;
  border: none;
  color: rgba(255, 255, 255, 0.87);
  line-height: 40px;
  outline: none;
  text-align: center;
  width: 120px;
  -moz-appearance: textfield; /* Firefox */
}
nav[name=pagination] input::-webkit-outer-spin-button, nav[name=pagination] input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.select-container .parsley-error + .parsley-errors-list {
  margin-top: 2px;
}

.parsley-success + .parsley-errors-list {
  display: none;
}

.parsley-error + .parsley-errors-list {
  margin: -30px 0 0 6px;
  position: absolute;
  padding: 0;
  list-style: none;
}
.parsley-error + .parsley-errors-list li {
  font-size: 10px;
  color: #F00;
  background-color: rgba(255, 255, 255, 0.4588235294);
  padding: 2px 4px;
}

a, a:hover, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}

.big {
  font-size: 40px;
  font-weight: bold;
}

.super {
  font-size: 14px;
  opacity: 0.5;
  vertical-align: super;
}

.color-block {
  width: 50px;
  height: 23px;
}

.nowrap {
  white-space: nowrap;
}

.lh-2 {
  line-height: 2rem;
}

.lh-24p {
  line-height: 24px;
}

.pill {
  border-radius: 100px;
  display: inline-block;
  font-size: 13px;
  padding: 8px 16px;
  vertical-align: middle;
  white-space: nowrap;
}
.pill.pill-white {
  background-color: rgba(255, 255, 255, 0.87);
  border: 2px solid rgba(255, 255, 255, 0.87);
  color: #FFFFFF;
}
.pill.pill-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.87);
  color: rgba(255, 255, 255, 0.87);
}
.pill.pill-grey {
  background-color: #878787;
  border: 2px solid #878787;
  color: #FFFFFF;
}
.pill.pill-outline-grey {
  border: 2px solid #878787;
  color: #878787;
}
.pill.pill-primary {
  background-color: #6db762;
  border: 2px solid #6db762;
  color: #FFFFFF;
}
.pill.pill-outline-primary {
  border: 2px solid #6db762;
  color: #6db762;
}
.pill.pill-secondary {
  background-color: #8B60AC;
  border: 2px solid #8B60AC;
  color: #FFFFFF;
}
.pill.pill-outline-secondary {
  border: 2px solid #8B60AC;
  color: #8B60AC;
}
.pill.pill-info {
  background-color: #4a86bf;
  border: 2px solid #4a86bf;
  color: #FFFFFF;
}
.pill.pill-outline-info {
  border: 2px solid #4a86bf;
  color: #4a86bf;
}
.pill.pill-success {
  background-color: #489148;
  border: 2px solid #489148;
  color: #FFFFFF;
}
.pill.pill-outline-success {
  border: 2px solid #489148;
  color: #489148;
}
.pill.pill-warning {
  background-color: #bf904a;
  border: 2px solid #bf904a;
  color: #FFFFFF;
}
.pill.pill-outline-warning {
  border: 2px solid #bf904a;
  color: #bf904a;
}
.pill.pill-danger {
  background-color: #bf4a4a;
  border: 2px solid #bf4a4a;
  color: #FFFFFF;
}
.pill.pill-outline-danger {
  border: 2px solid #bf4a4a;
  color: #bf4a4a;
}
.pill.pill-l0 {
  background-color: #121212;
  border: 2px solid #121212;
  color: #FFFFFF;
}
.pill.pill-outline-l0 {
  border: 2px solid #121212;
  color: #121212;
}
.pill.pill-l1 {
  background-color: #262626;
  border: 2px solid #262626;
  color: #FFFFFF;
}
.pill.pill-outline-l1 {
  border: 2px solid #262626;
  color: #262626;
}
.pill.pill-l2 {
  background-color: #353535;
  border: 2px solid #353535;
  color: #FFFFFF;
}
.pill.pill-outline-l2 {
  border: 2px solid #353535;
  color: #353535;
}
.pill.pill-l3 {
  background-color: #464646;
  border: 2px solid #464646;
  color: #FFFFFF;
}
.pill.pill-outline-l3 {
  border: 2px solid #464646;
  color: #464646;
}
.pill.pill-l4 {
  background-color: #5a5a5a;
  border: 2px solid #5a5a5a;
  color: #FFFFFF;
}
.pill.pill-outline-l4 {
  border: 2px solid #5a5a5a;
  color: #5a5a5a;
}
.pill.pill-sm {
  font-size: 10px;
  font-weight: bold;
  padding: 4px 8px;
}

.target-progress-bar {
  padding: 0 4rem;
  /* Key */
  /* Bars */
}
.target-progress-bar .key {
  text-align: center;
}
.target-progress-bar .key > div {
  display: inline-block;
  padding: 0 4px;
}
.target-progress-bar .key > div.year-passed {
  color: var(--color-actual_alternative, orange);
}
.target-progress-bar .key > div.actual {
  color: var(--color-actual, green);
}
.target-progress-bar .key > div.target {
  color: var(--color-target, red);
}
.target-progress-bar .year-progress {
  background: #ececec;
  font-weight: 600;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
}
.target-progress-bar .year-actual, .target-progress-bar .year-actual-perc, .target-progress-bar .year-perc {
  transition: width 2s ease;
}
.target-progress-bar .year-actual {
  padding: 4px 0;
  text-align: right;
  color: var(--color-actual, green);
}
.target-progress-bar .year-actual-perc {
  height: 15px;
  background-color: var(--color-actual, green);
}
.target-progress-bar .year-perc {
  background: var(--color-actual_alternative, orange);
  height: 5px;
}

.rag-bar {
  background: linear-gradient(90deg, #489148, #bf904a, #bf4a4a);
  height: 10px;
  position: relative;
  margin: 20px 0;
}
.rag-bar span {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000000;
  height: 0;
  position: absolute;
  top: -2px;
  transform: translateX(-50%);
  width: 0;
}
.rag-bar span::before {
  content: attr(data-value);
  background-color: #fff;
  font-size: 14px;
  font-style: italic;
  left: 50%;
  position: absolute;
  bottom: 7px;
  transform: translateX(-50%);
  white-space: nowrap;
}
.rag-bar::before, .rag-bar::after {
  font-size: 13px;
  font-weight: bold;
  line-height: 14px;
  padding-top: 12px;
  pointer-events: none;
}
.rag-bar::before {
  content: attr(data-left);
  display: inline-block;
}
.rag-bar::after {
  content: attr(data-right);
  float: right;
  text-align: right;
}

.scroll-nav-block {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.scroll-nav-block .scroll-nav {
  position: sticky;
  top: 0;
  width: 300px;
}
.scroll-nav-block .scroll-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.scroll-nav-block .scroll-nav ul li {
  padding: 8px 16px;
  cursor: pointer;
}
.scroll-nav-block .scroll-nav ul li.active {
  color: #6db762;
  font-weight: bold;
}
.scroll-nav-block .scroll-nav ul li.invalid::before {
  content: "\f071";
  font-family: "Font Awesome 5 Pro";
  font-weight: bold;
  color: orange;
}
.scroll-nav-block .scroll-content {
  width: 100%;
}
.scroll-nav-block .scroll-content > div:not(:first-child) {
  border-top: dashed 2px #c3c3c3;
  margin-top: 2rem;
  padding-top: 2rem;
}

@media screen and (max-width: 767px) {
  .scroll-nav-block .scroll-nav {
    display: none;
  }
}
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  border: solid 4px rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
  background: rgba(53, 53, 53, 0.5);
  border-radius: 25px;
  border: solid 2px #262626;
}

::-webkit-scrollbar-thumb:hover {
  background: #353535;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
  border-radius: 30px;
}

::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0);
}

[data-form-type] .select2-container--default .select2-selection--multiple {
  background: transparent;
  border: none !important;
  min-height: 20px;
}
[data-form-type] .select2-container--default .select2-search--inline .select2-search__field {
  min-height: 22px;
  margin-top: 25px;
}
[data-form-type] .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: var(--l4);
  color: white;
  border: none;
  line-height: 21px;
  font-size: 14px;
}
[data-form-type] .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  height: 100%;
}

.select2-container.select2-container--default .select2-dropdown {
  border: solid 2px var(--primary);
  border-top-color: white;
  overflow: hidden;
}
.select2-container.select2-container--default .select2-dropdown .select2-results__option--selectable {
  background-color: var(--l3);
}
.select2-container.select2-container--default .select2-dropdown .select2-results__option--highlighted {
  background-color: var(--l4);
}
.select2-container.select2-container--default .select2-dropdown .select2-results__option--selected {
  background-color: var(--success);
}
.select2-container.select2-container--default .select2-dropdown .select2-results__option--selected.select2-results__option--highlighted {
  background-color: var(--danger);
}
.select2-container.select2-container--default .select2-dropdown .select2-results__option {
  font-size: 13px;
  line-height: 1;
}

#chat-application {
  top: 50% !important;
  bottom: unset !important;
  right: unset !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}

.table-container {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  border-radius: 8px;
  background-color: #262626;
  position: relative;
}
.table-container.loading::after {
  opacity: 1;
  visibility: visible;
}
.table-container.loading table {
  opacity: 0.4;
  pointer-events: none;
}
.table-container::after {
  content: "";
  position: absolute;
  top: 0;
  text-align: center;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/loading.gif");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.table-container table {
  width: 100%;
  border-collapse: collapse;
  color: rgba(255, 255, 255, 0.6);
  transition: opacity 0.4s ease;
}
.table-container table th, .table-container table td {
  white-space: nowrap;
}
.table-container table thead th {
  font-size: 13px;
  font-weight: 400;
  outline: none;
  padding: 8px 16px;
  text-align: left;
  white-space: nowrap;
}
.table-container table thead th.sort, .table-container table thead th.sort-asc, .table-container table thead th.sort-desc {
  cursor: pointer;
}
.table-container table thead th.sort::after, .table-container table thead th.sort-asc::after, .table-container table thead th.sort-desc::after {
  position: relative;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  padding-left: 16px;
  vertical-align: middle;
}
.table-container table thead th.sort::after {
  content: "\f0dc";
}
.table-container table thead th.sort-asc::after {
  content: "\f0de";
}
.table-container table thead th.sort-desc::after {
  content: "\f0dd";
}
.table-container table tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.03);
}
.table-container table tbody td {
  padding: 16px;
}
.table-container table tbody tr[href] {
  cursor: pointer;
}
.table-container table tbody tr {
  transition: all 0.4s ease;
}
.table-container table tbody tr:hover {
  color: rgba(255, 255, 255, 0.87);
  background-color: rgba(255, 255, 255, 0.08);
}
.table-container.table-compact thead th {
  padding: 8px;
  font-size: 16px;
  font-weight: 600;
}
.table-container.table-compact tbody td {
  padding: 8px;
}

table.vert-top td, table.vert-top th {
  vertical-align: top;
}

.title + .tab-block {
  margin-top: -30px;
}

.tab-block .tabs {
  overflow: auto;
  position: relative;
  z-index: 1;
  scrollbar-width: none; /* Firefox */
}
.tab-block .tabs::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.tab-block .tabs ul {
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  z-index: 1;
}
.tab-block .tabs ul::after {
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: #353535;
  content: "";
  bottom: 0;
}
.tab-block .tabs ul li:not(.active-identifier) {
  display: inline-block;
  padding: 12px 40px;
  transition: all 0.4s ease;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: solid 2px rgba(255, 255, 255, 0.15);
  opacity: 0.7;
}
.tab-block .tabs ul li:not(.active-identifier):hover {
  opacity: 1;
  color: #6db762;
}
.tab-block .tabs ul li:not(.active-identifier).active {
  opacity: 1;
}
.tab-block .tabs ul li.active-identifier {
  content: "";
  display: block;
  padding: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #6db762;
  z-index: 2;
}
.tab-block .content {
  padding: 16px 0;
  position: relative;
  width: 100%;
}
.tab-block .content > div:not(.active) {
  display: none;
}
.tab-block .content .negate-tab-content-padding {
  margin: -16px;
  position: relative;
  z-index: 0;
}

.tab-block.tab-block-vertical {
  display: flex;
  min-height: 80vh;
}
.tab-block.tab-block-vertical .tabs {
  box-shadow: 4px 0px 4px -2px #8b8b8b;
  width: 20%;
  max-width: 300px;
  min-width: 200px;
  flex-shrink: 0;
}
.tab-block.tab-block-vertical .tabs ul {
  flex-direction: column;
}
.tab-block.tab-block-vertical .tabs ul li {
  white-space: normal;
}

.template-builder .row {
  border-radius: 5px;
  border: solid 1px #CCCCCC;
  margin-bottom: 8px;
  padding: 0.75rem;
}
.template-builder .row .field-col {
  border-right: solid 1px #CCCCCC;
}
.template-builder .row .field-col:last-child {
  border-right: none;
}
.template-builder .field {
  background: #00ADEE;
  border-radius: 5px;
  color: #FFFFFF;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  margin-bottom: 8px;
}
.template-builder .field .data {
  display: none;
}
.template-builder .field .controls {
  background: #CCCCCC;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 40px;
}
.template-builder .field .controls > div {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  text-align: center;
  padding: 5px 0;
  cursor: pointer;
}
.template-builder .field .controls > div.control_up:hover, .template-builder .field .controls > div.control_down:hover {
  background-color: #00adee;
}
.template-builder .field .controls > div.control_delete:hover {
  background-color: #ff5252;
}
.template-builder .field .controls > div::before {
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  font-size: 15px;
}
.template-builder .field .controls > div.control_up::before {
  content: "\f077";
  font-weight: 700;
}
.template-builder .field .controls > div.control_down::before {
  content: "\f078";
  font-weight: 700;
}
.template-builder .field .controls > div.control_delete::before {
  content: "\f2ed";
  font-weight: 400;
}
.template-builder .field .details {
  padding: 8px;
  flex: 1;
}
.template-builder .field .details [data-label] {
  display: flex;
}
.template-builder .field .details [data-label]::before {
  content: attr(data-label) ": ";
  font-size: 12px;
  flex-shrink: 0;
  padding-right: 4px;
  line-height: 18px;
  text-align: right;
  width: 70px;
}
.template-builder .btn-add {
  align-items: center;
  background: #E3E3E3;
  border-radius: 5px;
  border: solid 1px #CCCCCC;
  color: #5C5C5C;
  display: flex;
  justify-content: center;
  line-height: 30px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
}
.template-builder .btn-add:hover {
  background-color: #CCCCCC;
}
.template-builder .btn-add::before {
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  font-size: 26px;
  font-weight: 700;
  padding-right: 12px;
}
.template-builder .btn-add.add-group::before {
  content: "\f0db";
}
.template-builder .btn-add.add-field::before {
  content: "\f067";
}

html, body {
  background-color: #121212;
  color: rgba(255, 255, 255, 0.87);
  font-family: Nunito;
}

body {
  display: flex;
  min-height: 100vh;
}

section[name=sidebar] {
  max-width: 300px;
  flex: 1;
  background-color: #262626;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding: 16px 4px;
  overflow: auto;
}

@media screen and (max-width: 576px) {
  section[name=sidebar] {
    position: absolute;
    z-index: 3;
  }
  main {
    padding: 0.75rem 0 75px;
  }
}
.welcome-text {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.87);
  padding: 40px 16px 24px;
  position: relative;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.welcome-text::after {
  content: "";
  position: absolute;
  background: #6db762;
  height: 2px;
  width: calc(100% - 32px);
  left: 16px;
  bottom: 16px;
}
.welcome-text i {
  cursor: pointer;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav li a > i, nav li.nav-search i {
  font-size: 25px;
  margin-right: 32px;
}
nav > ul > li {
  color: rgba(255, 255, 255, 0.87);
  margin: 8px 16px;
  border-radius: 8px;
  overflow: hidden;
  transition: background-color 0.4s ease;
}
nav > ul > li:hover, nav > ul > li.active {
  background-color: #353535;
}
nav > ul > li.active {
  outline: solid 2px #6db762;
}
nav > ul > li > a, nav > ul > li > span {
  padding: 16px;
  display: flex;
  align-items: center;
}

nav[name=user-menu] {
  background-color: #353535;
  margin: -8px 16px 16px;
  border-radius: 8px;
}
nav[name=user-menu] li {
  margin: 0;
  border-radius: 0;
}
nav[name=user-menu] li:hover {
  background-color: #464646;
}
nav[name=user-menu] li.active {
  outline: none;
  background-color: rgba(109, 183, 98, 0.5);
}

nav[name=sites] {
  flex: 1;
  overflow: auto;
  border-top: solid 1px #464646;
  margin-top: 16px;
  padding-top: 16px;
}
nav[name=sites] ul ul {
  display: none;
  background-color: #464646;
  padding: 16px;
}
nav[name=sites] ul ul li a {
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  transition: background-color 0.4s ease;
  color: rgba(255, 255, 255, 0.38);
  overflow: hidden;
}
nav[name=sites] ul ul li a > div {
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  width: 100%;
}
nav[name=sites] ul ul li a > div span {
  white-space: nowrap;
  display: block;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}
nav[name=sites] ul ul li a > div small {
  transition: all 0.4s ease;
  line-height: 10px;
  height: 0;
  opacity: 0;
  font-size: 12px;
  overflow: hidden;
}
nav[name=sites] ul ul li a::after {
  content: "\f07c";
  font-family: "Font Awesome 5 Pro";
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.4s ease;
}
nav[name=sites] ul ul li a:not(.active):hover {
  background-color: #5a5a5a;
}
nav[name=sites] ul ul li a:not(.active):hover::after {
  opacity: 1;
}
nav[name=sites] ul ul li a:not(.active):hover > div {
  color: rgba(255, 255, 255, 0.6);
  width: calc(100% - 24px);
}
nav[name=sites] ul ul li a:not(.active):hover > div small {
  height: 15px;
  font-size: 12px;
  padding-top: 4px;
  opacity: 1;
}
nav[name=sites] ul ul li a.active {
  background-color: rgba(109, 183, 98, 0.5);
}
nav[name=sites] ul ul li a.active::after {
  opacity: 0;
}
nav[name=sites] ul ul li a.active > div {
  color: rgba(255, 255, 255, 0.6);
  width: calc(100% - 24px);
}
nav[name=sites] ul ul li a.active > div small {
  height: 15px;
  font-size: 12px;
  padding-top: 4px;
  opacity: 1;
}
nav[name=sites] ul li > div {
  display: flex;
  align-items: center;
  padding: 16px;
  cursor: pointer;
}
nav[name=sites] ul li > div img {
  margin-right: 35px;
  width: 25px;
  flex-shrink: 0;
}
nav[name=sites] ul li > div div {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}
nav[name=sites] ul li > div div strong {
  white-space: nowrap;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
nav[name=sites] ul li.open:not(.active) {
  background-color: #353535;
}

.nav-search {
  display: flex;
  align-items: center;
  position: sticky;
  padding-left: 16px;
  top: -8px;
  background-color: #262626;
  outline: 8px solid #262626;
  transition: background-color 0.4s ease;
  overflow: visible;
  z-index: 1;
}
.nav-search::before {
  position: absolute;
  content: "";
  background-color: #262626;
  top: -8px;
  right: -8px;
  height: 4px;
  left: -8px;
}
.nav-search:has(input:not(:-moz-placeholder-shown)) {
  background-color: #353535;
}
.nav-search:has(input:not(:placeholder-shown)), .nav-search:has(input:focus), .nav-search:hover {
  background-color: #353535;
}
.nav-search:has(input:not(:placeholder-shown)) input::-webkit-input-placeholder, .nav-search:has(input:focus) input::-webkit-input-placeholder, .nav-search:hover input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.nav-search input {
  padding: 16px 16px 16px 0;
  background-color: transparent;
  border: none;
  display: block;
  outline: none;
  width: 100%;
  flex: 1;
  color: rgba(255, 255, 255, 0.87);
}
.nav-search input::-webkit-input-placeholder {
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.nav-search + li {
  margin-top: 10px;
}

.mobile-header {
  display: none;
  align-items: center;
  border-bottom: solid 2px #353535;
}
.mobile-header .mobile-nav-toggle {
  width: 63px;
  color: white;
  font-size: 30px;
  text-align: center;
  cursor: pointer;
  padding: 16px;
  margin-bottom: 0;
}
.mobile-header .mobile-title {
  display: none;
  color: rgba(255, 255, 255, 0.87);
  font-size: 15px;
  text-align: center;
  flex: 1;
  max-width: calc(100% - 64px);
}
.mobile-header .mobile-title > * {
  white-space: nowrap;
  max-width: 90%;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
}
.mobile-header .mobile-title small {
  margin-top: 4px;
}

@media screen and (max-width: 1200px) {
  section[name=sidebar] {
    flex: 0;
  }
  .mobile-header {
    display: flex;
  }
  nav > ul > li {
    max-width: 47px;
    margin: 8px;
  }
  nav > ul > li > a {
    height: 47px;
    padding: 0;
  }
  nav > ul > li > a i {
    padding-left: 14px;
    text-align: center;
    width: 50px;
  }
  .mobile-header {
    position: sticky;
    top: 0;
    background-color: #262626;
    z-index: 2;
    display: flex;
  }
  body:not(.nav-open) .welcome-text,
  body:not(.nav-open) nav[name=user-menu],
  body:not(.nav-open) nav[name=sites] ul ul,
  body:not(.nav-open) nav[name=sites] ul li > div div,
  body:not(.nav-open) .nav-search {
    display: none !important;
  }
  body:not(.nav-open) nav[name=sites] ul li > div {
    height: 57px;
    padding-left: calc((100% - 25px) / 2);
  }
  body:not(.nav-open) .mobile-nav-toggle {
    width: 100%;
  }
  body:not(.nav-open) nav[name=main] {
    width: 63px;
    margin: 0 auto;
  }
  body.nav-open .mobile-nav-toggle {
    transform: rotate(180deg);
  }
  body.nav-open .mobile-title {
    display: block;
  }
  body.nav-open .welcome-text {
    padding-top: 32px;
  }
  body.nav-open section[name=sidebar] {
    position: absolute;
    z-index: 999;
    display: block;
    width: 100%;
    max-width: unset;
    height: 100vh;
    top: 0;
    left: 0;
    overflow: auto;
  }
  body.nav-open section[name=sidebar] nav[name=sites] {
    overflow: visible;
  }
  body.nav-open section[name=sidebar] .nav-search {
    top: 72px;
  }
  body.nav-open nav > ul > li {
    max-width: unset;
  }
}
@media screen and (max-width: 576px) {
  body {
    flex-direction: column;
  }
  section[name=sidebar] {
    position: relative;
    overflow: hidden;
    max-width: 100vw;
    background-color: #262626;
    flex-basis: 64px;
    top: 0;
    height: 64px;
  }
  section[name=sidebar] .mobile-title {
    display: block;
  }
  section[name=sidebar] .mobile-nav-toggle {
    width: 64px;
    border: none;
  }
  section[name=sidebar] nav[name=sites] {
    border-top-width: 2px;
  }
}
.login-container {
  background: #262626;
  border-radius: 8px;
  margin: 16px auto;
  width: 600px;
  padding: 64px;
  height: -moz-min-content;
  height: min-content;
}
.login-container h1 {
  text-align: center;
  color: #FFFFFF;
  font-size: 30px;
  line-height: 1.5;
}
.login-container h1:has(+ p) {
  margin-bottom: 0;
}
.login-container h1:not(:has(+ p)) {
  margin-bottom: 40px;
}
.login-container h1 + p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .login-container {
    width: calc(100% - 32px);
    padding: 32px;
  }
}
#sites-table .limit-length {
  display: inline-block;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}

.introjs-tooltipReferenceLayer .introjs-tooltip {
  border-radius: 0;
  border: solid 3px #6db762;
}
.introjs-tooltipReferenceLayer .introjs-tooltip p:last-child {
  margin-bottom: 0;
}
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltip-header {
  min-height: 0;
}
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltip-header .introjs-tooltip-title {
  min-height: 0;
}
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltip-header .introjs-skipbutton {
  background: #6db762;
  color: white;
  height: 30px;
  line-height: 32px;
  right: -3px;
  text-align: center;
  top: -3px;
  width: 30px;
}
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons {
  background-color: #eeeeee;
}
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-arrow.top, .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-arrow.top-middle, .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-arrow.top-right {
  top: -13px;
  border-bottom-color: #6db762;
}
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-arrow.bottom, .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-arrow.bottom-middle, .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-arrow.bottom-right {
  bottom: -13px;
  border-top-color: #6db762;
}
.introjs-tooltipReferenceLayer.introjs-hintReference .introjs-button {
  background: transparent;
  border: none;
  color: #6db762;
  display: block;
  font-size: 12px;
  margin-bottom: -10px;
  padding: 0;
  text-align: right;
}

.introjs-hints .introjs-hint:hover > .introjs-hint-pulse {
  background-color: rgba(187, 58, 58, 0.85);
}
.introjs-hints .introjs-hint .introjs-hint-pulse {
  width: 28px;
  height: 28px;
  background-color: rgba(255, 76, 76, 0.85);
}

.navigations nav ul.introjs-showElement li.active:after {
  opacity: 0;
}

.tippy-content {
  text-align: center;
}
