/**
 * Bootstrap overrides
 */
/**
 * This style sheet is for overwriting bootstrap default variables only.
 */
/**
 * Override xxl container width
 */
/**
 * Bootstrap (pulled in from node_modules)
 */
/**
 * Colours
 */
/**
 * Font Sizes
 */
/**
 * Font Weights
 */
/**
 * Font Family
 */
/**
 * Line Heights
 */
/**
 * Letter Spacings
 */
/**
 * Layout
 */
/**
 *  Height and widths values
 */
/**
 * Aspect Ratios
 */
/**
 * Override GlideJS element class
 */
/**
 * Convert hex code colours to URL encoded colours
 */
/**
 * Removes top margin of first element and bottom margin of last element
 */
/**
 * Apply style to H1 - H6
 */
/**
 * Make a block span the slightly wider from inside a container
 */
/**
 * Make a block span the full screen width from inside a container
 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  border: none;
  border-bottom: 1px solid;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

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

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}


ul {
  padding-left: 20px;
}


ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}


ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

b {
  font-weight: bolder;
}

figure {
  margin: 0 0 1rem;
}


svg {
  vertical-align: middle;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

label {
  display: inline-block;
}

button {
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  background: 0 0;
  line-height: 1;
  cursor: auto;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select {
  margin: 0;
  font-family: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

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

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 12px);
  padding-left: var(--bs-gutter-x, 12px);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
   .container {
    max-width: 564px;
  }
}
@media (min-width: 768px) {
   .container {
    max-width: 744px;
  }
}
@media (min-width: 992px) {
   .container {
    max-width: 984px;
  }
}
@media (min-width: 1200px) {
   .container {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
   .container {
    max-width: 1584px;
  }
}
.row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
.row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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%;
}


.gx-2 {
  --bs-gutter-x: 12px;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.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 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.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 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.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 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.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 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.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%;
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

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

section > .container,
section > .container-fluid {
  padding-right: 24px;
  padding-left: 24px;
}

.row--wide {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (min-width: 1400px) {
  .row--wide {
    padding-right: calc((100px - var(--bs-gutter-x)) / 2);
    padding-left: calc((100px - var(--bs-gutter-x)) / 2);
  }
}

.list-style-none {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.remove-end-margins > :first-child {
  margin-top: 0 !important;
}
.remove-end-margins > :last-child {
  margin-bottom: 0 !important;
}

.remove-inner-end-margins > :first-child > :first-child {
  margin-top: 0 !important;
}
.remove-inner-end-margins > :last-child > :last-child {
  margin-bottom: 0 !important;
}

.bg-color-split-white-to-none {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, transparent), to(transparent)) !important;
  background: -webkit-linear-gradient(#fff, #fff 50%, transparent 50%, transparent) !important;
  background: -o-linear-gradient(#fff, #fff 50%, transparent 50%, transparent) !important;
  background: linear-gradient(#fff, #fff 50%, transparent 50%, transparent) !important;
}

.bg-color-split-none-to-white {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #fff), to(#fff)) !important;
  background: -webkit-linear-gradient(transparent, transparent 50%, #fff 50%, #fff) !important;
  background: -o-linear-gradient(transparent, transparent 50%, #fff 50%, #fff) !important;
  background: linear-gradient(transparent, transparent 50%, #fff 50%, #fff) !important;
}

.bg-color-split-white-to-white {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #fff), to(#fff)) !important;
  background: -webkit-linear-gradient(#fff, #fff 50%, #fff 50%, #fff) !important;
  background: -o-linear-gradient(#fff, #fff 50%, #fff 50%, #fff) !important;
  background: linear-gradient(#fff, #fff 50%, #fff 50%, #fff) !important;
}

.bg-color-split-white-to-black {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #212121), to(#212121)) !important;
  background: -webkit-linear-gradient(#fff, #fff 50%, #212121 50%, #212121) !important;
  background: -o-linear-gradient(#fff, #fff 50%, #212121 50%, #212121) !important;
  background: linear-gradient(#fff, #fff 50%, #212121 50%, #212121) !important;
}

.bg-color-split-white-to-grey {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #a8aca4), to(#a8aca4)) !important;
  background: -webkit-linear-gradient(#fff, #fff 50%, #a8aca4 50%, #a8aca4) !important;
  background: -o-linear-gradient(#fff, #fff 50%, #a8aca4 50%, #a8aca4) !important;
  background: linear-gradient(#fff, #fff 50%, #a8aca4 50%, #a8aca4) !important;
}

.bg-color-split-white-to-grey-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #7c7c7c), to(#7c7c7c)) !important;
  background: -webkit-linear-gradient(#fff, #fff 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: -o-linear-gradient(#fff, #fff 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: linear-gradient(#fff, #fff 50%, #7c7c7c 50%, #7c7c7c) !important;
}

.bg-color-split-white-to-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #0019e6), to(#0019e6)) !important;
  background: -webkit-linear-gradient(#fff, #fff 50%, #0019e6 50%, #0019e6) !important;
  background: -o-linear-gradient(#fff, #fff 50%, #0019e6 50%, #0019e6) !important;
  background: linear-gradient(#fff, #fff 50%, #0019e6 50%, #0019e6) !important;
}

.bg-color-split-white-to-blue-lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #f2f5ff), to(#f2f5ff)) !important;
  background: -webkit-linear-gradient(#fff, #fff 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: -o-linear-gradient(#fff, #fff 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: linear-gradient(#fff, #fff 50%, #f2f5ff 50%, #f2f5ff) !important;
}

.bg-color-split-white-to-blue-light {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #e6e8fd), to(#e6e8fd)) !important;
  background: -webkit-linear-gradient(#fff, #fff 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: -o-linear-gradient(#fff, #fff 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: linear-gradient(#fff, #fff 50%, #e6e8fd 50%, #e6e8fd) !important;
}

.bg-color-split-white-to-blue-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #bdbfd5), to(#bdbfd5)) !important;
  background: -webkit-linear-gradient(#fff, #fff 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: -o-linear-gradient(#fff, #fff 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: linear-gradient(#fff, #fff 50%, #bdbfd5 50%, #bdbfd5) !important;
}

.bg-color-split-white-to-blue-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #01125c), to(#01125c)) !important;
  background: -webkit-linear-gradient(#fff, #fff 50%, #01125c 50%, #01125c) !important;
  background: -o-linear-gradient(#fff, #fff 50%, #01125c 50%, #01125c) !important;
  background: linear-gradient(#fff, #fff 50%, #01125c 50%, #01125c) !important;
}

.bg-color-split-white-to-blue-faded {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #4d5da3), to(#4d5da3)) !important;
  background: -webkit-linear-gradient(#fff, #fff 50%, #4d5da3 50%, #4d5da3) !important;
  background: -o-linear-gradient(#fff, #fff 50%, #4d5da3 50%, #4d5da3) !important;
  background: linear-gradient(#fff, #fff 50%, #4d5da3 50%, #4d5da3) !important;
}

.bg-color-split-white-to-cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #25faf2), to(#25faf2)) !important;
  background: -webkit-linear-gradient(#fff, #fff 50%, #25faf2 50%, #25faf2) !important;
  background: -o-linear-gradient(#fff, #fff 50%, #25faf2 50%, #25faf2) !important;
  background: linear-gradient(#fff, #fff 50%, #25faf2 50%, #25faf2) !important;
}

.bg-color-split-white-to-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #00a80d), to(#00a80d)) !important;
  background: -webkit-linear-gradient(#fff, #fff 50%, #00a80d 50%, #00a80d) !important;
  background: -o-linear-gradient(#fff, #fff 50%, #00a80d 50%, #00a80d) !important;
  background: linear-gradient(#fff, #fff 50%, #00a80d 50%, #00a80d) !important;
}

.bg-color-split-white-to-box-shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))) !important;
  background: -webkit-linear-gradient(#fff, #fff 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: -o-linear-gradient(#fff, #fff 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: linear-gradient(#fff, #fff 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
}

.bg-color-split-white-to-validation {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #f00), to(#f00)) !important;
  background: -webkit-linear-gradient(#fff, #fff 50%, #f00 50%, #f00) !important;
  background: -o-linear-gradient(#fff, #fff 50%, #f00 50%, #f00) !important;
  background: linear-gradient(#fff, #fff 50%, #f00 50%, #f00) !important;
}

.bg-color-split-black-to-none {
  background: -webkit-gradient(linear, left top, left bottom, from(#212121), color-stop(50%, #212121), color-stop(50%, transparent), to(transparent)) !important;
  background: -webkit-linear-gradient(#212121, #212121 50%, transparent 50%, transparent) !important;
  background: -o-linear-gradient(#212121, #212121 50%, transparent 50%, transparent) !important;
  background: linear-gradient(#212121, #212121 50%, transparent 50%, transparent) !important;
}

.bg-color-split-none-to-black {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #212121), to(#212121)) !important;
  background: -webkit-linear-gradient(transparent, transparent 50%, #212121 50%, #212121) !important;
  background: -o-linear-gradient(transparent, transparent 50%, #212121 50%, #212121) !important;
  background: linear-gradient(transparent, transparent 50%, #212121 50%, #212121) !important;
}

.bg-color-split-black-to-white {
  background: -webkit-gradient(linear, left top, left bottom, from(#212121), color-stop(50%, #212121), color-stop(50%, #fff), to(#fff)) !important;
  background: -webkit-linear-gradient(#212121, #212121 50%, #fff 50%, #fff) !important;
  background: -o-linear-gradient(#212121, #212121 50%, #fff 50%, #fff) !important;
  background: linear-gradient(#212121, #212121 50%, #fff 50%, #fff) !important;
}

.bg-color-split-black-to-black {
  background: -webkit-gradient(linear, left top, left bottom, from(#212121), color-stop(50%, #212121), color-stop(50%, #212121), to(#212121)) !important;
  background: -webkit-linear-gradient(#212121, #212121 50%, #212121 50%, #212121) !important;
  background: -o-linear-gradient(#212121, #212121 50%, #212121 50%, #212121) !important;
  background: linear-gradient(#212121, #212121 50%, #212121 50%, #212121) !important;
}

.bg-color-split-black-to-grey {
  background: -webkit-gradient(linear, left top, left bottom, from(#212121), color-stop(50%, #212121), color-stop(50%, #a8aca4), to(#a8aca4)) !important;
  background: -webkit-linear-gradient(#212121, #212121 50%, #a8aca4 50%, #a8aca4) !important;
  background: -o-linear-gradient(#212121, #212121 50%, #a8aca4 50%, #a8aca4) !important;
  background: linear-gradient(#212121, #212121 50%, #a8aca4 50%, #a8aca4) !important;
}

.bg-color-split-black-to-grey-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#212121), color-stop(50%, #212121), color-stop(50%, #7c7c7c), to(#7c7c7c)) !important;
  background: -webkit-linear-gradient(#212121, #212121 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: -o-linear-gradient(#212121, #212121 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: linear-gradient(#212121, #212121 50%, #7c7c7c 50%, #7c7c7c) !important;
}

.bg-color-split-black-to-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#212121), color-stop(50%, #212121), color-stop(50%, #0019e6), to(#0019e6)) !important;
  background: -webkit-linear-gradient(#212121, #212121 50%, #0019e6 50%, #0019e6) !important;
  background: -o-linear-gradient(#212121, #212121 50%, #0019e6 50%, #0019e6) !important;
  background: linear-gradient(#212121, #212121 50%, #0019e6 50%, #0019e6) !important;
}

.bg-color-split-black-to-blue-lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(#212121), color-stop(50%, #212121), color-stop(50%, #f2f5ff), to(#f2f5ff)) !important;
  background: -webkit-linear-gradient(#212121, #212121 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: -o-linear-gradient(#212121, #212121 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: linear-gradient(#212121, #212121 50%, #f2f5ff 50%, #f2f5ff) !important;
}

.bg-color-split-black-to-blue-light {
  background: -webkit-gradient(linear, left top, left bottom, from(#212121), color-stop(50%, #212121), color-stop(50%, #e6e8fd), to(#e6e8fd)) !important;
  background: -webkit-linear-gradient(#212121, #212121 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: -o-linear-gradient(#212121, #212121 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: linear-gradient(#212121, #212121 50%, #e6e8fd 50%, #e6e8fd) !important;
}

.bg-color-split-black-to-blue-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(#212121), color-stop(50%, #212121), color-stop(50%, #bdbfd5), to(#bdbfd5)) !important;
  background: -webkit-linear-gradient(#212121, #212121 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: -o-linear-gradient(#212121, #212121 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: linear-gradient(#212121, #212121 50%, #bdbfd5 50%, #bdbfd5) !important;
}

.bg-color-split-black-to-blue-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#212121), color-stop(50%, #212121), color-stop(50%, #01125c), to(#01125c)) !important;
  background: -webkit-linear-gradient(#212121, #212121 50%, #01125c 50%, #01125c) !important;
  background: -o-linear-gradient(#212121, #212121 50%, #01125c 50%, #01125c) !important;
  background: linear-gradient(#212121, #212121 50%, #01125c 50%, #01125c) !important;
}

.bg-color-split-black-to-blue-faded {
  background: -webkit-gradient(linear, left top, left bottom, from(#212121), color-stop(50%, #212121), color-stop(50%, #4d5da3), to(#4d5da3)) !important;
  background: -webkit-linear-gradient(#212121, #212121 50%, #4d5da3 50%, #4d5da3) !important;
  background: -o-linear-gradient(#212121, #212121 50%, #4d5da3 50%, #4d5da3) !important;
  background: linear-gradient(#212121, #212121 50%, #4d5da3 50%, #4d5da3) !important;
}

.bg-color-split-black-to-cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(#212121), color-stop(50%, #212121), color-stop(50%, #25faf2), to(#25faf2)) !important;
  background: -webkit-linear-gradient(#212121, #212121 50%, #25faf2 50%, #25faf2) !important;
  background: -o-linear-gradient(#212121, #212121 50%, #25faf2 50%, #25faf2) !important;
  background: linear-gradient(#212121, #212121 50%, #25faf2 50%, #25faf2) !important;
}

.bg-color-split-black-to-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#212121), color-stop(50%, #212121), color-stop(50%, #00a80d), to(#00a80d)) !important;
  background: -webkit-linear-gradient(#212121, #212121 50%, #00a80d 50%, #00a80d) !important;
  background: -o-linear-gradient(#212121, #212121 50%, #00a80d 50%, #00a80d) !important;
  background: linear-gradient(#212121, #212121 50%, #00a80d 50%, #00a80d) !important;
}

.bg-color-split-black-to-box-shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(#212121), color-stop(50%, #212121), color-stop(50%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))) !important;
  background: -webkit-linear-gradient(#212121, #212121 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: -o-linear-gradient(#212121, #212121 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: linear-gradient(#212121, #212121 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
}

.bg-color-split-black-to-validation {
  background: -webkit-gradient(linear, left top, left bottom, from(#212121), color-stop(50%, #212121), color-stop(50%, #f00), to(#f00)) !important;
  background: -webkit-linear-gradient(#212121, #212121 50%, #f00 50%, #f00) !important;
  background: -o-linear-gradient(#212121, #212121 50%, #f00 50%, #f00) !important;
  background: linear-gradient(#212121, #212121 50%, #f00 50%, #f00) !important;
}

.bg-color-split-grey-to-none {
  background: -webkit-gradient(linear, left top, left bottom, from(#a8aca4), color-stop(50%, #a8aca4), color-stop(50%, transparent), to(transparent)) !important;
  background: -webkit-linear-gradient(#a8aca4, #a8aca4 50%, transparent 50%, transparent) !important;
  background: -o-linear-gradient(#a8aca4, #a8aca4 50%, transparent 50%, transparent) !important;
  background: linear-gradient(#a8aca4, #a8aca4 50%, transparent 50%, transparent) !important;
}

.bg-color-split-none-to-grey {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #a8aca4), to(#a8aca4)) !important;
  background: -webkit-linear-gradient(transparent, transparent 50%, #a8aca4 50%, #a8aca4) !important;
  background: -o-linear-gradient(transparent, transparent 50%, #a8aca4 50%, #a8aca4) !important;
  background: linear-gradient(transparent, transparent 50%, #a8aca4 50%, #a8aca4) !important;
}

.bg-color-split-grey-to-white {
  background: -webkit-gradient(linear, left top, left bottom, from(#a8aca4), color-stop(50%, #a8aca4), color-stop(50%, #fff), to(#fff)) !important;
  background: -webkit-linear-gradient(#a8aca4, #a8aca4 50%, #fff 50%, #fff) !important;
  background: -o-linear-gradient(#a8aca4, #a8aca4 50%, #fff 50%, #fff) !important;
  background: linear-gradient(#a8aca4, #a8aca4 50%, #fff 50%, #fff) !important;
}

.bg-color-split-grey-to-black {
  background: -webkit-gradient(linear, left top, left bottom, from(#a8aca4), color-stop(50%, #a8aca4), color-stop(50%, #212121), to(#212121)) !important;
  background: -webkit-linear-gradient(#a8aca4, #a8aca4 50%, #212121 50%, #212121) !important;
  background: -o-linear-gradient(#a8aca4, #a8aca4 50%, #212121 50%, #212121) !important;
  background: linear-gradient(#a8aca4, #a8aca4 50%, #212121 50%, #212121) !important;
}

.bg-color-split-grey-to-grey {
  background: -webkit-gradient(linear, left top, left bottom, from(#a8aca4), color-stop(50%, #a8aca4), color-stop(50%, #a8aca4), to(#a8aca4)) !important;
  background: -webkit-linear-gradient(#a8aca4, #a8aca4 50%, #a8aca4 50%, #a8aca4) !important;
  background: -o-linear-gradient(#a8aca4, #a8aca4 50%, #a8aca4 50%, #a8aca4) !important;
  background: linear-gradient(#a8aca4, #a8aca4 50%, #a8aca4 50%, #a8aca4) !important;
}

.bg-color-split-grey-to-grey-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#a8aca4), color-stop(50%, #a8aca4), color-stop(50%, #7c7c7c), to(#7c7c7c)) !important;
  background: -webkit-linear-gradient(#a8aca4, #a8aca4 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: -o-linear-gradient(#a8aca4, #a8aca4 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: linear-gradient(#a8aca4, #a8aca4 50%, #7c7c7c 50%, #7c7c7c) !important;
}

.bg-color-split-grey-to-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#a8aca4), color-stop(50%, #a8aca4), color-stop(50%, #0019e6), to(#0019e6)) !important;
  background: -webkit-linear-gradient(#a8aca4, #a8aca4 50%, #0019e6 50%, #0019e6) !important;
  background: -o-linear-gradient(#a8aca4, #a8aca4 50%, #0019e6 50%, #0019e6) !important;
  background: linear-gradient(#a8aca4, #a8aca4 50%, #0019e6 50%, #0019e6) !important;
}

.bg-color-split-grey-to-blue-lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(#a8aca4), color-stop(50%, #a8aca4), color-stop(50%, #f2f5ff), to(#f2f5ff)) !important;
  background: -webkit-linear-gradient(#a8aca4, #a8aca4 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: -o-linear-gradient(#a8aca4, #a8aca4 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: linear-gradient(#a8aca4, #a8aca4 50%, #f2f5ff 50%, #f2f5ff) !important;
}

.bg-color-split-grey-to-blue-light {
  background: -webkit-gradient(linear, left top, left bottom, from(#a8aca4), color-stop(50%, #a8aca4), color-stop(50%, #e6e8fd), to(#e6e8fd)) !important;
  background: -webkit-linear-gradient(#a8aca4, #a8aca4 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: -o-linear-gradient(#a8aca4, #a8aca4 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: linear-gradient(#a8aca4, #a8aca4 50%, #e6e8fd 50%, #e6e8fd) !important;
}

.bg-color-split-grey-to-blue-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(#a8aca4), color-stop(50%, #a8aca4), color-stop(50%, #bdbfd5), to(#bdbfd5)) !important;
  background: -webkit-linear-gradient(#a8aca4, #a8aca4 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: -o-linear-gradient(#a8aca4, #a8aca4 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: linear-gradient(#a8aca4, #a8aca4 50%, #bdbfd5 50%, #bdbfd5) !important;
}

.bg-color-split-grey-to-blue-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#a8aca4), color-stop(50%, #a8aca4), color-stop(50%, #01125c), to(#01125c)) !important;
  background: -webkit-linear-gradient(#a8aca4, #a8aca4 50%, #01125c 50%, #01125c) !important;
  background: -o-linear-gradient(#a8aca4, #a8aca4 50%, #01125c 50%, #01125c) !important;
  background: linear-gradient(#a8aca4, #a8aca4 50%, #01125c 50%, #01125c) !important;
}

.bg-color-split-grey-to-blue-faded {
  background: -webkit-gradient(linear, left top, left bottom, from(#a8aca4), color-stop(50%, #a8aca4), color-stop(50%, #4d5da3), to(#4d5da3)) !important;
  background: -webkit-linear-gradient(#a8aca4, #a8aca4 50%, #4d5da3 50%, #4d5da3) !important;
  background: -o-linear-gradient(#a8aca4, #a8aca4 50%, #4d5da3 50%, #4d5da3) !important;
  background: linear-gradient(#a8aca4, #a8aca4 50%, #4d5da3 50%, #4d5da3) !important;
}

.bg-color-split-grey-to-cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(#a8aca4), color-stop(50%, #a8aca4), color-stop(50%, #25faf2), to(#25faf2)) !important;
  background: -webkit-linear-gradient(#a8aca4, #a8aca4 50%, #25faf2 50%, #25faf2) !important;
  background: -o-linear-gradient(#a8aca4, #a8aca4 50%, #25faf2 50%, #25faf2) !important;
  background: linear-gradient(#a8aca4, #a8aca4 50%, #25faf2 50%, #25faf2) !important;
}

.bg-color-split-grey-to-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#a8aca4), color-stop(50%, #a8aca4), color-stop(50%, #00a80d), to(#00a80d)) !important;
  background: -webkit-linear-gradient(#a8aca4, #a8aca4 50%, #00a80d 50%, #00a80d) !important;
  background: -o-linear-gradient(#a8aca4, #a8aca4 50%, #00a80d 50%, #00a80d) !important;
  background: linear-gradient(#a8aca4, #a8aca4 50%, #00a80d 50%, #00a80d) !important;
}

.bg-color-split-grey-to-box-shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(#a8aca4), color-stop(50%, #a8aca4), color-stop(50%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))) !important;
  background: -webkit-linear-gradient(#a8aca4, #a8aca4 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: -o-linear-gradient(#a8aca4, #a8aca4 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: linear-gradient(#a8aca4, #a8aca4 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
}

.bg-color-split-grey-to-validation {
  background: -webkit-gradient(linear, left top, left bottom, from(#a8aca4), color-stop(50%, #a8aca4), color-stop(50%, #f00), to(#f00)) !important;
  background: -webkit-linear-gradient(#a8aca4, #a8aca4 50%, #f00 50%, #f00) !important;
  background: -o-linear-gradient(#a8aca4, #a8aca4 50%, #f00 50%, #f00) !important;
  background: linear-gradient(#a8aca4, #a8aca4 50%, #f00 50%, #f00) !important;
}

.bg-color-split-grey-dark-to-none {
  background: -webkit-gradient(linear, left top, left bottom, from(#7c7c7c), color-stop(50%, #7c7c7c), color-stop(50%, transparent), to(transparent)) !important;
  background: -webkit-linear-gradient(#7c7c7c, #7c7c7c 50%, transparent 50%, transparent) !important;
  background: -o-linear-gradient(#7c7c7c, #7c7c7c 50%, transparent 50%, transparent) !important;
  background: linear-gradient(#7c7c7c, #7c7c7c 50%, transparent 50%, transparent) !important;
}

.bg-color-split-none-to-grey-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #7c7c7c), to(#7c7c7c)) !important;
  background: -webkit-linear-gradient(transparent, transparent 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: -o-linear-gradient(transparent, transparent 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: linear-gradient(transparent, transparent 50%, #7c7c7c 50%, #7c7c7c) !important;
}

.bg-color-split-grey-dark-to-white {
  background: -webkit-gradient(linear, left top, left bottom, from(#7c7c7c), color-stop(50%, #7c7c7c), color-stop(50%, #fff), to(#fff)) !important;
  background: -webkit-linear-gradient(#7c7c7c, #7c7c7c 50%, #fff 50%, #fff) !important;
  background: -o-linear-gradient(#7c7c7c, #7c7c7c 50%, #fff 50%, #fff) !important;
  background: linear-gradient(#7c7c7c, #7c7c7c 50%, #fff 50%, #fff) !important;
}

.bg-color-split-grey-dark-to-black {
  background: -webkit-gradient(linear, left top, left bottom, from(#7c7c7c), color-stop(50%, #7c7c7c), color-stop(50%, #212121), to(#212121)) !important;
  background: -webkit-linear-gradient(#7c7c7c, #7c7c7c 50%, #212121 50%, #212121) !important;
  background: -o-linear-gradient(#7c7c7c, #7c7c7c 50%, #212121 50%, #212121) !important;
  background: linear-gradient(#7c7c7c, #7c7c7c 50%, #212121 50%, #212121) !important;
}

.bg-color-split-grey-dark-to-grey {
  background: -webkit-gradient(linear, left top, left bottom, from(#7c7c7c), color-stop(50%, #7c7c7c), color-stop(50%, #a8aca4), to(#a8aca4)) !important;
  background: -webkit-linear-gradient(#7c7c7c, #7c7c7c 50%, #a8aca4 50%, #a8aca4) !important;
  background: -o-linear-gradient(#7c7c7c, #7c7c7c 50%, #a8aca4 50%, #a8aca4) !important;
  background: linear-gradient(#7c7c7c, #7c7c7c 50%, #a8aca4 50%, #a8aca4) !important;
}

.bg-color-split-grey-dark-to-grey-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#7c7c7c), color-stop(50%, #7c7c7c), color-stop(50%, #7c7c7c), to(#7c7c7c)) !important;
  background: -webkit-linear-gradient(#7c7c7c, #7c7c7c 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: -o-linear-gradient(#7c7c7c, #7c7c7c 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: linear-gradient(#7c7c7c, #7c7c7c 50%, #7c7c7c 50%, #7c7c7c) !important;
}

.bg-color-split-grey-dark-to-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#7c7c7c), color-stop(50%, #7c7c7c), color-stop(50%, #0019e6), to(#0019e6)) !important;
  background: -webkit-linear-gradient(#7c7c7c, #7c7c7c 50%, #0019e6 50%, #0019e6) !important;
  background: -o-linear-gradient(#7c7c7c, #7c7c7c 50%, #0019e6 50%, #0019e6) !important;
  background: linear-gradient(#7c7c7c, #7c7c7c 50%, #0019e6 50%, #0019e6) !important;
}

.bg-color-split-grey-dark-to-blue-lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(#7c7c7c), color-stop(50%, #7c7c7c), color-stop(50%, #f2f5ff), to(#f2f5ff)) !important;
  background: -webkit-linear-gradient(#7c7c7c, #7c7c7c 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: -o-linear-gradient(#7c7c7c, #7c7c7c 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: linear-gradient(#7c7c7c, #7c7c7c 50%, #f2f5ff 50%, #f2f5ff) !important;
}

.bg-color-split-grey-dark-to-blue-light {
  background: -webkit-gradient(linear, left top, left bottom, from(#7c7c7c), color-stop(50%, #7c7c7c), color-stop(50%, #e6e8fd), to(#e6e8fd)) !important;
  background: -webkit-linear-gradient(#7c7c7c, #7c7c7c 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: -o-linear-gradient(#7c7c7c, #7c7c7c 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: linear-gradient(#7c7c7c, #7c7c7c 50%, #e6e8fd 50%, #e6e8fd) !important;
}

.bg-color-split-grey-dark-to-blue-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(#7c7c7c), color-stop(50%, #7c7c7c), color-stop(50%, #bdbfd5), to(#bdbfd5)) !important;
  background: -webkit-linear-gradient(#7c7c7c, #7c7c7c 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: -o-linear-gradient(#7c7c7c, #7c7c7c 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: linear-gradient(#7c7c7c, #7c7c7c 50%, #bdbfd5 50%, #bdbfd5) !important;
}

.bg-color-split-grey-dark-to-blue-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#7c7c7c), color-stop(50%, #7c7c7c), color-stop(50%, #01125c), to(#01125c)) !important;
  background: -webkit-linear-gradient(#7c7c7c, #7c7c7c 50%, #01125c 50%, #01125c) !important;
  background: -o-linear-gradient(#7c7c7c, #7c7c7c 50%, #01125c 50%, #01125c) !important;
  background: linear-gradient(#7c7c7c, #7c7c7c 50%, #01125c 50%, #01125c) !important;
}

.bg-color-split-grey-dark-to-blue-faded {
  background: -webkit-gradient(linear, left top, left bottom, from(#7c7c7c), color-stop(50%, #7c7c7c), color-stop(50%, #4d5da3), to(#4d5da3)) !important;
  background: -webkit-linear-gradient(#7c7c7c, #7c7c7c 50%, #4d5da3 50%, #4d5da3) !important;
  background: -o-linear-gradient(#7c7c7c, #7c7c7c 50%, #4d5da3 50%, #4d5da3) !important;
  background: linear-gradient(#7c7c7c, #7c7c7c 50%, #4d5da3 50%, #4d5da3) !important;
}

.bg-color-split-grey-dark-to-cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(#7c7c7c), color-stop(50%, #7c7c7c), color-stop(50%, #25faf2), to(#25faf2)) !important;
  background: -webkit-linear-gradient(#7c7c7c, #7c7c7c 50%, #25faf2 50%, #25faf2) !important;
  background: -o-linear-gradient(#7c7c7c, #7c7c7c 50%, #25faf2 50%, #25faf2) !important;
  background: linear-gradient(#7c7c7c, #7c7c7c 50%, #25faf2 50%, #25faf2) !important;
}

.bg-color-split-grey-dark-to-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#7c7c7c), color-stop(50%, #7c7c7c), color-stop(50%, #00a80d), to(#00a80d)) !important;
  background: -webkit-linear-gradient(#7c7c7c, #7c7c7c 50%, #00a80d 50%, #00a80d) !important;
  background: -o-linear-gradient(#7c7c7c, #7c7c7c 50%, #00a80d 50%, #00a80d) !important;
  background: linear-gradient(#7c7c7c, #7c7c7c 50%, #00a80d 50%, #00a80d) !important;
}

.bg-color-split-grey-dark-to-box-shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(#7c7c7c), color-stop(50%, #7c7c7c), color-stop(50%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))) !important;
  background: -webkit-linear-gradient(#7c7c7c, #7c7c7c 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: -o-linear-gradient(#7c7c7c, #7c7c7c 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: linear-gradient(#7c7c7c, #7c7c7c 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
}

.bg-color-split-grey-dark-to-validation {
  background: -webkit-gradient(linear, left top, left bottom, from(#7c7c7c), color-stop(50%, #7c7c7c), color-stop(50%, #f00), to(#f00)) !important;
  background: -webkit-linear-gradient(#7c7c7c, #7c7c7c 50%, #f00 50%, #f00) !important;
  background: -o-linear-gradient(#7c7c7c, #7c7c7c 50%, #f00 50%, #f00) !important;
  background: linear-gradient(#7c7c7c, #7c7c7c 50%, #f00 50%, #f00) !important;
}

.bg-color-split-blue-to-none {
  background: -webkit-gradient(linear, left top, left bottom, from(#0019e6), color-stop(50%, #0019e6), color-stop(50%, transparent), to(transparent)) !important;
  background: -webkit-linear-gradient(#0019e6, #0019e6 50%, transparent 50%, transparent) !important;
  background: -o-linear-gradient(#0019e6, #0019e6 50%, transparent 50%, transparent) !important;
  background: linear-gradient(#0019e6, #0019e6 50%, transparent 50%, transparent) !important;
}

.bg-color-split-none-to-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #0019e6), to(#0019e6)) !important;
  background: -webkit-linear-gradient(transparent, transparent 50%, #0019e6 50%, #0019e6) !important;
  background: -o-linear-gradient(transparent, transparent 50%, #0019e6 50%, #0019e6) !important;
  background: linear-gradient(transparent, transparent 50%, #0019e6 50%, #0019e6) !important;
}

.bg-color-split-blue-to-white {
  background: -webkit-gradient(linear, left top, left bottom, from(#0019e6), color-stop(50%, #0019e6), color-stop(50%, #fff), to(#fff)) !important;
  background: -webkit-linear-gradient(#0019e6, #0019e6 50%, #fff 50%, #fff) !important;
  background: -o-linear-gradient(#0019e6, #0019e6 50%, #fff 50%, #fff) !important;
  background: linear-gradient(#0019e6, #0019e6 50%, #fff 50%, #fff) !important;
}

.bg-color-split-blue-to-black {
  background: -webkit-gradient(linear, left top, left bottom, from(#0019e6), color-stop(50%, #0019e6), color-stop(50%, #212121), to(#212121)) !important;
  background: -webkit-linear-gradient(#0019e6, #0019e6 50%, #212121 50%, #212121) !important;
  background: -o-linear-gradient(#0019e6, #0019e6 50%, #212121 50%, #212121) !important;
  background: linear-gradient(#0019e6, #0019e6 50%, #212121 50%, #212121) !important;
}

.bg-color-split-blue-to-grey {
  background: -webkit-gradient(linear, left top, left bottom, from(#0019e6), color-stop(50%, #0019e6), color-stop(50%, #a8aca4), to(#a8aca4)) !important;
  background: -webkit-linear-gradient(#0019e6, #0019e6 50%, #a8aca4 50%, #a8aca4) !important;
  background: -o-linear-gradient(#0019e6, #0019e6 50%, #a8aca4 50%, #a8aca4) !important;
  background: linear-gradient(#0019e6, #0019e6 50%, #a8aca4 50%, #a8aca4) !important;
}

.bg-color-split-blue-to-grey-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#0019e6), color-stop(50%, #0019e6), color-stop(50%, #7c7c7c), to(#7c7c7c)) !important;
  background: -webkit-linear-gradient(#0019e6, #0019e6 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: -o-linear-gradient(#0019e6, #0019e6 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: linear-gradient(#0019e6, #0019e6 50%, #7c7c7c 50%, #7c7c7c) !important;
}

.bg-color-split-blue-to-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#0019e6), color-stop(50%, #0019e6), color-stop(50%, #0019e6), to(#0019e6)) !important;
  background: -webkit-linear-gradient(#0019e6, #0019e6 50%, #0019e6 50%, #0019e6) !important;
  background: -o-linear-gradient(#0019e6, #0019e6 50%, #0019e6 50%, #0019e6) !important;
  background: linear-gradient(#0019e6, #0019e6 50%, #0019e6 50%, #0019e6) !important;
}

.bg-color-split-blue-to-blue-lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(#0019e6), color-stop(50%, #0019e6), color-stop(50%, #f2f5ff), to(#f2f5ff)) !important;
  background: -webkit-linear-gradient(#0019e6, #0019e6 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: -o-linear-gradient(#0019e6, #0019e6 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: linear-gradient(#0019e6, #0019e6 50%, #f2f5ff 50%, #f2f5ff) !important;
}

.bg-color-split-blue-to-blue-light {
  background: -webkit-gradient(linear, left top, left bottom, from(#0019e6), color-stop(50%, #0019e6), color-stop(50%, #e6e8fd), to(#e6e8fd)) !important;
  background: -webkit-linear-gradient(#0019e6, #0019e6 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: -o-linear-gradient(#0019e6, #0019e6 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: linear-gradient(#0019e6, #0019e6 50%, #e6e8fd 50%, #e6e8fd) !important;
}

.bg-color-split-blue-to-blue-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(#0019e6), color-stop(50%, #0019e6), color-stop(50%, #bdbfd5), to(#bdbfd5)) !important;
  background: -webkit-linear-gradient(#0019e6, #0019e6 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: -o-linear-gradient(#0019e6, #0019e6 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: linear-gradient(#0019e6, #0019e6 50%, #bdbfd5 50%, #bdbfd5) !important;
}

.bg-color-split-blue-to-blue-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#0019e6), color-stop(50%, #0019e6), color-stop(50%, #01125c), to(#01125c)) !important;
  background: -webkit-linear-gradient(#0019e6, #0019e6 50%, #01125c 50%, #01125c) !important;
  background: -o-linear-gradient(#0019e6, #0019e6 50%, #01125c 50%, #01125c) !important;
  background: linear-gradient(#0019e6, #0019e6 50%, #01125c 50%, #01125c) !important;
}

.bg-color-split-blue-to-blue-faded {
  background: -webkit-gradient(linear, left top, left bottom, from(#0019e6), color-stop(50%, #0019e6), color-stop(50%, #4d5da3), to(#4d5da3)) !important;
  background: -webkit-linear-gradient(#0019e6, #0019e6 50%, #4d5da3 50%, #4d5da3) !important;
  background: -o-linear-gradient(#0019e6, #0019e6 50%, #4d5da3 50%, #4d5da3) !important;
  background: linear-gradient(#0019e6, #0019e6 50%, #4d5da3 50%, #4d5da3) !important;
}

.bg-color-split-blue-to-cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(#0019e6), color-stop(50%, #0019e6), color-stop(50%, #25faf2), to(#25faf2)) !important;
  background: -webkit-linear-gradient(#0019e6, #0019e6 50%, #25faf2 50%, #25faf2) !important;
  background: -o-linear-gradient(#0019e6, #0019e6 50%, #25faf2 50%, #25faf2) !important;
  background: linear-gradient(#0019e6, #0019e6 50%, #25faf2 50%, #25faf2) !important;
}

.bg-color-split-blue-to-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#0019e6), color-stop(50%, #0019e6), color-stop(50%, #00a80d), to(#00a80d)) !important;
  background: -webkit-linear-gradient(#0019e6, #0019e6 50%, #00a80d 50%, #00a80d) !important;
  background: -o-linear-gradient(#0019e6, #0019e6 50%, #00a80d 50%, #00a80d) !important;
  background: linear-gradient(#0019e6, #0019e6 50%, #00a80d 50%, #00a80d) !important;
}

.bg-color-split-blue-to-box-shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(#0019e6), color-stop(50%, #0019e6), color-stop(50%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))) !important;
  background: -webkit-linear-gradient(#0019e6, #0019e6 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: -o-linear-gradient(#0019e6, #0019e6 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: linear-gradient(#0019e6, #0019e6 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
}

.bg-color-split-blue-to-validation {
  background: -webkit-gradient(linear, left top, left bottom, from(#0019e6), color-stop(50%, #0019e6), color-stop(50%, #f00), to(#f00)) !important;
  background: -webkit-linear-gradient(#0019e6, #0019e6 50%, #f00 50%, #f00) !important;
  background: -o-linear-gradient(#0019e6, #0019e6 50%, #f00 50%, #f00) !important;
  background: linear-gradient(#0019e6, #0019e6 50%, #f00 50%, #f00) !important;
}

.bg-color-split-blue-lighter-to-none {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5ff), color-stop(50%, #f2f5ff), color-stop(50%, transparent), to(transparent)) !important;
  background: -webkit-linear-gradient(#f2f5ff, #f2f5ff 50%, transparent 50%, transparent) !important;
  background: -o-linear-gradient(#f2f5ff, #f2f5ff 50%, transparent 50%, transparent) !important;
  background: linear-gradient(#f2f5ff, #f2f5ff 50%, transparent 50%, transparent) !important;
}

.bg-color-split-none-to-blue-lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #f2f5ff), to(#f2f5ff)) !important;
  background: -webkit-linear-gradient(transparent, transparent 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: -o-linear-gradient(transparent, transparent 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: linear-gradient(transparent, transparent 50%, #f2f5ff 50%, #f2f5ff) !important;
}

.bg-color-split-blue-lighter-to-white {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5ff), color-stop(50%, #f2f5ff), color-stop(50%, #fff), to(#fff)) !important;
  background: -webkit-linear-gradient(#f2f5ff, #f2f5ff 50%, #fff 50%, #fff) !important;
  background: -o-linear-gradient(#f2f5ff, #f2f5ff 50%, #fff 50%, #fff) !important;
  background: linear-gradient(#f2f5ff, #f2f5ff 50%, #fff 50%, #fff) !important;
}

.bg-color-split-blue-lighter-to-black {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5ff), color-stop(50%, #f2f5ff), color-stop(50%, #212121), to(#212121)) !important;
  background: -webkit-linear-gradient(#f2f5ff, #f2f5ff 50%, #212121 50%, #212121) !important;
  background: -o-linear-gradient(#f2f5ff, #f2f5ff 50%, #212121 50%, #212121) !important;
  background: linear-gradient(#f2f5ff, #f2f5ff 50%, #212121 50%, #212121) !important;
}

.bg-color-split-blue-lighter-to-grey {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5ff), color-stop(50%, #f2f5ff), color-stop(50%, #a8aca4), to(#a8aca4)) !important;
  background: -webkit-linear-gradient(#f2f5ff, #f2f5ff 50%, #a8aca4 50%, #a8aca4) !important;
  background: -o-linear-gradient(#f2f5ff, #f2f5ff 50%, #a8aca4 50%, #a8aca4) !important;
  background: linear-gradient(#f2f5ff, #f2f5ff 50%, #a8aca4 50%, #a8aca4) !important;
}

.bg-color-split-blue-lighter-to-grey-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5ff), color-stop(50%, #f2f5ff), color-stop(50%, #7c7c7c), to(#7c7c7c)) !important;
  background: -webkit-linear-gradient(#f2f5ff, #f2f5ff 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: -o-linear-gradient(#f2f5ff, #f2f5ff 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: linear-gradient(#f2f5ff, #f2f5ff 50%, #7c7c7c 50%, #7c7c7c) !important;
}

.bg-color-split-blue-lighter-to-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5ff), color-stop(50%, #f2f5ff), color-stop(50%, #0019e6), to(#0019e6)) !important;
  background: -webkit-linear-gradient(#f2f5ff, #f2f5ff 50%, #0019e6 50%, #0019e6) !important;
  background: -o-linear-gradient(#f2f5ff, #f2f5ff 50%, #0019e6 50%, #0019e6) !important;
  background: linear-gradient(#f2f5ff, #f2f5ff 50%, #0019e6 50%, #0019e6) !important;
}

.bg-color-split-blue-lighter-to-blue-lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5ff), color-stop(50%, #f2f5ff), color-stop(50%, #f2f5ff), to(#f2f5ff)) !important;
  background: -webkit-linear-gradient(#f2f5ff, #f2f5ff 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: -o-linear-gradient(#f2f5ff, #f2f5ff 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: linear-gradient(#f2f5ff, #f2f5ff 50%, #f2f5ff 50%, #f2f5ff) !important;
}

.bg-color-split-blue-lighter-to-blue-light {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5ff), color-stop(50%, #f2f5ff), color-stop(50%, #e6e8fd), to(#e6e8fd)) !important;
  background: -webkit-linear-gradient(#f2f5ff, #f2f5ff 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: -o-linear-gradient(#f2f5ff, #f2f5ff 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: linear-gradient(#f2f5ff, #f2f5ff 50%, #e6e8fd 50%, #e6e8fd) !important;
}

.bg-color-split-blue-lighter-to-blue-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5ff), color-stop(50%, #f2f5ff), color-stop(50%, #bdbfd5), to(#bdbfd5)) !important;
  background: -webkit-linear-gradient(#f2f5ff, #f2f5ff 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: -o-linear-gradient(#f2f5ff, #f2f5ff 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: linear-gradient(#f2f5ff, #f2f5ff 50%, #bdbfd5 50%, #bdbfd5) !important;
}

.bg-color-split-blue-lighter-to-blue-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5ff), color-stop(50%, #f2f5ff), color-stop(50%, #01125c), to(#01125c)) !important;
  background: -webkit-linear-gradient(#f2f5ff, #f2f5ff 50%, #01125c 50%, #01125c) !important;
  background: -o-linear-gradient(#f2f5ff, #f2f5ff 50%, #01125c 50%, #01125c) !important;
  background: linear-gradient(#f2f5ff, #f2f5ff 50%, #01125c 50%, #01125c) !important;
}

.bg-color-split-blue-lighter-to-blue-faded {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5ff), color-stop(50%, #f2f5ff), color-stop(50%, #4d5da3), to(#4d5da3)) !important;
  background: -webkit-linear-gradient(#f2f5ff, #f2f5ff 50%, #4d5da3 50%, #4d5da3) !important;
  background: -o-linear-gradient(#f2f5ff, #f2f5ff 50%, #4d5da3 50%, #4d5da3) !important;
  background: linear-gradient(#f2f5ff, #f2f5ff 50%, #4d5da3 50%, #4d5da3) !important;
}

.bg-color-split-blue-lighter-to-cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5ff), color-stop(50%, #f2f5ff), color-stop(50%, #25faf2), to(#25faf2)) !important;
  background: -webkit-linear-gradient(#f2f5ff, #f2f5ff 50%, #25faf2 50%, #25faf2) !important;
  background: -o-linear-gradient(#f2f5ff, #f2f5ff 50%, #25faf2 50%, #25faf2) !important;
  background: linear-gradient(#f2f5ff, #f2f5ff 50%, #25faf2 50%, #25faf2) !important;
}

.bg-color-split-blue-lighter-to-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5ff), color-stop(50%, #f2f5ff), color-stop(50%, #00a80d), to(#00a80d)) !important;
  background: -webkit-linear-gradient(#f2f5ff, #f2f5ff 50%, #00a80d 50%, #00a80d) !important;
  background: -o-linear-gradient(#f2f5ff, #f2f5ff 50%, #00a80d 50%, #00a80d) !important;
  background: linear-gradient(#f2f5ff, #f2f5ff 50%, #00a80d 50%, #00a80d) !important;
}

.bg-color-split-blue-lighter-to-box-shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5ff), color-stop(50%, #f2f5ff), color-stop(50%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))) !important;
  background: -webkit-linear-gradient(#f2f5ff, #f2f5ff 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: -o-linear-gradient(#f2f5ff, #f2f5ff 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: linear-gradient(#f2f5ff, #f2f5ff 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
}

.bg-color-split-blue-lighter-to-validation {
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f5ff), color-stop(50%, #f2f5ff), color-stop(50%, #f00), to(#f00)) !important;
  background: -webkit-linear-gradient(#f2f5ff, #f2f5ff 50%, #f00 50%, #f00) !important;
  background: -o-linear-gradient(#f2f5ff, #f2f5ff 50%, #f00 50%, #f00) !important;
  background: linear-gradient(#f2f5ff, #f2f5ff 50%, #f00 50%, #f00) !important;
}

.bg-color-split-blue-light-to-none {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e8fd), color-stop(50%, #e6e8fd), color-stop(50%, transparent), to(transparent)) !important;
  background: -webkit-linear-gradient(#e6e8fd, #e6e8fd 50%, transparent 50%, transparent) !important;
  background: -o-linear-gradient(#e6e8fd, #e6e8fd 50%, transparent 50%, transparent) !important;
  background: linear-gradient(#e6e8fd, #e6e8fd 50%, transparent 50%, transparent) !important;
}

.bg-color-split-none-to-blue-light {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #e6e8fd), to(#e6e8fd)) !important;
  background: -webkit-linear-gradient(transparent, transparent 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: -o-linear-gradient(transparent, transparent 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: linear-gradient(transparent, transparent 50%, #e6e8fd 50%, #e6e8fd) !important;
}

.bg-color-split-blue-light-to-white {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e8fd), color-stop(50%, #e6e8fd), color-stop(50%, #fff), to(#fff)) !important;
  background: -webkit-linear-gradient(#e6e8fd, #e6e8fd 50%, #fff 50%, #fff) !important;
  background: -o-linear-gradient(#e6e8fd, #e6e8fd 50%, #fff 50%, #fff) !important;
  background: linear-gradient(#e6e8fd, #e6e8fd 50%, #fff 50%, #fff) !important;
}

.bg-color-split-blue-light-to-black {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e8fd), color-stop(50%, #e6e8fd), color-stop(50%, #212121), to(#212121)) !important;
  background: -webkit-linear-gradient(#e6e8fd, #e6e8fd 50%, #212121 50%, #212121) !important;
  background: -o-linear-gradient(#e6e8fd, #e6e8fd 50%, #212121 50%, #212121) !important;
  background: linear-gradient(#e6e8fd, #e6e8fd 50%, #212121 50%, #212121) !important;
}

.bg-color-split-blue-light-to-grey {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e8fd), color-stop(50%, #e6e8fd), color-stop(50%, #a8aca4), to(#a8aca4)) !important;
  background: -webkit-linear-gradient(#e6e8fd, #e6e8fd 50%, #a8aca4 50%, #a8aca4) !important;
  background: -o-linear-gradient(#e6e8fd, #e6e8fd 50%, #a8aca4 50%, #a8aca4) !important;
  background: linear-gradient(#e6e8fd, #e6e8fd 50%, #a8aca4 50%, #a8aca4) !important;
}

.bg-color-split-blue-light-to-grey-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e8fd), color-stop(50%, #e6e8fd), color-stop(50%, #7c7c7c), to(#7c7c7c)) !important;
  background: -webkit-linear-gradient(#e6e8fd, #e6e8fd 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: -o-linear-gradient(#e6e8fd, #e6e8fd 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: linear-gradient(#e6e8fd, #e6e8fd 50%, #7c7c7c 50%, #7c7c7c) !important;
}

.bg-color-split-blue-light-to-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e8fd), color-stop(50%, #e6e8fd), color-stop(50%, #0019e6), to(#0019e6)) !important;
  background: -webkit-linear-gradient(#e6e8fd, #e6e8fd 50%, #0019e6 50%, #0019e6) !important;
  background: -o-linear-gradient(#e6e8fd, #e6e8fd 50%, #0019e6 50%, #0019e6) !important;
  background: linear-gradient(#e6e8fd, #e6e8fd 50%, #0019e6 50%, #0019e6) !important;
}

.bg-color-split-blue-light-to-blue-lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e8fd), color-stop(50%, #e6e8fd), color-stop(50%, #f2f5ff), to(#f2f5ff)) !important;
  background: -webkit-linear-gradient(#e6e8fd, #e6e8fd 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: -o-linear-gradient(#e6e8fd, #e6e8fd 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: linear-gradient(#e6e8fd, #e6e8fd 50%, #f2f5ff 50%, #f2f5ff) !important;
}

.bg-color-split-blue-light-to-blue-light {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e8fd), color-stop(50%, #e6e8fd), color-stop(50%, #e6e8fd), to(#e6e8fd)) !important;
  background: -webkit-linear-gradient(#e6e8fd, #e6e8fd 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: -o-linear-gradient(#e6e8fd, #e6e8fd 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: linear-gradient(#e6e8fd, #e6e8fd 50%, #e6e8fd 50%, #e6e8fd) !important;
}

.bg-color-split-blue-light-to-blue-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e8fd), color-stop(50%, #e6e8fd), color-stop(50%, #bdbfd5), to(#bdbfd5)) !important;
  background: -webkit-linear-gradient(#e6e8fd, #e6e8fd 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: -o-linear-gradient(#e6e8fd, #e6e8fd 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: linear-gradient(#e6e8fd, #e6e8fd 50%, #bdbfd5 50%, #bdbfd5) !important;
}

.bg-color-split-blue-light-to-blue-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e8fd), color-stop(50%, #e6e8fd), color-stop(50%, #01125c), to(#01125c)) !important;
  background: -webkit-linear-gradient(#e6e8fd, #e6e8fd 50%, #01125c 50%, #01125c) !important;
  background: -o-linear-gradient(#e6e8fd, #e6e8fd 50%, #01125c 50%, #01125c) !important;
  background: linear-gradient(#e6e8fd, #e6e8fd 50%, #01125c 50%, #01125c) !important;
}

.bg-color-split-blue-light-to-blue-faded {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e8fd), color-stop(50%, #e6e8fd), color-stop(50%, #4d5da3), to(#4d5da3)) !important;
  background: -webkit-linear-gradient(#e6e8fd, #e6e8fd 50%, #4d5da3 50%, #4d5da3) !important;
  background: -o-linear-gradient(#e6e8fd, #e6e8fd 50%, #4d5da3 50%, #4d5da3) !important;
  background: linear-gradient(#e6e8fd, #e6e8fd 50%, #4d5da3 50%, #4d5da3) !important;
}

.bg-color-split-blue-light-to-cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e8fd), color-stop(50%, #e6e8fd), color-stop(50%, #25faf2), to(#25faf2)) !important;
  background: -webkit-linear-gradient(#e6e8fd, #e6e8fd 50%, #25faf2 50%, #25faf2) !important;
  background: -o-linear-gradient(#e6e8fd, #e6e8fd 50%, #25faf2 50%, #25faf2) !important;
  background: linear-gradient(#e6e8fd, #e6e8fd 50%, #25faf2 50%, #25faf2) !important;
}

.bg-color-split-blue-light-to-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e8fd), color-stop(50%, #e6e8fd), color-stop(50%, #00a80d), to(#00a80d)) !important;
  background: -webkit-linear-gradient(#e6e8fd, #e6e8fd 50%, #00a80d 50%, #00a80d) !important;
  background: -o-linear-gradient(#e6e8fd, #e6e8fd 50%, #00a80d 50%, #00a80d) !important;
  background: linear-gradient(#e6e8fd, #e6e8fd 50%, #00a80d 50%, #00a80d) !important;
}

.bg-color-split-blue-light-to-box-shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e8fd), color-stop(50%, #e6e8fd), color-stop(50%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))) !important;
  background: -webkit-linear-gradient(#e6e8fd, #e6e8fd 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: -o-linear-gradient(#e6e8fd, #e6e8fd 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: linear-gradient(#e6e8fd, #e6e8fd 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
}

.bg-color-split-blue-light-to-validation {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e8fd), color-stop(50%, #e6e8fd), color-stop(50%, #f00), to(#f00)) !important;
  background: -webkit-linear-gradient(#e6e8fd, #e6e8fd 50%, #f00 50%, #f00) !important;
  background: -o-linear-gradient(#e6e8fd, #e6e8fd 50%, #f00 50%, #f00) !important;
  background: linear-gradient(#e6e8fd, #e6e8fd 50%, #f00 50%, #f00) !important;
}

.bg-color-split-blue-medium-to-none {
  background: -webkit-gradient(linear, left top, left bottom, from(#bdbfd5), color-stop(50%, #bdbfd5), color-stop(50%, transparent), to(transparent)) !important;
  background: -webkit-linear-gradient(#bdbfd5, #bdbfd5 50%, transparent 50%, transparent) !important;
  background: -o-linear-gradient(#bdbfd5, #bdbfd5 50%, transparent 50%, transparent) !important;
  background: linear-gradient(#bdbfd5, #bdbfd5 50%, transparent 50%, transparent) !important;
}

.bg-color-split-none-to-blue-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #bdbfd5), to(#bdbfd5)) !important;
  background: -webkit-linear-gradient(transparent, transparent 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: -o-linear-gradient(transparent, transparent 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: linear-gradient(transparent, transparent 50%, #bdbfd5 50%, #bdbfd5) !important;
}

.bg-color-split-blue-medium-to-white {
  background: -webkit-gradient(linear, left top, left bottom, from(#bdbfd5), color-stop(50%, #bdbfd5), color-stop(50%, #fff), to(#fff)) !important;
  background: -webkit-linear-gradient(#bdbfd5, #bdbfd5 50%, #fff 50%, #fff) !important;
  background: -o-linear-gradient(#bdbfd5, #bdbfd5 50%, #fff 50%, #fff) !important;
  background: linear-gradient(#bdbfd5, #bdbfd5 50%, #fff 50%, #fff) !important;
}

.bg-color-split-blue-medium-to-black {
  background: -webkit-gradient(linear, left top, left bottom, from(#bdbfd5), color-stop(50%, #bdbfd5), color-stop(50%, #212121), to(#212121)) !important;
  background: -webkit-linear-gradient(#bdbfd5, #bdbfd5 50%, #212121 50%, #212121) !important;
  background: -o-linear-gradient(#bdbfd5, #bdbfd5 50%, #212121 50%, #212121) !important;
  background: linear-gradient(#bdbfd5, #bdbfd5 50%, #212121 50%, #212121) !important;
}

.bg-color-split-blue-medium-to-grey {
  background: -webkit-gradient(linear, left top, left bottom, from(#bdbfd5), color-stop(50%, #bdbfd5), color-stop(50%, #a8aca4), to(#a8aca4)) !important;
  background: -webkit-linear-gradient(#bdbfd5, #bdbfd5 50%, #a8aca4 50%, #a8aca4) !important;
  background: -o-linear-gradient(#bdbfd5, #bdbfd5 50%, #a8aca4 50%, #a8aca4) !important;
  background: linear-gradient(#bdbfd5, #bdbfd5 50%, #a8aca4 50%, #a8aca4) !important;
}

.bg-color-split-blue-medium-to-grey-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#bdbfd5), color-stop(50%, #bdbfd5), color-stop(50%, #7c7c7c), to(#7c7c7c)) !important;
  background: -webkit-linear-gradient(#bdbfd5, #bdbfd5 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: -o-linear-gradient(#bdbfd5, #bdbfd5 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: linear-gradient(#bdbfd5, #bdbfd5 50%, #7c7c7c 50%, #7c7c7c) !important;
}

.bg-color-split-blue-medium-to-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#bdbfd5), color-stop(50%, #bdbfd5), color-stop(50%, #0019e6), to(#0019e6)) !important;
  background: -webkit-linear-gradient(#bdbfd5, #bdbfd5 50%, #0019e6 50%, #0019e6) !important;
  background: -o-linear-gradient(#bdbfd5, #bdbfd5 50%, #0019e6 50%, #0019e6) !important;
  background: linear-gradient(#bdbfd5, #bdbfd5 50%, #0019e6 50%, #0019e6) !important;
}

.bg-color-split-blue-medium-to-blue-lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(#bdbfd5), color-stop(50%, #bdbfd5), color-stop(50%, #f2f5ff), to(#f2f5ff)) !important;
  background: -webkit-linear-gradient(#bdbfd5, #bdbfd5 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: -o-linear-gradient(#bdbfd5, #bdbfd5 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: linear-gradient(#bdbfd5, #bdbfd5 50%, #f2f5ff 50%, #f2f5ff) !important;
}

.bg-color-split-blue-medium-to-blue-light {
  background: -webkit-gradient(linear, left top, left bottom, from(#bdbfd5), color-stop(50%, #bdbfd5), color-stop(50%, #e6e8fd), to(#e6e8fd)) !important;
  background: -webkit-linear-gradient(#bdbfd5, #bdbfd5 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: -o-linear-gradient(#bdbfd5, #bdbfd5 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: linear-gradient(#bdbfd5, #bdbfd5 50%, #e6e8fd 50%, #e6e8fd) !important;
}

.bg-color-split-blue-medium-to-blue-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(#bdbfd5), color-stop(50%, #bdbfd5), color-stop(50%, #bdbfd5), to(#bdbfd5)) !important;
  background: -webkit-linear-gradient(#bdbfd5, #bdbfd5 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: -o-linear-gradient(#bdbfd5, #bdbfd5 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: linear-gradient(#bdbfd5, #bdbfd5 50%, #bdbfd5 50%, #bdbfd5) !important;
}

.bg-color-split-blue-medium-to-blue-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#bdbfd5), color-stop(50%, #bdbfd5), color-stop(50%, #01125c), to(#01125c)) !important;
  background: -webkit-linear-gradient(#bdbfd5, #bdbfd5 50%, #01125c 50%, #01125c) !important;
  background: -o-linear-gradient(#bdbfd5, #bdbfd5 50%, #01125c 50%, #01125c) !important;
  background: linear-gradient(#bdbfd5, #bdbfd5 50%, #01125c 50%, #01125c) !important;
}

.bg-color-split-blue-medium-to-blue-faded {
  background: -webkit-gradient(linear, left top, left bottom, from(#bdbfd5), color-stop(50%, #bdbfd5), color-stop(50%, #4d5da3), to(#4d5da3)) !important;
  background: -webkit-linear-gradient(#bdbfd5, #bdbfd5 50%, #4d5da3 50%, #4d5da3) !important;
  background: -o-linear-gradient(#bdbfd5, #bdbfd5 50%, #4d5da3 50%, #4d5da3) !important;
  background: linear-gradient(#bdbfd5, #bdbfd5 50%, #4d5da3 50%, #4d5da3) !important;
}

.bg-color-split-blue-medium-to-cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(#bdbfd5), color-stop(50%, #bdbfd5), color-stop(50%, #25faf2), to(#25faf2)) !important;
  background: -webkit-linear-gradient(#bdbfd5, #bdbfd5 50%, #25faf2 50%, #25faf2) !important;
  background: -o-linear-gradient(#bdbfd5, #bdbfd5 50%, #25faf2 50%, #25faf2) !important;
  background: linear-gradient(#bdbfd5, #bdbfd5 50%, #25faf2 50%, #25faf2) !important;
}

.bg-color-split-blue-medium-to-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#bdbfd5), color-stop(50%, #bdbfd5), color-stop(50%, #00a80d), to(#00a80d)) !important;
  background: -webkit-linear-gradient(#bdbfd5, #bdbfd5 50%, #00a80d 50%, #00a80d) !important;
  background: -o-linear-gradient(#bdbfd5, #bdbfd5 50%, #00a80d 50%, #00a80d) !important;
  background: linear-gradient(#bdbfd5, #bdbfd5 50%, #00a80d 50%, #00a80d) !important;
}

.bg-color-split-blue-medium-to-box-shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(#bdbfd5), color-stop(50%, #bdbfd5), color-stop(50%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))) !important;
  background: -webkit-linear-gradient(#bdbfd5, #bdbfd5 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: -o-linear-gradient(#bdbfd5, #bdbfd5 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: linear-gradient(#bdbfd5, #bdbfd5 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
}

.bg-color-split-blue-medium-to-validation {
  background: -webkit-gradient(linear, left top, left bottom, from(#bdbfd5), color-stop(50%, #bdbfd5), color-stop(50%, #f00), to(#f00)) !important;
  background: -webkit-linear-gradient(#bdbfd5, #bdbfd5 50%, #f00 50%, #f00) !important;
  background: -o-linear-gradient(#bdbfd5, #bdbfd5 50%, #f00 50%, #f00) !important;
  background: linear-gradient(#bdbfd5, #bdbfd5 50%, #f00 50%, #f00) !important;
}

.bg-color-split-blue-dark-to-none {
  background: -webkit-gradient(linear, left top, left bottom, from(#01125c), color-stop(50%, #01125c), color-stop(50%, transparent), to(transparent)) !important;
  background: -webkit-linear-gradient(#01125c, #01125c 50%, transparent 50%, transparent) !important;
  background: -o-linear-gradient(#01125c, #01125c 50%, transparent 50%, transparent) !important;
  background: linear-gradient(#01125c, #01125c 50%, transparent 50%, transparent) !important;
}

.bg-color-split-none-to-blue-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #01125c), to(#01125c)) !important;
  background: -webkit-linear-gradient(transparent, transparent 50%, #01125c 50%, #01125c) !important;
  background: -o-linear-gradient(transparent, transparent 50%, #01125c 50%, #01125c) !important;
  background: linear-gradient(transparent, transparent 50%, #01125c 50%, #01125c) !important;
}

.bg-color-split-blue-dark-to-white {
  background: -webkit-gradient(linear, left top, left bottom, from(#01125c), color-stop(50%, #01125c), color-stop(50%, #fff), to(#fff)) !important;
  background: -webkit-linear-gradient(#01125c, #01125c 50%, #fff 50%, #fff) !important;
  background: -o-linear-gradient(#01125c, #01125c 50%, #fff 50%, #fff) !important;
  background: linear-gradient(#01125c, #01125c 50%, #fff 50%, #fff) !important;
}

.bg-color-split-blue-dark-to-black {
  background: -webkit-gradient(linear, left top, left bottom, from(#01125c), color-stop(50%, #01125c), color-stop(50%, #212121), to(#212121)) !important;
  background: -webkit-linear-gradient(#01125c, #01125c 50%, #212121 50%, #212121) !important;
  background: -o-linear-gradient(#01125c, #01125c 50%, #212121 50%, #212121) !important;
  background: linear-gradient(#01125c, #01125c 50%, #212121 50%, #212121) !important;
}

.bg-color-split-blue-dark-to-grey {
  background: -webkit-gradient(linear, left top, left bottom, from(#01125c), color-stop(50%, #01125c), color-stop(50%, #a8aca4), to(#a8aca4)) !important;
  background: -webkit-linear-gradient(#01125c, #01125c 50%, #a8aca4 50%, #a8aca4) !important;
  background: -o-linear-gradient(#01125c, #01125c 50%, #a8aca4 50%, #a8aca4) !important;
  background: linear-gradient(#01125c, #01125c 50%, #a8aca4 50%, #a8aca4) !important;
}

.bg-color-split-blue-dark-to-grey-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#01125c), color-stop(50%, #01125c), color-stop(50%, #7c7c7c), to(#7c7c7c)) !important;
  background: -webkit-linear-gradient(#01125c, #01125c 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: -o-linear-gradient(#01125c, #01125c 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: linear-gradient(#01125c, #01125c 50%, #7c7c7c 50%, #7c7c7c) !important;
}

.bg-color-split-blue-dark-to-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#01125c), color-stop(50%, #01125c), color-stop(50%, #0019e6), to(#0019e6)) !important;
  background: -webkit-linear-gradient(#01125c, #01125c 50%, #0019e6 50%, #0019e6) !important;
  background: -o-linear-gradient(#01125c, #01125c 50%, #0019e6 50%, #0019e6) !important;
  background: linear-gradient(#01125c, #01125c 50%, #0019e6 50%, #0019e6) !important;
}

.bg-color-split-blue-dark-to-blue-lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(#01125c), color-stop(50%, #01125c), color-stop(50%, #f2f5ff), to(#f2f5ff)) !important;
  background: -webkit-linear-gradient(#01125c, #01125c 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: -o-linear-gradient(#01125c, #01125c 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: linear-gradient(#01125c, #01125c 50%, #f2f5ff 50%, #f2f5ff) !important;
}

.bg-color-split-blue-dark-to-blue-light {
  background: -webkit-gradient(linear, left top, left bottom, from(#01125c), color-stop(50%, #01125c), color-stop(50%, #e6e8fd), to(#e6e8fd)) !important;
  background: -webkit-linear-gradient(#01125c, #01125c 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: -o-linear-gradient(#01125c, #01125c 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: linear-gradient(#01125c, #01125c 50%, #e6e8fd 50%, #e6e8fd) !important;
}

.bg-color-split-blue-dark-to-blue-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(#01125c), color-stop(50%, #01125c), color-stop(50%, #bdbfd5), to(#bdbfd5)) !important;
  background: -webkit-linear-gradient(#01125c, #01125c 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: -o-linear-gradient(#01125c, #01125c 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: linear-gradient(#01125c, #01125c 50%, #bdbfd5 50%, #bdbfd5) !important;
}

.bg-color-split-blue-dark-to-blue-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#01125c), color-stop(50%, #01125c), color-stop(50%, #01125c), to(#01125c)) !important;
  background: -webkit-linear-gradient(#01125c, #01125c 50%, #01125c 50%, #01125c) !important;
  background: -o-linear-gradient(#01125c, #01125c 50%, #01125c 50%, #01125c) !important;
  background: linear-gradient(#01125c, #01125c 50%, #01125c 50%, #01125c) !important;
}

.bg-color-split-blue-dark-to-blue-faded {
  background: -webkit-gradient(linear, left top, left bottom, from(#01125c), color-stop(50%, #01125c), color-stop(50%, #4d5da3), to(#4d5da3)) !important;
  background: -webkit-linear-gradient(#01125c, #01125c 50%, #4d5da3 50%, #4d5da3) !important;
  background: -o-linear-gradient(#01125c, #01125c 50%, #4d5da3 50%, #4d5da3) !important;
  background: linear-gradient(#01125c, #01125c 50%, #4d5da3 50%, #4d5da3) !important;
}

.bg-color-split-blue-dark-to-cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(#01125c), color-stop(50%, #01125c), color-stop(50%, #25faf2), to(#25faf2)) !important;
  background: -webkit-linear-gradient(#01125c, #01125c 50%, #25faf2 50%, #25faf2) !important;
  background: -o-linear-gradient(#01125c, #01125c 50%, #25faf2 50%, #25faf2) !important;
  background: linear-gradient(#01125c, #01125c 50%, #25faf2 50%, #25faf2) !important;
}

.bg-color-split-blue-dark-to-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#01125c), color-stop(50%, #01125c), color-stop(50%, #00a80d), to(#00a80d)) !important;
  background: -webkit-linear-gradient(#01125c, #01125c 50%, #00a80d 50%, #00a80d) !important;
  background: -o-linear-gradient(#01125c, #01125c 50%, #00a80d 50%, #00a80d) !important;
  background: linear-gradient(#01125c, #01125c 50%, #00a80d 50%, #00a80d) !important;
}

.bg-color-split-blue-dark-to-box-shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(#01125c), color-stop(50%, #01125c), color-stop(50%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))) !important;
  background: -webkit-linear-gradient(#01125c, #01125c 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: -o-linear-gradient(#01125c, #01125c 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: linear-gradient(#01125c, #01125c 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
}

.bg-color-split-blue-dark-to-validation {
  background: -webkit-gradient(linear, left top, left bottom, from(#01125c), color-stop(50%, #01125c), color-stop(50%, #f00), to(#f00)) !important;
  background: -webkit-linear-gradient(#01125c, #01125c 50%, #f00 50%, #f00) !important;
  background: -o-linear-gradient(#01125c, #01125c 50%, #f00 50%, #f00) !important;
  background: linear-gradient(#01125c, #01125c 50%, #f00 50%, #f00) !important;
}

.bg-color-split-blue-faded-to-none {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d5da3), color-stop(50%, #4d5da3), color-stop(50%, transparent), to(transparent)) !important;
  background: -webkit-linear-gradient(#4d5da3, #4d5da3 50%, transparent 50%, transparent) !important;
  background: -o-linear-gradient(#4d5da3, #4d5da3 50%, transparent 50%, transparent) !important;
  background: linear-gradient(#4d5da3, #4d5da3 50%, transparent 50%, transparent) !important;
}

.bg-color-split-none-to-blue-faded {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #4d5da3), to(#4d5da3)) !important;
  background: -webkit-linear-gradient(transparent, transparent 50%, #4d5da3 50%, #4d5da3) !important;
  background: -o-linear-gradient(transparent, transparent 50%, #4d5da3 50%, #4d5da3) !important;
  background: linear-gradient(transparent, transparent 50%, #4d5da3 50%, #4d5da3) !important;
}

.bg-color-split-blue-faded-to-white {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d5da3), color-stop(50%, #4d5da3), color-stop(50%, #fff), to(#fff)) !important;
  background: -webkit-linear-gradient(#4d5da3, #4d5da3 50%, #fff 50%, #fff) !important;
  background: -o-linear-gradient(#4d5da3, #4d5da3 50%, #fff 50%, #fff) !important;
  background: linear-gradient(#4d5da3, #4d5da3 50%, #fff 50%, #fff) !important;
}

.bg-color-split-blue-faded-to-black {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d5da3), color-stop(50%, #4d5da3), color-stop(50%, #212121), to(#212121)) !important;
  background: -webkit-linear-gradient(#4d5da3, #4d5da3 50%, #212121 50%, #212121) !important;
  background: -o-linear-gradient(#4d5da3, #4d5da3 50%, #212121 50%, #212121) !important;
  background: linear-gradient(#4d5da3, #4d5da3 50%, #212121 50%, #212121) !important;
}

.bg-color-split-blue-faded-to-grey {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d5da3), color-stop(50%, #4d5da3), color-stop(50%, #a8aca4), to(#a8aca4)) !important;
  background: -webkit-linear-gradient(#4d5da3, #4d5da3 50%, #a8aca4 50%, #a8aca4) !important;
  background: -o-linear-gradient(#4d5da3, #4d5da3 50%, #a8aca4 50%, #a8aca4) !important;
  background: linear-gradient(#4d5da3, #4d5da3 50%, #a8aca4 50%, #a8aca4) !important;
}

.bg-color-split-blue-faded-to-grey-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d5da3), color-stop(50%, #4d5da3), color-stop(50%, #7c7c7c), to(#7c7c7c)) !important;
  background: -webkit-linear-gradient(#4d5da3, #4d5da3 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: -o-linear-gradient(#4d5da3, #4d5da3 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: linear-gradient(#4d5da3, #4d5da3 50%, #7c7c7c 50%, #7c7c7c) !important;
}

.bg-color-split-blue-faded-to-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d5da3), color-stop(50%, #4d5da3), color-stop(50%, #0019e6), to(#0019e6)) !important;
  background: -webkit-linear-gradient(#4d5da3, #4d5da3 50%, #0019e6 50%, #0019e6) !important;
  background: -o-linear-gradient(#4d5da3, #4d5da3 50%, #0019e6 50%, #0019e6) !important;
  background: linear-gradient(#4d5da3, #4d5da3 50%, #0019e6 50%, #0019e6) !important;
}

.bg-color-split-blue-faded-to-blue-lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d5da3), color-stop(50%, #4d5da3), color-stop(50%, #f2f5ff), to(#f2f5ff)) !important;
  background: -webkit-linear-gradient(#4d5da3, #4d5da3 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: -o-linear-gradient(#4d5da3, #4d5da3 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: linear-gradient(#4d5da3, #4d5da3 50%, #f2f5ff 50%, #f2f5ff) !important;
}

.bg-color-split-blue-faded-to-blue-light {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d5da3), color-stop(50%, #4d5da3), color-stop(50%, #e6e8fd), to(#e6e8fd)) !important;
  background: -webkit-linear-gradient(#4d5da3, #4d5da3 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: -o-linear-gradient(#4d5da3, #4d5da3 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: linear-gradient(#4d5da3, #4d5da3 50%, #e6e8fd 50%, #e6e8fd) !important;
}

.bg-color-split-blue-faded-to-blue-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d5da3), color-stop(50%, #4d5da3), color-stop(50%, #bdbfd5), to(#bdbfd5)) !important;
  background: -webkit-linear-gradient(#4d5da3, #4d5da3 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: -o-linear-gradient(#4d5da3, #4d5da3 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: linear-gradient(#4d5da3, #4d5da3 50%, #bdbfd5 50%, #bdbfd5) !important;
}

.bg-color-split-blue-faded-to-blue-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d5da3), color-stop(50%, #4d5da3), color-stop(50%, #01125c), to(#01125c)) !important;
  background: -webkit-linear-gradient(#4d5da3, #4d5da3 50%, #01125c 50%, #01125c) !important;
  background: -o-linear-gradient(#4d5da3, #4d5da3 50%, #01125c 50%, #01125c) !important;
  background: linear-gradient(#4d5da3, #4d5da3 50%, #01125c 50%, #01125c) !important;
}

.bg-color-split-blue-faded-to-blue-faded {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d5da3), color-stop(50%, #4d5da3), color-stop(50%, #4d5da3), to(#4d5da3)) !important;
  background: -webkit-linear-gradient(#4d5da3, #4d5da3 50%, #4d5da3 50%, #4d5da3) !important;
  background: -o-linear-gradient(#4d5da3, #4d5da3 50%, #4d5da3 50%, #4d5da3) !important;
  background: linear-gradient(#4d5da3, #4d5da3 50%, #4d5da3 50%, #4d5da3) !important;
}

.bg-color-split-blue-faded-to-cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d5da3), color-stop(50%, #4d5da3), color-stop(50%, #25faf2), to(#25faf2)) !important;
  background: -webkit-linear-gradient(#4d5da3, #4d5da3 50%, #25faf2 50%, #25faf2) !important;
  background: -o-linear-gradient(#4d5da3, #4d5da3 50%, #25faf2 50%, #25faf2) !important;
  background: linear-gradient(#4d5da3, #4d5da3 50%, #25faf2 50%, #25faf2) !important;
}

.bg-color-split-blue-faded-to-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d5da3), color-stop(50%, #4d5da3), color-stop(50%, #00a80d), to(#00a80d)) !important;
  background: -webkit-linear-gradient(#4d5da3, #4d5da3 50%, #00a80d 50%, #00a80d) !important;
  background: -o-linear-gradient(#4d5da3, #4d5da3 50%, #00a80d 50%, #00a80d) !important;
  background: linear-gradient(#4d5da3, #4d5da3 50%, #00a80d 50%, #00a80d) !important;
}

.bg-color-split-blue-faded-to-box-shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d5da3), color-stop(50%, #4d5da3), color-stop(50%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))) !important;
  background: -webkit-linear-gradient(#4d5da3, #4d5da3 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: -o-linear-gradient(#4d5da3, #4d5da3 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: linear-gradient(#4d5da3, #4d5da3 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
}

.bg-color-split-blue-faded-to-validation {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d5da3), color-stop(50%, #4d5da3), color-stop(50%, #f00), to(#f00)) !important;
  background: -webkit-linear-gradient(#4d5da3, #4d5da3 50%, #f00 50%, #f00) !important;
  background: -o-linear-gradient(#4d5da3, #4d5da3 50%, #f00 50%, #f00) !important;
  background: linear-gradient(#4d5da3, #4d5da3 50%, #f00 50%, #f00) !important;
}

.bg-color-split-cyan-to-none {
  background: -webkit-gradient(linear, left top, left bottom, from(#25faf2), color-stop(50%, #25faf2), color-stop(50%, transparent), to(transparent)) !important;
  background: -webkit-linear-gradient(#25faf2, #25faf2 50%, transparent 50%, transparent) !important;
  background: -o-linear-gradient(#25faf2, #25faf2 50%, transparent 50%, transparent) !important;
  background: linear-gradient(#25faf2, #25faf2 50%, transparent 50%, transparent) !important;
}

.bg-color-split-none-to-cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #25faf2), to(#25faf2)) !important;
  background: -webkit-linear-gradient(transparent, transparent 50%, #25faf2 50%, #25faf2) !important;
  background: -o-linear-gradient(transparent, transparent 50%, #25faf2 50%, #25faf2) !important;
  background: linear-gradient(transparent, transparent 50%, #25faf2 50%, #25faf2) !important;
}

.bg-color-split-cyan-to-white {
  background: -webkit-gradient(linear, left top, left bottom, from(#25faf2), color-stop(50%, #25faf2), color-stop(50%, #fff), to(#fff)) !important;
  background: -webkit-linear-gradient(#25faf2, #25faf2 50%, #fff 50%, #fff) !important;
  background: -o-linear-gradient(#25faf2, #25faf2 50%, #fff 50%, #fff) !important;
  background: linear-gradient(#25faf2, #25faf2 50%, #fff 50%, #fff) !important;
}

.bg-color-split-cyan-to-black {
  background: -webkit-gradient(linear, left top, left bottom, from(#25faf2), color-stop(50%, #25faf2), color-stop(50%, #212121), to(#212121)) !important;
  background: -webkit-linear-gradient(#25faf2, #25faf2 50%, #212121 50%, #212121) !important;
  background: -o-linear-gradient(#25faf2, #25faf2 50%, #212121 50%, #212121) !important;
  background: linear-gradient(#25faf2, #25faf2 50%, #212121 50%, #212121) !important;
}

.bg-color-split-cyan-to-grey {
  background: -webkit-gradient(linear, left top, left bottom, from(#25faf2), color-stop(50%, #25faf2), color-stop(50%, #a8aca4), to(#a8aca4)) !important;
  background: -webkit-linear-gradient(#25faf2, #25faf2 50%, #a8aca4 50%, #a8aca4) !important;
  background: -o-linear-gradient(#25faf2, #25faf2 50%, #a8aca4 50%, #a8aca4) !important;
  background: linear-gradient(#25faf2, #25faf2 50%, #a8aca4 50%, #a8aca4) !important;
}

.bg-color-split-cyan-to-grey-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#25faf2), color-stop(50%, #25faf2), color-stop(50%, #7c7c7c), to(#7c7c7c)) !important;
  background: -webkit-linear-gradient(#25faf2, #25faf2 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: -o-linear-gradient(#25faf2, #25faf2 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: linear-gradient(#25faf2, #25faf2 50%, #7c7c7c 50%, #7c7c7c) !important;
}

.bg-color-split-cyan-to-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#25faf2), color-stop(50%, #25faf2), color-stop(50%, #0019e6), to(#0019e6)) !important;
  background: -webkit-linear-gradient(#25faf2, #25faf2 50%, #0019e6 50%, #0019e6) !important;
  background: -o-linear-gradient(#25faf2, #25faf2 50%, #0019e6 50%, #0019e6) !important;
  background: linear-gradient(#25faf2, #25faf2 50%, #0019e6 50%, #0019e6) !important;
}

.bg-color-split-cyan-to-blue-lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(#25faf2), color-stop(50%, #25faf2), color-stop(50%, #f2f5ff), to(#f2f5ff)) !important;
  background: -webkit-linear-gradient(#25faf2, #25faf2 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: -o-linear-gradient(#25faf2, #25faf2 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: linear-gradient(#25faf2, #25faf2 50%, #f2f5ff 50%, #f2f5ff) !important;
}

.bg-color-split-cyan-to-blue-light {
  background: -webkit-gradient(linear, left top, left bottom, from(#25faf2), color-stop(50%, #25faf2), color-stop(50%, #e6e8fd), to(#e6e8fd)) !important;
  background: -webkit-linear-gradient(#25faf2, #25faf2 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: -o-linear-gradient(#25faf2, #25faf2 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: linear-gradient(#25faf2, #25faf2 50%, #e6e8fd 50%, #e6e8fd) !important;
}

.bg-color-split-cyan-to-blue-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(#25faf2), color-stop(50%, #25faf2), color-stop(50%, #bdbfd5), to(#bdbfd5)) !important;
  background: -webkit-linear-gradient(#25faf2, #25faf2 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: -o-linear-gradient(#25faf2, #25faf2 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: linear-gradient(#25faf2, #25faf2 50%, #bdbfd5 50%, #bdbfd5) !important;
}

.bg-color-split-cyan-to-blue-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#25faf2), color-stop(50%, #25faf2), color-stop(50%, #01125c), to(#01125c)) !important;
  background: -webkit-linear-gradient(#25faf2, #25faf2 50%, #01125c 50%, #01125c) !important;
  background: -o-linear-gradient(#25faf2, #25faf2 50%, #01125c 50%, #01125c) !important;
  background: linear-gradient(#25faf2, #25faf2 50%, #01125c 50%, #01125c) !important;
}

.bg-color-split-cyan-to-blue-faded {
  background: -webkit-gradient(linear, left top, left bottom, from(#25faf2), color-stop(50%, #25faf2), color-stop(50%, #4d5da3), to(#4d5da3)) !important;
  background: -webkit-linear-gradient(#25faf2, #25faf2 50%, #4d5da3 50%, #4d5da3) !important;
  background: -o-linear-gradient(#25faf2, #25faf2 50%, #4d5da3 50%, #4d5da3) !important;
  background: linear-gradient(#25faf2, #25faf2 50%, #4d5da3 50%, #4d5da3) !important;
}

.bg-color-split-cyan-to-cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(#25faf2), color-stop(50%, #25faf2), color-stop(50%, #25faf2), to(#25faf2)) !important;
  background: -webkit-linear-gradient(#25faf2, #25faf2 50%, #25faf2 50%, #25faf2) !important;
  background: -o-linear-gradient(#25faf2, #25faf2 50%, #25faf2 50%, #25faf2) !important;
  background: linear-gradient(#25faf2, #25faf2 50%, #25faf2 50%, #25faf2) !important;
}

.bg-color-split-cyan-to-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#25faf2), color-stop(50%, #25faf2), color-stop(50%, #00a80d), to(#00a80d)) !important;
  background: -webkit-linear-gradient(#25faf2, #25faf2 50%, #00a80d 50%, #00a80d) !important;
  background: -o-linear-gradient(#25faf2, #25faf2 50%, #00a80d 50%, #00a80d) !important;
  background: linear-gradient(#25faf2, #25faf2 50%, #00a80d 50%, #00a80d) !important;
}

.bg-color-split-cyan-to-box-shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(#25faf2), color-stop(50%, #25faf2), color-stop(50%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))) !important;
  background: -webkit-linear-gradient(#25faf2, #25faf2 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: -o-linear-gradient(#25faf2, #25faf2 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: linear-gradient(#25faf2, #25faf2 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
}

.bg-color-split-cyan-to-validation {
  background: -webkit-gradient(linear, left top, left bottom, from(#25faf2), color-stop(50%, #25faf2), color-stop(50%, #f00), to(#f00)) !important;
  background: -webkit-linear-gradient(#25faf2, #25faf2 50%, #f00 50%, #f00) !important;
  background: -o-linear-gradient(#25faf2, #25faf2 50%, #f00 50%, #f00) !important;
  background: linear-gradient(#25faf2, #25faf2 50%, #f00 50%, #f00) !important;
}

.bg-color-split-green-to-none {
  background: -webkit-gradient(linear, left top, left bottom, from(#00a80d), color-stop(50%, #00a80d), color-stop(50%, transparent), to(transparent)) !important;
  background: -webkit-linear-gradient(#00a80d, #00a80d 50%, transparent 50%, transparent) !important;
  background: -o-linear-gradient(#00a80d, #00a80d 50%, transparent 50%, transparent) !important;
  background: linear-gradient(#00a80d, #00a80d 50%, transparent 50%, transparent) !important;
}

.bg-color-split-none-to-green {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #00a80d), to(#00a80d)) !important;
  background: -webkit-linear-gradient(transparent, transparent 50%, #00a80d 50%, #00a80d) !important;
  background: -o-linear-gradient(transparent, transparent 50%, #00a80d 50%, #00a80d) !important;
  background: linear-gradient(transparent, transparent 50%, #00a80d 50%, #00a80d) !important;
}

.bg-color-split-green-to-white {
  background: -webkit-gradient(linear, left top, left bottom, from(#00a80d), color-stop(50%, #00a80d), color-stop(50%, #fff), to(#fff)) !important;
  background: -webkit-linear-gradient(#00a80d, #00a80d 50%, #fff 50%, #fff) !important;
  background: -o-linear-gradient(#00a80d, #00a80d 50%, #fff 50%, #fff) !important;
  background: linear-gradient(#00a80d, #00a80d 50%, #fff 50%, #fff) !important;
}

.bg-color-split-green-to-black {
  background: -webkit-gradient(linear, left top, left bottom, from(#00a80d), color-stop(50%, #00a80d), color-stop(50%, #212121), to(#212121)) !important;
  background: -webkit-linear-gradient(#00a80d, #00a80d 50%, #212121 50%, #212121) !important;
  background: -o-linear-gradient(#00a80d, #00a80d 50%, #212121 50%, #212121) !important;
  background: linear-gradient(#00a80d, #00a80d 50%, #212121 50%, #212121) !important;
}

.bg-color-split-green-to-grey {
  background: -webkit-gradient(linear, left top, left bottom, from(#00a80d), color-stop(50%, #00a80d), color-stop(50%, #a8aca4), to(#a8aca4)) !important;
  background: -webkit-linear-gradient(#00a80d, #00a80d 50%, #a8aca4 50%, #a8aca4) !important;
  background: -o-linear-gradient(#00a80d, #00a80d 50%, #a8aca4 50%, #a8aca4) !important;
  background: linear-gradient(#00a80d, #00a80d 50%, #a8aca4 50%, #a8aca4) !important;
}

.bg-color-split-green-to-grey-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#00a80d), color-stop(50%, #00a80d), color-stop(50%, #7c7c7c), to(#7c7c7c)) !important;
  background: -webkit-linear-gradient(#00a80d, #00a80d 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: -o-linear-gradient(#00a80d, #00a80d 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: linear-gradient(#00a80d, #00a80d 50%, #7c7c7c 50%, #7c7c7c) !important;
}

.bg-color-split-green-to-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#00a80d), color-stop(50%, #00a80d), color-stop(50%, #0019e6), to(#0019e6)) !important;
  background: -webkit-linear-gradient(#00a80d, #00a80d 50%, #0019e6 50%, #0019e6) !important;
  background: -o-linear-gradient(#00a80d, #00a80d 50%, #0019e6 50%, #0019e6) !important;
  background: linear-gradient(#00a80d, #00a80d 50%, #0019e6 50%, #0019e6) !important;
}

.bg-color-split-green-to-blue-lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(#00a80d), color-stop(50%, #00a80d), color-stop(50%, #f2f5ff), to(#f2f5ff)) !important;
  background: -webkit-linear-gradient(#00a80d, #00a80d 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: -o-linear-gradient(#00a80d, #00a80d 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: linear-gradient(#00a80d, #00a80d 50%, #f2f5ff 50%, #f2f5ff) !important;
}

.bg-color-split-green-to-blue-light {
  background: -webkit-gradient(linear, left top, left bottom, from(#00a80d), color-stop(50%, #00a80d), color-stop(50%, #e6e8fd), to(#e6e8fd)) !important;
  background: -webkit-linear-gradient(#00a80d, #00a80d 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: -o-linear-gradient(#00a80d, #00a80d 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: linear-gradient(#00a80d, #00a80d 50%, #e6e8fd 50%, #e6e8fd) !important;
}

.bg-color-split-green-to-blue-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(#00a80d), color-stop(50%, #00a80d), color-stop(50%, #bdbfd5), to(#bdbfd5)) !important;
  background: -webkit-linear-gradient(#00a80d, #00a80d 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: -o-linear-gradient(#00a80d, #00a80d 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: linear-gradient(#00a80d, #00a80d 50%, #bdbfd5 50%, #bdbfd5) !important;
}

.bg-color-split-green-to-blue-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#00a80d), color-stop(50%, #00a80d), color-stop(50%, #01125c), to(#01125c)) !important;
  background: -webkit-linear-gradient(#00a80d, #00a80d 50%, #01125c 50%, #01125c) !important;
  background: -o-linear-gradient(#00a80d, #00a80d 50%, #01125c 50%, #01125c) !important;
  background: linear-gradient(#00a80d, #00a80d 50%, #01125c 50%, #01125c) !important;
}

.bg-color-split-green-to-blue-faded {
  background: -webkit-gradient(linear, left top, left bottom, from(#00a80d), color-stop(50%, #00a80d), color-stop(50%, #4d5da3), to(#4d5da3)) !important;
  background: -webkit-linear-gradient(#00a80d, #00a80d 50%, #4d5da3 50%, #4d5da3) !important;
  background: -o-linear-gradient(#00a80d, #00a80d 50%, #4d5da3 50%, #4d5da3) !important;
  background: linear-gradient(#00a80d, #00a80d 50%, #4d5da3 50%, #4d5da3) !important;
}

.bg-color-split-green-to-cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(#00a80d), color-stop(50%, #00a80d), color-stop(50%, #25faf2), to(#25faf2)) !important;
  background: -webkit-linear-gradient(#00a80d, #00a80d 50%, #25faf2 50%, #25faf2) !important;
  background: -o-linear-gradient(#00a80d, #00a80d 50%, #25faf2 50%, #25faf2) !important;
  background: linear-gradient(#00a80d, #00a80d 50%, #25faf2 50%, #25faf2) !important;
}

.bg-color-split-green-to-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#00a80d), color-stop(50%, #00a80d), color-stop(50%, #00a80d), to(#00a80d)) !important;
  background: -webkit-linear-gradient(#00a80d, #00a80d 50%, #00a80d 50%, #00a80d) !important;
  background: -o-linear-gradient(#00a80d, #00a80d 50%, #00a80d 50%, #00a80d) !important;
  background: linear-gradient(#00a80d, #00a80d 50%, #00a80d 50%, #00a80d) !important;
}

.bg-color-split-green-to-box-shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(#00a80d), color-stop(50%, #00a80d), color-stop(50%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))) !important;
  background: -webkit-linear-gradient(#00a80d, #00a80d 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: -o-linear-gradient(#00a80d, #00a80d 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: linear-gradient(#00a80d, #00a80d 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
}

.bg-color-split-green-to-validation {
  background: -webkit-gradient(linear, left top, left bottom, from(#00a80d), color-stop(50%, #00a80d), color-stop(50%, #f00), to(#f00)) !important;
  background: -webkit-linear-gradient(#00a80d, #00a80d 50%, #f00 50%, #f00) !important;
  background: -o-linear-gradient(#00a80d, #00a80d 50%, #f00 50%, #f00) !important;
  background: linear-gradient(#00a80d, #00a80d 50%, #f00 50%, #f00) !important;
}

.bg-color-split-box-shadow-to-none {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), color-stop(50%, transparent), to(transparent)) !important;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent) !important;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent) !important;
}

.bg-color-split-none-to-box-shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))) !important;
  background: -webkit-linear-gradient(transparent, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: -o-linear-gradient(transparent, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: linear-gradient(transparent, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
}

.bg-color-split-box-shadow-to-white {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), color-stop(50%, #fff), to(#fff)) !important;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #fff 50%, #fff) !important;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #fff 50%, #fff) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #fff 50%, #fff) !important;
}

.bg-color-split-box-shadow-to-black {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), color-stop(50%, #212121), to(#212121)) !important;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #212121 50%, #212121) !important;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #212121 50%, #212121) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #212121 50%, #212121) !important;
}

.bg-color-split-box-shadow-to-grey {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), color-stop(50%, #a8aca4), to(#a8aca4)) !important;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #a8aca4 50%, #a8aca4) !important;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #a8aca4 50%, #a8aca4) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #a8aca4 50%, #a8aca4) !important;
}

.bg-color-split-box-shadow-to-grey-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), color-stop(50%, #7c7c7c), to(#7c7c7c)) !important;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #7c7c7c 50%, #7c7c7c) !important;
}

.bg-color-split-box-shadow-to-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), color-stop(50%, #0019e6), to(#0019e6)) !important;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #0019e6 50%, #0019e6) !important;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #0019e6 50%, #0019e6) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #0019e6 50%, #0019e6) !important;
}

.bg-color-split-box-shadow-to-blue-lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), color-stop(50%, #f2f5ff), to(#f2f5ff)) !important;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #f2f5ff 50%, #f2f5ff) !important;
}

.bg-color-split-box-shadow-to-blue-light {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), color-stop(50%, #e6e8fd), to(#e6e8fd)) !important;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #e6e8fd 50%, #e6e8fd) !important;
}

.bg-color-split-box-shadow-to-blue-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), color-stop(50%, #bdbfd5), to(#bdbfd5)) !important;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #bdbfd5 50%, #bdbfd5) !important;
}

.bg-color-split-box-shadow-to-blue-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), color-stop(50%, #01125c), to(#01125c)) !important;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #01125c 50%, #01125c) !important;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #01125c 50%, #01125c) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #01125c 50%, #01125c) !important;
}

.bg-color-split-box-shadow-to-blue-faded {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), color-stop(50%, #4d5da3), to(#4d5da3)) !important;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #4d5da3 50%, #4d5da3) !important;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #4d5da3 50%, #4d5da3) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #4d5da3 50%, #4d5da3) !important;
}

.bg-color-split-box-shadow-to-cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), color-stop(50%, #25faf2), to(#25faf2)) !important;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #25faf2 50%, #25faf2) !important;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #25faf2 50%, #25faf2) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #25faf2 50%, #25faf2) !important;
}

.bg-color-split-box-shadow-to-green {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), color-stop(50%, #00a80d), to(#00a80d)) !important;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #00a80d 50%, #00a80d) !important;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #00a80d 50%, #00a80d) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #00a80d 50%, #00a80d) !important;
}

.bg-color-split-box-shadow-to-box-shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))) !important;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
}

.bg-color-split-box-shadow-to-validation {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(50%, rgba(0, 0, 0, 0.05)), color-stop(50%, #f00), to(#f00)) !important;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #f00 50%, #f00) !important;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #f00 50%, #f00) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 50%, #f00 50%, #f00) !important;
}

.bg-color-split-validation-to-none {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(50%, #f00), color-stop(50%, transparent), to(transparent)) !important;
  background: -webkit-linear-gradient(#f00, #f00 50%, transparent 50%, transparent) !important;
  background: -o-linear-gradient(#f00, #f00 50%, transparent 50%, transparent) !important;
  background: linear-gradient(#f00, #f00 50%, transparent 50%, transparent) !important;
}

.bg-color-split-none-to-validation {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #f00), to(#f00)) !important;
  background: -webkit-linear-gradient(transparent, transparent 50%, #f00 50%, #f00) !important;
  background: -o-linear-gradient(transparent, transparent 50%, #f00 50%, #f00) !important;
  background: linear-gradient(transparent, transparent 50%, #f00 50%, #f00) !important;
}

.bg-color-split-validation-to-white {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(50%, #f00), color-stop(50%, #fff), to(#fff)) !important;
  background: -webkit-linear-gradient(#f00, #f00 50%, #fff 50%, #fff) !important;
  background: -o-linear-gradient(#f00, #f00 50%, #fff 50%, #fff) !important;
  background: linear-gradient(#f00, #f00 50%, #fff 50%, #fff) !important;
}

.bg-color-split-validation-to-black {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(50%, #f00), color-stop(50%, #212121), to(#212121)) !important;
  background: -webkit-linear-gradient(#f00, #f00 50%, #212121 50%, #212121) !important;
  background: -o-linear-gradient(#f00, #f00 50%, #212121 50%, #212121) !important;
  background: linear-gradient(#f00, #f00 50%, #212121 50%, #212121) !important;
}

.bg-color-split-validation-to-grey {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(50%, #f00), color-stop(50%, #a8aca4), to(#a8aca4)) !important;
  background: -webkit-linear-gradient(#f00, #f00 50%, #a8aca4 50%, #a8aca4) !important;
  background: -o-linear-gradient(#f00, #f00 50%, #a8aca4 50%, #a8aca4) !important;
  background: linear-gradient(#f00, #f00 50%, #a8aca4 50%, #a8aca4) !important;
}

.bg-color-split-validation-to-grey-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(50%, #f00), color-stop(50%, #7c7c7c), to(#7c7c7c)) !important;
  background: -webkit-linear-gradient(#f00, #f00 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: -o-linear-gradient(#f00, #f00 50%, #7c7c7c 50%, #7c7c7c) !important;
  background: linear-gradient(#f00, #f00 50%, #7c7c7c 50%, #7c7c7c) !important;
}

.bg-color-split-validation-to-blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(50%, #f00), color-stop(50%, #0019e6), to(#0019e6)) !important;
  background: -webkit-linear-gradient(#f00, #f00 50%, #0019e6 50%, #0019e6) !important;
  background: -o-linear-gradient(#f00, #f00 50%, #0019e6 50%, #0019e6) !important;
  background: linear-gradient(#f00, #f00 50%, #0019e6 50%, #0019e6) !important;
}

.bg-color-split-validation-to-blue-lighter {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(50%, #f00), color-stop(50%, #f2f5ff), to(#f2f5ff)) !important;
  background: -webkit-linear-gradient(#f00, #f00 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: -o-linear-gradient(#f00, #f00 50%, #f2f5ff 50%, #f2f5ff) !important;
  background: linear-gradient(#f00, #f00 50%, #f2f5ff 50%, #f2f5ff) !important;
}

.bg-color-split-validation-to-blue-light {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(50%, #f00), color-stop(50%, #e6e8fd), to(#e6e8fd)) !important;
  background: -webkit-linear-gradient(#f00, #f00 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: -o-linear-gradient(#f00, #f00 50%, #e6e8fd 50%, #e6e8fd) !important;
  background: linear-gradient(#f00, #f00 50%, #e6e8fd 50%, #e6e8fd) !important;
}

.bg-color-split-validation-to-blue-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(50%, #f00), color-stop(50%, #bdbfd5), to(#bdbfd5)) !important;
  background: -webkit-linear-gradient(#f00, #f00 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: -o-linear-gradient(#f00, #f00 50%, #bdbfd5 50%, #bdbfd5) !important;
  background: linear-gradient(#f00, #f00 50%, #bdbfd5 50%, #bdbfd5) !important;
}

.bg-color-split-validation-to-blue-dark {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(50%, #f00), color-stop(50%, #01125c), to(#01125c)) !important;
  background: -webkit-linear-gradient(#f00, #f00 50%, #01125c 50%, #01125c) !important;
  background: -o-linear-gradient(#f00, #f00 50%, #01125c 50%, #01125c) !important;
  background: linear-gradient(#f00, #f00 50%, #01125c 50%, #01125c) !important;
}

.bg-color-split-validation-to-blue-faded {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(50%, #f00), color-stop(50%, #4d5da3), to(#4d5da3)) !important;
  background: -webkit-linear-gradient(#f00, #f00 50%, #4d5da3 50%, #4d5da3) !important;
  background: -o-linear-gradient(#f00, #f00 50%, #4d5da3 50%, #4d5da3) !important;
  background: linear-gradient(#f00, #f00 50%, #4d5da3 50%, #4d5da3) !important;
}

.bg-color-split-validation-to-cyan {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(50%, #f00), color-stop(50%, #25faf2), to(#25faf2)) !important;
  background: -webkit-linear-gradient(#f00, #f00 50%, #25faf2 50%, #25faf2) !important;
  background: -o-linear-gradient(#f00, #f00 50%, #25faf2 50%, #25faf2) !important;
  background: linear-gradient(#f00, #f00 50%, #25faf2 50%, #25faf2) !important;
}

.bg-color-split-validation-to-green {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(50%, #f00), color-stop(50%, #00a80d), to(#00a80d)) !important;
  background: -webkit-linear-gradient(#f00, #f00 50%, #00a80d 50%, #00a80d) !important;
  background: -o-linear-gradient(#f00, #f00 50%, #00a80d 50%, #00a80d) !important;
  background: linear-gradient(#f00, #f00 50%, #00a80d 50%, #00a80d) !important;
}

.bg-color-split-validation-to-box-shadow {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(50%, #f00), color-stop(50%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))) !important;
  background: -webkit-linear-gradient(#f00, #f00 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: -o-linear-gradient(#f00, #f00 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
  background: linear-gradient(#f00, #f00 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05)) !important;
}

.bg-color-split-validation-to-validation {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(50%, #f00), color-stop(50%, #f00), to(#f00)) !important;
  background: -webkit-linear-gradient(#f00, #f00 50%, #f00 50%, #f00) !important;
  background: -o-linear-gradient(#f00, #f00 50%, #f00 50%, #f00) !important;
  background: linear-gradient(#f00, #f00 50%, #f00 50%, #f00) !important;
}

.columns-2 {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  -webkit-column-gap: var(--bs-gutter-x);
     -moz-column-gap: var(--bs-gutter-x);
          column-gap: var(--bs-gutter-x);
}

.image-cover > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.col-offset-12 {
  margin-left: 100% !important;
}

.col-offset-end-1 {
  margin-right: 8.3333333333% !important;
}

.col-offset-end-2 {
  margin-right: 16.6666666667% !important;
}

.col-offset-end-3 {
  margin-right: 25% !important;
}

.col-offset-end-4 {
  margin-right: 33.3333333333% !important;
}

.col-offset-end-5 {
  margin-right: 41.6666666667% !important;
}

.col-offset-end-6 {
  margin-right: 50% !important;
}

.col-offset-end-7 {
  margin-right: 58.3333333333% !important;
}

.col-offset-end-8 {
  margin-right: 66.6666666667% !important;
}

.col-offset-end-9 {
  margin-right: 75% !important;
}

.col-offset-end-10 {
  margin-right: 83.3333333333% !important;
}

.col-offset-end-11 {
  margin-right: 91.6666666667% !important;
}

.col-offset-end-12 {
  margin-right: 100% !important;
}

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

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

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

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

.bottom-23px {
  bottom: 23px !important;
}

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

.left-30px {
  left: 30px !important;
}

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

.right-30px {
  right: 30px !important;
}

.z-5 {
  z-index: 5 !important;
}

.z-10 {
  z-index: 10 !important;
}

.-z-1 {
  z-index: -1 !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.visibility-hidden {
  visibility: hidden !important;
}

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

.m-100 {
  margin: 100px !important;
}

.m-120 {
  margin: 120px !important;
}

.m-160 {
  margin: 160px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-14 {
  margin-top: 14px !important;
}

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

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

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

.mt-44 {
  margin-top: 44px !important;
}

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

.mt-60 {
  margin-top: 60px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

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

.mt-120 {
  margin-top: 120px !important;
}

.mt-160 {
  margin-top: 160px !important;
}

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

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

.mr-100 {
  margin-right: 100px !important;
}

.mr-120 {
  margin-right: 120px !important;
}

.mr-160 {
  margin-right: 160px !important;
}

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

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

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

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

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

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

.mb-17 {
  margin-bottom: 17px !important;
}

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

.mb-23 {
  margin-bottom: 23px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

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

.mb-26 {
  margin-bottom: 26px !important;
}

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

.mb-34 {
  margin-bottom: 34px !important;
}

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

.mb-37 {
  margin-bottom: 37px !important;
}

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

.mb-43 {
  margin-bottom: 43px !important;
}

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

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

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.mb-160 {
  margin-bottom: 160px !important;
}

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

.ml-100 {
  margin-left: 100px !important;
}

.ml-120 {
  margin-left: 120px !important;
}

.ml-160 {
  margin-left: 160px !important;
}

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

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

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

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

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

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

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

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

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

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

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

.mb-24- {
  margin-bottom: -24px !important;
}

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

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

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

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

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

.g-20 {
  gap: 20px !important;
}

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

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

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

.p-24 {
  padding: 24px !important;
}

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

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

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

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

.p-100 {
  padding: 100px !important;
}

.p-120 {
  padding: 120px !important;
}

.p-160 {
  padding: 160px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-70 {
  padding-top: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pt-160 {
  padding-top: 160px !important;
}

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

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

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

.pr-120 {
  padding-right: 120px !important;
}

.pr-160 {
  padding-right: 160px !important;
}

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

.pb-21 {
  padding-bottom: 21px !important;
}

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

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

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

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.pb-160 {
  padding-bottom: 160px !important;
}

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

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

.pl-120 {
  padding-left: 120px !important;
}

.pl-160 {
  padding-left: 160px !important;
}

.w-17px {
  width: 17px !important;
}

.w-45px {
  width: 45px !important;
}

.w-84px {
  width: 84px !important;
}

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

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

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

.w-443px {
  width: 443px !important;
}

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

.max-w-none {
  max-width: none !important;
}

.max-w-680px {
  max-width: 680px !important;
}

.max-w-750px {
  max-width: 750px !important;
}

.h-17px {
  height: 17px !important;
}

.h-40px {
  height: 40px !important;
}

.h-45px {
  height: 45px !important;
}

.h-50px {
  height: 50px !important;
}

.h-80px {
  height: 80px !important;
}

.h-120px {
  height: 120px !important;
}

.h-300px {
  height: 300px !important;
}

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

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

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

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

.h-300px {
  height: 300px !important;
}

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

.min-h-45px {
  min-height: 45px !important;
}

.min-h-80px {
  min-height: 80px !important;
}

.min-h-300px {
  min-height: 300px !important;
}

.min-h-300px {
  min-height: 300px !important;
}

.aspect-ratio-7-6 {
  aspect-ratio: 7/6 !important;
}

.aspect-ratio-11-12 {
  aspect-ratio: 11/12 !important;
}

.aspect-ratio-16-9 {
  aspect-ratio: 16/9 !important;
}

.aspect-ratio-19-13 {
  aspect-ratio: 19/13 !important;
}

.aspect-ratio-23-30 {
  aspect-ratio: 23/30 !important;
}

.aspect-ratio-24-23 {
  aspect-ratio: 24/23 !important;
}

.aspect-ratio-34-27 {
  aspect-ratio: 34/27 !important;
}

.bg-cover {
  background-size: cover !important;
}

.bg-no-repeat {
  background-repeat: no-repeat !important;
}

.bg-blend-multiply {
  background-blend-mode: multiply !important;
}

.bg-color-white {
  background-color: #fff !important;
  --axis-bg-color: #fff !important;
}

.bg-color-white-hover:hover {
  background-color: #fff !important;
  --axis-bg-color: #fff !important;
}

.bg-color-black {
  background-color: #212121 !important;
  --axis-bg-color: #212121 !important;
}

.bg-color-black-hover:hover {
  background-color: #212121 !important;
  --axis-bg-color: #212121 !important;
}

.bg-color-grey {
  background-color: #a8aca4 !important;
  --axis-bg-color: #a8aca4 !important;
}

.bg-color-grey-hover:hover {
  background-color: #a8aca4 !important;
  --axis-bg-color: #a8aca4 !important;
}

.bg-color-grey-dark {
  background-color: #7c7c7c !important;
  --axis-bg-color: #7c7c7c !important;
}

.bg-color-grey-dark-hover:hover {
  background-color: #7c7c7c !important;
  --axis-bg-color: #7c7c7c !important;
}

.bg-color-blue {
  background-color: #0019e6 !important;
  --axis-bg-color: #0019e6 !important;
}

.bg-color-blue-hover:hover {
  background-color: #0019e6 !important;
  --axis-bg-color: #0019e6 !important;
}

.bg-color-blue-lighter {
  background-color: #f2f5ff !important;
  --axis-bg-color: #f2f5ff !important;
}

.bg-color-blue-lighter-hover:hover {
  background-color: #f2f5ff !important;
  --axis-bg-color: #f2f5ff !important;
}

.bg-color-blue-light {
  background-color: #e6e8fd !important;
  --axis-bg-color: #e6e8fd !important;
}

.bg-color-blue-light-hover:hover {
  background-color: #e6e8fd !important;
  --axis-bg-color: #e6e8fd !important;
}

.bg-color-blue-medium {
  background-color: #bdbfd5 !important;
  --axis-bg-color: #bdbfd5 !important;
}

.bg-color-blue-medium-hover:hover {
  background-color: #bdbfd5 !important;
  --axis-bg-color: #bdbfd5 !important;
}

.bg-color-blue-dark {
  background-color: #01125c !important;
  --axis-bg-color: #01125c !important;
}

.bg-color-blue-dark-hover:hover {
  background-color: #01125c !important;
  --axis-bg-color: #01125c !important;
}

.bg-color-blue-faded {
  background-color: #4d5da3 !important;
  --axis-bg-color: #4d5da3 !important;
}

.bg-color-blue-faded-hover:hover {
  background-color: #4d5da3 !important;
  --axis-bg-color: #4d5da3 !important;
}

.bg-color-cyan {
  background-color: #25faf2 !important;
  --axis-bg-color: #25faf2 !important;
}

.bg-color-cyan-hover:hover {
  background-color: #25faf2 !important;
  --axis-bg-color: #25faf2 !important;
}

.bg-color-green {
  background-color: #00a80d !important;
  --axis-bg-color: #00a80d !important;
}

.bg-color-green-hover:hover {
  background-color: #00a80d !important;
  --axis-bg-color: #00a80d !important;
}

.bg-color-box-shadow {
  background-color: rgba(0, 0, 0, 0.05) !important;
  --axis-bg-color: rgba(0, 0, 0, 0.05) !important;
}

.bg-color-box-shadow-hover:hover {
  background-color: rgba(0, 0, 0, 0.05) !important;
  --axis-bg-color: rgba(0, 0, 0, 0.05) !important;
}

.bg-color-validation {
  background-color: #f00 !important;
  --axis-bg-color: #f00 !important;
}

.bg-color-validation-hover:hover {
  background-color: #f00 !important;
  --axis-bg-color: #f00 !important;
}

.bg-color-transparent {
  background-color: transparent !important;
  --axis-bg-color: transparent !important;
}

.bg-color-transparent-hover:hover {
  background-color: transparent !important;
  --axis-bg-color: transparent !important;
}

.fg-color-white {
  color: #fff !important;
  --axis-fg-color: #fff !important;
}

.fg-color-white-hover:hover {
  color: #fff !important;
  --axis-fg-color: #fff !important;
}

.fg-color-black {
  color: #212121 !important;
  --axis-fg-color: #212121 !important;
}

.fg-color-black-hover:hover {
  color: #212121 !important;
  --axis-fg-color: #212121 !important;
}

.fg-color-grey {
  color: #a8aca4 !important;
  --axis-fg-color: #a8aca4 !important;
}

.fg-color-grey-hover:hover {
  color: #a8aca4 !important;
  --axis-fg-color: #a8aca4 !important;
}

.fg-color-grey-dark {
  color: #7c7c7c !important;
  --axis-fg-color: #7c7c7c !important;
}

.fg-color-grey-dark-hover:hover {
  color: #7c7c7c !important;
  --axis-fg-color: #7c7c7c !important;
}

.fg-color-blue {
  color: #0019e6 !important;
  --axis-fg-color: #0019e6 !important;
}

.fg-color-blue-hover:hover {
  color: #0019e6 !important;
  --axis-fg-color: #0019e6 !important;
}

.fg-color-blue-lighter {
  color: #f2f5ff !important;
  --axis-fg-color: #f2f5ff !important;
}

.fg-color-blue-lighter-hover:hover {
  color: #f2f5ff !important;
  --axis-fg-color: #f2f5ff !important;
}

.fg-color-blue-light {
  color: #e6e8fd !important;
  --axis-fg-color: #e6e8fd !important;
}

.fg-color-blue-light-hover:hover {
  color: #e6e8fd !important;
  --axis-fg-color: #e6e8fd !important;
}

.fg-color-blue-medium {
  color: #bdbfd5 !important;
  --axis-fg-color: #bdbfd5 !important;
}

.fg-color-blue-medium-hover:hover {
  color: #bdbfd5 !important;
  --axis-fg-color: #bdbfd5 !important;
}

.fg-color-blue-dark {
  color: #01125c !important;
  --axis-fg-color: #01125c !important;
}

.fg-color-blue-dark-hover:hover {
  color: #01125c !important;
  --axis-fg-color: #01125c !important;
}

.fg-color-blue-faded {
  color: #4d5da3 !important;
  --axis-fg-color: #4d5da3 !important;
}

.fg-color-blue-faded-hover:hover {
  color: #4d5da3 !important;
  --axis-fg-color: #4d5da3 !important;
}

.fg-color-cyan {
  color: #25faf2 !important;
  --axis-fg-color: #25faf2 !important;
}

.fg-color-cyan-hover:hover {
  color: #25faf2 !important;
  --axis-fg-color: #25faf2 !important;
}

.fg-color-green {
  color: #00a80d !important;
  --axis-fg-color: #00a80d !important;
}

.fg-color-green-hover:hover {
  color: #00a80d !important;
  --axis-fg-color: #00a80d !important;
}

.fg-color-box-shadow {
  color: rgba(0, 0, 0, 0.05) !important;
  --axis-fg-color: rgba(0, 0, 0, 0.05) !important;
}

.fg-color-box-shadow-hover:hover {
  color: rgba(0, 0, 0, 0.05) !important;
  --axis-fg-color: rgba(0, 0, 0, 0.05) !important;
}

.fg-color-validation {
  color: #f00 !important;
  --axis-fg-color: #f00 !important;
}

.fg-color-validation-hover:hover {
  color: #f00 !important;
  --axis-fg-color: #f00 !important;
}

.fg-color-inherit {
  color: inherit !important;
  --axis-fg-color: inherit !important;
}

.fg-color-inherit-hover:hover {
  color: inherit !important;
  --axis-fg-color: inherit !important;
}

.is-dark .fg-dark-color-white {
  color: #fff !important;
  --axis-fg-color: #fff !important;
}

.is-dark .fg-dark-color-blue-light {
  color: #e6e8fd !important;
  --axis-fg-color: #e6e8fd !important;
}

.is-dark .fg-dark-color-blue-medium {
  color: #bdbfd5 !important;
  --axis-fg-color: #bdbfd5 !important;
}

.is-dark .fg-dark-color-cyan {
  color: #25faf2 !important;
  --axis-fg-color: #25faf2 !important;
}

.font-size-small {
  font-size: 14px !important;
}

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

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

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

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

.line-height-0 {
  line-height: 1 !important;
}

.line-height-2 {
  line-height: 1.2 !important;
}

.line-height-5 {
  line-height: 1.5 !important;
}

.line-height-6-5 {
  line-height: 1.65 !important;
}

.letter-spacing-wide {
  letter-spacing: 0.1em !important;
}

.letter-spacing-title-semi-tight {
  letter-spacing: -0.04em !important;
}

.letter-spacing-title-tight {
  letter-spacing: -0.04em !important;
}

.border-1px {
  border: 1px !important;
}

.border-color-white {
  border-color: #fff !important;
}

.border-color-white-hover:hover {
  border-color: #fff !important;
}

.border-color-black {
  border-color: #212121 !important;
}

.border-color-black-hover:hover {
  border-color: #212121 !important;
}

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

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

.border-color-grey-dark {
  border-color: #7c7c7c !important;
}

.border-color-grey-dark-hover:hover {
  border-color: #7c7c7c !important;
}

.border-color-blue {
  border-color: #0019e6 !important;
}

.border-color-blue-hover:hover {
  border-color: #0019e6 !important;
}

.border-color-blue-lighter {
  border-color: #f2f5ff !important;
}

.border-color-blue-lighter-hover:hover {
  border-color: #f2f5ff !important;
}

.border-color-blue-light {
  border-color: #e6e8fd !important;
}

.border-color-blue-light-hover:hover {
  border-color: #e6e8fd !important;
}

.border-color-blue-medium {
  border-color: #bdbfd5 !important;
}

.border-color-blue-medium-hover:hover {
  border-color: #bdbfd5 !important;
}

.border-color-blue-dark {
  border-color: #01125c !important;
}

.border-color-blue-dark-hover:hover {
  border-color: #01125c !important;
}

.border-color-blue-faded {
  border-color: #4d5da3 !important;
}

.border-color-blue-faded-hover:hover {
  border-color: #4d5da3 !important;
}

.border-color-cyan {
  border-color: #25faf2 !important;
}

.border-color-cyan-hover:hover {
  border-color: #25faf2 !important;
}

.border-color-green {
  border-color: #00a80d !important;
}

.border-color-green-hover:hover {
  border-color: #00a80d !important;
}

.border-color-box-shadow {
  border-color: rgba(0, 0, 0, 0.05) !important;
}

.border-color-box-shadow-hover:hover {
  border-color: rgba(0, 0, 0, 0.05) !important;
}

.border-color-validation {
  border-color: #f00 !important;
}

.border-color-validation-hover:hover {
  border-color: #f00 !important;
}

.border-color-transparent {
  border-color: transparent !important;
}

.border-color-transparent-hover:hover {
  border-color: transparent !important;
}

.is-dark .border-dark-color-white {
  border-color: #fff !important;
}

.border-solid {
  border-style: solid !important;
}

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

.border-radius-5px {
  border-radius: 5px !important;
}

.border-radius-full {
  border-radius: 999px !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-10 {
  opacity: 0.1 !important;
}

.opacity-20 {
  opacity: 0.2 !important;
}

.opacity-30 {
  opacity: 0.3 !important;
}

.opacity-40 {
  opacity: 0.4 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-60 {
  opacity: 0.6 !important;
}

.opacity-70 {
  opacity: 0.7 !important;
}

.opacity-80 {
  opacity: 0.8 !important;
}

.opacity-90 {
  opacity: 0.9 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .col-offset-sm-1 {
    margin-left: 8.3333333333% !important;
  }
  .col-offset-sm-2 {
    margin-left: 16.6666666667% !important;
  }
  .col-offset-sm-3 {
    margin-left: 25% !important;
  }
  .col-offset-sm-4 {
    margin-left: 33.3333333333% !important;
  }
  .col-offset-sm-5 {
    margin-left: 41.6666666667% !important;
  }
  .col-offset-sm-6 {
    margin-left: 50% !important;
  }
  .col-offset-sm-7 {
    margin-left: 58.3333333333% !important;
  }
  .col-offset-sm-8 {
    margin-left: 66.6666666667% !important;
  }
  .col-offset-sm-9 {
    margin-left: 75% !important;
  }
  .col-offset-sm-10 {
    margin-left: 83.3333333333% !important;
  }
  .col-offset-sm-11 {
    margin-left: 91.6666666667% !important;
  }
  .col-offset-sm-12 {
    margin-left: 100% !important;
  }
  .col-offset-end-sm-1 {
    margin-right: 8.3333333333% !important;
  }
  .col-offset-end-sm-2 {
    margin-right: 16.6666666667% !important;
  }
  .col-offset-end-sm-3 {
    margin-right: 25% !important;
  }
  .col-offset-end-sm-4 {
    margin-right: 33.3333333333% !important;
  }
  .col-offset-end-sm-5 {
    margin-right: 41.6666666667% !important;
  }
  .col-offset-end-sm-6 {
    margin-right: 50% !important;
  }
  .col-offset-end-sm-7 {
    margin-right: 58.3333333333% !important;
  }
  .col-offset-end-sm-8 {
    margin-right: 66.6666666667% !important;
  }
  .col-offset-end-sm-9 {
    margin-right: 75% !important;
  }
  .col-offset-end-sm-10 {
    margin-right: 83.3333333333% !important;
  }
  .col-offset-end-sm-11 {
    margin-right: 91.6666666667% !important;
  }
  .col-offset-end-sm-12 {
    margin-right: 100% !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-100 {
    margin: 100px !important;
  }
  .m-sm-120 {
    margin: 120px !important;
  }
  .m-sm-160 {
    margin: 160px !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-100 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }
  .mx-sm-120 {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }
  .mx-sm-160 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .my-sm-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .my-sm-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-100 {
    margin-top: 100px !important;
  }
  .mt-sm-120 {
    margin-top: 120px !important;
  }
  .mt-sm-160 {
    margin-top: 160px !important;
  }
  .mr-sm-0 {
    margin-right: 0 !important;
  }
  .mr-sm-100 {
    margin-right: 100px !important;
  }
  .mr-sm-120 {
    margin-right: 120px !important;
  }
  .mr-sm-160 {
    margin-right: 160px !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-100 {
    margin-bottom: 100px !important;
  }
  .mb-sm-120 {
    margin-bottom: 120px !important;
  }
  .mb-sm-160 {
    margin-bottom: 160px !important;
  }
  .ml-sm-0 {
    margin-left: 0 !important;
  }
  .ml-sm-100 {
    margin-left: 100px !important;
  }
  .ml-sm-120 {
    margin-left: 120px !important;
  }
  .ml-sm-160 {
    margin-left: 160px !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0 {
    margin-left: 0 !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-100 {
    padding: 100px !important;
  }
  .p-sm-120 {
    padding: 120px !important;
  }
  .p-sm-160 {
    padding: 160px !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-100 {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
  .px-sm-120 {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }
  .px-sm-160 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .py-sm-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .py-sm-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-100 {
    padding-top: 100px !important;
  }
  .pt-sm-120 {
    padding-top: 120px !important;
  }
  .pt-sm-160 {
    padding-top: 160px !important;
  }
  .pr-sm-0 {
    padding-right: 0 !important;
  }
  .pr-sm-100 {
    padding-right: 100px !important;
  }
  .pr-sm-120 {
    padding-right: 120px !important;
  }
  .pr-sm-160 {
    padding-right: 160px !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-100 {
    padding-bottom: 100px !important;
  }
  .pb-sm-120 {
    padding-bottom: 120px !important;
  }
  .pb-sm-160 {
    padding-bottom: 160px !important;
  }
  .pl-sm-0 {
    padding-left: 0 !important;
  }
  .pl-sm-100 {
    padding-left: 100px !important;
  }
  .pl-sm-120 {
    padding-left: 120px !important;
  }
  .pl-sm-160 {
    padding-left: 160px !important;
  }
  .bg-color-sm-white {
    background-color: #fff !important;
    --axis-bg-color: #fff !important;
  }
  .bg-color-sm-white-hover:hover {
    background-color: #fff !important;
    --axis-bg-color: #fff !important;
  }
  .bg-color-sm-black {
    background-color: #212121 !important;
    --axis-bg-color: #212121 !important;
  }
  .bg-color-sm-black-hover:hover {
    background-color: #212121 !important;
    --axis-bg-color: #212121 !important;
  }
  .bg-color-sm-grey {
    background-color: #a8aca4 !important;
    --axis-bg-color: #a8aca4 !important;
  }
  .bg-color-sm-grey-hover:hover {
    background-color: #a8aca4 !important;
    --axis-bg-color: #a8aca4 !important;
  }
  .bg-color-sm-grey-dark {
    background-color: #7c7c7c !important;
    --axis-bg-color: #7c7c7c !important;
  }
  .bg-color-sm-grey-dark-hover:hover {
    background-color: #7c7c7c !important;
    --axis-bg-color: #7c7c7c !important;
  }
  .bg-color-sm-blue {
    background-color: #0019e6 !important;
    --axis-bg-color: #0019e6 !important;
  }
  .bg-color-sm-blue-hover:hover {
    background-color: #0019e6 !important;
    --axis-bg-color: #0019e6 !important;
  }
  .bg-color-sm-blue-lighter {
    background-color: #f2f5ff !important;
    --axis-bg-color: #f2f5ff !important;
  }
  .bg-color-sm-blue-lighter-hover:hover {
    background-color: #f2f5ff !important;
    --axis-bg-color: #f2f5ff !important;
  }
  .bg-color-sm-blue-light {
    background-color: #e6e8fd !important;
    --axis-bg-color: #e6e8fd !important;
  }
  .bg-color-sm-blue-light-hover:hover {
    background-color: #e6e8fd !important;
    --axis-bg-color: #e6e8fd !important;
  }
  .bg-color-sm-blue-medium {
    background-color: #bdbfd5 !important;
    --axis-bg-color: #bdbfd5 !important;
  }
  .bg-color-sm-blue-medium-hover:hover {
    background-color: #bdbfd5 !important;
    --axis-bg-color: #bdbfd5 !important;
  }
  .bg-color-sm-blue-dark {
    background-color: #01125c !important;
    --axis-bg-color: #01125c !important;
  }
  .bg-color-sm-blue-dark-hover:hover {
    background-color: #01125c !important;
    --axis-bg-color: #01125c !important;
  }
  .bg-color-sm-blue-faded {
    background-color: #4d5da3 !important;
    --axis-bg-color: #4d5da3 !important;
  }
  .bg-color-sm-blue-faded-hover:hover {
    background-color: #4d5da3 !important;
    --axis-bg-color: #4d5da3 !important;
  }
  .bg-color-sm-cyan {
    background-color: #25faf2 !important;
    --axis-bg-color: #25faf2 !important;
  }
  .bg-color-sm-cyan-hover:hover {
    background-color: #25faf2 !important;
    --axis-bg-color: #25faf2 !important;
  }
  .bg-color-sm-green {
    background-color: #00a80d !important;
    --axis-bg-color: #00a80d !important;
  }
  .bg-color-sm-green-hover:hover {
    background-color: #00a80d !important;
    --axis-bg-color: #00a80d !important;
  }
  .bg-color-sm-box-shadow {
    background-color: rgba(0, 0, 0, 0.05) !important;
    --axis-bg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .bg-color-sm-box-shadow-hover:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
    --axis-bg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .bg-color-sm-validation {
    background-color: #f00 !important;
    --axis-bg-color: #f00 !important;
  }
  .bg-color-sm-validation-hover:hover {
    background-color: #f00 !important;
    --axis-bg-color: #f00 !important;
  }
  .bg-color-sm-transparent {
    background-color: transparent !important;
    --axis-bg-color: transparent !important;
  }
  .bg-color-sm-transparent-hover:hover {
    background-color: transparent !important;
    --axis-bg-color: transparent !important;
  }
  .fg-color-sm-white {
    color: #fff !important;
    --axis-fg-color: #fff !important;
  }
  .fg-color-sm-white-hover:hover {
    color: #fff !important;
    --axis-fg-color: #fff !important;
  }
  .fg-color-sm-black {
    color: #212121 !important;
    --axis-fg-color: #212121 !important;
  }
  .fg-color-sm-black-hover:hover {
    color: #212121 !important;
    --axis-fg-color: #212121 !important;
  }
  .fg-color-sm-grey {
    color: #a8aca4 !important;
    --axis-fg-color: #a8aca4 !important;
  }
  .fg-color-sm-grey-hover:hover {
    color: #a8aca4 !important;
    --axis-fg-color: #a8aca4 !important;
  }
  .fg-color-sm-grey-dark {
    color: #7c7c7c !important;
    --axis-fg-color: #7c7c7c !important;
  }
  .fg-color-sm-grey-dark-hover:hover {
    color: #7c7c7c !important;
    --axis-fg-color: #7c7c7c !important;
  }
  .fg-color-sm-blue {
    color: #0019e6 !important;
    --axis-fg-color: #0019e6 !important;
  }
  .fg-color-sm-blue-hover:hover {
    color: #0019e6 !important;
    --axis-fg-color: #0019e6 !important;
  }
  .fg-color-sm-blue-lighter {
    color: #f2f5ff !important;
    --axis-fg-color: #f2f5ff !important;
  }
  .fg-color-sm-blue-lighter-hover:hover {
    color: #f2f5ff !important;
    --axis-fg-color: #f2f5ff !important;
  }
  .fg-color-sm-blue-light {
    color: #e6e8fd !important;
    --axis-fg-color: #e6e8fd !important;
  }
  .fg-color-sm-blue-light-hover:hover {
    color: #e6e8fd !important;
    --axis-fg-color: #e6e8fd !important;
  }
  .fg-color-sm-blue-medium {
    color: #bdbfd5 !important;
    --axis-fg-color: #bdbfd5 !important;
  }
  .fg-color-sm-blue-medium-hover:hover {
    color: #bdbfd5 !important;
    --axis-fg-color: #bdbfd5 !important;
  }
  .fg-color-sm-blue-dark {
    color: #01125c !important;
    --axis-fg-color: #01125c !important;
  }
  .fg-color-sm-blue-dark-hover:hover {
    color: #01125c !important;
    --axis-fg-color: #01125c !important;
  }
  .fg-color-sm-blue-faded {
    color: #4d5da3 !important;
    --axis-fg-color: #4d5da3 !important;
  }
  .fg-color-sm-blue-faded-hover:hover {
    color: #4d5da3 !important;
    --axis-fg-color: #4d5da3 !important;
  }
  .fg-color-sm-cyan {
    color: #25faf2 !important;
    --axis-fg-color: #25faf2 !important;
  }
  .fg-color-sm-cyan-hover:hover {
    color: #25faf2 !important;
    --axis-fg-color: #25faf2 !important;
  }
  .fg-color-sm-green {
    color: #00a80d !important;
    --axis-fg-color: #00a80d !important;
  }
  .fg-color-sm-green-hover:hover {
    color: #00a80d !important;
    --axis-fg-color: #00a80d !important;
  }
  .fg-color-sm-box-shadow {
    color: rgba(0, 0, 0, 0.05) !important;
    --axis-fg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .fg-color-sm-box-shadow-hover:hover {
    color: rgba(0, 0, 0, 0.05) !important;
    --axis-fg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .fg-color-sm-validation {
    color: #f00 !important;
    --axis-fg-color: #f00 !important;
  }
  .fg-color-sm-validation-hover:hover {
    color: #f00 !important;
    --axis-fg-color: #f00 !important;
  }
  .fg-color-sm-inherit {
    color: inherit !important;
    --axis-fg-color: inherit !important;
  }
  .fg-color-sm-inherit-hover:hover {
    color: inherit !important;
    --axis-fg-color: inherit !important;
  }
  .border-color-sm-white {
    border-color: #fff !important;
  }
  .border-color-sm-white-hover:hover {
    border-color: #fff !important;
  }
  .border-color-sm-black {
    border-color: #212121 !important;
  }
  .border-color-sm-black-hover:hover {
    border-color: #212121 !important;
  }
  .border-color-sm-grey {
    border-color: #a8aca4 !important;
  }
  .border-color-sm-grey-hover:hover {
    border-color: #a8aca4 !important;
  }
  .border-color-sm-grey-dark {
    border-color: #7c7c7c !important;
  }
  .border-color-sm-grey-dark-hover:hover {
    border-color: #7c7c7c !important;
  }
  .border-color-sm-blue {
    border-color: #0019e6 !important;
  }
  .border-color-sm-blue-hover:hover {
    border-color: #0019e6 !important;
  }
  .border-color-sm-blue-lighter {
    border-color: #f2f5ff !important;
  }
  .border-color-sm-blue-lighter-hover:hover {
    border-color: #f2f5ff !important;
  }
  .border-color-sm-blue-light {
    border-color: #e6e8fd !important;
  }
  .border-color-sm-blue-light-hover:hover {
    border-color: #e6e8fd !important;
  }
  .border-color-sm-blue-medium {
    border-color: #bdbfd5 !important;
  }
  .border-color-sm-blue-medium-hover:hover {
    border-color: #bdbfd5 !important;
  }
  .border-color-sm-blue-dark {
    border-color: #01125c !important;
  }
  .border-color-sm-blue-dark-hover:hover {
    border-color: #01125c !important;
  }
  .border-color-sm-blue-faded {
    border-color: #4d5da3 !important;
  }
  .border-color-sm-blue-faded-hover:hover {
    border-color: #4d5da3 !important;
  }
  .border-color-sm-cyan {
    border-color: #25faf2 !important;
  }
  .border-color-sm-cyan-hover:hover {
    border-color: #25faf2 !important;
  }
  .border-color-sm-green {
    border-color: #00a80d !important;
  }
  .border-color-sm-green-hover:hover {
    border-color: #00a80d !important;
  }
  .border-color-sm-box-shadow {
    border-color: rgba(0, 0, 0, 0.05) !important;
  }
  .border-color-sm-box-shadow-hover:hover {
    border-color: rgba(0, 0, 0, 0.05) !important;
  }
  .border-color-sm-validation {
    border-color: #f00 !important;
  }
  .border-color-sm-validation-hover:hover {
    border-color: #f00 !important;
  }
  .border-color-sm-transparent {
    border-color: transparent !important;
  }
  .border-color-sm-transparent-hover:hover {
    border-color: transparent !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .flex-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .flex-md-bottom {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14 !important;
        -ms-flex-order: 13 !important;
            order: 13 !important;
  }
  .col-offset-md-1 {
    margin-left: 8.3333333333% !important;
  }
  .col-offset-md-2 {
    margin-left: 16.6666666667% !important;
  }
  .col-offset-md-3 {
    margin-left: 25% !important;
  }
  .col-offset-md-4 {
    margin-left: 33.3333333333% !important;
  }
  .col-offset-md-5 {
    margin-left: 41.6666666667% !important;
  }
  .col-offset-md-6 {
    margin-left: 50% !important;
  }
  .col-offset-md-7 {
    margin-left: 58.3333333333% !important;
  }
  .col-offset-md-8 {
    margin-left: 66.6666666667% !important;
  }
  .col-offset-md-9 {
    margin-left: 75% !important;
  }
  .col-offset-md-10 {
    margin-left: 83.3333333333% !important;
  }
  .col-offset-md-11 {
    margin-left: 91.6666666667% !important;
  }
  .col-offset-md-12 {
    margin-left: 100% !important;
  }
  .col-offset-end-md-1 {
    margin-right: 8.3333333333% !important;
  }
  .col-offset-end-md-2 {
    margin-right: 16.6666666667% !important;
  }
  .col-offset-end-md-3 {
    margin-right: 25% !important;
  }
  .col-offset-end-md-4 {
    margin-right: 33.3333333333% !important;
  }
  .col-offset-end-md-5 {
    margin-right: 41.6666666667% !important;
  }
  .col-offset-end-md-6 {
    margin-right: 50% !important;
  }
  .col-offset-end-md-7 {
    margin-right: 58.3333333333% !important;
  }
  .col-offset-end-md-8 {
    margin-right: 66.6666666667% !important;
  }
  .col-offset-end-md-9 {
    margin-right: 75% !important;
  }
  .col-offset-end-md-10 {
    margin-right: 83.3333333333% !important;
  }
  .col-offset-end-md-11 {
    margin-right: 91.6666666667% !important;
  }
  .col-offset-end-md-12 {
    margin-right: 100% !important;
  }
  .position-md-absolute {
    position: absolute !important;
  }
  .top-md-0 {
    top: 0 !important;
  }
  .bottom-md-0 {
    bottom: 0 !important;
  }
  .left-md-0 {
    left: 0 !important;
  }
  .right-md-0 {
    right: 0 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-100 {
    margin: 100px !important;
  }
  .m-md-120 {
    margin: 120px !important;
  }
  .m-md-160 {
    margin: 160px !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-100 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }
  .mx-md-120 {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }
  .mx-md-160 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .my-md-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .my-md-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-95 {
    margin-top: 95px !important;
  }
  .mt-md-100 {
    margin-top: 100px !important;
  }
  .mt-md-120 {
    margin-top: 120px !important;
  }
  .mt-md-160 {
    margin-top: 160px !important;
  }
  .mr-md-0 {
    margin-right: 0 !important;
  }
  .mr-md-100 {
    margin-right: 100px !important;
  }
  .mr-md-120 {
    margin-right: 120px !important;
  }
  .mr-md-160 {
    margin-right: 160px !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-60 {
    margin-bottom: 60px !important;
  }
  .mb-md-100 {
    margin-bottom: 100px !important;
  }
  .mb-md-120 {
    margin-bottom: 120px !important;
  }
  .mb-md-160 {
    margin-bottom: 160px !important;
  }
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .ml-md-100 {
    margin-left: 100px !important;
  }
  .ml-md-120 {
    margin-left: 120px !important;
  }
  .ml-md-160 {
    margin-left: 160px !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-24- {
    margin-bottom: -24px !important;
  }
  .mb-md-150- {
    margin-bottom: -150px !important;
  }
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-55 {
    padding: 55px !important;
  }
  .p-md-100 {
    padding: 100px !important;
  }
  .p-md-120 {
    padding: 120px !important;
  }
  .p-md-160 {
    padding: 160px !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-12 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
  .px-md-24 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  .px-md-50 {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
  .px-md-100 {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
  .px-md-120 {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }
  .px-md-160 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-md-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .py-md-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .py-md-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .py-md-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-35 {
    padding-top: 35px !important;
  }
  .pt-md-80 {
    padding-top: 80px !important;
  }
  .pt-md-100 {
    padding-top: 100px !important;
  }
  .pt-md-110 {
    padding-top: 110px !important;
  }
  .pt-md-120 {
    padding-top: 120px !important;
  }
  .pt-md-160 {
    padding-top: 160px !important;
  }
  .pr-md-0 {
    padding-right: 0 !important;
  }
  .pr-md-100 {
    padding-right: 100px !important;
  }
  .pr-md-120 {
    padding-right: 120px !important;
  }
  .pr-md-160 {
    padding-right: 160px !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-35 {
    padding-bottom: 35px !important;
  }
  .pb-md-50 {
    padding-bottom: 50px !important;
  }
  .pb-md-100 {
    padding-bottom: 100px !important;
  }
  .pb-md-120 {
    padding-bottom: 120px !important;
  }
  .pb-md-160 {
    padding-bottom: 160px !important;
  }
  .pb-md-170 {
    padding-bottom: 170px !important;
  }
  .pl-md-0 {
    padding-left: 0 !important;
  }
  .pl-md-100 {
    padding-left: 100px !important;
  }
  .pl-md-120 {
    padding-left: 120px !important;
  }
  .pl-md-160 {
    padding-left: 160px !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-auto {
    width: auto !important;
  }
  .w-md-unset {
    width: unset !important;
  }
  .max-w-md-500px {
    max-width: 500px !important;
  }
  .h-md-100 {
    height: 100% !important;
  }
  .h-md-auto {
    height: auto !important;
  }
  .min-h-md-100px {
    min-height: 100px !important;
  }
  .min-h-md-650px {
    min-height: 650px !important;
  }
  .bg-color-md-white {
    background-color: #fff !important;
    --axis-bg-color: #fff !important;
  }
  .bg-color-md-white-hover:hover {
    background-color: #fff !important;
    --axis-bg-color: #fff !important;
  }
  .bg-color-md-black {
    background-color: #212121 !important;
    --axis-bg-color: #212121 !important;
  }
  .bg-color-md-black-hover:hover {
    background-color: #212121 !important;
    --axis-bg-color: #212121 !important;
  }
  .bg-color-md-grey {
    background-color: #a8aca4 !important;
    --axis-bg-color: #a8aca4 !important;
  }
  .bg-color-md-grey-hover:hover {
    background-color: #a8aca4 !important;
    --axis-bg-color: #a8aca4 !important;
  }
  .bg-color-md-grey-dark {
    background-color: #7c7c7c !important;
    --axis-bg-color: #7c7c7c !important;
  }
  .bg-color-md-grey-dark-hover:hover {
    background-color: #7c7c7c !important;
    --axis-bg-color: #7c7c7c !important;
  }
  .bg-color-md-blue {
    background-color: #0019e6 !important;
    --axis-bg-color: #0019e6 !important;
  }
  .bg-color-md-blue-hover:hover {
    background-color: #0019e6 !important;
    --axis-bg-color: #0019e6 !important;
  }
  .bg-color-md-blue-lighter {
    background-color: #f2f5ff !important;
    --axis-bg-color: #f2f5ff !important;
  }
  .bg-color-md-blue-lighter-hover:hover {
    background-color: #f2f5ff !important;
    --axis-bg-color: #f2f5ff !important;
  }
  .bg-color-md-blue-light {
    background-color: #e6e8fd !important;
    --axis-bg-color: #e6e8fd !important;
  }
  .bg-color-md-blue-light-hover:hover {
    background-color: #e6e8fd !important;
    --axis-bg-color: #e6e8fd !important;
  }
  .bg-color-md-blue-medium {
    background-color: #bdbfd5 !important;
    --axis-bg-color: #bdbfd5 !important;
  }
  .bg-color-md-blue-medium-hover:hover {
    background-color: #bdbfd5 !important;
    --axis-bg-color: #bdbfd5 !important;
  }
  .bg-color-md-blue-dark {
    background-color: #01125c !important;
    --axis-bg-color: #01125c !important;
  }
  .bg-color-md-blue-dark-hover:hover {
    background-color: #01125c !important;
    --axis-bg-color: #01125c !important;
  }
  .bg-color-md-blue-faded {
    background-color: #4d5da3 !important;
    --axis-bg-color: #4d5da3 !important;
  }
  .bg-color-md-blue-faded-hover:hover {
    background-color: #4d5da3 !important;
    --axis-bg-color: #4d5da3 !important;
  }
  .bg-color-md-cyan {
    background-color: #25faf2 !important;
    --axis-bg-color: #25faf2 !important;
  }
  .bg-color-md-cyan-hover:hover {
    background-color: #25faf2 !important;
    --axis-bg-color: #25faf2 !important;
  }
  .bg-color-md-green {
    background-color: #00a80d !important;
    --axis-bg-color: #00a80d !important;
  }
  .bg-color-md-green-hover:hover {
    background-color: #00a80d !important;
    --axis-bg-color: #00a80d !important;
  }
  .bg-color-md-box-shadow {
    background-color: rgba(0, 0, 0, 0.05) !important;
    --axis-bg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .bg-color-md-box-shadow-hover:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
    --axis-bg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .bg-color-md-validation {
    background-color: #f00 !important;
    --axis-bg-color: #f00 !important;
  }
  .bg-color-md-validation-hover:hover {
    background-color: #f00 !important;
    --axis-bg-color: #f00 !important;
  }
  .bg-color-md-transparent {
    background-color: transparent !important;
    --axis-bg-color: transparent !important;
  }
  .bg-color-md-transparent-hover:hover {
    background-color: transparent !important;
    --axis-bg-color: transparent !important;
  }
  .fg-color-md-white {
    color: #fff !important;
    --axis-fg-color: #fff !important;
  }
  .fg-color-md-white-hover:hover {
    color: #fff !important;
    --axis-fg-color: #fff !important;
  }
  .fg-color-md-black {
    color: #212121 !important;
    --axis-fg-color: #212121 !important;
  }
  .fg-color-md-black-hover:hover {
    color: #212121 !important;
    --axis-fg-color: #212121 !important;
  }
  .fg-color-md-grey {
    color: #a8aca4 !important;
    --axis-fg-color: #a8aca4 !important;
  }
  .fg-color-md-grey-hover:hover {
    color: #a8aca4 !important;
    --axis-fg-color: #a8aca4 !important;
  }
  .fg-color-md-grey-dark {
    color: #7c7c7c !important;
    --axis-fg-color: #7c7c7c !important;
  }
  .fg-color-md-grey-dark-hover:hover {
    color: #7c7c7c !important;
    --axis-fg-color: #7c7c7c !important;
  }
  .fg-color-md-blue {
    color: #0019e6 !important;
    --axis-fg-color: #0019e6 !important;
  }
  .fg-color-md-blue-hover:hover {
    color: #0019e6 !important;
    --axis-fg-color: #0019e6 !important;
  }
  .fg-color-md-blue-lighter {
    color: #f2f5ff !important;
    --axis-fg-color: #f2f5ff !important;
  }
  .fg-color-md-blue-lighter-hover:hover {
    color: #f2f5ff !important;
    --axis-fg-color: #f2f5ff !important;
  }
  .fg-color-md-blue-light {
    color: #e6e8fd !important;
    --axis-fg-color: #e6e8fd !important;
  }
  .fg-color-md-blue-light-hover:hover {
    color: #e6e8fd !important;
    --axis-fg-color: #e6e8fd !important;
  }
  .fg-color-md-blue-medium {
    color: #bdbfd5 !important;
    --axis-fg-color: #bdbfd5 !important;
  }
  .fg-color-md-blue-medium-hover:hover {
    color: #bdbfd5 !important;
    --axis-fg-color: #bdbfd5 !important;
  }
  .fg-color-md-blue-dark {
    color: #01125c !important;
    --axis-fg-color: #01125c !important;
  }
  .fg-color-md-blue-dark-hover:hover {
    color: #01125c !important;
    --axis-fg-color: #01125c !important;
  }
  .fg-color-md-blue-faded {
    color: #4d5da3 !important;
    --axis-fg-color: #4d5da3 !important;
  }
  .fg-color-md-blue-faded-hover:hover {
    color: #4d5da3 !important;
    --axis-fg-color: #4d5da3 !important;
  }
  .fg-color-md-cyan {
    color: #25faf2 !important;
    --axis-fg-color: #25faf2 !important;
  }
  .fg-color-md-cyan-hover:hover {
    color: #25faf2 !important;
    --axis-fg-color: #25faf2 !important;
  }
  .fg-color-md-green {
    color: #00a80d !important;
    --axis-fg-color: #00a80d !important;
  }
  .fg-color-md-green-hover:hover {
    color: #00a80d !important;
    --axis-fg-color: #00a80d !important;
  }
  .fg-color-md-box-shadow {
    color: rgba(0, 0, 0, 0.05) !important;
    --axis-fg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .fg-color-md-box-shadow-hover:hover {
    color: rgba(0, 0, 0, 0.05) !important;
    --axis-fg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .fg-color-md-validation {
    color: #f00 !important;
    --axis-fg-color: #f00 !important;
  }
  .fg-color-md-validation-hover:hover {
    color: #f00 !important;
    --axis-fg-color: #f00 !important;
  }
  .fg-color-md-inherit {
    color: inherit !important;
    --axis-fg-color: inherit !important;
  }
  .fg-color-md-inherit-hover:hover {
    color: inherit !important;
    --axis-fg-color: inherit !important;
  }
  .border-color-md-white {
    border-color: #fff !important;
  }
  .border-color-md-white-hover:hover {
    border-color: #fff !important;
  }
  .border-color-md-black {
    border-color: #212121 !important;
  }
  .border-color-md-black-hover:hover {
    border-color: #212121 !important;
  }
  .border-color-md-grey {
    border-color: #a8aca4 !important;
  }
  .border-color-md-grey-hover:hover {
    border-color: #a8aca4 !important;
  }
  .border-color-md-grey-dark {
    border-color: #7c7c7c !important;
  }
  .border-color-md-grey-dark-hover:hover {
    border-color: #7c7c7c !important;
  }
  .border-color-md-blue {
    border-color: #0019e6 !important;
  }
  .border-color-md-blue-hover:hover {
    border-color: #0019e6 !important;
  }
  .border-color-md-blue-lighter {
    border-color: #f2f5ff !important;
  }
  .border-color-md-blue-lighter-hover:hover {
    border-color: #f2f5ff !important;
  }
  .border-color-md-blue-light {
    border-color: #e6e8fd !important;
  }
  .border-color-md-blue-light-hover:hover {
    border-color: #e6e8fd !important;
  }
  .border-color-md-blue-medium {
    border-color: #bdbfd5 !important;
  }
  .border-color-md-blue-medium-hover:hover {
    border-color: #bdbfd5 !important;
  }
  .border-color-md-blue-dark {
    border-color: #01125c !important;
  }
  .border-color-md-blue-dark-hover:hover {
    border-color: #01125c !important;
  }
  .border-color-md-blue-faded {
    border-color: #4d5da3 !important;
  }
  .border-color-md-blue-faded-hover:hover {
    border-color: #4d5da3 !important;
  }
  .border-color-md-cyan {
    border-color: #25faf2 !important;
  }
  .border-color-md-cyan-hover:hover {
    border-color: #25faf2 !important;
  }
  .border-color-md-green {
    border-color: #00a80d !important;
  }
  .border-color-md-green-hover:hover {
    border-color: #00a80d !important;
  }
  .border-color-md-box-shadow {
    border-color: rgba(0, 0, 0, 0.05) !important;
  }
  .border-color-md-box-shadow-hover:hover {
    border-color: rgba(0, 0, 0, 0.05) !important;
  }
  .border-color-md-validation {
    border-color: #f00 !important;
  }
  .border-color-md-validation-hover:hover {
    border-color: #f00 !important;
  }
  .border-color-md-transparent {
    border-color: transparent !important;
  }
  .border-color-md-transparent-hover:hover {
    border-color: transparent !important;
  }
  .border-radius-md-5px {
    border-radius: 5px !important;
  }
  .border-radius-top-left-md-5px {
    border-top-left-radius: 5px !important;
  }
  .border-radius-top-right-md-0 {
    border-top-right-radius: 0 !important;
  }
  .border-radius-top-right-md-5px {
    border-top-right-radius: 5px !important;
  }
  .border-radius-bottom-left-md-5px {
    border-bottom-left-radius: 5px !important;
  }
  .border-radius-bottom-right-md-0 {
    border-bottom-right-radius: 0 !important;
  }
  .border-radius-bottom-right-md-5px {
    border-bottom-right-radius: 5px !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .flex-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14 !important;
        -ms-flex-order: 13 !important;
            order: 13 !important;
  }
  .col-offset-lg-1 {
    margin-left: 8.3333333333% !important;
  }
  .col-offset-lg-2 {
    margin-left: 16.6666666667% !important;
  }
  .col-offset-lg-3 {
    margin-left: 25% !important;
  }
  .col-offset-lg-4 {
    margin-left: 33.3333333333% !important;
  }
  .col-offset-lg-5 {
    margin-left: 41.6666666667% !important;
  }
  .col-offset-lg-6 {
    margin-left: 50% !important;
  }
  .col-offset-lg-7 {
    margin-left: 58.3333333333% !important;
  }
  .col-offset-lg-8 {
    margin-left: 66.6666666667% !important;
  }
  .col-offset-lg-9 {
    margin-left: 75% !important;
  }
  .col-offset-lg-10 {
    margin-left: 83.3333333333% !important;
  }
  .col-offset-lg-11 {
    margin-left: 91.6666666667% !important;
  }
  .col-offset-lg-12 {
    margin-left: 100% !important;
  }
  .col-offset-end-lg-1 {
    margin-right: 8.3333333333% !important;
  }
  .col-offset-end-lg-2 {
    margin-right: 16.6666666667% !important;
  }
  .col-offset-end-lg-3 {
    margin-right: 25% !important;
  }
  .col-offset-end-lg-4 {
    margin-right: 33.3333333333% !important;
  }
  .col-offset-end-lg-5 {
    margin-right: 41.6666666667% !important;
  }
  .col-offset-end-lg-6 {
    margin-right: 50% !important;
  }
  .col-offset-end-lg-7 {
    margin-right: 58.3333333333% !important;
  }
  .col-offset-end-lg-8 {
    margin-right: 66.6666666667% !important;
  }
  .col-offset-end-lg-9 {
    margin-right: 75% !important;
  }
  .col-offset-end-lg-10 {
    margin-right: 83.3333333333% !important;
  }
  .col-offset-end-lg-11 {
    margin-right: 91.6666666667% !important;
  }
  .col-offset-end-lg-12 {
    margin-right: 100% !important;
  }
  .position-lg-absolute {
    position: absolute !important;
  }
  .top-lg-0 {
    top: 0 !important;
  }
  .bottom-lg-0 {
    bottom: 0 !important;
  }
  .left-lg-0 {
    left: 0 !important;
  }
  .left-lg-auto {
    left: auto !important;
  }
  .right-lg-0 {
    right: 0 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-100 {
    margin: 100px !important;
  }
  .m-lg-120 {
    margin: 120px !important;
  }
  .m-lg-160 {
    margin: 160px !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-100 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }
  .mx-lg-120 {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }
  .mx-lg-160 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .my-lg-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .my-lg-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-100 {
    margin-top: 100px !important;
  }
  .mt-lg-120 {
    margin-top: 120px !important;
  }
  .mt-lg-160 {
    margin-top: 160px !important;
  }
  .mr-lg-0 {
    margin-right: 0 !important;
  }
  .mr-lg-100 {
    margin-right: 100px !important;
  }
  .mr-lg-120 {
    margin-right: 120px !important;
  }
  .mr-lg-160 {
    margin-right: 160px !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-100 {
    margin-bottom: 100px !important;
  }
  .mb-lg-120 {
    margin-bottom: 120px !important;
  }
  .mb-lg-160 {
    margin-bottom: 160px !important;
  }
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  .ml-lg-100 {
    margin-left: 100px !important;
  }
  .ml-lg-120 {
    margin-left: 120px !important;
  }
  .ml-lg-160 {
    margin-left: 160px !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-100 {
    padding: 100px !important;
  }
  .p-lg-120 {
    padding: 120px !important;
  }
  .p-lg-160 {
    padding: 160px !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-12 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
  .px-lg-60 {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
  .px-lg-100 {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
  .px-lg-120 {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }
  .px-lg-160 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-lg-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .py-lg-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .py-lg-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-100 {
    padding-top: 100px !important;
  }
  .pt-lg-120 {
    padding-top: 120px !important;
  }
  .pt-lg-160 {
    padding-top: 160px !important;
  }
  .pr-lg-0 {
    padding-right: 0 !important;
  }
  .pr-lg-100 {
    padding-right: 100px !important;
  }
  .pr-lg-120 {
    padding-right: 120px !important;
  }
  .pr-lg-160 {
    padding-right: 160px !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-100 {
    padding-bottom: 100px !important;
  }
  .pb-lg-120 {
    padding-bottom: 120px !important;
  }
  .pb-lg-160 {
    padding-bottom: 160px !important;
  }
  .pl-lg-0 {
    padding-left: 0 !important;
  }
  .pl-lg-100 {
    padding-left: 100px !important;
  }
  .pl-lg-120 {
    padding-left: 120px !important;
  }
  .pl-lg-160 {
    padding-left: 160px !important;
  }
  .w-lg-45 {
    width: 45% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .h-lg-100 {
    height: 100% !important;
  }
  .bg-color-lg-white {
    background-color: #fff !important;
    --axis-bg-color: #fff !important;
  }
  .bg-color-lg-white-hover:hover {
    background-color: #fff !important;
    --axis-bg-color: #fff !important;
  }
  .bg-color-lg-black {
    background-color: #212121 !important;
    --axis-bg-color: #212121 !important;
  }
  .bg-color-lg-black-hover:hover {
    background-color: #212121 !important;
    --axis-bg-color: #212121 !important;
  }
  .bg-color-lg-grey {
    background-color: #a8aca4 !important;
    --axis-bg-color: #a8aca4 !important;
  }
  .bg-color-lg-grey-hover:hover {
    background-color: #a8aca4 !important;
    --axis-bg-color: #a8aca4 !important;
  }
  .bg-color-lg-grey-dark {
    background-color: #7c7c7c !important;
    --axis-bg-color: #7c7c7c !important;
  }
  .bg-color-lg-grey-dark-hover:hover {
    background-color: #7c7c7c !important;
    --axis-bg-color: #7c7c7c !important;
  }
  .bg-color-lg-blue {
    background-color: #0019e6 !important;
    --axis-bg-color: #0019e6 !important;
  }
  .bg-color-lg-blue-hover:hover {
    background-color: #0019e6 !important;
    --axis-bg-color: #0019e6 !important;
  }
  .bg-color-lg-blue-lighter {
    background-color: #f2f5ff !important;
    --axis-bg-color: #f2f5ff !important;
  }
  .bg-color-lg-blue-lighter-hover:hover {
    background-color: #f2f5ff !important;
    --axis-bg-color: #f2f5ff !important;
  }
  .bg-color-lg-blue-light {
    background-color: #e6e8fd !important;
    --axis-bg-color: #e6e8fd !important;
  }
  .bg-color-lg-blue-light-hover:hover {
    background-color: #e6e8fd !important;
    --axis-bg-color: #e6e8fd !important;
  }
  .bg-color-lg-blue-medium {
    background-color: #bdbfd5 !important;
    --axis-bg-color: #bdbfd5 !important;
  }
  .bg-color-lg-blue-medium-hover:hover {
    background-color: #bdbfd5 !important;
    --axis-bg-color: #bdbfd5 !important;
  }
  .bg-color-lg-blue-dark {
    background-color: #01125c !important;
    --axis-bg-color: #01125c !important;
  }
  .bg-color-lg-blue-dark-hover:hover {
    background-color: #01125c !important;
    --axis-bg-color: #01125c !important;
  }
  .bg-color-lg-blue-faded {
    background-color: #4d5da3 !important;
    --axis-bg-color: #4d5da3 !important;
  }
  .bg-color-lg-blue-faded-hover:hover {
    background-color: #4d5da3 !important;
    --axis-bg-color: #4d5da3 !important;
  }
  .bg-color-lg-cyan {
    background-color: #25faf2 !important;
    --axis-bg-color: #25faf2 !important;
  }
  .bg-color-lg-cyan-hover:hover {
    background-color: #25faf2 !important;
    --axis-bg-color: #25faf2 !important;
  }
  .bg-color-lg-green {
    background-color: #00a80d !important;
    --axis-bg-color: #00a80d !important;
  }
  .bg-color-lg-green-hover:hover {
    background-color: #00a80d !important;
    --axis-bg-color: #00a80d !important;
  }
  .bg-color-lg-box-shadow {
    background-color: rgba(0, 0, 0, 0.05) !important;
    --axis-bg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .bg-color-lg-box-shadow-hover:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
    --axis-bg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .bg-color-lg-validation {
    background-color: #f00 !important;
    --axis-bg-color: #f00 !important;
  }
  .bg-color-lg-validation-hover:hover {
    background-color: #f00 !important;
    --axis-bg-color: #f00 !important;
  }
  .bg-color-lg-transparent {
    background-color: transparent !important;
    --axis-bg-color: transparent !important;
  }
  .bg-color-lg-transparent-hover:hover {
    background-color: transparent !important;
    --axis-bg-color: transparent !important;
  }
  .fg-color-lg-white {
    color: #fff !important;
    --axis-fg-color: #fff !important;
  }
  .fg-color-lg-white-hover:hover {
    color: #fff !important;
    --axis-fg-color: #fff !important;
  }
  .fg-color-lg-black {
    color: #212121 !important;
    --axis-fg-color: #212121 !important;
  }
  .fg-color-lg-black-hover:hover {
    color: #212121 !important;
    --axis-fg-color: #212121 !important;
  }
  .fg-color-lg-grey {
    color: #a8aca4 !important;
    --axis-fg-color: #a8aca4 !important;
  }
  .fg-color-lg-grey-hover:hover {
    color: #a8aca4 !important;
    --axis-fg-color: #a8aca4 !important;
  }
  .fg-color-lg-grey-dark {
    color: #7c7c7c !important;
    --axis-fg-color: #7c7c7c !important;
  }
  .fg-color-lg-grey-dark-hover:hover {
    color: #7c7c7c !important;
    --axis-fg-color: #7c7c7c !important;
  }
  .fg-color-lg-blue {
    color: #0019e6 !important;
    --axis-fg-color: #0019e6 !important;
  }
  .fg-color-lg-blue-hover:hover {
    color: #0019e6 !important;
    --axis-fg-color: #0019e6 !important;
  }
  .fg-color-lg-blue-lighter {
    color: #f2f5ff !important;
    --axis-fg-color: #f2f5ff !important;
  }
  .fg-color-lg-blue-lighter-hover:hover {
    color: #f2f5ff !important;
    --axis-fg-color: #f2f5ff !important;
  }
  .fg-color-lg-blue-light {
    color: #e6e8fd !important;
    --axis-fg-color: #e6e8fd !important;
  }
  .fg-color-lg-blue-light-hover:hover {
    color: #e6e8fd !important;
    --axis-fg-color: #e6e8fd !important;
  }
  .fg-color-lg-blue-medium {
    color: #bdbfd5 !important;
    --axis-fg-color: #bdbfd5 !important;
  }
  .fg-color-lg-blue-medium-hover:hover {
    color: #bdbfd5 !important;
    --axis-fg-color: #bdbfd5 !important;
  }
  .fg-color-lg-blue-dark {
    color: #01125c !important;
    --axis-fg-color: #01125c !important;
  }
  .fg-color-lg-blue-dark-hover:hover {
    color: #01125c !important;
    --axis-fg-color: #01125c !important;
  }
  .fg-color-lg-blue-faded {
    color: #4d5da3 !important;
    --axis-fg-color: #4d5da3 !important;
  }
  .fg-color-lg-blue-faded-hover:hover {
    color: #4d5da3 !important;
    --axis-fg-color: #4d5da3 !important;
  }
  .fg-color-lg-cyan {
    color: #25faf2 !important;
    --axis-fg-color: #25faf2 !important;
  }
  .fg-color-lg-cyan-hover:hover {
    color: #25faf2 !important;
    --axis-fg-color: #25faf2 !important;
  }
  .fg-color-lg-green {
    color: #00a80d !important;
    --axis-fg-color: #00a80d !important;
  }
  .fg-color-lg-green-hover:hover {
    color: #00a80d !important;
    --axis-fg-color: #00a80d !important;
  }
  .fg-color-lg-box-shadow {
    color: rgba(0, 0, 0, 0.05) !important;
    --axis-fg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .fg-color-lg-box-shadow-hover:hover {
    color: rgba(0, 0, 0, 0.05) !important;
    --axis-fg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .fg-color-lg-validation {
    color: #f00 !important;
    --axis-fg-color: #f00 !important;
  }
  .fg-color-lg-validation-hover:hover {
    color: #f00 !important;
    --axis-fg-color: #f00 !important;
  }
  .fg-color-lg-inherit {
    color: inherit !important;
    --axis-fg-color: inherit !important;
  }
  .fg-color-lg-inherit-hover:hover {
    color: inherit !important;
    --axis-fg-color: inherit !important;
  }
  .border-color-lg-white {
    border-color: #fff !important;
  }
  .border-color-lg-white-hover:hover {
    border-color: #fff !important;
  }
  .border-color-lg-black {
    border-color: #212121 !important;
  }
  .border-color-lg-black-hover:hover {
    border-color: #212121 !important;
  }
  .border-color-lg-grey {
    border-color: #a8aca4 !important;
  }
  .border-color-lg-grey-hover:hover {
    border-color: #a8aca4 !important;
  }
  .border-color-lg-grey-dark {
    border-color: #7c7c7c !important;
  }
  .border-color-lg-grey-dark-hover:hover {
    border-color: #7c7c7c !important;
  }
  .border-color-lg-blue {
    border-color: #0019e6 !important;
  }
  .border-color-lg-blue-hover:hover {
    border-color: #0019e6 !important;
  }
  .border-color-lg-blue-lighter {
    border-color: #f2f5ff !important;
  }
  .border-color-lg-blue-lighter-hover:hover {
    border-color: #f2f5ff !important;
  }
  .border-color-lg-blue-light {
    border-color: #e6e8fd !important;
  }
  .border-color-lg-blue-light-hover:hover {
    border-color: #e6e8fd !important;
  }
  .border-color-lg-blue-medium {
    border-color: #bdbfd5 !important;
  }
  .border-color-lg-blue-medium-hover:hover {
    border-color: #bdbfd5 !important;
  }
  .border-color-lg-blue-dark {
    border-color: #01125c !important;
  }
  .border-color-lg-blue-dark-hover:hover {
    border-color: #01125c !important;
  }
  .border-color-lg-blue-faded {
    border-color: #4d5da3 !important;
  }
  .border-color-lg-blue-faded-hover:hover {
    border-color: #4d5da3 !important;
  }
  .border-color-lg-cyan {
    border-color: #25faf2 !important;
  }
  .border-color-lg-cyan-hover:hover {
    border-color: #25faf2 !important;
  }
  .border-color-lg-green {
    border-color: #00a80d !important;
  }
  .border-color-lg-green-hover:hover {
    border-color: #00a80d !important;
  }
  .border-color-lg-box-shadow {
    border-color: rgba(0, 0, 0, 0.05) !important;
  }
  .border-color-lg-box-shadow-hover:hover {
    border-color: rgba(0, 0, 0, 0.05) !important;
  }
  .border-color-lg-validation {
    border-color: #f00 !important;
  }
  .border-color-lg-validation-hover:hover {
    border-color: #f00 !important;
  }
  .border-color-lg-transparent {
    border-color: transparent !important;
  }
  .border-color-lg-transparent-hover:hover {
    border-color: transparent !important;
  }
  .border-radius-top-left-lg-5px {
    border-top-left-radius: 5px !important;
  }
  .border-radius-top-right-lg-5px {
    border-top-right-radius: 5px !important;
  }
  .border-radius-bottom-left-lg-5px {
    border-bottom-left-radius: 5px !important;
  }
  .border-radius-bottom-right-lg-5px {
    border-bottom-right-radius: 5px !important;
  }
}
@media (min-width: 1200px) {
  .col-offset-xl-1 {
    margin-left: 8.3333333333% !important;
  }
  .col-offset-xl-2 {
    margin-left: 16.6666666667% !important;
  }
  .col-offset-xl-3 {
    margin-left: 25% !important;
  }
  .col-offset-xl-4 {
    margin-left: 33.3333333333% !important;
  }
  .col-offset-xl-5 {
    margin-left: 41.6666666667% !important;
  }
  .col-offset-xl-6 {
    margin-left: 50% !important;
  }
  .col-offset-xl-7 {
    margin-left: 58.3333333333% !important;
  }
  .col-offset-xl-8 {
    margin-left: 66.6666666667% !important;
  }
  .col-offset-xl-9 {
    margin-left: 75% !important;
  }
  .col-offset-xl-10 {
    margin-left: 83.3333333333% !important;
  }
  .col-offset-xl-11 {
    margin-left: 91.6666666667% !important;
  }
  .col-offset-xl-12 {
    margin-left: 100% !important;
  }
  .col-offset-end-xl-1 {
    margin-right: 8.3333333333% !important;
  }
  .col-offset-end-xl-2 {
    margin-right: 16.6666666667% !important;
  }
  .col-offset-end-xl-3 {
    margin-right: 25% !important;
  }
  .col-offset-end-xl-4 {
    margin-right: 33.3333333333% !important;
  }
  .col-offset-end-xl-5 {
    margin-right: 41.6666666667% !important;
  }
  .col-offset-end-xl-6 {
    margin-right: 50% !important;
  }
  .col-offset-end-xl-7 {
    margin-right: 58.3333333333% !important;
  }
  .col-offset-end-xl-8 {
    margin-right: 66.6666666667% !important;
  }
  .col-offset-end-xl-9 {
    margin-right: 75% !important;
  }
  .col-offset-end-xl-10 {
    margin-right: 83.3333333333% !important;
  }
  .col-offset-end-xl-11 {
    margin-right: 91.6666666667% !important;
  }
  .col-offset-end-xl-12 {
    margin-right: 100% !important;
  }
  .bg-color-xl-white {
    background-color: #fff !important;
    --axis-bg-color: #fff !important;
  }
  .bg-color-xl-white-hover:hover {
    background-color: #fff !important;
    --axis-bg-color: #fff !important;
  }
  .bg-color-xl-black {
    background-color: #212121 !important;
    --axis-bg-color: #212121 !important;
  }
  .bg-color-xl-black-hover:hover {
    background-color: #212121 !important;
    --axis-bg-color: #212121 !important;
  }
  .bg-color-xl-grey {
    background-color: #a8aca4 !important;
    --axis-bg-color: #a8aca4 !important;
  }
  .bg-color-xl-grey-hover:hover {
    background-color: #a8aca4 !important;
    --axis-bg-color: #a8aca4 !important;
  }
  .bg-color-xl-grey-dark {
    background-color: #7c7c7c !important;
    --axis-bg-color: #7c7c7c !important;
  }
  .bg-color-xl-grey-dark-hover:hover {
    background-color: #7c7c7c !important;
    --axis-bg-color: #7c7c7c !important;
  }
  .bg-color-xl-blue {
    background-color: #0019e6 !important;
    --axis-bg-color: #0019e6 !important;
  }
  .bg-color-xl-blue-hover:hover {
    background-color: #0019e6 !important;
    --axis-bg-color: #0019e6 !important;
  }
  .bg-color-xl-blue-lighter {
    background-color: #f2f5ff !important;
    --axis-bg-color: #f2f5ff !important;
  }
  .bg-color-xl-blue-lighter-hover:hover {
    background-color: #f2f5ff !important;
    --axis-bg-color: #f2f5ff !important;
  }
  .bg-color-xl-blue-light {
    background-color: #e6e8fd !important;
    --axis-bg-color: #e6e8fd !important;
  }
  .bg-color-xl-blue-light-hover:hover {
    background-color: #e6e8fd !important;
    --axis-bg-color: #e6e8fd !important;
  }
  .bg-color-xl-blue-medium {
    background-color: #bdbfd5 !important;
    --axis-bg-color: #bdbfd5 !important;
  }
  .bg-color-xl-blue-medium-hover:hover {
    background-color: #bdbfd5 !important;
    --axis-bg-color: #bdbfd5 !important;
  }
  .bg-color-xl-blue-dark {
    background-color: #01125c !important;
    --axis-bg-color: #01125c !important;
  }
  .bg-color-xl-blue-dark-hover:hover {
    background-color: #01125c !important;
    --axis-bg-color: #01125c !important;
  }
  .bg-color-xl-blue-faded {
    background-color: #4d5da3 !important;
    --axis-bg-color: #4d5da3 !important;
  }
  .bg-color-xl-blue-faded-hover:hover {
    background-color: #4d5da3 !important;
    --axis-bg-color: #4d5da3 !important;
  }
  .bg-color-xl-cyan {
    background-color: #25faf2 !important;
    --axis-bg-color: #25faf2 !important;
  }
  .bg-color-xl-cyan-hover:hover {
    background-color: #25faf2 !important;
    --axis-bg-color: #25faf2 !important;
  }
  .bg-color-xl-green {
    background-color: #00a80d !important;
    --axis-bg-color: #00a80d !important;
  }
  .bg-color-xl-green-hover:hover {
    background-color: #00a80d !important;
    --axis-bg-color: #00a80d !important;
  }
  .bg-color-xl-box-shadow {
    background-color: rgba(0, 0, 0, 0.05) !important;
    --axis-bg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .bg-color-xl-box-shadow-hover:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
    --axis-bg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .bg-color-xl-validation {
    background-color: #f00 !important;
    --axis-bg-color: #f00 !important;
  }
  .bg-color-xl-validation-hover:hover {
    background-color: #f00 !important;
    --axis-bg-color: #f00 !important;
  }
  .bg-color-xl-transparent {
    background-color: transparent !important;
    --axis-bg-color: transparent !important;
  }
  .bg-color-xl-transparent-hover:hover {
    background-color: transparent !important;
    --axis-bg-color: transparent !important;
  }
  .fg-color-xl-white {
    color: #fff !important;
    --axis-fg-color: #fff !important;
  }
  .fg-color-xl-white-hover:hover {
    color: #fff !important;
    --axis-fg-color: #fff !important;
  }
  .fg-color-xl-black {
    color: #212121 !important;
    --axis-fg-color: #212121 !important;
  }
  .fg-color-xl-black-hover:hover {
    color: #212121 !important;
    --axis-fg-color: #212121 !important;
  }
  .fg-color-xl-grey {
    color: #a8aca4 !important;
    --axis-fg-color: #a8aca4 !important;
  }
  .fg-color-xl-grey-hover:hover {
    color: #a8aca4 !important;
    --axis-fg-color: #a8aca4 !important;
  }
  .fg-color-xl-grey-dark {
    color: #7c7c7c !important;
    --axis-fg-color: #7c7c7c !important;
  }
  .fg-color-xl-grey-dark-hover:hover {
    color: #7c7c7c !important;
    --axis-fg-color: #7c7c7c !important;
  }
  .fg-color-xl-blue {
    color: #0019e6 !important;
    --axis-fg-color: #0019e6 !important;
  }
  .fg-color-xl-blue-hover:hover {
    color: #0019e6 !important;
    --axis-fg-color: #0019e6 !important;
  }
  .fg-color-xl-blue-lighter {
    color: #f2f5ff !important;
    --axis-fg-color: #f2f5ff !important;
  }
  .fg-color-xl-blue-lighter-hover:hover {
    color: #f2f5ff !important;
    --axis-fg-color: #f2f5ff !important;
  }
  .fg-color-xl-blue-light {
    color: #e6e8fd !important;
    --axis-fg-color: #e6e8fd !important;
  }
  .fg-color-xl-blue-light-hover:hover {
    color: #e6e8fd !important;
    --axis-fg-color: #e6e8fd !important;
  }
  .fg-color-xl-blue-medium {
    color: #bdbfd5 !important;
    --axis-fg-color: #bdbfd5 !important;
  }
  .fg-color-xl-blue-medium-hover:hover {
    color: #bdbfd5 !important;
    --axis-fg-color: #bdbfd5 !important;
  }
  .fg-color-xl-blue-dark {
    color: #01125c !important;
    --axis-fg-color: #01125c !important;
  }
  .fg-color-xl-blue-dark-hover:hover {
    color: #01125c !important;
    --axis-fg-color: #01125c !important;
  }
  .fg-color-xl-blue-faded {
    color: #4d5da3 !important;
    --axis-fg-color: #4d5da3 !important;
  }
  .fg-color-xl-blue-faded-hover:hover {
    color: #4d5da3 !important;
    --axis-fg-color: #4d5da3 !important;
  }
  .fg-color-xl-cyan {
    color: #25faf2 !important;
    --axis-fg-color: #25faf2 !important;
  }
  .fg-color-xl-cyan-hover:hover {
    color: #25faf2 !important;
    --axis-fg-color: #25faf2 !important;
  }
  .fg-color-xl-green {
    color: #00a80d !important;
    --axis-fg-color: #00a80d !important;
  }
  .fg-color-xl-green-hover:hover {
    color: #00a80d !important;
    --axis-fg-color: #00a80d !important;
  }
  .fg-color-xl-box-shadow {
    color: rgba(0, 0, 0, 0.05) !important;
    --axis-fg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .fg-color-xl-box-shadow-hover:hover {
    color: rgba(0, 0, 0, 0.05) !important;
    --axis-fg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .fg-color-xl-validation {
    color: #f00 !important;
    --axis-fg-color: #f00 !important;
  }
  .fg-color-xl-validation-hover:hover {
    color: #f00 !important;
    --axis-fg-color: #f00 !important;
  }
  .fg-color-xl-inherit {
    color: inherit !important;
    --axis-fg-color: inherit !important;
  }
  .fg-color-xl-inherit-hover:hover {
    color: inherit !important;
    --axis-fg-color: inherit !important;
  }
  .border-color-xl-white {
    border-color: #fff !important;
  }
  .border-color-xl-white-hover:hover {
    border-color: #fff !important;
  }
  .border-color-xl-black {
    border-color: #212121 !important;
  }
  .border-color-xl-black-hover:hover {
    border-color: #212121 !important;
  }
  .border-color-xl-grey {
    border-color: #a8aca4 !important;
  }
  .border-color-xl-grey-hover:hover {
    border-color: #a8aca4 !important;
  }
  .border-color-xl-grey-dark {
    border-color: #7c7c7c !important;
  }
  .border-color-xl-grey-dark-hover:hover {
    border-color: #7c7c7c !important;
  }
  .border-color-xl-blue {
    border-color: #0019e6 !important;
  }
  .border-color-xl-blue-hover:hover {
    border-color: #0019e6 !important;
  }
  .border-color-xl-blue-lighter {
    border-color: #f2f5ff !important;
  }
  .border-color-xl-blue-lighter-hover:hover {
    border-color: #f2f5ff !important;
  }
  .border-color-xl-blue-light {
    border-color: #e6e8fd !important;
  }
  .border-color-xl-blue-light-hover:hover {
    border-color: #e6e8fd !important;
  }
  .border-color-xl-blue-medium {
    border-color: #bdbfd5 !important;
  }
  .border-color-xl-blue-medium-hover:hover {
    border-color: #bdbfd5 !important;
  }
  .border-color-xl-blue-dark {
    border-color: #01125c !important;
  }
  .border-color-xl-blue-dark-hover:hover {
    border-color: #01125c !important;
  }
  .border-color-xl-blue-faded {
    border-color: #4d5da3 !important;
  }
  .border-color-xl-blue-faded-hover:hover {
    border-color: #4d5da3 !important;
  }
  .border-color-xl-cyan {
    border-color: #25faf2 !important;
  }
  .border-color-xl-cyan-hover:hover {
    border-color: #25faf2 !important;
  }
  .border-color-xl-green {
    border-color: #00a80d !important;
  }
  .border-color-xl-green-hover:hover {
    border-color: #00a80d !important;
  }
  .border-color-xl-box-shadow {
    border-color: rgba(0, 0, 0, 0.05) !important;
  }
  .border-color-xl-box-shadow-hover:hover {
    border-color: rgba(0, 0, 0, 0.05) !important;
  }
  .border-color-xl-validation {
    border-color: #f00 !important;
  }
  .border-color-xl-validation-hover:hover {
    border-color: #f00 !important;
  }
  .border-color-xl-transparent {
    border-color: transparent !important;
  }
  .border-color-xl-transparent-hover:hover {
    border-color: transparent !important;
  }
}
@media (min-width: 1400px) {
  .col-offset-xxl-1 {
    margin-left: 8.3333333333% !important;
  }
  .col-offset-xxl-2 {
    margin-left: 16.6666666667% !important;
  }
  .col-offset-xxl-3 {
    margin-left: 25% !important;
  }
  .col-offset-xxl-4 {
    margin-left: 33.3333333333% !important;
  }
  .col-offset-xxl-5 {
    margin-left: 41.6666666667% !important;
  }
  .col-offset-xxl-6 {
    margin-left: 50% !important;
  }
  .col-offset-xxl-7 {
    margin-left: 58.3333333333% !important;
  }
  .col-offset-xxl-8 {
    margin-left: 66.6666666667% !important;
  }
  .col-offset-xxl-9 {
    margin-left: 75% !important;
  }
  .col-offset-xxl-10 {
    margin-left: 83.3333333333% !important;
  }
  .col-offset-xxl-11 {
    margin-left: 91.6666666667% !important;
  }
  .col-offset-xxl-12 {
    margin-left: 100% !important;
  }
  .col-offset-end-xxl-1 {
    margin-right: 8.3333333333% !important;
  }
  .col-offset-end-xxl-2 {
    margin-right: 16.6666666667% !important;
  }
  .col-offset-end-xxl-3 {
    margin-right: 25% !important;
  }
  .col-offset-end-xxl-4 {
    margin-right: 33.3333333333% !important;
  }
  .col-offset-end-xxl-5 {
    margin-right: 41.6666666667% !important;
  }
  .col-offset-end-xxl-6 {
    margin-right: 50% !important;
  }
  .col-offset-end-xxl-7 {
    margin-right: 58.3333333333% !important;
  }
  .col-offset-end-xxl-8 {
    margin-right: 66.6666666667% !important;
  }
  .col-offset-end-xxl-9 {
    margin-right: 75% !important;
  }
  .col-offset-end-xxl-10 {
    margin-right: 83.3333333333% !important;
  }
  .col-offset-end-xxl-11 {
    margin-right: 91.6666666667% !important;
  }
  .col-offset-end-xxl-12 {
    margin-right: 100% !important;
  }
  .bg-color-xxl-white {
    background-color: #fff !important;
    --axis-bg-color: #fff !important;
  }
  .bg-color-xxl-white-hover:hover {
    background-color: #fff !important;
    --axis-bg-color: #fff !important;
  }
  .bg-color-xxl-black {
    background-color: #212121 !important;
    --axis-bg-color: #212121 !important;
  }
  .bg-color-xxl-black-hover:hover {
    background-color: #212121 !important;
    --axis-bg-color: #212121 !important;
  }
  .bg-color-xxl-grey {
    background-color: #a8aca4 !important;
    --axis-bg-color: #a8aca4 !important;
  }
  .bg-color-xxl-grey-hover:hover {
    background-color: #a8aca4 !important;
    --axis-bg-color: #a8aca4 !important;
  }
  .bg-color-xxl-grey-dark {
    background-color: #7c7c7c !important;
    --axis-bg-color: #7c7c7c !important;
  }
  .bg-color-xxl-grey-dark-hover:hover {
    background-color: #7c7c7c !important;
    --axis-bg-color: #7c7c7c !important;
  }
  .bg-color-xxl-blue {
    background-color: #0019e6 !important;
    --axis-bg-color: #0019e6 !important;
  }
  .bg-color-xxl-blue-hover:hover {
    background-color: #0019e6 !important;
    --axis-bg-color: #0019e6 !important;
  }
  .bg-color-xxl-blue-lighter {
    background-color: #f2f5ff !important;
    --axis-bg-color: #f2f5ff !important;
  }
  .bg-color-xxl-blue-lighter-hover:hover {
    background-color: #f2f5ff !important;
    --axis-bg-color: #f2f5ff !important;
  }
  .bg-color-xxl-blue-light {
    background-color: #e6e8fd !important;
    --axis-bg-color: #e6e8fd !important;
  }
  .bg-color-xxl-blue-light-hover:hover {
    background-color: #e6e8fd !important;
    --axis-bg-color: #e6e8fd !important;
  }
  .bg-color-xxl-blue-medium {
    background-color: #bdbfd5 !important;
    --axis-bg-color: #bdbfd5 !important;
  }
  .bg-color-xxl-blue-medium-hover:hover {
    background-color: #bdbfd5 !important;
    --axis-bg-color: #bdbfd5 !important;
  }
  .bg-color-xxl-blue-dark {
    background-color: #01125c !important;
    --axis-bg-color: #01125c !important;
  }
  .bg-color-xxl-blue-dark-hover:hover {
    background-color: #01125c !important;
    --axis-bg-color: #01125c !important;
  }
  .bg-color-xxl-blue-faded {
    background-color: #4d5da3 !important;
    --axis-bg-color: #4d5da3 !important;
  }
  .bg-color-xxl-blue-faded-hover:hover {
    background-color: #4d5da3 !important;
    --axis-bg-color: #4d5da3 !important;
  }
  .bg-color-xxl-cyan {
    background-color: #25faf2 !important;
    --axis-bg-color: #25faf2 !important;
  }
  .bg-color-xxl-cyan-hover:hover {
    background-color: #25faf2 !important;
    --axis-bg-color: #25faf2 !important;
  }
  .bg-color-xxl-green {
    background-color: #00a80d !important;
    --axis-bg-color: #00a80d !important;
  }
  .bg-color-xxl-green-hover:hover {
    background-color: #00a80d !important;
    --axis-bg-color: #00a80d !important;
  }
  .bg-color-xxl-box-shadow {
    background-color: rgba(0, 0, 0, 0.05) !important;
    --axis-bg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .bg-color-xxl-box-shadow-hover:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
    --axis-bg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .bg-color-xxl-validation {
    background-color: #f00 !important;
    --axis-bg-color: #f00 !important;
  }
  .bg-color-xxl-validation-hover:hover {
    background-color: #f00 !important;
    --axis-bg-color: #f00 !important;
  }
  .bg-color-xxl-transparent {
    background-color: transparent !important;
    --axis-bg-color: transparent !important;
  }
  .bg-color-xxl-transparent-hover:hover {
    background-color: transparent !important;
    --axis-bg-color: transparent !important;
  }
  .fg-color-xxl-white {
    color: #fff !important;
    --axis-fg-color: #fff !important;
  }
  .fg-color-xxl-white-hover:hover {
    color: #fff !important;
    --axis-fg-color: #fff !important;
  }
  .fg-color-xxl-black {
    color: #212121 !important;
    --axis-fg-color: #212121 !important;
  }
  .fg-color-xxl-black-hover:hover {
    color: #212121 !important;
    --axis-fg-color: #212121 !important;
  }
  .fg-color-xxl-grey {
    color: #a8aca4 !important;
    --axis-fg-color: #a8aca4 !important;
  }
  .fg-color-xxl-grey-hover:hover {
    color: #a8aca4 !important;
    --axis-fg-color: #a8aca4 !important;
  }
  .fg-color-xxl-grey-dark {
    color: #7c7c7c !important;
    --axis-fg-color: #7c7c7c !important;
  }
  .fg-color-xxl-grey-dark-hover:hover {
    color: #7c7c7c !important;
    --axis-fg-color: #7c7c7c !important;
  }
  .fg-color-xxl-blue {
    color: #0019e6 !important;
    --axis-fg-color: #0019e6 !important;
  }
  .fg-color-xxl-blue-hover:hover {
    color: #0019e6 !important;
    --axis-fg-color: #0019e6 !important;
  }
  .fg-color-xxl-blue-lighter {
    color: #f2f5ff !important;
    --axis-fg-color: #f2f5ff !important;
  }
  .fg-color-xxl-blue-lighter-hover:hover {
    color: #f2f5ff !important;
    --axis-fg-color: #f2f5ff !important;
  }
  .fg-color-xxl-blue-light {
    color: #e6e8fd !important;
    --axis-fg-color: #e6e8fd !important;
  }
  .fg-color-xxl-blue-light-hover:hover {
    color: #e6e8fd !important;
    --axis-fg-color: #e6e8fd !important;
  }
  .fg-color-xxl-blue-medium {
    color: #bdbfd5 !important;
    --axis-fg-color: #bdbfd5 !important;
  }
  .fg-color-xxl-blue-medium-hover:hover {
    color: #bdbfd5 !important;
    --axis-fg-color: #bdbfd5 !important;
  }
  .fg-color-xxl-blue-dark {
    color: #01125c !important;
    --axis-fg-color: #01125c !important;
  }
  .fg-color-xxl-blue-dark-hover:hover {
    color: #01125c !important;
    --axis-fg-color: #01125c !important;
  }
  .fg-color-xxl-blue-faded {
    color: #4d5da3 !important;
    --axis-fg-color: #4d5da3 !important;
  }
  .fg-color-xxl-blue-faded-hover:hover {
    color: #4d5da3 !important;
    --axis-fg-color: #4d5da3 !important;
  }
  .fg-color-xxl-cyan {
    color: #25faf2 !important;
    --axis-fg-color: #25faf2 !important;
  }
  .fg-color-xxl-cyan-hover:hover {
    color: #25faf2 !important;
    --axis-fg-color: #25faf2 !important;
  }
  .fg-color-xxl-green {
    color: #00a80d !important;
    --axis-fg-color: #00a80d !important;
  }
  .fg-color-xxl-green-hover:hover {
    color: #00a80d !important;
    --axis-fg-color: #00a80d !important;
  }
  .fg-color-xxl-box-shadow {
    color: rgba(0, 0, 0, 0.05) !important;
    --axis-fg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .fg-color-xxl-box-shadow-hover:hover {
    color: rgba(0, 0, 0, 0.05) !important;
    --axis-fg-color: rgba(0, 0, 0, 0.05) !important;
  }
  .fg-color-xxl-validation {
    color: #f00 !important;
    --axis-fg-color: #f00 !important;
  }
  .fg-color-xxl-validation-hover:hover {
    color: #f00 !important;
    --axis-fg-color: #f00 !important;
  }
  .fg-color-xxl-inherit {
    color: inherit !important;
    --axis-fg-color: inherit !important;
  }
  .fg-color-xxl-inherit-hover:hover {
    color: inherit !important;
    --axis-fg-color: inherit !important;
  }
  .border-color-xxl-white {
    border-color: #fff !important;
  }
  .border-color-xxl-white-hover:hover {
    border-color: #fff !important;
  }
  .border-color-xxl-black {
    border-color: #212121 !important;
  }
  .border-color-xxl-black-hover:hover {
    border-color: #212121 !important;
  }
  .border-color-xxl-grey {
    border-color: #a8aca4 !important;
  }
  .border-color-xxl-grey-hover:hover {
    border-color: #a8aca4 !important;
  }
  .border-color-xxl-grey-dark {
    border-color: #7c7c7c !important;
  }
  .border-color-xxl-grey-dark-hover:hover {
    border-color: #7c7c7c !important;
  }
  .border-color-xxl-blue {
    border-color: #0019e6 !important;
  }
  .border-color-xxl-blue-hover:hover {
    border-color: #0019e6 !important;
  }
  .border-color-xxl-blue-lighter {
    border-color: #f2f5ff !important;
  }
  .border-color-xxl-blue-lighter-hover:hover {
    border-color: #f2f5ff !important;
  }
  .border-color-xxl-blue-light {
    border-color: #e6e8fd !important;
  }
  .border-color-xxl-blue-light-hover:hover {
    border-color: #e6e8fd !important;
  }
  .border-color-xxl-blue-medium {
    border-color: #bdbfd5 !important;
  }
  .border-color-xxl-blue-medium-hover:hover {
    border-color: #bdbfd5 !important;
  }
  .border-color-xxl-blue-dark {
    border-color: #01125c !important;
  }
  .border-color-xxl-blue-dark-hover:hover {
    border-color: #01125c !important;
  }
  .border-color-xxl-blue-faded {
    border-color: #4d5da3 !important;
  }
  .border-color-xxl-blue-faded-hover:hover {
    border-color: #4d5da3 !important;
  }
  .border-color-xxl-cyan {
    border-color: #25faf2 !important;
  }
  .border-color-xxl-cyan-hover:hover {
    border-color: #25faf2 !important;
  }
  .border-color-xxl-green {
    border-color: #00a80d !important;
  }
  .border-color-xxl-green-hover:hover {
    border-color: #00a80d !important;
  }
  .border-color-xxl-box-shadow {
    border-color: rgba(0, 0, 0, 0.05) !important;
  }
  .border-color-xxl-box-shadow-hover:hover {
    border-color: rgba(0, 0, 0, 0.05) !important;
  }
  .border-color-xxl-validation {
    border-color: #f00 !important;
  }
  .border-color-xxl-validation-hover:hover {
    border-color: #f00 !important;
  }
  .border-color-xxl-transparent {
    border-color: transparent !important;
  }
  .border-color-xxl-transparent-hover:hover {
    border-color: transparent !important;
  }
}
