@charset "UTF-8";
:root {
  --blue: #007BFF;
  --indigo: #6610F2;
  --purple: #6F42C1;
  --pink: #E83E8C;
  --red: #DC3545;
  --orange: #FD7E14;
  --yellow: #FFC107;
  --green: #28A745;
  --teal: #20C997;
  --cyan: #17A2B8;
  --white: #FFF;
  --gray: #6C757D;
  --gray-dark: #343A40;
  --primary: #3C4252;
  --secondary: #2196F3;
  --success: #4CAF50;
  --info: #009688;
  --warning: #FF9800;
  --danger: #F44336;
  --light: #F8F9FA;
  --dark: #343A40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Ubuntu", sans-serif;
  --font-family-monospace: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

@media print {
  *,
*::before,
*::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote {
    border: 0px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 0px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }
  .table td,
.table th {
    background-color: #fff !important;
  }

  .table-bordered th,
.table-bordered td {
    border: 1px solid #ddd !important;
  }
}
/*
  Precomputed linear color channel values, for use in contrast calculations.
  See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests

  Algorithm, for c in 0 to 255:
  f(c) {
    c = c / 255;
    return c < 0.03928 ? c / 12.92 : Math.pow((c + 0.055) / 1.055, 2.4);
  }

  This lookup table is needed since there is no `pow` in SASS.
*/
/**
 * Calculate the luminance for a color.
 * See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
 */
/**
 * Calculate the contrast ratio between two colors.
 * See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
 */
/**
 * Determine whether to use dark or light text on top of given color.
 * Returns "dark" for dark text and "light" for light text.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Ubuntu", sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #FFF;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

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

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

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

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

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

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: bold;
}

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

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #3C4252;
  text-decoration: underline;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #1c1e26;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  color: rgba(0, 0, 0, 0.38);
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

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

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

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

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

output {
  display: inline-block;
}

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

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.8rem;
  font-family: inherit;
  font-weight: 400;
  line-height: 1.5;
  color: inherit;
}

h1, .h1 {
  font-size: 4rem;
}

h2, .h2 {
  font-size: 3.2rem;
}

h3, .h3 {
  font-size: 2.8rem;
}

h4, .h4 {
  font-size: 1.8rem;
}

h5, .h5 {
  font-size: 1.6rem;
}

h6, .h6 {
  font-size: 1.4rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 11.2rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-2 {
  font-size: 5.6rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-4 {
  font-size: 3.4rem;
  font-weight: 300;
  line-height: 1.5;
}

hr {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: normal;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #FCF8E3;
}

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

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

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 5px;
}

.initialism {
  font-size: 90%;
}

.blockquote {
  margin-bottom: 0.4rem;
  font-size: 1.75rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6C757D;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #FFF;
  border: 0px solid #DDD;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.2rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6C757D;
}

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

code {
  font-size: 90%;
  color: #BD4147;
  word-break: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 90%;
  color: #FFF;
  background-color: #212529;
  border-radius: 2px;
  box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}

pre {
  display: block;
  font-size: 90%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -16px;
  margin-left: -16px;
}

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

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 16px;
  padding-left: 16px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

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

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

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

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

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

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

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

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

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

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

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

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

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

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

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

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

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

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

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

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

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

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

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

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

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

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

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

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

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

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

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

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

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

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

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

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

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

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .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%;
  }
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.4rem;
  background-color: transparent;
}
.table th,
.table td {
  padding: 0.8rem;
  vertical-align: top;
  border-top: 0px solid #E9ECEF;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 0px solid #E9ECEF;
}
.table tbody + tbody {
  border-top: 0px solid #E9ECEF;
}
.table .table {
  background-color: #FFF;
}

.table-sm th,
.table-sm td {
  padding: 0.4rem;
}

.table-bordered {
  border: 0px solid #E9ECEF;
}
.table-bordered th,
.table-bordered td {
  border: 0px solid #E9ECEF;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 0px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #c8cacf;
}

.table-hover .table-primary:hover {
  background-color: #babdc3;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #babdc3;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #c1e2fc;
}

.table-hover .table-secondary:hover {
  background-color: #a9d7fb;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #a9d7fb;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #cde9ce;
}

.table-hover .table-success:hover {
  background-color: #bbe1bd;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #bbe1bd;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #b8e2de;
}

.table-hover .table-info:hover {
  background-color: #a6dbd6;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #a6dbd6;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffe2b8;
}

.table-hover .table-warning:hover {
  background-color: #ffd89f;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffd89f;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #fccac7;
}

.table-hover .table-danger:hover {
  background-color: #fbb3af;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #fbb3af;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #FFF;
  background-color: #212529;
  border-color: #32383e;
}
.table .thead-light th {
  color: #495057;
  background-color: #E9ECEF;
  border-color: #E9ECEF;
}

.table-dark {
  color: #FFF;
  background-color: #212529;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #32383e;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive > .table-bordered {
  border: 0;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
.fade.show {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.show {
  display: block;
}

tr.collapse.show {
  display: table-row;
}

tbody.collapse.show {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.25rem 0 0;
  font-size: 1.4rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #FFF;
  background-clip: padding-box;
  border: 0px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.dropup .dropdown-menu {
  margin-top: 0;
  margin-bottom: 0.25rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  margin-top: 0;
  margin-left: 0.25rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  margin-top: 0;
  margin-right: 0.25rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.2rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0 1.6rem;
  clear: both;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.87);
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
  background-color: #F8F9FA;
}
.dropdown-item.active, .dropdown-item:active {
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
  background-color: #F8F9FA;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6C757D;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.6rem;
  margin-bottom: 0;
  font-size: 1.3rem;
  color: #6C757D;
  white-space: nowrap;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 0 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group {
  margin-left: 0px;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 1.2rem;
  padding-left: 1.2rem;
}
.dropdown-toggle-split::after {
  margin-left: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 1.2rem;
  padding-left: 1.2rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 1.2rem;
  padding-left: 1.2rem;
}

.btn-group.show .dropdown-toggle {
  box-shadow: none;
}
.btn-group.show .dropdown-toggle.btn-link {
  box-shadow: none;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: 0px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 0;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: inherit;
  background-color: #3C4252;
  box-shadow: none;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}
.custom-control-input:active ~ .custom-control-label::before {
  color: inherit;
  background-color: transparent;
  box-shadow: none;
}
.custom-control-input:disabled ~ .custom-control-label {
  color: #6C757D;
}
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: transparent;
}

.custom-control-label {
  margin-bottom: 0;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  user-select: none;
  background-color: transparent;
  box-shadow: none;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 2px;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #3C4252;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: none;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: #3C4252;
  box-shadow: none;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='inherit' d='M0 2h4'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: transparent;
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: transparent;
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #3C4252;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: none;
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: transparent;
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.4999996rem + 0px);
  padding: 0rem 2.4rem 0rem 0rem;
  line-height: 1.785714;
  color: #495057;
  vertical-align: middle;
  background: #FFF url(data:image/svg+xml,%3Csvg%20width%3D%2210px%22%20height%3D%225px%22%20viewBox%3D%227%2010%2010%205%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cpolygon%20id%3D%22Shape%22%20stroke%3D%22none%22%20fill%3D%22%230%22%20fill-rule%3D%22evenodd%22%20opacity%3D%220.54%22%20points%3D%227%2010%2012%2015%2017%2010%22%3E%3C%2Fpolygon%3E%0A%3C%2Fsvg%3E) no-repeat right 0rem center;
  background-size: right center;
  border: 0rem solid 0px;
  border-radius: 2px;
  appearance: none;
}
.custom-select:focus {
  border-color: none;
  outline: 0;
  box-shadow: 0 1px 0 0 #3C4252, inset 0 -1px 0 0 #3C4252;
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: transparent;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6C757D;
  background-color: #E9ECEF;
}
.custom-select::-ms-expand {
  opacity: 0;
}

.custom-select-sm {
  height: calc(2.3214282rem + 0px);
  padding-top: 0rem;
  padding-bottom: 0rem;
  font-size: 75%;
}

.custom-select-lg {
  height: calc(2.925rem + 0px);
  padding-top: 0rem;
  padding-bottom: 0rem;
  font-size: 125%;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 3.6rem;
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 3.6rem;
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-control {
  border-color: none;
  box-shadow: 0 0 0 0.075rem #FFF, 0 0 0 0.2rem #3C4252;
}
.custom-file-input:focus ~ .custom-file-control::before {
  border-color: none;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 3.6rem;
  padding: 0rem 1.6rem;
  line-height: 3.6rem;
  color: #495057;
  background-color: #FFF;
  border: 0px solid transparent;
  border-radius: 0;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42);
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(3.6rem - 0px * 2);
  padding: 0rem 1.6rem;
  line-height: 3.6rem;
  color: white;
  content: "Browse";
  background-color: #3C4252;
  border-left: 0px solid transparent;
  border-radius: 0 0 0 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0 2.4rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6C757D;
}

.nav-tabs {
  border-bottom: 0px solid #DDD;
}
.nav-tabs .nav-item {
  margin-bottom: 0px;
}
.nav-tabs .nav-link {
  border: 0px solid transparent;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #E9ECEF;
}
.nav-tabs .nav-link.disabled {
  color: #6C757D;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #FFF;
  border-color: #DDD;
}
.nav-tabs .dropdown-menu {
  margin-top: 0px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 2px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #FFF;
  background-color: #3C4252;
}

.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
}
.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: -0.15rem;
  padding-bottom: -0.15rem;
  margin-right: 1.6rem;
  font-size: 1.6rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.6rem;
  line-height: 1;
  background-color: transparent;
  border: 0px solid transparent;
  border-radius: 2px;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}
.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .dropdown-menu-right {
  right: 0;
  left: auto;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid {
  flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: white;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: white;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: white;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: white;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: white;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #FFF;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.6rem;
}

.card-title {
  margin-bottom: 0.8rem;
}

.card-subtitle {
  margin-top: -0.4rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.6rem;
}

.card-header {
  padding: 0.8rem 1.6rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: 0 0 0 0;
}
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.8rem 1.6rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 0 0;
}

.card-header-tabs {
  margin-right: -0.8rem;
  margin-bottom: -0.8rem;
  margin-left: -0.8rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.8rem;
  margin-left: -0.8rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: 0;
}

.card-img-top {
  width: 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.card-deck {
  display: flex;
  flex-direction: column;
}
.card-deck .card {
  margin-bottom: 16px;
}
@media (min-width: 576px) {
  .card-deck {
    flex-flow: row wrap;
    margin-right: -16px;
    margin-left: -16px;
  }
  .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 16px;
    margin-bottom: 0;
    margin-left: 16px;
  }
}

.card-group {
  display: flex;
  flex-direction: column;
}
.card-group > .card {
  margin-bottom: 16px;
}
@media (min-width: 576px) {
  .card-group {
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-top,
.card-group > .card:first-child .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-bottom,
.card-group > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-top,
.card-group > .card:last-child .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-bottom,
.card-group > .card:last-child .card-footer {
    border-bottom-left-radius: 0;
  }
  .card-group > .card:only-child {
    border-radius: 0;
  }
  .card-group > .card:only-child .card-img-top,
.card-group > .card:only-child .card-header {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .card-group > .card:only-child .card-img-bottom,
.card-group > .card:only-child .card-footer {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
.card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
.card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
.card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
    border-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.8rem;
}
@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.8rem 1.2rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: transparent;
  border-radius: 2px;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  color: #6C757D;
  content: "";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6C757D;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 2px;
}

.page-link {
  position: relative;
  display: block;
  padding: 0rem 0.4rem;
  margin-left: 0px;
  line-height: 5.6rem;
  color: rgba(0, 0, 0, 0.54);
  background-color: #FFF;
  border: 0px solid #DDD;
}
.page-link:hover {
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
  background-color: #E9ECEF;
  border-color: #DDD;
}
.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(60, 66, 82, 0.25);
}
.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.page-item:last-child .page-link {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.page-item.active .page-link {
  z-index: 1;
  color: #FFF;
  background-color: #3C4252;
  border-color: #3C4252;
}
.page-item.disabled .page-link {
  color: #6C757D;
  pointer-events: none;
  cursor: auto;
  background-color: #FFF;
  border-color: #DDD;
}

.pagination-lg .page-link {
  padding: 0rem 0.4rem;
  font-size: 1.6rem;
  line-height: 2.25;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.pagination-sm .page-link {
  padding: 0rem 0.4rem;
  font-size: 1.3rem;
  line-height: 2.461538;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 86%;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 2px;
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 1.2rem;
  padding-left: 1.2rem;
  border-radius: 1.2rem;
}

.badge-primary {
  color: #FFF;
  background-color: #3C4252;
}
.badge-primary[href]:hover, .badge-primary[href]:focus {
  color: #FFF;
  text-decoration: none;
  background-color: #262a35;
}

.badge-secondary {
  color: #FFF;
  background-color: #2196F3;
}
.badge-secondary[href]:hover, .badge-secondary[href]:focus {
  color: #FFF;
  text-decoration: none;
  background-color: #0c7cd5;
}

.badge-success {
  color: #FFF;
  background-color: #4CAF50;
}
.badge-success[href]:hover, .badge-success[href]:focus {
  color: #FFF;
  text-decoration: none;
  background-color: #3d8b40;
}

.badge-info {
  color: #FFF;
  background-color: #009688;
}
.badge-info[href]:hover, .badge-info[href]:focus {
  color: #FFF;
  text-decoration: none;
  background-color: #00635a;
}

.badge-warning {
  color: #212529;
  background-color: #FF9800;
}
.badge-warning[href]:hover, .badge-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #cc7a00;
}

.badge-danger {
  color: #FFF;
  background-color: #F44336;
}
.badge-danger[href]:hover, .badge-danger[href]:focus {
  color: #FFF;
  text-decoration: none;
  background-color: #ea1c0d;
}

.badge-light {
  color: #212529;
  background-color: #F8F9FA;
}
.badge-light[href]:hover, .badge-light[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}

.badge-dark {
  color: #FFF;
  background-color: #343A40;
}
.badge-dark[href]:hover, .badge-dark[href]:focus {
  color: #FFF;
  text-decoration: none;
  background-color: #1d2124;
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #E9ECEF;
  border-radius: 2px;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 1.6rem 1.6rem;
  margin-bottom: 1.6rem;
  border: 0px solid transparent;
  border-radius: 2px;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: bold;
}

.alert-dismissible {
  padding-right: 5.3rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.6rem 1.6rem;
  color: inherit;
}

.alert-primary {
  color: #1f222b;
  background-color: #d8d9dc;
  border-color: #c8cacf;
}
.alert-primary hr {
  border-top-color: #babdc3;
}
.alert-primary .alert-link {
  color: #0a0b0d;
}

.alert-secondary {
  color: #114e7e;
  background-color: #d3eafd;
  border-color: #c1e2fc;
}
.alert-secondary hr {
  border-top-color: #a9d7fb;
}
.alert-secondary .alert-link {
  color: #0b3251;
}

.alert-success {
  color: #285b2a;
  background-color: #dbefdc;
  border-color: #cde9ce;
}
.alert-success hr {
  border-top-color: #bbe1bd;
}
.alert-success .alert-link {
  color: #18381a;
}

.alert-info {
  color: #004e47;
  background-color: #cceae7;
  border-color: #b8e2de;
}
.alert-info hr {
  border-top-color: #a6dbd6;
}
.alert-info .alert-link {
  color: #001b19;
}

.alert-warning {
  color: #854f00;
  background-color: #ffeacc;
  border-color: #ffe2b8;
}
.alert-warning hr {
  border-top-color: #ffd89f;
}
.alert-warning .alert-link {
  color: #523100;
}

.alert-danger {
  color: #7f231c;
  background-color: #fdd9d7;
  border-color: #fccac7;
}
.alert-danger hr {
  border-top-color: #fbb3af;
}
.alert-danger .alert-link {
  color: #551713;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.alert-dark hr {
  border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
  color: #040505;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1.6rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1.6rem;
  overflow: hidden;
  font-size: 1.4rem;
  background-color: #E9ECEF;
  border-radius: 2px;
  box-shadow: none;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFF;
  text-align: center;
  background-color: #3C4252;
  transition: width 0.6s ease;
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1.6rem 1.6rem;
}

.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  color: #495057;
  text-decoration: none;
  background-color: #F8F9FA;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #E9ECEF;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0 1.6rem;
  margin-bottom: 0px;
  background-color: #FFF;
  border: 0px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.list-group-item:hover, .list-group-item:focus {
  z-index: 1;
  text-decoration: none;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6C757D;
  background-color: #FFF;
}
.list-group-item.active {
  z-index: 2;
  color: #FFF;
  background-color: #3C4252;
  border-color: #3C4252;
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}
.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}

.list-group-item-primary {
  color: #1f222b;
  background-color: #c8cacf;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #1f222b;
  background-color: #babdc3;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #1f222b;
  border-color: #1f222b;
}

.list-group-item-secondary {
  color: #114e7e;
  background-color: #c1e2fc;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #114e7e;
  background-color: #a9d7fb;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #114e7e;
  border-color: #114e7e;
}

.list-group-item-success {
  color: #285b2a;
  background-color: #cde9ce;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #285b2a;
  background-color: #bbe1bd;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #285b2a;
  border-color: #285b2a;
}

.list-group-item-info {
  color: #004e47;
  background-color: #b8e2de;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #004e47;
  background-color: #a6dbd6;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #004e47;
  border-color: #004e47;
}

.list-group-item-warning {
  color: #854f00;
  background-color: #ffe2b8;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #854f00;
  background-color: #ffd89f;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #854f00;
  border-color: #854f00;
}

.list-group-item-danger {
  color: #7f231c;
  background-color: #fccac7;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #7f231c;
  background-color: #fbb3af;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #7f231c;
  border-color: #7f231c;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #FFF;
  opacity: 0.5;
}
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -25%);
}
.modal.show .modal-dialog {
  transform: translate(0, 0);
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - (10px * 2));
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #FFF;
  background-clip: padding-box;
  border: 0px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  background-color: #d3eafd !important;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 0px solid #E9ECEF;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.modal-header .close {
  padding: 10px;
  margin: -10px -10px -10px auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 1.2em;
  font-weight: 500;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 5px;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 5px;
  border-top: 0px solid #E9ECEF;
}
.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 30px auto;
  }

  .modal-dialog-centered {
    min-height: calc(100% - (30px * 2));
  }

  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 1.3rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 5px 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 5px 2.5px 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 5px;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 5px;
  height: 5px;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 2.5px 5px 2.5px 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 5px 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 2.5px 5px;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 5px;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 5px;
  height: 5px;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 2.5px 0 2.5px 5px;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #FFF;
  text-align: center;
  background-color: #000;
  border-radius: 2px;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 1.3rem;
  word-wrap: break-word;
  background-color: #FFF;
  background-clip: padding-box;
  border: 0px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 10px;
  height: 5px;
  margin: 0 2px;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 5px;
}
.bs-popover-top .arrow, .bs-popover-auto[x-placement^=top] .arrow {
  bottom: calc((5px + 0px) * -1);
}
.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=top] .arrow::before,
.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^=top] .arrow::after {
  border-width: 5px 5px 0;
}
.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=top] .arrow::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^=top] .arrow::after {
  bottom: 0px;
  border-top-color: #FFF;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 5px;
}
.bs-popover-right .arrow, .bs-popover-auto[x-placement^=right] .arrow {
  left: calc((5px + 0px) * -1);
  width: 5px;
  height: 10px;
  margin: 2px 0;
}
.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=right] .arrow::before,
.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^=right] .arrow::after {
  border-width: 5px 5px 5px 0;
}
.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=right] .arrow::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^=right] .arrow::after {
  left: 0px;
  border-right-color: #FFF;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 5px;
}
.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^=bottom] .arrow {
  top: calc((5px + 0px) * -1);
}
.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=bottom] .arrow::before,
.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^=bottom] .arrow::after {
  border-width: 0 5px 5px 5px;
}
.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=bottom] .arrow::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^=bottom] .arrow::after {
  top: 0px;
  border-bottom-color: #FFF;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 10px;
  margin-left: -5px;
  content: "";
  border-bottom: 0px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 5px;
}
.bs-popover-left .arrow, .bs-popover-auto[x-placement^=left] .arrow {
  right: calc((5px + 0px) * -1);
  width: 5px;
  height: 10px;
  margin: 2px 0;
}
.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=left] .arrow::before,
.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^=left] .arrow::after {
  border-width: 5px 0 5px 5px;
}
.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=left] .arrow::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^=left] .arrow::after {
  right: 0px;
  border-left-color: #FFF;
}

.popover-header {
  padding: 8px 14px;
  margin-bottom: 0;
  font-size: 1.4rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 0px solid #ebebeb;
  border-top-left-radius: calc(2px - 0px);
  border-top-right-radius: calc(2px - 0px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 9px 14px;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  align-items: center;
  width: 100%;
  transition: transform 0.6s ease-in-out;
  backface-visibility: hidden;
  perspective: 1000px;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  transform: translateX(0);
}
@supports (transform-style: preserve-3d) {
  .carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
    transform: translate3d(0, 0, 0);
  }
}

.carousel-item-next,
.active.carousel-item-right {
  transform: translateX(100%);
}
@supports (transform-style: preserve-3d) {
  .carousel-item-next,
.active.carousel-item-right {
    transform: translate3d(100%, 0, 0);
  }
}

.carousel-item-prev,
.active.carousel-item-left {
  transform: translateX(-100%);
}
@supports (transform-style: preserve-3d) {
  .carousel-item-prev,
.active.carousel-item-left {
    transform: translate3d(-100%, 0, 0);
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #FFF;
  text-align: center;
  opacity: 0.5;
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #FFF;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFF' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFF' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  position: relative;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgba(255, 255, 255, 0.5);
}
.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.carousel-indicators .active {
  background-color: #FFF;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #FFF;
  text-align: center;
}

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

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

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

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

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

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

.bg-primary {
  background-color: #3C4252 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #262a35 !important;
}

.bg-secondary {
  background-color: #2196F3 !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #0c7cd5 !important;
}

.bg-success {
  background-color: #4CAF50 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #3d8b40 !important;
}

.bg-info {
  background-color: #009688 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #00635a !important;
}

.bg-warning {
  background-color: #FF9800 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #cc7a00 !important;
}

.bg-danger {
  background-color: #F44336 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #ea1c0d !important;
}

.bg-light {
  background-color: #F8F9FA !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343A40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

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

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

.border {
  border: 0px solid #E9ECEF !important;
}

.border-top {
  border-top: 0px solid #E9ECEF !important;
}

.border-right {
  border-right: 0px solid #E9ECEF !important;
}

.border-bottom {
  border-bottom: 0px solid #E9ECEF !important;
}

.border-left {
  border-left: 0px solid #E9ECEF !important;
}

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

.border-top-0 {
  border-top: 0 !important;
}

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

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

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

.border-primary {
  border-color: #3C4252 !important;
}

.border-secondary {
  border-color: #2196F3 !important;
}

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

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

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

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

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

.border-dark {
  border-color: #343A40 !important;
}

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

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

.rounded-top {
  border-top-left-radius: 2px !important;
  border-top-right-radius: 2px !important;
}

.rounded-right {
  border-top-right-radius: 2px !important;
  border-bottom-right-radius: 2px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 2px !important;
  border-bottom-left-radius: 2px !important;
}

.rounded-left {
  border-top-left-radius: 2px !important;
  border-bottom-left-radius: 2px !important;
}

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

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

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

  .justify-content-sm-center {
    justify-content: center !important;
  }

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

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

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

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

  .align-items-sm-center {
    align-items: center !important;
  }

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

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

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

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

  .align-content-sm-center {
    align-content: center !important;
  }

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

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

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

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

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

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

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

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

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

  .justify-content-md-center {
    justify-content: center !important;
  }

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

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

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

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

  .align-items-md-center {
    align-items: center !important;
  }

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

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

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

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

  .align-content-md-center {
    align-content: center !important;
  }

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

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

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

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

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

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

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

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

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

  .justify-content-lg-center {
    justify-content: center !important;
  }

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

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

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

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

  .align-items-lg-center {
    align-items: center !important;
  }

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

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

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

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

  .align-content-lg-center {
    align-content: center !important;
  }

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

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

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

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

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

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

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

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

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

  .justify-content-xl-center {
    justify-content: center !important;
  }

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

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

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

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

  .align-items-xl-center {
    align-items: center !important;
  }

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

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

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

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

  .align-content-xl-center {
    align-content: center !important;
  }

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

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

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

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

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

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

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

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

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

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

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

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

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

  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

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

  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

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

  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

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

  .float-xl-none {
    float: none !important;
  }
}
.position-static {
  position: static !important;
}

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

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

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

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

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mr-1,
.mx-1 {
  margin-right: 0.4rem !important;
}

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

.ml-1,
.mx-1 {
  margin-left: 0.4rem !important;
}

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

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

.mr-2,
.mx-2 {
  margin-right: 0.8rem !important;
}

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

.ml-2,
.mx-2 {
  margin-left: 0.8rem !important;
}

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

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

.mr-3,
.mx-3 {
  margin-right: 1.2rem !important;
}

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

.ml-3,
.mx-3 {
  margin-left: 1.2rem !important;
}

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

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

.mr-4,
.mx-4 {
  margin-right: 1.6rem !important;
}

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

.ml-4,
.mx-4 {
  margin-left: 1.6rem !important;
}

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

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

.mr-5,
.mx-5 {
  margin-right: 2rem !important;
}

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

.ml-5,
.mx-5 {
  margin-left: 2rem !important;
}

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

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

.mr-6,
.mx-6 {
  margin-right: 2.4rem !important;
}

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

.ml-6,
.mx-6 {
  margin-left: 2.4rem !important;
}

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

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

.mr-7,
.mx-7 {
  margin-right: 2.8rem !important;
}

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

.ml-7,
.mx-7 {
  margin-left: 2.8rem !important;
}

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

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

.mr-8,
.mx-8 {
  margin-right: 3.2rem !important;
}

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

.ml-8,
.mx-8 {
  margin-left: 3.2rem !important;
}

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

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

.mr-9,
.mx-9 {
  margin-right: 3.6rem !important;
}

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

.ml-9,
.mx-9 {
  margin-left: 3.6rem !important;
}

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

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

.mr-10,
.mx-10 {
  margin-right: 4rem !important;
}

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

.ml-10,
.mx-10 {
  margin-left: 4rem !important;
}

.m-11 {
  margin: 4.4rem !important;
}

.mt-11,
.my-11 {
  margin-top: 4.4rem !important;
}

.mr-11,
.mx-11 {
  margin-right: 4.4rem !important;
}

.mb-11,
.my-11 {
  margin-bottom: 4.4rem !important;
}

.ml-11,
.mx-11 {
  margin-left: 4.4rem !important;
}

.m-12 {
  margin: 4.8rem !important;
}

.mt-12,
.my-12 {
  margin-top: 4.8rem !important;
}

.mr-12,
.mx-12 {
  margin-right: 4.8rem !important;
}

.mb-12,
.my-12 {
  margin-bottom: 4.8rem !important;
}

.ml-12,
.mx-12 {
  margin-left: 4.8rem !important;
}

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

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

.mr-13,
.mx-13 {
  margin-right: 5.2rem !important;
}

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

.ml-13,
.mx-13 {
  margin-left: 5.2rem !important;
}

.m-14 {
  margin: 5.6rem !important;
}

.mt-14,
.my-14 {
  margin-top: 5.6rem !important;
}

.mr-14,
.mx-14 {
  margin-right: 5.6rem !important;
}

.mb-14,
.my-14 {
  margin-bottom: 5.6rem !important;
}

.ml-14,
.mx-14 {
  margin-left: 5.6rem !important;
}

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

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

.mr-15,
.mx-15 {
  margin-right: 6rem !important;
}

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

.ml-15,
.mx-15 {
  margin-left: 6rem !important;
}

.m-16 {
  margin: 6.4rem !important;
}

.mt-16,
.my-16 {
  margin-top: 6.4rem !important;
}

.mr-16,
.mx-16 {
  margin-right: 6.4rem !important;
}

.mb-16,
.my-16 {
  margin-bottom: 6.4rem !important;
}

.ml-16,
.mx-16 {
  margin-left: 6.4rem !important;
}

.m-17 {
  margin: 6.8rem !important;
}

.mt-17,
.my-17 {
  margin-top: 6.8rem !important;
}

.mr-17,
.mx-17 {
  margin-right: 6.8rem !important;
}

.mb-17,
.my-17 {
  margin-bottom: 6.8rem !important;
}

.ml-17,
.mx-17 {
  margin-left: 6.8rem !important;
}

.m-18 {
  margin: 7.2rem !important;
}

.mt-18,
.my-18 {
  margin-top: 7.2rem !important;
}

.mr-18,
.mx-18 {
  margin-right: 7.2rem !important;
}

.mb-18,
.my-18 {
  margin-bottom: 7.2rem !important;
}

.ml-18,
.mx-18 {
  margin-left: 7.2rem !important;
}

.m-19 {
  margin: 7.6rem !important;
}

.mt-19,
.my-19 {
  margin-top: 7.6rem !important;
}

.mr-19,
.mx-19 {
  margin-right: 7.6rem !important;
}

.mb-19,
.my-19 {
  margin-bottom: 7.6rem !important;
}

.ml-19,
.mx-19 {
  margin-left: 7.6rem !important;
}

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

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

.mr-20,
.mx-20 {
  margin-right: 8rem !important;
}

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

.ml-20,
.mx-20 {
  margin-left: 8rem !important;
}

.m-21 {
  margin: 8.4rem !important;
}

.mt-21,
.my-21 {
  margin-top: 8.4rem !important;
}

.mr-21,
.mx-21 {
  margin-right: 8.4rem !important;
}

.mb-21,
.my-21 {
  margin-bottom: 8.4rem !important;
}

.ml-21,
.mx-21 {
  margin-left: 8.4rem !important;
}

.m-22 {
  margin: 8.8rem !important;
}

.mt-22,
.my-22 {
  margin-top: 8.8rem !important;
}

.mr-22,
.mx-22 {
  margin-right: 8.8rem !important;
}

.mb-22,
.my-22 {
  margin-bottom: 8.8rem !important;
}

.ml-22,
.mx-22 {
  margin-left: 8.8rem !important;
}

.m-23 {
  margin: 9.2rem !important;
}

.mt-23,
.my-23 {
  margin-top: 9.2rem !important;
}

.mr-23,
.mx-23 {
  margin-right: 9.2rem !important;
}

.mb-23,
.my-23 {
  margin-bottom: 9.2rem !important;
}

.ml-23,
.mx-23 {
  margin-left: 9.2rem !important;
}

.m-24 {
  margin: 9.6rem !important;
}

.mt-24,
.my-24 {
  margin-top: 9.6rem !important;
}

.mr-24,
.mx-24 {
  margin-right: 9.6rem !important;
}

.mb-24,
.my-24 {
  margin-bottom: 9.6rem !important;
}

.ml-24,
.mx-24 {
  margin-left: 9.6rem !important;
}

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

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

.mr-25,
.mx-25 {
  margin-right: 10rem !important;
}

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

.ml-25,
.mx-25 {
  margin-left: 10rem !important;
}

.m-26 {
  margin: 10.4rem !important;
}

.mt-26,
.my-26 {
  margin-top: 10.4rem !important;
}

.mr-26,
.mx-26 {
  margin-right: 10.4rem !important;
}

.mb-26,
.my-26 {
  margin-bottom: 10.4rem !important;
}

.ml-26,
.mx-26 {
  margin-left: 10.4rem !important;
}

.m-27 {
  margin: 10.8rem !important;
}

.mt-27,
.my-27 {
  margin-top: 10.8rem !important;
}

.mr-27,
.mx-27 {
  margin-right: 10.8rem !important;
}

.mb-27,
.my-27 {
  margin-bottom: 10.8rem !important;
}

.ml-27,
.mx-27 {
  margin-left: 10.8rem !important;
}

.m-28 {
  margin: 11.2rem !important;
}

.mt-28,
.my-28 {
  margin-top: 11.2rem !important;
}

.mr-28,
.mx-28 {
  margin-right: 11.2rem !important;
}

.mb-28,
.my-28 {
  margin-bottom: 11.2rem !important;
}

.ml-28,
.mx-28 {
  margin-left: 11.2rem !important;
}

.m-29 {
  margin: 11.6rem !important;
}

.mt-29,
.my-29 {
  margin-top: 11.6rem !important;
}

.mr-29,
.mx-29 {
  margin-right: 11.6rem !important;
}

.mb-29,
.my-29 {
  margin-bottom: 11.6rem !important;
}

.ml-29,
.mx-29 {
  margin-left: 11.6rem !important;
}

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

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

.mr-30,
.mx-30 {
  margin-right: 12rem !important;
}

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

.ml-30,
.mx-30 {
  margin-left: 12rem !important;
}

.m-31 {
  margin: 12.4rem !important;
}

.mt-31,
.my-31 {
  margin-top: 12.4rem !important;
}

.mr-31,
.mx-31 {
  margin-right: 12.4rem !important;
}

.mb-31,
.my-31 {
  margin-bottom: 12.4rem !important;
}

.ml-31,
.mx-31 {
  margin-left: 12.4rem !important;
}

.m-32 {
  margin: 12.8rem !important;
}

.mt-32,
.my-32 {
  margin-top: 12.8rem !important;
}

.mr-32,
.mx-32 {
  margin-right: 12.8rem !important;
}

.mb-32,
.my-32 {
  margin-bottom: 12.8rem !important;
}

.ml-32,
.mx-32 {
  margin-left: 12.8rem !important;
}

.m-33 {
  margin: 13.2rem !important;
}

.mt-33,
.my-33 {
  margin-top: 13.2rem !important;
}

.mr-33,
.mx-33 {
  margin-right: 13.2rem !important;
}

.mb-33,
.my-33 {
  margin-bottom: 13.2rem !important;
}

.ml-33,
.mx-33 {
  margin-left: 13.2rem !important;
}

.m-34 {
  margin: 13.6rem !important;
}

.mt-34,
.my-34 {
  margin-top: 13.6rem !important;
}

.mr-34,
.mx-34 {
  margin-right: 13.6rem !important;
}

.mb-34,
.my-34 {
  margin-bottom: 13.6rem !important;
}

.ml-34,
.mx-34 {
  margin-left: 13.6rem !important;
}

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

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

.mr-35,
.mx-35 {
  margin-right: 14rem !important;
}

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

.ml-35,
.mx-35 {
  margin-left: 14rem !important;
}

.m-36 {
  margin: 14.4rem !important;
}

.mt-36,
.my-36 {
  margin-top: 14.4rem !important;
}

.mr-36,
.mx-36 {
  margin-right: 14.4rem !important;
}

.mb-36,
.my-36 {
  margin-bottom: 14.4rem !important;
}

.ml-36,
.mx-36 {
  margin-left: 14.4rem !important;
}

.m-37 {
  margin: 14.8rem !important;
}

.mt-37,
.my-37 {
  margin-top: 14.8rem !important;
}

.mr-37,
.mx-37 {
  margin-right: 14.8rem !important;
}

.mb-37,
.my-37 {
  margin-bottom: 14.8rem !important;
}

.ml-37,
.mx-37 {
  margin-left: 14.8rem !important;
}

.m-38 {
  margin: 15.2rem !important;
}

.mt-38,
.my-38 {
  margin-top: 15.2rem !important;
}

.mr-38,
.mx-38 {
  margin-right: 15.2rem !important;
}

.mb-38,
.my-38 {
  margin-bottom: 15.2rem !important;
}

.ml-38,
.mx-38 {
  margin-left: 15.2rem !important;
}

.m-39 {
  margin: 15.6rem !important;
}

.mt-39,
.my-39 {
  margin-top: 15.6rem !important;
}

.mr-39,
.mx-39 {
  margin-right: 15.6rem !important;
}

.mb-39,
.my-39 {
  margin-bottom: 15.6rem !important;
}

.ml-39,
.mx-39 {
  margin-left: 15.6rem !important;
}

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

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

.mr-40,
.mx-40 {
  margin-right: 16rem !important;
}

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

.ml-40,
.mx-40 {
  margin-left: 16rem !important;
}

.m-41 {
  margin: 16.4rem !important;
}

.mt-41,
.my-41 {
  margin-top: 16.4rem !important;
}

.mr-41,
.mx-41 {
  margin-right: 16.4rem !important;
}

.mb-41,
.my-41 {
  margin-bottom: 16.4rem !important;
}

.ml-41,
.mx-41 {
  margin-left: 16.4rem !important;
}

.m-42 {
  margin: 16.8rem !important;
}

.mt-42,
.my-42 {
  margin-top: 16.8rem !important;
}

.mr-42,
.mx-42 {
  margin-right: 16.8rem !important;
}

.mb-42,
.my-42 {
  margin-bottom: 16.8rem !important;
}

.ml-42,
.mx-42 {
  margin-left: 16.8rem !important;
}

.m-43 {
  margin: 17.2rem !important;
}

.mt-43,
.my-43 {
  margin-top: 17.2rem !important;
}

.mr-43,
.mx-43 {
  margin-right: 17.2rem !important;
}

.mb-43,
.my-43 {
  margin-bottom: 17.2rem !important;
}

.ml-43,
.mx-43 {
  margin-left: 17.2rem !important;
}

.m-44 {
  margin: 17.6rem !important;
}

.mt-44,
.my-44 {
  margin-top: 17.6rem !important;
}

.mr-44,
.mx-44 {
  margin-right: 17.6rem !important;
}

.mb-44,
.my-44 {
  margin-bottom: 17.6rem !important;
}

.ml-44,
.mx-44 {
  margin-left: 17.6rem !important;
}

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

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

.mr-45,
.mx-45 {
  margin-right: 18rem !important;
}

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

.ml-45,
.mx-45 {
  margin-left: 18rem !important;
}

.m-46 {
  margin: 18.4rem !important;
}

.mt-46,
.my-46 {
  margin-top: 18.4rem !important;
}

.mr-46,
.mx-46 {
  margin-right: 18.4rem !important;
}

.mb-46,
.my-46 {
  margin-bottom: 18.4rem !important;
}

.ml-46,
.mx-46 {
  margin-left: 18.4rem !important;
}

.m-47 {
  margin: 18.8rem !important;
}

.mt-47,
.my-47 {
  margin-top: 18.8rem !important;
}

.mr-47,
.mx-47 {
  margin-right: 18.8rem !important;
}

.mb-47,
.my-47 {
  margin-bottom: 18.8rem !important;
}

.ml-47,
.mx-47 {
  margin-left: 18.8rem !important;
}

.m-48 {
  margin: 19.2rem !important;
}

.mt-48,
.my-48 {
  margin-top: 19.2rem !important;
}

.mr-48,
.mx-48 {
  margin-right: 19.2rem !important;
}

.mb-48,
.my-48 {
  margin-bottom: 19.2rem !important;
}

.ml-48,
.mx-48 {
  margin-left: 19.2rem !important;
}

.m-49 {
  margin: 19.6rem !important;
}

.mt-49,
.my-49 {
  margin-top: 19.6rem !important;
}

.mr-49,
.mx-49 {
  margin-right: 19.6rem !important;
}

.mb-49,
.my-49 {
  margin-bottom: 19.6rem !important;
}

.ml-49,
.mx-49 {
  margin-left: 19.6rem !important;
}

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

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

.mr-50,
.mx-50 {
  margin-right: 20rem !important;
}

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

.ml-50,
.mx-50 {
  margin-left: 20rem !important;
}

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

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

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

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

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

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

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

.pr-1,
.px-1 {
  padding-right: 0.4rem !important;
}

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

.pl-1,
.px-1 {
  padding-left: 0.4rem !important;
}

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

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

.pr-2,
.px-2 {
  padding-right: 0.8rem !important;
}

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

.pl-2,
.px-2 {
  padding-left: 0.8rem !important;
}

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

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

.pr-3,
.px-3 {
  padding-right: 1.2rem !important;
}

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

.pl-3,
.px-3 {
  padding-left: 1.2rem !important;
}

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

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

.pr-4,
.px-4 {
  padding-right: 1.6rem !important;
}

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

.pl-4,
.px-4 {
  padding-left: 1.6rem !important;
}

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

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

.pr-5,
.px-5 {
  padding-right: 2rem !important;
}

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

.pl-5,
.px-5 {
  padding-left: 2rem !important;
}

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

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

.pr-6,
.px-6 {
  padding-right: 2.4rem !important;
}

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

.pl-6,
.px-6 {
  padding-left: 2.4rem !important;
}

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

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

.pr-7,
.px-7 {
  padding-right: 2.8rem !important;
}

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

.pl-7,
.px-7 {
  padding-left: 2.8rem !important;
}

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

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

.pr-8,
.px-8 {
  padding-right: 3.2rem !important;
}

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

.pl-8,
.px-8 {
  padding-left: 3.2rem !important;
}

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

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

.pr-9,
.px-9 {
  padding-right: 3.6rem !important;
}

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

.pl-9,
.px-9 {
  padding-left: 3.6rem !important;
}

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

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

.pr-10,
.px-10 {
  padding-right: 4rem !important;
}

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

.pl-10,
.px-10 {
  padding-left: 4rem !important;
}

.p-11 {
  padding: 4.4rem !important;
}

.pt-11,
.py-11 {
  padding-top: 4.4rem !important;
}

.pr-11,
.px-11 {
  padding-right: 4.4rem !important;
}

.pb-11,
.py-11 {
  padding-bottom: 4.4rem !important;
}

.pl-11,
.px-11 {
  padding-left: 4.4rem !important;
}

.p-12 {
  padding: 4.8rem !important;
}

.pt-12,
.py-12 {
  padding-top: 4.8rem !important;
}

.pr-12,
.px-12 {
  padding-right: 4.8rem !important;
}

.pb-12,
.py-12 {
  padding-bottom: 4.8rem !important;
}

.pl-12,
.px-12 {
  padding-left: 4.8rem !important;
}

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

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

.pr-13,
.px-13 {
  padding-right: 5.2rem !important;
}

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

.pl-13,
.px-13 {
  padding-left: 5.2rem !important;
}

.p-14 {
  padding: 5.6rem !important;
}

.pt-14,
.py-14 {
  padding-top: 5.6rem !important;
}

.pr-14,
.px-14 {
  padding-right: 5.6rem !important;
}

.pb-14,
.py-14 {
  padding-bottom: 5.6rem !important;
}

.pl-14,
.px-14 {
  padding-left: 5.6rem !important;
}

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

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

.pr-15,
.px-15 {
  padding-right: 6rem !important;
}

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

.pl-15,
.px-15 {
  padding-left: 6rem !important;
}

.p-16 {
  padding: 6.4rem !important;
}

.pt-16,
.py-16 {
  padding-top: 6.4rem !important;
}

.pr-16,
.px-16 {
  padding-right: 6.4rem !important;
}

.pb-16,
.py-16 {
  padding-bottom: 6.4rem !important;
}

.pl-16,
.px-16 {
  padding-left: 6.4rem !important;
}

.p-17 {
  padding: 6.8rem !important;
}

.pt-17,
.py-17 {
  padding-top: 6.8rem !important;
}

.pr-17,
.px-17 {
  padding-right: 6.8rem !important;
}

.pb-17,
.py-17 {
  padding-bottom: 6.8rem !important;
}

.pl-17,
.px-17 {
  padding-left: 6.8rem !important;
}

.p-18 {
  padding: 7.2rem !important;
}

.pt-18,
.py-18 {
  padding-top: 7.2rem !important;
}

.pr-18,
.px-18 {
  padding-right: 7.2rem !important;
}

.pb-18,
.py-18 {
  padding-bottom: 7.2rem !important;
}

.pl-18,
.px-18 {
  padding-left: 7.2rem !important;
}

.p-19 {
  padding: 7.6rem !important;
}

.pt-19,
.py-19 {
  padding-top: 7.6rem !important;
}

.pr-19,
.px-19 {
  padding-right: 7.6rem !important;
}

.pb-19,
.py-19 {
  padding-bottom: 7.6rem !important;
}

.pl-19,
.px-19 {
  padding-left: 7.6rem !important;
}

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

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

.pr-20,
.px-20 {
  padding-right: 8rem !important;
}

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

.pl-20,
.px-20 {
  padding-left: 8rem !important;
}

.p-21 {
  padding: 8.4rem !important;
}

.pt-21,
.py-21 {
  padding-top: 8.4rem !important;
}

.pr-21,
.px-21 {
  padding-right: 8.4rem !important;
}

.pb-21,
.py-21 {
  padding-bottom: 8.4rem !important;
}

.pl-21,
.px-21 {
  padding-left: 8.4rem !important;
}

.p-22 {
  padding: 8.8rem !important;
}

.pt-22,
.py-22 {
  padding-top: 8.8rem !important;
}

.pr-22,
.px-22 {
  padding-right: 8.8rem !important;
}

.pb-22,
.py-22 {
  padding-bottom: 8.8rem !important;
}

.pl-22,
.px-22 {
  padding-left: 8.8rem !important;
}

.p-23 {
  padding: 9.2rem !important;
}

.pt-23,
.py-23 {
  padding-top: 9.2rem !important;
}

.pr-23,
.px-23 {
  padding-right: 9.2rem !important;
}

.pb-23,
.py-23 {
  padding-bottom: 9.2rem !important;
}

.pl-23,
.px-23 {
  padding-left: 9.2rem !important;
}

.p-24 {
  padding: 9.6rem !important;
}

.pt-24,
.py-24 {
  padding-top: 9.6rem !important;
}

.pr-24,
.px-24 {
  padding-right: 9.6rem !important;
}

.pb-24,
.py-24 {
  padding-bottom: 9.6rem !important;
}

.pl-24,
.px-24 {
  padding-left: 9.6rem !important;
}

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

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

.pr-25,
.px-25 {
  padding-right: 10rem !important;
}

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

.pl-25,
.px-25 {
  padding-left: 10rem !important;
}

.p-26 {
  padding: 10.4rem !important;
}

.pt-26,
.py-26 {
  padding-top: 10.4rem !important;
}

.pr-26,
.px-26 {
  padding-right: 10.4rem !important;
}

.pb-26,
.py-26 {
  padding-bottom: 10.4rem !important;
}

.pl-26,
.px-26 {
  padding-left: 10.4rem !important;
}

.p-27 {
  padding: 10.8rem !important;
}

.pt-27,
.py-27 {
  padding-top: 10.8rem !important;
}

.pr-27,
.px-27 {
  padding-right: 10.8rem !important;
}

.pb-27,
.py-27 {
  padding-bottom: 10.8rem !important;
}

.pl-27,
.px-27 {
  padding-left: 10.8rem !important;
}

.p-28 {
  padding: 11.2rem !important;
}

.pt-28,
.py-28 {
  padding-top: 11.2rem !important;
}

.pr-28,
.px-28 {
  padding-right: 11.2rem !important;
}

.pb-28,
.py-28 {
  padding-bottom: 11.2rem !important;
}

.pl-28,
.px-28 {
  padding-left: 11.2rem !important;
}

.p-29 {
  padding: 11.6rem !important;
}

.pt-29,
.py-29 {
  padding-top: 11.6rem !important;
}

.pr-29,
.px-29 {
  padding-right: 11.6rem !important;
}

.pb-29,
.py-29 {
  padding-bottom: 11.6rem !important;
}

.pl-29,
.px-29 {
  padding-left: 11.6rem !important;
}

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

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

.pr-30,
.px-30 {
  padding-right: 12rem !important;
}

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

.pl-30,
.px-30 {
  padding-left: 12rem !important;
}

.p-31 {
  padding: 12.4rem !important;
}

.pt-31,
.py-31 {
  padding-top: 12.4rem !important;
}

.pr-31,
.px-31 {
  padding-right: 12.4rem !important;
}

.pb-31,
.py-31 {
  padding-bottom: 12.4rem !important;
}

.pl-31,
.px-31 {
  padding-left: 12.4rem !important;
}

.p-32 {
  padding: 12.8rem !important;
}

.pt-32,
.py-32 {
  padding-top: 12.8rem !important;
}

.pr-32,
.px-32 {
  padding-right: 12.8rem !important;
}

.pb-32,
.py-32 {
  padding-bottom: 12.8rem !important;
}

.pl-32,
.px-32 {
  padding-left: 12.8rem !important;
}

.p-33 {
  padding: 13.2rem !important;
}

.pt-33,
.py-33 {
  padding-top: 13.2rem !important;
}

.pr-33,
.px-33 {
  padding-right: 13.2rem !important;
}

.pb-33,
.py-33 {
  padding-bottom: 13.2rem !important;
}

.pl-33,
.px-33 {
  padding-left: 13.2rem !important;
}

.p-34 {
  padding: 13.6rem !important;
}

.pt-34,
.py-34 {
  padding-top: 13.6rem !important;
}

.pr-34,
.px-34 {
  padding-right: 13.6rem !important;
}

.pb-34,
.py-34 {
  padding-bottom: 13.6rem !important;
}

.pl-34,
.px-34 {
  padding-left: 13.6rem !important;
}

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

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

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

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

.pl-35,
.px-35 {
  padding-left: 14rem !important;
}

.p-36 {
  padding: 14.4rem !important;
}

.pt-36,
.py-36 {
  padding-top: 14.4rem !important;
}

.pr-36,
.px-36 {
  padding-right: 14.4rem !important;
}

.pb-36,
.py-36 {
  padding-bottom: 14.4rem !important;
}

.pl-36,
.px-36 {
  padding-left: 14.4rem !important;
}

.p-37 {
  padding: 14.8rem !important;
}

.pt-37,
.py-37 {
  padding-top: 14.8rem !important;
}

.pr-37,
.px-37 {
  padding-right: 14.8rem !important;
}

.pb-37,
.py-37 {
  padding-bottom: 14.8rem !important;
}

.pl-37,
.px-37 {
  padding-left: 14.8rem !important;
}

.p-38 {
  padding: 15.2rem !important;
}

.pt-38,
.py-38 {
  padding-top: 15.2rem !important;
}

.pr-38,
.px-38 {
  padding-right: 15.2rem !important;
}

.pb-38,
.py-38 {
  padding-bottom: 15.2rem !important;
}

.pl-38,
.px-38 {
  padding-left: 15.2rem !important;
}

.p-39 {
  padding: 15.6rem !important;
}

.pt-39,
.py-39 {
  padding-top: 15.6rem !important;
}

.pr-39,
.px-39 {
  padding-right: 15.6rem !important;
}

.pb-39,
.py-39 {
  padding-bottom: 15.6rem !important;
}

.pl-39,
.px-39 {
  padding-left: 15.6rem !important;
}

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

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

.pr-40,
.px-40 {
  padding-right: 16rem !important;
}

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

.pl-40,
.px-40 {
  padding-left: 16rem !important;
}

.p-41 {
  padding: 16.4rem !important;
}

.pt-41,
.py-41 {
  padding-top: 16.4rem !important;
}

.pr-41,
.px-41 {
  padding-right: 16.4rem !important;
}

.pb-41,
.py-41 {
  padding-bottom: 16.4rem !important;
}

.pl-41,
.px-41 {
  padding-left: 16.4rem !important;
}

.p-42 {
  padding: 16.8rem !important;
}

.pt-42,
.py-42 {
  padding-top: 16.8rem !important;
}

.pr-42,
.px-42 {
  padding-right: 16.8rem !important;
}

.pb-42,
.py-42 {
  padding-bottom: 16.8rem !important;
}

.pl-42,
.px-42 {
  padding-left: 16.8rem !important;
}

.p-43 {
  padding: 17.2rem !important;
}

.pt-43,
.py-43 {
  padding-top: 17.2rem !important;
}

.pr-43,
.px-43 {
  padding-right: 17.2rem !important;
}

.pb-43,
.py-43 {
  padding-bottom: 17.2rem !important;
}

.pl-43,
.px-43 {
  padding-left: 17.2rem !important;
}

.p-44 {
  padding: 17.6rem !important;
}

.pt-44,
.py-44 {
  padding-top: 17.6rem !important;
}

.pr-44,
.px-44 {
  padding-right: 17.6rem !important;
}

.pb-44,
.py-44 {
  padding-bottom: 17.6rem !important;
}

.pl-44,
.px-44 {
  padding-left: 17.6rem !important;
}

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

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

.pr-45,
.px-45 {
  padding-right: 18rem !important;
}

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

.pl-45,
.px-45 {
  padding-left: 18rem !important;
}

.p-46 {
  padding: 18.4rem !important;
}

.pt-46,
.py-46 {
  padding-top: 18.4rem !important;
}

.pr-46,
.px-46 {
  padding-right: 18.4rem !important;
}

.pb-46,
.py-46 {
  padding-bottom: 18.4rem !important;
}

.pl-46,
.px-46 {
  padding-left: 18.4rem !important;
}

.p-47 {
  padding: 18.8rem !important;
}

.pt-47,
.py-47 {
  padding-top: 18.8rem !important;
}

.pr-47,
.px-47 {
  padding-right: 18.8rem !important;
}

.pb-47,
.py-47 {
  padding-bottom: 18.8rem !important;
}

.pl-47,
.px-47 {
  padding-left: 18.8rem !important;
}

.p-48 {
  padding: 19.2rem !important;
}

.pt-48,
.py-48 {
  padding-top: 19.2rem !important;
}

.pr-48,
.px-48 {
  padding-right: 19.2rem !important;
}

.pb-48,
.py-48 {
  padding-bottom: 19.2rem !important;
}

.pl-48,
.px-48 {
  padding-left: 19.2rem !important;
}

.p-49 {
  padding: 19.6rem !important;
}

.pt-49,
.py-49 {
  padding-top: 19.6rem !important;
}

.pr-49,
.px-49 {
  padding-right: 19.6rem !important;
}

.pb-49,
.py-49 {
  padding-bottom: 19.6rem !important;
}

.pl-49,
.px-49 {
  padding-left: 19.6rem !important;
}

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

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

.pr-50,
.px-50 {
  padding-right: 20rem !important;
}

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

.pl-50,
.px-50 {
  padding-left: 20rem !important;
}

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

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

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

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

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

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

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

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

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

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

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

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.4rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.4rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.4rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.4rem !important;
  }

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

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.8rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.8rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.8rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.8rem !important;
  }

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

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1.2rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1.2rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1.2rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1.2rem !important;
  }

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

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.6rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.6rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.6rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.6rem !important;
  }

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

  .mt-sm-5,
.my-sm-5 {
    margin-top: 2rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 2rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 2rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 2rem !important;
  }

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

  .mt-sm-6,
.my-sm-6 {
    margin-top: 2.4rem !important;
  }

  .mr-sm-6,
.mx-sm-6 {
    margin-right: 2.4rem !important;
  }

  .mb-sm-6,
.my-sm-6 {
    margin-bottom: 2.4rem !important;
  }

  .ml-sm-6,
.mx-sm-6 {
    margin-left: 2.4rem !important;
  }

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

  .mt-sm-7,
.my-sm-7 {
    margin-top: 2.8rem !important;
  }

  .mr-sm-7,
.mx-sm-7 {
    margin-right: 2.8rem !important;
  }

  .mb-sm-7,
.my-sm-7 {
    margin-bottom: 2.8rem !important;
  }

  .ml-sm-7,
.mx-sm-7 {
    margin-left: 2.8rem !important;
  }

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

  .mt-sm-8,
.my-sm-8 {
    margin-top: 3.2rem !important;
  }

  .mr-sm-8,
.mx-sm-8 {
    margin-right: 3.2rem !important;
  }

  .mb-sm-8,
.my-sm-8 {
    margin-bottom: 3.2rem !important;
  }

  .ml-sm-8,
.mx-sm-8 {
    margin-left: 3.2rem !important;
  }

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

  .mt-sm-9,
.my-sm-9 {
    margin-top: 3.6rem !important;
  }

  .mr-sm-9,
.mx-sm-9 {
    margin-right: 3.6rem !important;
  }

  .mb-sm-9,
.my-sm-9 {
    margin-bottom: 3.6rem !important;
  }

  .ml-sm-9,
.mx-sm-9 {
    margin-left: 3.6rem !important;
  }

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

  .mt-sm-10,
.my-sm-10 {
    margin-top: 4rem !important;
  }

  .mr-sm-10,
.mx-sm-10 {
    margin-right: 4rem !important;
  }

  .mb-sm-10,
.my-sm-10 {
    margin-bottom: 4rem !important;
  }

  .ml-sm-10,
.mx-sm-10 {
    margin-left: 4rem !important;
  }

  .m-sm-11 {
    margin: 4.4rem !important;
  }

  .mt-sm-11,
.my-sm-11 {
    margin-top: 4.4rem !important;
  }

  .mr-sm-11,
.mx-sm-11 {
    margin-right: 4.4rem !important;
  }

  .mb-sm-11,
.my-sm-11 {
    margin-bottom: 4.4rem !important;
  }

  .ml-sm-11,
.mx-sm-11 {
    margin-left: 4.4rem !important;
  }

  .m-sm-12 {
    margin: 4.8rem !important;
  }

  .mt-sm-12,
.my-sm-12 {
    margin-top: 4.8rem !important;
  }

  .mr-sm-12,
.mx-sm-12 {
    margin-right: 4.8rem !important;
  }

  .mb-sm-12,
.my-sm-12 {
    margin-bottom: 4.8rem !important;
  }

  .ml-sm-12,
.mx-sm-12 {
    margin-left: 4.8rem !important;
  }

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

  .mt-sm-13,
.my-sm-13 {
    margin-top: 5.2rem !important;
  }

  .mr-sm-13,
.mx-sm-13 {
    margin-right: 5.2rem !important;
  }

  .mb-sm-13,
.my-sm-13 {
    margin-bottom: 5.2rem !important;
  }

  .ml-sm-13,
.mx-sm-13 {
    margin-left: 5.2rem !important;
  }

  .m-sm-14 {
    margin: 5.6rem !important;
  }

  .mt-sm-14,
.my-sm-14 {
    margin-top: 5.6rem !important;
  }

  .mr-sm-14,
.mx-sm-14 {
    margin-right: 5.6rem !important;
  }

  .mb-sm-14,
.my-sm-14 {
    margin-bottom: 5.6rem !important;
  }

  .ml-sm-14,
.mx-sm-14 {
    margin-left: 5.6rem !important;
  }

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

  .mt-sm-15,
.my-sm-15 {
    margin-top: 6rem !important;
  }

  .mr-sm-15,
.mx-sm-15 {
    margin-right: 6rem !important;
  }

  .mb-sm-15,
.my-sm-15 {
    margin-bottom: 6rem !important;
  }

  .ml-sm-15,
.mx-sm-15 {
    margin-left: 6rem !important;
  }

  .m-sm-16 {
    margin: 6.4rem !important;
  }

  .mt-sm-16,
.my-sm-16 {
    margin-top: 6.4rem !important;
  }

  .mr-sm-16,
.mx-sm-16 {
    margin-right: 6.4rem !important;
  }

  .mb-sm-16,
.my-sm-16 {
    margin-bottom: 6.4rem !important;
  }

  .ml-sm-16,
.mx-sm-16 {
    margin-left: 6.4rem !important;
  }

  .m-sm-17 {
    margin: 6.8rem !important;
  }

  .mt-sm-17,
.my-sm-17 {
    margin-top: 6.8rem !important;
  }

  .mr-sm-17,
.mx-sm-17 {
    margin-right: 6.8rem !important;
  }

  .mb-sm-17,
.my-sm-17 {
    margin-bottom: 6.8rem !important;
  }

  .ml-sm-17,
.mx-sm-17 {
    margin-left: 6.8rem !important;
  }

  .m-sm-18 {
    margin: 7.2rem !important;
  }

  .mt-sm-18,
.my-sm-18 {
    margin-top: 7.2rem !important;
  }

  .mr-sm-18,
.mx-sm-18 {
    margin-right: 7.2rem !important;
  }

  .mb-sm-18,
.my-sm-18 {
    margin-bottom: 7.2rem !important;
  }

  .ml-sm-18,
.mx-sm-18 {
    margin-left: 7.2rem !important;
  }

  .m-sm-19 {
    margin: 7.6rem !important;
  }

  .mt-sm-19,
.my-sm-19 {
    margin-top: 7.6rem !important;
  }

  .mr-sm-19,
.mx-sm-19 {
    margin-right: 7.6rem !important;
  }

  .mb-sm-19,
.my-sm-19 {
    margin-bottom: 7.6rem !important;
  }

  .ml-sm-19,
.mx-sm-19 {
    margin-left: 7.6rem !important;
  }

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

  .mt-sm-20,
.my-sm-20 {
    margin-top: 8rem !important;
  }

  .mr-sm-20,
.mx-sm-20 {
    margin-right: 8rem !important;
  }

  .mb-sm-20,
.my-sm-20 {
    margin-bottom: 8rem !important;
  }

  .ml-sm-20,
.mx-sm-20 {
    margin-left: 8rem !important;
  }

  .m-sm-21 {
    margin: 8.4rem !important;
  }

  .mt-sm-21,
.my-sm-21 {
    margin-top: 8.4rem !important;
  }

  .mr-sm-21,
.mx-sm-21 {
    margin-right: 8.4rem !important;
  }

  .mb-sm-21,
.my-sm-21 {
    margin-bottom: 8.4rem !important;
  }

  .ml-sm-21,
.mx-sm-21 {
    margin-left: 8.4rem !important;
  }

  .m-sm-22 {
    margin: 8.8rem !important;
  }

  .mt-sm-22,
.my-sm-22 {
    margin-top: 8.8rem !important;
  }

  .mr-sm-22,
.mx-sm-22 {
    margin-right: 8.8rem !important;
  }

  .mb-sm-22,
.my-sm-22 {
    margin-bottom: 8.8rem !important;
  }

  .ml-sm-22,
.mx-sm-22 {
    margin-left: 8.8rem !important;
  }

  .m-sm-23 {
    margin: 9.2rem !important;
  }

  .mt-sm-23,
.my-sm-23 {
    margin-top: 9.2rem !important;
  }

  .mr-sm-23,
.mx-sm-23 {
    margin-right: 9.2rem !important;
  }

  .mb-sm-23,
.my-sm-23 {
    margin-bottom: 9.2rem !important;
  }

  .ml-sm-23,
.mx-sm-23 {
    margin-left: 9.2rem !important;
  }

  .m-sm-24 {
    margin: 9.6rem !important;
  }

  .mt-sm-24,
.my-sm-24 {
    margin-top: 9.6rem !important;
  }

  .mr-sm-24,
.mx-sm-24 {
    margin-right: 9.6rem !important;
  }

  .mb-sm-24,
.my-sm-24 {
    margin-bottom: 9.6rem !important;
  }

  .ml-sm-24,
.mx-sm-24 {
    margin-left: 9.6rem !important;
  }

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

  .mt-sm-25,
.my-sm-25 {
    margin-top: 10rem !important;
  }

  .mr-sm-25,
.mx-sm-25 {
    margin-right: 10rem !important;
  }

  .mb-sm-25,
.my-sm-25 {
    margin-bottom: 10rem !important;
  }

  .ml-sm-25,
.mx-sm-25 {
    margin-left: 10rem !important;
  }

  .m-sm-26 {
    margin: 10.4rem !important;
  }

  .mt-sm-26,
.my-sm-26 {
    margin-top: 10.4rem !important;
  }

  .mr-sm-26,
.mx-sm-26 {
    margin-right: 10.4rem !important;
  }

  .mb-sm-26,
.my-sm-26 {
    margin-bottom: 10.4rem !important;
  }

  .ml-sm-26,
.mx-sm-26 {
    margin-left: 10.4rem !important;
  }

  .m-sm-27 {
    margin: 10.8rem !important;
  }

  .mt-sm-27,
.my-sm-27 {
    margin-top: 10.8rem !important;
  }

  .mr-sm-27,
.mx-sm-27 {
    margin-right: 10.8rem !important;
  }

  .mb-sm-27,
.my-sm-27 {
    margin-bottom: 10.8rem !important;
  }

  .ml-sm-27,
.mx-sm-27 {
    margin-left: 10.8rem !important;
  }

  .m-sm-28 {
    margin: 11.2rem !important;
  }

  .mt-sm-28,
.my-sm-28 {
    margin-top: 11.2rem !important;
  }

  .mr-sm-28,
.mx-sm-28 {
    margin-right: 11.2rem !important;
  }

  .mb-sm-28,
.my-sm-28 {
    margin-bottom: 11.2rem !important;
  }

  .ml-sm-28,
.mx-sm-28 {
    margin-left: 11.2rem !important;
  }

  .m-sm-29 {
    margin: 11.6rem !important;
  }

  .mt-sm-29,
.my-sm-29 {
    margin-top: 11.6rem !important;
  }

  .mr-sm-29,
.mx-sm-29 {
    margin-right: 11.6rem !important;
  }

  .mb-sm-29,
.my-sm-29 {
    margin-bottom: 11.6rem !important;
  }

  .ml-sm-29,
.mx-sm-29 {
    margin-left: 11.6rem !important;
  }

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

  .mt-sm-30,
.my-sm-30 {
    margin-top: 12rem !important;
  }

  .mr-sm-30,
.mx-sm-30 {
    margin-right: 12rem !important;
  }

  .mb-sm-30,
.my-sm-30 {
    margin-bottom: 12rem !important;
  }

  .ml-sm-30,
.mx-sm-30 {
    margin-left: 12rem !important;
  }

  .m-sm-31 {
    margin: 12.4rem !important;
  }

  .mt-sm-31,
.my-sm-31 {
    margin-top: 12.4rem !important;
  }

  .mr-sm-31,
.mx-sm-31 {
    margin-right: 12.4rem !important;
  }

  .mb-sm-31,
.my-sm-31 {
    margin-bottom: 12.4rem !important;
  }

  .ml-sm-31,
.mx-sm-31 {
    margin-left: 12.4rem !important;
  }

  .m-sm-32 {
    margin: 12.8rem !important;
  }

  .mt-sm-32,
.my-sm-32 {
    margin-top: 12.8rem !important;
  }

  .mr-sm-32,
.mx-sm-32 {
    margin-right: 12.8rem !important;
  }

  .mb-sm-32,
.my-sm-32 {
    margin-bottom: 12.8rem !important;
  }

  .ml-sm-32,
.mx-sm-32 {
    margin-left: 12.8rem !important;
  }

  .m-sm-33 {
    margin: 13.2rem !important;
  }

  .mt-sm-33,
.my-sm-33 {
    margin-top: 13.2rem !important;
  }

  .mr-sm-33,
.mx-sm-33 {
    margin-right: 13.2rem !important;
  }

  .mb-sm-33,
.my-sm-33 {
    margin-bottom: 13.2rem !important;
  }

  .ml-sm-33,
.mx-sm-33 {
    margin-left: 13.2rem !important;
  }

  .m-sm-34 {
    margin: 13.6rem !important;
  }

  .mt-sm-34,
.my-sm-34 {
    margin-top: 13.6rem !important;
  }

  .mr-sm-34,
.mx-sm-34 {
    margin-right: 13.6rem !important;
  }

  .mb-sm-34,
.my-sm-34 {
    margin-bottom: 13.6rem !important;
  }

  .ml-sm-34,
.mx-sm-34 {
    margin-left: 13.6rem !important;
  }

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

  .mt-sm-35,
.my-sm-35 {
    margin-top: 14rem !important;
  }

  .mr-sm-35,
.mx-sm-35 {
    margin-right: 14rem !important;
  }

  .mb-sm-35,
.my-sm-35 {
    margin-bottom: 14rem !important;
  }

  .ml-sm-35,
.mx-sm-35 {
    margin-left: 14rem !important;
  }

  .m-sm-36 {
    margin: 14.4rem !important;
  }

  .mt-sm-36,
.my-sm-36 {
    margin-top: 14.4rem !important;
  }

  .mr-sm-36,
.mx-sm-36 {
    margin-right: 14.4rem !important;
  }

  .mb-sm-36,
.my-sm-36 {
    margin-bottom: 14.4rem !important;
  }

  .ml-sm-36,
.mx-sm-36 {
    margin-left: 14.4rem !important;
  }

  .m-sm-37 {
    margin: 14.8rem !important;
  }

  .mt-sm-37,
.my-sm-37 {
    margin-top: 14.8rem !important;
  }

  .mr-sm-37,
.mx-sm-37 {
    margin-right: 14.8rem !important;
  }

  .mb-sm-37,
.my-sm-37 {
    margin-bottom: 14.8rem !important;
  }

  .ml-sm-37,
.mx-sm-37 {
    margin-left: 14.8rem !important;
  }

  .m-sm-38 {
    margin: 15.2rem !important;
  }

  .mt-sm-38,
.my-sm-38 {
    margin-top: 15.2rem !important;
  }

  .mr-sm-38,
.mx-sm-38 {
    margin-right: 15.2rem !important;
  }

  .mb-sm-38,
.my-sm-38 {
    margin-bottom: 15.2rem !important;
  }

  .ml-sm-38,
.mx-sm-38 {
    margin-left: 15.2rem !important;
  }

  .m-sm-39 {
    margin: 15.6rem !important;
  }

  .mt-sm-39,
.my-sm-39 {
    margin-top: 15.6rem !important;
  }

  .mr-sm-39,
.mx-sm-39 {
    margin-right: 15.6rem !important;
  }

  .mb-sm-39,
.my-sm-39 {
    margin-bottom: 15.6rem !important;
  }

  .ml-sm-39,
.mx-sm-39 {
    margin-left: 15.6rem !important;
  }

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

  .mt-sm-40,
.my-sm-40 {
    margin-top: 16rem !important;
  }

  .mr-sm-40,
.mx-sm-40 {
    margin-right: 16rem !important;
  }

  .mb-sm-40,
.my-sm-40 {
    margin-bottom: 16rem !important;
  }

  .ml-sm-40,
.mx-sm-40 {
    margin-left: 16rem !important;
  }

  .m-sm-41 {
    margin: 16.4rem !important;
  }

  .mt-sm-41,
.my-sm-41 {
    margin-top: 16.4rem !important;
  }

  .mr-sm-41,
.mx-sm-41 {
    margin-right: 16.4rem !important;
  }

  .mb-sm-41,
.my-sm-41 {
    margin-bottom: 16.4rem !important;
  }

  .ml-sm-41,
.mx-sm-41 {
    margin-left: 16.4rem !important;
  }

  .m-sm-42 {
    margin: 16.8rem !important;
  }

  .mt-sm-42,
.my-sm-42 {
    margin-top: 16.8rem !important;
  }

  .mr-sm-42,
.mx-sm-42 {
    margin-right: 16.8rem !important;
  }

  .mb-sm-42,
.my-sm-42 {
    margin-bottom: 16.8rem !important;
  }

  .ml-sm-42,
.mx-sm-42 {
    margin-left: 16.8rem !important;
  }

  .m-sm-43 {
    margin: 17.2rem !important;
  }

  .mt-sm-43,
.my-sm-43 {
    margin-top: 17.2rem !important;
  }

  .mr-sm-43,
.mx-sm-43 {
    margin-right: 17.2rem !important;
  }

  .mb-sm-43,
.my-sm-43 {
    margin-bottom: 17.2rem !important;
  }

  .ml-sm-43,
.mx-sm-43 {
    margin-left: 17.2rem !important;
  }

  .m-sm-44 {
    margin: 17.6rem !important;
  }

  .mt-sm-44,
.my-sm-44 {
    margin-top: 17.6rem !important;
  }

  .mr-sm-44,
.mx-sm-44 {
    margin-right: 17.6rem !important;
  }

  .mb-sm-44,
.my-sm-44 {
    margin-bottom: 17.6rem !important;
  }

  .ml-sm-44,
.mx-sm-44 {
    margin-left: 17.6rem !important;
  }

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

  .mt-sm-45,
.my-sm-45 {
    margin-top: 18rem !important;
  }

  .mr-sm-45,
.mx-sm-45 {
    margin-right: 18rem !important;
  }

  .mb-sm-45,
.my-sm-45 {
    margin-bottom: 18rem !important;
  }

  .ml-sm-45,
.mx-sm-45 {
    margin-left: 18rem !important;
  }

  .m-sm-46 {
    margin: 18.4rem !important;
  }

  .mt-sm-46,
.my-sm-46 {
    margin-top: 18.4rem !important;
  }

  .mr-sm-46,
.mx-sm-46 {
    margin-right: 18.4rem !important;
  }

  .mb-sm-46,
.my-sm-46 {
    margin-bottom: 18.4rem !important;
  }

  .ml-sm-46,
.mx-sm-46 {
    margin-left: 18.4rem !important;
  }

  .m-sm-47 {
    margin: 18.8rem !important;
  }

  .mt-sm-47,
.my-sm-47 {
    margin-top: 18.8rem !important;
  }

  .mr-sm-47,
.mx-sm-47 {
    margin-right: 18.8rem !important;
  }

  .mb-sm-47,
.my-sm-47 {
    margin-bottom: 18.8rem !important;
  }

  .ml-sm-47,
.mx-sm-47 {
    margin-left: 18.8rem !important;
  }

  .m-sm-48 {
    margin: 19.2rem !important;
  }

  .mt-sm-48,
.my-sm-48 {
    margin-top: 19.2rem !important;
  }

  .mr-sm-48,
.mx-sm-48 {
    margin-right: 19.2rem !important;
  }

  .mb-sm-48,
.my-sm-48 {
    margin-bottom: 19.2rem !important;
  }

  .ml-sm-48,
.mx-sm-48 {
    margin-left: 19.2rem !important;
  }

  .m-sm-49 {
    margin: 19.6rem !important;
  }

  .mt-sm-49,
.my-sm-49 {
    margin-top: 19.6rem !important;
  }

  .mr-sm-49,
.mx-sm-49 {
    margin-right: 19.6rem !important;
  }

  .mb-sm-49,
.my-sm-49 {
    margin-bottom: 19.6rem !important;
  }

  .ml-sm-49,
.mx-sm-49 {
    margin-left: 19.6rem !important;
  }

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

  .mt-sm-50,
.my-sm-50 {
    margin-top: 20rem !important;
  }

  .mr-sm-50,
.mx-sm-50 {
    margin-right: 20rem !important;
  }

  .mb-sm-50,
.my-sm-50 {
    margin-bottom: 20rem !important;
  }

  .ml-sm-50,
.mx-sm-50 {
    margin-left: 20rem !important;
  }

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

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

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

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

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

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

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.4rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.4rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.4rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.4rem !important;
  }

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

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.8rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.8rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.8rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.8rem !important;
  }

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

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1.2rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1.2rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1.2rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1.2rem !important;
  }

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

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.6rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.6rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.6rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.6rem !important;
  }

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

  .pt-sm-5,
.py-sm-5 {
    padding-top: 2rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 2rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 2rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 2rem !important;
  }

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

  .pt-sm-6,
.py-sm-6 {
    padding-top: 2.4rem !important;
  }

  .pr-sm-6,
.px-sm-6 {
    padding-right: 2.4rem !important;
  }

  .pb-sm-6,
.py-sm-6 {
    padding-bottom: 2.4rem !important;
  }

  .pl-sm-6,
.px-sm-6 {
    padding-left: 2.4rem !important;
  }

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

  .pt-sm-7,
.py-sm-7 {
    padding-top: 2.8rem !important;
  }

  .pr-sm-7,
.px-sm-7 {
    padding-right: 2.8rem !important;
  }

  .pb-sm-7,
.py-sm-7 {
    padding-bottom: 2.8rem !important;
  }

  .pl-sm-7,
.px-sm-7 {
    padding-left: 2.8rem !important;
  }

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

  .pt-sm-8,
.py-sm-8 {
    padding-top: 3.2rem !important;
  }

  .pr-sm-8,
.px-sm-8 {
    padding-right: 3.2rem !important;
  }

  .pb-sm-8,
.py-sm-8 {
    padding-bottom: 3.2rem !important;
  }

  .pl-sm-8,
.px-sm-8 {
    padding-left: 3.2rem !important;
  }

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

  .pt-sm-9,
.py-sm-9 {
    padding-top: 3.6rem !important;
  }

  .pr-sm-9,
.px-sm-9 {
    padding-right: 3.6rem !important;
  }

  .pb-sm-9,
.py-sm-9 {
    padding-bottom: 3.6rem !important;
  }

  .pl-sm-9,
.px-sm-9 {
    padding-left: 3.6rem !important;
  }

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

  .pt-sm-10,
.py-sm-10 {
    padding-top: 4rem !important;
  }

  .pr-sm-10,
.px-sm-10 {
    padding-right: 4rem !important;
  }

  .pb-sm-10,
.py-sm-10 {
    padding-bottom: 4rem !important;
  }

  .pl-sm-10,
.px-sm-10 {
    padding-left: 4rem !important;
  }

  .p-sm-11 {
    padding: 4.4rem !important;
  }

  .pt-sm-11,
.py-sm-11 {
    padding-top: 4.4rem !important;
  }

  .pr-sm-11,
.px-sm-11 {
    padding-right: 4.4rem !important;
  }

  .pb-sm-11,
.py-sm-11 {
    padding-bottom: 4.4rem !important;
  }

  .pl-sm-11,
.px-sm-11 {
    padding-left: 4.4rem !important;
  }

  .p-sm-12 {
    padding: 4.8rem !important;
  }

  .pt-sm-12,
.py-sm-12 {
    padding-top: 4.8rem !important;
  }

  .pr-sm-12,
.px-sm-12 {
    padding-right: 4.8rem !important;
  }

  .pb-sm-12,
.py-sm-12 {
    padding-bottom: 4.8rem !important;
  }

  .pl-sm-12,
.px-sm-12 {
    padding-left: 4.8rem !important;
  }

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

  .pt-sm-13,
.py-sm-13 {
    padding-top: 5.2rem !important;
  }

  .pr-sm-13,
.px-sm-13 {
    padding-right: 5.2rem !important;
  }

  .pb-sm-13,
.py-sm-13 {
    padding-bottom: 5.2rem !important;
  }

  .pl-sm-13,
.px-sm-13 {
    padding-left: 5.2rem !important;
  }

  .p-sm-14 {
    padding: 5.6rem !important;
  }

  .pt-sm-14,
.py-sm-14 {
    padding-top: 5.6rem !important;
  }

  .pr-sm-14,
.px-sm-14 {
    padding-right: 5.6rem !important;
  }

  .pb-sm-14,
.py-sm-14 {
    padding-bottom: 5.6rem !important;
  }

  .pl-sm-14,
.px-sm-14 {
    padding-left: 5.6rem !important;
  }

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

  .pt-sm-15,
.py-sm-15 {
    padding-top: 6rem !important;
  }

  .pr-sm-15,
.px-sm-15 {
    padding-right: 6rem !important;
  }

  .pb-sm-15,
.py-sm-15 {
    padding-bottom: 6rem !important;
  }

  .pl-sm-15,
.px-sm-15 {
    padding-left: 6rem !important;
  }

  .p-sm-16 {
    padding: 6.4rem !important;
  }

  .pt-sm-16,
.py-sm-16 {
    padding-top: 6.4rem !important;
  }

  .pr-sm-16,
.px-sm-16 {
    padding-right: 6.4rem !important;
  }

  .pb-sm-16,
.py-sm-16 {
    padding-bottom: 6.4rem !important;
  }

  .pl-sm-16,
.px-sm-16 {
    padding-left: 6.4rem !important;
  }

  .p-sm-17 {
    padding: 6.8rem !important;
  }

  .pt-sm-17,
.py-sm-17 {
    padding-top: 6.8rem !important;
  }

  .pr-sm-17,
.px-sm-17 {
    padding-right: 6.8rem !important;
  }

  .pb-sm-17,
.py-sm-17 {
    padding-bottom: 6.8rem !important;
  }

  .pl-sm-17,
.px-sm-17 {
    padding-left: 6.8rem !important;
  }

  .p-sm-18 {
    padding: 7.2rem !important;
  }

  .pt-sm-18,
.py-sm-18 {
    padding-top: 7.2rem !important;
  }

  .pr-sm-18,
.px-sm-18 {
    padding-right: 7.2rem !important;
  }

  .pb-sm-18,
.py-sm-18 {
    padding-bottom: 7.2rem !important;
  }

  .pl-sm-18,
.px-sm-18 {
    padding-left: 7.2rem !important;
  }

  .p-sm-19 {
    padding: 7.6rem !important;
  }

  .pt-sm-19,
.py-sm-19 {
    padding-top: 7.6rem !important;
  }

  .pr-sm-19,
.px-sm-19 {
    padding-right: 7.6rem !important;
  }

  .pb-sm-19,
.py-sm-19 {
    padding-bottom: 7.6rem !important;
  }

  .pl-sm-19,
.px-sm-19 {
    padding-left: 7.6rem !important;
  }

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

  .pt-sm-20,
.py-sm-20 {
    padding-top: 8rem !important;
  }

  .pr-sm-20,
.px-sm-20 {
    padding-right: 8rem !important;
  }

  .pb-sm-20,
.py-sm-20 {
    padding-bottom: 8rem !important;
  }

  .pl-sm-20,
.px-sm-20 {
    padding-left: 8rem !important;
  }

  .p-sm-21 {
    padding: 8.4rem !important;
  }

  .pt-sm-21,
.py-sm-21 {
    padding-top: 8.4rem !important;
  }

  .pr-sm-21,
.px-sm-21 {
    padding-right: 8.4rem !important;
  }

  .pb-sm-21,
.py-sm-21 {
    padding-bottom: 8.4rem !important;
  }

  .pl-sm-21,
.px-sm-21 {
    padding-left: 8.4rem !important;
  }

  .p-sm-22 {
    padding: 8.8rem !important;
  }

  .pt-sm-22,
.py-sm-22 {
    padding-top: 8.8rem !important;
  }

  .pr-sm-22,
.px-sm-22 {
    padding-right: 8.8rem !important;
  }

  .pb-sm-22,
.py-sm-22 {
    padding-bottom: 8.8rem !important;
  }

  .pl-sm-22,
.px-sm-22 {
    padding-left: 8.8rem !important;
  }

  .p-sm-23 {
    padding: 9.2rem !important;
  }

  .pt-sm-23,
.py-sm-23 {
    padding-top: 9.2rem !important;
  }

  .pr-sm-23,
.px-sm-23 {
    padding-right: 9.2rem !important;
  }

  .pb-sm-23,
.py-sm-23 {
    padding-bottom: 9.2rem !important;
  }

  .pl-sm-23,
.px-sm-23 {
    padding-left: 9.2rem !important;
  }

  .p-sm-24 {
    padding: 9.6rem !important;
  }

  .pt-sm-24,
.py-sm-24 {
    padding-top: 9.6rem !important;
  }

  .pr-sm-24,
.px-sm-24 {
    padding-right: 9.6rem !important;
  }

  .pb-sm-24,
.py-sm-24 {
    padding-bottom: 9.6rem !important;
  }

  .pl-sm-24,
.px-sm-24 {
    padding-left: 9.6rem !important;
  }

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

  .pt-sm-25,
.py-sm-25 {
    padding-top: 10rem !important;
  }

  .pr-sm-25,
.px-sm-25 {
    padding-right: 10rem !important;
  }

  .pb-sm-25,
.py-sm-25 {
    padding-bottom: 10rem !important;
  }

  .pl-sm-25,
.px-sm-25 {
    padding-left: 10rem !important;
  }

  .p-sm-26 {
    padding: 10.4rem !important;
  }

  .pt-sm-26,
.py-sm-26 {
    padding-top: 10.4rem !important;
  }

  .pr-sm-26,
.px-sm-26 {
    padding-right: 10.4rem !important;
  }

  .pb-sm-26,
.py-sm-26 {
    padding-bottom: 10.4rem !important;
  }

  .pl-sm-26,
.px-sm-26 {
    padding-left: 10.4rem !important;
  }

  .p-sm-27 {
    padding: 10.8rem !important;
  }

  .pt-sm-27,
.py-sm-27 {
    padding-top: 10.8rem !important;
  }

  .pr-sm-27,
.px-sm-27 {
    padding-right: 10.8rem !important;
  }

  .pb-sm-27,
.py-sm-27 {
    padding-bottom: 10.8rem !important;
  }

  .pl-sm-27,
.px-sm-27 {
    padding-left: 10.8rem !important;
  }

  .p-sm-28 {
    padding: 11.2rem !important;
  }

  .pt-sm-28,
.py-sm-28 {
    padding-top: 11.2rem !important;
  }

  .pr-sm-28,
.px-sm-28 {
    padding-right: 11.2rem !important;
  }

  .pb-sm-28,
.py-sm-28 {
    padding-bottom: 11.2rem !important;
  }

  .pl-sm-28,
.px-sm-28 {
    padding-left: 11.2rem !important;
  }

  .p-sm-29 {
    padding: 11.6rem !important;
  }

  .pt-sm-29,
.py-sm-29 {
    padding-top: 11.6rem !important;
  }

  .pr-sm-29,
.px-sm-29 {
    padding-right: 11.6rem !important;
  }

  .pb-sm-29,
.py-sm-29 {
    padding-bottom: 11.6rem !important;
  }

  .pl-sm-29,
.px-sm-29 {
    padding-left: 11.6rem !important;
  }

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

  .pt-sm-30,
.py-sm-30 {
    padding-top: 12rem !important;
  }

  .pr-sm-30,
.px-sm-30 {
    padding-right: 12rem !important;
  }

  .pb-sm-30,
.py-sm-30 {
    padding-bottom: 12rem !important;
  }

  .pl-sm-30,
.px-sm-30 {
    padding-left: 12rem !important;
  }

  .p-sm-31 {
    padding: 12.4rem !important;
  }

  .pt-sm-31,
.py-sm-31 {
    padding-top: 12.4rem !important;
  }

  .pr-sm-31,
.px-sm-31 {
    padding-right: 12.4rem !important;
  }

  .pb-sm-31,
.py-sm-31 {
    padding-bottom: 12.4rem !important;
  }

  .pl-sm-31,
.px-sm-31 {
    padding-left: 12.4rem !important;
  }

  .p-sm-32 {
    padding: 12.8rem !important;
  }

  .pt-sm-32,
.py-sm-32 {
    padding-top: 12.8rem !important;
  }

  .pr-sm-32,
.px-sm-32 {
    padding-right: 12.8rem !important;
  }

  .pb-sm-32,
.py-sm-32 {
    padding-bottom: 12.8rem !important;
  }

  .pl-sm-32,
.px-sm-32 {
    padding-left: 12.8rem !important;
  }

  .p-sm-33 {
    padding: 13.2rem !important;
  }

  .pt-sm-33,
.py-sm-33 {
    padding-top: 13.2rem !important;
  }

  .pr-sm-33,
.px-sm-33 {
    padding-right: 13.2rem !important;
  }

  .pb-sm-33,
.py-sm-33 {
    padding-bottom: 13.2rem !important;
  }

  .pl-sm-33,
.px-sm-33 {
    padding-left: 13.2rem !important;
  }

  .p-sm-34 {
    padding: 13.6rem !important;
  }

  .pt-sm-34,
.py-sm-34 {
    padding-top: 13.6rem !important;
  }

  .pr-sm-34,
.px-sm-34 {
    padding-right: 13.6rem !important;
  }

  .pb-sm-34,
.py-sm-34 {
    padding-bottom: 13.6rem !important;
  }

  .pl-sm-34,
.px-sm-34 {
    padding-left: 13.6rem !important;
  }

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

  .pt-sm-35,
.py-sm-35 {
    padding-top: 14rem !important;
  }

  .pr-sm-35,
.px-sm-35 {
    padding-right: 14rem !important;
  }

  .pb-sm-35,
.py-sm-35 {
    padding-bottom: 14rem !important;
  }

  .pl-sm-35,
.px-sm-35 {
    padding-left: 14rem !important;
  }

  .p-sm-36 {
    padding: 14.4rem !important;
  }

  .pt-sm-36,
.py-sm-36 {
    padding-top: 14.4rem !important;
  }

  .pr-sm-36,
.px-sm-36 {
    padding-right: 14.4rem !important;
  }

  .pb-sm-36,
.py-sm-36 {
    padding-bottom: 14.4rem !important;
  }

  .pl-sm-36,
.px-sm-36 {
    padding-left: 14.4rem !important;
  }

  .p-sm-37 {
    padding: 14.8rem !important;
  }

  .pt-sm-37,
.py-sm-37 {
    padding-top: 14.8rem !important;
  }

  .pr-sm-37,
.px-sm-37 {
    padding-right: 14.8rem !important;
  }

  .pb-sm-37,
.py-sm-37 {
    padding-bottom: 14.8rem !important;
  }

  .pl-sm-37,
.px-sm-37 {
    padding-left: 14.8rem !important;
  }

  .p-sm-38 {
    padding: 15.2rem !important;
  }

  .pt-sm-38,
.py-sm-38 {
    padding-top: 15.2rem !important;
  }

  .pr-sm-38,
.px-sm-38 {
    padding-right: 15.2rem !important;
  }

  .pb-sm-38,
.py-sm-38 {
    padding-bottom: 15.2rem !important;
  }

  .pl-sm-38,
.px-sm-38 {
    padding-left: 15.2rem !important;
  }

  .p-sm-39 {
    padding: 15.6rem !important;
  }

  .pt-sm-39,
.py-sm-39 {
    padding-top: 15.6rem !important;
  }

  .pr-sm-39,
.px-sm-39 {
    padding-right: 15.6rem !important;
  }

  .pb-sm-39,
.py-sm-39 {
    padding-bottom: 15.6rem !important;
  }

  .pl-sm-39,
.px-sm-39 {
    padding-left: 15.6rem !important;
  }

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

  .pt-sm-40,
.py-sm-40 {
    padding-top: 16rem !important;
  }

  .pr-sm-40,
.px-sm-40 {
    padding-right: 16rem !important;
  }

  .pb-sm-40,
.py-sm-40 {
    padding-bottom: 16rem !important;
  }

  .pl-sm-40,
.px-sm-40 {
    padding-left: 16rem !important;
  }

  .p-sm-41 {
    padding: 16.4rem !important;
  }

  .pt-sm-41,
.py-sm-41 {
    padding-top: 16.4rem !important;
  }

  .pr-sm-41,
.px-sm-41 {
    padding-right: 16.4rem !important;
  }

  .pb-sm-41,
.py-sm-41 {
    padding-bottom: 16.4rem !important;
  }

  .pl-sm-41,
.px-sm-41 {
    padding-left: 16.4rem !important;
  }

  .p-sm-42 {
    padding: 16.8rem !important;
  }

  .pt-sm-42,
.py-sm-42 {
    padding-top: 16.8rem !important;
  }

  .pr-sm-42,
.px-sm-42 {
    padding-right: 16.8rem !important;
  }

  .pb-sm-42,
.py-sm-42 {
    padding-bottom: 16.8rem !important;
  }

  .pl-sm-42,
.px-sm-42 {
    padding-left: 16.8rem !important;
  }

  .p-sm-43 {
    padding: 17.2rem !important;
  }

  .pt-sm-43,
.py-sm-43 {
    padding-top: 17.2rem !important;
  }

  .pr-sm-43,
.px-sm-43 {
    padding-right: 17.2rem !important;
  }

  .pb-sm-43,
.py-sm-43 {
    padding-bottom: 17.2rem !important;
  }

  .pl-sm-43,
.px-sm-43 {
    padding-left: 17.2rem !important;
  }

  .p-sm-44 {
    padding: 17.6rem !important;
  }

  .pt-sm-44,
.py-sm-44 {
    padding-top: 17.6rem !important;
  }

  .pr-sm-44,
.px-sm-44 {
    padding-right: 17.6rem !important;
  }

  .pb-sm-44,
.py-sm-44 {
    padding-bottom: 17.6rem !important;
  }

  .pl-sm-44,
.px-sm-44 {
    padding-left: 17.6rem !important;
  }

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

  .pt-sm-45,
.py-sm-45 {
    padding-top: 18rem !important;
  }

  .pr-sm-45,
.px-sm-45 {
    padding-right: 18rem !important;
  }

  .pb-sm-45,
.py-sm-45 {
    padding-bottom: 18rem !important;
  }

  .pl-sm-45,
.px-sm-45 {
    padding-left: 18rem !important;
  }

  .p-sm-46 {
    padding: 18.4rem !important;
  }

  .pt-sm-46,
.py-sm-46 {
    padding-top: 18.4rem !important;
  }

  .pr-sm-46,
.px-sm-46 {
    padding-right: 18.4rem !important;
  }

  .pb-sm-46,
.py-sm-46 {
    padding-bottom: 18.4rem !important;
  }

  .pl-sm-46,
.px-sm-46 {
    padding-left: 18.4rem !important;
  }

  .p-sm-47 {
    padding: 18.8rem !important;
  }

  .pt-sm-47,
.py-sm-47 {
    padding-top: 18.8rem !important;
  }

  .pr-sm-47,
.px-sm-47 {
    padding-right: 18.8rem !important;
  }

  .pb-sm-47,
.py-sm-47 {
    padding-bottom: 18.8rem !important;
  }

  .pl-sm-47,
.px-sm-47 {
    padding-left: 18.8rem !important;
  }

  .p-sm-48 {
    padding: 19.2rem !important;
  }

  .pt-sm-48,
.py-sm-48 {
    padding-top: 19.2rem !important;
  }

  .pr-sm-48,
.px-sm-48 {
    padding-right: 19.2rem !important;
  }

  .pb-sm-48,
.py-sm-48 {
    padding-bottom: 19.2rem !important;
  }

  .pl-sm-48,
.px-sm-48 {
    padding-left: 19.2rem !important;
  }

  .p-sm-49 {
    padding: 19.6rem !important;
  }

  .pt-sm-49,
.py-sm-49 {
    padding-top: 19.6rem !important;
  }

  .pr-sm-49,
.px-sm-49 {
    padding-right: 19.6rem !important;
  }

  .pb-sm-49,
.py-sm-49 {
    padding-bottom: 19.6rem !important;
  }

  .pl-sm-49,
.px-sm-49 {
    padding-left: 19.6rem !important;
  }

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

  .pt-sm-50,
.py-sm-50 {
    padding-top: 20rem !important;
  }

  .pr-sm-50,
.px-sm-50 {
    padding-right: 20rem !important;
  }

  .pb-sm-50,
.py-sm-50 {
    padding-bottom: 20rem !important;
  }

  .pl-sm-50,
.px-sm-50 {
    padding-left: 20rem !important;
  }

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

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

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

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

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

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

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

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

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

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

  .mt-md-1,
.my-md-1 {
    margin-top: 0.4rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.4rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.4rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.4rem !important;
  }

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

  .mt-md-2,
.my-md-2 {
    margin-top: 0.8rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.8rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.8rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.8rem !important;
  }

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

  .mt-md-3,
.my-md-3 {
    margin-top: 1.2rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1.2rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1.2rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1.2rem !important;
  }

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

  .mt-md-4,
.my-md-4 {
    margin-top: 1.6rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.6rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.6rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.6rem !important;
  }

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

  .mt-md-5,
.my-md-5 {
    margin-top: 2rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 2rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 2rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 2rem !important;
  }

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

  .mt-md-6,
.my-md-6 {
    margin-top: 2.4rem !important;
  }

  .mr-md-6,
.mx-md-6 {
    margin-right: 2.4rem !important;
  }

  .mb-md-6,
.my-md-6 {
    margin-bottom: 2.4rem !important;
  }

  .ml-md-6,
.mx-md-6 {
    margin-left: 2.4rem !important;
  }

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

  .mt-md-7,
.my-md-7 {
    margin-top: 2.8rem !important;
  }

  .mr-md-7,
.mx-md-7 {
    margin-right: 2.8rem !important;
  }

  .mb-md-7,
.my-md-7 {
    margin-bottom: 2.8rem !important;
  }

  .ml-md-7,
.mx-md-7 {
    margin-left: 2.8rem !important;
  }

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

  .mt-md-8,
.my-md-8 {
    margin-top: 3.2rem !important;
  }

  .mr-md-8,
.mx-md-8 {
    margin-right: 3.2rem !important;
  }

  .mb-md-8,
.my-md-8 {
    margin-bottom: 3.2rem !important;
  }

  .ml-md-8,
.mx-md-8 {
    margin-left: 3.2rem !important;
  }

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

  .mt-md-9,
.my-md-9 {
    margin-top: 3.6rem !important;
  }

  .mr-md-9,
.mx-md-9 {
    margin-right: 3.6rem !important;
  }

  .mb-md-9,
.my-md-9 {
    margin-bottom: 3.6rem !important;
  }

  .ml-md-9,
.mx-md-9 {
    margin-left: 3.6rem !important;
  }

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

  .mt-md-10,
.my-md-10 {
    margin-top: 4rem !important;
  }

  .mr-md-10,
.mx-md-10 {
    margin-right: 4rem !important;
  }

  .mb-md-10,
.my-md-10 {
    margin-bottom: 4rem !important;
  }

  .ml-md-10,
.mx-md-10 {
    margin-left: 4rem !important;
  }

  .m-md-11 {
    margin: 4.4rem !important;
  }

  .mt-md-11,
.my-md-11 {
    margin-top: 4.4rem !important;
  }

  .mr-md-11,
.mx-md-11 {
    margin-right: 4.4rem !important;
  }

  .mb-md-11,
.my-md-11 {
    margin-bottom: 4.4rem !important;
  }

  .ml-md-11,
.mx-md-11 {
    margin-left: 4.4rem !important;
  }

  .m-md-12 {
    margin: 4.8rem !important;
  }

  .mt-md-12,
.my-md-12 {
    margin-top: 4.8rem !important;
  }

  .mr-md-12,
.mx-md-12 {
    margin-right: 4.8rem !important;
  }

  .mb-md-12,
.my-md-12 {
    margin-bottom: 4.8rem !important;
  }

  .ml-md-12,
.mx-md-12 {
    margin-left: 4.8rem !important;
  }

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

  .mt-md-13,
.my-md-13 {
    margin-top: 5.2rem !important;
  }

  .mr-md-13,
.mx-md-13 {
    margin-right: 5.2rem !important;
  }

  .mb-md-13,
.my-md-13 {
    margin-bottom: 5.2rem !important;
  }

  .ml-md-13,
.mx-md-13 {
    margin-left: 5.2rem !important;
  }

  .m-md-14 {
    margin: 5.6rem !important;
  }

  .mt-md-14,
.my-md-14 {
    margin-top: 5.6rem !important;
  }

  .mr-md-14,
.mx-md-14 {
    margin-right: 5.6rem !important;
  }

  .mb-md-14,
.my-md-14 {
    margin-bottom: 5.6rem !important;
  }

  .ml-md-14,
.mx-md-14 {
    margin-left: 5.6rem !important;
  }

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

  .mt-md-15,
.my-md-15 {
    margin-top: 6rem !important;
  }

  .mr-md-15,
.mx-md-15 {
    margin-right: 6rem !important;
  }

  .mb-md-15,
.my-md-15 {
    margin-bottom: 6rem !important;
  }

  .ml-md-15,
.mx-md-15 {
    margin-left: 6rem !important;
  }

  .m-md-16 {
    margin: 6.4rem !important;
  }

  .mt-md-16,
.my-md-16 {
    margin-top: 6.4rem !important;
  }

  .mr-md-16,
.mx-md-16 {
    margin-right: 6.4rem !important;
  }

  .mb-md-16,
.my-md-16 {
    margin-bottom: 6.4rem !important;
  }

  .ml-md-16,
.mx-md-16 {
    margin-left: 6.4rem !important;
  }

  .m-md-17 {
    margin: 6.8rem !important;
  }

  .mt-md-17,
.my-md-17 {
    margin-top: 6.8rem !important;
  }

  .mr-md-17,
.mx-md-17 {
    margin-right: 6.8rem !important;
  }

  .mb-md-17,
.my-md-17 {
    margin-bottom: 6.8rem !important;
  }

  .ml-md-17,
.mx-md-17 {
    margin-left: 6.8rem !important;
  }

  .m-md-18 {
    margin: 7.2rem !important;
  }

  .mt-md-18,
.my-md-18 {
    margin-top: 7.2rem !important;
  }

  .mr-md-18,
.mx-md-18 {
    margin-right: 7.2rem !important;
  }

  .mb-md-18,
.my-md-18 {
    margin-bottom: 7.2rem !important;
  }

  .ml-md-18,
.mx-md-18 {
    margin-left: 7.2rem !important;
  }

  .m-md-19 {
    margin: 7.6rem !important;
  }

  .mt-md-19,
.my-md-19 {
    margin-top: 7.6rem !important;
  }

  .mr-md-19,
.mx-md-19 {
    margin-right: 7.6rem !important;
  }

  .mb-md-19,
.my-md-19 {
    margin-bottom: 7.6rem !important;
  }

  .ml-md-19,
.mx-md-19 {
    margin-left: 7.6rem !important;
  }

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

  .mt-md-20,
.my-md-20 {
    margin-top: 8rem !important;
  }

  .mr-md-20,
.mx-md-20 {
    margin-right: 8rem !important;
  }

  .mb-md-20,
.my-md-20 {
    margin-bottom: 8rem !important;
  }

  .ml-md-20,
.mx-md-20 {
    margin-left: 8rem !important;
  }

  .m-md-21 {
    margin: 8.4rem !important;
  }

  .mt-md-21,
.my-md-21 {
    margin-top: 8.4rem !important;
  }

  .mr-md-21,
.mx-md-21 {
    margin-right: 8.4rem !important;
  }

  .mb-md-21,
.my-md-21 {
    margin-bottom: 8.4rem !important;
  }

  .ml-md-21,
.mx-md-21 {
    margin-left: 8.4rem !important;
  }

  .m-md-22 {
    margin: 8.8rem !important;
  }

  .mt-md-22,
.my-md-22 {
    margin-top: 8.8rem !important;
  }

  .mr-md-22,
.mx-md-22 {
    margin-right: 8.8rem !important;
  }

  .mb-md-22,
.my-md-22 {
    margin-bottom: 8.8rem !important;
  }

  .ml-md-22,
.mx-md-22 {
    margin-left: 8.8rem !important;
  }

  .m-md-23 {
    margin: 9.2rem !important;
  }

  .mt-md-23,
.my-md-23 {
    margin-top: 9.2rem !important;
  }

  .mr-md-23,
.mx-md-23 {
    margin-right: 9.2rem !important;
  }

  .mb-md-23,
.my-md-23 {
    margin-bottom: 9.2rem !important;
  }

  .ml-md-23,
.mx-md-23 {
    margin-left: 9.2rem !important;
  }

  .m-md-24 {
    margin: 9.6rem !important;
  }

  .mt-md-24,
.my-md-24 {
    margin-top: 9.6rem !important;
  }

  .mr-md-24,
.mx-md-24 {
    margin-right: 9.6rem !important;
  }

  .mb-md-24,
.my-md-24 {
    margin-bottom: 9.6rem !important;
  }

  .ml-md-24,
.mx-md-24 {
    margin-left: 9.6rem !important;
  }

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

  .mt-md-25,
.my-md-25 {
    margin-top: 10rem !important;
  }

  .mr-md-25,
.mx-md-25 {
    margin-right: 10rem !important;
  }

  .mb-md-25,
.my-md-25 {
    margin-bottom: 10rem !important;
  }

  .ml-md-25,
.mx-md-25 {
    margin-left: 10rem !important;
  }

  .m-md-26 {
    margin: 10.4rem !important;
  }

  .mt-md-26,
.my-md-26 {
    margin-top: 10.4rem !important;
  }

  .mr-md-26,
.mx-md-26 {
    margin-right: 10.4rem !important;
  }

  .mb-md-26,
.my-md-26 {
    margin-bottom: 10.4rem !important;
  }

  .ml-md-26,
.mx-md-26 {
    margin-left: 10.4rem !important;
  }

  .m-md-27 {
    margin: 10.8rem !important;
  }

  .mt-md-27,
.my-md-27 {
    margin-top: 10.8rem !important;
  }

  .mr-md-27,
.mx-md-27 {
    margin-right: 10.8rem !important;
  }

  .mb-md-27,
.my-md-27 {
    margin-bottom: 10.8rem !important;
  }

  .ml-md-27,
.mx-md-27 {
    margin-left: 10.8rem !important;
  }

  .m-md-28 {
    margin: 11.2rem !important;
  }

  .mt-md-28,
.my-md-28 {
    margin-top: 11.2rem !important;
  }

  .mr-md-28,
.mx-md-28 {
    margin-right: 11.2rem !important;
  }

  .mb-md-28,
.my-md-28 {
    margin-bottom: 11.2rem !important;
  }

  .ml-md-28,
.mx-md-28 {
    margin-left: 11.2rem !important;
  }

  .m-md-29 {
    margin: 11.6rem !important;
  }

  .mt-md-29,
.my-md-29 {
    margin-top: 11.6rem !important;
  }

  .mr-md-29,
.mx-md-29 {
    margin-right: 11.6rem !important;
  }

  .mb-md-29,
.my-md-29 {
    margin-bottom: 11.6rem !important;
  }

  .ml-md-29,
.mx-md-29 {
    margin-left: 11.6rem !important;
  }

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

  .mt-md-30,
.my-md-30 {
    margin-top: 12rem !important;
  }

  .mr-md-30,
.mx-md-30 {
    margin-right: 12rem !important;
  }

  .mb-md-30,
.my-md-30 {
    margin-bottom: 12rem !important;
  }

  .ml-md-30,
.mx-md-30 {
    margin-left: 12rem !important;
  }

  .m-md-31 {
    margin: 12.4rem !important;
  }

  .mt-md-31,
.my-md-31 {
    margin-top: 12.4rem !important;
  }

  .mr-md-31,
.mx-md-31 {
    margin-right: 12.4rem !important;
  }

  .mb-md-31,
.my-md-31 {
    margin-bottom: 12.4rem !important;
  }

  .ml-md-31,
.mx-md-31 {
    margin-left: 12.4rem !important;
  }

  .m-md-32 {
    margin: 12.8rem !important;
  }

  .mt-md-32,
.my-md-32 {
    margin-top: 12.8rem !important;
  }

  .mr-md-32,
.mx-md-32 {
    margin-right: 12.8rem !important;
  }

  .mb-md-32,
.my-md-32 {
    margin-bottom: 12.8rem !important;
  }

  .ml-md-32,
.mx-md-32 {
    margin-left: 12.8rem !important;
  }

  .m-md-33 {
    margin: 13.2rem !important;
  }

  .mt-md-33,
.my-md-33 {
    margin-top: 13.2rem !important;
  }

  .mr-md-33,
.mx-md-33 {
    margin-right: 13.2rem !important;
  }

  .mb-md-33,
.my-md-33 {
    margin-bottom: 13.2rem !important;
  }

  .ml-md-33,
.mx-md-33 {
    margin-left: 13.2rem !important;
  }

  .m-md-34 {
    margin: 13.6rem !important;
  }

  .mt-md-34,
.my-md-34 {
    margin-top: 13.6rem !important;
  }

  .mr-md-34,
.mx-md-34 {
    margin-right: 13.6rem !important;
  }

  .mb-md-34,
.my-md-34 {
    margin-bottom: 13.6rem !important;
  }

  .ml-md-34,
.mx-md-34 {
    margin-left: 13.6rem !important;
  }

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

  .mt-md-35,
.my-md-35 {
    margin-top: 14rem !important;
  }

  .mr-md-35,
.mx-md-35 {
    margin-right: 14rem !important;
  }

  .mb-md-35,
.my-md-35 {
    margin-bottom: 14rem !important;
  }

  .ml-md-35,
.mx-md-35 {
    margin-left: 14rem !important;
  }

  .m-md-36 {
    margin: 14.4rem !important;
  }

  .mt-md-36,
.my-md-36 {
    margin-top: 14.4rem !important;
  }

  .mr-md-36,
.mx-md-36 {
    margin-right: 14.4rem !important;
  }

  .mb-md-36,
.my-md-36 {
    margin-bottom: 14.4rem !important;
  }

  .ml-md-36,
.mx-md-36 {
    margin-left: 14.4rem !important;
  }

  .m-md-37 {
    margin: 14.8rem !important;
  }

  .mt-md-37,
.my-md-37 {
    margin-top: 14.8rem !important;
  }

  .mr-md-37,
.mx-md-37 {
    margin-right: 14.8rem !important;
  }

  .mb-md-37,
.my-md-37 {
    margin-bottom: 14.8rem !important;
  }

  .ml-md-37,
.mx-md-37 {
    margin-left: 14.8rem !important;
  }

  .m-md-38 {
    margin: 15.2rem !important;
  }

  .mt-md-38,
.my-md-38 {
    margin-top: 15.2rem !important;
  }

  .mr-md-38,
.mx-md-38 {
    margin-right: 15.2rem !important;
  }

  .mb-md-38,
.my-md-38 {
    margin-bottom: 15.2rem !important;
  }

  .ml-md-38,
.mx-md-38 {
    margin-left: 15.2rem !important;
  }

  .m-md-39 {
    margin: 15.6rem !important;
  }

  .mt-md-39,
.my-md-39 {
    margin-top: 15.6rem !important;
  }

  .mr-md-39,
.mx-md-39 {
    margin-right: 15.6rem !important;
  }

  .mb-md-39,
.my-md-39 {
    margin-bottom: 15.6rem !important;
  }

  .ml-md-39,
.mx-md-39 {
    margin-left: 15.6rem !important;
  }

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

  .mt-md-40,
.my-md-40 {
    margin-top: 16rem !important;
  }

  .mr-md-40,
.mx-md-40 {
    margin-right: 16rem !important;
  }

  .mb-md-40,
.my-md-40 {
    margin-bottom: 16rem !important;
  }

  .ml-md-40,
.mx-md-40 {
    margin-left: 16rem !important;
  }

  .m-md-41 {
    margin: 16.4rem !important;
  }

  .mt-md-41,
.my-md-41 {
    margin-top: 16.4rem !important;
  }

  .mr-md-41,
.mx-md-41 {
    margin-right: 16.4rem !important;
  }

  .mb-md-41,
.my-md-41 {
    margin-bottom: 16.4rem !important;
  }

  .ml-md-41,
.mx-md-41 {
    margin-left: 16.4rem !important;
  }

  .m-md-42 {
    margin: 16.8rem !important;
  }

  .mt-md-42,
.my-md-42 {
    margin-top: 16.8rem !important;
  }

  .mr-md-42,
.mx-md-42 {
    margin-right: 16.8rem !important;
  }

  .mb-md-42,
.my-md-42 {
    margin-bottom: 16.8rem !important;
  }

  .ml-md-42,
.mx-md-42 {
    margin-left: 16.8rem !important;
  }

  .m-md-43 {
    margin: 17.2rem !important;
  }

  .mt-md-43,
.my-md-43 {
    margin-top: 17.2rem !important;
  }

  .mr-md-43,
.mx-md-43 {
    margin-right: 17.2rem !important;
  }

  .mb-md-43,
.my-md-43 {
    margin-bottom: 17.2rem !important;
  }

  .ml-md-43,
.mx-md-43 {
    margin-left: 17.2rem !important;
  }

  .m-md-44 {
    margin: 17.6rem !important;
  }

  .mt-md-44,
.my-md-44 {
    margin-top: 17.6rem !important;
  }

  .mr-md-44,
.mx-md-44 {
    margin-right: 17.6rem !important;
  }

  .mb-md-44,
.my-md-44 {
    margin-bottom: 17.6rem !important;
  }

  .ml-md-44,
.mx-md-44 {
    margin-left: 17.6rem !important;
  }

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

  .mt-md-45,
.my-md-45 {
    margin-top: 18rem !important;
  }

  .mr-md-45,
.mx-md-45 {
    margin-right: 18rem !important;
  }

  .mb-md-45,
.my-md-45 {
    margin-bottom: 18rem !important;
  }

  .ml-md-45,
.mx-md-45 {
    margin-left: 18rem !important;
  }

  .m-md-46 {
    margin: 18.4rem !important;
  }

  .mt-md-46,
.my-md-46 {
    margin-top: 18.4rem !important;
  }

  .mr-md-46,
.mx-md-46 {
    margin-right: 18.4rem !important;
  }

  .mb-md-46,
.my-md-46 {
    margin-bottom: 18.4rem !important;
  }

  .ml-md-46,
.mx-md-46 {
    margin-left: 18.4rem !important;
  }

  .m-md-47 {
    margin: 18.8rem !important;
  }

  .mt-md-47,
.my-md-47 {
    margin-top: 18.8rem !important;
  }

  .mr-md-47,
.mx-md-47 {
    margin-right: 18.8rem !important;
  }

  .mb-md-47,
.my-md-47 {
    margin-bottom: 18.8rem !important;
  }

  .ml-md-47,
.mx-md-47 {
    margin-left: 18.8rem !important;
  }

  .m-md-48 {
    margin: 19.2rem !important;
  }

  .mt-md-48,
.my-md-48 {
    margin-top: 19.2rem !important;
  }

  .mr-md-48,
.mx-md-48 {
    margin-right: 19.2rem !important;
  }

  .mb-md-48,
.my-md-48 {
    margin-bottom: 19.2rem !important;
  }

  .ml-md-48,
.mx-md-48 {
    margin-left: 19.2rem !important;
  }

  .m-md-49 {
    margin: 19.6rem !important;
  }

  .mt-md-49,
.my-md-49 {
    margin-top: 19.6rem !important;
  }

  .mr-md-49,
.mx-md-49 {
    margin-right: 19.6rem !important;
  }

  .mb-md-49,
.my-md-49 {
    margin-bottom: 19.6rem !important;
  }

  .ml-md-49,
.mx-md-49 {
    margin-left: 19.6rem !important;
  }

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

  .mt-md-50,
.my-md-50 {
    margin-top: 20rem !important;
  }

  .mr-md-50,
.mx-md-50 {
    margin-right: 20rem !important;
  }

  .mb-md-50,
.my-md-50 {
    margin-bottom: 20rem !important;
  }

  .ml-md-50,
.mx-md-50 {
    margin-left: 20rem !important;
  }

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

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

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

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

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

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

  .pt-md-1,
.py-md-1 {
    padding-top: 0.4rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.4rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.4rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.4rem !important;
  }

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

  .pt-md-2,
.py-md-2 {
    padding-top: 0.8rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.8rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.8rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.8rem !important;
  }

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

  .pt-md-3,
.py-md-3 {
    padding-top: 1.2rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1.2rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1.2rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1.2rem !important;
  }

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

  .pt-md-4,
.py-md-4 {
    padding-top: 1.6rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.6rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.6rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.6rem !important;
  }

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

  .pt-md-5,
.py-md-5 {
    padding-top: 2rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 2rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 2rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 2rem !important;
  }

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

  .pt-md-6,
.py-md-6 {
    padding-top: 2.4rem !important;
  }

  .pr-md-6,
.px-md-6 {
    padding-right: 2.4rem !important;
  }

  .pb-md-6,
.py-md-6 {
    padding-bottom: 2.4rem !important;
  }

  .pl-md-6,
.px-md-6 {
    padding-left: 2.4rem !important;
  }

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

  .pt-md-7,
.py-md-7 {
    padding-top: 2.8rem !important;
  }

  .pr-md-7,
.px-md-7 {
    padding-right: 2.8rem !important;
  }

  .pb-md-7,
.py-md-7 {
    padding-bottom: 2.8rem !important;
  }

  .pl-md-7,
.px-md-7 {
    padding-left: 2.8rem !important;
  }

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

  .pt-md-8,
.py-md-8 {
    padding-top: 3.2rem !important;
  }

  .pr-md-8,
.px-md-8 {
    padding-right: 3.2rem !important;
  }

  .pb-md-8,
.py-md-8 {
    padding-bottom: 3.2rem !important;
  }

  .pl-md-8,
.px-md-8 {
    padding-left: 3.2rem !important;
  }

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

  .pt-md-9,
.py-md-9 {
    padding-top: 3.6rem !important;
  }

  .pr-md-9,
.px-md-9 {
    padding-right: 3.6rem !important;
  }

  .pb-md-9,
.py-md-9 {
    padding-bottom: 3.6rem !important;
  }

  .pl-md-9,
.px-md-9 {
    padding-left: 3.6rem !important;
  }

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

  .pt-md-10,
.py-md-10 {
    padding-top: 4rem !important;
  }

  .pr-md-10,
.px-md-10 {
    padding-right: 4rem !important;
  }

  .pb-md-10,
.py-md-10 {
    padding-bottom: 4rem !important;
  }

  .pl-md-10,
.px-md-10 {
    padding-left: 4rem !important;
  }

  .p-md-11 {
    padding: 4.4rem !important;
  }

  .pt-md-11,
.py-md-11 {
    padding-top: 4.4rem !important;
  }

  .pr-md-11,
.px-md-11 {
    padding-right: 4.4rem !important;
  }

  .pb-md-11,
.py-md-11 {
    padding-bottom: 4.4rem !important;
  }

  .pl-md-11,
.px-md-11 {
    padding-left: 4.4rem !important;
  }

  .p-md-12 {
    padding: 4.8rem !important;
  }

  .pt-md-12,
.py-md-12 {
    padding-top: 4.8rem !important;
  }

  .pr-md-12,
.px-md-12 {
    padding-right: 4.8rem !important;
  }

  .pb-md-12,
.py-md-12 {
    padding-bottom: 4.8rem !important;
  }

  .pl-md-12,
.px-md-12 {
    padding-left: 4.8rem !important;
  }

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

  .pt-md-13,
.py-md-13 {
    padding-top: 5.2rem !important;
  }

  .pr-md-13,
.px-md-13 {
    padding-right: 5.2rem !important;
  }

  .pb-md-13,
.py-md-13 {
    padding-bottom: 5.2rem !important;
  }

  .pl-md-13,
.px-md-13 {
    padding-left: 5.2rem !important;
  }

  .p-md-14 {
    padding: 5.6rem !important;
  }

  .pt-md-14,
.py-md-14 {
    padding-top: 5.6rem !important;
  }

  .pr-md-14,
.px-md-14 {
    padding-right: 5.6rem !important;
  }

  .pb-md-14,
.py-md-14 {
    padding-bottom: 5.6rem !important;
  }

  .pl-md-14,
.px-md-14 {
    padding-left: 5.6rem !important;
  }

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

  .pt-md-15,
.py-md-15 {
    padding-top: 6rem !important;
  }

  .pr-md-15,
.px-md-15 {
    padding-right: 6rem !important;
  }

  .pb-md-15,
.py-md-15 {
    padding-bottom: 6rem !important;
  }

  .pl-md-15,
.px-md-15 {
    padding-left: 6rem !important;
  }

  .p-md-16 {
    padding: 6.4rem !important;
  }

  .pt-md-16,
.py-md-16 {
    padding-top: 6.4rem !important;
  }

  .pr-md-16,
.px-md-16 {
    padding-right: 6.4rem !important;
  }

  .pb-md-16,
.py-md-16 {
    padding-bottom: 6.4rem !important;
  }

  .pl-md-16,
.px-md-16 {
    padding-left: 6.4rem !important;
  }

  .p-md-17 {
    padding: 6.8rem !important;
  }

  .pt-md-17,
.py-md-17 {
    padding-top: 6.8rem !important;
  }

  .pr-md-17,
.px-md-17 {
    padding-right: 6.8rem !important;
  }

  .pb-md-17,
.py-md-17 {
    padding-bottom: 6.8rem !important;
  }

  .pl-md-17,
.px-md-17 {
    padding-left: 6.8rem !important;
  }

  .p-md-18 {
    padding: 7.2rem !important;
  }

  .pt-md-18,
.py-md-18 {
    padding-top: 7.2rem !important;
  }

  .pr-md-18,
.px-md-18 {
    padding-right: 7.2rem !important;
  }

  .pb-md-18,
.py-md-18 {
    padding-bottom: 7.2rem !important;
  }

  .pl-md-18,
.px-md-18 {
    padding-left: 7.2rem !important;
  }

  .p-md-19 {
    padding: 7.6rem !important;
  }

  .pt-md-19,
.py-md-19 {
    padding-top: 7.6rem !important;
  }

  .pr-md-19,
.px-md-19 {
    padding-right: 7.6rem !important;
  }

  .pb-md-19,
.py-md-19 {
    padding-bottom: 7.6rem !important;
  }

  .pl-md-19,
.px-md-19 {
    padding-left: 7.6rem !important;
  }

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

  .pt-md-20,
.py-md-20 {
    padding-top: 8rem !important;
  }

  .pr-md-20,
.px-md-20 {
    padding-right: 8rem !important;
  }

  .pb-md-20,
.py-md-20 {
    padding-bottom: 8rem !important;
  }

  .pl-md-20,
.px-md-20 {
    padding-left: 8rem !important;
  }

  .p-md-21 {
    padding: 8.4rem !important;
  }

  .pt-md-21,
.py-md-21 {
    padding-top: 8.4rem !important;
  }

  .pr-md-21,
.px-md-21 {
    padding-right: 8.4rem !important;
  }

  .pb-md-21,
.py-md-21 {
    padding-bottom: 8.4rem !important;
  }

  .pl-md-21,
.px-md-21 {
    padding-left: 8.4rem !important;
  }

  .p-md-22 {
    padding: 8.8rem !important;
  }

  .pt-md-22,
.py-md-22 {
    padding-top: 8.8rem !important;
  }

  .pr-md-22,
.px-md-22 {
    padding-right: 8.8rem !important;
  }

  .pb-md-22,
.py-md-22 {
    padding-bottom: 8.8rem !important;
  }

  .pl-md-22,
.px-md-22 {
    padding-left: 8.8rem !important;
  }

  .p-md-23 {
    padding: 9.2rem !important;
  }

  .pt-md-23,
.py-md-23 {
    padding-top: 9.2rem !important;
  }

  .pr-md-23,
.px-md-23 {
    padding-right: 9.2rem !important;
  }

  .pb-md-23,
.py-md-23 {
    padding-bottom: 9.2rem !important;
  }

  .pl-md-23,
.px-md-23 {
    padding-left: 9.2rem !important;
  }

  .p-md-24 {
    padding: 9.6rem !important;
  }

  .pt-md-24,
.py-md-24 {
    padding-top: 9.6rem !important;
  }

  .pr-md-24,
.px-md-24 {
    padding-right: 9.6rem !important;
  }

  .pb-md-24,
.py-md-24 {
    padding-bottom: 9.6rem !important;
  }

  .pl-md-24,
.px-md-24 {
    padding-left: 9.6rem !important;
  }

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

  .pt-md-25,
.py-md-25 {
    padding-top: 10rem !important;
  }

  .pr-md-25,
.px-md-25 {
    padding-right: 10rem !important;
  }

  .pb-md-25,
.py-md-25 {
    padding-bottom: 10rem !important;
  }

  .pl-md-25,
.px-md-25 {
    padding-left: 10rem !important;
  }

  .p-md-26 {
    padding: 10.4rem !important;
  }

  .pt-md-26,
.py-md-26 {
    padding-top: 10.4rem !important;
  }

  .pr-md-26,
.px-md-26 {
    padding-right: 10.4rem !important;
  }

  .pb-md-26,
.py-md-26 {
    padding-bottom: 10.4rem !important;
  }

  .pl-md-26,
.px-md-26 {
    padding-left: 10.4rem !important;
  }

  .p-md-27 {
    padding: 10.8rem !important;
  }

  .pt-md-27,
.py-md-27 {
    padding-top: 10.8rem !important;
  }

  .pr-md-27,
.px-md-27 {
    padding-right: 10.8rem !important;
  }

  .pb-md-27,
.py-md-27 {
    padding-bottom: 10.8rem !important;
  }

  .pl-md-27,
.px-md-27 {
    padding-left: 10.8rem !important;
  }

  .p-md-28 {
    padding: 11.2rem !important;
  }

  .pt-md-28,
.py-md-28 {
    padding-top: 11.2rem !important;
  }

  .pr-md-28,
.px-md-28 {
    padding-right: 11.2rem !important;
  }

  .pb-md-28,
.py-md-28 {
    padding-bottom: 11.2rem !important;
  }

  .pl-md-28,
.px-md-28 {
    padding-left: 11.2rem !important;
  }

  .p-md-29 {
    padding: 11.6rem !important;
  }

  .pt-md-29,
.py-md-29 {
    padding-top: 11.6rem !important;
  }

  .pr-md-29,
.px-md-29 {
    padding-right: 11.6rem !important;
  }

  .pb-md-29,
.py-md-29 {
    padding-bottom: 11.6rem !important;
  }

  .pl-md-29,
.px-md-29 {
    padding-left: 11.6rem !important;
  }

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

  .pt-md-30,
.py-md-30 {
    padding-top: 12rem !important;
  }

  .pr-md-30,
.px-md-30 {
    padding-right: 12rem !important;
  }

  .pb-md-30,
.py-md-30 {
    padding-bottom: 12rem !important;
  }

  .pl-md-30,
.px-md-30 {
    padding-left: 12rem !important;
  }

  .p-md-31 {
    padding: 12.4rem !important;
  }

  .pt-md-31,
.py-md-31 {
    padding-top: 12.4rem !important;
  }

  .pr-md-31,
.px-md-31 {
    padding-right: 12.4rem !important;
  }

  .pb-md-31,
.py-md-31 {
    padding-bottom: 12.4rem !important;
  }

  .pl-md-31,
.px-md-31 {
    padding-left: 12.4rem !important;
  }

  .p-md-32 {
    padding: 12.8rem !important;
  }

  .pt-md-32,
.py-md-32 {
    padding-top: 12.8rem !important;
  }

  .pr-md-32,
.px-md-32 {
    padding-right: 12.8rem !important;
  }

  .pb-md-32,
.py-md-32 {
    padding-bottom: 12.8rem !important;
  }

  .pl-md-32,
.px-md-32 {
    padding-left: 12.8rem !important;
  }

  .p-md-33 {
    padding: 13.2rem !important;
  }

  .pt-md-33,
.py-md-33 {
    padding-top: 13.2rem !important;
  }

  .pr-md-33,
.px-md-33 {
    padding-right: 13.2rem !important;
  }

  .pb-md-33,
.py-md-33 {
    padding-bottom: 13.2rem !important;
  }

  .pl-md-33,
.px-md-33 {
    padding-left: 13.2rem !important;
  }

  .p-md-34 {
    padding: 13.6rem !important;
  }

  .pt-md-34,
.py-md-34 {
    padding-top: 13.6rem !important;
  }

  .pr-md-34,
.px-md-34 {
    padding-right: 13.6rem !important;
  }

  .pb-md-34,
.py-md-34 {
    padding-bottom: 13.6rem !important;
  }

  .pl-md-34,
.px-md-34 {
    padding-left: 13.6rem !important;
  }

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

  .pt-md-35,
.py-md-35 {
    padding-top: 14rem !important;
  }

  .pr-md-35,
.px-md-35 {
    padding-right: 14rem !important;
  }

  .pb-md-35,
.py-md-35 {
    padding-bottom: 14rem !important;
  }

  .pl-md-35,
.px-md-35 {
    padding-left: 14rem !important;
  }

  .p-md-36 {
    padding: 14.4rem !important;
  }

  .pt-md-36,
.py-md-36 {
    padding-top: 14.4rem !important;
  }

  .pr-md-36,
.px-md-36 {
    padding-right: 14.4rem !important;
  }

  .pb-md-36,
.py-md-36 {
    padding-bottom: 14.4rem !important;
  }

  .pl-md-36,
.px-md-36 {
    padding-left: 14.4rem !important;
  }

  .p-md-37 {
    padding: 14.8rem !important;
  }

  .pt-md-37,
.py-md-37 {
    padding-top: 14.8rem !important;
  }

  .pr-md-37,
.px-md-37 {
    padding-right: 14.8rem !important;
  }

  .pb-md-37,
.py-md-37 {
    padding-bottom: 14.8rem !important;
  }

  .pl-md-37,
.px-md-37 {
    padding-left: 14.8rem !important;
  }

  .p-md-38 {
    padding: 15.2rem !important;
  }

  .pt-md-38,
.py-md-38 {
    padding-top: 15.2rem !important;
  }

  .pr-md-38,
.px-md-38 {
    padding-right: 15.2rem !important;
  }

  .pb-md-38,
.py-md-38 {
    padding-bottom: 15.2rem !important;
  }

  .pl-md-38,
.px-md-38 {
    padding-left: 15.2rem !important;
  }

  .p-md-39 {
    padding: 15.6rem !important;
  }

  .pt-md-39,
.py-md-39 {
    padding-top: 15.6rem !important;
  }

  .pr-md-39,
.px-md-39 {
    padding-right: 15.6rem !important;
  }

  .pb-md-39,
.py-md-39 {
    padding-bottom: 15.6rem !important;
  }

  .pl-md-39,
.px-md-39 {
    padding-left: 15.6rem !important;
  }

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

  .pt-md-40,
.py-md-40 {
    padding-top: 16rem !important;
  }

  .pr-md-40,
.px-md-40 {
    padding-right: 16rem !important;
  }

  .pb-md-40,
.py-md-40 {
    padding-bottom: 16rem !important;
  }

  .pl-md-40,
.px-md-40 {
    padding-left: 16rem !important;
  }

  .p-md-41 {
    padding: 16.4rem !important;
  }

  .pt-md-41,
.py-md-41 {
    padding-top: 16.4rem !important;
  }

  .pr-md-41,
.px-md-41 {
    padding-right: 16.4rem !important;
  }

  .pb-md-41,
.py-md-41 {
    padding-bottom: 16.4rem !important;
  }

  .pl-md-41,
.px-md-41 {
    padding-left: 16.4rem !important;
  }

  .p-md-42 {
    padding: 16.8rem !important;
  }

  .pt-md-42,
.py-md-42 {
    padding-top: 16.8rem !important;
  }

  .pr-md-42,
.px-md-42 {
    padding-right: 16.8rem !important;
  }

  .pb-md-42,
.py-md-42 {
    padding-bottom: 16.8rem !important;
  }

  .pl-md-42,
.px-md-42 {
    padding-left: 16.8rem !important;
  }

  .p-md-43 {
    padding: 17.2rem !important;
  }

  .pt-md-43,
.py-md-43 {
    padding-top: 17.2rem !important;
  }

  .pr-md-43,
.px-md-43 {
    padding-right: 17.2rem !important;
  }

  .pb-md-43,
.py-md-43 {
    padding-bottom: 17.2rem !important;
  }

  .pl-md-43,
.px-md-43 {
    padding-left: 17.2rem !important;
  }

  .p-md-44 {
    padding: 17.6rem !important;
  }

  .pt-md-44,
.py-md-44 {
    padding-top: 17.6rem !important;
  }

  .pr-md-44,
.px-md-44 {
    padding-right: 17.6rem !important;
  }

  .pb-md-44,
.py-md-44 {
    padding-bottom: 17.6rem !important;
  }

  .pl-md-44,
.px-md-44 {
    padding-left: 17.6rem !important;
  }

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

  .pt-md-45,
.py-md-45 {
    padding-top: 18rem !important;
  }

  .pr-md-45,
.px-md-45 {
    padding-right: 18rem !important;
  }

  .pb-md-45,
.py-md-45 {
    padding-bottom: 18rem !important;
  }

  .pl-md-45,
.px-md-45 {
    padding-left: 18rem !important;
  }

  .p-md-46 {
    padding: 18.4rem !important;
  }

  .pt-md-46,
.py-md-46 {
    padding-top: 18.4rem !important;
  }

  .pr-md-46,
.px-md-46 {
    padding-right: 18.4rem !important;
  }

  .pb-md-46,
.py-md-46 {
    padding-bottom: 18.4rem !important;
  }

  .pl-md-46,
.px-md-46 {
    padding-left: 18.4rem !important;
  }

  .p-md-47 {
    padding: 18.8rem !important;
  }

  .pt-md-47,
.py-md-47 {
    padding-top: 18.8rem !important;
  }

  .pr-md-47,
.px-md-47 {
    padding-right: 18.8rem !important;
  }

  .pb-md-47,
.py-md-47 {
    padding-bottom: 18.8rem !important;
  }

  .pl-md-47,
.px-md-47 {
    padding-left: 18.8rem !important;
  }

  .p-md-48 {
    padding: 19.2rem !important;
  }

  .pt-md-48,
.py-md-48 {
    padding-top: 19.2rem !important;
  }

  .pr-md-48,
.px-md-48 {
    padding-right: 19.2rem !important;
  }

  .pb-md-48,
.py-md-48 {
    padding-bottom: 19.2rem !important;
  }

  .pl-md-48,
.px-md-48 {
    padding-left: 19.2rem !important;
  }

  .p-md-49 {
    padding: 19.6rem !important;
  }

  .pt-md-49,
.py-md-49 {
    padding-top: 19.6rem !important;
  }

  .pr-md-49,
.px-md-49 {
    padding-right: 19.6rem !important;
  }

  .pb-md-49,
.py-md-49 {
    padding-bottom: 19.6rem !important;
  }

  .pl-md-49,
.px-md-49 {
    padding-left: 19.6rem !important;
  }

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

  .pt-md-50,
.py-md-50 {
    padding-top: 20rem !important;
  }

  .pr-md-50,
.px-md-50 {
    padding-right: 20rem !important;
  }

  .pb-md-50,
.py-md-50 {
    padding-bottom: 20rem !important;
  }

  .pl-md-50,
.px-md-50 {
    padding-left: 20rem !important;
  }

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

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

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

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

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

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

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

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

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

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

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.4rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.4rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.4rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.4rem !important;
  }

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

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.8rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.8rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.8rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.8rem !important;
  }

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

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1.2rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1.2rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1.2rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1.2rem !important;
  }

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

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.6rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.6rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.6rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.6rem !important;
  }

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

  .mt-lg-5,
.my-lg-5 {
    margin-top: 2rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 2rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 2rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 2rem !important;
  }

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

  .mt-lg-6,
.my-lg-6 {
    margin-top: 2.4rem !important;
  }

  .mr-lg-6,
.mx-lg-6 {
    margin-right: 2.4rem !important;
  }

  .mb-lg-6,
.my-lg-6 {
    margin-bottom: 2.4rem !important;
  }

  .ml-lg-6,
.mx-lg-6 {
    margin-left: 2.4rem !important;
  }

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

  .mt-lg-7,
.my-lg-7 {
    margin-top: 2.8rem !important;
  }

  .mr-lg-7,
.mx-lg-7 {
    margin-right: 2.8rem !important;
  }

  .mb-lg-7,
.my-lg-7 {
    margin-bottom: 2.8rem !important;
  }

  .ml-lg-7,
.mx-lg-7 {
    margin-left: 2.8rem !important;
  }

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

  .mt-lg-8,
.my-lg-8 {
    margin-top: 3.2rem !important;
  }

  .mr-lg-8,
.mx-lg-8 {
    margin-right: 3.2rem !important;
  }

  .mb-lg-8,
.my-lg-8 {
    margin-bottom: 3.2rem !important;
  }

  .ml-lg-8,
.mx-lg-8 {
    margin-left: 3.2rem !important;
  }

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

  .mt-lg-9,
.my-lg-9 {
    margin-top: 3.6rem !important;
  }

  .mr-lg-9,
.mx-lg-9 {
    margin-right: 3.6rem !important;
  }

  .mb-lg-9,
.my-lg-9 {
    margin-bottom: 3.6rem !important;
  }

  .ml-lg-9,
.mx-lg-9 {
    margin-left: 3.6rem !important;
  }

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

  .mt-lg-10,
.my-lg-10 {
    margin-top: 4rem !important;
  }

  .mr-lg-10,
.mx-lg-10 {
    margin-right: 4rem !important;
  }

  .mb-lg-10,
.my-lg-10 {
    margin-bottom: 4rem !important;
  }

  .ml-lg-10,
.mx-lg-10 {
    margin-left: 4rem !important;
  }

  .m-lg-11 {
    margin: 4.4rem !important;
  }

  .mt-lg-11,
.my-lg-11 {
    margin-top: 4.4rem !important;
  }

  .mr-lg-11,
.mx-lg-11 {
    margin-right: 4.4rem !important;
  }

  .mb-lg-11,
.my-lg-11 {
    margin-bottom: 4.4rem !important;
  }

  .ml-lg-11,
.mx-lg-11 {
    margin-left: 4.4rem !important;
  }

  .m-lg-12 {
    margin: 4.8rem !important;
  }

  .mt-lg-12,
.my-lg-12 {
    margin-top: 4.8rem !important;
  }

  .mr-lg-12,
.mx-lg-12 {
    margin-right: 4.8rem !important;
  }

  .mb-lg-12,
.my-lg-12 {
    margin-bottom: 4.8rem !important;
  }

  .ml-lg-12,
.mx-lg-12 {
    margin-left: 4.8rem !important;
  }

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

  .mt-lg-13,
.my-lg-13 {
    margin-top: 5.2rem !important;
  }

  .mr-lg-13,
.mx-lg-13 {
    margin-right: 5.2rem !important;
  }

  .mb-lg-13,
.my-lg-13 {
    margin-bottom: 5.2rem !important;
  }

  .ml-lg-13,
.mx-lg-13 {
    margin-left: 5.2rem !important;
  }

  .m-lg-14 {
    margin: 5.6rem !important;
  }

  .mt-lg-14,
.my-lg-14 {
    margin-top: 5.6rem !important;
  }

  .mr-lg-14,
.mx-lg-14 {
    margin-right: 5.6rem !important;
  }

  .mb-lg-14,
.my-lg-14 {
    margin-bottom: 5.6rem !important;
  }

  .ml-lg-14,
.mx-lg-14 {
    margin-left: 5.6rem !important;
  }

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

  .mt-lg-15,
.my-lg-15 {
    margin-top: 6rem !important;
  }

  .mr-lg-15,
.mx-lg-15 {
    margin-right: 6rem !important;
  }

  .mb-lg-15,
.my-lg-15 {
    margin-bottom: 6rem !important;
  }

  .ml-lg-15,
.mx-lg-15 {
    margin-left: 6rem !important;
  }

  .m-lg-16 {
    margin: 6.4rem !important;
  }

  .mt-lg-16,
.my-lg-16 {
    margin-top: 6.4rem !important;
  }

  .mr-lg-16,
.mx-lg-16 {
    margin-right: 6.4rem !important;
  }

  .mb-lg-16,
.my-lg-16 {
    margin-bottom: 6.4rem !important;
  }

  .ml-lg-16,
.mx-lg-16 {
    margin-left: 6.4rem !important;
  }

  .m-lg-17 {
    margin: 6.8rem !important;
  }

  .mt-lg-17,
.my-lg-17 {
    margin-top: 6.8rem !important;
  }

  .mr-lg-17,
.mx-lg-17 {
    margin-right: 6.8rem !important;
  }

  .mb-lg-17,
.my-lg-17 {
    margin-bottom: 6.8rem !important;
  }

  .ml-lg-17,
.mx-lg-17 {
    margin-left: 6.8rem !important;
  }

  .m-lg-18 {
    margin: 7.2rem !important;
  }

  .mt-lg-18,
.my-lg-18 {
    margin-top: 7.2rem !important;
  }

  .mr-lg-18,
.mx-lg-18 {
    margin-right: 7.2rem !important;
  }

  .mb-lg-18,
.my-lg-18 {
    margin-bottom: 7.2rem !important;
  }

  .ml-lg-18,
.mx-lg-18 {
    margin-left: 7.2rem !important;
  }

  .m-lg-19 {
    margin: 7.6rem !important;
  }

  .mt-lg-19,
.my-lg-19 {
    margin-top: 7.6rem !important;
  }

  .mr-lg-19,
.mx-lg-19 {
    margin-right: 7.6rem !important;
  }

  .mb-lg-19,
.my-lg-19 {
    margin-bottom: 7.6rem !important;
  }

  .ml-lg-19,
.mx-lg-19 {
    margin-left: 7.6rem !important;
  }

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

  .mt-lg-20,
.my-lg-20 {
    margin-top: 8rem !important;
  }

  .mr-lg-20,
.mx-lg-20 {
    margin-right: 8rem !important;
  }

  .mb-lg-20,
.my-lg-20 {
    margin-bottom: 8rem !important;
  }

  .ml-lg-20,
.mx-lg-20 {
    margin-left: 8rem !important;
  }

  .m-lg-21 {
    margin: 8.4rem !important;
  }

  .mt-lg-21,
.my-lg-21 {
    margin-top: 8.4rem !important;
  }

  .mr-lg-21,
.mx-lg-21 {
    margin-right: 8.4rem !important;
  }

  .mb-lg-21,
.my-lg-21 {
    margin-bottom: 8.4rem !important;
  }

  .ml-lg-21,
.mx-lg-21 {
    margin-left: 8.4rem !important;
  }

  .m-lg-22 {
    margin: 8.8rem !important;
  }

  .mt-lg-22,
.my-lg-22 {
    margin-top: 8.8rem !important;
  }

  .mr-lg-22,
.mx-lg-22 {
    margin-right: 8.8rem !important;
  }

  .mb-lg-22,
.my-lg-22 {
    margin-bottom: 8.8rem !important;
  }

  .ml-lg-22,
.mx-lg-22 {
    margin-left: 8.8rem !important;
  }

  .m-lg-23 {
    margin: 9.2rem !important;
  }

  .mt-lg-23,
.my-lg-23 {
    margin-top: 9.2rem !important;
  }

  .mr-lg-23,
.mx-lg-23 {
    margin-right: 9.2rem !important;
  }

  .mb-lg-23,
.my-lg-23 {
    margin-bottom: 9.2rem !important;
  }

  .ml-lg-23,
.mx-lg-23 {
    margin-left: 9.2rem !important;
  }

  .m-lg-24 {
    margin: 9.6rem !important;
  }

  .mt-lg-24,
.my-lg-24 {
    margin-top: 9.6rem !important;
  }

  .mr-lg-24,
.mx-lg-24 {
    margin-right: 9.6rem !important;
  }

  .mb-lg-24,
.my-lg-24 {
    margin-bottom: 9.6rem !important;
  }

  .ml-lg-24,
.mx-lg-24 {
    margin-left: 9.6rem !important;
  }

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

  .mt-lg-25,
.my-lg-25 {
    margin-top: 10rem !important;
  }

  .mr-lg-25,
.mx-lg-25 {
    margin-right: 10rem !important;
  }

  .mb-lg-25,
.my-lg-25 {
    margin-bottom: 10rem !important;
  }

  .ml-lg-25,
.mx-lg-25 {
    margin-left: 10rem !important;
  }

  .m-lg-26 {
    margin: 10.4rem !important;
  }

  .mt-lg-26,
.my-lg-26 {
    margin-top: 10.4rem !important;
  }

  .mr-lg-26,
.mx-lg-26 {
    margin-right: 10.4rem !important;
  }

  .mb-lg-26,
.my-lg-26 {
    margin-bottom: 10.4rem !important;
  }

  .ml-lg-26,
.mx-lg-26 {
    margin-left: 10.4rem !important;
  }

  .m-lg-27 {
    margin: 10.8rem !important;
  }

  .mt-lg-27,
.my-lg-27 {
    margin-top: 10.8rem !important;
  }

  .mr-lg-27,
.mx-lg-27 {
    margin-right: 10.8rem !important;
  }

  .mb-lg-27,
.my-lg-27 {
    margin-bottom: 10.8rem !important;
  }

  .ml-lg-27,
.mx-lg-27 {
    margin-left: 10.8rem !important;
  }

  .m-lg-28 {
    margin: 11.2rem !important;
  }

  .mt-lg-28,
.my-lg-28 {
    margin-top: 11.2rem !important;
  }

  .mr-lg-28,
.mx-lg-28 {
    margin-right: 11.2rem !important;
  }

  .mb-lg-28,
.my-lg-28 {
    margin-bottom: 11.2rem !important;
  }

  .ml-lg-28,
.mx-lg-28 {
    margin-left: 11.2rem !important;
  }

  .m-lg-29 {
    margin: 11.6rem !important;
  }

  .mt-lg-29,
.my-lg-29 {
    margin-top: 11.6rem !important;
  }

  .mr-lg-29,
.mx-lg-29 {
    margin-right: 11.6rem !important;
  }

  .mb-lg-29,
.my-lg-29 {
    margin-bottom: 11.6rem !important;
  }

  .ml-lg-29,
.mx-lg-29 {
    margin-left: 11.6rem !important;
  }

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

  .mt-lg-30,
.my-lg-30 {
    margin-top: 12rem !important;
  }

  .mr-lg-30,
.mx-lg-30 {
    margin-right: 12rem !important;
  }

  .mb-lg-30,
.my-lg-30 {
    margin-bottom: 12rem !important;
  }

  .ml-lg-30,
.mx-lg-30 {
    margin-left: 12rem !important;
  }

  .m-lg-31 {
    margin: 12.4rem !important;
  }

  .mt-lg-31,
.my-lg-31 {
    margin-top: 12.4rem !important;
  }

  .mr-lg-31,
.mx-lg-31 {
    margin-right: 12.4rem !important;
  }

  .mb-lg-31,
.my-lg-31 {
    margin-bottom: 12.4rem !important;
  }

  .ml-lg-31,
.mx-lg-31 {
    margin-left: 12.4rem !important;
  }

  .m-lg-32 {
    margin: 12.8rem !important;
  }

  .mt-lg-32,
.my-lg-32 {
    margin-top: 12.8rem !important;
  }

  .mr-lg-32,
.mx-lg-32 {
    margin-right: 12.8rem !important;
  }

  .mb-lg-32,
.my-lg-32 {
    margin-bottom: 12.8rem !important;
  }

  .ml-lg-32,
.mx-lg-32 {
    margin-left: 12.8rem !important;
  }

  .m-lg-33 {
    margin: 13.2rem !important;
  }

  .mt-lg-33,
.my-lg-33 {
    margin-top: 13.2rem !important;
  }

  .mr-lg-33,
.mx-lg-33 {
    margin-right: 13.2rem !important;
  }

  .mb-lg-33,
.my-lg-33 {
    margin-bottom: 13.2rem !important;
  }

  .ml-lg-33,
.mx-lg-33 {
    margin-left: 13.2rem !important;
  }

  .m-lg-34 {
    margin: 13.6rem !important;
  }

  .mt-lg-34,
.my-lg-34 {
    margin-top: 13.6rem !important;
  }

  .mr-lg-34,
.mx-lg-34 {
    margin-right: 13.6rem !important;
  }

  .mb-lg-34,
.my-lg-34 {
    margin-bottom: 13.6rem !important;
  }

  .ml-lg-34,
.mx-lg-34 {
    margin-left: 13.6rem !important;
  }

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

  .mt-lg-35,
.my-lg-35 {
    margin-top: 14rem !important;
  }

  .mr-lg-35,
.mx-lg-35 {
    margin-right: 14rem !important;
  }

  .mb-lg-35,
.my-lg-35 {
    margin-bottom: 14rem !important;
  }

  .ml-lg-35,
.mx-lg-35 {
    margin-left: 14rem !important;
  }

  .m-lg-36 {
    margin: 14.4rem !important;
  }

  .mt-lg-36,
.my-lg-36 {
    margin-top: 14.4rem !important;
  }

  .mr-lg-36,
.mx-lg-36 {
    margin-right: 14.4rem !important;
  }

  .mb-lg-36,
.my-lg-36 {
    margin-bottom: 14.4rem !important;
  }

  .ml-lg-36,
.mx-lg-36 {
    margin-left: 14.4rem !important;
  }

  .m-lg-37 {
    margin: 14.8rem !important;
  }

  .mt-lg-37,
.my-lg-37 {
    margin-top: 14.8rem !important;
  }

  .mr-lg-37,
.mx-lg-37 {
    margin-right: 14.8rem !important;
  }

  .mb-lg-37,
.my-lg-37 {
    margin-bottom: 14.8rem !important;
  }

  .ml-lg-37,
.mx-lg-37 {
    margin-left: 14.8rem !important;
  }

  .m-lg-38 {
    margin: 15.2rem !important;
  }

  .mt-lg-38,
.my-lg-38 {
    margin-top: 15.2rem !important;
  }

  .mr-lg-38,
.mx-lg-38 {
    margin-right: 15.2rem !important;
  }

  .mb-lg-38,
.my-lg-38 {
    margin-bottom: 15.2rem !important;
  }

  .ml-lg-38,
.mx-lg-38 {
    margin-left: 15.2rem !important;
  }

  .m-lg-39 {
    margin: 15.6rem !important;
  }

  .mt-lg-39,
.my-lg-39 {
    margin-top: 15.6rem !important;
  }

  .mr-lg-39,
.mx-lg-39 {
    margin-right: 15.6rem !important;
  }

  .mb-lg-39,
.my-lg-39 {
    margin-bottom: 15.6rem !important;
  }

  .ml-lg-39,
.mx-lg-39 {
    margin-left: 15.6rem !important;
  }

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

  .mt-lg-40,
.my-lg-40 {
    margin-top: 16rem !important;
  }

  .mr-lg-40,
.mx-lg-40 {
    margin-right: 16rem !important;
  }

  .mb-lg-40,
.my-lg-40 {
    margin-bottom: 16rem !important;
  }

  .ml-lg-40,
.mx-lg-40 {
    margin-left: 16rem !important;
  }

  .m-lg-41 {
    margin: 16.4rem !important;
  }

  .mt-lg-41,
.my-lg-41 {
    margin-top: 16.4rem !important;
  }

  .mr-lg-41,
.mx-lg-41 {
    margin-right: 16.4rem !important;
  }

  .mb-lg-41,
.my-lg-41 {
    margin-bottom: 16.4rem !important;
  }

  .ml-lg-41,
.mx-lg-41 {
    margin-left: 16.4rem !important;
  }

  .m-lg-42 {
    margin: 16.8rem !important;
  }

  .mt-lg-42,
.my-lg-42 {
    margin-top: 16.8rem !important;
  }

  .mr-lg-42,
.mx-lg-42 {
    margin-right: 16.8rem !important;
  }

  .mb-lg-42,
.my-lg-42 {
    margin-bottom: 16.8rem !important;
  }

  .ml-lg-42,
.mx-lg-42 {
    margin-left: 16.8rem !important;
  }

  .m-lg-43 {
    margin: 17.2rem !important;
  }

  .mt-lg-43,
.my-lg-43 {
    margin-top: 17.2rem !important;
  }

  .mr-lg-43,
.mx-lg-43 {
    margin-right: 17.2rem !important;
  }

  .mb-lg-43,
.my-lg-43 {
    margin-bottom: 17.2rem !important;
  }

  .ml-lg-43,
.mx-lg-43 {
    margin-left: 17.2rem !important;
  }

  .m-lg-44 {
    margin: 17.6rem !important;
  }

  .mt-lg-44,
.my-lg-44 {
    margin-top: 17.6rem !important;
  }

  .mr-lg-44,
.mx-lg-44 {
    margin-right: 17.6rem !important;
  }

  .mb-lg-44,
.my-lg-44 {
    margin-bottom: 17.6rem !important;
  }

  .ml-lg-44,
.mx-lg-44 {
    margin-left: 17.6rem !important;
  }

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

  .mt-lg-45,
.my-lg-45 {
    margin-top: 18rem !important;
  }

  .mr-lg-45,
.mx-lg-45 {
    margin-right: 18rem !important;
  }

  .mb-lg-45,
.my-lg-45 {
    margin-bottom: 18rem !important;
  }

  .ml-lg-45,
.mx-lg-45 {
    margin-left: 18rem !important;
  }

  .m-lg-46 {
    margin: 18.4rem !important;
  }

  .mt-lg-46,
.my-lg-46 {
    margin-top: 18.4rem !important;
  }

  .mr-lg-46,
.mx-lg-46 {
    margin-right: 18.4rem !important;
  }

  .mb-lg-46,
.my-lg-46 {
    margin-bottom: 18.4rem !important;
  }

  .ml-lg-46,
.mx-lg-46 {
    margin-left: 18.4rem !important;
  }

  .m-lg-47 {
    margin: 18.8rem !important;
  }

  .mt-lg-47,
.my-lg-47 {
    margin-top: 18.8rem !important;
  }

  .mr-lg-47,
.mx-lg-47 {
    margin-right: 18.8rem !important;
  }

  .mb-lg-47,
.my-lg-47 {
    margin-bottom: 18.8rem !important;
  }

  .ml-lg-47,
.mx-lg-47 {
    margin-left: 18.8rem !important;
  }

  .m-lg-48 {
    margin: 19.2rem !important;
  }

  .mt-lg-48,
.my-lg-48 {
    margin-top: 19.2rem !important;
  }

  .mr-lg-48,
.mx-lg-48 {
    margin-right: 19.2rem !important;
  }

  .mb-lg-48,
.my-lg-48 {
    margin-bottom: 19.2rem !important;
  }

  .ml-lg-48,
.mx-lg-48 {
    margin-left: 19.2rem !important;
  }

  .m-lg-49 {
    margin: 19.6rem !important;
  }

  .mt-lg-49,
.my-lg-49 {
    margin-top: 19.6rem !important;
  }

  .mr-lg-49,
.mx-lg-49 {
    margin-right: 19.6rem !important;
  }

  .mb-lg-49,
.my-lg-49 {
    margin-bottom: 19.6rem !important;
  }

  .ml-lg-49,
.mx-lg-49 {
    margin-left: 19.6rem !important;
  }

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

  .mt-lg-50,
.my-lg-50 {
    margin-top: 20rem !important;
  }

  .mr-lg-50,
.mx-lg-50 {
    margin-right: 20rem !important;
  }

  .mb-lg-50,
.my-lg-50 {
    margin-bottom: 20rem !important;
  }

  .ml-lg-50,
.mx-lg-50 {
    margin-left: 20rem !important;
  }

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

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

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

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

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

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

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.4rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.4rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.4rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.4rem !important;
  }

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

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.8rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.8rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.8rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.8rem !important;
  }

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

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1.2rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1.2rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1.2rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1.2rem !important;
  }

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

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.6rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.6rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.6rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.6rem !important;
  }

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

  .pt-lg-5,
.py-lg-5 {
    padding-top: 2rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 2rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 2rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 2rem !important;
  }

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

  .pt-lg-6,
.py-lg-6 {
    padding-top: 2.4rem !important;
  }

  .pr-lg-6,
.px-lg-6 {
    padding-right: 2.4rem !important;
  }

  .pb-lg-6,
.py-lg-6 {
    padding-bottom: 2.4rem !important;
  }

  .pl-lg-6,
.px-lg-6 {
    padding-left: 2.4rem !important;
  }

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

  .pt-lg-7,
.py-lg-7 {
    padding-top: 2.8rem !important;
  }

  .pr-lg-7,
.px-lg-7 {
    padding-right: 2.8rem !important;
  }

  .pb-lg-7,
.py-lg-7 {
    padding-bottom: 2.8rem !important;
  }

  .pl-lg-7,
.px-lg-7 {
    padding-left: 2.8rem !important;
  }

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

  .pt-lg-8,
.py-lg-8 {
    padding-top: 3.2rem !important;
  }

  .pr-lg-8,
.px-lg-8 {
    padding-right: 3.2rem !important;
  }

  .pb-lg-8,
.py-lg-8 {
    padding-bottom: 3.2rem !important;
  }

  .pl-lg-8,
.px-lg-8 {
    padding-left: 3.2rem !important;
  }

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

  .pt-lg-9,
.py-lg-9 {
    padding-top: 3.6rem !important;
  }

  .pr-lg-9,
.px-lg-9 {
    padding-right: 3.6rem !important;
  }

  .pb-lg-9,
.py-lg-9 {
    padding-bottom: 3.6rem !important;
  }

  .pl-lg-9,
.px-lg-9 {
    padding-left: 3.6rem !important;
  }

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

  .pt-lg-10,
.py-lg-10 {
    padding-top: 4rem !important;
  }

  .pr-lg-10,
.px-lg-10 {
    padding-right: 4rem !important;
  }

  .pb-lg-10,
.py-lg-10 {
    padding-bottom: 4rem !important;
  }

  .pl-lg-10,
.px-lg-10 {
    padding-left: 4rem !important;
  }

  .p-lg-11 {
    padding: 4.4rem !important;
  }

  .pt-lg-11,
.py-lg-11 {
    padding-top: 4.4rem !important;
  }

  .pr-lg-11,
.px-lg-11 {
    padding-right: 4.4rem !important;
  }

  .pb-lg-11,
.py-lg-11 {
    padding-bottom: 4.4rem !important;
  }

  .pl-lg-11,
.px-lg-11 {
    padding-left: 4.4rem !important;
  }

  .p-lg-12 {
    padding: 4.8rem !important;
  }

  .pt-lg-12,
.py-lg-12 {
    padding-top: 4.8rem !important;
  }

  .pr-lg-12,
.px-lg-12 {
    padding-right: 4.8rem !important;
  }

  .pb-lg-12,
.py-lg-12 {
    padding-bottom: 4.8rem !important;
  }

  .pl-lg-12,
.px-lg-12 {
    padding-left: 4.8rem !important;
  }

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

  .pt-lg-13,
.py-lg-13 {
    padding-top: 5.2rem !important;
  }

  .pr-lg-13,
.px-lg-13 {
    padding-right: 5.2rem !important;
  }

  .pb-lg-13,
.py-lg-13 {
    padding-bottom: 5.2rem !important;
  }

  .pl-lg-13,
.px-lg-13 {
    padding-left: 5.2rem !important;
  }

  .p-lg-14 {
    padding: 5.6rem !important;
  }

  .pt-lg-14,
.py-lg-14 {
    padding-top: 5.6rem !important;
  }

  .pr-lg-14,
.px-lg-14 {
    padding-right: 5.6rem !important;
  }

  .pb-lg-14,
.py-lg-14 {
    padding-bottom: 5.6rem !important;
  }

  .pl-lg-14,
.px-lg-14 {
    padding-left: 5.6rem !important;
  }

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

  .pt-lg-15,
.py-lg-15 {
    padding-top: 6rem !important;
  }

  .pr-lg-15,
.px-lg-15 {
    padding-right: 6rem !important;
  }

  .pb-lg-15,
.py-lg-15 {
    padding-bottom: 6rem !important;
  }

  .pl-lg-15,
.px-lg-15 {
    padding-left: 6rem !important;
  }

  .p-lg-16 {
    padding: 6.4rem !important;
  }

  .pt-lg-16,
.py-lg-16 {
    padding-top: 6.4rem !important;
  }

  .pr-lg-16,
.px-lg-16 {
    padding-right: 6.4rem !important;
  }

  .pb-lg-16,
.py-lg-16 {
    padding-bottom: 6.4rem !important;
  }

  .pl-lg-16,
.px-lg-16 {
    padding-left: 6.4rem !important;
  }

  .p-lg-17 {
    padding: 6.8rem !important;
  }

  .pt-lg-17,
.py-lg-17 {
    padding-top: 6.8rem !important;
  }

  .pr-lg-17,
.px-lg-17 {
    padding-right: 6.8rem !important;
  }

  .pb-lg-17,
.py-lg-17 {
    padding-bottom: 6.8rem !important;
  }

  .pl-lg-17,
.px-lg-17 {
    padding-left: 6.8rem !important;
  }

  .p-lg-18 {
    padding: 7.2rem !important;
  }

  .pt-lg-18,
.py-lg-18 {
    padding-top: 7.2rem !important;
  }

  .pr-lg-18,
.px-lg-18 {
    padding-right: 7.2rem !important;
  }

  .pb-lg-18,
.py-lg-18 {
    padding-bottom: 7.2rem !important;
  }

  .pl-lg-18,
.px-lg-18 {
    padding-left: 7.2rem !important;
  }

  .p-lg-19 {
    padding: 7.6rem !important;
  }

  .pt-lg-19,
.py-lg-19 {
    padding-top: 7.6rem !important;
  }

  .pr-lg-19,
.px-lg-19 {
    padding-right: 7.6rem !important;
  }

  .pb-lg-19,
.py-lg-19 {
    padding-bottom: 7.6rem !important;
  }

  .pl-lg-19,
.px-lg-19 {
    padding-left: 7.6rem !important;
  }

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

  .pt-lg-20,
.py-lg-20 {
    padding-top: 8rem !important;
  }

  .pr-lg-20,
.px-lg-20 {
    padding-right: 8rem !important;
  }

  .pb-lg-20,
.py-lg-20 {
    padding-bottom: 8rem !important;
  }

  .pl-lg-20,
.px-lg-20 {
    padding-left: 8rem !important;
  }

  .p-lg-21 {
    padding: 8.4rem !important;
  }

  .pt-lg-21,
.py-lg-21 {
    padding-top: 8.4rem !important;
  }

  .pr-lg-21,
.px-lg-21 {
    padding-right: 8.4rem !important;
  }

  .pb-lg-21,
.py-lg-21 {
    padding-bottom: 8.4rem !important;
  }

  .pl-lg-21,
.px-lg-21 {
    padding-left: 8.4rem !important;
  }

  .p-lg-22 {
    padding: 8.8rem !important;
  }

  .pt-lg-22,
.py-lg-22 {
    padding-top: 8.8rem !important;
  }

  .pr-lg-22,
.px-lg-22 {
    padding-right: 8.8rem !important;
  }

  .pb-lg-22,
.py-lg-22 {
    padding-bottom: 8.8rem !important;
  }

  .pl-lg-22,
.px-lg-22 {
    padding-left: 8.8rem !important;
  }

  .p-lg-23 {
    padding: 9.2rem !important;
  }

  .pt-lg-23,
.py-lg-23 {
    padding-top: 9.2rem !important;
  }

  .pr-lg-23,
.px-lg-23 {
    padding-right: 9.2rem !important;
  }

  .pb-lg-23,
.py-lg-23 {
    padding-bottom: 9.2rem !important;
  }

  .pl-lg-23,
.px-lg-23 {
    padding-left: 9.2rem !important;
  }

  .p-lg-24 {
    padding: 9.6rem !important;
  }

  .pt-lg-24,
.py-lg-24 {
    padding-top: 9.6rem !important;
  }

  .pr-lg-24,
.px-lg-24 {
    padding-right: 9.6rem !important;
  }

  .pb-lg-24,
.py-lg-24 {
    padding-bottom: 9.6rem !important;
  }

  .pl-lg-24,
.px-lg-24 {
    padding-left: 9.6rem !important;
  }

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

  .pt-lg-25,
.py-lg-25 {
    padding-top: 10rem !important;
  }

  .pr-lg-25,
.px-lg-25 {
    padding-right: 10rem !important;
  }

  .pb-lg-25,
.py-lg-25 {
    padding-bottom: 10rem !important;
  }

  .pl-lg-25,
.px-lg-25 {
    padding-left: 10rem !important;
  }

  .p-lg-26 {
    padding: 10.4rem !important;
  }

  .pt-lg-26,
.py-lg-26 {
    padding-top: 10.4rem !important;
  }

  .pr-lg-26,
.px-lg-26 {
    padding-right: 10.4rem !important;
  }

  .pb-lg-26,
.py-lg-26 {
    padding-bottom: 10.4rem !important;
  }

  .pl-lg-26,
.px-lg-26 {
    padding-left: 10.4rem !important;
  }

  .p-lg-27 {
    padding: 10.8rem !important;
  }

  .pt-lg-27,
.py-lg-27 {
    padding-top: 10.8rem !important;
  }

  .pr-lg-27,
.px-lg-27 {
    padding-right: 10.8rem !important;
  }

  .pb-lg-27,
.py-lg-27 {
    padding-bottom: 10.8rem !important;
  }

  .pl-lg-27,
.px-lg-27 {
    padding-left: 10.8rem !important;
  }

  .p-lg-28 {
    padding: 11.2rem !important;
  }

  .pt-lg-28,
.py-lg-28 {
    padding-top: 11.2rem !important;
  }

  .pr-lg-28,
.px-lg-28 {
    padding-right: 11.2rem !important;
  }

  .pb-lg-28,
.py-lg-28 {
    padding-bottom: 11.2rem !important;
  }

  .pl-lg-28,
.px-lg-28 {
    padding-left: 11.2rem !important;
  }

  .p-lg-29 {
    padding: 11.6rem !important;
  }

  .pt-lg-29,
.py-lg-29 {
    padding-top: 11.6rem !important;
  }

  .pr-lg-29,
.px-lg-29 {
    padding-right: 11.6rem !important;
  }

  .pb-lg-29,
.py-lg-29 {
    padding-bottom: 11.6rem !important;
  }

  .pl-lg-29,
.px-lg-29 {
    padding-left: 11.6rem !important;
  }

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

  .pt-lg-30,
.py-lg-30 {
    padding-top: 12rem !important;
  }

  .pr-lg-30,
.px-lg-30 {
    padding-right: 12rem !important;
  }

  .pb-lg-30,
.py-lg-30 {
    padding-bottom: 12rem !important;
  }

  .pl-lg-30,
.px-lg-30 {
    padding-left: 12rem !important;
  }

  .p-lg-31 {
    padding: 12.4rem !important;
  }

  .pt-lg-31,
.py-lg-31 {
    padding-top: 12.4rem !important;
  }

  .pr-lg-31,
.px-lg-31 {
    padding-right: 12.4rem !important;
  }

  .pb-lg-31,
.py-lg-31 {
    padding-bottom: 12.4rem !important;
  }

  .pl-lg-31,
.px-lg-31 {
    padding-left: 12.4rem !important;
  }

  .p-lg-32 {
    padding: 12.8rem !important;
  }

  .pt-lg-32,
.py-lg-32 {
    padding-top: 12.8rem !important;
  }

  .pr-lg-32,
.px-lg-32 {
    padding-right: 12.8rem !important;
  }

  .pb-lg-32,
.py-lg-32 {
    padding-bottom: 12.8rem !important;
  }

  .pl-lg-32,
.px-lg-32 {
    padding-left: 12.8rem !important;
  }

  .p-lg-33 {
    padding: 13.2rem !important;
  }

  .pt-lg-33,
.py-lg-33 {
    padding-top: 13.2rem !important;
  }

  .pr-lg-33,
.px-lg-33 {
    padding-right: 13.2rem !important;
  }

  .pb-lg-33,
.py-lg-33 {
    padding-bottom: 13.2rem !important;
  }

  .pl-lg-33,
.px-lg-33 {
    padding-left: 13.2rem !important;
  }

  .p-lg-34 {
    padding: 13.6rem !important;
  }

  .pt-lg-34,
.py-lg-34 {
    padding-top: 13.6rem !important;
  }

  .pr-lg-34,
.px-lg-34 {
    padding-right: 13.6rem !important;
  }

  .pb-lg-34,
.py-lg-34 {
    padding-bottom: 13.6rem !important;
  }

  .pl-lg-34,
.px-lg-34 {
    padding-left: 13.6rem !important;
  }

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

  .pt-lg-35,
.py-lg-35 {
    padding-top: 14rem !important;
  }

  .pr-lg-35,
.px-lg-35 {
    padding-right: 14rem !important;
  }

  .pb-lg-35,
.py-lg-35 {
    padding-bottom: 14rem !important;
  }

  .pl-lg-35,
.px-lg-35 {
    padding-left: 14rem !important;
  }

  .p-lg-36 {
    padding: 14.4rem !important;
  }

  .pt-lg-36,
.py-lg-36 {
    padding-top: 14.4rem !important;
  }

  .pr-lg-36,
.px-lg-36 {
    padding-right: 14.4rem !important;
  }

  .pb-lg-36,
.py-lg-36 {
    padding-bottom: 14.4rem !important;
  }

  .pl-lg-36,
.px-lg-36 {
    padding-left: 14.4rem !important;
  }

  .p-lg-37 {
    padding: 14.8rem !important;
  }

  .pt-lg-37,
.py-lg-37 {
    padding-top: 14.8rem !important;
  }

  .pr-lg-37,
.px-lg-37 {
    padding-right: 14.8rem !important;
  }

  .pb-lg-37,
.py-lg-37 {
    padding-bottom: 14.8rem !important;
  }

  .pl-lg-37,
.px-lg-37 {
    padding-left: 14.8rem !important;
  }

  .p-lg-38 {
    padding: 15.2rem !important;
  }

  .pt-lg-38,
.py-lg-38 {
    padding-top: 15.2rem !important;
  }

  .pr-lg-38,
.px-lg-38 {
    padding-right: 15.2rem !important;
  }

  .pb-lg-38,
.py-lg-38 {
    padding-bottom: 15.2rem !important;
  }

  .pl-lg-38,
.px-lg-38 {
    padding-left: 15.2rem !important;
  }

  .p-lg-39 {
    padding: 15.6rem !important;
  }

  .pt-lg-39,
.py-lg-39 {
    padding-top: 15.6rem !important;
  }

  .pr-lg-39,
.px-lg-39 {
    padding-right: 15.6rem !important;
  }

  .pb-lg-39,
.py-lg-39 {
    padding-bottom: 15.6rem !important;
  }

  .pl-lg-39,
.px-lg-39 {
    padding-left: 15.6rem !important;
  }

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

  .pt-lg-40,
.py-lg-40 {
    padding-top: 16rem !important;
  }

  .pr-lg-40,
.px-lg-40 {
    padding-right: 16rem !important;
  }

  .pb-lg-40,
.py-lg-40 {
    padding-bottom: 16rem !important;
  }

  .pl-lg-40,
.px-lg-40 {
    padding-left: 16rem !important;
  }

  .p-lg-41 {
    padding: 16.4rem !important;
  }

  .pt-lg-41,
.py-lg-41 {
    padding-top: 16.4rem !important;
  }

  .pr-lg-41,
.px-lg-41 {
    padding-right: 16.4rem !important;
  }

  .pb-lg-41,
.py-lg-41 {
    padding-bottom: 16.4rem !important;
  }

  .pl-lg-41,
.px-lg-41 {
    padding-left: 16.4rem !important;
  }

  .p-lg-42 {
    padding: 16.8rem !important;
  }

  .pt-lg-42,
.py-lg-42 {
    padding-top: 16.8rem !important;
  }

  .pr-lg-42,
.px-lg-42 {
    padding-right: 16.8rem !important;
  }

  .pb-lg-42,
.py-lg-42 {
    padding-bottom: 16.8rem !important;
  }

  .pl-lg-42,
.px-lg-42 {
    padding-left: 16.8rem !important;
  }

  .p-lg-43 {
    padding: 17.2rem !important;
  }

  .pt-lg-43,
.py-lg-43 {
    padding-top: 17.2rem !important;
  }

  .pr-lg-43,
.px-lg-43 {
    padding-right: 17.2rem !important;
  }

  .pb-lg-43,
.py-lg-43 {
    padding-bottom: 17.2rem !important;
  }

  .pl-lg-43,
.px-lg-43 {
    padding-left: 17.2rem !important;
  }

  .p-lg-44 {
    padding: 17.6rem !important;
  }

  .pt-lg-44,
.py-lg-44 {
    padding-top: 17.6rem !important;
  }

  .pr-lg-44,
.px-lg-44 {
    padding-right: 17.6rem !important;
  }

  .pb-lg-44,
.py-lg-44 {
    padding-bottom: 17.6rem !important;
  }

  .pl-lg-44,
.px-lg-44 {
    padding-left: 17.6rem !important;
  }

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

  .pt-lg-45,
.py-lg-45 {
    padding-top: 18rem !important;
  }

  .pr-lg-45,
.px-lg-45 {
    padding-right: 18rem !important;
  }

  .pb-lg-45,
.py-lg-45 {
    padding-bottom: 18rem !important;
  }

  .pl-lg-45,
.px-lg-45 {
    padding-left: 18rem !important;
  }

  .p-lg-46 {
    padding: 18.4rem !important;
  }

  .pt-lg-46,
.py-lg-46 {
    padding-top: 18.4rem !important;
  }

  .pr-lg-46,
.px-lg-46 {
    padding-right: 18.4rem !important;
  }

  .pb-lg-46,
.py-lg-46 {
    padding-bottom: 18.4rem !important;
  }

  .pl-lg-46,
.px-lg-46 {
    padding-left: 18.4rem !important;
  }

  .p-lg-47 {
    padding: 18.8rem !important;
  }

  .pt-lg-47,
.py-lg-47 {
    padding-top: 18.8rem !important;
  }

  .pr-lg-47,
.px-lg-47 {
    padding-right: 18.8rem !important;
  }

  .pb-lg-47,
.py-lg-47 {
    padding-bottom: 18.8rem !important;
  }

  .pl-lg-47,
.px-lg-47 {
    padding-left: 18.8rem !important;
  }

  .p-lg-48 {
    padding: 19.2rem !important;
  }

  .pt-lg-48,
.py-lg-48 {
    padding-top: 19.2rem !important;
  }

  .pr-lg-48,
.px-lg-48 {
    padding-right: 19.2rem !important;
  }

  .pb-lg-48,
.py-lg-48 {
    padding-bottom: 19.2rem !important;
  }

  .pl-lg-48,
.px-lg-48 {
    padding-left: 19.2rem !important;
  }

  .p-lg-49 {
    padding: 19.6rem !important;
  }

  .pt-lg-49,
.py-lg-49 {
    padding-top: 19.6rem !important;
  }

  .pr-lg-49,
.px-lg-49 {
    padding-right: 19.6rem !important;
  }

  .pb-lg-49,
.py-lg-49 {
    padding-bottom: 19.6rem !important;
  }

  .pl-lg-49,
.px-lg-49 {
    padding-left: 19.6rem !important;
  }

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

  .pt-lg-50,
.py-lg-50 {
    padding-top: 20rem !important;
  }

  .pr-lg-50,
.px-lg-50 {
    padding-right: 20rem !important;
  }

  .pb-lg-50,
.py-lg-50 {
    padding-bottom: 20rem !important;
  }

  .pl-lg-50,
.px-lg-50 {
    padding-left: 20rem !important;
  }

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

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

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

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

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

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

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

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

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

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

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.4rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.4rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.4rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.4rem !important;
  }

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

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.8rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.8rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.8rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.8rem !important;
  }

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

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1.2rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1.2rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1.2rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1.2rem !important;
  }

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

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.6rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.6rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.6rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.6rem !important;
  }

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

  .mt-xl-5,
.my-xl-5 {
    margin-top: 2rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 2rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 2rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 2rem !important;
  }

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

  .mt-xl-6,
.my-xl-6 {
    margin-top: 2.4rem !important;
  }

  .mr-xl-6,
.mx-xl-6 {
    margin-right: 2.4rem !important;
  }

  .mb-xl-6,
.my-xl-6 {
    margin-bottom: 2.4rem !important;
  }

  .ml-xl-6,
.mx-xl-6 {
    margin-left: 2.4rem !important;
  }

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

  .mt-xl-7,
.my-xl-7 {
    margin-top: 2.8rem !important;
  }

  .mr-xl-7,
.mx-xl-7 {
    margin-right: 2.8rem !important;
  }

  .mb-xl-7,
.my-xl-7 {
    margin-bottom: 2.8rem !important;
  }

  .ml-xl-7,
.mx-xl-7 {
    margin-left: 2.8rem !important;
  }

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

  .mt-xl-8,
.my-xl-8 {
    margin-top: 3.2rem !important;
  }

  .mr-xl-8,
.mx-xl-8 {
    margin-right: 3.2rem !important;
  }

  .mb-xl-8,
.my-xl-8 {
    margin-bottom: 3.2rem !important;
  }

  .ml-xl-8,
.mx-xl-8 {
    margin-left: 3.2rem !important;
  }

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

  .mt-xl-9,
.my-xl-9 {
    margin-top: 3.6rem !important;
  }

  .mr-xl-9,
.mx-xl-9 {
    margin-right: 3.6rem !important;
  }

  .mb-xl-9,
.my-xl-9 {
    margin-bottom: 3.6rem !important;
  }

  .ml-xl-9,
.mx-xl-9 {
    margin-left: 3.6rem !important;
  }

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

  .mt-xl-10,
.my-xl-10 {
    margin-top: 4rem !important;
  }

  .mr-xl-10,
.mx-xl-10 {
    margin-right: 4rem !important;
  }

  .mb-xl-10,
.my-xl-10 {
    margin-bottom: 4rem !important;
  }

  .ml-xl-10,
.mx-xl-10 {
    margin-left: 4rem !important;
  }

  .m-xl-11 {
    margin: 4.4rem !important;
  }

  .mt-xl-11,
.my-xl-11 {
    margin-top: 4.4rem !important;
  }

  .mr-xl-11,
.mx-xl-11 {
    margin-right: 4.4rem !important;
  }

  .mb-xl-11,
.my-xl-11 {
    margin-bottom: 4.4rem !important;
  }

  .ml-xl-11,
.mx-xl-11 {
    margin-left: 4.4rem !important;
  }

  .m-xl-12 {
    margin: 4.8rem !important;
  }

  .mt-xl-12,
.my-xl-12 {
    margin-top: 4.8rem !important;
  }

  .mr-xl-12,
.mx-xl-12 {
    margin-right: 4.8rem !important;
  }

  .mb-xl-12,
.my-xl-12 {
    margin-bottom: 4.8rem !important;
  }

  .ml-xl-12,
.mx-xl-12 {
    margin-left: 4.8rem !important;
  }

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

  .mt-xl-13,
.my-xl-13 {
    margin-top: 5.2rem !important;
  }

  .mr-xl-13,
.mx-xl-13 {
    margin-right: 5.2rem !important;
  }

  .mb-xl-13,
.my-xl-13 {
    margin-bottom: 5.2rem !important;
  }

  .ml-xl-13,
.mx-xl-13 {
    margin-left: 5.2rem !important;
  }

  .m-xl-14 {
    margin: 5.6rem !important;
  }

  .mt-xl-14,
.my-xl-14 {
    margin-top: 5.6rem !important;
  }

  .mr-xl-14,
.mx-xl-14 {
    margin-right: 5.6rem !important;
  }

  .mb-xl-14,
.my-xl-14 {
    margin-bottom: 5.6rem !important;
  }

  .ml-xl-14,
.mx-xl-14 {
    margin-left: 5.6rem !important;
  }

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

  .mt-xl-15,
.my-xl-15 {
    margin-top: 6rem !important;
  }

  .mr-xl-15,
.mx-xl-15 {
    margin-right: 6rem !important;
  }

  .mb-xl-15,
.my-xl-15 {
    margin-bottom: 6rem !important;
  }

  .ml-xl-15,
.mx-xl-15 {
    margin-left: 6rem !important;
  }

  .m-xl-16 {
    margin: 6.4rem !important;
  }

  .mt-xl-16,
.my-xl-16 {
    margin-top: 6.4rem !important;
  }

  .mr-xl-16,
.mx-xl-16 {
    margin-right: 6.4rem !important;
  }

  .mb-xl-16,
.my-xl-16 {
    margin-bottom: 6.4rem !important;
  }

  .ml-xl-16,
.mx-xl-16 {
    margin-left: 6.4rem !important;
  }

  .m-xl-17 {
    margin: 6.8rem !important;
  }

  .mt-xl-17,
.my-xl-17 {
    margin-top: 6.8rem !important;
  }

  .mr-xl-17,
.mx-xl-17 {
    margin-right: 6.8rem !important;
  }

  .mb-xl-17,
.my-xl-17 {
    margin-bottom: 6.8rem !important;
  }

  .ml-xl-17,
.mx-xl-17 {
    margin-left: 6.8rem !important;
  }

  .m-xl-18 {
    margin: 7.2rem !important;
  }

  .mt-xl-18,
.my-xl-18 {
    margin-top: 7.2rem !important;
  }

  .mr-xl-18,
.mx-xl-18 {
    margin-right: 7.2rem !important;
  }

  .mb-xl-18,
.my-xl-18 {
    margin-bottom: 7.2rem !important;
  }

  .ml-xl-18,
.mx-xl-18 {
    margin-left: 7.2rem !important;
  }

  .m-xl-19 {
    margin: 7.6rem !important;
  }

  .mt-xl-19,
.my-xl-19 {
    margin-top: 7.6rem !important;
  }

  .mr-xl-19,
.mx-xl-19 {
    margin-right: 7.6rem !important;
  }

  .mb-xl-19,
.my-xl-19 {
    margin-bottom: 7.6rem !important;
  }

  .ml-xl-19,
.mx-xl-19 {
    margin-left: 7.6rem !important;
  }

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

  .mt-xl-20,
.my-xl-20 {
    margin-top: 8rem !important;
  }

  .mr-xl-20,
.mx-xl-20 {
    margin-right: 8rem !important;
  }

  .mb-xl-20,
.my-xl-20 {
    margin-bottom: 8rem !important;
  }

  .ml-xl-20,
.mx-xl-20 {
    margin-left: 8rem !important;
  }

  .m-xl-21 {
    margin: 8.4rem !important;
  }

  .mt-xl-21,
.my-xl-21 {
    margin-top: 8.4rem !important;
  }

  .mr-xl-21,
.mx-xl-21 {
    margin-right: 8.4rem !important;
  }

  .mb-xl-21,
.my-xl-21 {
    margin-bottom: 8.4rem !important;
  }

  .ml-xl-21,
.mx-xl-21 {
    margin-left: 8.4rem !important;
  }

  .m-xl-22 {
    margin: 8.8rem !important;
  }

  .mt-xl-22,
.my-xl-22 {
    margin-top: 8.8rem !important;
  }

  .mr-xl-22,
.mx-xl-22 {
    margin-right: 8.8rem !important;
  }

  .mb-xl-22,
.my-xl-22 {
    margin-bottom: 8.8rem !important;
  }

  .ml-xl-22,
.mx-xl-22 {
    margin-left: 8.8rem !important;
  }

  .m-xl-23 {
    margin: 9.2rem !important;
  }

  .mt-xl-23,
.my-xl-23 {
    margin-top: 9.2rem !important;
  }

  .mr-xl-23,
.mx-xl-23 {
    margin-right: 9.2rem !important;
  }

  .mb-xl-23,
.my-xl-23 {
    margin-bottom: 9.2rem !important;
  }

  .ml-xl-23,
.mx-xl-23 {
    margin-left: 9.2rem !important;
  }

  .m-xl-24 {
    margin: 9.6rem !important;
  }

  .mt-xl-24,
.my-xl-24 {
    margin-top: 9.6rem !important;
  }

  .mr-xl-24,
.mx-xl-24 {
    margin-right: 9.6rem !important;
  }

  .mb-xl-24,
.my-xl-24 {
    margin-bottom: 9.6rem !important;
  }

  .ml-xl-24,
.mx-xl-24 {
    margin-left: 9.6rem !important;
  }

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

  .mt-xl-25,
.my-xl-25 {
    margin-top: 10rem !important;
  }

  .mr-xl-25,
.mx-xl-25 {
    margin-right: 10rem !important;
  }

  .mb-xl-25,
.my-xl-25 {
    margin-bottom: 10rem !important;
  }

  .ml-xl-25,
.mx-xl-25 {
    margin-left: 10rem !important;
  }

  .m-xl-26 {
    margin: 10.4rem !important;
  }

  .mt-xl-26,
.my-xl-26 {
    margin-top: 10.4rem !important;
  }

  .mr-xl-26,
.mx-xl-26 {
    margin-right: 10.4rem !important;
  }

  .mb-xl-26,
.my-xl-26 {
    margin-bottom: 10.4rem !important;
  }

  .ml-xl-26,
.mx-xl-26 {
    margin-left: 10.4rem !important;
  }

  .m-xl-27 {
    margin: 10.8rem !important;
  }

  .mt-xl-27,
.my-xl-27 {
    margin-top: 10.8rem !important;
  }

  .mr-xl-27,
.mx-xl-27 {
    margin-right: 10.8rem !important;
  }

  .mb-xl-27,
.my-xl-27 {
    margin-bottom: 10.8rem !important;
  }

  .ml-xl-27,
.mx-xl-27 {
    margin-left: 10.8rem !important;
  }

  .m-xl-28 {
    margin: 11.2rem !important;
  }

  .mt-xl-28,
.my-xl-28 {
    margin-top: 11.2rem !important;
  }

  .mr-xl-28,
.mx-xl-28 {
    margin-right: 11.2rem !important;
  }

  .mb-xl-28,
.my-xl-28 {
    margin-bottom: 11.2rem !important;
  }

  .ml-xl-28,
.mx-xl-28 {
    margin-left: 11.2rem !important;
  }

  .m-xl-29 {
    margin: 11.6rem !important;
  }

  .mt-xl-29,
.my-xl-29 {
    margin-top: 11.6rem !important;
  }

  .mr-xl-29,
.mx-xl-29 {
    margin-right: 11.6rem !important;
  }

  .mb-xl-29,
.my-xl-29 {
    margin-bottom: 11.6rem !important;
  }

  .ml-xl-29,
.mx-xl-29 {
    margin-left: 11.6rem !important;
  }

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

  .mt-xl-30,
.my-xl-30 {
    margin-top: 12rem !important;
  }

  .mr-xl-30,
.mx-xl-30 {
    margin-right: 12rem !important;
  }

  .mb-xl-30,
.my-xl-30 {
    margin-bottom: 12rem !important;
  }

  .ml-xl-30,
.mx-xl-30 {
    margin-left: 12rem !important;
  }

  .m-xl-31 {
    margin: 12.4rem !important;
  }

  .mt-xl-31,
.my-xl-31 {
    margin-top: 12.4rem !important;
  }

  .mr-xl-31,
.mx-xl-31 {
    margin-right: 12.4rem !important;
  }

  .mb-xl-31,
.my-xl-31 {
    margin-bottom: 12.4rem !important;
  }

  .ml-xl-31,
.mx-xl-31 {
    margin-left: 12.4rem !important;
  }

  .m-xl-32 {
    margin: 12.8rem !important;
  }

  .mt-xl-32,
.my-xl-32 {
    margin-top: 12.8rem !important;
  }

  .mr-xl-32,
.mx-xl-32 {
    margin-right: 12.8rem !important;
  }

  .mb-xl-32,
.my-xl-32 {
    margin-bottom: 12.8rem !important;
  }

  .ml-xl-32,
.mx-xl-32 {
    margin-left: 12.8rem !important;
  }

  .m-xl-33 {
    margin: 13.2rem !important;
  }

  .mt-xl-33,
.my-xl-33 {
    margin-top: 13.2rem !important;
  }

  .mr-xl-33,
.mx-xl-33 {
    margin-right: 13.2rem !important;
  }

  .mb-xl-33,
.my-xl-33 {
    margin-bottom: 13.2rem !important;
  }

  .ml-xl-33,
.mx-xl-33 {
    margin-left: 13.2rem !important;
  }

  .m-xl-34 {
    margin: 13.6rem !important;
  }

  .mt-xl-34,
.my-xl-34 {
    margin-top: 13.6rem !important;
  }

  .mr-xl-34,
.mx-xl-34 {
    margin-right: 13.6rem !important;
  }

  .mb-xl-34,
.my-xl-34 {
    margin-bottom: 13.6rem !important;
  }

  .ml-xl-34,
.mx-xl-34 {
    margin-left: 13.6rem !important;
  }

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

  .mt-xl-35,
.my-xl-35 {
    margin-top: 14rem !important;
  }

  .mr-xl-35,
.mx-xl-35 {
    margin-right: 14rem !important;
  }

  .mb-xl-35,
.my-xl-35 {
    margin-bottom: 14rem !important;
  }

  .ml-xl-35,
.mx-xl-35 {
    margin-left: 14rem !important;
  }

  .m-xl-36 {
    margin: 14.4rem !important;
  }

  .mt-xl-36,
.my-xl-36 {
    margin-top: 14.4rem !important;
  }

  .mr-xl-36,
.mx-xl-36 {
    margin-right: 14.4rem !important;
  }

  .mb-xl-36,
.my-xl-36 {
    margin-bottom: 14.4rem !important;
  }

  .ml-xl-36,
.mx-xl-36 {
    margin-left: 14.4rem !important;
  }

  .m-xl-37 {
    margin: 14.8rem !important;
  }

  .mt-xl-37,
.my-xl-37 {
    margin-top: 14.8rem !important;
  }

  .mr-xl-37,
.mx-xl-37 {
    margin-right: 14.8rem !important;
  }

  .mb-xl-37,
.my-xl-37 {
    margin-bottom: 14.8rem !important;
  }

  .ml-xl-37,
.mx-xl-37 {
    margin-left: 14.8rem !important;
  }

  .m-xl-38 {
    margin: 15.2rem !important;
  }

  .mt-xl-38,
.my-xl-38 {
    margin-top: 15.2rem !important;
  }

  .mr-xl-38,
.mx-xl-38 {
    margin-right: 15.2rem !important;
  }

  .mb-xl-38,
.my-xl-38 {
    margin-bottom: 15.2rem !important;
  }

  .ml-xl-38,
.mx-xl-38 {
    margin-left: 15.2rem !important;
  }

  .m-xl-39 {
    margin: 15.6rem !important;
  }

  .mt-xl-39,
.my-xl-39 {
    margin-top: 15.6rem !important;
  }

  .mr-xl-39,
.mx-xl-39 {
    margin-right: 15.6rem !important;
  }

  .mb-xl-39,
.my-xl-39 {
    margin-bottom: 15.6rem !important;
  }

  .ml-xl-39,
.mx-xl-39 {
    margin-left: 15.6rem !important;
  }

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

  .mt-xl-40,
.my-xl-40 {
    margin-top: 16rem !important;
  }

  .mr-xl-40,
.mx-xl-40 {
    margin-right: 16rem !important;
  }

  .mb-xl-40,
.my-xl-40 {
    margin-bottom: 16rem !important;
  }

  .ml-xl-40,
.mx-xl-40 {
    margin-left: 16rem !important;
  }

  .m-xl-41 {
    margin: 16.4rem !important;
  }

  .mt-xl-41,
.my-xl-41 {
    margin-top: 16.4rem !important;
  }

  .mr-xl-41,
.mx-xl-41 {
    margin-right: 16.4rem !important;
  }

  .mb-xl-41,
.my-xl-41 {
    margin-bottom: 16.4rem !important;
  }

  .ml-xl-41,
.mx-xl-41 {
    margin-left: 16.4rem !important;
  }

  .m-xl-42 {
    margin: 16.8rem !important;
  }

  .mt-xl-42,
.my-xl-42 {
    margin-top: 16.8rem !important;
  }

  .mr-xl-42,
.mx-xl-42 {
    margin-right: 16.8rem !important;
  }

  .mb-xl-42,
.my-xl-42 {
    margin-bottom: 16.8rem !important;
  }

  .ml-xl-42,
.mx-xl-42 {
    margin-left: 16.8rem !important;
  }

  .m-xl-43 {
    margin: 17.2rem !important;
  }

  .mt-xl-43,
.my-xl-43 {
    margin-top: 17.2rem !important;
  }

  .mr-xl-43,
.mx-xl-43 {
    margin-right: 17.2rem !important;
  }

  .mb-xl-43,
.my-xl-43 {
    margin-bottom: 17.2rem !important;
  }

  .ml-xl-43,
.mx-xl-43 {
    margin-left: 17.2rem !important;
  }

  .m-xl-44 {
    margin: 17.6rem !important;
  }

  .mt-xl-44,
.my-xl-44 {
    margin-top: 17.6rem !important;
  }

  .mr-xl-44,
.mx-xl-44 {
    margin-right: 17.6rem !important;
  }

  .mb-xl-44,
.my-xl-44 {
    margin-bottom: 17.6rem !important;
  }

  .ml-xl-44,
.mx-xl-44 {
    margin-left: 17.6rem !important;
  }

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

  .mt-xl-45,
.my-xl-45 {
    margin-top: 18rem !important;
  }

  .mr-xl-45,
.mx-xl-45 {
    margin-right: 18rem !important;
  }

  .mb-xl-45,
.my-xl-45 {
    margin-bottom: 18rem !important;
  }

  .ml-xl-45,
.mx-xl-45 {
    margin-left: 18rem !important;
  }

  .m-xl-46 {
    margin: 18.4rem !important;
  }

  .mt-xl-46,
.my-xl-46 {
    margin-top: 18.4rem !important;
  }

  .mr-xl-46,
.mx-xl-46 {
    margin-right: 18.4rem !important;
  }

  .mb-xl-46,
.my-xl-46 {
    margin-bottom: 18.4rem !important;
  }

  .ml-xl-46,
.mx-xl-46 {
    margin-left: 18.4rem !important;
  }

  .m-xl-47 {
    margin: 18.8rem !important;
  }

  .mt-xl-47,
.my-xl-47 {
    margin-top: 18.8rem !important;
  }

  .mr-xl-47,
.mx-xl-47 {
    margin-right: 18.8rem !important;
  }

  .mb-xl-47,
.my-xl-47 {
    margin-bottom: 18.8rem !important;
  }

  .ml-xl-47,
.mx-xl-47 {
    margin-left: 18.8rem !important;
  }

  .m-xl-48 {
    margin: 19.2rem !important;
  }

  .mt-xl-48,
.my-xl-48 {
    margin-top: 19.2rem !important;
  }

  .mr-xl-48,
.mx-xl-48 {
    margin-right: 19.2rem !important;
  }

  .mb-xl-48,
.my-xl-48 {
    margin-bottom: 19.2rem !important;
  }

  .ml-xl-48,
.mx-xl-48 {
    margin-left: 19.2rem !important;
  }

  .m-xl-49 {
    margin: 19.6rem !important;
  }

  .mt-xl-49,
.my-xl-49 {
    margin-top: 19.6rem !important;
  }

  .mr-xl-49,
.mx-xl-49 {
    margin-right: 19.6rem !important;
  }

  .mb-xl-49,
.my-xl-49 {
    margin-bottom: 19.6rem !important;
  }

  .ml-xl-49,
.mx-xl-49 {
    margin-left: 19.6rem !important;
  }

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

  .mt-xl-50,
.my-xl-50 {
    margin-top: 20rem !important;
  }

  .mr-xl-50,
.mx-xl-50 {
    margin-right: 20rem !important;
  }

  .mb-xl-50,
.my-xl-50 {
    margin-bottom: 20rem !important;
  }

  .ml-xl-50,
.mx-xl-50 {
    margin-left: 20rem !important;
  }

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

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

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

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

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

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

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.4rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.4rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.4rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.4rem !important;
  }

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

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.8rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.8rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.8rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.8rem !important;
  }

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

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1.2rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1.2rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1.2rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1.2rem !important;
  }

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

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.6rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.6rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.6rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.6rem !important;
  }

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

  .pt-xl-5,
.py-xl-5 {
    padding-top: 2rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 2rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 2rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 2rem !important;
  }

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

  .pt-xl-6,
.py-xl-6 {
    padding-top: 2.4rem !important;
  }

  .pr-xl-6,
.px-xl-6 {
    padding-right: 2.4rem !important;
  }

  .pb-xl-6,
.py-xl-6 {
    padding-bottom: 2.4rem !important;
  }

  .pl-xl-6,
.px-xl-6 {
    padding-left: 2.4rem !important;
  }

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

  .pt-xl-7,
.py-xl-7 {
    padding-top: 2.8rem !important;
  }

  .pr-xl-7,
.px-xl-7 {
    padding-right: 2.8rem !important;
  }

  .pb-xl-7,
.py-xl-7 {
    padding-bottom: 2.8rem !important;
  }

  .pl-xl-7,
.px-xl-7 {
    padding-left: 2.8rem !important;
  }

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

  .pt-xl-8,
.py-xl-8 {
    padding-top: 3.2rem !important;
  }

  .pr-xl-8,
.px-xl-8 {
    padding-right: 3.2rem !important;
  }

  .pb-xl-8,
.py-xl-8 {
    padding-bottom: 3.2rem !important;
  }

  .pl-xl-8,
.px-xl-8 {
    padding-left: 3.2rem !important;
  }

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

  .pt-xl-9,
.py-xl-9 {
    padding-top: 3.6rem !important;
  }

  .pr-xl-9,
.px-xl-9 {
    padding-right: 3.6rem !important;
  }

  .pb-xl-9,
.py-xl-9 {
    padding-bottom: 3.6rem !important;
  }

  .pl-xl-9,
.px-xl-9 {
    padding-left: 3.6rem !important;
  }

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

  .pt-xl-10,
.py-xl-10 {
    padding-top: 4rem !important;
  }

  .pr-xl-10,
.px-xl-10 {
    padding-right: 4rem !important;
  }

  .pb-xl-10,
.py-xl-10 {
    padding-bottom: 4rem !important;
  }

  .pl-xl-10,
.px-xl-10 {
    padding-left: 4rem !important;
  }

  .p-xl-11 {
    padding: 4.4rem !important;
  }

  .pt-xl-11,
.py-xl-11 {
    padding-top: 4.4rem !important;
  }

  .pr-xl-11,
.px-xl-11 {
    padding-right: 4.4rem !important;
  }

  .pb-xl-11,
.py-xl-11 {
    padding-bottom: 4.4rem !important;
  }

  .pl-xl-11,
.px-xl-11 {
    padding-left: 4.4rem !important;
  }

  .p-xl-12 {
    padding: 4.8rem !important;
  }

  .pt-xl-12,
.py-xl-12 {
    padding-top: 4.8rem !important;
  }

  .pr-xl-12,
.px-xl-12 {
    padding-right: 4.8rem !important;
  }

  .pb-xl-12,
.py-xl-12 {
    padding-bottom: 4.8rem !important;
  }

  .pl-xl-12,
.px-xl-12 {
    padding-left: 4.8rem !important;
  }

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

  .pt-xl-13,
.py-xl-13 {
    padding-top: 5.2rem !important;
  }

  .pr-xl-13,
.px-xl-13 {
    padding-right: 5.2rem !important;
  }

  .pb-xl-13,
.py-xl-13 {
    padding-bottom: 5.2rem !important;
  }

  .pl-xl-13,
.px-xl-13 {
    padding-left: 5.2rem !important;
  }

  .p-xl-14 {
    padding: 5.6rem !important;
  }

  .pt-xl-14,
.py-xl-14 {
    padding-top: 5.6rem !important;
  }

  .pr-xl-14,
.px-xl-14 {
    padding-right: 5.6rem !important;
  }

  .pb-xl-14,
.py-xl-14 {
    padding-bottom: 5.6rem !important;
  }

  .pl-xl-14,
.px-xl-14 {
    padding-left: 5.6rem !important;
  }

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

  .pt-xl-15,
.py-xl-15 {
    padding-top: 6rem !important;
  }

  .pr-xl-15,
.px-xl-15 {
    padding-right: 6rem !important;
  }

  .pb-xl-15,
.py-xl-15 {
    padding-bottom: 6rem !important;
  }

  .pl-xl-15,
.px-xl-15 {
    padding-left: 6rem !important;
  }

  .p-xl-16 {
    padding: 6.4rem !important;
  }

  .pt-xl-16,
.py-xl-16 {
    padding-top: 6.4rem !important;
  }

  .pr-xl-16,
.px-xl-16 {
    padding-right: 6.4rem !important;
  }

  .pb-xl-16,
.py-xl-16 {
    padding-bottom: 6.4rem !important;
  }

  .pl-xl-16,
.px-xl-16 {
    padding-left: 6.4rem !important;
  }

  .p-xl-17 {
    padding: 6.8rem !important;
  }

  .pt-xl-17,
.py-xl-17 {
    padding-top: 6.8rem !important;
  }

  .pr-xl-17,
.px-xl-17 {
    padding-right: 6.8rem !important;
  }

  .pb-xl-17,
.py-xl-17 {
    padding-bottom: 6.8rem !important;
  }

  .pl-xl-17,
.px-xl-17 {
    padding-left: 6.8rem !important;
  }

  .p-xl-18 {
    padding: 7.2rem !important;
  }

  .pt-xl-18,
.py-xl-18 {
    padding-top: 7.2rem !important;
  }

  .pr-xl-18,
.px-xl-18 {
    padding-right: 7.2rem !important;
  }

  .pb-xl-18,
.py-xl-18 {
    padding-bottom: 7.2rem !important;
  }

  .pl-xl-18,
.px-xl-18 {
    padding-left: 7.2rem !important;
  }

  .p-xl-19 {
    padding: 7.6rem !important;
  }

  .pt-xl-19,
.py-xl-19 {
    padding-top: 7.6rem !important;
  }

  .pr-xl-19,
.px-xl-19 {
    padding-right: 7.6rem !important;
  }

  .pb-xl-19,
.py-xl-19 {
    padding-bottom: 7.6rem !important;
  }

  .pl-xl-19,
.px-xl-19 {
    padding-left: 7.6rem !important;
  }

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

  .pt-xl-20,
.py-xl-20 {
    padding-top: 8rem !important;
  }

  .pr-xl-20,
.px-xl-20 {
    padding-right: 8rem !important;
  }

  .pb-xl-20,
.py-xl-20 {
    padding-bottom: 8rem !important;
  }

  .pl-xl-20,
.px-xl-20 {
    padding-left: 8rem !important;
  }

  .p-xl-21 {
    padding: 8.4rem !important;
  }

  .pt-xl-21,
.py-xl-21 {
    padding-top: 8.4rem !important;
  }

  .pr-xl-21,
.px-xl-21 {
    padding-right: 8.4rem !important;
  }

  .pb-xl-21,
.py-xl-21 {
    padding-bottom: 8.4rem !important;
  }

  .pl-xl-21,
.px-xl-21 {
    padding-left: 8.4rem !important;
  }

  .p-xl-22 {
    padding: 8.8rem !important;
  }

  .pt-xl-22,
.py-xl-22 {
    padding-top: 8.8rem !important;
  }

  .pr-xl-22,
.px-xl-22 {
    padding-right: 8.8rem !important;
  }

  .pb-xl-22,
.py-xl-22 {
    padding-bottom: 8.8rem !important;
  }

  .pl-xl-22,
.px-xl-22 {
    padding-left: 8.8rem !important;
  }

  .p-xl-23 {
    padding: 9.2rem !important;
  }

  .pt-xl-23,
.py-xl-23 {
    padding-top: 9.2rem !important;
  }

  .pr-xl-23,
.px-xl-23 {
    padding-right: 9.2rem !important;
  }

  .pb-xl-23,
.py-xl-23 {
    padding-bottom: 9.2rem !important;
  }

  .pl-xl-23,
.px-xl-23 {
    padding-left: 9.2rem !important;
  }

  .p-xl-24 {
    padding: 9.6rem !important;
  }

  .pt-xl-24,
.py-xl-24 {
    padding-top: 9.6rem !important;
  }

  .pr-xl-24,
.px-xl-24 {
    padding-right: 9.6rem !important;
  }

  .pb-xl-24,
.py-xl-24 {
    padding-bottom: 9.6rem !important;
  }

  .pl-xl-24,
.px-xl-24 {
    padding-left: 9.6rem !important;
  }

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

  .pt-xl-25,
.py-xl-25 {
    padding-top: 10rem !important;
  }

  .pr-xl-25,
.px-xl-25 {
    padding-right: 10rem !important;
  }

  .pb-xl-25,
.py-xl-25 {
    padding-bottom: 10rem !important;
  }

  .pl-xl-25,
.px-xl-25 {
    padding-left: 10rem !important;
  }

  .p-xl-26 {
    padding: 10.4rem !important;
  }

  .pt-xl-26,
.py-xl-26 {
    padding-top: 10.4rem !important;
  }

  .pr-xl-26,
.px-xl-26 {
    padding-right: 10.4rem !important;
  }

  .pb-xl-26,
.py-xl-26 {
    padding-bottom: 10.4rem !important;
  }

  .pl-xl-26,
.px-xl-26 {
    padding-left: 10.4rem !important;
  }

  .p-xl-27 {
    padding: 10.8rem !important;
  }

  .pt-xl-27,
.py-xl-27 {
    padding-top: 10.8rem !important;
  }

  .pr-xl-27,
.px-xl-27 {
    padding-right: 10.8rem !important;
  }

  .pb-xl-27,
.py-xl-27 {
    padding-bottom: 10.8rem !important;
  }

  .pl-xl-27,
.px-xl-27 {
    padding-left: 10.8rem !important;
  }

  .p-xl-28 {
    padding: 11.2rem !important;
  }

  .pt-xl-28,
.py-xl-28 {
    padding-top: 11.2rem !important;
  }

  .pr-xl-28,
.px-xl-28 {
    padding-right: 11.2rem !important;
  }

  .pb-xl-28,
.py-xl-28 {
    padding-bottom: 11.2rem !important;
  }

  .pl-xl-28,
.px-xl-28 {
    padding-left: 11.2rem !important;
  }

  .p-xl-29 {
    padding: 11.6rem !important;
  }

  .pt-xl-29,
.py-xl-29 {
    padding-top: 11.6rem !important;
  }

  .pr-xl-29,
.px-xl-29 {
    padding-right: 11.6rem !important;
  }

  .pb-xl-29,
.py-xl-29 {
    padding-bottom: 11.6rem !important;
  }

  .pl-xl-29,
.px-xl-29 {
    padding-left: 11.6rem !important;
  }

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

  .pt-xl-30,
.py-xl-30 {
    padding-top: 12rem !important;
  }

  .pr-xl-30,
.px-xl-30 {
    padding-right: 12rem !important;
  }

  .pb-xl-30,
.py-xl-30 {
    padding-bottom: 12rem !important;
  }

  .pl-xl-30,
.px-xl-30 {
    padding-left: 12rem !important;
  }

  .p-xl-31 {
    padding: 12.4rem !important;
  }

  .pt-xl-31,
.py-xl-31 {
    padding-top: 12.4rem !important;
  }

  .pr-xl-31,
.px-xl-31 {
    padding-right: 12.4rem !important;
  }

  .pb-xl-31,
.py-xl-31 {
    padding-bottom: 12.4rem !important;
  }

  .pl-xl-31,
.px-xl-31 {
    padding-left: 12.4rem !important;
  }

  .p-xl-32 {
    padding: 12.8rem !important;
  }

  .pt-xl-32,
.py-xl-32 {
    padding-top: 12.8rem !important;
  }

  .pr-xl-32,
.px-xl-32 {
    padding-right: 12.8rem !important;
  }

  .pb-xl-32,
.py-xl-32 {
    padding-bottom: 12.8rem !important;
  }

  .pl-xl-32,
.px-xl-32 {
    padding-left: 12.8rem !important;
  }

  .p-xl-33 {
    padding: 13.2rem !important;
  }

  .pt-xl-33,
.py-xl-33 {
    padding-top: 13.2rem !important;
  }

  .pr-xl-33,
.px-xl-33 {
    padding-right: 13.2rem !important;
  }

  .pb-xl-33,
.py-xl-33 {
    padding-bottom: 13.2rem !important;
  }

  .pl-xl-33,
.px-xl-33 {
    padding-left: 13.2rem !important;
  }

  .p-xl-34 {
    padding: 13.6rem !important;
  }

  .pt-xl-34,
.py-xl-34 {
    padding-top: 13.6rem !important;
  }

  .pr-xl-34,
.px-xl-34 {
    padding-right: 13.6rem !important;
  }

  .pb-xl-34,
.py-xl-34 {
    padding-bottom: 13.6rem !important;
  }

  .pl-xl-34,
.px-xl-34 {
    padding-left: 13.6rem !important;
  }

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

  .pt-xl-35,
.py-xl-35 {
    padding-top: 14rem !important;
  }

  .pr-xl-35,
.px-xl-35 {
    padding-right: 14rem !important;
  }

  .pb-xl-35,
.py-xl-35 {
    padding-bottom: 14rem !important;
  }

  .pl-xl-35,
.px-xl-35 {
    padding-left: 14rem !important;
  }

  .p-xl-36 {
    padding: 14.4rem !important;
  }

  .pt-xl-36,
.py-xl-36 {
    padding-top: 14.4rem !important;
  }

  .pr-xl-36,
.px-xl-36 {
    padding-right: 14.4rem !important;
  }

  .pb-xl-36,
.py-xl-36 {
    padding-bottom: 14.4rem !important;
  }

  .pl-xl-36,
.px-xl-36 {
    padding-left: 14.4rem !important;
  }

  .p-xl-37 {
    padding: 14.8rem !important;
  }

  .pt-xl-37,
.py-xl-37 {
    padding-top: 14.8rem !important;
  }

  .pr-xl-37,
.px-xl-37 {
    padding-right: 14.8rem !important;
  }

  .pb-xl-37,
.py-xl-37 {
    padding-bottom: 14.8rem !important;
  }

  .pl-xl-37,
.px-xl-37 {
    padding-left: 14.8rem !important;
  }

  .p-xl-38 {
    padding: 15.2rem !important;
  }

  .pt-xl-38,
.py-xl-38 {
    padding-top: 15.2rem !important;
  }

  .pr-xl-38,
.px-xl-38 {
    padding-right: 15.2rem !important;
  }

  .pb-xl-38,
.py-xl-38 {
    padding-bottom: 15.2rem !important;
  }

  .pl-xl-38,
.px-xl-38 {
    padding-left: 15.2rem !important;
  }

  .p-xl-39 {
    padding: 15.6rem !important;
  }

  .pt-xl-39,
.py-xl-39 {
    padding-top: 15.6rem !important;
  }

  .pr-xl-39,
.px-xl-39 {
    padding-right: 15.6rem !important;
  }

  .pb-xl-39,
.py-xl-39 {
    padding-bottom: 15.6rem !important;
  }

  .pl-xl-39,
.px-xl-39 {
    padding-left: 15.6rem !important;
  }

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

  .pt-xl-40,
.py-xl-40 {
    padding-top: 16rem !important;
  }

  .pr-xl-40,
.px-xl-40 {
    padding-right: 16rem !important;
  }

  .pb-xl-40,
.py-xl-40 {
    padding-bottom: 16rem !important;
  }

  .pl-xl-40,
.px-xl-40 {
    padding-left: 16rem !important;
  }

  .p-xl-41 {
    padding: 16.4rem !important;
  }

  .pt-xl-41,
.py-xl-41 {
    padding-top: 16.4rem !important;
  }

  .pr-xl-41,
.px-xl-41 {
    padding-right: 16.4rem !important;
  }

  .pb-xl-41,
.py-xl-41 {
    padding-bottom: 16.4rem !important;
  }

  .pl-xl-41,
.px-xl-41 {
    padding-left: 16.4rem !important;
  }

  .p-xl-42 {
    padding: 16.8rem !important;
  }

  .pt-xl-42,
.py-xl-42 {
    padding-top: 16.8rem !important;
  }

  .pr-xl-42,
.px-xl-42 {
    padding-right: 16.8rem !important;
  }

  .pb-xl-42,
.py-xl-42 {
    padding-bottom: 16.8rem !important;
  }

  .pl-xl-42,
.px-xl-42 {
    padding-left: 16.8rem !important;
  }

  .p-xl-43 {
    padding: 17.2rem !important;
  }

  .pt-xl-43,
.py-xl-43 {
    padding-top: 17.2rem !important;
  }

  .pr-xl-43,
.px-xl-43 {
    padding-right: 17.2rem !important;
  }

  .pb-xl-43,
.py-xl-43 {
    padding-bottom: 17.2rem !important;
  }

  .pl-xl-43,
.px-xl-43 {
    padding-left: 17.2rem !important;
  }

  .p-xl-44 {
    padding: 17.6rem !important;
  }

  .pt-xl-44,
.py-xl-44 {
    padding-top: 17.6rem !important;
  }

  .pr-xl-44,
.px-xl-44 {
    padding-right: 17.6rem !important;
  }

  .pb-xl-44,
.py-xl-44 {
    padding-bottom: 17.6rem !important;
  }

  .pl-xl-44,
.px-xl-44 {
    padding-left: 17.6rem !important;
  }

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

  .pt-xl-45,
.py-xl-45 {
    padding-top: 18rem !important;
  }

  .pr-xl-45,
.px-xl-45 {
    padding-right: 18rem !important;
  }

  .pb-xl-45,
.py-xl-45 {
    padding-bottom: 18rem !important;
  }

  .pl-xl-45,
.px-xl-45 {
    padding-left: 18rem !important;
  }

  .p-xl-46 {
    padding: 18.4rem !important;
  }

  .pt-xl-46,
.py-xl-46 {
    padding-top: 18.4rem !important;
  }

  .pr-xl-46,
.px-xl-46 {
    padding-right: 18.4rem !important;
  }

  .pb-xl-46,
.py-xl-46 {
    padding-bottom: 18.4rem !important;
  }

  .pl-xl-46,
.px-xl-46 {
    padding-left: 18.4rem !important;
  }

  .p-xl-47 {
    padding: 18.8rem !important;
  }

  .pt-xl-47,
.py-xl-47 {
    padding-top: 18.8rem !important;
  }

  .pr-xl-47,
.px-xl-47 {
    padding-right: 18.8rem !important;
  }

  .pb-xl-47,
.py-xl-47 {
    padding-bottom: 18.8rem !important;
  }

  .pl-xl-47,
.px-xl-47 {
    padding-left: 18.8rem !important;
  }

  .p-xl-48 {
    padding: 19.2rem !important;
  }

  .pt-xl-48,
.py-xl-48 {
    padding-top: 19.2rem !important;
  }

  .pr-xl-48,
.px-xl-48 {
    padding-right: 19.2rem !important;
  }

  .pb-xl-48,
.py-xl-48 {
    padding-bottom: 19.2rem !important;
  }

  .pl-xl-48,
.px-xl-48 {
    padding-left: 19.2rem !important;
  }

  .p-xl-49 {
    padding: 19.6rem !important;
  }

  .pt-xl-49,
.py-xl-49 {
    padding-top: 19.6rem !important;
  }

  .pr-xl-49,
.px-xl-49 {
    padding-right: 19.6rem !important;
  }

  .pb-xl-49,
.py-xl-49 {
    padding-bottom: 19.6rem !important;
  }

  .pl-xl-49,
.px-xl-49 {
    padding-left: 19.6rem !important;
  }

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

  .pt-xl-50,
.py-xl-50 {
    padding-top: 20rem !important;
  }

  .pr-xl-50,
.px-xl-50 {
    padding-right: 20rem !important;
  }

  .pb-xl-50,
.py-xl-50 {
    padding-bottom: 20rem !important;
  }

  .pl-xl-50,
.px-xl-50 {
    padding-left: 20rem !important;
  }

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

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

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

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

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

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

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

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

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

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

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

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

  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

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

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

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

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

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

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

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

.text-primary {
  color: #3C4252 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #262a35 !important;
}

.text-secondary {
  color: #2196F3 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #0c7cd5 !important;
}

.text-success {
  color: #4CAF50 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #3d8b40 !important;
}

.text-info {
  color: #009688 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #00635a !important;
}

.text-warning {
  color: #FF9800 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #cc7a00 !important;
}

.text-danger {
  color: #F44336 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #ea1c0d !important;
}

.text-light {
  color: #F8F9FA !important;
}

a.text-light:hover, a.text-light:focus {
  color: #dae0e5 !important;
}

.text-dark {
  color: #343A40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #1d2124 !important;
}

.text-muted {
  color: rgba(0, 0, 0, 0.38) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

/**
 * Copyright 2016 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * Copyright 2016 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * Copyright 2016 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
.mdc-animation-linear-out-slow-in {
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.mdc-animation-fast-out-slow-in {
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.mdc-animation-fast-out-linear-in {
  animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

/**
 * Copyright 2016 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * Copyright 2016 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * Copyright 2016 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * Copyright 2016 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * The css property used for elevation. In most cases this should not be changed. It is exposed
 * as a variable for abstraction / easy use when needing to reference the property directly, for
 * example in a `will-change` rule.
 */
/**
 * The default duration value for elevation transitions.
 */
/**
 * The default easing value for elevation transitions.
 */
/**
 * Applies the correct css rules to an element to give it the elevation specified by $z-value.
 * The $z-value must be between 0 and 24.
 */
/**
 * Returns a string that can be used as the value for a `transition` property for elevation.
 * Calling this function directly is useful in situations where a component needs to transition
 * more than one property.
 *
 * ```scss
 * .foo {
 *   transition: mdc-elevation-transition-rule(), opacity 100ms ease;
 *   will-change: $mdc-elevation-property, opacity;
 * }
 * ```
 */
/**
 * Applies the correct css rules needed to have an element transition between elevations.
 * This mixin should be applied to elements whose elevation values will change depending on their
 * context (e.g. when active or disabled).
 */
.md-elevation-0 {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2) , 0px 0px 0px 0px rgba(0, 0, 0, 0.14) , 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}

.md-elevation-1 {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2) , 0px 1px 1px 0px rgba(0, 0, 0, 0.14) , 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}

.md-elevation-2 {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2) , 0px 2px 2px 0px rgba(0, 0, 0, 0.14) , 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.md-elevation-3 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2) , 0px 3px 4px 0px rgba(0, 0, 0, 0.14) , 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}

.md-elevation-4 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2) , 0px 4px 5px 0px rgba(0, 0, 0, 0.14) , 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.md-elevation-5 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2) , 0px 5px 8px 0px rgba(0, 0, 0, 0.14) , 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}

.md-elevation-6 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2) , 0px 6px 10px 0px rgba(0, 0, 0, 0.14) , 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}

.md-elevation-7 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2) , 0px 7px 10px 1px rgba(0, 0, 0, 0.14) , 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}

.md-elevation-8 {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2) , 0px 8px 10px 1px rgba(0, 0, 0, 0.14) , 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.md-elevation-9 {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2) , 0px 9px 12px 1px rgba(0, 0, 0, 0.14) , 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}

.md-elevation-10 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2) , 0px 10px 14px 1px rgba(0, 0, 0, 0.14) , 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}

.md-elevation-11 {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2) , 0px 11px 15px 1px rgba(0, 0, 0, 0.14) , 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
}

.md-elevation-12 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2) , 0px 12px 17px 2px rgba(0, 0, 0, 0.14) , 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}

.md-elevation-13 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2) , 0px 13px 19px 2px rgba(0, 0, 0, 0.14) , 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
}

.md-elevation-14 {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2) , 0px 14px 21px 2px rgba(0, 0, 0, 0.14) , 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
}

.md-elevation-15 {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2) , 0px 15px 22px 2px rgba(0, 0, 0, 0.14) , 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
}

.md-elevation-16 {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2) , 0px 16px 24px 2px rgba(0, 0, 0, 0.14) , 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}

.md-elevation-17 {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2) , 0px 17px 26px 2px rgba(0, 0, 0, 0.14) , 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
}

.md-elevation-18 {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2) , 0px 18px 28px 2px rgba(0, 0, 0, 0.14) , 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
}

.md-elevation-19 {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2) , 0px 19px 29px 2px rgba(0, 0, 0, 0.14) , 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
}

.md-elevation-20 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2) , 0px 20px 31px 3px rgba(0, 0, 0, 0.14) , 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
}

.md-elevation-21 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2) , 0px 21px 33px 3px rgba(0, 0, 0, 0.14) , 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
}

.md-elevation-22 {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2) , 0px 22px 35px 3px rgba(0, 0, 0, 0.14) , 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
}

.md-elevation-23 {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2) , 0px 23px 36px 3px rgba(0, 0, 0, 0.14) , 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
}

.md-elevation-24 {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2) , 0px 24px 38px 3px rgba(0, 0, 0, 0.14) , 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}

.mdc-elevation-transition {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow;
}

/* @formatter:off */
/* @formatter:on */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
  float: none;
}

.left-block {
  display: block;
  margin-left: 0;
  margin-right: auto;
}

.right-block {
  display: block;
  margin-left: auto;
  margin-right: 0;
}

.auto-height {
  height: auto;
}

.auto-width {
  width: auto;
}

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

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

.inline-block {
  display: inline-block;
}

.a-align-middle {
  top: 50%;
  transform: translate(0, -50%);
  position: absolute !important;
}

.a-align-middle-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute !important;
  text-align: center;
}

.a-align-middle-right {
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  position: absolute !important;
}

.a-align-middle-left {
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  position: absolute !important;
}

.a-align-top-left {
  top: 0;
  left: 0;
  position: absolute !important;
}

.a-align-top-center {
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  position: absolute !important;
  text-align: center;
}

.a-align-top-right {
  top: 0;
  right: 0;
  position: absolute !important;
}

.a-align-bottom-left {
  bottom: 0;
  left: 0;
  position: absolute !important;
}

.a-align-bottom-center {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  position: absolute !important;
  text-align: center;
}

.a-align-bottom-right {
  bottom: 0;
  right: 0;
  position: absolute !important;
}

.a-align-bottom-left {
  bottom: 0;
  left: 0;
  position: absolute !important;
}

@media (min-width: 576px) {
  .center-block-sm {
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .left-block-sm {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .right-block-sm {
    display: block;
    margin-left: auto;
    margin-right: 0;
  }

  .auto-height-sm {
    height: auto;
  }

  .auto-width-sm {
    width: auto;
  }

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

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

  .inline-block-sm {
    display: inline-block;
  }

  .a-align-sm-middle {
    top: 50%;
    transform: translate(0, -50%);
    position: absolute !important;
  }

  .a-align-sm-middle-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute !important;
    text-align: center;
  }

  .a-align-sm-middle-right {
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    position: absolute !important;
  }

  .a-align-sm-middle-left {
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    position: absolute !important;
  }

  .a-align-sm-top-left {
    top: 0;
    left: 0;
    position: absolute !important;
  }

  .a-align-sm-top-center {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    position: absolute !important;
    text-align: center;
  }

  .a-align-sm-top-right {
    top: 0;
    right: 0;
    position: absolute !important;
  }

  .a-align-sm-bottom-left {
    bottom: 0;
    left: 0;
    position: absolute !important;
  }

  .a-align-sm-bottom-center {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    position: absolute !important;
    text-align: center;
  }

  .a-align-sm-bottom-right {
    bottom: 0;
    right: 0;
    position: absolute !important;
  }

  .a-align-sm-bottom-left {
    bottom: 0;
    left: 0;
    position: absolute !important;
  }
}
@media (min-width: 768px) {
  .center-block-md {
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .left-block-md {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .right-block-md {
    display: block;
    margin-left: auto;
    margin-right: 0;
  }

  .auto-height-md {
    height: auto;
  }

  .auto-width-md {
    width: auto;
  }

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

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

  .inline-block-md {
    display: inline-block;
  }

  .a-align-md-middle {
    top: 50%;
    transform: translate(0, -50%);
    position: absolute !important;
  }

  .a-align-md-middle-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute !important;
    text-align: center;
  }

  .a-align-md-middle-right {
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    position: absolute !important;
  }

  .a-align-md-middle-left {
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    position: absolute !important;
  }

  .a-align-md-top-left {
    top: 0;
    left: 0;
    position: absolute !important;
  }

  .a-align-md-top-center {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    position: absolute !important;
    text-align: center;
  }

  .a-align-md-top-right {
    top: 0;
    right: 0;
    position: absolute !important;
  }

  .a-align-md-bottom-left {
    bottom: 0;
    left: 0;
    position: absolute !important;
  }

  .a-align-md-bottom-center {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    position: absolute !important;
    text-align: center;
  }

  .a-align-md-bottom-right {
    bottom: 0;
    right: 0;
    position: absolute !important;
  }

  .a-align-md-bottom-left {
    bottom: 0;
    left: 0;
    position: absolute !important;
  }
}
@media (min-width: 992px) {
  .center-block-lg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .left-block-lg {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .right-block-lg {
    display: block;
    margin-left: auto;
    margin-right: 0;
  }

  .auto-height-lg {
    height: auto;
  }

  .auto-width-lg {
    width: auto;
  }

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

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

  .inline-block-lg {
    display: inline-block;
  }

  .a-align-lg-middle {
    top: 50%;
    transform: translate(0, -50%);
    position: absolute !important;
  }

  .a-align-lg-middle-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute !important;
    text-align: center;
  }

  .a-align-lg-middle-right {
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    position: absolute !important;
  }

  .a-align-lg-middle-left {
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    position: absolute !important;
  }

  .a-align-lg-top-left {
    top: 0;
    left: 0;
    position: absolute !important;
  }

  .a-align-lg-top-center {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    position: absolute !important;
    text-align: center;
  }

  .a-align-lg-top-right {
    top: 0;
    right: 0;
    position: absolute !important;
  }

  .a-align-lg-bottom-left {
    bottom: 0;
    left: 0;
    position: absolute !important;
  }

  .a-align-lg-bottom-center {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    position: absolute !important;
    text-align: center;
  }

  .a-align-lg-bottom-right {
    bottom: 0;
    right: 0;
    position: absolute !important;
  }

  .a-align-lg-bottom-left {
    bottom: 0;
    left: 0;
    position: absolute !important;
  }
}
@media (min-width: 1200px) {
  .center-block-xl {
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .left-block-xl {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .right-block-xl {
    display: block;
    margin-left: auto;
    margin-right: 0;
  }

  .auto-height-xl {
    height: auto;
  }

  .auto-width-xl {
    width: auto;
  }

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

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

  .inline-block-xl {
    display: inline-block;
  }

  .a-align-xl-middle {
    top: 50%;
    transform: translate(0, -50%);
    position: absolute !important;
  }

  .a-align-xl-middle-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute !important;
    text-align: center;
  }

  .a-align-xl-middle-right {
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    position: absolute !important;
  }

  .a-align-xl-middle-left {
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    position: absolute !important;
  }

  .a-align-xl-top-left {
    top: 0;
    left: 0;
    position: absolute !important;
  }

  .a-align-xl-top-center {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    position: absolute !important;
    text-align: center;
  }

  .a-align-xl-top-right {
    top: 0;
    right: 0;
    position: absolute !important;
  }

  .a-align-xl-bottom-left {
    bottom: 0;
    left: 0;
    position: absolute !important;
  }

  .a-align-xl-bottom-center {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    position: absolute !important;
    text-align: center;
  }

  .a-align-xl-bottom-right {
    bottom: 0;
    right: 0;
    position: absolute !important;
  }

  .a-align-xl-bottom-left {
    bottom: 0;
    left: 0;
    position: absolute !important;
  }
}
html {
  font-size: 62.5%;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-flow: column nowrap;
  min-height: 100%;
  /* fix IE11 */
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

body {
  display: flex;
  flex-flow: column nowrap;
  min-height: 100%;
  /* fix IE11 */
}

body {
  background-color: whitesmoke;
}

.page-content {
  padding: 1.8rem !important;
}

@media only screen and (max-width: 1000px) {
  .page-content {
    padding: 0.8rem !important;
  }
}
table ol,
table ul {
  padding: 0px !important;
  list-style-position: outside !important;
  list-style-type: none !important;
}

html,
body,
body > main {
  overflow: hidden !important;
  width: 100%;
  height: 100%;
  position: relative;
}

@media only screen and (max-width: 1000px) {
  html,
body,
body > main {
    overflow: hidden !important;
    width: 100%;
    height: 100%;
    position: initial;
  }
}
.layout #wrapper > .aside {
  z-index: 1000;
}
.layout #wrapper > .aside > .aside-content {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2) , 0px 4px 5px 0px rgba(0, 0, 0, 0.14) , 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  width: 23.6rem;
  min-width: 23.6rem;
  height: 100%;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}
.layout #wrapper > .aside > .aside-content > .aside-toolbar {
  display: flex;
  padding-left: 2.4rem;
  padding-right: 1.6rem;
  justify-content: space-between;
  align-items: center;
  height: 6.4rem;
  min-height: 6.4rem;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2) , 0px 1px 1px 0px rgba(0, 0, 0, 0.14) , 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.layout #wrapper > .aside > .aside-content > .aside-toolbar .logo {
  display: flex;
  align-items: center;
}
.layout #wrapper > .aside > .aside-content > .aside-toolbar .logo .logo-icon {
  display: block;
  background: #039BE5;
  width: 32px;
  min-width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
  border-radius: 2px;
}
.layout #wrapper > .aside > .aside-content > .aside-toolbar .logo .logo-text {
  margin-left: 16px;
  font-size: 1.6rem;
}
.layout #wrapper > .aside > .aside-content > #sidenav {
  overflow-x: hidden;
  overflow-y: auto;
  flex-wrap: nowrap;
}
.layout #wrapper > .aside > .aside-content > #sidenav .subheader {
  white-space: nowrap;
}
.layout #wrapper > .aside > .aside-content > #sidenav .nav-link {
  color: inherit;
}
.layout #wrapper > .aside > .aside-content > #sidenav .nav-link.active {
  background-color: #2196F3;
  color: white;
}
.layout #wrapper > .aside > .aside-content > #sidenav .nav-link.active > i {
  color: white;
}
.layout #wrapper > .aside > .aside-content > #sidenav .nav-link > span {
  white-space: nowrap;
}
.layout #wrapper .quick-panel-sidebar {
  z-index: 1050;
  width: 320px;
}
.layout #wrapper .fuse-bar-backdrop-quick-panel-sidebar {
  z-index: 1049;
}

#toolbar {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2) , 0px 1px 1px 0px rgba(0, 0, 0, 0.14) , 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: 6.4rem;
  min-height: 6.4rem;
  transition: left 300ms ease, right 300ms ease;
  position: relative;
}
#toolbar .toolbar-separator {
  height: 6.4rem;
  width: 1px;
  background: rgba(0, 0, 0, 0.12);
}
#toolbar .shortcuts-wrapper .add-shortcut-menu-button > .dropdown-toggle:after {
  display: none;
}
#toolbar .user-menu-button > .dropdown-toggle {
  height: 6.4rem;
  position: relative;
  cursor: pointer;
}
#toolbar .user-menu-button > .dropdown-toggle .avatar-wrapper {
  position: relative;
}
#toolbar .user-menu-button > .dropdown-toggle .avatar-wrapper .status {
  position: absolute;
  bottom: -0.4rem;
  right: -0.4rem;
}
#toolbar .toggle-aside-button,
#toolbar .search-button,
#toolbar .quick-panel-button {
  height: 6.4rem;
  width: 6.4rem;
}
@media (max-width: 575.98px) {
  #toolbar .toggle-aside-button,
#toolbar .search-button,
#toolbar .quick-panel-button {
    width: 4.8rem;
    height: 4.8rem;
  }
}
#toolbar .language-button > .dropdown-toggle {
  cursor: pointer;
  height: 6.4rem;
}
@media (max-width: 575.98px) {
  #toolbar .language-button > .dropdown-toggle {
    width: 4.8rem;
    height: 4.8rem;
  }
}

@media only screen and (max-width: 1000px) {
  #toolbar {
    position: fixed !important;
    top: 0;
  }
}
#footer {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2) , 0px 1px 1px 0px rgba(0, 0, 0, 0.14) , 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: 6.4rem;
  min-height: 6.4rem;
  transition: left 300ms ease, right 300ms ease;
  position: relative;
}

.layout.layout-vertical > main {
  display: flex;
  flex-direction: column;
}
.layout.layout-vertical > main #wrapper {
  display: flex;
  flex: 1 1 auto;
  min-height: auto;
  position: relative;
  overflow: hidden;
}
.layout.layout-vertical > main #wrapper > aside {
  z-index: 1021;
}
.layout.layout-vertical > main #wrapper > .content-wrapper {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  width: 100%;
  flex: 1;
  overflow: hidden;
  z-index: 1019;
}
.layout.layout-vertical > main #wrapper > .content-wrapper > .content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  position: relative;
}
.layout.layout-vertical > main #toolbar,
.layout.layout-vertical > main #footer {
  z-index: 1021;
  border-top: 1px solid #ccc;
}
.layout.layout-vertical.fuse-aside-folded.layout-left-navigation #wrapper {
  padding-left: 6.4rem;
}
.layout.layout-vertical.fuse-aside-folded.layout-right-navigation #wrapper {
  padding-right: 6.4rem;
}
.layout.layout-vertical.fuse-aside-folded #wrapper > aside {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
}
.layout.layout-vertical.fuse-aside-folded #wrapper > aside.aside-left {
  left: 0;
}
.layout.layout-vertical.fuse-aside-folded #wrapper > aside.aside-right {
  right: 0;
}

/* ------------------------------------- Staffing ----------------------------------------------- */
#needed-positions-section {
  margin: 0px 0px 10px 0px;
}

#needed-list li {
  display: inline;
  float: left;
  margin: 0px 10px 10px 0px;
}

#needed-list-no-float li {
  margin: 0px 0px 2px 0px;
}

#needed-list li,
#needed-list-no-float li {
  padding: 4px 8px;
}

.ar-button-little-yes {
  background-color: #A2EBA9;
  padding: 3px;
}

.ar-button-little-no {
  background-color: #FBE6F2;
  padding: 3px;
}

.ar-button-big-yes {
  background-color: #A2EBA9;
  padding: 10px;
}

.ar-button-big-no {
  background-color: #FBE6F2;
  padding: 10px;
}

li.unfilled {
  background-color: #FBE6F2;
}

li.filled {
  background-color: #A2EBA9;
}

.not-yet {
  padding: 4px;
  background-color: #ffffcc;
  border: 1px solid #ffcc00;
}

.notified_notdone {
  padding: 4px;
  /* background-color: #FBE6F2; */
  background-color: #ffffcc;
  border: 1px solid #ffcc00;
}

.notified_done {
  padding: 4px;
  background-color: #A2EBA9;
}

.confirmed_done {
  padding: 4px;
  background-color: #A2EBA9;
}

.confirmed_notdone {
  padding: 4px;
  background-color: #FBE6F2;
}

.appt-canceled-label {
  padding: 4px;
  background-color: #FBE6F2;
}

.appt-active-label {
  padding: 4px;
  background-color: #A2EBA9;
}

.appt-confirmed-label-no {
  padding: 4px;
  background-color: #FBE6F2;
}

.appt-confirmed-label-yes {
  padding: 4px;
  background-color: #A2EBA9;
}

.appt-status-cell {
  padding: 6px;
}

.dataTables_wrapper {
  overflow-x: visible !important;
  overflow-y: hidden !important;
}

.dropdown-item i {
  margin-right: 5px;
}

.clear {
  clear: both;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
  padding: 2px 0px 0px 0px !important;
  height: auto !important;
}

/* -------------------------------- Staffing --------------------------------- */
#event-details-actions {
  display: inline;
  float: right;
  padding: 10px 20px 0px 0px;
}

#event-details-schedule {
  padding-bottom: 4px;
}

/* -------------------------------- Staff Search --------------------------------- */
.show-time-conflicts,
.hide-time-conflicts {
  padding: 2px;
  background-color: #ffffcc;
}

.other-appts {
  margin: 10px 0px 0px 0px;
}

.staff-search-result .other-appt {
  display: inline;
  float: left;
  width: 285px;
  margin: 0px 10px 8px 0px;
  padding: 4px;
  background-color: #ffffcc;
  border-color: #ffcc00;
}

.staff-search-result .other-appt .appt-time {
  padding: 0px 0px 0px 0px;
}

.staff-search-result .other-appt .position-label {
  padding: 0px 0px 0px 0px;
}

.staff-search-left-section {
  display: inline;
  float: left;
  width: 55%;
  border-right: 2px solid #ccc;
}

.staff-search-right-section {
  display: inline;
  float: left;
  width: 40%;
  margin: 0px 0px 0px 20px;
}

/* -------------------------------- All Scheduling Conflicts --------------------------------- */
.schedule-conflict-appt {
  padding: 6px 4px;
  background-color: #f1f1f1;
}

#schedule-conflicts {
  margin: 15px 0px 0px 0px;
  padding: 10px 0px 0px 0px;
  border-top: 2px solid #ccc;
}

#schedule-conflicts .position-label {
  padding: 0px 0px 4px 0px;
}

#schedule-conflicts .upcoming-appt {
  margin: 0px 0px 0px 0px;
  padding: 15px 0px 0px 0px;
  border-bottom: 1px solid #ccc;
}

#schedule-conflicts .conflicts-subtitle {
  margin: 10px 0px 0px 0px;
}

#schedule-conflicts .upcoming-appt h4.appt-event-name {
  margin: 0px 0px 6px 0px;
}

#schedule-conflicts .conflict-appts {
  margin: 10px 0px 20px 0px;
  padding: 15px;
  background-color: #ffffcc;
}

/* -------------------------------- Single Appt: Scheduling Conflicts --------------------------------- */
.button-answer-area,
#button-answer-area {
  margin: 15px 0px 45px 0px;
}

.answer-button {
  padding: 10px 60px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

.answer-button:hover,
.answer-button:active {
  color: #fff;
}

.yes-button,
#yes-button {
  background-color: #006600;
}

.no-button,
#no-button {
  background-color: #990000;
}

#other-appointments-area {
  margin: 20px 0px 0px 0px;
  border: 1px solid #ccc;
}

#other-appointments-area h3 {
  padding: 5px 0px 5px 8px;
  background-color: #ccc;
}

#other-appointments {
  padding: 15px;
}

#other-appointments h4 {
  margin: 0px 0px 8px 0px;
  padding: 4px 0px 4px 4px;
  border-bottom: 1px solid #ccc;
  background-color: #f1f1f1;
}

#other-appointments p {
  padding: 0px 0px 8px 4px;
}

.other-appt {
  margin: 0px 0px 15px 0px;
}

h3.warning {
  padding: 10px 0px 8px 6px;
  background-color: #ffffcc;
}

/* -------------------------------- jQuery UI auto-complete --------------------------------- */
.ui-autocomplete {
  position: absolute;
  z-index: 10000;
  cursor: default;
  padding: 0;
  margin-top: 2px;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.ui-autocomplete > li {
  padding: 3px 20px;
}

.ui-autocomplete > li.ui-state-focus {
  background-color: #DDD;
}

.ui-helper-hidden-accessible {
  display: none;
}

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

h2 {
  font-size: 2.6rem !important;
  font-weight: 600 !important;
  margin-left: -1px !important;
}

.content a {
  outline: none !important;
  color: #0063dc !important;
  text-decoration: none !important;
}

.content a:hover,
.content a:active {
  color: #0063dc !important;
  text-decoration: underline !important;
}

.dropdown-menu a,
.dropdown-menu a:hover,
.dropdown-menu a:active {
  outline: none !important;
  color: #000 !important;
  text-decoration: none !important;
}

.content a.btn-light,
.content input.btn-light {
  background-color: #e2e6ea !important;
  font-style: none !important;
  text-decoration: none !important;
}

.content .btn-light:hover {
  background-color: #999999 !important;
  font-style: none !important;
  text-decoration: none !important;
}

select.form-control {
  font-size: 12px;
}

.content a.btn,
.content input.btn {
  color: #fff !important;
}

.content a.btn-light,
.content input.btn-light {
  color: #000000 !important;
}

#sidenav li a span {
  font-size: 16px !important;
}

input, textarea {
  font-size: 14px !important;
}

i.fas,
i.far {
  font-size: 1.2em;
  padding: 2px 0px 0px 5px;
}

i,
[class^=icon-],
[class*=" icon-"] {
  color: rgba(0, 0, 0, 0.54);
  font-size: 2.4rem;
  height: 2.4rem;
  line-height: 2.4rem;
  width: 2.4rem;
}
i.s-2,
[class^=icon-].s-2,
[class*=" icon-"].s-2 {
  font-size: 0.8rem !important;
  width: 0.8rem !important;
  height: 0.8rem !important;
  line-height: 0.8rem !important;
}
i.s-3,
[class^=icon-].s-3,
[class*=" icon-"].s-3 {
  font-size: 1.2rem !important;
  width: 1.2rem !important;
  height: 1.2rem !important;
  line-height: 1.2rem !important;
}
i.s-4,
[class^=icon-].s-4,
[class*=" icon-"].s-4 {
  font-size: 1.6rem !important;
  width: 1.6rem !important;
  height: 1.6rem !important;
  line-height: 1.6rem !important;
}
i.s-5,
[class^=icon-].s-5,
[class*=" icon-"].s-5 {
  font-size: 2rem !important;
  width: 2rem !important;
  height: 2rem !important;
  line-height: 2rem !important;
}
i.s-6,
[class^=icon-].s-6,
[class*=" icon-"].s-6 {
  font-size: 2.4rem !important;
  width: 2.4rem !important;
  height: 2.4rem !important;
  line-height: 2.4rem !important;
}
i.s-7,
[class^=icon-].s-7,
[class*=" icon-"].s-7 {
  font-size: 2.8rem !important;
  width: 2.8rem !important;
  height: 2.8rem !important;
  line-height: 2.8rem !important;
}
i.s-8,
[class^=icon-].s-8,
[class*=" icon-"].s-8 {
  font-size: 3.2rem !important;
  width: 3.2rem !important;
  height: 3.2rem !important;
  line-height: 3.2rem !important;
}
i.s-9,
[class^=icon-].s-9,
[class*=" icon-"].s-9 {
  font-size: 3.6rem !important;
  width: 3.6rem !important;
  height: 3.6rem !important;
  line-height: 3.6rem !important;
}
i.s-10,
[class^=icon-].s-10,
[class*=" icon-"].s-10 {
  font-size: 4rem !important;
  width: 4rem !important;
  height: 4rem !important;
  line-height: 4rem !important;
}
i.s-11,
[class^=icon-].s-11,
[class*=" icon-"].s-11 {
  font-size: 4.4rem !important;
  width: 4.4rem !important;
  height: 4.4rem !important;
  line-height: 4.4rem !important;
}
i.s-12,
[class^=icon-].s-12,
[class*=" icon-"].s-12 {
  font-size: 4.8rem !important;
  width: 4.8rem !important;
  height: 4.8rem !important;
  line-height: 4.8rem !important;
}
i.s-13,
[class^=icon-].s-13,
[class*=" icon-"].s-13 {
  font-size: 5.2rem !important;
  width: 5.2rem !important;
  height: 5.2rem !important;
  line-height: 5.2rem !important;
}
i.s-14,
[class^=icon-].s-14,
[class*=" icon-"].s-14 {
  font-size: 5.6rem !important;
  width: 5.6rem !important;
  height: 5.6rem !important;
  line-height: 5.6rem !important;
}
i.s-15,
[class^=icon-].s-15,
[class*=" icon-"].s-15 {
  font-size: 6rem !important;
  width: 6rem !important;
  height: 6rem !important;
  line-height: 6rem !important;
}
i.s-16,
[class^=icon-].s-16,
[class*=" icon-"].s-16 {
  font-size: 6.4rem !important;
  width: 6.4rem !important;
  height: 6.4rem !important;
  line-height: 6.4rem !important;
}
i.s-17,
[class^=icon-].s-17,
[class*=" icon-"].s-17 {
  font-size: 6.8rem !important;
  width: 6.8rem !important;
  height: 6.8rem !important;
  line-height: 6.8rem !important;
}
i.s-18,
[class^=icon-].s-18,
[class*=" icon-"].s-18 {
  font-size: 7.2rem !important;
  width: 7.2rem !important;
  height: 7.2rem !important;
  line-height: 7.2rem !important;
}
i.s-19,
[class^=icon-].s-19,
[class*=" icon-"].s-19 {
  font-size: 7.6rem !important;
  width: 7.6rem !important;
  height: 7.6rem !important;
  line-height: 7.6rem !important;
}
i.s-20,
[class^=icon-].s-20,
[class*=" icon-"].s-20 {
  font-size: 8rem !important;
  width: 8rem !important;
  height: 8rem !important;
  line-height: 8rem !important;
}
i.s-21,
[class^=icon-].s-21,
[class*=" icon-"].s-21 {
  font-size: 8.4rem !important;
  width: 8.4rem !important;
  height: 8.4rem !important;
  line-height: 8.4rem !important;
}
i.s-22,
[class^=icon-].s-22,
[class*=" icon-"].s-22 {
  font-size: 8.8rem !important;
  width: 8.8rem !important;
  height: 8.8rem !important;
  line-height: 8.8rem !important;
}
i.s-23,
[class^=icon-].s-23,
[class*=" icon-"].s-23 {
  font-size: 9.2rem !important;
  width: 9.2rem !important;
  height: 9.2rem !important;
  line-height: 9.2rem !important;
}
i.s-24,
[class^=icon-].s-24,
[class*=" icon-"].s-24 {
  font-size: 9.6rem !important;
  width: 9.6rem !important;
  height: 9.6rem !important;
  line-height: 9.6rem !important;
}
i.s-25,
[class^=icon-].s-25,
[class*=" icon-"].s-25 {
  font-size: 10rem !important;
  width: 10rem !important;
  height: 10rem !important;
  line-height: 10rem !important;
}
i.s-26,
[class^=icon-].s-26,
[class*=" icon-"].s-26 {
  font-size: 10.4rem !important;
  width: 10.4rem !important;
  height: 10.4rem !important;
  line-height: 10.4rem !important;
}
i.s-27,
[class^=icon-].s-27,
[class*=" icon-"].s-27 {
  font-size: 10.8rem !important;
  width: 10.8rem !important;
  height: 10.8rem !important;
  line-height: 10.8rem !important;
}
i.s-28,
[class^=icon-].s-28,
[class*=" icon-"].s-28 {
  font-size: 11.2rem !important;
  width: 11.2rem !important;
  height: 11.2rem !important;
  line-height: 11.2rem !important;
}
i.s-29,
[class^=icon-].s-29,
[class*=" icon-"].s-29 {
  font-size: 11.6rem !important;
  width: 11.6rem !important;
  height: 11.6rem !important;
  line-height: 11.6rem !important;
}
i.s-30,
[class^=icon-].s-30,
[class*=" icon-"].s-30 {
  font-size: 12rem !important;
  width: 12rem !important;
  height: 12rem !important;
  line-height: 12rem !important;
}
i.s-31,
[class^=icon-].s-31,
[class*=" icon-"].s-31 {
  font-size: 12.4rem !important;
  width: 12.4rem !important;
  height: 12.4rem !important;
  line-height: 12.4rem !important;
}
i.s-32,
[class^=icon-].s-32,
[class*=" icon-"].s-32 {
  font-size: 12.8rem !important;
  width: 12.8rem !important;
  height: 12.8rem !important;
  line-height: 12.8rem !important;
}

/*----------------------------------------------------------------*/
/*  Page Layouts
/*----------------------------------------------------------------*/
/* Christophe */
/* $card-header-height-sm: $header-height-xs - $card-toolbar-height; */
.page-layout {
  position: relative;
  overflow: hidden;
  flex: 1;
}
.page-layout .top-bg {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 10rem;
  background-image: url("/assets/images/backgrounds/header-bg.png");
  background-size: cover;
}
.page-layout > .page-header {
  background-image: url("/assets/images/backgrounds/header-bg.png");
  background-size: cover;
}
.page-layout > .page-header .breadcrumb {
  margin-bottom: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.54);
}
.page-layout > .page-header .title {
  font-size: 34px;
}
.page-layout.carded {
  min-height: 100%;
  height: 100%;
}
.page-layout.carded.full-width {
  display: flex;
  flex-direction: column;
}
.page-layout.carded.full-width > .page-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
  padding: 0 3.2rem;
  height: 100%;
}
.page-layout.carded.full-width > .page-content-wrapper .page-content-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2) , 0px 7px 10px 1px rgba(0, 0, 0, 0.14) , 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.page-layout.carded.full-width > .page-content-wrapper .page-content-card .toolbar {
  height: 6.4rem;
  min-height: 6.4rem;
  max-height: 6.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.page-layout.carded.full-width > .page-content-wrapper .page-content-card .page-content {
  flex: 1 1 auto;
  display: flex;
  overflow-y: auto;
  overflow-x: hidden;
  background: #FFFFFF;
}
.page-layout.carded.left-sidebar, .page-layout.carded.right-sidebar {
  display: flex;
  flex-direction: row;
}
.page-layout.carded.left-sidebar > .page-sidebar, .page-layout.carded.right-sidebar > .page-sidebar {
  display: flex;
  flex-direction: column;
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  z-index: 2;
  background: #fff;
  box-shadow: none;
}
.page-layout.carded.left-sidebar > .page-sidebar .header, .page-layout.carded.right-sidebar > .page-sidebar .header {
  height: 10rem;
  min-height: 10rem;
  max-height: 10rem;
}
.page-layout.carded.left-sidebar > .page-sidebar .content, .page-layout.carded.right-sidebar > .page-sidebar .content {
  background: transparent;
  overflow-y: auto;
  overflow-x: hidden;
}
.page-layout.carded.left-sidebar > .page-sidebar.fuse-bar, .page-layout.carded.right-sidebar > .page-sidebar.fuse-bar {
  width: 240px;
  min-width: 240px;
  max-width: 240px;
  background: #FFFFFF;
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2) , 0px 7px 10px 1px rgba(0, 0, 0, 0.14) , 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
  z-index: 1021;
  overflow-y: auto;
  overflow-x: hidden;
}
.page-layout.carded.left-sidebar > .page-sidebar.fuse-bar .header, .page-layout.carded.right-sidebar > .page-sidebar.fuse-bar .header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.page-layout.carded.left-sidebar > .page-sidebar.fuse-bar .content, .page-layout.carded.right-sidebar > .page-sidebar.fuse-bar .content {
  flex: 1 0 auto;
  overflow: hidden;
}
.page-layout.carded.left-sidebar .page-content-wrapper, .page-layout.carded.right-sidebar .page-content-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding: 0 3.2rem;
  flex: 1 1 auto;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .page-layout.carded.left-sidebar .page-content-wrapper, .page-layout.carded.right-sidebar .page-content-wrapper {
    overflow: hidden !important;
  }
}
.page-layout.carded.left-sidebar .page-content-wrapper .page-content-card, .page-layout.carded.right-sidebar .page-content-wrapper .page-content-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2) , 0px 7px 10px 1px rgba(0, 0, 0, 0.14) , 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.page-layout.carded.left-sidebar .page-content-wrapper .page-content-card .toolbar, .page-layout.carded.right-sidebar .page-content-wrapper .page-content-card .toolbar {
  height: 6.4rem;
  min-height: 6.4rem;
  max-height: 6.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.page-layout.carded.left-sidebar .page-content-wrapper .page-content-card .toolbar .sidebar-toggle, .page-layout.carded.right-sidebar .page-content-wrapper .page-content-card .toolbar .sidebar-toggle {
  margin: 0 8px 0 0 !important;
  padding: 0 !important;
  border-radius: 0;
}
.page-layout.carded.left-sidebar .page-content-wrapper .page-content-card .page-content, .page-layout.carded.right-sidebar .page-content-wrapper .page-content-card .page-content {
  flex: 1 1 auto;
  display: flex;
  overflow-y: auto;
  overflow-x: hidden;
  background: #FFFFFF;
}
@media (min-width: 992px) {
  .page-layout.carded.left-sidebar > .page-sidebar:not(.fuse-bar) + .page-content-wrapper {
    padding-left: 0;
  }
}
.page-layout.carded.left-sidebar.single-scroll {
  height: auto;
}
.page-layout.carded.left-sidebar.single-scroll > .page-content-wrapper .page-content-card .page-content {
  overflow: hidden;
}
@media (min-width: 992px) {
  .page-layout.carded.right-sidebar > .page-sidebar:not(.fuse-bar) {
    padding-left: 0 !important;
  }
}
.page-layout.carded.right-sidebar.single-scroll {
  height: auto;
}
.page-layout.carded.right-sidebar.single-scroll > .page-content-wrapper .page-content-card .page-content {
  overflow: hidden;
}
.page-layout.simple.full-width, .page-layout.simple.left-sidebar-inner, .page-layout.simple.right-sidebar-inner, .page-layout.simple.left-sidebar-floating, .page-layout.simple.right-sidebar-floating, .page-layout.simple.tabbed, .page-layout.simple.blank {
  min-height: 100%;
  flex: 1 0 auto;
}
.page-layout.simple > .page-content-wrapper {
  flex: 1;
}
.page-layout.simple.left-sidebar-inner > .page-content-wrapper, .page-layout.simple.right-sidebar-inner > .page-content-wrapper, .page-layout.simple.left-sidebar-floating > .page-content-wrapper, .page-layout.simple.right-sidebar-floating > .page-content-wrapper {
  display: flex;
  flex-direction: row;
}
.page-layout.simple.left-sidebar-inner > .page-content-wrapper > .page-content, .page-layout.simple.right-sidebar-inner > .page-content-wrapper > .page-content, .page-layout.simple.left-sidebar-floating > .page-content-wrapper > .page-content, .page-layout.simple.right-sidebar-floating > .page-content-wrapper > .page-content {
  flex: 1 1 auto;
}
.page-layout.simple .page-sidebar {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  z-index: 2;
  box-shadow: none;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
}
.page-layout.simple .page-sidebar.fuse-bar {
  width: 240px;
  min-width: 240px;
  max-width: 240px;
  z-index: 1021;
  background: white;
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2) , 0px 7px 10px 1px rgba(0, 0, 0, 0.14) , 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}
.page-layout.simple.left-sidebar, .page-layout.simple.right-sidebar {
  display: flex;
  flex-direction: row;
  min-height: 100%;
  height: 100%;
}
.page-layout.simple.left-sidebar > .page-content-wrapper, .page-layout.simple.right-sidebar > .page-content-wrapper {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 3;
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2) , 0px 7px 10px 1px rgba(0, 0, 0, 0.14) , 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}
.page-layout.simple.left-sidebar > .page-content-wrapper .page-header, .page-layout.simple.right-sidebar > .page-content-wrapper .page-header {
  background-image: url("/assets/images/backgrounds/header-bg.png");
  background-size: cover;
}
.page-layout.simple.left-sidebar > .page-content-wrapper .page-content, .page-layout.simple.right-sidebar > .page-content-wrapper .page-content {
  background: #FFFFFF;
}
.page-layout.simple.left-sidebar-floating, .page-layout.simple.right-sidebar-floating {
  flex-direction: column;
}
.page-layout.simple.left-sidebar-floating .page-content-wrapper .page-sidebar, .page-layout.simple.right-sidebar-floating .page-content-wrapper .page-sidebar {
  box-sizing: content-box;
  position: relative;
}
.page-layout.simple.left-sidebar-floating .page-content-wrapper .page-sidebar .page-sidebar-card, .page-layout.simple.right-sidebar-floating .page-content-wrapper .page-sidebar .page-sidebar-card {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2) , 0px 1px 1px 0px rgba(0, 0, 0, 0.14) , 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  background-color: #FFFFFF;
}
@media (max-width: 991.98px) {
  .page-layout.simple.left-sidebar-floating .page-content-wrapper .page-sidebar, .page-layout.simple.right-sidebar-floating .page-content-wrapper .page-sidebar {
    padding: 0 !important;
  }
  .page-layout.simple.left-sidebar-floating .page-content-wrapper .page-sidebar .page-sidebar-card, .page-layout.simple.right-sidebar-floating .page-content-wrapper .page-sidebar .page-sidebar-card {
    box-shadow: none;
  }
}
@media (min-width: 992px) {
  .page-layout.simple.left-sidebar-floating .page-content-wrapper > .page-sidebar:not(.fuse-bar) + .page-content {
    padding-left: 0 !important;
  }
  .page-layout.simple.right-sidebar-floating .page-content-wrapper > .page-sidebar:not(.fuse-bar) {
    padding-left: 2px !important;
  }
}
.page-layout.simple.tabbed .page-content {
  padding: 0;
}
.page-layout.simple.tabbed .page-content > .nav-tabs {
  padding: 0 2.4rem;
  background-color: #FFFFFF;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
}
.page-layout.simple.tabbed .page-content > .tab-content {
  padding: 2.4rem;
}

.single-scroll.carded .page-content-wrapper {
  flex: 1 1 auto;
  max-width: 100%;
  overflow: auto;
}
.single-scroll.carded .page-content-wrapper .page-content-card {
  flex: 1 0 auto;
}
.single-scroll.simple.left-sidebar, .single-scroll.simple.right-sidebar {
  flex: 1 1 auto;
  height: 100%;
}
.single-scroll.simple.left-sidebar .page-content-wrapper, .single-scroll.simple.right-sidebar .page-content-wrapper {
  flex: 1 1 auto;
  max-width: 100%;
  overflow: auto;
}

@media (min-width: 992px) {
  .single-scroll.carded.full-width {
    flex: 1 0 auto;
    height: auto;
  }
  .single-scroll.carded.left-sidebar, .single-scroll.carded.right-sidebar {
    flex: 1 0 auto;
    height: auto;
  }
  .single-scroll.carded.left-sidebar > .page-content-wrapper, .single-scroll.carded.right-sidebar > .page-content-wrapper {
    flex: 1 1 auto;
    overflow: unset;
  }
  .single-scroll.simple.left-sidebar, .single-scroll.simple.right-sidebar {
    flex: 1 0 auto;
    height: auto;
  }
}
@media (max-width: 575.98px) {
  .page-layout .top-bg {
    height: 10rem;
  }
  .page-layout.carded.right-sidebar > .page-content-wrapper, .page-layout.carded.left-sidebar > .page-content-wrapper, .page-layout.carded.full-width > .page-content-wrapper {
    padding: 0 1.6rem;
  }
  .page-layout.simple.left-sidebar > .page-content-wrapper, .page-layout.simple.right-sidebar > .page-content-wrapper {
    overflow-y: auto;
    overflow-x: hidden;
  }
}
.divider-vertical {
  height: 2.4rem;
  width: 0.1rem;
  margin: 0 0.8rem;
  background: rgba(0, 0, 0, 0.12);
}

.divider {
  display: block;
  border-top-width: 1px;
  border-top-style: solid;
  margin: 0;
  border-top-color: rgba(0, 0, 0, 0.12);
}

/*----------------------------------------------------------------*/
/*  Avatars
/*----------------------------------------------------------------*/
.avatar {
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  line-height: 4rem;
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
  color: #FFFFFF;
  background-color: #3C4252;
}
.avatar.square {
  border-radius: 0;
}
.avatar.small {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  line-height: 2rem;
}
.avatar.big {
  width: 7.2rem;
  min-width: 7.2rem;
  height: 7.2rem;
  line-height: 7.2rem;
}
.avatar.huge {
  width: 9.6rem;
  min-width: 9.6rem;
  height: 9.6rem;
  line-height: 9.6rem;
}

.alert {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2) , 0px 2px 2px 0px rgba(0, 0, 0, 0.14) , 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.alert {
  font-weight: bold;
}

.alert-success {
  background-image: url(/img/accept.png);
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: center;
  padding-left: 34px;
}

.badge {
  text-decoration: none;
}

.breadcrumb {
  margin-bottom: 1.6rem;
}

.breadcrumb-item, .breadcrumb-item:hover,
.breadcrumb-item > a,
.breadcrumb-item > a:hover {
  text-decoration: none;
}
.breadcrumb-item + .breadcrumb-item::before {
  font-family: "fuse-iconfont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 2rem;
  line-height: normal;
  vertical-align: middle;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn {
  display: inline-block;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 0px solid transparent;
  padding: 0 1.6rem;
  font-size: 1.4rem;
  line-height: 1.785714;
  border-radius: 2px;
  position: relative;
  min-width: 8.8rem;
  height: 3.6rem;
  line-height: 3.6rem;
  outline: none;
  text-decoration: none;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-appearance: none;
  letter-spacing: 0.04em;
  box-shadow: 2px 2px 6px #ccc !important;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2) , 0px 2px 2px 0px rgba(0, 0, 0, 0.14) , 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow;
}
.btn:hover, .btn:focus {
  text-decoration: none;
  cursor: pointer;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.btn.disabled, .btn:disabled {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2) , 0px 0px 0px 0px rgba(0, 0, 0, 0.14) , 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.26) !important;
  background: rgba(0, 0, 0, 0.12) !important;
  cursor: default;
  pointer-events: none;
  opacity: 1;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
  background-image: none;
  outline: none;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2) , 0px 8px 10px 1px rgba(0, 0, 0, 0.14) , 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.btn:not(:disabled):not(.disabled):active:focus, .btn:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2) , 0px 9px 12px 1px rgba(0, 0, 0, 0.14) , 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}
.btn[class*=btn-outline-] {
  border-width: 1px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2) , 0px 0px 0px 0px rgba(0, 0, 0, 0.14) , 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.btn[class*=btn-outline-]:focus, .btn[class*=btn-outline-].focus {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2) , 0px 0px 0px 0px rgba(0, 0, 0, 0.14) , 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.btn[class*=btn-outline-]:active, .btn[class*=btn-outline-].active {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2) , 0px 8px 10px 1px rgba(0, 0, 0, 0.14) , 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.btn i,
.btn [class^=icon-],
.btn [class*=" icon-"] {
  vertical-align: middle;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #FFF;
  background-color: #3C4252;
  border-color: #3C4252;
  box-shadow: none;
}
.btn-primary:hover {
  color: #FFF;
  background-color: #2c303c;
  border-color: #262a35;
}
.btn-primary:focus, .btn-primary.focus {
  box-shadow: none, 0 0 0 0.2rem rgba(60, 66, 82, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #FFF;
  background-color: #3C4252;
  border-color: #3C4252;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #FFF;
  background-color: #262a35;
  border-color: #21242d;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0.2rem rgba(60, 66, 82, 0.5);
}

.btn-secondary {
  color: #FFF;
  background-color: #2196F3;
  border-color: #2196F3;
  box-shadow: none;
}
.btn-secondary:hover {
  color: #FFF;
  background-color: #0c83e2;
  border-color: #0c7cd5;
}
.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: none, 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #FFF;
  background-color: #2196F3;
  border-color: #2196F3;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #FFF;
  background-color: #0c7cd5;
  border-color: #0b75c9;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
}

.btn-success {
  color: #FFF;
  background-color: #4CAF50;
  border-color: #4CAF50;
  box-shadow: none;
}
.btn-success:hover {
  color: #FFF;
  background-color: #409444;
  border-color: #3d8b40;
}
.btn-success:focus, .btn-success.focus {
  box-shadow: none, 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #FFF;
  background-color: #4CAF50;
  border-color: #4CAF50;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #FFF;
  background-color: #3d8b40;
  border-color: #39833c;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
}

.btn-info {
  color: #FFF;
  background-color: #009688;
  border-color: #009688;
  box-shadow: none;
}
.btn-info:hover {
  color: #FFF;
  background-color: #007065;
  border-color: #00635a;
}
.btn-info:focus, .btn-info.focus {
  box-shadow: none, 0 0 0 0.2rem rgba(0, 150, 136, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #FFF;
  background-color: #009688;
  border-color: #009688;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #FFF;
  background-color: #00635a;
  border-color: #00564e;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0.2rem rgba(0, 150, 136, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #FF9800;
  border-color: #FF9800;
  box-shadow: none;
}
.btn-warning:hover {
  color: #FFF;
  background-color: #d98100;
  border-color: #cc7a00;
}
.btn-warning:focus, .btn-warning.focus {
  box-shadow: none, 0 0 0 0.2rem rgba(255, 152, 0, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #FF9800;
  border-color: #FF9800;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #FFF;
  background-color: #cc7a00;
  border-color: #bf7200;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0.2rem rgba(255, 152, 0, 0.5);
}

.btn-danger {
  color: #FFF;
  background-color: #F44336;
  border-color: #F44336;
  box-shadow: none;
}
.btn-danger:hover {
  color: #FFF;
  background-color: #f22112;
  border-color: #ea1c0d;
}
.btn-danger:focus, .btn-danger.focus {
  box-shadow: none, 0 0 0 0.2rem rgba(244, 67, 54, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #FFF;
  background-color: #F44336;
  border-color: #F44336;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #FFF;
  background-color: #ea1c0d;
  border-color: #de1b0c;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0.2rem rgba(244, 67, 54, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #F8F9FA;
  border-color: #F8F9FA;
  box-shadow: none;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  box-shadow: none, 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #F8F9FA;
  border-color: #F8F9FA;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
  color: #FFF;
  background-color: #343A40;
  border-color: #343A40;
  box-shadow: none;
}
.btn-dark:hover {
  color: #FFF;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  box-shadow: none, 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #FFF;
  background-color: #343A40;
  border-color: #343A40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #FFF;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
  color: #3C4252;
  background-color: transparent;
  background-image: none;
  border-color: #3C4252;
}
.btn-outline-primary:hover {
  color: #FFF;
  background-color: #3C4252;
  border-color: #3C4252;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(60, 66, 82, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #3C4252;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #FFF;
  background-color: #3C4252;
  border-color: #3C4252;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(60, 66, 82, 0.5);
}

.btn-outline-secondary {
  color: #2196F3;
  background-color: transparent;
  background-image: none;
  border-color: #2196F3;
}
.btn-outline-secondary:hover {
  color: #FFF;
  background-color: #2196F3;
  border-color: #2196F3;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #2196F3;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #FFF;
  background-color: #2196F3;
  border-color: #2196F3;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
}

.btn-outline-success {
  color: #4CAF50;
  background-color: transparent;
  background-image: none;
  border-color: #4CAF50;
}
.btn-outline-success:hover {
  color: #FFF;
  background-color: #4CAF50;
  border-color: #4CAF50;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #4CAF50;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #FFF;
  background-color: #4CAF50;
  border-color: #4CAF50;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
}

.btn-outline-info {
  color: #009688;
  background-color: transparent;
  background-image: none;
  border-color: #009688;
}
.btn-outline-info:hover {
  color: #FFF;
  background-color: #009688;
  border-color: #009688;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 150, 136, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #009688;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #FFF;
  background-color: #009688;
  border-color: #009688;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 150, 136, 0.5);
}

.btn-outline-warning {
  color: #FF9800;
  background-color: transparent;
  background-image: none;
  border-color: #FF9800;
}
.btn-outline-warning:hover {
  color: #FFF;
  background-color: #FF9800;
  border-color: #FF9800;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #FF9800;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #FF9800;
  border-color: #FF9800;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.5);
}

.btn-outline-danger {
  color: #F44336;
  background-color: transparent;
  background-image: none;
  border-color: #F44336;
}
.btn-outline-danger:hover {
  color: #FFF;
  background-color: #F44336;
  border-color: #F44336;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #F44336;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #FFF;
  background-color: #F44336;
  border-color: #F44336;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.5);
}

.btn-outline-light {
  color: #F8F9FA;
  background-color: transparent;
  background-image: none;
  border-color: #F8F9FA;
}
.btn-outline-light:hover {
  color: #FFF;
  background-color: #F8F9FA;
  border-color: #F8F9FA;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #F8F9FA;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #F8F9FA;
  border-color: #F8F9FA;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343A40;
  background-color: transparent;
  background-image: none;
  border-color: #343A40;
}
.btn-outline-dark:hover {
  color: #FFF;
  background-color: #343A40;
  border-color: #343A40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343A40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #FFF;
  background-color: #343A40;
  border-color: #343A40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: normal;
  color: initial;
  border-radius: 0;
  min-width: 6.4rem;
}
.btn-link, .btn-link:active, .btn-link.active, .btn-link:disabled {
  background-color: transparent;
  box-shadow: none;
}
.btn-link, .btn-link:focus, .btn-link:active {
  border-color: transparent;
  box-shadow: none;
}
.btn-link:hover {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.03);
}
.btn-link:hover, .btn-link:focus {
  color: #1c1e26;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link:disabled {
  color: #6C757D;
}
.btn-link:disabled:hover, .btn-link:disabled:focus {
  text-decoration: none;
}

.btn-link,
.btn-icon {
  background-color: transparent;
  text-decoration: none !important;
  box-shadow: none;
}
.btn-link:focus, .btn-link.focus,
.btn-icon:focus,
.btn-icon.focus {
  box-shadow: none;
}
.btn-link:active, .btn-link.active,
.btn-icon:active,
.btn-icon.active {
  box-shadow: none;
}
.btn-link.disabled, .btn-link:disabled,
.btn-icon.disabled,
.btn-icon:disabled {
  background: transparent;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0 1.6rem;
  font-size: 1.6rem;
  line-height: 2.25;
  border-radius: 2px;
  height: calc(2.925rem + 0px);
  line-height: calc(2.925rem + 0px);
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0 1.6rem;
  font-size: 1.3rem;
  line-height: 2.461538;
  border-radius: 2px;
  height: calc(2.3214282rem + 0px);
  line-height: calc(2.3214282rem + 0px);
}

.btn-icon {
  background: transparent;
  min-width: auto;
  min-width: initial;
  height: auto;
  line-height: normal;
  padding: 0.8rem;
  border-radius: 100% !important;
}

.btn-fab {
  line-height: 5.6rem;
  width: 5.6rem;
  min-width: 5.6rem;
  height: 5.6rem;
  min-height: 5.6rem;
  overflow: hidden !important;
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  box-sizing: border-box;
}
.btn-fab.btn-sm, .btn-group-sm > .btn-fab.btn {
  line-height: 4rem;
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  min-height: 4rem;
}
.btn-fab i,
.btn-fab [class^=icon-],
.btn-fab [class*=" icon-"] {
  width: 100%;
}
.btn-fab i,
.btn-fab [class^=icon-],
.btn-fab [class*=" icon-"] {
  width: 100%;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

[data-toggle=collapse] {
  text-decoration: none;
}

.card {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2) , 0px 1px 1px 0px rgba(0, 0, 0, 0.14) , 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}

.card-block {
  padding: 0.8rem 1.6rem;
}

.card-title {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  font-size: 2.4rem;
  font-weight: 400;
}

.card-subtitle {
  margin-bottom: 0.8rem;
  padding: 0;
  font-weight: 400;
  font-size: 1.4rem;
}

.card-text {
  margin-bottom: 0.8rem;
}

.card-link {
  text-decoration: none;
  font-weight: 500;
  color: #495057;
  margin: 0.8rem 0 0 0;
  padding: 0 0.8rem;
  display: inline-block;
  height: 3.6rem;
  box-sizing: border-box;
  letter-spacing: 0.04em;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 2.57143;
  margin-left: -0.8rem;
}
.card-link + .card-link {
  margin-left: 0.8rem;
}

.card-header {
  padding: 4px 10px;
  background-color: #e6ded3 !important;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #4a4a4a;
  border: 1px solid #ccc;
}

.card-header h4 {
  margin: 0px;
  font-size: 18px;
  font-weight: bold;
  color: #5c5c5c;
}

.card-body {
  border-left: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  border-right: 1px solid #d1d1d1;
  padding-top: 20px;
}

.card-footer {
  padding: 1.2rem 1.6rem;
}

.card-group {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2) , 0px 2px 2px 0px rgba(0, 0, 0, 0.14) , 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.card-group > .card {
  box-shadow: none;
}

[class^=card-outline-],
[class*=" card-outline-"] {
  border-style: solid;
  border-width: 1px;
}

.bg-primary-50 {
  background-color: #ECECEE !important;
}
.bg-primary-50.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-primary-50.text-auto {
  background-color: #ECECEE !important;
}

.text-primary-50 {
  color: #ECECEE !important;
}

.border-primary-50 {
  border-color: #ECECEE !important;
}

.border-top-primary-50 {
  border-top-color: #ECECEE !important;
}

.border-right-primary-50 {
  border-right-color: #ECECEE !important;
}

.border-bottom-primary-50 {
  border-bottom-color: #ECECEE !important;
}

.border-left-primary-50 {
  border-left-color: #ECECEE !important;
}

.bg-primary-100 {
  background-color: #C5C6CB !important;
}
.bg-primary-100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-primary-100.text-auto {
  background-color: #C5C6CB !important;
}

.text-primary-100 {
  color: #C5C6CB !important;
}

.border-primary-100 {
  border-color: #C5C6CB !important;
}

.border-top-primary-100 {
  border-top-color: #C5C6CB !important;
}

.border-right-primary-100 {
  border-right-color: #C5C6CB !important;
}

.border-bottom-primary-100 {
  border-bottom-color: #C5C6CB !important;
}

.border-left-primary-100 {
  border-left-color: #C5C6CB !important;
}

.bg-primary-200 {
  background-color: #9EA1A9 !important;
}
.bg-primary-200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-primary-200.text-auto {
  background-color: #9EA1A9 !important;
}

.text-primary-200 {
  color: #9EA1A9 !important;
}

.border-primary-200 {
  border-color: #9EA1A9 !important;
}

.border-top-primary-200 {
  border-top-color: #9EA1A9 !important;
}

.border-right-primary-200 {
  border-right-color: #9EA1A9 !important;
}

.border-bottom-primary-200 {
  border-bottom-color: #9EA1A9 !important;
}

.border-left-primary-200 {
  border-left-color: #9EA1A9 !important;
}

.bg-primary-300 {
  background-color: #7D818C !important;
}
.bg-primary-300.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-primary-300.text-auto {
  background-color: #7D818C !important;
}

.text-primary-300 {
  color: #7D818C !important;
}

.border-primary-300 {
  border-color: #7D818C !important;
}

.border-top-primary-300 {
  border-top-color: #7D818C !important;
}

.border-right-primary-300 {
  border-right-color: #7D818C !important;
}

.border-bottom-primary-300 {
  border-bottom-color: #7D818C !important;
}

.border-left-primary-300 {
  border-left-color: #7D818C !important;
}

.bg-primary-400 {
  background-color: #5C616F !important;
}
.bg-primary-400.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-primary-400.text-auto {
  background-color: #5C616F !important;
}

.text-primary-400 {
  color: #5C616F !important;
}

.border-primary-400 {
  border-color: #5C616F !important;
}

.border-top-primary-400 {
  border-top-color: #5C616F !important;
}

.border-right-primary-400 {
  border-right-color: #5C616F !important;
}

.border-bottom-primary-400 {
  border-bottom-color: #5C616F !important;
}

.border-left-primary-400 {
  border-left-color: #5C616F !important;
}

.bg-primary-500 {
  background-color: #3C4252 !important;
}
.bg-primary-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-primary-500.text-auto {
  background-color: #3C4252 !important;
}

.text-primary-500 {
  color: #3C4252 !important;
}

.border-primary-500 {
  border-color: #3C4252 !important;
}

.border-top-primary-500 {
  border-top-color: #3C4252 !important;
}

.border-right-primary-500 {
  border-right-color: #3C4252 !important;
}

.border-bottom-primary-500 {
  border-bottom-color: #3C4252 !important;
}

.border-left-primary-500 {
  border-left-color: #3C4252 !important;
}

.bg-primary.text-auto {
  background-color: #3C4252 !important;
}

.bg-primary {
  background-color: #3C4252 !important;
}
.bg-primary.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.text-primary {
  color: #3C4252 !important;
}

.border-primary {
  border-color: #3C4252 !important;
}

.border-top-primary {
  border-top-color: #3C4252 !important;
}

.border-right-primary {
  border-right-color: #3C4252 !important;
}

.border-bottom-primary {
  border-bottom-color: #3C4252 !important;
}

.border-left-primary {
  border-left-color: #3C4252 !important;
}

.bg-primary-600 {
  background-color: #353A48 !important;
}
.bg-primary-600.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-primary-600.text-auto {
  background-color: #353A48 !important;
}

.text-primary-600 {
  color: #353A48 !important;
}

.border-primary-600 {
  border-color: #353A48 !important;
}

.border-top-primary-600 {
  border-top-color: #353A48 !important;
}

.border-right-primary-600 {
  border-right-color: #353A48 !important;
}

.border-bottom-primary-600 {
  border-bottom-color: #353A48 !important;
}

.border-left-primary-600 {
  border-left-color: #353A48 !important;
}

.bg-primary-700 {
  background-color: #2D323E !important;
}
.bg-primary-700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-primary-700.text-auto {
  background-color: #2D323E !important;
}

.text-primary-700 {
  color: #2D323E !important;
}

.border-primary-700 {
  border-color: #2D323E !important;
}

.border-top-primary-700 {
  border-top-color: #2D323E !important;
}

.border-right-primary-700 {
  border-right-color: #2D323E !important;
}

.border-bottom-primary-700 {
  border-bottom-color: #2D323E !important;
}

.border-left-primary-700 {
  border-left-color: #2D323E !important;
}

.bg-primary-800 {
  background-color: #262933 !important;
}
.bg-primary-800.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-primary-800.text-auto {
  background-color: #262933 !important;
}

.text-primary-800 {
  color: #262933 !important;
}

.border-primary-800 {
  border-color: #262933 !important;
}

.border-top-primary-800 {
  border-top-color: #262933 !important;
}

.border-right-primary-800 {
  border-right-color: #262933 !important;
}

.border-bottom-primary-800 {
  border-bottom-color: #262933 !important;
}

.border-left-primary-800 {
  border-left-color: #262933 !important;
}

.bg-primary-900 {
  background-color: #1E2129 !important;
}
.bg-primary-900.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-primary-900.text-auto {
  background-color: #1E2129 !important;
}

.text-primary-900 {
  color: #1E2129 !important;
}

.border-primary-900 {
  border-color: #1E2129 !important;
}

.border-top-primary-900 {
  border-top-color: #1E2129 !important;
}

.border-right-primary-900 {
  border-right-color: #1E2129 !important;
}

.border-bottom-primary-900 {
  border-bottom-color: #1E2129 !important;
}

.border-left-primary-900 {
  border-left-color: #1E2129 !important;
}

.bg-primary-A100 {
  background-color: #C5C6CB !important;
}
.bg-primary-A100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-primary-A100.text-auto {
  background-color: #C5C6CB !important;
}

.text-primary-A100 {
  color: #C5C6CB !important;
}

.border-primary-A100 {
  border-color: #C5C6CB !important;
}

.border-top-primary-A100 {
  border-top-color: #C5C6CB !important;
}

.border-right-primary-A100 {
  border-right-color: #C5C6CB !important;
}

.border-bottom-primary-A100 {
  border-bottom-color: #C5C6CB !important;
}

.border-left-primary-A100 {
  border-left-color: #C5C6CB !important;
}

.bg-primary-A200 {
  background-color: #9EA1A9 !important;
}
.bg-primary-A200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-primary-A200.text-auto {
  background-color: #9EA1A9 !important;
}

.text-primary-A200 {
  color: #9EA1A9 !important;
}

.border-primary-A200 {
  border-color: #9EA1A9 !important;
}

.border-top-primary-A200 {
  border-top-color: #9EA1A9 !important;
}

.border-right-primary-A200 {
  border-right-color: #9EA1A9 !important;
}

.border-bottom-primary-A200 {
  border-bottom-color: #9EA1A9 !important;
}

.border-left-primary-A200 {
  border-left-color: #9EA1A9 !important;
}

.bg-primary-A400 {
  background-color: #5C616F !important;
}
.bg-primary-A400.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-primary-A400.text-auto {
  background-color: #5C616F !important;
}

.text-primary-A400 {
  color: #5C616F !important;
}

.border-primary-A400 {
  border-color: #5C616F !important;
}

.border-top-primary-A400 {
  border-top-color: #5C616F !important;
}

.border-right-primary-A400 {
  border-right-color: #5C616F !important;
}

.border-bottom-primary-A400 {
  border-bottom-color: #5C616F !important;
}

.border-left-primary-A400 {
  border-left-color: #5C616F !important;
}

.bg-primary-A700 {
  background-color: #2D323E !important;
}
.bg-primary-A700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-primary-A700.text-auto {
  background-color: #2D323E !important;
}

.text-primary-A700 {
  color: #2D323E !important;
}

.border-primary-A700 {
  border-color: #2D323E !important;
}

.border-top-primary-A700 {
  border-top-color: #2D323E !important;
}

.border-right-primary-A700 {
  border-right-color: #2D323E !important;
}

.border-bottom-primary-A700 {
  border-bottom-color: #2D323E !important;
}

.border-left-primary-A700 {
  border-left-color: #2D323E !important;
}

.bg-secondary-50 {
  background-color: #E3F2FD !important;
}
.bg-secondary-50.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-secondary-50.text-auto {
  background-color: #E3F2FD !important;
}

.text-secondary-50 {
  color: #E3F2FD !important;
}

.border-secondary-50 {
  border-color: #E3F2FD !important;
}

.border-top-secondary-50 {
  border-top-color: #E3F2FD !important;
}

.border-right-secondary-50 {
  border-right-color: #E3F2FD !important;
}

.border-bottom-secondary-50 {
  border-bottom-color: #E3F2FD !important;
}

.border-left-secondary-50 {
  border-left-color: #E3F2FD !important;
}

.bg-secondary-100 {
  background-color: #BBDEFB !important;
}
.bg-secondary-100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-secondary-100.text-auto {
  background-color: #BBDEFB !important;
}

.text-secondary-100 {
  color: #BBDEFB !important;
}

.border-secondary-100 {
  border-color: #BBDEFB !important;
}

.border-top-secondary-100 {
  border-top-color: #BBDEFB !important;
}

.border-right-secondary-100 {
  border-right-color: #BBDEFB !important;
}

.border-bottom-secondary-100 {
  border-bottom-color: #BBDEFB !important;
}

.border-left-secondary-100 {
  border-left-color: #BBDEFB !important;
}

.bg-secondary-200 {
  background-color: #90CAF9 !important;
}
.bg-secondary-200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-secondary-200.text-auto {
  background-color: #90CAF9 !important;
}

.text-secondary-200 {
  color: #90CAF9 !important;
}

.border-secondary-200 {
  border-color: #90CAF9 !important;
}

.border-top-secondary-200 {
  border-top-color: #90CAF9 !important;
}

.border-right-secondary-200 {
  border-right-color: #90CAF9 !important;
}

.border-bottom-secondary-200 {
  border-bottom-color: #90CAF9 !important;
}

.border-left-secondary-200 {
  border-left-color: #90CAF9 !important;
}

.bg-secondary-300 {
  background-color: #64B5F6 !important;
}
.bg-secondary-300.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-secondary-300.text-auto {
  background-color: #64B5F6 !important;
}

.text-secondary-300 {
  color: #64B5F6 !important;
}

.border-secondary-300 {
  border-color: #64B5F6 !important;
}

.border-top-secondary-300 {
  border-top-color: #64B5F6 !important;
}

.border-right-secondary-300 {
  border-right-color: #64B5F6 !important;
}

.border-bottom-secondary-300 {
  border-bottom-color: #64B5F6 !important;
}

.border-left-secondary-300 {
  border-left-color: #64B5F6 !important;
}

.bg-secondary-400 {
  background-color: #42A5F5 !important;
}
.bg-secondary-400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-secondary-400.text-auto {
  background-color: #42A5F5 !important;
}

.text-secondary-400 {
  color: #42A5F5 !important;
}

.border-secondary-400 {
  border-color: #42A5F5 !important;
}

.border-top-secondary-400 {
  border-top-color: #42A5F5 !important;
}

.border-right-secondary-400 {
  border-right-color: #42A5F5 !important;
}

.border-bottom-secondary-400 {
  border-bottom-color: #42A5F5 !important;
}

.border-left-secondary-400 {
  border-left-color: #42A5F5 !important;
}

.bg-secondary-500 {
  background-color: #2196F3 !important;
}
.bg-secondary-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-secondary-500.text-auto {
  background-color: #2196F3 !important;
}

.text-secondary-500 {
  color: #2196F3 !important;
}

.border-secondary-500 {
  border-color: #2196F3 !important;
}

.border-top-secondary-500 {
  border-top-color: #2196F3 !important;
}

.border-right-secondary-500 {
  border-right-color: #2196F3 !important;
}

.border-bottom-secondary-500 {
  border-bottom-color: #2196F3 !important;
}

.border-left-secondary-500 {
  border-left-color: #2196F3 !important;
}

.bg-secondary.text-auto {
  background-color: #2196F3 !important;
}

.bg-secondary {
  background-color: #2196F3 !important;
}
.bg-secondary.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.text-secondary {
  color: #2196F3 !important;
}

.border-secondary {
  border-color: #2196F3 !important;
}

.border-top-secondary {
  border-top-color: #2196F3 !important;
}

.border-right-secondary {
  border-right-color: #2196F3 !important;
}

.border-bottom-secondary {
  border-bottom-color: #2196F3 !important;
}

.border-left-secondary {
  border-left-color: #2196F3 !important;
}

.bg-secondary-600 {
  background-color: #1E88E5 !important;
}
.bg-secondary-600.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-secondary-600.text-auto {
  background-color: #1E88E5 !important;
}

.text-secondary-600 {
  color: #1E88E5 !important;
}

.border-secondary-600 {
  border-color: #1E88E5 !important;
}

.border-top-secondary-600 {
  border-top-color: #1E88E5 !important;
}

.border-right-secondary-600 {
  border-right-color: #1E88E5 !important;
}

.border-bottom-secondary-600 {
  border-bottom-color: #1E88E5 !important;
}

.border-left-secondary-600 {
  border-left-color: #1E88E5 !important;
}

.bg-secondary-700 {
  background-color: #1976D2 !important;
}
.bg-secondary-700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-secondary-700.text-auto {
  background-color: #1976D2 !important;
}

.text-secondary-700 {
  color: #1976D2 !important;
}

.border-secondary-700 {
  border-color: #1976D2 !important;
}

.border-top-secondary-700 {
  border-top-color: #1976D2 !important;
}

.border-right-secondary-700 {
  border-right-color: #1976D2 !important;
}

.border-bottom-secondary-700 {
  border-bottom-color: #1976D2 !important;
}

.border-left-secondary-700 {
  border-left-color: #1976D2 !important;
}

.bg-secondary-800 {
  background-color: #1565C0 !important;
}
.bg-secondary-800.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-secondary-800.text-auto {
  background-color: #1565C0 !important;
}

.text-secondary-800 {
  color: #1565C0 !important;
}

.border-secondary-800 {
  border-color: #1565C0 !important;
}

.border-top-secondary-800 {
  border-top-color: #1565C0 !important;
}

.border-right-secondary-800 {
  border-right-color: #1565C0 !important;
}

.border-bottom-secondary-800 {
  border-bottom-color: #1565C0 !important;
}

.border-left-secondary-800 {
  border-left-color: #1565C0 !important;
}

.bg-secondary-900 {
  background-color: #0D47A1 !important;
}
.bg-secondary-900.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-secondary-900.text-auto {
  background-color: #0D47A1 !important;
}

.text-secondary-900 {
  color: #0D47A1 !important;
}

.border-secondary-900 {
  border-color: #0D47A1 !important;
}

.border-top-secondary-900 {
  border-top-color: #0D47A1 !important;
}

.border-right-secondary-900 {
  border-right-color: #0D47A1 !important;
}

.border-bottom-secondary-900 {
  border-bottom-color: #0D47A1 !important;
}

.border-left-secondary-900 {
  border-left-color: #0D47A1 !important;
}

.bg-secondary-A100 {
  background-color: #82B1FF !important;
}
.bg-secondary-A100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-secondary-A100.text-auto {
  background-color: #82B1FF !important;
}

.text-secondary-A100 {
  color: #82B1FF !important;
}

.border-secondary-A100 {
  border-color: #82B1FF !important;
}

.border-top-secondary-A100 {
  border-top-color: #82B1FF !important;
}

.border-right-secondary-A100 {
  border-right-color: #82B1FF !important;
}

.border-bottom-secondary-A100 {
  border-bottom-color: #82B1FF !important;
}

.border-left-secondary-A100 {
  border-left-color: #82B1FF !important;
}

.bg-secondary-A200 {
  background-color: #448AFF !important;
}
.bg-secondary-A200.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-secondary-A200.text-auto {
  background-color: #448AFF !important;
}

.text-secondary-A200 {
  color: #448AFF !important;
}

.border-secondary-A200 {
  border-color: #448AFF !important;
}

.border-top-secondary-A200 {
  border-top-color: #448AFF !important;
}

.border-right-secondary-A200 {
  border-right-color: #448AFF !important;
}

.border-bottom-secondary-A200 {
  border-bottom-color: #448AFF !important;
}

.border-left-secondary-A200 {
  border-left-color: #448AFF !important;
}

.bg-secondary-A400 {
  background-color: #2979FF !important;
}
.bg-secondary-A400.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-secondary-A400.text-auto {
  background-color: #2979FF !important;
}

.text-secondary-A400 {
  color: #2979FF !important;
}

.border-secondary-A400 {
  border-color: #2979FF !important;
}

.border-top-secondary-A400 {
  border-top-color: #2979FF !important;
}

.border-right-secondary-A400 {
  border-right-color: #2979FF !important;
}

.border-bottom-secondary-A400 {
  border-bottom-color: #2979FF !important;
}

.border-left-secondary-A400 {
  border-left-color: #2979FF !important;
}

.bg-secondary-A700 {
  background-color: #2962FF !important;
}
.bg-secondary-A700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-secondary-A700.text-auto {
  background-color: #2962FF !important;
}

.text-secondary-A700 {
  color: #2962FF !important;
}

.border-secondary-A700 {
  border-color: #2962FF !important;
}

.border-top-secondary-A700 {
  border-top-color: #2962FF !important;
}

.border-right-secondary-A700 {
  border-right-color: #2962FF !important;
}

.border-bottom-secondary-A700 {
  border-bottom-color: #2962FF !important;
}

.border-left-secondary-A700 {
  border-left-color: #2962FF !important;
}

.bg-success-50 {
  background-color: #E8F5E9 !important;
}
.bg-success-50.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-success-50.text-auto {
  background-color: #E8F5E9 !important;
}

.text-success-50 {
  color: #E8F5E9 !important;
}

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

.border-top-success-50 {
  border-top-color: #E8F5E9 !important;
}

.border-right-success-50 {
  border-right-color: #E8F5E9 !important;
}

.border-bottom-success-50 {
  border-bottom-color: #E8F5E9 !important;
}

.border-left-success-50 {
  border-left-color: #E8F5E9 !important;
}

.bg-success-100 {
  background-color: #C8E6C9 !important;
}
.bg-success-100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-success-100.text-auto {
  background-color: #C8E6C9 !important;
}

.text-success-100 {
  color: #C8E6C9 !important;
}

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

.border-top-success-100 {
  border-top-color: #C8E6C9 !important;
}

.border-right-success-100 {
  border-right-color: #C8E6C9 !important;
}

.border-bottom-success-100 {
  border-bottom-color: #C8E6C9 !important;
}

.border-left-success-100 {
  border-left-color: #C8E6C9 !important;
}

.bg-success-200 {
  background-color: #A5D6A7 !important;
}
.bg-success-200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-success-200.text-auto {
  background-color: #A5D6A7 !important;
}

.text-success-200 {
  color: #A5D6A7 !important;
}

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

.border-top-success-200 {
  border-top-color: #A5D6A7 !important;
}

.border-right-success-200 {
  border-right-color: #A5D6A7 !important;
}

.border-bottom-success-200 {
  border-bottom-color: #A5D6A7 !important;
}

.border-left-success-200 {
  border-left-color: #A5D6A7 !important;
}

.bg-success-300 {
  background-color: #81C784 !important;
}
.bg-success-300.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-success-300.text-auto {
  background-color: #81C784 !important;
}

.text-success-300 {
  color: #81C784 !important;
}

.border-success-300 {
  border-color: #81C784 !important;
}

.border-top-success-300 {
  border-top-color: #81C784 !important;
}

.border-right-success-300 {
  border-right-color: #81C784 !important;
}

.border-bottom-success-300 {
  border-bottom-color: #81C784 !important;
}

.border-left-success-300 {
  border-left-color: #81C784 !important;
}

.bg-success-400 {
  background-color: #66BB6A !important;
}
.bg-success-400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-success-400.text-auto {
  background-color: #66BB6A !important;
}

.text-success-400 {
  color: #66BB6A !important;
}

.border-success-400 {
  border-color: #66BB6A !important;
}

.border-top-success-400 {
  border-top-color: #66BB6A !important;
}

.border-right-success-400 {
  border-right-color: #66BB6A !important;
}

.border-bottom-success-400 {
  border-bottom-color: #66BB6A !important;
}

.border-left-success-400 {
  border-left-color: #66BB6A !important;
}

.bg-success-500 {
  background-color: #4CAF50 !important;
}
.bg-success-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-success-500.text-auto {
  background-color: #4CAF50 !important;
}

.text-success-500 {
  color: #4CAF50 !important;
}

.border-success-500 {
  border-color: #4CAF50 !important;
}

.border-top-success-500 {
  border-top-color: #4CAF50 !important;
}

.border-right-success-500 {
  border-right-color: #4CAF50 !important;
}

.border-bottom-success-500 {
  border-bottom-color: #4CAF50 !important;
}

.border-left-success-500 {
  border-left-color: #4CAF50 !important;
}

.bg-success.text-auto {
  background-color: #4CAF50 !important;
}

.bg-success {
  background-color: #4CAF50 !important;
}
.bg-success.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.text-success {
  color: #4CAF50 !important;
}

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

.border-top-success {
  border-top-color: #4CAF50 !important;
}

.border-right-success {
  border-right-color: #4CAF50 !important;
}

.border-bottom-success {
  border-bottom-color: #4CAF50 !important;
}

.border-left-success {
  border-left-color: #4CAF50 !important;
}

.bg-success-600 {
  background-color: #43A047 !important;
}
.bg-success-600.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-success-600.text-auto {
  background-color: #43A047 !important;
}

.text-success-600 {
  color: #43A047 !important;
}

.border-success-600 {
  border-color: #43A047 !important;
}

.border-top-success-600 {
  border-top-color: #43A047 !important;
}

.border-right-success-600 {
  border-right-color: #43A047 !important;
}

.border-bottom-success-600 {
  border-bottom-color: #43A047 !important;
}

.border-left-success-600 {
  border-left-color: #43A047 !important;
}

.bg-success-700 {
  background-color: #388E3C !important;
}
.bg-success-700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-success-700.text-auto {
  background-color: #388E3C !important;
}

.text-success-700 {
  color: #388E3C !important;
}

.border-success-700 {
  border-color: #388E3C !important;
}

.border-top-success-700 {
  border-top-color: #388E3C !important;
}

.border-right-success-700 {
  border-right-color: #388E3C !important;
}

.border-bottom-success-700 {
  border-bottom-color: #388E3C !important;
}

.border-left-success-700 {
  border-left-color: #388E3C !important;
}

.bg-success-800 {
  background-color: #2E7D32 !important;
}
.bg-success-800.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-success-800.text-auto {
  background-color: #2E7D32 !important;
}

.text-success-800 {
  color: #2E7D32 !important;
}

.border-success-800 {
  border-color: #2E7D32 !important;
}

.border-top-success-800 {
  border-top-color: #2E7D32 !important;
}

.border-right-success-800 {
  border-right-color: #2E7D32 !important;
}

.border-bottom-success-800 {
  border-bottom-color: #2E7D32 !important;
}

.border-left-success-800 {
  border-left-color: #2E7D32 !important;
}

.bg-success-900 {
  background-color: #1B5E20 !important;
}
.bg-success-900.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-success-900.text-auto {
  background-color: #1B5E20 !important;
}

.text-success-900 {
  color: #1B5E20 !important;
}

.border-success-900 {
  border-color: #1B5E20 !important;
}

.border-top-success-900 {
  border-top-color: #1B5E20 !important;
}

.border-right-success-900 {
  border-right-color: #1B5E20 !important;
}

.border-bottom-success-900 {
  border-bottom-color: #1B5E20 !important;
}

.border-left-success-900 {
  border-left-color: #1B5E20 !important;
}

.bg-success-A100 {
  background-color: #B9F6CA !important;
}
.bg-success-A100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-success-A100.text-auto {
  background-color: #B9F6CA !important;
}

.text-success-A100 {
  color: #B9F6CA !important;
}

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

.border-top-success-A100 {
  border-top-color: #B9F6CA !important;
}

.border-right-success-A100 {
  border-right-color: #B9F6CA !important;
}

.border-bottom-success-A100 {
  border-bottom-color: #B9F6CA !important;
}

.border-left-success-A100 {
  border-left-color: #B9F6CA !important;
}

.bg-success-A200 {
  background-color: #69F0AE !important;
}
.bg-success-A200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-success-A200.text-auto {
  background-color: #69F0AE !important;
}

.text-success-A200 {
  color: #69F0AE !important;
}

.border-success-A200 {
  border-color: #69F0AE !important;
}

.border-top-success-A200 {
  border-top-color: #69F0AE !important;
}

.border-right-success-A200 {
  border-right-color: #69F0AE !important;
}

.border-bottom-success-A200 {
  border-bottom-color: #69F0AE !important;
}

.border-left-success-A200 {
  border-left-color: #69F0AE !important;
}

.bg-success-A400 {
  background-color: #00E676 !important;
}
.bg-success-A400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-success-A400.text-auto {
  background-color: #00E676 !important;
}

.text-success-A400 {
  color: #00E676 !important;
}

.border-success-A400 {
  border-color: #00E676 !important;
}

.border-top-success-A400 {
  border-top-color: #00E676 !important;
}

.border-right-success-A400 {
  border-right-color: #00E676 !important;
}

.border-bottom-success-A400 {
  border-bottom-color: #00E676 !important;
}

.border-left-success-A400 {
  border-left-color: #00E676 !important;
}

.bg-success-A700 {
  background-color: #00C853 !important;
}
.bg-success-A700.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-success-A700.text-auto {
  background-color: #00C853 !important;
}

.text-success-A700 {
  color: #00C853 !important;
}

.border-success-A700 {
  border-color: #00C853 !important;
}

.border-top-success-A700 {
  border-top-color: #00C853 !important;
}

.border-right-success-A700 {
  border-right-color: #00C853 !important;
}

.border-bottom-success-A700 {
  border-bottom-color: #00C853 !important;
}

.border-left-success-A700 {
  border-left-color: #00C853 !important;
}

.bg-info-50 {
  background-color: #E0F2F1 !important;
}
.bg-info-50.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-info-50.text-auto {
  background-color: #E0F2F1 !important;
}

.text-info-50 {
  color: #E0F2F1 !important;
}

.border-info-50 {
  border-color: #E0F2F1 !important;
}

.border-top-info-50 {
  border-top-color: #E0F2F1 !important;
}

.border-right-info-50 {
  border-right-color: #E0F2F1 !important;
}

.border-bottom-info-50 {
  border-bottom-color: #E0F2F1 !important;
}

.border-left-info-50 {
  border-left-color: #E0F2F1 !important;
}

.bg-info-100 {
  background-color: #B2DFDB !important;
}
.bg-info-100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-info-100.text-auto {
  background-color: #B2DFDB !important;
}

.text-info-100 {
  color: #B2DFDB !important;
}

.border-info-100 {
  border-color: #B2DFDB !important;
}

.border-top-info-100 {
  border-top-color: #B2DFDB !important;
}

.border-right-info-100 {
  border-right-color: #B2DFDB !important;
}

.border-bottom-info-100 {
  border-bottom-color: #B2DFDB !important;
}

.border-left-info-100 {
  border-left-color: #B2DFDB !important;
}

.bg-info-200 {
  background-color: #80CBC4 !important;
}
.bg-info-200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-info-200.text-auto {
  background-color: #80CBC4 !important;
}

.text-info-200 {
  color: #80CBC4 !important;
}

.border-info-200 {
  border-color: #80CBC4 !important;
}

.border-top-info-200 {
  border-top-color: #80CBC4 !important;
}

.border-right-info-200 {
  border-right-color: #80CBC4 !important;
}

.border-bottom-info-200 {
  border-bottom-color: #80CBC4 !important;
}

.border-left-info-200 {
  border-left-color: #80CBC4 !important;
}

.bg-info-300 {
  background-color: #4DB6AC !important;
}
.bg-info-300.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-info-300.text-auto {
  background-color: #4DB6AC !important;
}

.text-info-300 {
  color: #4DB6AC !important;
}

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

.border-top-info-300 {
  border-top-color: #4DB6AC !important;
}

.border-right-info-300 {
  border-right-color: #4DB6AC !important;
}

.border-bottom-info-300 {
  border-bottom-color: #4DB6AC !important;
}

.border-left-info-300 {
  border-left-color: #4DB6AC !important;
}

.bg-info-400 {
  background-color: #26A69A !important;
}
.bg-info-400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-info-400.text-auto {
  background-color: #26A69A !important;
}

.text-info-400 {
  color: #26A69A !important;
}

.border-info-400 {
  border-color: #26A69A !important;
}

.border-top-info-400 {
  border-top-color: #26A69A !important;
}

.border-right-info-400 {
  border-right-color: #26A69A !important;
}

.border-bottom-info-400 {
  border-bottom-color: #26A69A !important;
}

.border-left-info-400 {
  border-left-color: #26A69A !important;
}

.bg-info-500 {
  background-color: #009688 !important;
}
.bg-info-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-info-500.text-auto {
  background-color: #009688 !important;
}

.text-info-500 {
  color: #009688 !important;
}

.border-info-500 {
  border-color: #009688 !important;
}

.border-top-info-500 {
  border-top-color: #009688 !important;
}

.border-right-info-500 {
  border-right-color: #009688 !important;
}

.border-bottom-info-500 {
  border-bottom-color: #009688 !important;
}

.border-left-info-500 {
  border-left-color: #009688 !important;
}

.bg-info.text-auto {
  background-color: #009688 !important;
}

.bg-info {
  background-color: #009688 !important;
}
.bg-info.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.text-info {
  color: #009688 !important;
}

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

.border-top-info {
  border-top-color: #009688 !important;
}

.border-right-info {
  border-right-color: #009688 !important;
}

.border-bottom-info {
  border-bottom-color: #009688 !important;
}

.border-left-info {
  border-left-color: #009688 !important;
}

.bg-info-600 {
  background-color: #00897B !important;
}
.bg-info-600.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-info-600.text-auto {
  background-color: #00897B !important;
}

.text-info-600 {
  color: #00897B !important;
}

.border-info-600 {
  border-color: #00897B !important;
}

.border-top-info-600 {
  border-top-color: #00897B !important;
}

.border-right-info-600 {
  border-right-color: #00897B !important;
}

.border-bottom-info-600 {
  border-bottom-color: #00897B !important;
}

.border-left-info-600 {
  border-left-color: #00897B !important;
}

.bg-info-700 {
  background-color: #00796B !important;
}
.bg-info-700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-info-700.text-auto {
  background-color: #00796B !important;
}

.text-info-700 {
  color: #00796B !important;
}

.border-info-700 {
  border-color: #00796B !important;
}

.border-top-info-700 {
  border-top-color: #00796B !important;
}

.border-right-info-700 {
  border-right-color: #00796B !important;
}

.border-bottom-info-700 {
  border-bottom-color: #00796B !important;
}

.border-left-info-700 {
  border-left-color: #00796B !important;
}

.bg-info-800 {
  background-color: #00695C !important;
}
.bg-info-800.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-info-800.text-auto {
  background-color: #00695C !important;
}

.text-info-800 {
  color: #00695C !important;
}

.border-info-800 {
  border-color: #00695C !important;
}

.border-top-info-800 {
  border-top-color: #00695C !important;
}

.border-right-info-800 {
  border-right-color: #00695C !important;
}

.border-bottom-info-800 {
  border-bottom-color: #00695C !important;
}

.border-left-info-800 {
  border-left-color: #00695C !important;
}

.bg-info-900 {
  background-color: #004D40 !important;
}
.bg-info-900.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-info-900.text-auto {
  background-color: #004D40 !important;
}

.text-info-900 {
  color: #004D40 !important;
}

.border-info-900 {
  border-color: #004D40 !important;
}

.border-top-info-900 {
  border-top-color: #004D40 !important;
}

.border-right-info-900 {
  border-right-color: #004D40 !important;
}

.border-bottom-info-900 {
  border-bottom-color: #004D40 !important;
}

.border-left-info-900 {
  border-left-color: #004D40 !important;
}

.bg-info-A100 {
  background-color: #A7FFEB !important;
}
.bg-info-A100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-info-A100.text-auto {
  background-color: #A7FFEB !important;
}

.text-info-A100 {
  color: #A7FFEB !important;
}

.border-info-A100 {
  border-color: #A7FFEB !important;
}

.border-top-info-A100 {
  border-top-color: #A7FFEB !important;
}

.border-right-info-A100 {
  border-right-color: #A7FFEB !important;
}

.border-bottom-info-A100 {
  border-bottom-color: #A7FFEB !important;
}

.border-left-info-A100 {
  border-left-color: #A7FFEB !important;
}

.bg-info-A200 {
  background-color: #64FFDA !important;
}
.bg-info-A200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-info-A200.text-auto {
  background-color: #64FFDA !important;
}

.text-info-A200 {
  color: #64FFDA !important;
}

.border-info-A200 {
  border-color: #64FFDA !important;
}

.border-top-info-A200 {
  border-top-color: #64FFDA !important;
}

.border-right-info-A200 {
  border-right-color: #64FFDA !important;
}

.border-bottom-info-A200 {
  border-bottom-color: #64FFDA !important;
}

.border-left-info-A200 {
  border-left-color: #64FFDA !important;
}

.bg-info-A400 {
  background-color: #1DE9B6 !important;
}
.bg-info-A400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-info-A400.text-auto {
  background-color: #1DE9B6 !important;
}

.text-info-A400 {
  color: #1DE9B6 !important;
}

.border-info-A400 {
  border-color: #1DE9B6 !important;
}

.border-top-info-A400 {
  border-top-color: #1DE9B6 !important;
}

.border-right-info-A400 {
  border-right-color: #1DE9B6 !important;
}

.border-bottom-info-A400 {
  border-bottom-color: #1DE9B6 !important;
}

.border-left-info-A400 {
  border-left-color: #1DE9B6 !important;
}

.bg-info-A700 {
  background-color: #00BFA5 !important;
}
.bg-info-A700.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-info-A700.text-auto {
  background-color: #00BFA5 !important;
}

.text-info-A700 {
  color: #00BFA5 !important;
}

.border-info-A700 {
  border-color: #00BFA5 !important;
}

.border-top-info-A700 {
  border-top-color: #00BFA5 !important;
}

.border-right-info-A700 {
  border-right-color: #00BFA5 !important;
}

.border-bottom-info-A700 {
  border-bottom-color: #00BFA5 !important;
}

.border-left-info-A700 {
  border-left-color: #00BFA5 !important;
}

.bg-warning-50 {
  background-color: #FFF3E0 !important;
}
.bg-warning-50.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-warning-50.text-auto {
  background-color: #FFF3E0 !important;
}

.text-warning-50 {
  color: #FFF3E0 !important;
}

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

.border-top-warning-50 {
  border-top-color: #FFF3E0 !important;
}

.border-right-warning-50 {
  border-right-color: #FFF3E0 !important;
}

.border-bottom-warning-50 {
  border-bottom-color: #FFF3E0 !important;
}

.border-left-warning-50 {
  border-left-color: #FFF3E0 !important;
}

.bg-warning-100 {
  background-color: #FFE0B2 !important;
}
.bg-warning-100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-warning-100.text-auto {
  background-color: #FFE0B2 !important;
}

.text-warning-100 {
  color: #FFE0B2 !important;
}

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

.border-top-warning-100 {
  border-top-color: #FFE0B2 !important;
}

.border-right-warning-100 {
  border-right-color: #FFE0B2 !important;
}

.border-bottom-warning-100 {
  border-bottom-color: #FFE0B2 !important;
}

.border-left-warning-100 {
  border-left-color: #FFE0B2 !important;
}

.bg-warning-200 {
  background-color: #FFCC80 !important;
}
.bg-warning-200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-warning-200.text-auto {
  background-color: #FFCC80 !important;
}

.text-warning-200 {
  color: #FFCC80 !important;
}

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

.border-top-warning-200 {
  border-top-color: #FFCC80 !important;
}

.border-right-warning-200 {
  border-right-color: #FFCC80 !important;
}

.border-bottom-warning-200 {
  border-bottom-color: #FFCC80 !important;
}

.border-left-warning-200 {
  border-left-color: #FFCC80 !important;
}

.bg-warning-300 {
  background-color: #FFB74D !important;
}
.bg-warning-300.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-warning-300.text-auto {
  background-color: #FFB74D !important;
}

.text-warning-300 {
  color: #FFB74D !important;
}

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

.border-top-warning-300 {
  border-top-color: #FFB74D !important;
}

.border-right-warning-300 {
  border-right-color: #FFB74D !important;
}

.border-bottom-warning-300 {
  border-bottom-color: #FFB74D !important;
}

.border-left-warning-300 {
  border-left-color: #FFB74D !important;
}

.bg-warning-400 {
  background-color: #FFA726 !important;
}
.bg-warning-400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-warning-400.text-auto {
  background-color: #FFA726 !important;
}

.text-warning-400 {
  color: #FFA726 !important;
}

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

.border-top-warning-400 {
  border-top-color: #FFA726 !important;
}

.border-right-warning-400 {
  border-right-color: #FFA726 !important;
}

.border-bottom-warning-400 {
  border-bottom-color: #FFA726 !important;
}

.border-left-warning-400 {
  border-left-color: #FFA726 !important;
}

.bg-warning-500 {
  background-color: #FF9800 !important;
}
.bg-warning-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-warning-500.text-auto {
  background-color: #FF9800 !important;
}

.text-warning-500 {
  color: #FF9800 !important;
}

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

.border-top-warning-500 {
  border-top-color: #FF9800 !important;
}

.border-right-warning-500 {
  border-right-color: #FF9800 !important;
}

.border-bottom-warning-500 {
  border-bottom-color: #FF9800 !important;
}

.border-left-warning-500 {
  border-left-color: #FF9800 !important;
}

.bg-warning.text-auto {
  background-color: #FF9800 !important;
}

.bg-warning {
  background-color: #FF9800 !important;
}
.bg-warning.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.text-warning {
  color: #FF9800 !important;
}

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

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

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

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

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

.bg-warning-600 {
  background-color: #FB8C00 !important;
}
.bg-warning-600.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-warning-600.text-auto {
  background-color: #FB8C00 !important;
}

.text-warning-600 {
  color: #FB8C00 !important;
}

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

.border-top-warning-600 {
  border-top-color: #FB8C00 !important;
}

.border-right-warning-600 {
  border-right-color: #FB8C00 !important;
}

.border-bottom-warning-600 {
  border-bottom-color: #FB8C00 !important;
}

.border-left-warning-600 {
  border-left-color: #FB8C00 !important;
}

.bg-warning-700 {
  background-color: #F57C00 !important;
}
.bg-warning-700.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-warning-700.text-auto {
  background-color: #F57C00 !important;
}

.text-warning-700 {
  color: #F57C00 !important;
}

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

.border-top-warning-700 {
  border-top-color: #F57C00 !important;
}

.border-right-warning-700 {
  border-right-color: #F57C00 !important;
}

.border-bottom-warning-700 {
  border-bottom-color: #F57C00 !important;
}

.border-left-warning-700 {
  border-left-color: #F57C00 !important;
}

.bg-warning-800 {
  background-color: #EF6C00 !important;
}
.bg-warning-800.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-warning-800.text-auto {
  background-color: #EF6C00 !important;
}

.text-warning-800 {
  color: #EF6C00 !important;
}

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

.border-top-warning-800 {
  border-top-color: #EF6C00 !important;
}

.border-right-warning-800 {
  border-right-color: #EF6C00 !important;
}

.border-bottom-warning-800 {
  border-bottom-color: #EF6C00 !important;
}

.border-left-warning-800 {
  border-left-color: #EF6C00 !important;
}

.bg-warning-900 {
  background-color: #E65100 !important;
}
.bg-warning-900.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-warning-900.text-auto {
  background-color: #E65100 !important;
}

.text-warning-900 {
  color: #E65100 !important;
}

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

.border-top-warning-900 {
  border-top-color: #E65100 !important;
}

.border-right-warning-900 {
  border-right-color: #E65100 !important;
}

.border-bottom-warning-900 {
  border-bottom-color: #E65100 !important;
}

.border-left-warning-900 {
  border-left-color: #E65100 !important;
}

.bg-warning-A100 {
  background-color: #FFD180 !important;
}
.bg-warning-A100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-warning-A100.text-auto {
  background-color: #FFD180 !important;
}

.text-warning-A100 {
  color: #FFD180 !important;
}

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

.border-top-warning-A100 {
  border-top-color: #FFD180 !important;
}

.border-right-warning-A100 {
  border-right-color: #FFD180 !important;
}

.border-bottom-warning-A100 {
  border-bottom-color: #FFD180 !important;
}

.border-left-warning-A100 {
  border-left-color: #FFD180 !important;
}

.bg-warning-A200 {
  background-color: #FFAB40 !important;
}
.bg-warning-A200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-warning-A200.text-auto {
  background-color: #FFAB40 !important;
}

.text-warning-A200 {
  color: #FFAB40 !important;
}

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

.border-top-warning-A200 {
  border-top-color: #FFAB40 !important;
}

.border-right-warning-A200 {
  border-right-color: #FFAB40 !important;
}

.border-bottom-warning-A200 {
  border-bottom-color: #FFAB40 !important;
}

.border-left-warning-A200 {
  border-left-color: #FFAB40 !important;
}

.bg-warning-A400 {
  background-color: #FF9100 !important;
}
.bg-warning-A400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-warning-A400.text-auto {
  background-color: #FF9100 !important;
}

.text-warning-A400 {
  color: #FF9100 !important;
}

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

.border-top-warning-A400 {
  border-top-color: #FF9100 !important;
}

.border-right-warning-A400 {
  border-right-color: #FF9100 !important;
}

.border-bottom-warning-A400 {
  border-bottom-color: #FF9100 !important;
}

.border-left-warning-A400 {
  border-left-color: #FF9100 !important;
}

.bg-warning-A700 {
  background-color: #FF6D00 !important;
}
.bg-warning-A700.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-warning-A700.text-auto {
  background-color: #FF6D00 !important;
}

.text-warning-A700 {
  color: #FF6D00 !important;
}

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

.border-top-warning-A700 {
  border-top-color: #FF6D00 !important;
}

.border-right-warning-A700 {
  border-right-color: #FF6D00 !important;
}

.border-bottom-warning-A700 {
  border-bottom-color: #FF6D00 !important;
}

.border-left-warning-A700 {
  border-left-color: #FF6D00 !important;
}

.bg-danger-50 {
  background-color: #FFEBEE !important;
}
.bg-danger-50.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-danger-50.text-auto {
  background-color: #FFEBEE !important;
}

.text-danger-50 {
  color: #FFEBEE !important;
}

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

.border-top-danger-50 {
  border-top-color: #FFEBEE !important;
}

.border-right-danger-50 {
  border-right-color: #FFEBEE !important;
}

.border-bottom-danger-50 {
  border-bottom-color: #FFEBEE !important;
}

.border-left-danger-50 {
  border-left-color: #FFEBEE !important;
}

.bg-danger-100 {
  background-color: #FFCDD2 !important;
}
.bg-danger-100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-danger-100.text-auto {
  background-color: #FFCDD2 !important;
}

.text-danger-100 {
  color: #FFCDD2 !important;
}

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

.border-top-danger-100 {
  border-top-color: #FFCDD2 !important;
}

.border-right-danger-100 {
  border-right-color: #FFCDD2 !important;
}

.border-bottom-danger-100 {
  border-bottom-color: #FFCDD2 !important;
}

.border-left-danger-100 {
  border-left-color: #FFCDD2 !important;
}

.bg-danger-200 {
  background-color: #EF9A9A !important;
}
.bg-danger-200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-danger-200.text-auto {
  background-color: #EF9A9A !important;
}

.text-danger-200 {
  color: #EF9A9A !important;
}

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

.border-top-danger-200 {
  border-top-color: #EF9A9A !important;
}

.border-right-danger-200 {
  border-right-color: #EF9A9A !important;
}

.border-bottom-danger-200 {
  border-bottom-color: #EF9A9A !important;
}

.border-left-danger-200 {
  border-left-color: #EF9A9A !important;
}

.bg-danger-300 {
  background-color: #E57373 !important;
}
.bg-danger-300.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-danger-300.text-auto {
  background-color: #E57373 !important;
}

.text-danger-300 {
  color: #E57373 !important;
}

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

.border-top-danger-300 {
  border-top-color: #E57373 !important;
}

.border-right-danger-300 {
  border-right-color: #E57373 !important;
}

.border-bottom-danger-300 {
  border-bottom-color: #E57373 !important;
}

.border-left-danger-300 {
  border-left-color: #E57373 !important;
}

.bg-danger-400 {
  background-color: #EF5350 !important;
}
.bg-danger-400.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-danger-400.text-auto {
  background-color: #EF5350 !important;
}

.text-danger-400 {
  color: #EF5350 !important;
}

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

.border-top-danger-400 {
  border-top-color: #EF5350 !important;
}

.border-right-danger-400 {
  border-right-color: #EF5350 !important;
}

.border-bottom-danger-400 {
  border-bottom-color: #EF5350 !important;
}

.border-left-danger-400 {
  border-left-color: #EF5350 !important;
}

.bg-danger-500 {
  background-color: #F44336 !important;
}
.bg-danger-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-danger-500.text-auto {
  background-color: #F44336 !important;
}

.text-danger-500 {
  color: #F44336 !important;
}

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

.border-top-danger-500 {
  border-top-color: #F44336 !important;
}

.border-right-danger-500 {
  border-right-color: #F44336 !important;
}

.border-bottom-danger-500 {
  border-bottom-color: #F44336 !important;
}

.border-left-danger-500 {
  border-left-color: #F44336 !important;
}

.bg-danger.text-auto {
  background-color: #F44336 !important;
}

.bg-danger {
  background-color: #F44336 !important;
}
.bg-danger.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.text-danger {
  color: #F44336 !important;
}

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

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

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

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

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

.bg-danger-600 {
  background-color: #E53935 !important;
}
.bg-danger-600.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-danger-600.text-auto {
  background-color: #E53935 !important;
}

.text-danger-600 {
  color: #E53935 !important;
}

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

.border-top-danger-600 {
  border-top-color: #E53935 !important;
}

.border-right-danger-600 {
  border-right-color: #E53935 !important;
}

.border-bottom-danger-600 {
  border-bottom-color: #E53935 !important;
}

.border-left-danger-600 {
  border-left-color: #E53935 !important;
}

.bg-danger-700 {
  background-color: #D32F2F !important;
}
.bg-danger-700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-danger-700.text-auto {
  background-color: #D32F2F !important;
}

.text-danger-700 {
  color: #D32F2F !important;
}

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

.border-top-danger-700 {
  border-top-color: #D32F2F !important;
}

.border-right-danger-700 {
  border-right-color: #D32F2F !important;
}

.border-bottom-danger-700 {
  border-bottom-color: #D32F2F !important;
}

.border-left-danger-700 {
  border-left-color: #D32F2F !important;
}

.bg-danger-800 {
  background-color: #C62828 !important;
}
.bg-danger-800.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-danger-800.text-auto {
  background-color: #C62828 !important;
}

.text-danger-800 {
  color: #C62828 !important;
}

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

.border-top-danger-800 {
  border-top-color: #C62828 !important;
}

.border-right-danger-800 {
  border-right-color: #C62828 !important;
}

.border-bottom-danger-800 {
  border-bottom-color: #C62828 !important;
}

.border-left-danger-800 {
  border-left-color: #C62828 !important;
}

.bg-danger-900 {
  background-color: #B71C1C !important;
}
.bg-danger-900.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-danger-900.text-auto {
  background-color: #B71C1C !important;
}

.text-danger-900 {
  color: #B71C1C !important;
}

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

.border-top-danger-900 {
  border-top-color: #B71C1C !important;
}

.border-right-danger-900 {
  border-right-color: #B71C1C !important;
}

.border-bottom-danger-900 {
  border-bottom-color: #B71C1C !important;
}

.border-left-danger-900 {
  border-left-color: #B71C1C !important;
}

.bg-danger-A100 {
  background-color: #FF8A80 !important;
}
.bg-danger-A100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-danger-A100.text-auto {
  background-color: #FF8A80 !important;
}

.text-danger-A100 {
  color: #FF8A80 !important;
}

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

.border-top-danger-A100 {
  border-top-color: #FF8A80 !important;
}

.border-right-danger-A100 {
  border-right-color: #FF8A80 !important;
}

.border-bottom-danger-A100 {
  border-bottom-color: #FF8A80 !important;
}

.border-left-danger-A100 {
  border-left-color: #FF8A80 !important;
}

.bg-danger-A200 {
  background-color: #FF5252 !important;
}
.bg-danger-A200.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-danger-A200.text-auto {
  background-color: #FF5252 !important;
}

.text-danger-A200 {
  color: #FF5252 !important;
}

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

.border-top-danger-A200 {
  border-top-color: #FF5252 !important;
}

.border-right-danger-A200 {
  border-right-color: #FF5252 !important;
}

.border-bottom-danger-A200 {
  border-bottom-color: #FF5252 !important;
}

.border-left-danger-A200 {
  border-left-color: #FF5252 !important;
}

.bg-danger-A400 {
  background-color: #FF1744 !important;
}
.bg-danger-A400.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-danger-A400.text-auto {
  background-color: #FF1744 !important;
}

.text-danger-A400 {
  color: #FF1744 !important;
}

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

.border-top-danger-A400 {
  border-top-color: #FF1744 !important;
}

.border-right-danger-A400 {
  border-right-color: #FF1744 !important;
}

.border-bottom-danger-A400 {
  border-bottom-color: #FF1744 !important;
}

.border-left-danger-A400 {
  border-left-color: #FF1744 !important;
}

.bg-danger-A700 {
  background-color: #D50000 !important;
}
.bg-danger-A700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-danger-A700.text-auto {
  background-color: #D50000 !important;
}

.text-danger-A700 {
  color: #D50000 !important;
}

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

.border-top-danger-A700 {
  border-top-color: #D50000 !important;
}

.border-right-danger-A700 {
  border-right-color: #D50000 !important;
}

.border-bottom-danger-A700 {
  border-bottom-color: #D50000 !important;
}

.border-left-danger-A700 {
  border-left-color: #D50000 !important;
}

.bg-dark-500 {
  background-color: #343A40 !important;
}
.bg-dark-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-dark-500.text-auto {
  background-color: #343A40 !important;
}

.text-dark-500 {
  color: #343A40 !important;
}

.border-dark-500 {
  border-color: #343A40 !important;
}

.border-top-dark-500 {
  border-top-color: #343A40 !important;
}

.border-right-dark-500 {
  border-right-color: #343A40 !important;
}

.border-bottom-dark-500 {
  border-bottom-color: #343A40 !important;
}

.border-left-dark-500 {
  border-left-color: #343A40 !important;
}

.bg-dark.text-auto {
  background-color: #343A40 !important;
}

.bg-dark {
  background-color: #343A40 !important;
}
.bg-dark.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.text-dark {
  color: #343A40 !important;
}

.border-dark {
  border-color: #343A40 !important;
}

.border-top-dark {
  border-top-color: #343A40 !important;
}

.border-right-dark {
  border-right-color: #343A40 !important;
}

.border-bottom-dark {
  border-bottom-color: #343A40 !important;
}

.border-left-dark {
  border-left-color: #343A40 !important;
}

.bg-light-500 {
  background-color: #F8F9FA !important;
}
.bg-light-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-light-500.text-auto {
  background-color: #F8F9FA !important;
}

.text-light-500 {
  color: #F8F9FA !important;
}

.border-light-500 {
  border-color: #F8F9FA !important;
}

.border-top-light-500 {
  border-top-color: #F8F9FA !important;
}

.border-right-light-500 {
  border-right-color: #F8F9FA !important;
}

.border-bottom-light-500 {
  border-bottom-color: #F8F9FA !important;
}

.border-left-light-500 {
  border-left-color: #F8F9FA !important;
}

.bg-light.text-auto {
  background-color: #F8F9FA !important;
}

.bg-light {
  background-color: #F8F9FA !important;
}
.bg-light.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.text-light {
  color: #F8F9FA !important;
}

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

.border-top-light {
  border-top-color: #F8F9FA !important;
}

.border-right-light {
  border-right-color: #F8F9FA !important;
}

.border-bottom-light {
  border-bottom-color: #F8F9FA !important;
}

.border-left-light {
  border-left-color: #F8F9FA !important;
}

.bg-red-50 {
  background-color: #FFEBEE !important;
}
.bg-red-50.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-red-50.text-auto {
  background-color: #FFEBEE !important;
}

.text-red-50 {
  color: #FFEBEE !important;
}

.border-red-50 {
  border-color: #FFEBEE !important;
}

.border-top-red-50 {
  border-top-color: #FFEBEE !important;
}

.border-right-red-50 {
  border-right-color: #FFEBEE !important;
}

.border-bottom-red-50 {
  border-bottom-color: #FFEBEE !important;
}

.border-left-red-50 {
  border-left-color: #FFEBEE !important;
}

.bg-red-100 {
  background-color: #FFCDD2 !important;
}
.bg-red-100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-red-100.text-auto {
  background-color: #FFCDD2 !important;
}

.text-red-100 {
  color: #FFCDD2 !important;
}

.border-red-100 {
  border-color: #FFCDD2 !important;
}

.border-top-red-100 {
  border-top-color: #FFCDD2 !important;
}

.border-right-red-100 {
  border-right-color: #FFCDD2 !important;
}

.border-bottom-red-100 {
  border-bottom-color: #FFCDD2 !important;
}

.border-left-red-100 {
  border-left-color: #FFCDD2 !important;
}

.bg-red-200 {
  background-color: #EF9A9A !important;
}
.bg-red-200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-red-200.text-auto {
  background-color: #EF9A9A !important;
}

.text-red-200 {
  color: #EF9A9A !important;
}

.border-red-200 {
  border-color: #EF9A9A !important;
}

.border-top-red-200 {
  border-top-color: #EF9A9A !important;
}

.border-right-red-200 {
  border-right-color: #EF9A9A !important;
}

.border-bottom-red-200 {
  border-bottom-color: #EF9A9A !important;
}

.border-left-red-200 {
  border-left-color: #EF9A9A !important;
}

.bg-red-300 {
  background-color: #E57373 !important;
}
.bg-red-300.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-red-300.text-auto {
  background-color: #E57373 !important;
}

.text-red-300 {
  color: #E57373 !important;
}

.border-red-300 {
  border-color: #E57373 !important;
}

.border-top-red-300 {
  border-top-color: #E57373 !important;
}

.border-right-red-300 {
  border-right-color: #E57373 !important;
}

.border-bottom-red-300 {
  border-bottom-color: #E57373 !important;
}

.border-left-red-300 {
  border-left-color: #E57373 !important;
}

.bg-red-400 {
  background-color: #EF5350 !important;
}
.bg-red-400.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-red-400.text-auto {
  background-color: #EF5350 !important;
}

.text-red-400 {
  color: #EF5350 !important;
}

.border-red-400 {
  border-color: #EF5350 !important;
}

.border-top-red-400 {
  border-top-color: #EF5350 !important;
}

.border-right-red-400 {
  border-right-color: #EF5350 !important;
}

.border-bottom-red-400 {
  border-bottom-color: #EF5350 !important;
}

.border-left-red-400 {
  border-left-color: #EF5350 !important;
}

.bg-red-500 {
  background-color: #F44336 !important;
}
.bg-red-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-red-500.text-auto {
  background-color: #F44336 !important;
}

.text-red-500 {
  color: #F44336 !important;
}

.border-red-500 {
  border-color: #F44336 !important;
}

.border-top-red-500 {
  border-top-color: #F44336 !important;
}

.border-right-red-500 {
  border-right-color: #F44336 !important;
}

.border-bottom-red-500 {
  border-bottom-color: #F44336 !important;
}

.border-left-red-500 {
  border-left-color: #F44336 !important;
}

.bg-red.text-auto {
  background-color: #F44336 !important;
}

.bg-red {
  background-color: #F44336 !important;
}
.bg-red.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.text-red {
  color: #F44336 !important;
}

.border-red {
  border-color: #F44336 !important;
}

.border-top-red {
  border-top-color: #F44336 !important;
}

.border-right-red {
  border-right-color: #F44336 !important;
}

.border-bottom-red {
  border-bottom-color: #F44336 !important;
}

.border-left-red {
  border-left-color: #F44336 !important;
}

.bg-red-600 {
  background-color: #E53935 !important;
}
.bg-red-600.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-red-600.text-auto {
  background-color: #E53935 !important;
}

.text-red-600 {
  color: #E53935 !important;
}

.border-red-600 {
  border-color: #E53935 !important;
}

.border-top-red-600 {
  border-top-color: #E53935 !important;
}

.border-right-red-600 {
  border-right-color: #E53935 !important;
}

.border-bottom-red-600 {
  border-bottom-color: #E53935 !important;
}

.border-left-red-600 {
  border-left-color: #E53935 !important;
}

.bg-red-700 {
  background-color: #D32F2F !important;
}
.bg-red-700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-red-700.text-auto {
  background-color: #D32F2F !important;
}

.text-red-700 {
  color: #D32F2F !important;
}

.border-red-700 {
  border-color: #D32F2F !important;
}

.border-top-red-700 {
  border-top-color: #D32F2F !important;
}

.border-right-red-700 {
  border-right-color: #D32F2F !important;
}

.border-bottom-red-700 {
  border-bottom-color: #D32F2F !important;
}

.border-left-red-700 {
  border-left-color: #D32F2F !important;
}

.bg-red-800 {
  background-color: #C62828 !important;
}
.bg-red-800.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-red-800.text-auto {
  background-color: #C62828 !important;
}

.text-red-800 {
  color: #C62828 !important;
}

.border-red-800 {
  border-color: #C62828 !important;
}

.border-top-red-800 {
  border-top-color: #C62828 !important;
}

.border-right-red-800 {
  border-right-color: #C62828 !important;
}

.border-bottom-red-800 {
  border-bottom-color: #C62828 !important;
}

.border-left-red-800 {
  border-left-color: #C62828 !important;
}

.bg-red-900 {
  background-color: #B71C1C !important;
}
.bg-red-900.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-red-900.text-auto {
  background-color: #B71C1C !important;
}

.text-red-900 {
  color: #B71C1C !important;
}

.border-red-900 {
  border-color: #B71C1C !important;
}

.border-top-red-900 {
  border-top-color: #B71C1C !important;
}

.border-right-red-900 {
  border-right-color: #B71C1C !important;
}

.border-bottom-red-900 {
  border-bottom-color: #B71C1C !important;
}

.border-left-red-900 {
  border-left-color: #B71C1C !important;
}

.bg-red-A100 {
  background-color: #FF8A80 !important;
}
.bg-red-A100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-red-A100.text-auto {
  background-color: #FF8A80 !important;
}

.text-red-A100 {
  color: #FF8A80 !important;
}

.border-red-A100 {
  border-color: #FF8A80 !important;
}

.border-top-red-A100 {
  border-top-color: #FF8A80 !important;
}

.border-right-red-A100 {
  border-right-color: #FF8A80 !important;
}

.border-bottom-red-A100 {
  border-bottom-color: #FF8A80 !important;
}

.border-left-red-A100 {
  border-left-color: #FF8A80 !important;
}

.bg-red-A200 {
  background-color: #FF5252 !important;
}
.bg-red-A200.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-red-A200.text-auto {
  background-color: #FF5252 !important;
}

.text-red-A200 {
  color: #FF5252 !important;
}

.border-red-A200 {
  border-color: #FF5252 !important;
}

.border-top-red-A200 {
  border-top-color: #FF5252 !important;
}

.border-right-red-A200 {
  border-right-color: #FF5252 !important;
}

.border-bottom-red-A200 {
  border-bottom-color: #FF5252 !important;
}

.border-left-red-A200 {
  border-left-color: #FF5252 !important;
}

.bg-red-A400 {
  background-color: #FF1744 !important;
}
.bg-red-A400.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-red-A400.text-auto {
  background-color: #FF1744 !important;
}

.text-red-A400 {
  color: #FF1744 !important;
}

.border-red-A400 {
  border-color: #FF1744 !important;
}

.border-top-red-A400 {
  border-top-color: #FF1744 !important;
}

.border-right-red-A400 {
  border-right-color: #FF1744 !important;
}

.border-bottom-red-A400 {
  border-bottom-color: #FF1744 !important;
}

.border-left-red-A400 {
  border-left-color: #FF1744 !important;
}

.bg-red-A700 {
  background-color: #D50000 !important;
}
.bg-red-A700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-red-A700.text-auto {
  background-color: #D50000 !important;
}

.text-red-A700 {
  color: #D50000 !important;
}

.border-red-A700 {
  border-color: #D50000 !important;
}

.border-top-red-A700 {
  border-top-color: #D50000 !important;
}

.border-right-red-A700 {
  border-right-color: #D50000 !important;
}

.border-bottom-red-A700 {
  border-bottom-color: #D50000 !important;
}

.border-left-red-A700 {
  border-left-color: #D50000 !important;
}

.bg-blue-50 {
  background-color: #E3F2FD !important;
}
.bg-blue-50.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-blue-50.text-auto {
  background-color: #E3F2FD !important;
}

.text-blue-50 {
  color: #E3F2FD !important;
}

.border-blue-50 {
  border-color: #E3F2FD !important;
}

.border-top-blue-50 {
  border-top-color: #E3F2FD !important;
}

.border-right-blue-50 {
  border-right-color: #E3F2FD !important;
}

.border-bottom-blue-50 {
  border-bottom-color: #E3F2FD !important;
}

.border-left-blue-50 {
  border-left-color: #E3F2FD !important;
}

.bg-blue-100 {
  background-color: #BBDEFB !important;
}
.bg-blue-100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-blue-100.text-auto {
  background-color: #BBDEFB !important;
}

.text-blue-100 {
  color: #BBDEFB !important;
}

.border-blue-100 {
  border-color: #BBDEFB !important;
}

.border-top-blue-100 {
  border-top-color: #BBDEFB !important;
}

.border-right-blue-100 {
  border-right-color: #BBDEFB !important;
}

.border-bottom-blue-100 {
  border-bottom-color: #BBDEFB !important;
}

.border-left-blue-100 {
  border-left-color: #BBDEFB !important;
}

.bg-blue-200 {
  background-color: #90CAF9 !important;
}
.bg-blue-200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-blue-200.text-auto {
  background-color: #90CAF9 !important;
}

.text-blue-200 {
  color: #90CAF9 !important;
}

.border-blue-200 {
  border-color: #90CAF9 !important;
}

.border-top-blue-200 {
  border-top-color: #90CAF9 !important;
}

.border-right-blue-200 {
  border-right-color: #90CAF9 !important;
}

.border-bottom-blue-200 {
  border-bottom-color: #90CAF9 !important;
}

.border-left-blue-200 {
  border-left-color: #90CAF9 !important;
}

.bg-blue-300 {
  background-color: #64B5F6 !important;
}
.bg-blue-300.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-blue-300.text-auto {
  background-color: #64B5F6 !important;
}

.text-blue-300 {
  color: #64B5F6 !important;
}

.border-blue-300 {
  border-color: #64B5F6 !important;
}

.border-top-blue-300 {
  border-top-color: #64B5F6 !important;
}

.border-right-blue-300 {
  border-right-color: #64B5F6 !important;
}

.border-bottom-blue-300 {
  border-bottom-color: #64B5F6 !important;
}

.border-left-blue-300 {
  border-left-color: #64B5F6 !important;
}

.bg-blue-400 {
  background-color: #42A5F5 !important;
}
.bg-blue-400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-blue-400.text-auto {
  background-color: #42A5F5 !important;
}

.text-blue-400 {
  color: #42A5F5 !important;
}

.border-blue-400 {
  border-color: #42A5F5 !important;
}

.border-top-blue-400 {
  border-top-color: #42A5F5 !important;
}

.border-right-blue-400 {
  border-right-color: #42A5F5 !important;
}

.border-bottom-blue-400 {
  border-bottom-color: #42A5F5 !important;
}

.border-left-blue-400 {
  border-left-color: #42A5F5 !important;
}

.bg-blue-500 {
  background-color: #2196F3 !important;
}
.bg-blue-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-blue-500.text-auto {
  background-color: #2196F3 !important;
}

.text-blue-500 {
  color: #2196F3 !important;
}

.border-blue-500 {
  border-color: #2196F3 !important;
}

.border-top-blue-500 {
  border-top-color: #2196F3 !important;
}

.border-right-blue-500 {
  border-right-color: #2196F3 !important;
}

.border-bottom-blue-500 {
  border-bottom-color: #2196F3 !important;
}

.border-left-blue-500 {
  border-left-color: #2196F3 !important;
}

.bg-blue.text-auto {
  background-color: #2196F3 !important;
}

.bg-blue {
  background-color: #2196F3 !important;
}
.bg-blue.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.text-blue {
  color: #2196F3 !important;
}

.border-blue {
  border-color: #2196F3 !important;
}

.border-top-blue {
  border-top-color: #2196F3 !important;
}

.border-right-blue {
  border-right-color: #2196F3 !important;
}

.border-bottom-blue {
  border-bottom-color: #2196F3 !important;
}

.border-left-blue {
  border-left-color: #2196F3 !important;
}

.bg-blue-600 {
  background-color: #1E88E5 !important;
}
.bg-blue-600.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-blue-600.text-auto {
  background-color: #1E88E5 !important;
}

.text-blue-600 {
  color: #1E88E5 !important;
}

.border-blue-600 {
  border-color: #1E88E5 !important;
}

.border-top-blue-600 {
  border-top-color: #1E88E5 !important;
}

.border-right-blue-600 {
  border-right-color: #1E88E5 !important;
}

.border-bottom-blue-600 {
  border-bottom-color: #1E88E5 !important;
}

.border-left-blue-600 {
  border-left-color: #1E88E5 !important;
}

.bg-blue-700 {
  background-color: #1976D2 !important;
}
.bg-blue-700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-blue-700.text-auto {
  background-color: #1976D2 !important;
}

.text-blue-700 {
  color: #1976D2 !important;
}

.border-blue-700 {
  border-color: #1976D2 !important;
}

.border-top-blue-700 {
  border-top-color: #1976D2 !important;
}

.border-right-blue-700 {
  border-right-color: #1976D2 !important;
}

.border-bottom-blue-700 {
  border-bottom-color: #1976D2 !important;
}

.border-left-blue-700 {
  border-left-color: #1976D2 !important;
}

.bg-blue-800 {
  background-color: #1565C0 !important;
}
.bg-blue-800.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-blue-800.text-auto {
  background-color: #1565C0 !important;
}

.text-blue-800 {
  color: #1565C0 !important;
}

.border-blue-800 {
  border-color: #1565C0 !important;
}

.border-top-blue-800 {
  border-top-color: #1565C0 !important;
}

.border-right-blue-800 {
  border-right-color: #1565C0 !important;
}

.border-bottom-blue-800 {
  border-bottom-color: #1565C0 !important;
}

.border-left-blue-800 {
  border-left-color: #1565C0 !important;
}

.bg-blue-900 {
  background-color: #0D47A1 !important;
}
.bg-blue-900.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-blue-900.text-auto {
  background-color: #0D47A1 !important;
}

.text-blue-900 {
  color: #0D47A1 !important;
}

.border-blue-900 {
  border-color: #0D47A1 !important;
}

.border-top-blue-900 {
  border-top-color: #0D47A1 !important;
}

.border-right-blue-900 {
  border-right-color: #0D47A1 !important;
}

.border-bottom-blue-900 {
  border-bottom-color: #0D47A1 !important;
}

.border-left-blue-900 {
  border-left-color: #0D47A1 !important;
}

.bg-blue-A100 {
  background-color: #82B1FF !important;
}
.bg-blue-A100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-blue-A100.text-auto {
  background-color: #82B1FF !important;
}

.text-blue-A100 {
  color: #82B1FF !important;
}

.border-blue-A100 {
  border-color: #82B1FF !important;
}

.border-top-blue-A100 {
  border-top-color: #82B1FF !important;
}

.border-right-blue-A100 {
  border-right-color: #82B1FF !important;
}

.border-bottom-blue-A100 {
  border-bottom-color: #82B1FF !important;
}

.border-left-blue-A100 {
  border-left-color: #82B1FF !important;
}

.bg-blue-A200 {
  background-color: #448AFF !important;
}
.bg-blue-A200.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-blue-A200.text-auto {
  background-color: #448AFF !important;
}

.text-blue-A200 {
  color: #448AFF !important;
}

.border-blue-A200 {
  border-color: #448AFF !important;
}

.border-top-blue-A200 {
  border-top-color: #448AFF !important;
}

.border-right-blue-A200 {
  border-right-color: #448AFF !important;
}

.border-bottom-blue-A200 {
  border-bottom-color: #448AFF !important;
}

.border-left-blue-A200 {
  border-left-color: #448AFF !important;
}

.bg-blue-A400 {
  background-color: #2979FF !important;
}
.bg-blue-A400.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-blue-A400.text-auto {
  background-color: #2979FF !important;
}

.text-blue-A400 {
  color: #2979FF !important;
}

.border-blue-A400 {
  border-color: #2979FF !important;
}

.border-top-blue-A400 {
  border-top-color: #2979FF !important;
}

.border-right-blue-A400 {
  border-right-color: #2979FF !important;
}

.border-bottom-blue-A400 {
  border-bottom-color: #2979FF !important;
}

.border-left-blue-A400 {
  border-left-color: #2979FF !important;
}

.bg-blue-A700 {
  background-color: #2962FF !important;
}
.bg-blue-A700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-blue-A700.text-auto {
  background-color: #2962FF !important;
}

.text-blue-A700 {
  color: #2962FF !important;
}

.border-blue-A700 {
  border-color: #2962FF !important;
}

.border-top-blue-A700 {
  border-top-color: #2962FF !important;
}

.border-right-blue-A700 {
  border-right-color: #2962FF !important;
}

.border-bottom-blue-A700 {
  border-bottom-color: #2962FF !important;
}

.border-left-blue-A700 {
  border-left-color: #2962FF !important;
}

.bg-teal-50 {
  background-color: #E0F2F1 !important;
}
.bg-teal-50.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-teal-50.text-auto {
  background-color: #E0F2F1 !important;
}

.text-teal-50 {
  color: #E0F2F1 !important;
}

.border-teal-50 {
  border-color: #E0F2F1 !important;
}

.border-top-teal-50 {
  border-top-color: #E0F2F1 !important;
}

.border-right-teal-50 {
  border-right-color: #E0F2F1 !important;
}

.border-bottom-teal-50 {
  border-bottom-color: #E0F2F1 !important;
}

.border-left-teal-50 {
  border-left-color: #E0F2F1 !important;
}

.bg-teal-100 {
  background-color: #B2DFDB !important;
}
.bg-teal-100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-teal-100.text-auto {
  background-color: #B2DFDB !important;
}

.text-teal-100 {
  color: #B2DFDB !important;
}

.border-teal-100 {
  border-color: #B2DFDB !important;
}

.border-top-teal-100 {
  border-top-color: #B2DFDB !important;
}

.border-right-teal-100 {
  border-right-color: #B2DFDB !important;
}

.border-bottom-teal-100 {
  border-bottom-color: #B2DFDB !important;
}

.border-left-teal-100 {
  border-left-color: #B2DFDB !important;
}

.bg-teal-200 {
  background-color: #80CBC4 !important;
}
.bg-teal-200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-teal-200.text-auto {
  background-color: #80CBC4 !important;
}

.text-teal-200 {
  color: #80CBC4 !important;
}

.border-teal-200 {
  border-color: #80CBC4 !important;
}

.border-top-teal-200 {
  border-top-color: #80CBC4 !important;
}

.border-right-teal-200 {
  border-right-color: #80CBC4 !important;
}

.border-bottom-teal-200 {
  border-bottom-color: #80CBC4 !important;
}

.border-left-teal-200 {
  border-left-color: #80CBC4 !important;
}

.bg-teal-300 {
  background-color: #4DB6AC !important;
}
.bg-teal-300.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-teal-300.text-auto {
  background-color: #4DB6AC !important;
}

.text-teal-300 {
  color: #4DB6AC !important;
}

.border-teal-300 {
  border-color: #4DB6AC !important;
}

.border-top-teal-300 {
  border-top-color: #4DB6AC !important;
}

.border-right-teal-300 {
  border-right-color: #4DB6AC !important;
}

.border-bottom-teal-300 {
  border-bottom-color: #4DB6AC !important;
}

.border-left-teal-300 {
  border-left-color: #4DB6AC !important;
}

.bg-teal-400 {
  background-color: #26A69A !important;
}
.bg-teal-400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-teal-400.text-auto {
  background-color: #26A69A !important;
}

.text-teal-400 {
  color: #26A69A !important;
}

.border-teal-400 {
  border-color: #26A69A !important;
}

.border-top-teal-400 {
  border-top-color: #26A69A !important;
}

.border-right-teal-400 {
  border-right-color: #26A69A !important;
}

.border-bottom-teal-400 {
  border-bottom-color: #26A69A !important;
}

.border-left-teal-400 {
  border-left-color: #26A69A !important;
}

.bg-teal-500 {
  background-color: #009688 !important;
}
.bg-teal-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-teal-500.text-auto {
  background-color: #009688 !important;
}

.text-teal-500 {
  color: #009688 !important;
}

.border-teal-500 {
  border-color: #009688 !important;
}

.border-top-teal-500 {
  border-top-color: #009688 !important;
}

.border-right-teal-500 {
  border-right-color: #009688 !important;
}

.border-bottom-teal-500 {
  border-bottom-color: #009688 !important;
}

.border-left-teal-500 {
  border-left-color: #009688 !important;
}

.bg-teal.text-auto {
  background-color: #009688 !important;
}

.bg-teal {
  background-color: #009688 !important;
}
.bg-teal.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.text-teal {
  color: #009688 !important;
}

.border-teal {
  border-color: #009688 !important;
}

.border-top-teal {
  border-top-color: #009688 !important;
}

.border-right-teal {
  border-right-color: #009688 !important;
}

.border-bottom-teal {
  border-bottom-color: #009688 !important;
}

.border-left-teal {
  border-left-color: #009688 !important;
}

.bg-teal-600 {
  background-color: #00897B !important;
}
.bg-teal-600.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-teal-600.text-auto {
  background-color: #00897B !important;
}

.text-teal-600 {
  color: #00897B !important;
}

.border-teal-600 {
  border-color: #00897B !important;
}

.border-top-teal-600 {
  border-top-color: #00897B !important;
}

.border-right-teal-600 {
  border-right-color: #00897B !important;
}

.border-bottom-teal-600 {
  border-bottom-color: #00897B !important;
}

.border-left-teal-600 {
  border-left-color: #00897B !important;
}

.bg-teal-700 {
  background-color: #00796B !important;
}
.bg-teal-700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-teal-700.text-auto {
  background-color: #00796B !important;
}

.text-teal-700 {
  color: #00796B !important;
}

.border-teal-700 {
  border-color: #00796B !important;
}

.border-top-teal-700 {
  border-top-color: #00796B !important;
}

.border-right-teal-700 {
  border-right-color: #00796B !important;
}

.border-bottom-teal-700 {
  border-bottom-color: #00796B !important;
}

.border-left-teal-700 {
  border-left-color: #00796B !important;
}

.bg-teal-800 {
  background-color: #00695C !important;
}
.bg-teal-800.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-teal-800.text-auto {
  background-color: #00695C !important;
}

.text-teal-800 {
  color: #00695C !important;
}

.border-teal-800 {
  border-color: #00695C !important;
}

.border-top-teal-800 {
  border-top-color: #00695C !important;
}

.border-right-teal-800 {
  border-right-color: #00695C !important;
}

.border-bottom-teal-800 {
  border-bottom-color: #00695C !important;
}

.border-left-teal-800 {
  border-left-color: #00695C !important;
}

.bg-teal-900 {
  background-color: #004D40 !important;
}
.bg-teal-900.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-teal-900.text-auto {
  background-color: #004D40 !important;
}

.text-teal-900 {
  color: #004D40 !important;
}

.border-teal-900 {
  border-color: #004D40 !important;
}

.border-top-teal-900 {
  border-top-color: #004D40 !important;
}

.border-right-teal-900 {
  border-right-color: #004D40 !important;
}

.border-bottom-teal-900 {
  border-bottom-color: #004D40 !important;
}

.border-left-teal-900 {
  border-left-color: #004D40 !important;
}

.bg-teal-A100 {
  background-color: #A7FFEB !important;
}
.bg-teal-A100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-teal-A100.text-auto {
  background-color: #A7FFEB !important;
}

.text-teal-A100 {
  color: #A7FFEB !important;
}

.border-teal-A100 {
  border-color: #A7FFEB !important;
}

.border-top-teal-A100 {
  border-top-color: #A7FFEB !important;
}

.border-right-teal-A100 {
  border-right-color: #A7FFEB !important;
}

.border-bottom-teal-A100 {
  border-bottom-color: #A7FFEB !important;
}

.border-left-teal-A100 {
  border-left-color: #A7FFEB !important;
}

.bg-teal-A200 {
  background-color: #64FFDA !important;
}
.bg-teal-A200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-teal-A200.text-auto {
  background-color: #64FFDA !important;
}

.text-teal-A200 {
  color: #64FFDA !important;
}

.border-teal-A200 {
  border-color: #64FFDA !important;
}

.border-top-teal-A200 {
  border-top-color: #64FFDA !important;
}

.border-right-teal-A200 {
  border-right-color: #64FFDA !important;
}

.border-bottom-teal-A200 {
  border-bottom-color: #64FFDA !important;
}

.border-left-teal-A200 {
  border-left-color: #64FFDA !important;
}

.bg-teal-A400 {
  background-color: #1DE9B6 !important;
}
.bg-teal-A400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-teal-A400.text-auto {
  background-color: #1DE9B6 !important;
}

.text-teal-A400 {
  color: #1DE9B6 !important;
}

.border-teal-A400 {
  border-color: #1DE9B6 !important;
}

.border-top-teal-A400 {
  border-top-color: #1DE9B6 !important;
}

.border-right-teal-A400 {
  border-right-color: #1DE9B6 !important;
}

.border-bottom-teal-A400 {
  border-bottom-color: #1DE9B6 !important;
}

.border-left-teal-A400 {
  border-left-color: #1DE9B6 !important;
}

.bg-teal-A700 {
  background-color: #00BFA5 !important;
}
.bg-teal-A700.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-teal-A700.text-auto {
  background-color: #00BFA5 !important;
}

.text-teal-A700 {
  color: #00BFA5 !important;
}

.border-teal-A700 {
  border-color: #00BFA5 !important;
}

.border-top-teal-A700 {
  border-top-color: #00BFA5 !important;
}

.border-right-teal-A700 {
  border-right-color: #00BFA5 !important;
}

.border-bottom-teal-A700 {
  border-bottom-color: #00BFA5 !important;
}

.border-left-teal-A700 {
  border-left-color: #00BFA5 !important;
}

.bg-green-50 {
  background-color: #E8F5E9 !important;
}
.bg-green-50.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-green-50.text-auto {
  background-color: #E8F5E9 !important;
}

.text-green-50 {
  color: #E8F5E9 !important;
}

.border-green-50 {
  border-color: #E8F5E9 !important;
}

.border-top-green-50 {
  border-top-color: #E8F5E9 !important;
}

.border-right-green-50 {
  border-right-color: #E8F5E9 !important;
}

.border-bottom-green-50 {
  border-bottom-color: #E8F5E9 !important;
}

.border-left-green-50 {
  border-left-color: #E8F5E9 !important;
}

.bg-green-100 {
  background-color: #C8E6C9 !important;
}
.bg-green-100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-green-100.text-auto {
  background-color: #C8E6C9 !important;
}

.text-green-100 {
  color: #C8E6C9 !important;
}

.border-green-100 {
  border-color: #C8E6C9 !important;
}

.border-top-green-100 {
  border-top-color: #C8E6C9 !important;
}

.border-right-green-100 {
  border-right-color: #C8E6C9 !important;
}

.border-bottom-green-100 {
  border-bottom-color: #C8E6C9 !important;
}

.border-left-green-100 {
  border-left-color: #C8E6C9 !important;
}

.bg-green-200 {
  background-color: #A5D6A7 !important;
}
.bg-green-200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-green-200.text-auto {
  background-color: #A5D6A7 !important;
}

.text-green-200 {
  color: #A5D6A7 !important;
}

.border-green-200 {
  border-color: #A5D6A7 !important;
}

.border-top-green-200 {
  border-top-color: #A5D6A7 !important;
}

.border-right-green-200 {
  border-right-color: #A5D6A7 !important;
}

.border-bottom-green-200 {
  border-bottom-color: #A5D6A7 !important;
}

.border-left-green-200 {
  border-left-color: #A5D6A7 !important;
}

.bg-green-300 {
  background-color: #81C784 !important;
}
.bg-green-300.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-green-300.text-auto {
  background-color: #81C784 !important;
}

.text-green-300 {
  color: #81C784 !important;
}

.border-green-300 {
  border-color: #81C784 !important;
}

.border-top-green-300 {
  border-top-color: #81C784 !important;
}

.border-right-green-300 {
  border-right-color: #81C784 !important;
}

.border-bottom-green-300 {
  border-bottom-color: #81C784 !important;
}

.border-left-green-300 {
  border-left-color: #81C784 !important;
}

.bg-green-400 {
  background-color: #66BB6A !important;
}
.bg-green-400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-green-400.text-auto {
  background-color: #66BB6A !important;
}

.text-green-400 {
  color: #66BB6A !important;
}

.border-green-400 {
  border-color: #66BB6A !important;
}

.border-top-green-400 {
  border-top-color: #66BB6A !important;
}

.border-right-green-400 {
  border-right-color: #66BB6A !important;
}

.border-bottom-green-400 {
  border-bottom-color: #66BB6A !important;
}

.border-left-green-400 {
  border-left-color: #66BB6A !important;
}

.bg-green-500 {
  background-color: #4CAF50 !important;
}
.bg-green-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-green-500.text-auto {
  background-color: #4CAF50 !important;
}

.text-green-500 {
  color: #4CAF50 !important;
}

.border-green-500 {
  border-color: #4CAF50 !important;
}

.border-top-green-500 {
  border-top-color: #4CAF50 !important;
}

.border-right-green-500 {
  border-right-color: #4CAF50 !important;
}

.border-bottom-green-500 {
  border-bottom-color: #4CAF50 !important;
}

.border-left-green-500 {
  border-left-color: #4CAF50 !important;
}

.bg-green.text-auto {
  background-color: #4CAF50 !important;
}

.bg-green {
  background-color: #4CAF50 !important;
}
.bg-green.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.text-green {
  color: #4CAF50 !important;
}

.border-green {
  border-color: #4CAF50 !important;
}

.border-top-green {
  border-top-color: #4CAF50 !important;
}

.border-right-green {
  border-right-color: #4CAF50 !important;
}

.border-bottom-green {
  border-bottom-color: #4CAF50 !important;
}

.border-left-green {
  border-left-color: #4CAF50 !important;
}

.bg-green-600 {
  background-color: #43A047 !important;
}
.bg-green-600.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-green-600.text-auto {
  background-color: #43A047 !important;
}

.text-green-600 {
  color: #43A047 !important;
}

.border-green-600 {
  border-color: #43A047 !important;
}

.border-top-green-600 {
  border-top-color: #43A047 !important;
}

.border-right-green-600 {
  border-right-color: #43A047 !important;
}

.border-bottom-green-600 {
  border-bottom-color: #43A047 !important;
}

.border-left-green-600 {
  border-left-color: #43A047 !important;
}

.bg-green-700 {
  background-color: #388E3C !important;
}
.bg-green-700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-green-700.text-auto {
  background-color: #388E3C !important;
}

.text-green-700 {
  color: #388E3C !important;
}

.border-green-700 {
  border-color: #388E3C !important;
}

.border-top-green-700 {
  border-top-color: #388E3C !important;
}

.border-right-green-700 {
  border-right-color: #388E3C !important;
}

.border-bottom-green-700 {
  border-bottom-color: #388E3C !important;
}

.border-left-green-700 {
  border-left-color: #388E3C !important;
}

.bg-green-800 {
  background-color: #2E7D32 !important;
}
.bg-green-800.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-green-800.text-auto {
  background-color: #2E7D32 !important;
}

.text-green-800 {
  color: #2E7D32 !important;
}

.border-green-800 {
  border-color: #2E7D32 !important;
}

.border-top-green-800 {
  border-top-color: #2E7D32 !important;
}

.border-right-green-800 {
  border-right-color: #2E7D32 !important;
}

.border-bottom-green-800 {
  border-bottom-color: #2E7D32 !important;
}

.border-left-green-800 {
  border-left-color: #2E7D32 !important;
}

.bg-green-900 {
  background-color: #1B5E20 !important;
}
.bg-green-900.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-green-900.text-auto {
  background-color: #1B5E20 !important;
}

.text-green-900 {
  color: #1B5E20 !important;
}

.border-green-900 {
  border-color: #1B5E20 !important;
}

.border-top-green-900 {
  border-top-color: #1B5E20 !important;
}

.border-right-green-900 {
  border-right-color: #1B5E20 !important;
}

.border-bottom-green-900 {
  border-bottom-color: #1B5E20 !important;
}

.border-left-green-900 {
  border-left-color: #1B5E20 !important;
}

.bg-green-A100 {
  background-color: #B9F6CA !important;
}
.bg-green-A100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-green-A100.text-auto {
  background-color: #B9F6CA !important;
}

.text-green-A100 {
  color: #B9F6CA !important;
}

.border-green-A100 {
  border-color: #B9F6CA !important;
}

.border-top-green-A100 {
  border-top-color: #B9F6CA !important;
}

.border-right-green-A100 {
  border-right-color: #B9F6CA !important;
}

.border-bottom-green-A100 {
  border-bottom-color: #B9F6CA !important;
}

.border-left-green-A100 {
  border-left-color: #B9F6CA !important;
}

.bg-green-A200 {
  background-color: #69F0AE !important;
}
.bg-green-A200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-green-A200.text-auto {
  background-color: #69F0AE !important;
}

.text-green-A200 {
  color: #69F0AE !important;
}

.border-green-A200 {
  border-color: #69F0AE !important;
}

.border-top-green-A200 {
  border-top-color: #69F0AE !important;
}

.border-right-green-A200 {
  border-right-color: #69F0AE !important;
}

.border-bottom-green-A200 {
  border-bottom-color: #69F0AE !important;
}

.border-left-green-A200 {
  border-left-color: #69F0AE !important;
}

.bg-green-A400 {
  background-color: #00E676 !important;
}
.bg-green-A400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-green-A400.text-auto {
  background-color: #00E676 !important;
}

.text-green-A400 {
  color: #00E676 !important;
}

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

.border-top-green-A400 {
  border-top-color: #00E676 !important;
}

.border-right-green-A400 {
  border-right-color: #00E676 !important;
}

.border-bottom-green-A400 {
  border-bottom-color: #00E676 !important;
}

.border-left-green-A400 {
  border-left-color: #00E676 !important;
}

.bg-green-A700 {
  background-color: #00C853 !important;
}
.bg-green-A700.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-green-A700.text-auto {
  background-color: #00C853 !important;
}

.text-green-A700 {
  color: #00C853 !important;
}

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

.border-top-green-A700 {
  border-top-color: #00C853 !important;
}

.border-right-green-A700 {
  border-right-color: #00C853 !important;
}

.border-bottom-green-A700 {
  border-bottom-color: #00C853 !important;
}

.border-left-green-A700 {
  border-left-color: #00C853 !important;
}

.bg-orange-50 {
  background-color: #FFF3E0 !important;
}
.bg-orange-50.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-orange-50.text-auto {
  background-color: #FFF3E0 !important;
}

.text-orange-50 {
  color: #FFF3E0 !important;
}

.border-orange-50 {
  border-color: #FFF3E0 !important;
}

.border-top-orange-50 {
  border-top-color: #FFF3E0 !important;
}

.border-right-orange-50 {
  border-right-color: #FFF3E0 !important;
}

.border-bottom-orange-50 {
  border-bottom-color: #FFF3E0 !important;
}

.border-left-orange-50 {
  border-left-color: #FFF3E0 !important;
}

.bg-orange-100 {
  background-color: #FFE0B2 !important;
}
.bg-orange-100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-orange-100.text-auto {
  background-color: #FFE0B2 !important;
}

.text-orange-100 {
  color: #FFE0B2 !important;
}

.border-orange-100 {
  border-color: #FFE0B2 !important;
}

.border-top-orange-100 {
  border-top-color: #FFE0B2 !important;
}

.border-right-orange-100 {
  border-right-color: #FFE0B2 !important;
}

.border-bottom-orange-100 {
  border-bottom-color: #FFE0B2 !important;
}

.border-left-orange-100 {
  border-left-color: #FFE0B2 !important;
}

.bg-orange-200 {
  background-color: #FFCC80 !important;
}
.bg-orange-200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-orange-200.text-auto {
  background-color: #FFCC80 !important;
}

.text-orange-200 {
  color: #FFCC80 !important;
}

.border-orange-200 {
  border-color: #FFCC80 !important;
}

.border-top-orange-200 {
  border-top-color: #FFCC80 !important;
}

.border-right-orange-200 {
  border-right-color: #FFCC80 !important;
}

.border-bottom-orange-200 {
  border-bottom-color: #FFCC80 !important;
}

.border-left-orange-200 {
  border-left-color: #FFCC80 !important;
}

.bg-orange-300 {
  background-color: #FFB74D !important;
}
.bg-orange-300.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-orange-300.text-auto {
  background-color: #FFB74D !important;
}

.text-orange-300 {
  color: #FFB74D !important;
}

.border-orange-300 {
  border-color: #FFB74D !important;
}

.border-top-orange-300 {
  border-top-color: #FFB74D !important;
}

.border-right-orange-300 {
  border-right-color: #FFB74D !important;
}

.border-bottom-orange-300 {
  border-bottom-color: #FFB74D !important;
}

.border-left-orange-300 {
  border-left-color: #FFB74D !important;
}

.bg-orange-400 {
  background-color: #FFA726 !important;
}
.bg-orange-400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-orange-400.text-auto {
  background-color: #FFA726 !important;
}

.text-orange-400 {
  color: #FFA726 !important;
}

.border-orange-400 {
  border-color: #FFA726 !important;
}

.border-top-orange-400 {
  border-top-color: #FFA726 !important;
}

.border-right-orange-400 {
  border-right-color: #FFA726 !important;
}

.border-bottom-orange-400 {
  border-bottom-color: #FFA726 !important;
}

.border-left-orange-400 {
  border-left-color: #FFA726 !important;
}

.bg-orange-500 {
  background-color: #FF9800 !important;
}
.bg-orange-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-orange-500.text-auto {
  background-color: #FF9800 !important;
}

.text-orange-500 {
  color: #FF9800 !important;
}

.border-orange-500 {
  border-color: #FF9800 !important;
}

.border-top-orange-500 {
  border-top-color: #FF9800 !important;
}

.border-right-orange-500 {
  border-right-color: #FF9800 !important;
}

.border-bottom-orange-500 {
  border-bottom-color: #FF9800 !important;
}

.border-left-orange-500 {
  border-left-color: #FF9800 !important;
}

.bg-orange.text-auto {
  background-color: #FF9800 !important;
}

.bg-orange {
  background-color: #FF9800 !important;
}
.bg-orange.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.text-orange {
  color: #FF9800 !important;
}

.border-orange {
  border-color: #FF9800 !important;
}

.border-top-orange {
  border-top-color: #FF9800 !important;
}

.border-right-orange {
  border-right-color: #FF9800 !important;
}

.border-bottom-orange {
  border-bottom-color: #FF9800 !important;
}

.border-left-orange {
  border-left-color: #FF9800 !important;
}

.bg-orange-600 {
  background-color: #FB8C00 !important;
}
.bg-orange-600.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-orange-600.text-auto {
  background-color: #FB8C00 !important;
}

.text-orange-600 {
  color: #FB8C00 !important;
}

.border-orange-600 {
  border-color: #FB8C00 !important;
}

.border-top-orange-600 {
  border-top-color: #FB8C00 !important;
}

.border-right-orange-600 {
  border-right-color: #FB8C00 !important;
}

.border-bottom-orange-600 {
  border-bottom-color: #FB8C00 !important;
}

.border-left-orange-600 {
  border-left-color: #FB8C00 !important;
}

.bg-orange-700 {
  background-color: #F57C00 !important;
}
.bg-orange-700.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-orange-700.text-auto {
  background-color: #F57C00 !important;
}

.text-orange-700 {
  color: #F57C00 !important;
}

.border-orange-700 {
  border-color: #F57C00 !important;
}

.border-top-orange-700 {
  border-top-color: #F57C00 !important;
}

.border-right-orange-700 {
  border-right-color: #F57C00 !important;
}

.border-bottom-orange-700 {
  border-bottom-color: #F57C00 !important;
}

.border-left-orange-700 {
  border-left-color: #F57C00 !important;
}

.bg-orange-800 {
  background-color: #EF6C00 !important;
}
.bg-orange-800.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-orange-800.text-auto {
  background-color: #EF6C00 !important;
}

.text-orange-800 {
  color: #EF6C00 !important;
}

.border-orange-800 {
  border-color: #EF6C00 !important;
}

.border-top-orange-800 {
  border-top-color: #EF6C00 !important;
}

.border-right-orange-800 {
  border-right-color: #EF6C00 !important;
}

.border-bottom-orange-800 {
  border-bottom-color: #EF6C00 !important;
}

.border-left-orange-800 {
  border-left-color: #EF6C00 !important;
}

.bg-orange-900 {
  background-color: #E65100 !important;
}
.bg-orange-900.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-orange-900.text-auto {
  background-color: #E65100 !important;
}

.text-orange-900 {
  color: #E65100 !important;
}

.border-orange-900 {
  border-color: #E65100 !important;
}

.border-top-orange-900 {
  border-top-color: #E65100 !important;
}

.border-right-orange-900 {
  border-right-color: #E65100 !important;
}

.border-bottom-orange-900 {
  border-bottom-color: #E65100 !important;
}

.border-left-orange-900 {
  border-left-color: #E65100 !important;
}

.bg-orange-A100 {
  background-color: #FFD180 !important;
}
.bg-orange-A100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-orange-A100.text-auto {
  background-color: #FFD180 !important;
}

.text-orange-A100 {
  color: #FFD180 !important;
}

.border-orange-A100 {
  border-color: #FFD180 !important;
}

.border-top-orange-A100 {
  border-top-color: #FFD180 !important;
}

.border-right-orange-A100 {
  border-right-color: #FFD180 !important;
}

.border-bottom-orange-A100 {
  border-bottom-color: #FFD180 !important;
}

.border-left-orange-A100 {
  border-left-color: #FFD180 !important;
}

.bg-orange-A200 {
  background-color: #FFAB40 !important;
}
.bg-orange-A200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-orange-A200.text-auto {
  background-color: #FFAB40 !important;
}

.text-orange-A200 {
  color: #FFAB40 !important;
}

.border-orange-A200 {
  border-color: #FFAB40 !important;
}

.border-top-orange-A200 {
  border-top-color: #FFAB40 !important;
}

.border-right-orange-A200 {
  border-right-color: #FFAB40 !important;
}

.border-bottom-orange-A200 {
  border-bottom-color: #FFAB40 !important;
}

.border-left-orange-A200 {
  border-left-color: #FFAB40 !important;
}

.bg-orange-A400 {
  background-color: #FF9100 !important;
}
.bg-orange-A400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-orange-A400.text-auto {
  background-color: #FF9100 !important;
}

.text-orange-A400 {
  color: #FF9100 !important;
}

.border-orange-A400 {
  border-color: #FF9100 !important;
}

.border-top-orange-A400 {
  border-top-color: #FF9100 !important;
}

.border-right-orange-A400 {
  border-right-color: #FF9100 !important;
}

.border-bottom-orange-A400 {
  border-bottom-color: #FF9100 !important;
}

.border-left-orange-A400 {
  border-left-color: #FF9100 !important;
}

.bg-orange-A700 {
  background-color: #FF6D00 !important;
}
.bg-orange-A700.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-orange-A700.text-auto {
  background-color: #FF6D00 !important;
}

.text-orange-A700 {
  color: #FF6D00 !important;
}

.border-orange-A700 {
  border-color: #FF6D00 !important;
}

.border-top-orange-A700 {
  border-top-color: #FF6D00 !important;
}

.border-right-orange-A700 {
  border-right-color: #FF6D00 !important;
}

.border-bottom-orange-A700 {
  border-bottom-color: #FF6D00 !important;
}

.border-left-orange-A700 {
  border-left-color: #FF6D00 !important;
}

.bg-grey-50 {
  background-color: #FAFAFA !important;
}
.bg-grey-50.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-grey-50.text-auto {
  background-color: #FAFAFA !important;
}

.text-grey-50 {
  color: #FAFAFA !important;
}

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

.border-top-grey-50 {
  border-top-color: #FAFAFA !important;
}

.border-right-grey-50 {
  border-right-color: #FAFAFA !important;
}

.border-bottom-grey-50 {
  border-bottom-color: #FAFAFA !important;
}

.border-left-grey-50 {
  border-left-color: #FAFAFA !important;
}

.bg-grey-100 {
  background-color: #F5F5F5 !important;
}
.bg-grey-100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-grey-100.text-auto {
  background-color: #F5F5F5 !important;
}

.text-grey-100 {
  color: #F5F5F5 !important;
}

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

.border-top-grey-100 {
  border-top-color: #F5F5F5 !important;
}

.border-right-grey-100 {
  border-right-color: #F5F5F5 !important;
}

.border-bottom-grey-100 {
  border-bottom-color: #F5F5F5 !important;
}

.border-left-grey-100 {
  border-left-color: #F5F5F5 !important;
}

.bg-grey-200 {
  background-color: #EEEEEE !important;
}
.bg-grey-200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-grey-200.text-auto {
  background-color: #EEEEEE !important;
}

.text-grey-200 {
  color: #EEEEEE !important;
}

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

.border-top-grey-200 {
  border-top-color: #EEEEEE !important;
}

.border-right-grey-200 {
  border-right-color: #EEEEEE !important;
}

.border-bottom-grey-200 {
  border-bottom-color: #EEEEEE !important;
}

.border-left-grey-200 {
  border-left-color: #EEEEEE !important;
}

.bg-grey-300 {
  background-color: #E0E0E0 !important;
}
.bg-grey-300.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-grey-300.text-auto {
  background-color: #E0E0E0 !important;
}

.text-grey-300 {
  color: #E0E0E0 !important;
}

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

.border-top-grey-300 {
  border-top-color: #E0E0E0 !important;
}

.border-right-grey-300 {
  border-right-color: #E0E0E0 !important;
}

.border-bottom-grey-300 {
  border-bottom-color: #E0E0E0 !important;
}

.border-left-grey-300 {
  border-left-color: #E0E0E0 !important;
}

.bg-grey-400 {
  background-color: #BDBDBD !important;
}
.bg-grey-400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-grey-400.text-auto {
  background-color: #BDBDBD !important;
}

.text-grey-400 {
  color: #BDBDBD !important;
}

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

.border-top-grey-400 {
  border-top-color: #BDBDBD !important;
}

.border-right-grey-400 {
  border-right-color: #BDBDBD !important;
}

.border-bottom-grey-400 {
  border-bottom-color: #BDBDBD !important;
}

.border-left-grey-400 {
  border-left-color: #BDBDBD !important;
}

.bg-grey-500 {
  background-color: #9E9E9E !important;
}
.bg-grey-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-grey-500.text-auto {
  background-color: #9E9E9E !important;
}

.text-grey-500 {
  color: #9E9E9E !important;
}

.border-grey-500 {
  border-color: #9E9E9E !important;
}

.border-top-grey-500 {
  border-top-color: #9E9E9E !important;
}

.border-right-grey-500 {
  border-right-color: #9E9E9E !important;
}

.border-bottom-grey-500 {
  border-bottom-color: #9E9E9E !important;
}

.border-left-grey-500 {
  border-left-color: #9E9E9E !important;
}

.bg-grey.text-auto {
  background-color: #9E9E9E !important;
}

.bg-grey {
  background-color: #9E9E9E !important;
}
.bg-grey.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.text-grey {
  color: #9E9E9E !important;
}

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

.border-top-grey {
  border-top-color: #9E9E9E !important;
}

.border-right-grey {
  border-right-color: #9E9E9E !important;
}

.border-bottom-grey {
  border-bottom-color: #9E9E9E !important;
}

.border-left-grey {
  border-left-color: #9E9E9E !important;
}

.bg-grey-600 {
  background-color: #757575 !important;
}
.bg-grey-600.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-grey-600.text-auto {
  background-color: #757575 !important;
}

.text-grey-600 {
  color: #757575 !important;
}

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

.border-top-grey-600 {
  border-top-color: #757575 !important;
}

.border-right-grey-600 {
  border-right-color: #757575 !important;
}

.border-bottom-grey-600 {
  border-bottom-color: #757575 !important;
}

.border-left-grey-600 {
  border-left-color: #757575 !important;
}

.bg-grey-700 {
  background-color: #616161 !important;
}
.bg-grey-700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-grey-700.text-auto {
  background-color: #616161 !important;
}

.text-grey-700 {
  color: #616161 !important;
}

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

.border-top-grey-700 {
  border-top-color: #616161 !important;
}

.border-right-grey-700 {
  border-right-color: #616161 !important;
}

.border-bottom-grey-700 {
  border-bottom-color: #616161 !important;
}

.border-left-grey-700 {
  border-left-color: #616161 !important;
}

.bg-grey-800 {
  background-color: #424242 !important;
}
.bg-grey-800.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-grey-800.text-auto {
  background-color: #424242 !important;
}

.text-grey-800 {
  color: #424242 !important;
}

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

.border-top-grey-800 {
  border-top-color: #424242 !important;
}

.border-right-grey-800 {
  border-right-color: #424242 !important;
}

.border-bottom-grey-800 {
  border-bottom-color: #424242 !important;
}

.border-left-grey-800 {
  border-left-color: #424242 !important;
}

.bg-grey-900 {
  background-color: #212121 !important;
}
.bg-grey-900.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-grey-900.text-auto {
  background-color: #212121 !important;
}

.text-grey-900 {
  color: #212121 !important;
}

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

.border-top-grey-900 {
  border-top-color: #212121 !important;
}

.border-right-grey-900 {
  border-right-color: #212121 !important;
}

.border-bottom-grey-900 {
  border-bottom-color: #212121 !important;
}

.border-left-grey-900 {
  border-left-color: #212121 !important;
}

.bg-grey-1000 {
  background-color: #000000 !important;
}
.bg-grey-1000.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-grey-1000.text-auto {
  background-color: #000000 !important;
}

.text-grey-1000 {
  color: #000000 !important;
}

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

.border-top-grey-1000 {
  border-top-color: #000000 !important;
}

.border-right-grey-1000 {
  border-right-color: #000000 !important;
}

.border-bottom-grey-1000 {
  border-bottom-color: #000000 !important;
}

.border-left-grey-1000 {
  border-left-color: #000000 !important;
}

.bg-grey-A100 {
  background-color: #FFFFFF !important;
}
.bg-grey-A100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-grey-A100.text-auto {
  background-color: #FFFFFF !important;
}

.text-grey-A100 {
  color: #FFFFFF !important;
}

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

.border-top-grey-A100 {
  border-top-color: #FFFFFF !important;
}

.border-right-grey-A100 {
  border-right-color: #FFFFFF !important;
}

.border-bottom-grey-A100 {
  border-bottom-color: #FFFFFF !important;
}

.border-left-grey-A100 {
  border-left-color: #FFFFFF !important;
}

.bg-grey-A200 {
  background-color: #EEEEEE !important;
}
.bg-grey-A200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-grey-A200.text-auto {
  background-color: #EEEEEE !important;
}

.text-grey-A200 {
  color: #EEEEEE !important;
}

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

.border-top-grey-A200 {
  border-top-color: #EEEEEE !important;
}

.border-right-grey-A200 {
  border-right-color: #EEEEEE !important;
}

.border-bottom-grey-A200 {
  border-bottom-color: #EEEEEE !important;
}

.border-left-grey-A200 {
  border-left-color: #EEEEEE !important;
}

.bg-grey-A400 {
  background-color: #BDBDBD !important;
}
.bg-grey-A400.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-grey-A400.text-auto {
  background-color: #BDBDBD !important;
}

.text-grey-A400 {
  color: #BDBDBD !important;
}

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

.border-top-grey-A400 {
  border-top-color: #BDBDBD !important;
}

.border-right-grey-A400 {
  border-right-color: #BDBDBD !important;
}

.border-bottom-grey-A400 {
  border-bottom-color: #BDBDBD !important;
}

.border-left-grey-A400 {
  border-left-color: #BDBDBD !important;
}

.bg-grey-A700 {
  background-color: #616161 !important;
}
.bg-grey-A700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-grey-A700.text-auto {
  background-color: #616161 !important;
}

.text-grey-A700 {
  color: #616161 !important;
}

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

.border-top-grey-A700 {
  border-top-color: #616161 !important;
}

.border-right-grey-A700 {
  border-right-color: #616161 !important;
}

.border-bottom-grey-A700 {
  border-bottom-color: #616161 !important;
}

.border-left-grey-A700 {
  border-left-color: #616161 !important;
}

.bg-fuse-dark-50 {
  background-color: #ECECEE !important;
}
.bg-fuse-dark-50.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-fuse-dark-50.text-auto {
  background-color: #ECECEE !important;
}

.text-fuse-dark-50 {
  color: #ECECEE !important;
}

.border-fuse-dark-50 {
  border-color: #ECECEE !important;
}

.border-top-fuse-dark-50 {
  border-top-color: #ECECEE !important;
}

.border-right-fuse-dark-50 {
  border-right-color: #ECECEE !important;
}

.border-bottom-fuse-dark-50 {
  border-bottom-color: #ECECEE !important;
}

.border-left-fuse-dark-50 {
  border-left-color: #ECECEE !important;
}

.bg-fuse-dark-100 {
  background-color: #C5C6CB !important;
}
.bg-fuse-dark-100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-fuse-dark-100.text-auto {
  background-color: #C5C6CB !important;
}

.text-fuse-dark-100 {
  color: #C5C6CB !important;
}

.border-fuse-dark-100 {
  border-color: #C5C6CB !important;
}

.border-top-fuse-dark-100 {
  border-top-color: #C5C6CB !important;
}

.border-right-fuse-dark-100 {
  border-right-color: #C5C6CB !important;
}

.border-bottom-fuse-dark-100 {
  border-bottom-color: #C5C6CB !important;
}

.border-left-fuse-dark-100 {
  border-left-color: #C5C6CB !important;
}

.bg-fuse-dark-200 {
  background-color: #9EA1A9 !important;
}
.bg-fuse-dark-200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-fuse-dark-200.text-auto {
  background-color: #9EA1A9 !important;
}

.text-fuse-dark-200 {
  color: #9EA1A9 !important;
}

.border-fuse-dark-200 {
  border-color: #9EA1A9 !important;
}

.border-top-fuse-dark-200 {
  border-top-color: #9EA1A9 !important;
}

.border-right-fuse-dark-200 {
  border-right-color: #9EA1A9 !important;
}

.border-bottom-fuse-dark-200 {
  border-bottom-color: #9EA1A9 !important;
}

.border-left-fuse-dark-200 {
  border-left-color: #9EA1A9 !important;
}

.bg-fuse-dark-300 {
  background-color: #7D818C !important;
}
.bg-fuse-dark-300.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-fuse-dark-300.text-auto {
  background-color: #7D818C !important;
}

.text-fuse-dark-300 {
  color: #7D818C !important;
}

.border-fuse-dark-300 {
  border-color: #7D818C !important;
}

.border-top-fuse-dark-300 {
  border-top-color: #7D818C !important;
}

.border-right-fuse-dark-300 {
  border-right-color: #7D818C !important;
}

.border-bottom-fuse-dark-300 {
  border-bottom-color: #7D818C !important;
}

.border-left-fuse-dark-300 {
  border-left-color: #7D818C !important;
}

.bg-fuse-dark-400 {
  background-color: #5C616F !important;
}
.bg-fuse-dark-400.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-fuse-dark-400.text-auto {
  background-color: #5C616F !important;
}

.text-fuse-dark-400 {
  color: #5C616F !important;
}

.border-fuse-dark-400 {
  border-color: #5C616F !important;
}

.border-top-fuse-dark-400 {
  border-top-color: #5C616F !important;
}

.border-right-fuse-dark-400 {
  border-right-color: #5C616F !important;
}

.border-bottom-fuse-dark-400 {
  border-bottom-color: #5C616F !important;
}

.border-left-fuse-dark-400 {
  border-left-color: #5C616F !important;
}

.bg-fuse-dark-500 {
  background-color: #3C4252 !important;
}
.bg-fuse-dark-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-fuse-dark-500.text-auto {
  background-color: #3C4252 !important;
}

.text-fuse-dark-500 {
  color: #3C4252 !important;
}

.border-fuse-dark-500 {
  border-color: #3C4252 !important;
}

.border-top-fuse-dark-500 {
  border-top-color: #3C4252 !important;
}

.border-right-fuse-dark-500 {
  border-right-color: #3C4252 !important;
}

.border-bottom-fuse-dark-500 {
  border-bottom-color: #3C4252 !important;
}

.border-left-fuse-dark-500 {
  border-left-color: #3C4252 !important;
}

.bg-fuse-dark.text-auto {
  background-color: #3C4252 !important;
}

.bg-fuse-dark {
  background-color: #3C4252 !important;
}
.bg-fuse-dark.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.text-fuse-dark {
  color: #3C4252 !important;
}

.border-fuse-dark {
  border-color: #3C4252 !important;
}

.border-top-fuse-dark {
  border-top-color: #3C4252 !important;
}

.border-right-fuse-dark {
  border-right-color: #3C4252 !important;
}

.border-bottom-fuse-dark {
  border-bottom-color: #3C4252 !important;
}

.border-left-fuse-dark {
  border-left-color: #3C4252 !important;
}

.bg-fuse-dark-600 {
  background-color: #353A48 !important;
}
.bg-fuse-dark-600.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-fuse-dark-600.text-auto {
  background-color: #353A48 !important;
}

.text-fuse-dark-600 {
  color: #353A48 !important;
}

.border-fuse-dark-600 {
  border-color: #353A48 !important;
}

.border-top-fuse-dark-600 {
  border-top-color: #353A48 !important;
}

.border-right-fuse-dark-600 {
  border-right-color: #353A48 !important;
}

.border-bottom-fuse-dark-600 {
  border-bottom-color: #353A48 !important;
}

.border-left-fuse-dark-600 {
  border-left-color: #353A48 !important;
}

.bg-fuse-dark-700 {
  background-color: #2D323E !important;
}
.bg-fuse-dark-700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-fuse-dark-700.text-auto {
  background-color: #2D323E !important;
}

.text-fuse-dark-700 {
  color: #2D323E !important;
}

.border-fuse-dark-700 {
  border-color: #2D323E !important;
}

.border-top-fuse-dark-700 {
  border-top-color: #2D323E !important;
}

.border-right-fuse-dark-700 {
  border-right-color: #2D323E !important;
}

.border-bottom-fuse-dark-700 {
  border-bottom-color: #2D323E !important;
}

.border-left-fuse-dark-700 {
  border-left-color: #2D323E !important;
}

.bg-fuse-dark-800 {
  background-color: #262933 !important;
}
.bg-fuse-dark-800.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-fuse-dark-800.text-auto {
  background-color: #262933 !important;
}

.text-fuse-dark-800 {
  color: #262933 !important;
}

.border-fuse-dark-800 {
  border-color: #262933 !important;
}

.border-top-fuse-dark-800 {
  border-top-color: #262933 !important;
}

.border-right-fuse-dark-800 {
  border-right-color: #262933 !important;
}

.border-bottom-fuse-dark-800 {
  border-bottom-color: #262933 !important;
}

.border-left-fuse-dark-800 {
  border-left-color: #262933 !important;
}

.bg-fuse-dark-900 {
  background-color: #1E2129 !important;
}
.bg-fuse-dark-900.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-fuse-dark-900.text-auto {
  background-color: #1E2129 !important;
}

.text-fuse-dark-900 {
  color: #1E2129 !important;
}

.border-fuse-dark-900 {
  border-color: #1E2129 !important;
}

.border-top-fuse-dark-900 {
  border-top-color: #1E2129 !important;
}

.border-right-fuse-dark-900 {
  border-right-color: #1E2129 !important;
}

.border-bottom-fuse-dark-900 {
  border-bottom-color: #1E2129 !important;
}

.border-left-fuse-dark-900 {
  border-left-color: #1E2129 !important;
}

.bg-fuse-dark-A100 {
  background-color: #C5C6CB !important;
}
.bg-fuse-dark-A100.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-fuse-dark-A100.text-auto {
  background-color: #C5C6CB !important;
}

.text-fuse-dark-A100 {
  color: #C5C6CB !important;
}

.border-fuse-dark-A100 {
  border-color: #C5C6CB !important;
}

.border-top-fuse-dark-A100 {
  border-top-color: #C5C6CB !important;
}

.border-right-fuse-dark-A100 {
  border-right-color: #C5C6CB !important;
}

.border-bottom-fuse-dark-A100 {
  border-bottom-color: #C5C6CB !important;
}

.border-left-fuse-dark-A100 {
  border-left-color: #C5C6CB !important;
}

.bg-fuse-dark-A200 {
  background-color: #9EA1A9 !important;
}
.bg-fuse-dark-A200.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-fuse-dark-A200.text-auto {
  background-color: #9EA1A9 !important;
}

.text-fuse-dark-A200 {
  color: #9EA1A9 !important;
}

.border-fuse-dark-A200 {
  border-color: #9EA1A9 !important;
}

.border-top-fuse-dark-A200 {
  border-top-color: #9EA1A9 !important;
}

.border-right-fuse-dark-A200 {
  border-right-color: #9EA1A9 !important;
}

.border-bottom-fuse-dark-A200 {
  border-bottom-color: #9EA1A9 !important;
}

.border-left-fuse-dark-A200 {
  border-left-color: #9EA1A9 !important;
}

.bg-fuse-dark-A400 {
  background-color: #5C616F !important;
}
.bg-fuse-dark-A400.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-fuse-dark-A400.text-auto {
  background-color: #5C616F !important;
}

.text-fuse-dark-A400 {
  color: #5C616F !important;
}

.border-fuse-dark-A400 {
  border-color: #5C616F !important;
}

.border-top-fuse-dark-A400 {
  border-top-color: #5C616F !important;
}

.border-right-fuse-dark-A400 {
  border-right-color: #5C616F !important;
}

.border-bottom-fuse-dark-A400 {
  border-bottom-color: #5C616F !important;
}

.border-left-fuse-dark-A400 {
  border-left-color: #5C616F !important;
}

.bg-fuse-dark-A700 {
  background-color: #2D323E !important;
}
.bg-fuse-dark-A700.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-fuse-dark-A700.text-auto {
  background-color: #2D323E !important;
}

.text-fuse-dark-A700 {
  color: #2D323E !important;
}

.border-fuse-dark-A700 {
  border-color: #2D323E !important;
}

.border-top-fuse-dark-A700 {
  border-top-color: #2D323E !important;
}

.border-right-fuse-dark-A700 {
  border-right-color: #2D323E !important;
}

.border-bottom-fuse-dark-A700 {
  border-bottom-color: #2D323E !important;
}

.border-left-fuse-dark-A700 {
  border-left-color: #2D323E !important;
}

.bg-white-500 {
  background-color: #FFFFFF !important;
}
.bg-white-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.bg-white-500.text-auto {
  background-color: #FFFFFF !important;
}

.text-white-500 {
  color: #FFFFFF !important;
}

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

.border-top-white-500 {
  border-top-color: #FFFFFF !important;
}

.border-right-white-500 {
  border-right-color: #FFFFFF !important;
}

.border-bottom-white-500 {
  border-bottom-color: #FFFFFF !important;
}

.border-left-white-500 {
  border-left-color: #FFFFFF !important;
}

.bg-white.text-auto {
  background-color: #FFFFFF !important;
}

.bg-white {
  background-color: #FFFFFF !important;
}
.bg-white.fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}

.text-white {
  color: #FFFFFF !important;
}

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

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

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

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

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

.bg-black-500 {
  background-color: #000000 !important;
}
.bg-black-500.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.bg-black-500.text-auto {
  background-color: #000000 !important;
}

.text-black-500 {
  color: #000000 !important;
}

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

.border-top-black-500 {
  border-top-color: #000000 !important;
}

.border-right-black-500 {
  border-right-color: #000000 !important;
}

.border-bottom-black-500 {
  border-bottom-color: #000000 !important;
}

.border-left-black-500 {
  border-left-color: #000000 !important;
}

.bg-black.text-auto {
  background-color: #000000 !important;
}

.bg-black {
  background-color: #000000 !important;
}
.bg-black.fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.text-black {
  color: #000000 !important;
}

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

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

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

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

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

.light-fg, .light-fg.text-auto, .bg-primary-300.text-auto, .bg-primary-400.text-auto, .bg-primary-500.text-auto, .bg-primary.text-auto, .bg-primary-600.text-auto, .bg-primary-700.text-auto, .bg-primary-800.text-auto, .bg-primary-900.text-auto, .bg-primary-A400.text-auto, .bg-primary-A700.text-auto, .bg-secondary-500.text-auto, .bg-secondary.text-auto, .bg-secondary-600.text-auto, .bg-secondary-700.text-auto, .bg-secondary-800.text-auto, .bg-secondary-900.text-auto, .bg-secondary-A200.text-auto, .bg-secondary-A400.text-auto, .bg-secondary-A700.text-auto, .bg-success-600.text-auto, .bg-success-700.text-auto, .bg-success-800.text-auto, .bg-success-900.text-auto, .bg-info-500.text-auto, .bg-info.text-auto, .bg-info-600.text-auto, .bg-info-700.text-auto, .bg-info-800.text-auto, .bg-info-900.text-auto, .bg-warning-900.text-auto, .bg-danger-400.text-auto, .bg-danger-500.text-auto, .bg-danger.text-auto, .bg-danger-600.text-auto, .bg-danger-700.text-auto, .bg-danger-800.text-auto, .bg-danger-900.text-auto, .bg-danger-A200.text-auto, .bg-danger-A400.text-auto, .bg-danger-A700.text-auto, .bg-dark-500.text-auto, .bg-dark.text-auto, .bg-red-400.text-auto, .bg-red-500.text-auto, .bg-red.text-auto, .bg-red-600.text-auto, .bg-red-700.text-auto, .bg-red-800.text-auto, .bg-red-900.text-auto, .bg-red-A200.text-auto, .bg-red-A400.text-auto, .bg-red-A700.text-auto, .bg-blue-500.text-auto, .bg-blue.text-auto, .bg-blue-600.text-auto, .bg-blue-700.text-auto, .bg-blue-800.text-auto, .bg-blue-900.text-auto, .bg-blue-A200.text-auto, .bg-blue-A400.text-auto, .bg-blue-A700.text-auto, .bg-teal-500.text-auto, .bg-teal.text-auto, .bg-teal-600.text-auto, .bg-teal-700.text-auto, .bg-teal-800.text-auto, .bg-teal-900.text-auto, .bg-green-600.text-auto, .bg-green-700.text-auto, .bg-green-800.text-auto, .bg-green-900.text-auto, .bg-orange-900.text-auto, .bg-grey-600.text-auto, .bg-grey-700.text-auto, .bg-grey-800.text-auto, .bg-grey-900.text-auto, .bg-grey-1000.text-auto, .bg-grey-A700.text-auto, .bg-fuse-dark-300.text-auto, .bg-fuse-dark-400.text-auto, .bg-fuse-dark-500.text-auto, .bg-fuse-dark.text-auto, .bg-fuse-dark-600.text-auto, .bg-fuse-dark-700.text-auto, .bg-fuse-dark-800.text-auto, .bg-fuse-dark-900.text-auto, .bg-fuse-dark-A400.text-auto, .bg-fuse-dark-A700.text-auto, .bg-black-500.text-auto, .bg-black.text-auto {
  color: white;
}
.light-fg a:hover, .light-fg.text-auto a:hover, .bg-primary-300.text-auto a:hover, .bg-primary-400.text-auto a:hover, .bg-primary-500.text-auto a:hover, .bg-primary.text-auto a:hover, .bg-primary-600.text-auto a:hover, .bg-primary-700.text-auto a:hover, .bg-primary-800.text-auto a:hover, .bg-primary-900.text-auto a:hover, .bg-primary-A400.text-auto a:hover, .bg-primary-A700.text-auto a:hover, .bg-secondary-500.text-auto a:hover, .bg-secondary.text-auto a:hover, .bg-secondary-600.text-auto a:hover, .bg-secondary-700.text-auto a:hover, .bg-secondary-800.text-auto a:hover, .bg-secondary-900.text-auto a:hover, .bg-secondary-A200.text-auto a:hover, .bg-secondary-A400.text-auto a:hover, .bg-secondary-A700.text-auto a:hover, .bg-success-600.text-auto a:hover, .bg-success-700.text-auto a:hover, .bg-success-800.text-auto a:hover, .bg-success-900.text-auto a:hover, .bg-info-500.text-auto a:hover, .bg-info.text-auto a:hover, .bg-info-600.text-auto a:hover, .bg-info-700.text-auto a:hover, .bg-info-800.text-auto a:hover, .bg-info-900.text-auto a:hover, .bg-warning-900.text-auto a:hover, .bg-danger-400.text-auto a:hover, .bg-danger-500.text-auto a:hover, .bg-danger.text-auto a:hover, .bg-danger-600.text-auto a:hover, .bg-danger-700.text-auto a:hover, .bg-danger-800.text-auto a:hover, .bg-danger-900.text-auto a:hover, .bg-danger-A200.text-auto a:hover, .bg-danger-A400.text-auto a:hover, .bg-danger-A700.text-auto a:hover, .bg-dark-500.text-auto a:hover, .bg-dark.text-auto a:hover, .bg-red-400.text-auto a:hover, .bg-red-500.text-auto a:hover, .bg-red.text-auto a:hover, .bg-red-600.text-auto a:hover, .bg-red-700.text-auto a:hover, .bg-red-800.text-auto a:hover, .bg-red-900.text-auto a:hover, .bg-red-A200.text-auto a:hover, .bg-red-A400.text-auto a:hover, .bg-red-A700.text-auto a:hover, .bg-blue-500.text-auto a:hover, .bg-blue.text-auto a:hover, .bg-blue-600.text-auto a:hover, .bg-blue-700.text-auto a:hover, .bg-blue-800.text-auto a:hover, .bg-blue-900.text-auto a:hover, .bg-blue-A200.text-auto a:hover, .bg-blue-A400.text-auto a:hover, .bg-blue-A700.text-auto a:hover, .bg-teal-500.text-auto a:hover, .bg-teal.text-auto a:hover, .bg-teal-600.text-auto a:hover, .bg-teal-700.text-auto a:hover, .bg-teal-800.text-auto a:hover, .bg-teal-900.text-auto a:hover, .bg-green-600.text-auto a:hover, .bg-green-700.text-auto a:hover, .bg-green-800.text-auto a:hover, .bg-green-900.text-auto a:hover, .bg-orange-900.text-auto a:hover, .bg-grey-600.text-auto a:hover, .bg-grey-700.text-auto a:hover, .bg-grey-800.text-auto a:hover, .bg-grey-900.text-auto a:hover, .bg-grey-1000.text-auto a:hover, .bg-grey-A700.text-auto a:hover, .bg-fuse-dark-300.text-auto a:hover, .bg-fuse-dark-400.text-auto a:hover, .bg-fuse-dark-500.text-auto a:hover, .bg-fuse-dark.text-auto a:hover, .bg-fuse-dark-600.text-auto a:hover, .bg-fuse-dark-700.text-auto a:hover, .bg-fuse-dark-800.text-auto a:hover, .bg-fuse-dark-900.text-auto a:hover, .bg-fuse-dark-A400.text-auto a:hover, .bg-fuse-dark-A700.text-auto a:hover, .bg-black-500.text-auto a:hover, .bg-black.text-auto a:hover {
  color: #1c1e26;
}
.light-fg i, .light-fg [class^=icon-], .light-fg [class*=" icon-"], .light-fg.text-auto i, .light-fg.text-auto [class^=icon-], .light-fg.text-auto [class*=" icon-"], .bg-primary-300.text-auto i, .bg-primary-300.text-auto [class^=icon-], .bg-primary-300.text-auto [class*=" icon-"], .bg-primary-400.text-auto i, .bg-primary-400.text-auto [class^=icon-], .bg-primary-400.text-auto [class*=" icon-"], .bg-primary-500.text-auto i, .bg-primary-500.text-auto [class^=icon-], .bg-primary-500.text-auto [class*=" icon-"], .bg-primary.text-auto i, .bg-primary.text-auto [class^=icon-], .bg-primary.text-auto [class*=" icon-"], .bg-primary-600.text-auto i, .bg-primary-600.text-auto [class^=icon-], .bg-primary-600.text-auto [class*=" icon-"], .bg-primary-700.text-auto i, .bg-primary-700.text-auto [class^=icon-], .bg-primary-700.text-auto [class*=" icon-"], .bg-primary-800.text-auto i, .bg-primary-800.text-auto [class^=icon-], .bg-primary-800.text-auto [class*=" icon-"], .bg-primary-900.text-auto i, .bg-primary-900.text-auto [class^=icon-], .bg-primary-900.text-auto [class*=" icon-"], .bg-primary-A400.text-auto i, .bg-primary-A400.text-auto [class^=icon-], .bg-primary-A400.text-auto [class*=" icon-"], .bg-primary-A700.text-auto i, .bg-primary-A700.text-auto [class^=icon-], .bg-primary-A700.text-auto [class*=" icon-"], .bg-secondary-500.text-auto i, .bg-secondary-500.text-auto [class^=icon-], .bg-secondary-500.text-auto [class*=" icon-"], .bg-secondary.text-auto i, .bg-secondary.text-auto [class^=icon-], .bg-secondary.text-auto [class*=" icon-"], .bg-secondary-600.text-auto i, .bg-secondary-600.text-auto [class^=icon-], .bg-secondary-600.text-auto [class*=" icon-"], .bg-secondary-700.text-auto i, .bg-secondary-700.text-auto [class^=icon-], .bg-secondary-700.text-auto [class*=" icon-"], .bg-secondary-800.text-auto i, .bg-secondary-800.text-auto [class^=icon-], .bg-secondary-800.text-auto [class*=" icon-"], .bg-secondary-900.text-auto i, .bg-secondary-900.text-auto [class^=icon-], .bg-secondary-900.text-auto [class*=" icon-"], .bg-secondary-A200.text-auto i, .bg-secondary-A200.text-auto [class^=icon-], .bg-secondary-A200.text-auto [class*=" icon-"], .bg-secondary-A400.text-auto i, .bg-secondary-A400.text-auto [class^=icon-], .bg-secondary-A400.text-auto [class*=" icon-"], .bg-secondary-A700.text-auto i, .bg-secondary-A700.text-auto [class^=icon-], .bg-secondary-A700.text-auto [class*=" icon-"], .bg-success-600.text-auto i, .bg-success-600.text-auto [class^=icon-], .bg-success-600.text-auto [class*=" icon-"], .bg-success-700.text-auto i, .bg-success-700.text-auto [class^=icon-], .bg-success-700.text-auto [class*=" icon-"], .bg-success-800.text-auto i, .bg-success-800.text-auto [class^=icon-], .bg-success-800.text-auto [class*=" icon-"], .bg-success-900.text-auto i, .bg-success-900.text-auto [class^=icon-], .bg-success-900.text-auto [class*=" icon-"], .bg-info-500.text-auto i, .bg-info-500.text-auto [class^=icon-], .bg-info-500.text-auto [class*=" icon-"], .bg-info.text-auto i, .bg-info.text-auto [class^=icon-], .bg-info.text-auto [class*=" icon-"], .bg-info-600.text-auto i, .bg-info-600.text-auto [class^=icon-], .bg-info-600.text-auto [class*=" icon-"], .bg-info-700.text-auto i, .bg-info-700.text-auto [class^=icon-], .bg-info-700.text-auto [class*=" icon-"], .bg-info-800.text-auto i, .bg-info-800.text-auto [class^=icon-], .bg-info-800.text-auto [class*=" icon-"], .bg-info-900.text-auto i, .bg-info-900.text-auto [class^=icon-], .bg-info-900.text-auto [class*=" icon-"], .bg-warning-900.text-auto i, .bg-warning-900.text-auto [class^=icon-], .bg-warning-900.text-auto [class*=" icon-"], .bg-danger-400.text-auto i, .bg-danger-400.text-auto [class^=icon-], .bg-danger-400.text-auto [class*=" icon-"], .bg-danger-500.text-auto i, .bg-danger-500.text-auto [class^=icon-], .bg-danger-500.text-auto [class*=" icon-"], .bg-danger.text-auto i, .bg-danger.text-auto [class^=icon-], .bg-danger.text-auto [class*=" icon-"], .bg-danger-600.text-auto i, .bg-danger-600.text-auto [class^=icon-], .bg-danger-600.text-auto [class*=" icon-"], .bg-danger-700.text-auto i, .bg-danger-700.text-auto [class^=icon-], .bg-danger-700.text-auto [class*=" icon-"], .bg-danger-800.text-auto i, .bg-danger-800.text-auto [class^=icon-], .bg-danger-800.text-auto [class*=" icon-"], .bg-danger-900.text-auto i, .bg-danger-900.text-auto [class^=icon-], .bg-danger-900.text-auto [class*=" icon-"], .bg-danger-A200.text-auto i, .bg-danger-A200.text-auto [class^=icon-], .bg-danger-A200.text-auto [class*=" icon-"], .bg-danger-A400.text-auto i, .bg-danger-A400.text-auto [class^=icon-], .bg-danger-A400.text-auto [class*=" icon-"], .bg-danger-A700.text-auto i, .bg-danger-A700.text-auto [class^=icon-], .bg-danger-A700.text-auto [class*=" icon-"], .bg-dark-500.text-auto i, .bg-dark-500.text-auto [class^=icon-], .bg-dark-500.text-auto [class*=" icon-"], .bg-dark.text-auto i, .bg-dark.text-auto [class^=icon-], .bg-dark.text-auto [class*=" icon-"], .bg-red-400.text-auto i, .bg-red-400.text-auto [class^=icon-], .bg-red-400.text-auto [class*=" icon-"], .bg-red-500.text-auto i, .bg-red-500.text-auto [class^=icon-], .bg-red-500.text-auto [class*=" icon-"], .bg-red.text-auto i, .bg-red.text-auto [class^=icon-], .bg-red.text-auto [class*=" icon-"], .bg-red-600.text-auto i, .bg-red-600.text-auto [class^=icon-], .bg-red-600.text-auto [class*=" icon-"], .bg-red-700.text-auto i, .bg-red-700.text-auto [class^=icon-], .bg-red-700.text-auto [class*=" icon-"], .bg-red-800.text-auto i, .bg-red-800.text-auto [class^=icon-], .bg-red-800.text-auto [class*=" icon-"], .bg-red-900.text-auto i, .bg-red-900.text-auto [class^=icon-], .bg-red-900.text-auto [class*=" icon-"], .bg-red-A200.text-auto i, .bg-red-A200.text-auto [class^=icon-], .bg-red-A200.text-auto [class*=" icon-"], .bg-red-A400.text-auto i, .bg-red-A400.text-auto [class^=icon-], .bg-red-A400.text-auto [class*=" icon-"], .bg-red-A700.text-auto i, .bg-red-A700.text-auto [class^=icon-], .bg-red-A700.text-auto [class*=" icon-"], .bg-blue-500.text-auto i, .bg-blue-500.text-auto [class^=icon-], .bg-blue-500.text-auto [class*=" icon-"], .bg-blue.text-auto i, .bg-blue.text-auto [class^=icon-], .bg-blue.text-auto [class*=" icon-"], .bg-blue-600.text-auto i, .bg-blue-600.text-auto [class^=icon-], .bg-blue-600.text-auto [class*=" icon-"], .bg-blue-700.text-auto i, .bg-blue-700.text-auto [class^=icon-], .bg-blue-700.text-auto [class*=" icon-"], .bg-blue-800.text-auto i, .bg-blue-800.text-auto [class^=icon-], .bg-blue-800.text-auto [class*=" icon-"], .bg-blue-900.text-auto i, .bg-blue-900.text-auto [class^=icon-], .bg-blue-900.text-auto [class*=" icon-"], .bg-blue-A200.text-auto i, .bg-blue-A200.text-auto [class^=icon-], .bg-blue-A200.text-auto [class*=" icon-"], .bg-blue-A400.text-auto i, .bg-blue-A400.text-auto [class^=icon-], .bg-blue-A400.text-auto [class*=" icon-"], .bg-blue-A700.text-auto i, .bg-blue-A700.text-auto [class^=icon-], .bg-blue-A700.text-auto [class*=" icon-"], .bg-teal-500.text-auto i, .bg-teal-500.text-auto [class^=icon-], .bg-teal-500.text-auto [class*=" icon-"], .bg-teal.text-auto i, .bg-teal.text-auto [class^=icon-], .bg-teal.text-auto [class*=" icon-"], .bg-teal-600.text-auto i, .bg-teal-600.text-auto [class^=icon-], .bg-teal-600.text-auto [class*=" icon-"], .bg-teal-700.text-auto i, .bg-teal-700.text-auto [class^=icon-], .bg-teal-700.text-auto [class*=" icon-"], .bg-teal-800.text-auto i, .bg-teal-800.text-auto [class^=icon-], .bg-teal-800.text-auto [class*=" icon-"], .bg-teal-900.text-auto i, .bg-teal-900.text-auto [class^=icon-], .bg-teal-900.text-auto [class*=" icon-"], .bg-green-600.text-auto i, .bg-green-600.text-auto [class^=icon-], .bg-green-600.text-auto [class*=" icon-"], .bg-green-700.text-auto i, .bg-green-700.text-auto [class^=icon-], .bg-green-700.text-auto [class*=" icon-"], .bg-green-800.text-auto i, .bg-green-800.text-auto [class^=icon-], .bg-green-800.text-auto [class*=" icon-"], .bg-green-900.text-auto i, .bg-green-900.text-auto [class^=icon-], .bg-green-900.text-auto [class*=" icon-"], .bg-orange-900.text-auto i, .bg-orange-900.text-auto [class^=icon-], .bg-orange-900.text-auto [class*=" icon-"], .bg-grey-600.text-auto i, .bg-grey-600.text-auto [class^=icon-], .bg-grey-600.text-auto [class*=" icon-"], .bg-grey-700.text-auto i, .bg-grey-700.text-auto [class^=icon-], .bg-grey-700.text-auto [class*=" icon-"], .bg-grey-800.text-auto i, .bg-grey-800.text-auto [class^=icon-], .bg-grey-800.text-auto [class*=" icon-"], .bg-grey-900.text-auto i, .bg-grey-900.text-auto [class^=icon-], .bg-grey-900.text-auto [class*=" icon-"], .bg-grey-1000.text-auto i, .bg-grey-1000.text-auto [class^=icon-], .bg-grey-1000.text-auto [class*=" icon-"], .bg-grey-A700.text-auto i, .bg-grey-A700.text-auto [class^=icon-], .bg-grey-A700.text-auto [class*=" icon-"], .bg-fuse-dark-300.text-auto i, .bg-fuse-dark-300.text-auto [class^=icon-], .bg-fuse-dark-300.text-auto [class*=" icon-"], .bg-fuse-dark-400.text-auto i, .bg-fuse-dark-400.text-auto [class^=icon-], .bg-fuse-dark-400.text-auto [class*=" icon-"], .bg-fuse-dark-500.text-auto i, .bg-fuse-dark-500.text-auto [class^=icon-], .bg-fuse-dark-500.text-auto [class*=" icon-"], .bg-fuse-dark.text-auto i, .bg-fuse-dark.text-auto [class^=icon-], .bg-fuse-dark.text-auto [class*=" icon-"], .bg-fuse-dark-600.text-auto i, .bg-fuse-dark-600.text-auto [class^=icon-], .bg-fuse-dark-600.text-auto [class*=" icon-"], .bg-fuse-dark-700.text-auto i, .bg-fuse-dark-700.text-auto [class^=icon-], .bg-fuse-dark-700.text-auto [class*=" icon-"], .bg-fuse-dark-800.text-auto i, .bg-fuse-dark-800.text-auto [class^=icon-], .bg-fuse-dark-800.text-auto [class*=" icon-"], .bg-fuse-dark-900.text-auto i, .bg-fuse-dark-900.text-auto [class^=icon-], .bg-fuse-dark-900.text-auto [class*=" icon-"], .bg-fuse-dark-A400.text-auto i, .bg-fuse-dark-A400.text-auto [class^=icon-], .bg-fuse-dark-A400.text-auto [class*=" icon-"], .bg-fuse-dark-A700.text-auto i, .bg-fuse-dark-A700.text-auto [class^=icon-], .bg-fuse-dark-A700.text-auto [class*=" icon-"], .bg-black-500.text-auto i, .bg-black-500.text-auto [class^=icon-], .bg-black-500.text-auto [class*=" icon-"], .bg-black.text-auto i, .bg-black.text-auto [class^=icon-], .bg-black.text-auto [class*=" icon-"] {
  color: rgba(255, 255, 255, 0.87);
}
.light-fg .text-muted, .light-fg.text-auto .text-muted, .bg-primary-300.text-auto .text-muted, .bg-primary-400.text-auto .text-muted, .bg-primary-500.text-auto .text-muted, .bg-primary.text-auto .text-muted, .bg-primary-600.text-auto .text-muted, .bg-primary-700.text-auto .text-muted, .bg-primary-800.text-auto .text-muted, .bg-primary-900.text-auto .text-muted, .bg-primary-A400.text-auto .text-muted, .bg-primary-A700.text-auto .text-muted, .bg-secondary-500.text-auto .text-muted, .bg-secondary.text-auto .text-muted, .bg-secondary-600.text-auto .text-muted, .bg-secondary-700.text-auto .text-muted, .bg-secondary-800.text-auto .text-muted, .bg-secondary-900.text-auto .text-muted, .bg-secondary-A200.text-auto .text-muted, .bg-secondary-A400.text-auto .text-muted, .bg-secondary-A700.text-auto .text-muted, .bg-success-600.text-auto .text-muted, .bg-success-700.text-auto .text-muted, .bg-success-800.text-auto .text-muted, .bg-success-900.text-auto .text-muted, .bg-info-500.text-auto .text-muted, .bg-info.text-auto .text-muted, .bg-info-600.text-auto .text-muted, .bg-info-700.text-auto .text-muted, .bg-info-800.text-auto .text-muted, .bg-info-900.text-auto .text-muted, .bg-warning-900.text-auto .text-muted, .bg-danger-400.text-auto .text-muted, .bg-danger-500.text-auto .text-muted, .bg-danger.text-auto .text-muted, .bg-danger-600.text-auto .text-muted, .bg-danger-700.text-auto .text-muted, .bg-danger-800.text-auto .text-muted, .bg-danger-900.text-auto .text-muted, .bg-danger-A200.text-auto .text-muted, .bg-danger-A400.text-auto .text-muted, .bg-danger-A700.text-auto .text-muted, .bg-dark-500.text-auto .text-muted, .bg-dark.text-auto .text-muted, .bg-red-400.text-auto .text-muted, .bg-red-500.text-auto .text-muted, .bg-red.text-auto .text-muted, .bg-red-600.text-auto .text-muted, .bg-red-700.text-auto .text-muted, .bg-red-800.text-auto .text-muted, .bg-red-900.text-auto .text-muted, .bg-red-A200.text-auto .text-muted, .bg-red-A400.text-auto .text-muted, .bg-red-A700.text-auto .text-muted, .bg-blue-500.text-auto .text-muted, .bg-blue.text-auto .text-muted, .bg-blue-600.text-auto .text-muted, .bg-blue-700.text-auto .text-muted, .bg-blue-800.text-auto .text-muted, .bg-blue-900.text-auto .text-muted, .bg-blue-A200.text-auto .text-muted, .bg-blue-A400.text-auto .text-muted, .bg-blue-A700.text-auto .text-muted, .bg-teal-500.text-auto .text-muted, .bg-teal.text-auto .text-muted, .bg-teal-600.text-auto .text-muted, .bg-teal-700.text-auto .text-muted, .bg-teal-800.text-auto .text-muted, .bg-teal-900.text-auto .text-muted, .bg-green-600.text-auto .text-muted, .bg-green-700.text-auto .text-muted, .bg-green-800.text-auto .text-muted, .bg-green-900.text-auto .text-muted, .bg-orange-900.text-auto .text-muted, .bg-grey-600.text-auto .text-muted, .bg-grey-700.text-auto .text-muted, .bg-grey-800.text-auto .text-muted, .bg-grey-900.text-auto .text-muted, .bg-grey-1000.text-auto .text-muted, .bg-grey-A700.text-auto .text-muted, .bg-fuse-dark-300.text-auto .text-muted, .bg-fuse-dark-400.text-auto .text-muted, .bg-fuse-dark-500.text-auto .text-muted, .bg-fuse-dark.text-auto .text-muted, .bg-fuse-dark-600.text-auto .text-muted, .bg-fuse-dark-700.text-auto .text-muted, .bg-fuse-dark-800.text-auto .text-muted, .bg-fuse-dark-900.text-auto .text-muted, .bg-fuse-dark-A400.text-auto .text-muted, .bg-fuse-dark-A700.text-auto .text-muted, .bg-black-500.text-auto .text-muted, .bg-black.text-auto .text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
}
.light-fg .fuse-ripple-ready .fuse-ripple, .light-fg.text-auto .fuse-ripple-ready .fuse-ripple, .bg-primary-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-primary-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-primary-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-primary.text-auto .fuse-ripple-ready .fuse-ripple, .bg-primary-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-primary-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-primary-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-primary-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-primary-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-primary-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-secondary-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-secondary.text-auto .fuse-ripple-ready .fuse-ripple, .bg-secondary-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-secondary-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-secondary-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-secondary-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-secondary-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-secondary-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-secondary-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-success-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-success-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-success-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-success-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-info-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-info.text-auto .fuse-ripple-ready .fuse-ripple, .bg-info-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-info-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-info-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-info-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-warning-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-danger-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-danger-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-danger.text-auto .fuse-ripple-ready .fuse-ripple, .bg-danger-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-danger-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-danger-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-danger-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-danger-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-danger-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-danger-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-dark-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-dark.text-auto .fuse-ripple-ready .fuse-ripple, .bg-red-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-red-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-red.text-auto .fuse-ripple-ready .fuse-ripple, .bg-red-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-red-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-red-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-red-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-red-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-red-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-red-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-teal-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-teal.text-auto .fuse-ripple-ready .fuse-ripple, .bg-teal-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-teal-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-teal-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-teal-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-green-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-green-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-green-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-green-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey-1000.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-fuse-dark-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-fuse-dark-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-fuse-dark-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-fuse-dark.text-auto .fuse-ripple-ready .fuse-ripple, .bg-fuse-dark-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-fuse-dark-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-fuse-dark-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-fuse-dark-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-fuse-dark-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-fuse-dark-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-black-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-black.text-auto .fuse-ripple-ready .fuse-ripple {
  background: rgba(255, 255, 255, 0.28);
}
.light-fg .form-control, .light-fg.text-auto .form-control, .bg-primary-300.text-auto .form-control, .bg-primary-400.text-auto .form-control, .bg-primary-500.text-auto .form-control, .bg-primary.text-auto .form-control, .bg-primary-600.text-auto .form-control, .bg-primary-700.text-auto .form-control, .bg-primary-800.text-auto .form-control, .bg-primary-900.text-auto .form-control, .bg-primary-A400.text-auto .form-control, .bg-primary-A700.text-auto .form-control, .bg-secondary-500.text-auto .form-control, .bg-secondary.text-auto .form-control, .bg-secondary-600.text-auto .form-control, .bg-secondary-700.text-auto .form-control, .bg-secondary-800.text-auto .form-control, .bg-secondary-900.text-auto .form-control, .bg-secondary-A200.text-auto .form-control, .bg-secondary-A400.text-auto .form-control, .bg-secondary-A700.text-auto .form-control, .bg-success-600.text-auto .form-control, .bg-success-700.text-auto .form-control, .bg-success-800.text-auto .form-control, .bg-success-900.text-auto .form-control, .bg-info-500.text-auto .form-control, .bg-info.text-auto .form-control, .bg-info-600.text-auto .form-control, .bg-info-700.text-auto .form-control, .bg-info-800.text-auto .form-control, .bg-info-900.text-auto .form-control, .bg-warning-900.text-auto .form-control, .bg-danger-400.text-auto .form-control, .bg-danger-500.text-auto .form-control, .bg-danger.text-auto .form-control, .bg-danger-600.text-auto .form-control, .bg-danger-700.text-auto .form-control, .bg-danger-800.text-auto .form-control, .bg-danger-900.text-auto .form-control, .bg-danger-A200.text-auto .form-control, .bg-danger-A400.text-auto .form-control, .bg-danger-A700.text-auto .form-control, .bg-dark-500.text-auto .form-control, .bg-dark.text-auto .form-control, .bg-red-400.text-auto .form-control, .bg-red-500.text-auto .form-control, .bg-red.text-auto .form-control, .bg-red-600.text-auto .form-control, .bg-red-700.text-auto .form-control, .bg-red-800.text-auto .form-control, .bg-red-900.text-auto .form-control, .bg-red-A200.text-auto .form-control, .bg-red-A400.text-auto .form-control, .bg-red-A700.text-auto .form-control, .bg-blue-500.text-auto .form-control, .bg-blue.text-auto .form-control, .bg-blue-600.text-auto .form-control, .bg-blue-700.text-auto .form-control, .bg-blue-800.text-auto .form-control, .bg-blue-900.text-auto .form-control, .bg-blue-A200.text-auto .form-control, .bg-blue-A400.text-auto .form-control, .bg-blue-A700.text-auto .form-control, .bg-teal-500.text-auto .form-control, .bg-teal.text-auto .form-control, .bg-teal-600.text-auto .form-control, .bg-teal-700.text-auto .form-control, .bg-teal-800.text-auto .form-control, .bg-teal-900.text-auto .form-control, .bg-green-600.text-auto .form-control, .bg-green-700.text-auto .form-control, .bg-green-800.text-auto .form-control, .bg-green-900.text-auto .form-control, .bg-orange-900.text-auto .form-control, .bg-grey-600.text-auto .form-control, .bg-grey-700.text-auto .form-control, .bg-grey-800.text-auto .form-control, .bg-grey-900.text-auto .form-control, .bg-grey-1000.text-auto .form-control, .bg-grey-A700.text-auto .form-control, .bg-fuse-dark-300.text-auto .form-control, .bg-fuse-dark-400.text-auto .form-control, .bg-fuse-dark-500.text-auto .form-control, .bg-fuse-dark.text-auto .form-control, .bg-fuse-dark-600.text-auto .form-control, .bg-fuse-dark-700.text-auto .form-control, .bg-fuse-dark-800.text-auto .form-control, .bg-fuse-dark-900.text-auto .form-control, .bg-fuse-dark-A400.text-auto .form-control, .bg-fuse-dark-A700.text-auto .form-control, .bg-black-500.text-auto .form-control, .bg-black.text-auto .form-control {
  color: white;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7);
}
.light-fg .form-control:hover, .light-fg.text-auto .form-control:hover, .bg-primary-300.text-auto .form-control:hover, .bg-primary-400.text-auto .form-control:hover, .bg-primary-500.text-auto .form-control:hover, .bg-primary.text-auto .form-control:hover, .bg-primary-600.text-auto .form-control:hover, .bg-primary-700.text-auto .form-control:hover, .bg-primary-800.text-auto .form-control:hover, .bg-primary-900.text-auto .form-control:hover, .bg-primary-A400.text-auto .form-control:hover, .bg-primary-A700.text-auto .form-control:hover, .bg-secondary-500.text-auto .form-control:hover, .bg-secondary.text-auto .form-control:hover, .bg-secondary-600.text-auto .form-control:hover, .bg-secondary-700.text-auto .form-control:hover, .bg-secondary-800.text-auto .form-control:hover, .bg-secondary-900.text-auto .form-control:hover, .bg-secondary-A200.text-auto .form-control:hover, .bg-secondary-A400.text-auto .form-control:hover, .bg-secondary-A700.text-auto .form-control:hover, .bg-success-600.text-auto .form-control:hover, .bg-success-700.text-auto .form-control:hover, .bg-success-800.text-auto .form-control:hover, .bg-success-900.text-auto .form-control:hover, .bg-info-500.text-auto .form-control:hover, .bg-info.text-auto .form-control:hover, .bg-info-600.text-auto .form-control:hover, .bg-info-700.text-auto .form-control:hover, .bg-info-800.text-auto .form-control:hover, .bg-info-900.text-auto .form-control:hover, .bg-warning-900.text-auto .form-control:hover, .bg-danger-400.text-auto .form-control:hover, .bg-danger-500.text-auto .form-control:hover, .bg-danger.text-auto .form-control:hover, .bg-danger-600.text-auto .form-control:hover, .bg-danger-700.text-auto .form-control:hover, .bg-danger-800.text-auto .form-control:hover, .bg-danger-900.text-auto .form-control:hover, .bg-danger-A200.text-auto .form-control:hover, .bg-danger-A400.text-auto .form-control:hover, .bg-danger-A700.text-auto .form-control:hover, .bg-dark-500.text-auto .form-control:hover, .bg-dark.text-auto .form-control:hover, .bg-red-400.text-auto .form-control:hover, .bg-red-500.text-auto .form-control:hover, .bg-red.text-auto .form-control:hover, .bg-red-600.text-auto .form-control:hover, .bg-red-700.text-auto .form-control:hover, .bg-red-800.text-auto .form-control:hover, .bg-red-900.text-auto .form-control:hover, .bg-red-A200.text-auto .form-control:hover, .bg-red-A400.text-auto .form-control:hover, .bg-red-A700.text-auto .form-control:hover, .bg-blue-500.text-auto .form-control:hover, .bg-blue.text-auto .form-control:hover, .bg-blue-600.text-auto .form-control:hover, .bg-blue-700.text-auto .form-control:hover, .bg-blue-800.text-auto .form-control:hover, .bg-blue-900.text-auto .form-control:hover, .bg-blue-A200.text-auto .form-control:hover, .bg-blue-A400.text-auto .form-control:hover, .bg-blue-A700.text-auto .form-control:hover, .bg-teal-500.text-auto .form-control:hover, .bg-teal.text-auto .form-control:hover, .bg-teal-600.text-auto .form-control:hover, .bg-teal-700.text-auto .form-control:hover, .bg-teal-800.text-auto .form-control:hover, .bg-teal-900.text-auto .form-control:hover, .bg-green-600.text-auto .form-control:hover, .bg-green-700.text-auto .form-control:hover, .bg-green-800.text-auto .form-control:hover, .bg-green-900.text-auto .form-control:hover, .bg-orange-900.text-auto .form-control:hover, .bg-grey-600.text-auto .form-control:hover, .bg-grey-700.text-auto .form-control:hover, .bg-grey-800.text-auto .form-control:hover, .bg-grey-900.text-auto .form-control:hover, .bg-grey-1000.text-auto .form-control:hover, .bg-grey-A700.text-auto .form-control:hover, .bg-fuse-dark-300.text-auto .form-control:hover, .bg-fuse-dark-400.text-auto .form-control:hover, .bg-fuse-dark-500.text-auto .form-control:hover, .bg-fuse-dark.text-auto .form-control:hover, .bg-fuse-dark-600.text-auto .form-control:hover, .bg-fuse-dark-700.text-auto .form-control:hover, .bg-fuse-dark-800.text-auto .form-control:hover, .bg-fuse-dark-900.text-auto .form-control:hover, .bg-fuse-dark-A400.text-auto .form-control:hover, .bg-fuse-dark-A700.text-auto .form-control:hover, .bg-black-500.text-auto .form-control:hover, .bg-black.text-auto .form-control:hover {
  box-shadow: 0 2px 0 0 white;
}
.light-fg .form-control:focus, .light-fg.text-auto .form-control:focus, .bg-primary-300.text-auto .form-control:focus, .bg-primary-400.text-auto .form-control:focus, .bg-primary-500.text-auto .form-control:focus, .bg-primary.text-auto .form-control:focus, .bg-primary-600.text-auto .form-control:focus, .bg-primary-700.text-auto .form-control:focus, .bg-primary-800.text-auto .form-control:focus, .bg-primary-900.text-auto .form-control:focus, .bg-primary-A400.text-auto .form-control:focus, .bg-primary-A700.text-auto .form-control:focus, .bg-secondary-500.text-auto .form-control:focus, .bg-secondary.text-auto .form-control:focus, .bg-secondary-600.text-auto .form-control:focus, .bg-secondary-700.text-auto .form-control:focus, .bg-secondary-800.text-auto .form-control:focus, .bg-secondary-900.text-auto .form-control:focus, .bg-secondary-A200.text-auto .form-control:focus, .bg-secondary-A400.text-auto .form-control:focus, .bg-secondary-A700.text-auto .form-control:focus, .bg-success-600.text-auto .form-control:focus, .bg-success-700.text-auto .form-control:focus, .bg-success-800.text-auto .form-control:focus, .bg-success-900.text-auto .form-control:focus, .bg-info-500.text-auto .form-control:focus, .bg-info.text-auto .form-control:focus, .bg-info-600.text-auto .form-control:focus, .bg-info-700.text-auto .form-control:focus, .bg-info-800.text-auto .form-control:focus, .bg-info-900.text-auto .form-control:focus, .bg-warning-900.text-auto .form-control:focus, .bg-danger-400.text-auto .form-control:focus, .bg-danger-500.text-auto .form-control:focus, .bg-danger.text-auto .form-control:focus, .bg-danger-600.text-auto .form-control:focus, .bg-danger-700.text-auto .form-control:focus, .bg-danger-800.text-auto .form-control:focus, .bg-danger-900.text-auto .form-control:focus, .bg-danger-A200.text-auto .form-control:focus, .bg-danger-A400.text-auto .form-control:focus, .bg-danger-A700.text-auto .form-control:focus, .bg-dark-500.text-auto .form-control:focus, .bg-dark.text-auto .form-control:focus, .bg-red-400.text-auto .form-control:focus, .bg-red-500.text-auto .form-control:focus, .bg-red.text-auto .form-control:focus, .bg-red-600.text-auto .form-control:focus, .bg-red-700.text-auto .form-control:focus, .bg-red-800.text-auto .form-control:focus, .bg-red-900.text-auto .form-control:focus, .bg-red-A200.text-auto .form-control:focus, .bg-red-A400.text-auto .form-control:focus, .bg-red-A700.text-auto .form-control:focus, .bg-blue-500.text-auto .form-control:focus, .bg-blue.text-auto .form-control:focus, .bg-blue-600.text-auto .form-control:focus, .bg-blue-700.text-auto .form-control:focus, .bg-blue-800.text-auto .form-control:focus, .bg-blue-900.text-auto .form-control:focus, .bg-blue-A200.text-auto .form-control:focus, .bg-blue-A400.text-auto .form-control:focus, .bg-blue-A700.text-auto .form-control:focus, .bg-teal-500.text-auto .form-control:focus, .bg-teal.text-auto .form-control:focus, .bg-teal-600.text-auto .form-control:focus, .bg-teal-700.text-auto .form-control:focus, .bg-teal-800.text-auto .form-control:focus, .bg-teal-900.text-auto .form-control:focus, .bg-green-600.text-auto .form-control:focus, .bg-green-700.text-auto .form-control:focus, .bg-green-800.text-auto .form-control:focus, .bg-green-900.text-auto .form-control:focus, .bg-orange-900.text-auto .form-control:focus, .bg-grey-600.text-auto .form-control:focus, .bg-grey-700.text-auto .form-control:focus, .bg-grey-800.text-auto .form-control:focus, .bg-grey-900.text-auto .form-control:focus, .bg-grey-1000.text-auto .form-control:focus, .bg-grey-A700.text-auto .form-control:focus, .bg-fuse-dark-300.text-auto .form-control:focus, .bg-fuse-dark-400.text-auto .form-control:focus, .bg-fuse-dark-500.text-auto .form-control:focus, .bg-fuse-dark.text-auto .form-control:focus, .bg-fuse-dark-600.text-auto .form-control:focus, .bg-fuse-dark-700.text-auto .form-control:focus, .bg-fuse-dark-800.text-auto .form-control:focus, .bg-fuse-dark-900.text-auto .form-control:focus, .bg-fuse-dark-A400.text-auto .form-control:focus, .bg-fuse-dark-A700.text-auto .form-control:focus, .bg-black-500.text-auto .form-control:focus, .bg-black.text-auto .form-control:focus {
  box-shadow: 0 2px 0 0 #3C4252;
}
.light-fg .form-control::placeholder, .light-fg.text-auto .form-control::placeholder, .bg-primary-300.text-auto .form-control::placeholder, .bg-primary-400.text-auto .form-control::placeholder, .bg-primary-500.text-auto .form-control::placeholder, .bg-primary.text-auto .form-control::placeholder, .bg-primary-600.text-auto .form-control::placeholder, .bg-primary-700.text-auto .form-control::placeholder, .bg-primary-800.text-auto .form-control::placeholder, .bg-primary-900.text-auto .form-control::placeholder, .bg-primary-A400.text-auto .form-control::placeholder, .bg-primary-A700.text-auto .form-control::placeholder, .bg-secondary-500.text-auto .form-control::placeholder, .bg-secondary.text-auto .form-control::placeholder, .bg-secondary-600.text-auto .form-control::placeholder, .bg-secondary-700.text-auto .form-control::placeholder, .bg-secondary-800.text-auto .form-control::placeholder, .bg-secondary-900.text-auto .form-control::placeholder, .bg-secondary-A200.text-auto .form-control::placeholder, .bg-secondary-A400.text-auto .form-control::placeholder, .bg-secondary-A700.text-auto .form-control::placeholder, .bg-success-600.text-auto .form-control::placeholder, .bg-success-700.text-auto .form-control::placeholder, .bg-success-800.text-auto .form-control::placeholder, .bg-success-900.text-auto .form-control::placeholder, .bg-info-500.text-auto .form-control::placeholder, .bg-info.text-auto .form-control::placeholder, .bg-info-600.text-auto .form-control::placeholder, .bg-info-700.text-auto .form-control::placeholder, .bg-info-800.text-auto .form-control::placeholder, .bg-info-900.text-auto .form-control::placeholder, .bg-warning-900.text-auto .form-control::placeholder, .bg-danger-400.text-auto .form-control::placeholder, .bg-danger-500.text-auto .form-control::placeholder, .bg-danger.text-auto .form-control::placeholder, .bg-danger-600.text-auto .form-control::placeholder, .bg-danger-700.text-auto .form-control::placeholder, .bg-danger-800.text-auto .form-control::placeholder, .bg-danger-900.text-auto .form-control::placeholder, .bg-danger-A200.text-auto .form-control::placeholder, .bg-danger-A400.text-auto .form-control::placeholder, .bg-danger-A700.text-auto .form-control::placeholder, .bg-dark-500.text-auto .form-control::placeholder, .bg-dark.text-auto .form-control::placeholder, .bg-red-400.text-auto .form-control::placeholder, .bg-red-500.text-auto .form-control::placeholder, .bg-red.text-auto .form-control::placeholder, .bg-red-600.text-auto .form-control::placeholder, .bg-red-700.text-auto .form-control::placeholder, .bg-red-800.text-auto .form-control::placeholder, .bg-red-900.text-auto .form-control::placeholder, .bg-red-A200.text-auto .form-control::placeholder, .bg-red-A400.text-auto .form-control::placeholder, .bg-red-A700.text-auto .form-control::placeholder, .bg-blue-500.text-auto .form-control::placeholder, .bg-blue.text-auto .form-control::placeholder, .bg-blue-600.text-auto .form-control::placeholder, .bg-blue-700.text-auto .form-control::placeholder, .bg-blue-800.text-auto .form-control::placeholder, .bg-blue-900.text-auto .form-control::placeholder, .bg-blue-A200.text-auto .form-control::placeholder, .bg-blue-A400.text-auto .form-control::placeholder, .bg-blue-A700.text-auto .form-control::placeholder, .bg-teal-500.text-auto .form-control::placeholder, .bg-teal.text-auto .form-control::placeholder, .bg-teal-600.text-auto .form-control::placeholder, .bg-teal-700.text-auto .form-control::placeholder, .bg-teal-800.text-auto .form-control::placeholder, .bg-teal-900.text-auto .form-control::placeholder, .bg-green-600.text-auto .form-control::placeholder, .bg-green-700.text-auto .form-control::placeholder, .bg-green-800.text-auto .form-control::placeholder, .bg-green-900.text-auto .form-control::placeholder, .bg-orange-900.text-auto .form-control::placeholder, .bg-grey-600.text-auto .form-control::placeholder, .bg-grey-700.text-auto .form-control::placeholder, .bg-grey-800.text-auto .form-control::placeholder, .bg-grey-900.text-auto .form-control::placeholder, .bg-grey-1000.text-auto .form-control::placeholder, .bg-grey-A700.text-auto .form-control::placeholder, .bg-fuse-dark-300.text-auto .form-control::placeholder, .bg-fuse-dark-400.text-auto .form-control::placeholder, .bg-fuse-dark-500.text-auto .form-control::placeholder, .bg-fuse-dark.text-auto .form-control::placeholder, .bg-fuse-dark-600.text-auto .form-control::placeholder, .bg-fuse-dark-700.text-auto .form-control::placeholder, .bg-fuse-dark-800.text-auto .form-control::placeholder, .bg-fuse-dark-900.text-auto .form-control::placeholder, .bg-fuse-dark-A400.text-auto .form-control::placeholder, .bg-fuse-dark-A700.text-auto .form-control::placeholder, .bg-black-500.text-auto .form-control::placeholder, .bg-black.text-auto .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.light-fg textarea.form-control, .light-fg.text-auto textarea.form-control, .bg-primary-300.text-auto textarea.form-control, .bg-primary-400.text-auto textarea.form-control, .bg-primary-500.text-auto textarea.form-control, .bg-primary.text-auto textarea.form-control, .bg-primary-600.text-auto textarea.form-control, .bg-primary-700.text-auto textarea.form-control, .bg-primary-800.text-auto textarea.form-control, .bg-primary-900.text-auto textarea.form-control, .bg-primary-A400.text-auto textarea.form-control, .bg-primary-A700.text-auto textarea.form-control, .bg-secondary-500.text-auto textarea.form-control, .bg-secondary.text-auto textarea.form-control, .bg-secondary-600.text-auto textarea.form-control, .bg-secondary-700.text-auto textarea.form-control, .bg-secondary-800.text-auto textarea.form-control, .bg-secondary-900.text-auto textarea.form-control, .bg-secondary-A200.text-auto textarea.form-control, .bg-secondary-A400.text-auto textarea.form-control, .bg-secondary-A700.text-auto textarea.form-control, .bg-success-600.text-auto textarea.form-control, .bg-success-700.text-auto textarea.form-control, .bg-success-800.text-auto textarea.form-control, .bg-success-900.text-auto textarea.form-control, .bg-info-500.text-auto textarea.form-control, .bg-info.text-auto textarea.form-control, .bg-info-600.text-auto textarea.form-control, .bg-info-700.text-auto textarea.form-control, .bg-info-800.text-auto textarea.form-control, .bg-info-900.text-auto textarea.form-control, .bg-warning-900.text-auto textarea.form-control, .bg-danger-400.text-auto textarea.form-control, .bg-danger-500.text-auto textarea.form-control, .bg-danger.text-auto textarea.form-control, .bg-danger-600.text-auto textarea.form-control, .bg-danger-700.text-auto textarea.form-control, .bg-danger-800.text-auto textarea.form-control, .bg-danger-900.text-auto textarea.form-control, .bg-danger-A200.text-auto textarea.form-control, .bg-danger-A400.text-auto textarea.form-control, .bg-danger-A700.text-auto textarea.form-control, .bg-dark-500.text-auto textarea.form-control, .bg-dark.text-auto textarea.form-control, .bg-red-400.text-auto textarea.form-control, .bg-red-500.text-auto textarea.form-control, .bg-red.text-auto textarea.form-control, .bg-red-600.text-auto textarea.form-control, .bg-red-700.text-auto textarea.form-control, .bg-red-800.text-auto textarea.form-control, .bg-red-900.text-auto textarea.form-control, .bg-red-A200.text-auto textarea.form-control, .bg-red-A400.text-auto textarea.form-control, .bg-red-A700.text-auto textarea.form-control, .bg-blue-500.text-auto textarea.form-control, .bg-blue.text-auto textarea.form-control, .bg-blue-600.text-auto textarea.form-control, .bg-blue-700.text-auto textarea.form-control, .bg-blue-800.text-auto textarea.form-control, .bg-blue-900.text-auto textarea.form-control, .bg-blue-A200.text-auto textarea.form-control, .bg-blue-A400.text-auto textarea.form-control, .bg-blue-A700.text-auto textarea.form-control, .bg-teal-500.text-auto textarea.form-control, .bg-teal.text-auto textarea.form-control, .bg-teal-600.text-auto textarea.form-control, .bg-teal-700.text-auto textarea.form-control, .bg-teal-800.text-auto textarea.form-control, .bg-teal-900.text-auto textarea.form-control, .bg-green-600.text-auto textarea.form-control, .bg-green-700.text-auto textarea.form-control, .bg-green-800.text-auto textarea.form-control, .bg-green-900.text-auto textarea.form-control, .bg-orange-900.text-auto textarea.form-control, .bg-grey-600.text-auto textarea.form-control, .bg-grey-700.text-auto textarea.form-control, .bg-grey-800.text-auto textarea.form-control, .bg-grey-900.text-auto textarea.form-control, .bg-grey-1000.text-auto textarea.form-control, .bg-grey-A700.text-auto textarea.form-control, .bg-fuse-dark-300.text-auto textarea.form-control, .bg-fuse-dark-400.text-auto textarea.form-control, .bg-fuse-dark-500.text-auto textarea.form-control, .bg-fuse-dark.text-auto textarea.form-control, .bg-fuse-dark-600.text-auto textarea.form-control, .bg-fuse-dark-700.text-auto textarea.form-control, .bg-fuse-dark-800.text-auto textarea.form-control, .bg-fuse-dark-900.text-auto textarea.form-control, .bg-fuse-dark-A400.text-auto textarea.form-control, .bg-fuse-dark-A700.text-auto textarea.form-control, .bg-black-500.text-auto textarea.form-control, .bg-black.text-auto textarea.form-control {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.light-fg textarea.form-control:hover, .light-fg.text-auto textarea.form-control:hover, .bg-primary-300.text-auto textarea.form-control:hover, .bg-primary-400.text-auto textarea.form-control:hover, .bg-primary-500.text-auto textarea.form-control:hover, .bg-primary.text-auto textarea.form-control:hover, .bg-primary-600.text-auto textarea.form-control:hover, .bg-primary-700.text-auto textarea.form-control:hover, .bg-primary-800.text-auto textarea.form-control:hover, .bg-primary-900.text-auto textarea.form-control:hover, .bg-primary-A400.text-auto textarea.form-control:hover, .bg-primary-A700.text-auto textarea.form-control:hover, .bg-secondary-500.text-auto textarea.form-control:hover, .bg-secondary.text-auto textarea.form-control:hover, .bg-secondary-600.text-auto textarea.form-control:hover, .bg-secondary-700.text-auto textarea.form-control:hover, .bg-secondary-800.text-auto textarea.form-control:hover, .bg-secondary-900.text-auto textarea.form-control:hover, .bg-secondary-A200.text-auto textarea.form-control:hover, .bg-secondary-A400.text-auto textarea.form-control:hover, .bg-secondary-A700.text-auto textarea.form-control:hover, .bg-success-600.text-auto textarea.form-control:hover, .bg-success-700.text-auto textarea.form-control:hover, .bg-success-800.text-auto textarea.form-control:hover, .bg-success-900.text-auto textarea.form-control:hover, .bg-info-500.text-auto textarea.form-control:hover, .bg-info.text-auto textarea.form-control:hover, .bg-info-600.text-auto textarea.form-control:hover, .bg-info-700.text-auto textarea.form-control:hover, .bg-info-800.text-auto textarea.form-control:hover, .bg-info-900.text-auto textarea.form-control:hover, .bg-warning-900.text-auto textarea.form-control:hover, .bg-danger-400.text-auto textarea.form-control:hover, .bg-danger-500.text-auto textarea.form-control:hover, .bg-danger.text-auto textarea.form-control:hover, .bg-danger-600.text-auto textarea.form-control:hover, .bg-danger-700.text-auto textarea.form-control:hover, .bg-danger-800.text-auto textarea.form-control:hover, .bg-danger-900.text-auto textarea.form-control:hover, .bg-danger-A200.text-auto textarea.form-control:hover, .bg-danger-A400.text-auto textarea.form-control:hover, .bg-danger-A700.text-auto textarea.form-control:hover, .bg-dark-500.text-auto textarea.form-control:hover, .bg-dark.text-auto textarea.form-control:hover, .bg-red-400.text-auto textarea.form-control:hover, .bg-red-500.text-auto textarea.form-control:hover, .bg-red.text-auto textarea.form-control:hover, .bg-red-600.text-auto textarea.form-control:hover, .bg-red-700.text-auto textarea.form-control:hover, .bg-red-800.text-auto textarea.form-control:hover, .bg-red-900.text-auto textarea.form-control:hover, .bg-red-A200.text-auto textarea.form-control:hover, .bg-red-A400.text-auto textarea.form-control:hover, .bg-red-A700.text-auto textarea.form-control:hover, .bg-blue-500.text-auto textarea.form-control:hover, .bg-blue.text-auto textarea.form-control:hover, .bg-blue-600.text-auto textarea.form-control:hover, .bg-blue-700.text-auto textarea.form-control:hover, .bg-blue-800.text-auto textarea.form-control:hover, .bg-blue-900.text-auto textarea.form-control:hover, .bg-blue-A200.text-auto textarea.form-control:hover, .bg-blue-A400.text-auto textarea.form-control:hover, .bg-blue-A700.text-auto textarea.form-control:hover, .bg-teal-500.text-auto textarea.form-control:hover, .bg-teal.text-auto textarea.form-control:hover, .bg-teal-600.text-auto textarea.form-control:hover, .bg-teal-700.text-auto textarea.form-control:hover, .bg-teal-800.text-auto textarea.form-control:hover, .bg-teal-900.text-auto textarea.form-control:hover, .bg-green-600.text-auto textarea.form-control:hover, .bg-green-700.text-auto textarea.form-control:hover, .bg-green-800.text-auto textarea.form-control:hover, .bg-green-900.text-auto textarea.form-control:hover, .bg-orange-900.text-auto textarea.form-control:hover, .bg-grey-600.text-auto textarea.form-control:hover, .bg-grey-700.text-auto textarea.form-control:hover, .bg-grey-800.text-auto textarea.form-control:hover, .bg-grey-900.text-auto textarea.form-control:hover, .bg-grey-1000.text-auto textarea.form-control:hover, .bg-grey-A700.text-auto textarea.form-control:hover, .bg-fuse-dark-300.text-auto textarea.form-control:hover, .bg-fuse-dark-400.text-auto textarea.form-control:hover, .bg-fuse-dark-500.text-auto textarea.form-control:hover, .bg-fuse-dark.text-auto textarea.form-control:hover, .bg-fuse-dark-600.text-auto textarea.form-control:hover, .bg-fuse-dark-700.text-auto textarea.form-control:hover, .bg-fuse-dark-800.text-auto textarea.form-control:hover, .bg-fuse-dark-900.text-auto textarea.form-control:hover, .bg-fuse-dark-A400.text-auto textarea.form-control:hover, .bg-fuse-dark-A700.text-auto textarea.form-control:hover, .bg-black-500.text-auto textarea.form-control:hover, .bg-black.text-auto textarea.form-control:hover {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}
.light-fg textarea.form-control:focus, .light-fg textarea.form-control:focus:hover, .light-fg.text-auto textarea.form-control:focus, .light-fg.text-auto textarea.form-control:focus:hover, .bg-primary-300.text-auto textarea.form-control:focus, .bg-primary-300.text-auto textarea.form-control:focus:hover, .bg-primary-400.text-auto textarea.form-control:focus, .bg-primary-400.text-auto textarea.form-control:focus:hover, .bg-primary-500.text-auto textarea.form-control:focus, .bg-primary-500.text-auto textarea.form-control:focus:hover, .bg-primary.text-auto textarea.form-control:focus, .bg-primary.text-auto textarea.form-control:focus:hover, .bg-primary-600.text-auto textarea.form-control:focus, .bg-primary-600.text-auto textarea.form-control:focus:hover, .bg-primary-700.text-auto textarea.form-control:focus, .bg-primary-700.text-auto textarea.form-control:focus:hover, .bg-primary-800.text-auto textarea.form-control:focus, .bg-primary-800.text-auto textarea.form-control:focus:hover, .bg-primary-900.text-auto textarea.form-control:focus, .bg-primary-900.text-auto textarea.form-control:focus:hover, .bg-primary-A400.text-auto textarea.form-control:focus, .bg-primary-A400.text-auto textarea.form-control:focus:hover, .bg-primary-A700.text-auto textarea.form-control:focus, .bg-primary-A700.text-auto textarea.form-control:focus:hover, .bg-secondary-500.text-auto textarea.form-control:focus, .bg-secondary-500.text-auto textarea.form-control:focus:hover, .bg-secondary.text-auto textarea.form-control:focus, .bg-secondary.text-auto textarea.form-control:focus:hover, .bg-secondary-600.text-auto textarea.form-control:focus, .bg-secondary-600.text-auto textarea.form-control:focus:hover, .bg-secondary-700.text-auto textarea.form-control:focus, .bg-secondary-700.text-auto textarea.form-control:focus:hover, .bg-secondary-800.text-auto textarea.form-control:focus, .bg-secondary-800.text-auto textarea.form-control:focus:hover, .bg-secondary-900.text-auto textarea.form-control:focus, .bg-secondary-900.text-auto textarea.form-control:focus:hover, .bg-secondary-A200.text-auto textarea.form-control:focus, .bg-secondary-A200.text-auto textarea.form-control:focus:hover, .bg-secondary-A400.text-auto textarea.form-control:focus, .bg-secondary-A400.text-auto textarea.form-control:focus:hover, .bg-secondary-A700.text-auto textarea.form-control:focus, .bg-secondary-A700.text-auto textarea.form-control:focus:hover, .bg-success-600.text-auto textarea.form-control:focus, .bg-success-600.text-auto textarea.form-control:focus:hover, .bg-success-700.text-auto textarea.form-control:focus, .bg-success-700.text-auto textarea.form-control:focus:hover, .bg-success-800.text-auto textarea.form-control:focus, .bg-success-800.text-auto textarea.form-control:focus:hover, .bg-success-900.text-auto textarea.form-control:focus, .bg-success-900.text-auto textarea.form-control:focus:hover, .bg-info-500.text-auto textarea.form-control:focus, .bg-info-500.text-auto textarea.form-control:focus:hover, .bg-info.text-auto textarea.form-control:focus, .bg-info.text-auto textarea.form-control:focus:hover, .bg-info-600.text-auto textarea.form-control:focus, .bg-info-600.text-auto textarea.form-control:focus:hover, .bg-info-700.text-auto textarea.form-control:focus, .bg-info-700.text-auto textarea.form-control:focus:hover, .bg-info-800.text-auto textarea.form-control:focus, .bg-info-800.text-auto textarea.form-control:focus:hover, .bg-info-900.text-auto textarea.form-control:focus, .bg-info-900.text-auto textarea.form-control:focus:hover, .bg-warning-900.text-auto textarea.form-control:focus, .bg-warning-900.text-auto textarea.form-control:focus:hover, .bg-danger-400.text-auto textarea.form-control:focus, .bg-danger-400.text-auto textarea.form-control:focus:hover, .bg-danger-500.text-auto textarea.form-control:focus, .bg-danger-500.text-auto textarea.form-control:focus:hover, .bg-danger.text-auto textarea.form-control:focus, .bg-danger.text-auto textarea.form-control:focus:hover, .bg-danger-600.text-auto textarea.form-control:focus, .bg-danger-600.text-auto textarea.form-control:focus:hover, .bg-danger-700.text-auto textarea.form-control:focus, .bg-danger-700.text-auto textarea.form-control:focus:hover, .bg-danger-800.text-auto textarea.form-control:focus, .bg-danger-800.text-auto textarea.form-control:focus:hover, .bg-danger-900.text-auto textarea.form-control:focus, .bg-danger-900.text-auto textarea.form-control:focus:hover, .bg-danger-A200.text-auto textarea.form-control:focus, .bg-danger-A200.text-auto textarea.form-control:focus:hover, .bg-danger-A400.text-auto textarea.form-control:focus, .bg-danger-A400.text-auto textarea.form-control:focus:hover, .bg-danger-A700.text-auto textarea.form-control:focus, .bg-danger-A700.text-auto textarea.form-control:focus:hover, .bg-dark-500.text-auto textarea.form-control:focus, .bg-dark-500.text-auto textarea.form-control:focus:hover, .bg-dark.text-auto textarea.form-control:focus, .bg-dark.text-auto textarea.form-control:focus:hover, .bg-red-400.text-auto textarea.form-control:focus, .bg-red-400.text-auto textarea.form-control:focus:hover, .bg-red-500.text-auto textarea.form-control:focus, .bg-red-500.text-auto textarea.form-control:focus:hover, .bg-red.text-auto textarea.form-control:focus, .bg-red.text-auto textarea.form-control:focus:hover, .bg-red-600.text-auto textarea.form-control:focus, .bg-red-600.text-auto textarea.form-control:focus:hover, .bg-red-700.text-auto textarea.form-control:focus, .bg-red-700.text-auto textarea.form-control:focus:hover, .bg-red-800.text-auto textarea.form-control:focus, .bg-red-800.text-auto textarea.form-control:focus:hover, .bg-red-900.text-auto textarea.form-control:focus, .bg-red-900.text-auto textarea.form-control:focus:hover, .bg-red-A200.text-auto textarea.form-control:focus, .bg-red-A200.text-auto textarea.form-control:focus:hover, .bg-red-A400.text-auto textarea.form-control:focus, .bg-red-A400.text-auto textarea.form-control:focus:hover, .bg-red-A700.text-auto textarea.form-control:focus, .bg-red-A700.text-auto textarea.form-control:focus:hover, .bg-blue-500.text-auto textarea.form-control:focus, .bg-blue-500.text-auto textarea.form-control:focus:hover, .bg-blue.text-auto textarea.form-control:focus, .bg-blue.text-auto textarea.form-control:focus:hover, .bg-blue-600.text-auto textarea.form-control:focus, .bg-blue-600.text-auto textarea.form-control:focus:hover, .bg-blue-700.text-auto textarea.form-control:focus, .bg-blue-700.text-auto textarea.form-control:focus:hover, .bg-blue-800.text-auto textarea.form-control:focus, .bg-blue-800.text-auto textarea.form-control:focus:hover, .bg-blue-900.text-auto textarea.form-control:focus, .bg-blue-900.text-auto textarea.form-control:focus:hover, .bg-blue-A200.text-auto textarea.form-control:focus, .bg-blue-A200.text-auto textarea.form-control:focus:hover, .bg-blue-A400.text-auto textarea.form-control:focus, .bg-blue-A400.text-auto textarea.form-control:focus:hover, .bg-blue-A700.text-auto textarea.form-control:focus, .bg-blue-A700.text-auto textarea.form-control:focus:hover, .bg-teal-500.text-auto textarea.form-control:focus, .bg-teal-500.text-auto textarea.form-control:focus:hover, .bg-teal.text-auto textarea.form-control:focus, .bg-teal.text-auto textarea.form-control:focus:hover, .bg-teal-600.text-auto textarea.form-control:focus, .bg-teal-600.text-auto textarea.form-control:focus:hover, .bg-teal-700.text-auto textarea.form-control:focus, .bg-teal-700.text-auto textarea.form-control:focus:hover, .bg-teal-800.text-auto textarea.form-control:focus, .bg-teal-800.text-auto textarea.form-control:focus:hover, .bg-teal-900.text-auto textarea.form-control:focus, .bg-teal-900.text-auto textarea.form-control:focus:hover, .bg-green-600.text-auto textarea.form-control:focus, .bg-green-600.text-auto textarea.form-control:focus:hover, .bg-green-700.text-auto textarea.form-control:focus, .bg-green-700.text-auto textarea.form-control:focus:hover, .bg-green-800.text-auto textarea.form-control:focus, .bg-green-800.text-auto textarea.form-control:focus:hover, .bg-green-900.text-auto textarea.form-control:focus, .bg-green-900.text-auto textarea.form-control:focus:hover, .bg-orange-900.text-auto textarea.form-control:focus, .bg-orange-900.text-auto textarea.form-control:focus:hover, .bg-grey-600.text-auto textarea.form-control:focus, .bg-grey-600.text-auto textarea.form-control:focus:hover, .bg-grey-700.text-auto textarea.form-control:focus, .bg-grey-700.text-auto textarea.form-control:focus:hover, .bg-grey-800.text-auto textarea.form-control:focus, .bg-grey-800.text-auto textarea.form-control:focus:hover, .bg-grey-900.text-auto textarea.form-control:focus, .bg-grey-900.text-auto textarea.form-control:focus:hover, .bg-grey-1000.text-auto textarea.form-control:focus, .bg-grey-1000.text-auto textarea.form-control:focus:hover, .bg-grey-A700.text-auto textarea.form-control:focus, .bg-grey-A700.text-auto textarea.form-control:focus:hover, .bg-fuse-dark-300.text-auto textarea.form-control:focus, .bg-fuse-dark-300.text-auto textarea.form-control:focus:hover, .bg-fuse-dark-400.text-auto textarea.form-control:focus, .bg-fuse-dark-400.text-auto textarea.form-control:focus:hover, .bg-fuse-dark-500.text-auto textarea.form-control:focus, .bg-fuse-dark-500.text-auto textarea.form-control:focus:hover, .bg-fuse-dark.text-auto textarea.form-control:focus, .bg-fuse-dark.text-auto textarea.form-control:focus:hover, .bg-fuse-dark-600.text-auto textarea.form-control:focus, .bg-fuse-dark-600.text-auto textarea.form-control:focus:hover, .bg-fuse-dark-700.text-auto textarea.form-control:focus, .bg-fuse-dark-700.text-auto textarea.form-control:focus:hover, .bg-fuse-dark-800.text-auto textarea.form-control:focus, .bg-fuse-dark-800.text-auto textarea.form-control:focus:hover, .bg-fuse-dark-900.text-auto textarea.form-control:focus, .bg-fuse-dark-900.text-auto textarea.form-control:focus:hover, .bg-fuse-dark-A400.text-auto textarea.form-control:focus, .bg-fuse-dark-A400.text-auto textarea.form-control:focus:hover, .bg-fuse-dark-A700.text-auto textarea.form-control:focus, .bg-fuse-dark-A700.text-auto textarea.form-control:focus:hover, .bg-black-500.text-auto textarea.form-control:focus, .bg-black-500.text-auto textarea.form-control:focus:hover, .bg-black.text-auto textarea.form-control:focus, .bg-black.text-auto textarea.form-control:focus:hover {
  box-shadow: inset 0 0 0 2px #3C4252;
}
.light-fg select.form-control, .light-fg.text-auto select.form-control, .bg-primary-300.text-auto select.form-control, .bg-primary-400.text-auto select.form-control, .bg-primary-500.text-auto select.form-control, .bg-primary.text-auto select.form-control, .bg-primary-600.text-auto select.form-control, .bg-primary-700.text-auto select.form-control, .bg-primary-800.text-auto select.form-control, .bg-primary-900.text-auto select.form-control, .bg-primary-A400.text-auto select.form-control, .bg-primary-A700.text-auto select.form-control, .bg-secondary-500.text-auto select.form-control, .bg-secondary.text-auto select.form-control, .bg-secondary-600.text-auto select.form-control, .bg-secondary-700.text-auto select.form-control, .bg-secondary-800.text-auto select.form-control, .bg-secondary-900.text-auto select.form-control, .bg-secondary-A200.text-auto select.form-control, .bg-secondary-A400.text-auto select.form-control, .bg-secondary-A700.text-auto select.form-control, .bg-success-600.text-auto select.form-control, .bg-success-700.text-auto select.form-control, .bg-success-800.text-auto select.form-control, .bg-success-900.text-auto select.form-control, .bg-info-500.text-auto select.form-control, .bg-info.text-auto select.form-control, .bg-info-600.text-auto select.form-control, .bg-info-700.text-auto select.form-control, .bg-info-800.text-auto select.form-control, .bg-info-900.text-auto select.form-control, .bg-warning-900.text-auto select.form-control, .bg-danger-400.text-auto select.form-control, .bg-danger-500.text-auto select.form-control, .bg-danger.text-auto select.form-control, .bg-danger-600.text-auto select.form-control, .bg-danger-700.text-auto select.form-control, .bg-danger-800.text-auto select.form-control, .bg-danger-900.text-auto select.form-control, .bg-danger-A200.text-auto select.form-control, .bg-danger-A400.text-auto select.form-control, .bg-danger-A700.text-auto select.form-control, .bg-dark-500.text-auto select.form-control, .bg-dark.text-auto select.form-control, .bg-red-400.text-auto select.form-control, .bg-red-500.text-auto select.form-control, .bg-red.text-auto select.form-control, .bg-red-600.text-auto select.form-control, .bg-red-700.text-auto select.form-control, .bg-red-800.text-auto select.form-control, .bg-red-900.text-auto select.form-control, .bg-red-A200.text-auto select.form-control, .bg-red-A400.text-auto select.form-control, .bg-red-A700.text-auto select.form-control, .bg-blue-500.text-auto select.form-control, .bg-blue.text-auto select.form-control, .bg-blue-600.text-auto select.form-control, .bg-blue-700.text-auto select.form-control, .bg-blue-800.text-auto select.form-control, .bg-blue-900.text-auto select.form-control, .bg-blue-A200.text-auto select.form-control, .bg-blue-A400.text-auto select.form-control, .bg-blue-A700.text-auto select.form-control, .bg-teal-500.text-auto select.form-control, .bg-teal.text-auto select.form-control, .bg-teal-600.text-auto select.form-control, .bg-teal-700.text-auto select.form-control, .bg-teal-800.text-auto select.form-control, .bg-teal-900.text-auto select.form-control, .bg-green-600.text-auto select.form-control, .bg-green-700.text-auto select.form-control, .bg-green-800.text-auto select.form-control, .bg-green-900.text-auto select.form-control, .bg-orange-900.text-auto select.form-control, .bg-grey-600.text-auto select.form-control, .bg-grey-700.text-auto select.form-control, .bg-grey-800.text-auto select.form-control, .bg-grey-900.text-auto select.form-control, .bg-grey-1000.text-auto select.form-control, .bg-grey-A700.text-auto select.form-control, .bg-fuse-dark-300.text-auto select.form-control, .bg-fuse-dark-400.text-auto select.form-control, .bg-fuse-dark-500.text-auto select.form-control, .bg-fuse-dark.text-auto select.form-control, .bg-fuse-dark-600.text-auto select.form-control, .bg-fuse-dark-700.text-auto select.form-control, .bg-fuse-dark-800.text-auto select.form-control, .bg-fuse-dark-900.text-auto select.form-control, .bg-fuse-dark-A400.text-auto select.form-control, .bg-fuse-dark-A700.text-auto select.form-control, .bg-black-500.text-auto select.form-control, .bg-black.text-auto select.form-control {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2210px%22%20height%3D%225px%22%20viewBox%3D%227%2010%2010%205%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cpolygon%20id%3D%22Shape%22%20stroke%3D%22none%22%20fill%3D%22%23ffffff%22%20fill-rule%3D%22evenodd%22%20opacity%3D%220.5%22%20points%3D%227%2010%2012%2015%2017%2010%22%3E%3C%2Fpolygon%3E%0A%3C%2Fsvg%3E);
}
.light-fg select.form-control[multiple], .light-fg select.form-control[size], .light-fg.text-auto select.form-control[multiple], .light-fg.text-auto select.form-control[size], .bg-primary-300.text-auto select.form-control[multiple], .bg-primary-300.text-auto select.form-control[size], .bg-primary-400.text-auto select.form-control[multiple], .bg-primary-400.text-auto select.form-control[size], .bg-primary-500.text-auto select.form-control[multiple], .bg-primary-500.text-auto select.form-control[size], .bg-primary.text-auto select.form-control[multiple], .bg-primary.text-auto select.form-control[size], .bg-primary-600.text-auto select.form-control[multiple], .bg-primary-600.text-auto select.form-control[size], .bg-primary-700.text-auto select.form-control[multiple], .bg-primary-700.text-auto select.form-control[size], .bg-primary-800.text-auto select.form-control[multiple], .bg-primary-800.text-auto select.form-control[size], .bg-primary-900.text-auto select.form-control[multiple], .bg-primary-900.text-auto select.form-control[size], .bg-primary-A400.text-auto select.form-control[multiple], .bg-primary-A400.text-auto select.form-control[size], .bg-primary-A700.text-auto select.form-control[multiple], .bg-primary-A700.text-auto select.form-control[size], .bg-secondary-500.text-auto select.form-control[multiple], .bg-secondary-500.text-auto select.form-control[size], .bg-secondary.text-auto select.form-control[multiple], .bg-secondary.text-auto select.form-control[size], .bg-secondary-600.text-auto select.form-control[multiple], .bg-secondary-600.text-auto select.form-control[size], .bg-secondary-700.text-auto select.form-control[multiple], .bg-secondary-700.text-auto select.form-control[size], .bg-secondary-800.text-auto select.form-control[multiple], .bg-secondary-800.text-auto select.form-control[size], .bg-secondary-900.text-auto select.form-control[multiple], .bg-secondary-900.text-auto select.form-control[size], .bg-secondary-A200.text-auto select.form-control[multiple], .bg-secondary-A200.text-auto select.form-control[size], .bg-secondary-A400.text-auto select.form-control[multiple], .bg-secondary-A400.text-auto select.form-control[size], .bg-secondary-A700.text-auto select.form-control[multiple], .bg-secondary-A700.text-auto select.form-control[size], .bg-success-600.text-auto select.form-control[multiple], .bg-success-600.text-auto select.form-control[size], .bg-success-700.text-auto select.form-control[multiple], .bg-success-700.text-auto select.form-control[size], .bg-success-800.text-auto select.form-control[multiple], .bg-success-800.text-auto select.form-control[size], .bg-success-900.text-auto select.form-control[multiple], .bg-success-900.text-auto select.form-control[size], .bg-info-500.text-auto select.form-control[multiple], .bg-info-500.text-auto select.form-control[size], .bg-info.text-auto select.form-control[multiple], .bg-info.text-auto select.form-control[size], .bg-info-600.text-auto select.form-control[multiple], .bg-info-600.text-auto select.form-control[size], .bg-info-700.text-auto select.form-control[multiple], .bg-info-700.text-auto select.form-control[size], .bg-info-800.text-auto select.form-control[multiple], .bg-info-800.text-auto select.form-control[size], .bg-info-900.text-auto select.form-control[multiple], .bg-info-900.text-auto select.form-control[size], .bg-warning-900.text-auto select.form-control[multiple], .bg-warning-900.text-auto select.form-control[size], .bg-danger-400.text-auto select.form-control[multiple], .bg-danger-400.text-auto select.form-control[size], .bg-danger-500.text-auto select.form-control[multiple], .bg-danger-500.text-auto select.form-control[size], .bg-danger.text-auto select.form-control[multiple], .bg-danger.text-auto select.form-control[size], .bg-danger-600.text-auto select.form-control[multiple], .bg-danger-600.text-auto select.form-control[size], .bg-danger-700.text-auto select.form-control[multiple], .bg-danger-700.text-auto select.form-control[size], .bg-danger-800.text-auto select.form-control[multiple], .bg-danger-800.text-auto select.form-control[size], .bg-danger-900.text-auto select.form-control[multiple], .bg-danger-900.text-auto select.form-control[size], .bg-danger-A200.text-auto select.form-control[multiple], .bg-danger-A200.text-auto select.form-control[size], .bg-danger-A400.text-auto select.form-control[multiple], .bg-danger-A400.text-auto select.form-control[size], .bg-danger-A700.text-auto select.form-control[multiple], .bg-danger-A700.text-auto select.form-control[size], .bg-dark-500.text-auto select.form-control[multiple], .bg-dark-500.text-auto select.form-control[size], .bg-dark.text-auto select.form-control[multiple], .bg-dark.text-auto select.form-control[size], .bg-red-400.text-auto select.form-control[multiple], .bg-red-400.text-auto select.form-control[size], .bg-red-500.text-auto select.form-control[multiple], .bg-red-500.text-auto select.form-control[size], .bg-red.text-auto select.form-control[multiple], .bg-red.text-auto select.form-control[size], .bg-red-600.text-auto select.form-control[multiple], .bg-red-600.text-auto select.form-control[size], .bg-red-700.text-auto select.form-control[multiple], .bg-red-700.text-auto select.form-control[size], .bg-red-800.text-auto select.form-control[multiple], .bg-red-800.text-auto select.form-control[size], .bg-red-900.text-auto select.form-control[multiple], .bg-red-900.text-auto select.form-control[size], .bg-red-A200.text-auto select.form-control[multiple], .bg-red-A200.text-auto select.form-control[size], .bg-red-A400.text-auto select.form-control[multiple], .bg-red-A400.text-auto select.form-control[size], .bg-red-A700.text-auto select.form-control[multiple], .bg-red-A700.text-auto select.form-control[size], .bg-blue-500.text-auto select.form-control[multiple], .bg-blue-500.text-auto select.form-control[size], .bg-blue.text-auto select.form-control[multiple], .bg-blue.text-auto select.form-control[size], .bg-blue-600.text-auto select.form-control[multiple], .bg-blue-600.text-auto select.form-control[size], .bg-blue-700.text-auto select.form-control[multiple], .bg-blue-700.text-auto select.form-control[size], .bg-blue-800.text-auto select.form-control[multiple], .bg-blue-800.text-auto select.form-control[size], .bg-blue-900.text-auto select.form-control[multiple], .bg-blue-900.text-auto select.form-control[size], .bg-blue-A200.text-auto select.form-control[multiple], .bg-blue-A200.text-auto select.form-control[size], .bg-blue-A400.text-auto select.form-control[multiple], .bg-blue-A400.text-auto select.form-control[size], .bg-blue-A700.text-auto select.form-control[multiple], .bg-blue-A700.text-auto select.form-control[size], .bg-teal-500.text-auto select.form-control[multiple], .bg-teal-500.text-auto select.form-control[size], .bg-teal.text-auto select.form-control[multiple], .bg-teal.text-auto select.form-control[size], .bg-teal-600.text-auto select.form-control[multiple], .bg-teal-600.text-auto select.form-control[size], .bg-teal-700.text-auto select.form-control[multiple], .bg-teal-700.text-auto select.form-control[size], .bg-teal-800.text-auto select.form-control[multiple], .bg-teal-800.text-auto select.form-control[size], .bg-teal-900.text-auto select.form-control[multiple], .bg-teal-900.text-auto select.form-control[size], .bg-green-600.text-auto select.form-control[multiple], .bg-green-600.text-auto select.form-control[size], .bg-green-700.text-auto select.form-control[multiple], .bg-green-700.text-auto select.form-control[size], .bg-green-800.text-auto select.form-control[multiple], .bg-green-800.text-auto select.form-control[size], .bg-green-900.text-auto select.form-control[multiple], .bg-green-900.text-auto select.form-control[size], .bg-orange-900.text-auto select.form-control[multiple], .bg-orange-900.text-auto select.form-control[size], .bg-grey-600.text-auto select.form-control[multiple], .bg-grey-600.text-auto select.form-control[size], .bg-grey-700.text-auto select.form-control[multiple], .bg-grey-700.text-auto select.form-control[size], .bg-grey-800.text-auto select.form-control[multiple], .bg-grey-800.text-auto select.form-control[size], .bg-grey-900.text-auto select.form-control[multiple], .bg-grey-900.text-auto select.form-control[size], .bg-grey-1000.text-auto select.form-control[multiple], .bg-grey-1000.text-auto select.form-control[size], .bg-grey-A700.text-auto select.form-control[multiple], .bg-grey-A700.text-auto select.form-control[size], .bg-fuse-dark-300.text-auto select.form-control[multiple], .bg-fuse-dark-300.text-auto select.form-control[size], .bg-fuse-dark-400.text-auto select.form-control[multiple], .bg-fuse-dark-400.text-auto select.form-control[size], .bg-fuse-dark-500.text-auto select.form-control[multiple], .bg-fuse-dark-500.text-auto select.form-control[size], .bg-fuse-dark.text-auto select.form-control[multiple], .bg-fuse-dark.text-auto select.form-control[size], .bg-fuse-dark-600.text-auto select.form-control[multiple], .bg-fuse-dark-600.text-auto select.form-control[size], .bg-fuse-dark-700.text-auto select.form-control[multiple], .bg-fuse-dark-700.text-auto select.form-control[size], .bg-fuse-dark-800.text-auto select.form-control[multiple], .bg-fuse-dark-800.text-auto select.form-control[size], .bg-fuse-dark-900.text-auto select.form-control[multiple], .bg-fuse-dark-900.text-auto select.form-control[size], .bg-fuse-dark-A400.text-auto select.form-control[multiple], .bg-fuse-dark-A400.text-auto select.form-control[size], .bg-fuse-dark-A700.text-auto select.form-control[multiple], .bg-fuse-dark-A700.text-auto select.form-control[size], .bg-black-500.text-auto select.form-control[multiple], .bg-black-500.text-auto select.form-control[size], .bg-black.text-auto select.form-control[multiple], .bg-black.text-auto select.form-control[size] {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.light-fg select.form-control[multiple]:hover, .light-fg select.form-control[size]:hover, .light-fg.text-auto select.form-control[multiple]:hover, .light-fg.text-auto select.form-control[size]:hover, .bg-primary-300.text-auto select.form-control[multiple]:hover, .bg-primary-300.text-auto select.form-control[size]:hover, .bg-primary-400.text-auto select.form-control[multiple]:hover, .bg-primary-400.text-auto select.form-control[size]:hover, .bg-primary-500.text-auto select.form-control[multiple]:hover, .bg-primary-500.text-auto select.form-control[size]:hover, .bg-primary.text-auto select.form-control[multiple]:hover, .bg-primary.text-auto select.form-control[size]:hover, .bg-primary-600.text-auto select.form-control[multiple]:hover, .bg-primary-600.text-auto select.form-control[size]:hover, .bg-primary-700.text-auto select.form-control[multiple]:hover, .bg-primary-700.text-auto select.form-control[size]:hover, .bg-primary-800.text-auto select.form-control[multiple]:hover, .bg-primary-800.text-auto select.form-control[size]:hover, .bg-primary-900.text-auto select.form-control[multiple]:hover, .bg-primary-900.text-auto select.form-control[size]:hover, .bg-primary-A400.text-auto select.form-control[multiple]:hover, .bg-primary-A400.text-auto select.form-control[size]:hover, .bg-primary-A700.text-auto select.form-control[multiple]:hover, .bg-primary-A700.text-auto select.form-control[size]:hover, .bg-secondary-500.text-auto select.form-control[multiple]:hover, .bg-secondary-500.text-auto select.form-control[size]:hover, .bg-secondary.text-auto select.form-control[multiple]:hover, .bg-secondary.text-auto select.form-control[size]:hover, .bg-secondary-600.text-auto select.form-control[multiple]:hover, .bg-secondary-600.text-auto select.form-control[size]:hover, .bg-secondary-700.text-auto select.form-control[multiple]:hover, .bg-secondary-700.text-auto select.form-control[size]:hover, .bg-secondary-800.text-auto select.form-control[multiple]:hover, .bg-secondary-800.text-auto select.form-control[size]:hover, .bg-secondary-900.text-auto select.form-control[multiple]:hover, .bg-secondary-900.text-auto select.form-control[size]:hover, .bg-secondary-A200.text-auto select.form-control[multiple]:hover, .bg-secondary-A200.text-auto select.form-control[size]:hover, .bg-secondary-A400.text-auto select.form-control[multiple]:hover, .bg-secondary-A400.text-auto select.form-control[size]:hover, .bg-secondary-A700.text-auto select.form-control[multiple]:hover, .bg-secondary-A700.text-auto select.form-control[size]:hover, .bg-success-600.text-auto select.form-control[multiple]:hover, .bg-success-600.text-auto select.form-control[size]:hover, .bg-success-700.text-auto select.form-control[multiple]:hover, .bg-success-700.text-auto select.form-control[size]:hover, .bg-success-800.text-auto select.form-control[multiple]:hover, .bg-success-800.text-auto select.form-control[size]:hover, .bg-success-900.text-auto select.form-control[multiple]:hover, .bg-success-900.text-auto select.form-control[size]:hover, .bg-info-500.text-auto select.form-control[multiple]:hover, .bg-info-500.text-auto select.form-control[size]:hover, .bg-info.text-auto select.form-control[multiple]:hover, .bg-info.text-auto select.form-control[size]:hover, .bg-info-600.text-auto select.form-control[multiple]:hover, .bg-info-600.text-auto select.form-control[size]:hover, .bg-info-700.text-auto select.form-control[multiple]:hover, .bg-info-700.text-auto select.form-control[size]:hover, .bg-info-800.text-auto select.form-control[multiple]:hover, .bg-info-800.text-auto select.form-control[size]:hover, .bg-info-900.text-auto select.form-control[multiple]:hover, .bg-info-900.text-auto select.form-control[size]:hover, .bg-warning-900.text-auto select.form-control[multiple]:hover, .bg-warning-900.text-auto select.form-control[size]:hover, .bg-danger-400.text-auto select.form-control[multiple]:hover, .bg-danger-400.text-auto select.form-control[size]:hover, .bg-danger-500.text-auto select.form-control[multiple]:hover, .bg-danger-500.text-auto select.form-control[size]:hover, .bg-danger.text-auto select.form-control[multiple]:hover, .bg-danger.text-auto select.form-control[size]:hover, .bg-danger-600.text-auto select.form-control[multiple]:hover, .bg-danger-600.text-auto select.form-control[size]:hover, .bg-danger-700.text-auto select.form-control[multiple]:hover, .bg-danger-700.text-auto select.form-control[size]:hover, .bg-danger-800.text-auto select.form-control[multiple]:hover, .bg-danger-800.text-auto select.form-control[size]:hover, .bg-danger-900.text-auto select.form-control[multiple]:hover, .bg-danger-900.text-auto select.form-control[size]:hover, .bg-danger-A200.text-auto select.form-control[multiple]:hover, .bg-danger-A200.text-auto select.form-control[size]:hover, .bg-danger-A400.text-auto select.form-control[multiple]:hover, .bg-danger-A400.text-auto select.form-control[size]:hover, .bg-danger-A700.text-auto select.form-control[multiple]:hover, .bg-danger-A700.text-auto select.form-control[size]:hover, .bg-dark-500.text-auto select.form-control[multiple]:hover, .bg-dark-500.text-auto select.form-control[size]:hover, .bg-dark.text-auto select.form-control[multiple]:hover, .bg-dark.text-auto select.form-control[size]:hover, .bg-red-400.text-auto select.form-control[multiple]:hover, .bg-red-400.text-auto select.form-control[size]:hover, .bg-red-500.text-auto select.form-control[multiple]:hover, .bg-red-500.text-auto select.form-control[size]:hover, .bg-red.text-auto select.form-control[multiple]:hover, .bg-red.text-auto select.form-control[size]:hover, .bg-red-600.text-auto select.form-control[multiple]:hover, .bg-red-600.text-auto select.form-control[size]:hover, .bg-red-700.text-auto select.form-control[multiple]:hover, .bg-red-700.text-auto select.form-control[size]:hover, .bg-red-800.text-auto select.form-control[multiple]:hover, .bg-red-800.text-auto select.form-control[size]:hover, .bg-red-900.text-auto select.form-control[multiple]:hover, .bg-red-900.text-auto select.form-control[size]:hover, .bg-red-A200.text-auto select.form-control[multiple]:hover, .bg-red-A200.text-auto select.form-control[size]:hover, .bg-red-A400.text-auto select.form-control[multiple]:hover, .bg-red-A400.text-auto select.form-control[size]:hover, .bg-red-A700.text-auto select.form-control[multiple]:hover, .bg-red-A700.text-auto select.form-control[size]:hover, .bg-blue-500.text-auto select.form-control[multiple]:hover, .bg-blue-500.text-auto select.form-control[size]:hover, .bg-blue.text-auto select.form-control[multiple]:hover, .bg-blue.text-auto select.form-control[size]:hover, .bg-blue-600.text-auto select.form-control[multiple]:hover, .bg-blue-600.text-auto select.form-control[size]:hover, .bg-blue-700.text-auto select.form-control[multiple]:hover, .bg-blue-700.text-auto select.form-control[size]:hover, .bg-blue-800.text-auto select.form-control[multiple]:hover, .bg-blue-800.text-auto select.form-control[size]:hover, .bg-blue-900.text-auto select.form-control[multiple]:hover, .bg-blue-900.text-auto select.form-control[size]:hover, .bg-blue-A200.text-auto select.form-control[multiple]:hover, .bg-blue-A200.text-auto select.form-control[size]:hover, .bg-blue-A400.text-auto select.form-control[multiple]:hover, .bg-blue-A400.text-auto select.form-control[size]:hover, .bg-blue-A700.text-auto select.form-control[multiple]:hover, .bg-blue-A700.text-auto select.form-control[size]:hover, .bg-teal-500.text-auto select.form-control[multiple]:hover, .bg-teal-500.text-auto select.form-control[size]:hover, .bg-teal.text-auto select.form-control[multiple]:hover, .bg-teal.text-auto select.form-control[size]:hover, .bg-teal-600.text-auto select.form-control[multiple]:hover, .bg-teal-600.text-auto select.form-control[size]:hover, .bg-teal-700.text-auto select.form-control[multiple]:hover, .bg-teal-700.text-auto select.form-control[size]:hover, .bg-teal-800.text-auto select.form-control[multiple]:hover, .bg-teal-800.text-auto select.form-control[size]:hover, .bg-teal-900.text-auto select.form-control[multiple]:hover, .bg-teal-900.text-auto select.form-control[size]:hover, .bg-green-600.text-auto select.form-control[multiple]:hover, .bg-green-600.text-auto select.form-control[size]:hover, .bg-green-700.text-auto select.form-control[multiple]:hover, .bg-green-700.text-auto select.form-control[size]:hover, .bg-green-800.text-auto select.form-control[multiple]:hover, .bg-green-800.text-auto select.form-control[size]:hover, .bg-green-900.text-auto select.form-control[multiple]:hover, .bg-green-900.text-auto select.form-control[size]:hover, .bg-orange-900.text-auto select.form-control[multiple]:hover, .bg-orange-900.text-auto select.form-control[size]:hover, .bg-grey-600.text-auto select.form-control[multiple]:hover, .bg-grey-600.text-auto select.form-control[size]:hover, .bg-grey-700.text-auto select.form-control[multiple]:hover, .bg-grey-700.text-auto select.form-control[size]:hover, .bg-grey-800.text-auto select.form-control[multiple]:hover, .bg-grey-800.text-auto select.form-control[size]:hover, .bg-grey-900.text-auto select.form-control[multiple]:hover, .bg-grey-900.text-auto select.form-control[size]:hover, .bg-grey-1000.text-auto select.form-control[multiple]:hover, .bg-grey-1000.text-auto select.form-control[size]:hover, .bg-grey-A700.text-auto select.form-control[multiple]:hover, .bg-grey-A700.text-auto select.form-control[size]:hover, .bg-fuse-dark-300.text-auto select.form-control[multiple]:hover, .bg-fuse-dark-300.text-auto select.form-control[size]:hover, .bg-fuse-dark-400.text-auto select.form-control[multiple]:hover, .bg-fuse-dark-400.text-auto select.form-control[size]:hover, .bg-fuse-dark-500.text-auto select.form-control[multiple]:hover, .bg-fuse-dark-500.text-auto select.form-control[size]:hover, .bg-fuse-dark.text-auto select.form-control[multiple]:hover, .bg-fuse-dark.text-auto select.form-control[size]:hover, .bg-fuse-dark-600.text-auto select.form-control[multiple]:hover, .bg-fuse-dark-600.text-auto select.form-control[size]:hover, .bg-fuse-dark-700.text-auto select.form-control[multiple]:hover, .bg-fuse-dark-700.text-auto select.form-control[size]:hover, .bg-fuse-dark-800.text-auto select.form-control[multiple]:hover, .bg-fuse-dark-800.text-auto select.form-control[size]:hover, .bg-fuse-dark-900.text-auto select.form-control[multiple]:hover, .bg-fuse-dark-900.text-auto select.form-control[size]:hover, .bg-fuse-dark-A400.text-auto select.form-control[multiple]:hover, .bg-fuse-dark-A400.text-auto select.form-control[size]:hover, .bg-fuse-dark-A700.text-auto select.form-control[multiple]:hover, .bg-fuse-dark-A700.text-auto select.form-control[size]:hover, .bg-black-500.text-auto select.form-control[multiple]:hover, .bg-black-500.text-auto select.form-control[size]:hover, .bg-black.text-auto select.form-control[multiple]:hover, .bg-black.text-auto select.form-control[size]:hover {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}
.light-fg select.form-control[multiple]:focus, .light-fg select.form-control[multiple]:focus:hover, .light-fg select.form-control[size]:focus, .light-fg select.form-control[size]:focus:hover, .light-fg.text-auto select.form-control[multiple]:focus, .light-fg.text-auto select.form-control[multiple]:focus:hover, .light-fg.text-auto select.form-control[size]:focus, .light-fg.text-auto select.form-control[size]:focus:hover, .bg-primary-300.text-auto select.form-control[multiple]:focus, .bg-primary-300.text-auto select.form-control[multiple]:focus:hover, .bg-primary-300.text-auto select.form-control[size]:focus, .bg-primary-300.text-auto select.form-control[size]:focus:hover, .bg-primary-400.text-auto select.form-control[multiple]:focus, .bg-primary-400.text-auto select.form-control[multiple]:focus:hover, .bg-primary-400.text-auto select.form-control[size]:focus, .bg-primary-400.text-auto select.form-control[size]:focus:hover, .bg-primary-500.text-auto select.form-control[multiple]:focus, .bg-primary-500.text-auto select.form-control[multiple]:focus:hover, .bg-primary-500.text-auto select.form-control[size]:focus, .bg-primary-500.text-auto select.form-control[size]:focus:hover, .bg-primary.text-auto select.form-control[multiple]:focus, .bg-primary.text-auto select.form-control[multiple]:focus:hover, .bg-primary.text-auto select.form-control[size]:focus, .bg-primary.text-auto select.form-control[size]:focus:hover, .bg-primary-600.text-auto select.form-control[multiple]:focus, .bg-primary-600.text-auto select.form-control[multiple]:focus:hover, .bg-primary-600.text-auto select.form-control[size]:focus, .bg-primary-600.text-auto select.form-control[size]:focus:hover, .bg-primary-700.text-auto select.form-control[multiple]:focus, .bg-primary-700.text-auto select.form-control[multiple]:focus:hover, .bg-primary-700.text-auto select.form-control[size]:focus, .bg-primary-700.text-auto select.form-control[size]:focus:hover, .bg-primary-800.text-auto select.form-control[multiple]:focus, .bg-primary-800.text-auto select.form-control[multiple]:focus:hover, .bg-primary-800.text-auto select.form-control[size]:focus, .bg-primary-800.text-auto select.form-control[size]:focus:hover, .bg-primary-900.text-auto select.form-control[multiple]:focus, .bg-primary-900.text-auto select.form-control[multiple]:focus:hover, .bg-primary-900.text-auto select.form-control[size]:focus, .bg-primary-900.text-auto select.form-control[size]:focus:hover, .bg-primary-A400.text-auto select.form-control[multiple]:focus, .bg-primary-A400.text-auto select.form-control[multiple]:focus:hover, .bg-primary-A400.text-auto select.form-control[size]:focus, .bg-primary-A400.text-auto select.form-control[size]:focus:hover, .bg-primary-A700.text-auto select.form-control[multiple]:focus, .bg-primary-A700.text-auto select.form-control[multiple]:focus:hover, .bg-primary-A700.text-auto select.form-control[size]:focus, .bg-primary-A700.text-auto select.form-control[size]:focus:hover, .bg-secondary-500.text-auto select.form-control[multiple]:focus, .bg-secondary-500.text-auto select.form-control[multiple]:focus:hover, .bg-secondary-500.text-auto select.form-control[size]:focus, .bg-secondary-500.text-auto select.form-control[size]:focus:hover, .bg-secondary.text-auto select.form-control[multiple]:focus, .bg-secondary.text-auto select.form-control[multiple]:focus:hover, .bg-secondary.text-auto select.form-control[size]:focus, .bg-secondary.text-auto select.form-control[size]:focus:hover, .bg-secondary-600.text-auto select.form-control[multiple]:focus, .bg-secondary-600.text-auto select.form-control[multiple]:focus:hover, .bg-secondary-600.text-auto select.form-control[size]:focus, .bg-secondary-600.text-auto select.form-control[size]:focus:hover, .bg-secondary-700.text-auto select.form-control[multiple]:focus, .bg-secondary-700.text-auto select.form-control[multiple]:focus:hover, .bg-secondary-700.text-auto select.form-control[size]:focus, .bg-secondary-700.text-auto select.form-control[size]:focus:hover, .bg-secondary-800.text-auto select.form-control[multiple]:focus, .bg-secondary-800.text-auto select.form-control[multiple]:focus:hover, .bg-secondary-800.text-auto select.form-control[size]:focus, .bg-secondary-800.text-auto select.form-control[size]:focus:hover, .bg-secondary-900.text-auto select.form-control[multiple]:focus, .bg-secondary-900.text-auto select.form-control[multiple]:focus:hover, .bg-secondary-900.text-auto select.form-control[size]:focus, .bg-secondary-900.text-auto select.form-control[size]:focus:hover, .bg-secondary-A200.text-auto select.form-control[multiple]:focus, .bg-secondary-A200.text-auto select.form-control[multiple]:focus:hover, .bg-secondary-A200.text-auto select.form-control[size]:focus, .bg-secondary-A200.text-auto select.form-control[size]:focus:hover, .bg-secondary-A400.text-auto select.form-control[multiple]:focus, .bg-secondary-A400.text-auto select.form-control[multiple]:focus:hover, .bg-secondary-A400.text-auto select.form-control[size]:focus, .bg-secondary-A400.text-auto select.form-control[size]:focus:hover, .bg-secondary-A700.text-auto select.form-control[multiple]:focus, .bg-secondary-A700.text-auto select.form-control[multiple]:focus:hover, .bg-secondary-A700.text-auto select.form-control[size]:focus, .bg-secondary-A700.text-auto select.form-control[size]:focus:hover, .bg-success-600.text-auto select.form-control[multiple]:focus, .bg-success-600.text-auto select.form-control[multiple]:focus:hover, .bg-success-600.text-auto select.form-control[size]:focus, .bg-success-600.text-auto select.form-control[size]:focus:hover, .bg-success-700.text-auto select.form-control[multiple]:focus, .bg-success-700.text-auto select.form-control[multiple]:focus:hover, .bg-success-700.text-auto select.form-control[size]:focus, .bg-success-700.text-auto select.form-control[size]:focus:hover, .bg-success-800.text-auto select.form-control[multiple]:focus, .bg-success-800.text-auto select.form-control[multiple]:focus:hover, .bg-success-800.text-auto select.form-control[size]:focus, .bg-success-800.text-auto select.form-control[size]:focus:hover, .bg-success-900.text-auto select.form-control[multiple]:focus, .bg-success-900.text-auto select.form-control[multiple]:focus:hover, .bg-success-900.text-auto select.form-control[size]:focus, .bg-success-900.text-auto select.form-control[size]:focus:hover, .bg-info-500.text-auto select.form-control[multiple]:focus, .bg-info-500.text-auto select.form-control[multiple]:focus:hover, .bg-info-500.text-auto select.form-control[size]:focus, .bg-info-500.text-auto select.form-control[size]:focus:hover, .bg-info.text-auto select.form-control[multiple]:focus, .bg-info.text-auto select.form-control[multiple]:focus:hover, .bg-info.text-auto select.form-control[size]:focus, .bg-info.text-auto select.form-control[size]:focus:hover, .bg-info-600.text-auto select.form-control[multiple]:focus, .bg-info-600.text-auto select.form-control[multiple]:focus:hover, .bg-info-600.text-auto select.form-control[size]:focus, .bg-info-600.text-auto select.form-control[size]:focus:hover, .bg-info-700.text-auto select.form-control[multiple]:focus, .bg-info-700.text-auto select.form-control[multiple]:focus:hover, .bg-info-700.text-auto select.form-control[size]:focus, .bg-info-700.text-auto select.form-control[size]:focus:hover, .bg-info-800.text-auto select.form-control[multiple]:focus, .bg-info-800.text-auto select.form-control[multiple]:focus:hover, .bg-info-800.text-auto select.form-control[size]:focus, .bg-info-800.text-auto select.form-control[size]:focus:hover, .bg-info-900.text-auto select.form-control[multiple]:focus, .bg-info-900.text-auto select.form-control[multiple]:focus:hover, .bg-info-900.text-auto select.form-control[size]:focus, .bg-info-900.text-auto select.form-control[size]:focus:hover, .bg-warning-900.text-auto select.form-control[multiple]:focus, .bg-warning-900.text-auto select.form-control[multiple]:focus:hover, .bg-warning-900.text-auto select.form-control[size]:focus, .bg-warning-900.text-auto select.form-control[size]:focus:hover, .bg-danger-400.text-auto select.form-control[multiple]:focus, .bg-danger-400.text-auto select.form-control[multiple]:focus:hover, .bg-danger-400.text-auto select.form-control[size]:focus, .bg-danger-400.text-auto select.form-control[size]:focus:hover, .bg-danger-500.text-auto select.form-control[multiple]:focus, .bg-danger-500.text-auto select.form-control[multiple]:focus:hover, .bg-danger-500.text-auto select.form-control[size]:focus, .bg-danger-500.text-auto select.form-control[size]:focus:hover, .bg-danger.text-auto select.form-control[multiple]:focus, .bg-danger.text-auto select.form-control[multiple]:focus:hover, .bg-danger.text-auto select.form-control[size]:focus, .bg-danger.text-auto select.form-control[size]:focus:hover, .bg-danger-600.text-auto select.form-control[multiple]:focus, .bg-danger-600.text-auto select.form-control[multiple]:focus:hover, .bg-danger-600.text-auto select.form-control[size]:focus, .bg-danger-600.text-auto select.form-control[size]:focus:hover, .bg-danger-700.text-auto select.form-control[multiple]:focus, .bg-danger-700.text-auto select.form-control[multiple]:focus:hover, .bg-danger-700.text-auto select.form-control[size]:focus, .bg-danger-700.text-auto select.form-control[size]:focus:hover, .bg-danger-800.text-auto select.form-control[multiple]:focus, .bg-danger-800.text-auto select.form-control[multiple]:focus:hover, .bg-danger-800.text-auto select.form-control[size]:focus, .bg-danger-800.text-auto select.form-control[size]:focus:hover, .bg-danger-900.text-auto select.form-control[multiple]:focus, .bg-danger-900.text-auto select.form-control[multiple]:focus:hover, .bg-danger-900.text-auto select.form-control[size]:focus, .bg-danger-900.text-auto select.form-control[size]:focus:hover, .bg-danger-A200.text-auto select.form-control[multiple]:focus, .bg-danger-A200.text-auto select.form-control[multiple]:focus:hover, .bg-danger-A200.text-auto select.form-control[size]:focus, .bg-danger-A200.text-auto select.form-control[size]:focus:hover, .bg-danger-A400.text-auto select.form-control[multiple]:focus, .bg-danger-A400.text-auto select.form-control[multiple]:focus:hover, .bg-danger-A400.text-auto select.form-control[size]:focus, .bg-danger-A400.text-auto select.form-control[size]:focus:hover, .bg-danger-A700.text-auto select.form-control[multiple]:focus, .bg-danger-A700.text-auto select.form-control[multiple]:focus:hover, .bg-danger-A700.text-auto select.form-control[size]:focus, .bg-danger-A700.text-auto select.form-control[size]:focus:hover, .bg-dark-500.text-auto select.form-control[multiple]:focus, .bg-dark-500.text-auto select.form-control[multiple]:focus:hover, .bg-dark-500.text-auto select.form-control[size]:focus, .bg-dark-500.text-auto select.form-control[size]:focus:hover, .bg-dark.text-auto select.form-control[multiple]:focus, .bg-dark.text-auto select.form-control[multiple]:focus:hover, .bg-dark.text-auto select.form-control[size]:focus, .bg-dark.text-auto select.form-control[size]:focus:hover, .bg-red-400.text-auto select.form-control[multiple]:focus, .bg-red-400.text-auto select.form-control[multiple]:focus:hover, .bg-red-400.text-auto select.form-control[size]:focus, .bg-red-400.text-auto select.form-control[size]:focus:hover, .bg-red-500.text-auto select.form-control[multiple]:focus, .bg-red-500.text-auto select.form-control[multiple]:focus:hover, .bg-red-500.text-auto select.form-control[size]:focus, .bg-red-500.text-auto select.form-control[size]:focus:hover, .bg-red.text-auto select.form-control[multiple]:focus, .bg-red.text-auto select.form-control[multiple]:focus:hover, .bg-red.text-auto select.form-control[size]:focus, .bg-red.text-auto select.form-control[size]:focus:hover, .bg-red-600.text-auto select.form-control[multiple]:focus, .bg-red-600.text-auto select.form-control[multiple]:focus:hover, .bg-red-600.text-auto select.form-control[size]:focus, .bg-red-600.text-auto select.form-control[size]:focus:hover, .bg-red-700.text-auto select.form-control[multiple]:focus, .bg-red-700.text-auto select.form-control[multiple]:focus:hover, .bg-red-700.text-auto select.form-control[size]:focus, .bg-red-700.text-auto select.form-control[size]:focus:hover, .bg-red-800.text-auto select.form-control[multiple]:focus, .bg-red-800.text-auto select.form-control[multiple]:focus:hover, .bg-red-800.text-auto select.form-control[size]:focus, .bg-red-800.text-auto select.form-control[size]:focus:hover, .bg-red-900.text-auto select.form-control[multiple]:focus, .bg-red-900.text-auto select.form-control[multiple]:focus:hover, .bg-red-900.text-auto select.form-control[size]:focus, .bg-red-900.text-auto select.form-control[size]:focus:hover, .bg-red-A200.text-auto select.form-control[multiple]:focus, .bg-red-A200.text-auto select.form-control[multiple]:focus:hover, .bg-red-A200.text-auto select.form-control[size]:focus, .bg-red-A200.text-auto select.form-control[size]:focus:hover, .bg-red-A400.text-auto select.form-control[multiple]:focus, .bg-red-A400.text-auto select.form-control[multiple]:focus:hover, .bg-red-A400.text-auto select.form-control[size]:focus, .bg-red-A400.text-auto select.form-control[size]:focus:hover, .bg-red-A700.text-auto select.form-control[multiple]:focus, .bg-red-A700.text-auto select.form-control[multiple]:focus:hover, .bg-red-A700.text-auto select.form-control[size]:focus, .bg-red-A700.text-auto select.form-control[size]:focus:hover, .bg-blue-500.text-auto select.form-control[multiple]:focus, .bg-blue-500.text-auto select.form-control[multiple]:focus:hover, .bg-blue-500.text-auto select.form-control[size]:focus, .bg-blue-500.text-auto select.form-control[size]:focus:hover, .bg-blue.text-auto select.form-control[multiple]:focus, .bg-blue.text-auto select.form-control[multiple]:focus:hover, .bg-blue.text-auto select.form-control[size]:focus, .bg-blue.text-auto select.form-control[size]:focus:hover, .bg-blue-600.text-auto select.form-control[multiple]:focus, .bg-blue-600.text-auto select.form-control[multiple]:focus:hover, .bg-blue-600.text-auto select.form-control[size]:focus, .bg-blue-600.text-auto select.form-control[size]:focus:hover, .bg-blue-700.text-auto select.form-control[multiple]:focus, .bg-blue-700.text-auto select.form-control[multiple]:focus:hover, .bg-blue-700.text-auto select.form-control[size]:focus, .bg-blue-700.text-auto select.form-control[size]:focus:hover, .bg-blue-800.text-auto select.form-control[multiple]:focus, .bg-blue-800.text-auto select.form-control[multiple]:focus:hover, .bg-blue-800.text-auto select.form-control[size]:focus, .bg-blue-800.text-auto select.form-control[size]:focus:hover, .bg-blue-900.text-auto select.form-control[multiple]:focus, .bg-blue-900.text-auto select.form-control[multiple]:focus:hover, .bg-blue-900.text-auto select.form-control[size]:focus, .bg-blue-900.text-auto select.form-control[size]:focus:hover, .bg-blue-A200.text-auto select.form-control[multiple]:focus, .bg-blue-A200.text-auto select.form-control[multiple]:focus:hover, .bg-blue-A200.text-auto select.form-control[size]:focus, .bg-blue-A200.text-auto select.form-control[size]:focus:hover, .bg-blue-A400.text-auto select.form-control[multiple]:focus, .bg-blue-A400.text-auto select.form-control[multiple]:focus:hover, .bg-blue-A400.text-auto select.form-control[size]:focus, .bg-blue-A400.text-auto select.form-control[size]:focus:hover, .bg-blue-A700.text-auto select.form-control[multiple]:focus, .bg-blue-A700.text-auto select.form-control[multiple]:focus:hover, .bg-blue-A700.text-auto select.form-control[size]:focus, .bg-blue-A700.text-auto select.form-control[size]:focus:hover, .bg-teal-500.text-auto select.form-control[multiple]:focus, .bg-teal-500.text-auto select.form-control[multiple]:focus:hover, .bg-teal-500.text-auto select.form-control[size]:focus, .bg-teal-500.text-auto select.form-control[size]:focus:hover, .bg-teal.text-auto select.form-control[multiple]:focus, .bg-teal.text-auto select.form-control[multiple]:focus:hover, .bg-teal.text-auto select.form-control[size]:focus, .bg-teal.text-auto select.form-control[size]:focus:hover, .bg-teal-600.text-auto select.form-control[multiple]:focus, .bg-teal-600.text-auto select.form-control[multiple]:focus:hover, .bg-teal-600.text-auto select.form-control[size]:focus, .bg-teal-600.text-auto select.form-control[size]:focus:hover, .bg-teal-700.text-auto select.form-control[multiple]:focus, .bg-teal-700.text-auto select.form-control[multiple]:focus:hover, .bg-teal-700.text-auto select.form-control[size]:focus, .bg-teal-700.text-auto select.form-control[size]:focus:hover, .bg-teal-800.text-auto select.form-control[multiple]:focus, .bg-teal-800.text-auto select.form-control[multiple]:focus:hover, .bg-teal-800.text-auto select.form-control[size]:focus, .bg-teal-800.text-auto select.form-control[size]:focus:hover, .bg-teal-900.text-auto select.form-control[multiple]:focus, .bg-teal-900.text-auto select.form-control[multiple]:focus:hover, .bg-teal-900.text-auto select.form-control[size]:focus, .bg-teal-900.text-auto select.form-control[size]:focus:hover, .bg-green-600.text-auto select.form-control[multiple]:focus, .bg-green-600.text-auto select.form-control[multiple]:focus:hover, .bg-green-600.text-auto select.form-control[size]:focus, .bg-green-600.text-auto select.form-control[size]:focus:hover, .bg-green-700.text-auto select.form-control[multiple]:focus, .bg-green-700.text-auto select.form-control[multiple]:focus:hover, .bg-green-700.text-auto select.form-control[size]:focus, .bg-green-700.text-auto select.form-control[size]:focus:hover, .bg-green-800.text-auto select.form-control[multiple]:focus, .bg-green-800.text-auto select.form-control[multiple]:focus:hover, .bg-green-800.text-auto select.form-control[size]:focus, .bg-green-800.text-auto select.form-control[size]:focus:hover, .bg-green-900.text-auto select.form-control[multiple]:focus, .bg-green-900.text-auto select.form-control[multiple]:focus:hover, .bg-green-900.text-auto select.form-control[size]:focus, .bg-green-900.text-auto select.form-control[size]:focus:hover, .bg-orange-900.text-auto select.form-control[multiple]:focus, .bg-orange-900.text-auto select.form-control[multiple]:focus:hover, .bg-orange-900.text-auto select.form-control[size]:focus, .bg-orange-900.text-auto select.form-control[size]:focus:hover, .bg-grey-600.text-auto select.form-control[multiple]:focus, .bg-grey-600.text-auto select.form-control[multiple]:focus:hover, .bg-grey-600.text-auto select.form-control[size]:focus, .bg-grey-600.text-auto select.form-control[size]:focus:hover, .bg-grey-700.text-auto select.form-control[multiple]:focus, .bg-grey-700.text-auto select.form-control[multiple]:focus:hover, .bg-grey-700.text-auto select.form-control[size]:focus, .bg-grey-700.text-auto select.form-control[size]:focus:hover, .bg-grey-800.text-auto select.form-control[multiple]:focus, .bg-grey-800.text-auto select.form-control[multiple]:focus:hover, .bg-grey-800.text-auto select.form-control[size]:focus, .bg-grey-800.text-auto select.form-control[size]:focus:hover, .bg-grey-900.text-auto select.form-control[multiple]:focus, .bg-grey-900.text-auto select.form-control[multiple]:focus:hover, .bg-grey-900.text-auto select.form-control[size]:focus, .bg-grey-900.text-auto select.form-control[size]:focus:hover, .bg-grey-1000.text-auto select.form-control[multiple]:focus, .bg-grey-1000.text-auto select.form-control[multiple]:focus:hover, .bg-grey-1000.text-auto select.form-control[size]:focus, .bg-grey-1000.text-auto select.form-control[size]:focus:hover, .bg-grey-A700.text-auto select.form-control[multiple]:focus, .bg-grey-A700.text-auto select.form-control[multiple]:focus:hover, .bg-grey-A700.text-auto select.form-control[size]:focus, .bg-grey-A700.text-auto select.form-control[size]:focus:hover, .bg-fuse-dark-300.text-auto select.form-control[multiple]:focus, .bg-fuse-dark-300.text-auto select.form-control[multiple]:focus:hover, .bg-fuse-dark-300.text-auto select.form-control[size]:focus, .bg-fuse-dark-300.text-auto select.form-control[size]:focus:hover, .bg-fuse-dark-400.text-auto select.form-control[multiple]:focus, .bg-fuse-dark-400.text-auto select.form-control[multiple]:focus:hover, .bg-fuse-dark-400.text-auto select.form-control[size]:focus, .bg-fuse-dark-400.text-auto select.form-control[size]:focus:hover, .bg-fuse-dark-500.text-auto select.form-control[multiple]:focus, .bg-fuse-dark-500.text-auto select.form-control[multiple]:focus:hover, .bg-fuse-dark-500.text-auto select.form-control[size]:focus, .bg-fuse-dark-500.text-auto select.form-control[size]:focus:hover, .bg-fuse-dark.text-auto select.form-control[multiple]:focus, .bg-fuse-dark.text-auto select.form-control[multiple]:focus:hover, .bg-fuse-dark.text-auto select.form-control[size]:focus, .bg-fuse-dark.text-auto select.form-control[size]:focus:hover, .bg-fuse-dark-600.text-auto select.form-control[multiple]:focus, .bg-fuse-dark-600.text-auto select.form-control[multiple]:focus:hover, .bg-fuse-dark-600.text-auto select.form-control[size]:focus, .bg-fuse-dark-600.text-auto select.form-control[size]:focus:hover, .bg-fuse-dark-700.text-auto select.form-control[multiple]:focus, .bg-fuse-dark-700.text-auto select.form-control[multiple]:focus:hover, .bg-fuse-dark-700.text-auto select.form-control[size]:focus, .bg-fuse-dark-700.text-auto select.form-control[size]:focus:hover, .bg-fuse-dark-800.text-auto select.form-control[multiple]:focus, .bg-fuse-dark-800.text-auto select.form-control[multiple]:focus:hover, .bg-fuse-dark-800.text-auto select.form-control[size]:focus, .bg-fuse-dark-800.text-auto select.form-control[size]:focus:hover, .bg-fuse-dark-900.text-auto select.form-control[multiple]:focus, .bg-fuse-dark-900.text-auto select.form-control[multiple]:focus:hover, .bg-fuse-dark-900.text-auto select.form-control[size]:focus, .bg-fuse-dark-900.text-auto select.form-control[size]:focus:hover, .bg-fuse-dark-A400.text-auto select.form-control[multiple]:focus, .bg-fuse-dark-A400.text-auto select.form-control[multiple]:focus:hover, .bg-fuse-dark-A400.text-auto select.form-control[size]:focus, .bg-fuse-dark-A400.text-auto select.form-control[size]:focus:hover, .bg-fuse-dark-A700.text-auto select.form-control[multiple]:focus, .bg-fuse-dark-A700.text-auto select.form-control[multiple]:focus:hover, .bg-fuse-dark-A700.text-auto select.form-control[size]:focus, .bg-fuse-dark-A700.text-auto select.form-control[size]:focus:hover, .bg-black-500.text-auto select.form-control[multiple]:focus, .bg-black-500.text-auto select.form-control[multiple]:focus:hover, .bg-black-500.text-auto select.form-control[size]:focus, .bg-black-500.text-auto select.form-control[size]:focus:hover, .bg-black.text-auto select.form-control[multiple]:focus, .bg-black.text-auto select.form-control[multiple]:focus:hover, .bg-black.text-auto select.form-control[size]:focus, .bg-black.text-auto select.form-control[size]:focus:hover {
  box-shadow: inset 0 0 0 2px #3C4252;
}
.light-fg .form-group > label, .light-fg.text-auto .form-group > label, .bg-primary-300.text-auto .form-group > label, .bg-primary-400.text-auto .form-group > label, .bg-primary-500.text-auto .form-group > label, .bg-primary.text-auto .form-group > label, .bg-primary-600.text-auto .form-group > label, .bg-primary-700.text-auto .form-group > label, .bg-primary-800.text-auto .form-group > label, .bg-primary-900.text-auto .form-group > label, .bg-primary-A400.text-auto .form-group > label, .bg-primary-A700.text-auto .form-group > label, .bg-secondary-500.text-auto .form-group > label, .bg-secondary.text-auto .form-group > label, .bg-secondary-600.text-auto .form-group > label, .bg-secondary-700.text-auto .form-group > label, .bg-secondary-800.text-auto .form-group > label, .bg-secondary-900.text-auto .form-group > label, .bg-secondary-A200.text-auto .form-group > label, .bg-secondary-A400.text-auto .form-group > label, .bg-secondary-A700.text-auto .form-group > label, .bg-success-600.text-auto .form-group > label, .bg-success-700.text-auto .form-group > label, .bg-success-800.text-auto .form-group > label, .bg-success-900.text-auto .form-group > label, .bg-info-500.text-auto .form-group > label, .bg-info.text-auto .form-group > label, .bg-info-600.text-auto .form-group > label, .bg-info-700.text-auto .form-group > label, .bg-info-800.text-auto .form-group > label, .bg-info-900.text-auto .form-group > label, .bg-warning-900.text-auto .form-group > label, .bg-danger-400.text-auto .form-group > label, .bg-danger-500.text-auto .form-group > label, .bg-danger.text-auto .form-group > label, .bg-danger-600.text-auto .form-group > label, .bg-danger-700.text-auto .form-group > label, .bg-danger-800.text-auto .form-group > label, .bg-danger-900.text-auto .form-group > label, .bg-danger-A200.text-auto .form-group > label, .bg-danger-A400.text-auto .form-group > label, .bg-danger-A700.text-auto .form-group > label, .bg-dark-500.text-auto .form-group > label, .bg-dark.text-auto .form-group > label, .bg-red-400.text-auto .form-group > label, .bg-red-500.text-auto .form-group > label, .bg-red.text-auto .form-group > label, .bg-red-600.text-auto .form-group > label, .bg-red-700.text-auto .form-group > label, .bg-red-800.text-auto .form-group > label, .bg-red-900.text-auto .form-group > label, .bg-red-A200.text-auto .form-group > label, .bg-red-A400.text-auto .form-group > label, .bg-red-A700.text-auto .form-group > label, .bg-blue-500.text-auto .form-group > label, .bg-blue.text-auto .form-group > label, .bg-blue-600.text-auto .form-group > label, .bg-blue-700.text-auto .form-group > label, .bg-blue-800.text-auto .form-group > label, .bg-blue-900.text-auto .form-group > label, .bg-blue-A200.text-auto .form-group > label, .bg-blue-A400.text-auto .form-group > label, .bg-blue-A700.text-auto .form-group > label, .bg-teal-500.text-auto .form-group > label, .bg-teal.text-auto .form-group > label, .bg-teal-600.text-auto .form-group > label, .bg-teal-700.text-auto .form-group > label, .bg-teal-800.text-auto .form-group > label, .bg-teal-900.text-auto .form-group > label, .bg-green-600.text-auto .form-group > label, .bg-green-700.text-auto .form-group > label, .bg-green-800.text-auto .form-group > label, .bg-green-900.text-auto .form-group > label, .bg-orange-900.text-auto .form-group > label, .bg-grey-600.text-auto .form-group > label, .bg-grey-700.text-auto .form-group > label, .bg-grey-800.text-auto .form-group > label, .bg-grey-900.text-auto .form-group > label, .bg-grey-1000.text-auto .form-group > label, .bg-grey-A700.text-auto .form-group > label, .bg-fuse-dark-300.text-auto .form-group > label, .bg-fuse-dark-400.text-auto .form-group > label, .bg-fuse-dark-500.text-auto .form-group > label, .bg-fuse-dark.text-auto .form-group > label, .bg-fuse-dark-600.text-auto .form-group > label, .bg-fuse-dark-700.text-auto .form-group > label, .bg-fuse-dark-800.text-auto .form-group > label, .bg-fuse-dark-900.text-auto .form-group > label, .bg-fuse-dark-A400.text-auto .form-group > label, .bg-fuse-dark-A700.text-auto .form-group > label, .bg-black-500.text-auto .form-group > label, .bg-black.text-auto .form-group > label {
  color: rgba(255, 255, 255, 0.7);
}
.light-fg .nav .subheader, .light-fg.text-auto .nav .subheader, .bg-primary-300.text-auto .nav .subheader, .bg-primary-400.text-auto .nav .subheader, .bg-primary-500.text-auto .nav .subheader, .bg-primary.text-auto .nav .subheader, .bg-primary-600.text-auto .nav .subheader, .bg-primary-700.text-auto .nav .subheader, .bg-primary-800.text-auto .nav .subheader, .bg-primary-900.text-auto .nav .subheader, .bg-primary-A400.text-auto .nav .subheader, .bg-primary-A700.text-auto .nav .subheader, .bg-secondary-500.text-auto .nav .subheader, .bg-secondary.text-auto .nav .subheader, .bg-secondary-600.text-auto .nav .subheader, .bg-secondary-700.text-auto .nav .subheader, .bg-secondary-800.text-auto .nav .subheader, .bg-secondary-900.text-auto .nav .subheader, .bg-secondary-A200.text-auto .nav .subheader, .bg-secondary-A400.text-auto .nav .subheader, .bg-secondary-A700.text-auto .nav .subheader, .bg-success-600.text-auto .nav .subheader, .bg-success-700.text-auto .nav .subheader, .bg-success-800.text-auto .nav .subheader, .bg-success-900.text-auto .nav .subheader, .bg-info-500.text-auto .nav .subheader, .bg-info.text-auto .nav .subheader, .bg-info-600.text-auto .nav .subheader, .bg-info-700.text-auto .nav .subheader, .bg-info-800.text-auto .nav .subheader, .bg-info-900.text-auto .nav .subheader, .bg-warning-900.text-auto .nav .subheader, .bg-danger-400.text-auto .nav .subheader, .bg-danger-500.text-auto .nav .subheader, .bg-danger.text-auto .nav .subheader, .bg-danger-600.text-auto .nav .subheader, .bg-danger-700.text-auto .nav .subheader, .bg-danger-800.text-auto .nav .subheader, .bg-danger-900.text-auto .nav .subheader, .bg-danger-A200.text-auto .nav .subheader, .bg-danger-A400.text-auto .nav .subheader, .bg-danger-A700.text-auto .nav .subheader, .bg-dark-500.text-auto .nav .subheader, .bg-dark.text-auto .nav .subheader, .bg-red-400.text-auto .nav .subheader, .bg-red-500.text-auto .nav .subheader, .bg-red.text-auto .nav .subheader, .bg-red-600.text-auto .nav .subheader, .bg-red-700.text-auto .nav .subheader, .bg-red-800.text-auto .nav .subheader, .bg-red-900.text-auto .nav .subheader, .bg-red-A200.text-auto .nav .subheader, .bg-red-A400.text-auto .nav .subheader, .bg-red-A700.text-auto .nav .subheader, .bg-blue-500.text-auto .nav .subheader, .bg-blue.text-auto .nav .subheader, .bg-blue-600.text-auto .nav .subheader, .bg-blue-700.text-auto .nav .subheader, .bg-blue-800.text-auto .nav .subheader, .bg-blue-900.text-auto .nav .subheader, .bg-blue-A200.text-auto .nav .subheader, .bg-blue-A400.text-auto .nav .subheader, .bg-blue-A700.text-auto .nav .subheader, .bg-teal-500.text-auto .nav .subheader, .bg-teal.text-auto .nav .subheader, .bg-teal-600.text-auto .nav .subheader, .bg-teal-700.text-auto .nav .subheader, .bg-teal-800.text-auto .nav .subheader, .bg-teal-900.text-auto .nav .subheader, .bg-green-600.text-auto .nav .subheader, .bg-green-700.text-auto .nav .subheader, .bg-green-800.text-auto .nav .subheader, .bg-green-900.text-auto .nav .subheader, .bg-orange-900.text-auto .nav .subheader, .bg-grey-600.text-auto .nav .subheader, .bg-grey-700.text-auto .nav .subheader, .bg-grey-800.text-auto .nav .subheader, .bg-grey-900.text-auto .nav .subheader, .bg-grey-1000.text-auto .nav .subheader, .bg-grey-A700.text-auto .nav .subheader, .bg-fuse-dark-300.text-auto .nav .subheader, .bg-fuse-dark-400.text-auto .nav .subheader, .bg-fuse-dark-500.text-auto .nav .subheader, .bg-fuse-dark.text-auto .nav .subheader, .bg-fuse-dark-600.text-auto .nav .subheader, .bg-fuse-dark-700.text-auto .nav .subheader, .bg-fuse-dark-800.text-auto .nav .subheader, .bg-fuse-dark-900.text-auto .nav .subheader, .bg-fuse-dark-A400.text-auto .nav .subheader, .bg-fuse-dark-A700.text-auto .nav .subheader, .bg-black-500.text-auto .nav .subheader, .bg-black.text-auto .nav .subheader {
  color: rgba(255, 255, 255, 0.5);
}
.light-fg .nav .subheader:before, .light-fg.text-auto .nav .subheader:before, .bg-primary-300.text-auto .nav .subheader:before, .bg-primary-400.text-auto .nav .subheader:before, .bg-primary-500.text-auto .nav .subheader:before, .bg-primary.text-auto .nav .subheader:before, .bg-primary-600.text-auto .nav .subheader:before, .bg-primary-700.text-auto .nav .subheader:before, .bg-primary-800.text-auto .nav .subheader:before, .bg-primary-900.text-auto .nav .subheader:before, .bg-primary-A400.text-auto .nav .subheader:before, .bg-primary-A700.text-auto .nav .subheader:before, .bg-secondary-500.text-auto .nav .subheader:before, .bg-secondary.text-auto .nav .subheader:before, .bg-secondary-600.text-auto .nav .subheader:before, .bg-secondary-700.text-auto .nav .subheader:before, .bg-secondary-800.text-auto .nav .subheader:before, .bg-secondary-900.text-auto .nav .subheader:before, .bg-secondary-A200.text-auto .nav .subheader:before, .bg-secondary-A400.text-auto .nav .subheader:before, .bg-secondary-A700.text-auto .nav .subheader:before, .bg-success-600.text-auto .nav .subheader:before, .bg-success-700.text-auto .nav .subheader:before, .bg-success-800.text-auto .nav .subheader:before, .bg-success-900.text-auto .nav .subheader:before, .bg-info-500.text-auto .nav .subheader:before, .bg-info.text-auto .nav .subheader:before, .bg-info-600.text-auto .nav .subheader:before, .bg-info-700.text-auto .nav .subheader:before, .bg-info-800.text-auto .nav .subheader:before, .bg-info-900.text-auto .nav .subheader:before, .bg-warning-900.text-auto .nav .subheader:before, .bg-danger-400.text-auto .nav .subheader:before, .bg-danger-500.text-auto .nav .subheader:before, .bg-danger.text-auto .nav .subheader:before, .bg-danger-600.text-auto .nav .subheader:before, .bg-danger-700.text-auto .nav .subheader:before, .bg-danger-800.text-auto .nav .subheader:before, .bg-danger-900.text-auto .nav .subheader:before, .bg-danger-A200.text-auto .nav .subheader:before, .bg-danger-A400.text-auto .nav .subheader:before, .bg-danger-A700.text-auto .nav .subheader:before, .bg-dark-500.text-auto .nav .subheader:before, .bg-dark.text-auto .nav .subheader:before, .bg-red-400.text-auto .nav .subheader:before, .bg-red-500.text-auto .nav .subheader:before, .bg-red.text-auto .nav .subheader:before, .bg-red-600.text-auto .nav .subheader:before, .bg-red-700.text-auto .nav .subheader:before, .bg-red-800.text-auto .nav .subheader:before, .bg-red-900.text-auto .nav .subheader:before, .bg-red-A200.text-auto .nav .subheader:before, .bg-red-A400.text-auto .nav .subheader:before, .bg-red-A700.text-auto .nav .subheader:before, .bg-blue-500.text-auto .nav .subheader:before, .bg-blue.text-auto .nav .subheader:before, .bg-blue-600.text-auto .nav .subheader:before, .bg-blue-700.text-auto .nav .subheader:before, .bg-blue-800.text-auto .nav .subheader:before, .bg-blue-900.text-auto .nav .subheader:before, .bg-blue-A200.text-auto .nav .subheader:before, .bg-blue-A400.text-auto .nav .subheader:before, .bg-blue-A700.text-auto .nav .subheader:before, .bg-teal-500.text-auto .nav .subheader:before, .bg-teal.text-auto .nav .subheader:before, .bg-teal-600.text-auto .nav .subheader:before, .bg-teal-700.text-auto .nav .subheader:before, .bg-teal-800.text-auto .nav .subheader:before, .bg-teal-900.text-auto .nav .subheader:before, .bg-green-600.text-auto .nav .subheader:before, .bg-green-700.text-auto .nav .subheader:before, .bg-green-800.text-auto .nav .subheader:before, .bg-green-900.text-auto .nav .subheader:before, .bg-orange-900.text-auto .nav .subheader:before, .bg-grey-600.text-auto .nav .subheader:before, .bg-grey-700.text-auto .nav .subheader:before, .bg-grey-800.text-auto .nav .subheader:before, .bg-grey-900.text-auto .nav .subheader:before, .bg-grey-1000.text-auto .nav .subheader:before, .bg-grey-A700.text-auto .nav .subheader:before, .bg-fuse-dark-300.text-auto .nav .subheader:before, .bg-fuse-dark-400.text-auto .nav .subheader:before, .bg-fuse-dark-500.text-auto .nav .subheader:before, .bg-fuse-dark.text-auto .nav .subheader:before, .bg-fuse-dark-600.text-auto .nav .subheader:before, .bg-fuse-dark-700.text-auto .nav .subheader:before, .bg-fuse-dark-800.text-auto .nav .subheader:before, .bg-fuse-dark-900.text-auto .nav .subheader:before, .bg-fuse-dark-A400.text-auto .nav .subheader:before, .bg-fuse-dark-A700.text-auto .nav .subheader:before, .bg-black-500.text-auto .nav .subheader:before, .bg-black.text-auto .nav .subheader:before {
  border-top-color: rgba(255, 255, 255, 0.5);
}
.light-fg .nav .nav-link, .light-fg.text-auto .nav .nav-link, .bg-primary-300.text-auto .nav .nav-link, .bg-primary-400.text-auto .nav .nav-link, .bg-primary-500.text-auto .nav .nav-link, .bg-primary.text-auto .nav .nav-link, .bg-primary-600.text-auto .nav .nav-link, .bg-primary-700.text-auto .nav .nav-link, .bg-primary-800.text-auto .nav .nav-link, .bg-primary-900.text-auto .nav .nav-link, .bg-primary-A400.text-auto .nav .nav-link, .bg-primary-A700.text-auto .nav .nav-link, .bg-secondary-500.text-auto .nav .nav-link, .bg-secondary.text-auto .nav .nav-link, .bg-secondary-600.text-auto .nav .nav-link, .bg-secondary-700.text-auto .nav .nav-link, .bg-secondary-800.text-auto .nav .nav-link, .bg-secondary-900.text-auto .nav .nav-link, .bg-secondary-A200.text-auto .nav .nav-link, .bg-secondary-A400.text-auto .nav .nav-link, .bg-secondary-A700.text-auto .nav .nav-link, .bg-success-600.text-auto .nav .nav-link, .bg-success-700.text-auto .nav .nav-link, .bg-success-800.text-auto .nav .nav-link, .bg-success-900.text-auto .nav .nav-link, .bg-info-500.text-auto .nav .nav-link, .bg-info.text-auto .nav .nav-link, .bg-info-600.text-auto .nav .nav-link, .bg-info-700.text-auto .nav .nav-link, .bg-info-800.text-auto .nav .nav-link, .bg-info-900.text-auto .nav .nav-link, .bg-warning-900.text-auto .nav .nav-link, .bg-danger-400.text-auto .nav .nav-link, .bg-danger-500.text-auto .nav .nav-link, .bg-danger.text-auto .nav .nav-link, .bg-danger-600.text-auto .nav .nav-link, .bg-danger-700.text-auto .nav .nav-link, .bg-danger-800.text-auto .nav .nav-link, .bg-danger-900.text-auto .nav .nav-link, .bg-danger-A200.text-auto .nav .nav-link, .bg-danger-A400.text-auto .nav .nav-link, .bg-danger-A700.text-auto .nav .nav-link, .bg-dark-500.text-auto .nav .nav-link, .bg-dark.text-auto .nav .nav-link, .bg-red-400.text-auto .nav .nav-link, .bg-red-500.text-auto .nav .nav-link, .bg-red.text-auto .nav .nav-link, .bg-red-600.text-auto .nav .nav-link, .bg-red-700.text-auto .nav .nav-link, .bg-red-800.text-auto .nav .nav-link, .bg-red-900.text-auto .nav .nav-link, .bg-red-A200.text-auto .nav .nav-link, .bg-red-A400.text-auto .nav .nav-link, .bg-red-A700.text-auto .nav .nav-link, .bg-blue-500.text-auto .nav .nav-link, .bg-blue.text-auto .nav .nav-link, .bg-blue-600.text-auto .nav .nav-link, .bg-blue-700.text-auto .nav .nav-link, .bg-blue-800.text-auto .nav .nav-link, .bg-blue-900.text-auto .nav .nav-link, .bg-blue-A200.text-auto .nav .nav-link, .bg-blue-A400.text-auto .nav .nav-link, .bg-blue-A700.text-auto .nav .nav-link, .bg-teal-500.text-auto .nav .nav-link, .bg-teal.text-auto .nav .nav-link, .bg-teal-600.text-auto .nav .nav-link, .bg-teal-700.text-auto .nav .nav-link, .bg-teal-800.text-auto .nav .nav-link, .bg-teal-900.text-auto .nav .nav-link, .bg-green-600.text-auto .nav .nav-link, .bg-green-700.text-auto .nav .nav-link, .bg-green-800.text-auto .nav .nav-link, .bg-green-900.text-auto .nav .nav-link, .bg-orange-900.text-auto .nav .nav-link, .bg-grey-600.text-auto .nav .nav-link, .bg-grey-700.text-auto .nav .nav-link, .bg-grey-800.text-auto .nav .nav-link, .bg-grey-900.text-auto .nav .nav-link, .bg-grey-1000.text-auto .nav .nav-link, .bg-grey-A700.text-auto .nav .nav-link, .bg-fuse-dark-300.text-auto .nav .nav-link, .bg-fuse-dark-400.text-auto .nav .nav-link, .bg-fuse-dark-500.text-auto .nav .nav-link, .bg-fuse-dark.text-auto .nav .nav-link, .bg-fuse-dark-600.text-auto .nav .nav-link, .bg-fuse-dark-700.text-auto .nav .nav-link, .bg-fuse-dark-800.text-auto .nav .nav-link, .bg-fuse-dark-900.text-auto .nav .nav-link, .bg-fuse-dark-A400.text-auto .nav .nav-link, .bg-fuse-dark-A700.text-auto .nav .nav-link, .bg-black-500.text-auto .nav .nav-link, .bg-black.text-auto .nav .nav-link {
  color: white;
}
.light-fg .nav .nav-link:hover, .light-fg.text-auto .nav .nav-link:hover, .bg-primary-300.text-auto .nav .nav-link:hover, .bg-primary-400.text-auto .nav .nav-link:hover, .bg-primary-500.text-auto .nav .nav-link:hover, .bg-primary.text-auto .nav .nav-link:hover, .bg-primary-600.text-auto .nav .nav-link:hover, .bg-primary-700.text-auto .nav .nav-link:hover, .bg-primary-800.text-auto .nav .nav-link:hover, .bg-primary-900.text-auto .nav .nav-link:hover, .bg-primary-A400.text-auto .nav .nav-link:hover, .bg-primary-A700.text-auto .nav .nav-link:hover, .bg-secondary-500.text-auto .nav .nav-link:hover, .bg-secondary.text-auto .nav .nav-link:hover, .bg-secondary-600.text-auto .nav .nav-link:hover, .bg-secondary-700.text-auto .nav .nav-link:hover, .bg-secondary-800.text-auto .nav .nav-link:hover, .bg-secondary-900.text-auto .nav .nav-link:hover, .bg-secondary-A200.text-auto .nav .nav-link:hover, .bg-secondary-A400.text-auto .nav .nav-link:hover, .bg-secondary-A700.text-auto .nav .nav-link:hover, .bg-success-600.text-auto .nav .nav-link:hover, .bg-success-700.text-auto .nav .nav-link:hover, .bg-success-800.text-auto .nav .nav-link:hover, .bg-success-900.text-auto .nav .nav-link:hover, .bg-info-500.text-auto .nav .nav-link:hover, .bg-info.text-auto .nav .nav-link:hover, .bg-info-600.text-auto .nav .nav-link:hover, .bg-info-700.text-auto .nav .nav-link:hover, .bg-info-800.text-auto .nav .nav-link:hover, .bg-info-900.text-auto .nav .nav-link:hover, .bg-warning-900.text-auto .nav .nav-link:hover, .bg-danger-400.text-auto .nav .nav-link:hover, .bg-danger-500.text-auto .nav .nav-link:hover, .bg-danger.text-auto .nav .nav-link:hover, .bg-danger-600.text-auto .nav .nav-link:hover, .bg-danger-700.text-auto .nav .nav-link:hover, .bg-danger-800.text-auto .nav .nav-link:hover, .bg-danger-900.text-auto .nav .nav-link:hover, .bg-danger-A200.text-auto .nav .nav-link:hover, .bg-danger-A400.text-auto .nav .nav-link:hover, .bg-danger-A700.text-auto .nav .nav-link:hover, .bg-dark-500.text-auto .nav .nav-link:hover, .bg-dark.text-auto .nav .nav-link:hover, .bg-red-400.text-auto .nav .nav-link:hover, .bg-red-500.text-auto .nav .nav-link:hover, .bg-red.text-auto .nav .nav-link:hover, .bg-red-600.text-auto .nav .nav-link:hover, .bg-red-700.text-auto .nav .nav-link:hover, .bg-red-800.text-auto .nav .nav-link:hover, .bg-red-900.text-auto .nav .nav-link:hover, .bg-red-A200.text-auto .nav .nav-link:hover, .bg-red-A400.text-auto .nav .nav-link:hover, .bg-red-A700.text-auto .nav .nav-link:hover, .bg-blue-500.text-auto .nav .nav-link:hover, .bg-blue.text-auto .nav .nav-link:hover, .bg-blue-600.text-auto .nav .nav-link:hover, .bg-blue-700.text-auto .nav .nav-link:hover, .bg-blue-800.text-auto .nav .nav-link:hover, .bg-blue-900.text-auto .nav .nav-link:hover, .bg-blue-A200.text-auto .nav .nav-link:hover, .bg-blue-A400.text-auto .nav .nav-link:hover, .bg-blue-A700.text-auto .nav .nav-link:hover, .bg-teal-500.text-auto .nav .nav-link:hover, .bg-teal.text-auto .nav .nav-link:hover, .bg-teal-600.text-auto .nav .nav-link:hover, .bg-teal-700.text-auto .nav .nav-link:hover, .bg-teal-800.text-auto .nav .nav-link:hover, .bg-teal-900.text-auto .nav .nav-link:hover, .bg-green-600.text-auto .nav .nav-link:hover, .bg-green-700.text-auto .nav .nav-link:hover, .bg-green-800.text-auto .nav .nav-link:hover, .bg-green-900.text-auto .nav .nav-link:hover, .bg-orange-900.text-auto .nav .nav-link:hover, .bg-grey-600.text-auto .nav .nav-link:hover, .bg-grey-700.text-auto .nav .nav-link:hover, .bg-grey-800.text-auto .nav .nav-link:hover, .bg-grey-900.text-auto .nav .nav-link:hover, .bg-grey-1000.text-auto .nav .nav-link:hover, .bg-grey-A700.text-auto .nav .nav-link:hover, .bg-fuse-dark-300.text-auto .nav .nav-link:hover, .bg-fuse-dark-400.text-auto .nav .nav-link:hover, .bg-fuse-dark-500.text-auto .nav .nav-link:hover, .bg-fuse-dark.text-auto .nav .nav-link:hover, .bg-fuse-dark-600.text-auto .nav .nav-link:hover, .bg-fuse-dark-700.text-auto .nav .nav-link:hover, .bg-fuse-dark-800.text-auto .nav .nav-link:hover, .bg-fuse-dark-900.text-auto .nav .nav-link:hover, .bg-fuse-dark-A400.text-auto .nav .nav-link:hover, .bg-fuse-dark-A700.text-auto .nav .nav-link:hover, .bg-black-500.text-auto .nav .nav-link:hover, .bg-black.text-auto .nav .nav-link:hover {
  color: #3C4252;
}
.light-fg .nav .nav-link:hover > i, .light-fg.text-auto .nav .nav-link:hover > i, .bg-primary-300.text-auto .nav .nav-link:hover > i, .bg-primary-400.text-auto .nav .nav-link:hover > i, .bg-primary-500.text-auto .nav .nav-link:hover > i, .bg-primary.text-auto .nav .nav-link:hover > i, .bg-primary-600.text-auto .nav .nav-link:hover > i, .bg-primary-700.text-auto .nav .nav-link:hover > i, .bg-primary-800.text-auto .nav .nav-link:hover > i, .bg-primary-900.text-auto .nav .nav-link:hover > i, .bg-primary-A400.text-auto .nav .nav-link:hover > i, .bg-primary-A700.text-auto .nav .nav-link:hover > i, .bg-secondary-500.text-auto .nav .nav-link:hover > i, .bg-secondary.text-auto .nav .nav-link:hover > i, .bg-secondary-600.text-auto .nav .nav-link:hover > i, .bg-secondary-700.text-auto .nav .nav-link:hover > i, .bg-secondary-800.text-auto .nav .nav-link:hover > i, .bg-secondary-900.text-auto .nav .nav-link:hover > i, .bg-secondary-A200.text-auto .nav .nav-link:hover > i, .bg-secondary-A400.text-auto .nav .nav-link:hover > i, .bg-secondary-A700.text-auto .nav .nav-link:hover > i, .bg-success-600.text-auto .nav .nav-link:hover > i, .bg-success-700.text-auto .nav .nav-link:hover > i, .bg-success-800.text-auto .nav .nav-link:hover > i, .bg-success-900.text-auto .nav .nav-link:hover > i, .bg-info-500.text-auto .nav .nav-link:hover > i, .bg-info.text-auto .nav .nav-link:hover > i, .bg-info-600.text-auto .nav .nav-link:hover > i, .bg-info-700.text-auto .nav .nav-link:hover > i, .bg-info-800.text-auto .nav .nav-link:hover > i, .bg-info-900.text-auto .nav .nav-link:hover > i, .bg-warning-900.text-auto .nav .nav-link:hover > i, .bg-danger-400.text-auto .nav .nav-link:hover > i, .bg-danger-500.text-auto .nav .nav-link:hover > i, .bg-danger.text-auto .nav .nav-link:hover > i, .bg-danger-600.text-auto .nav .nav-link:hover > i, .bg-danger-700.text-auto .nav .nav-link:hover > i, .bg-danger-800.text-auto .nav .nav-link:hover > i, .bg-danger-900.text-auto .nav .nav-link:hover > i, .bg-danger-A200.text-auto .nav .nav-link:hover > i, .bg-danger-A400.text-auto .nav .nav-link:hover > i, .bg-danger-A700.text-auto .nav .nav-link:hover > i, .bg-dark-500.text-auto .nav .nav-link:hover > i, .bg-dark.text-auto .nav .nav-link:hover > i, .bg-red-400.text-auto .nav .nav-link:hover > i, .bg-red-500.text-auto .nav .nav-link:hover > i, .bg-red.text-auto .nav .nav-link:hover > i, .bg-red-600.text-auto .nav .nav-link:hover > i, .bg-red-700.text-auto .nav .nav-link:hover > i, .bg-red-800.text-auto .nav .nav-link:hover > i, .bg-red-900.text-auto .nav .nav-link:hover > i, .bg-red-A200.text-auto .nav .nav-link:hover > i, .bg-red-A400.text-auto .nav .nav-link:hover > i, .bg-red-A700.text-auto .nav .nav-link:hover > i, .bg-blue-500.text-auto .nav .nav-link:hover > i, .bg-blue.text-auto .nav .nav-link:hover > i, .bg-blue-600.text-auto .nav .nav-link:hover > i, .bg-blue-700.text-auto .nav .nav-link:hover > i, .bg-blue-800.text-auto .nav .nav-link:hover > i, .bg-blue-900.text-auto .nav .nav-link:hover > i, .bg-blue-A200.text-auto .nav .nav-link:hover > i, .bg-blue-A400.text-auto .nav .nav-link:hover > i, .bg-blue-A700.text-auto .nav .nav-link:hover > i, .bg-teal-500.text-auto .nav .nav-link:hover > i, .bg-teal.text-auto .nav .nav-link:hover > i, .bg-teal-600.text-auto .nav .nav-link:hover > i, .bg-teal-700.text-auto .nav .nav-link:hover > i, .bg-teal-800.text-auto .nav .nav-link:hover > i, .bg-teal-900.text-auto .nav .nav-link:hover > i, .bg-green-600.text-auto .nav .nav-link:hover > i, .bg-green-700.text-auto .nav .nav-link:hover > i, .bg-green-800.text-auto .nav .nav-link:hover > i, .bg-green-900.text-auto .nav .nav-link:hover > i, .bg-orange-900.text-auto .nav .nav-link:hover > i, .bg-grey-600.text-auto .nav .nav-link:hover > i, .bg-grey-700.text-auto .nav .nav-link:hover > i, .bg-grey-800.text-auto .nav .nav-link:hover > i, .bg-grey-900.text-auto .nav .nav-link:hover > i, .bg-grey-1000.text-auto .nav .nav-link:hover > i, .bg-grey-A700.text-auto .nav .nav-link:hover > i, .bg-fuse-dark-300.text-auto .nav .nav-link:hover > i, .bg-fuse-dark-400.text-auto .nav .nav-link:hover > i, .bg-fuse-dark-500.text-auto .nav .nav-link:hover > i, .bg-fuse-dark.text-auto .nav .nav-link:hover > i, .bg-fuse-dark-600.text-auto .nav .nav-link:hover > i, .bg-fuse-dark-700.text-auto .nav .nav-link:hover > i, .bg-fuse-dark-800.text-auto .nav .nav-link:hover > i, .bg-fuse-dark-900.text-auto .nav .nav-link:hover > i, .bg-fuse-dark-A400.text-auto .nav .nav-link:hover > i, .bg-fuse-dark-A700.text-auto .nav .nav-link:hover > i, .bg-black-500.text-auto .nav .nav-link:hover > i, .bg-black.text-auto .nav .nav-link:hover > i {
  color: #3C4252;
}
.light-fg .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.light-fg .custom-checkbox input[type=radio] ~ .radio-icon:before,
.light-fg .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.light-fg .custom-radio input[type=radio] ~ .radio-icon:before,
.light-fg .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.light-fg .form-check-label input[type=radio] ~ .radio-icon:before, .light-fg.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.light-fg.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.light-fg.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.light-fg.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.light-fg.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.light-fg.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-primary-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-primary-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-primary-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-primary-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-primary-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-primary-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-primary-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-primary-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-primary-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-primary.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-primary.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-primary.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-primary.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-primary.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-primary.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-primary-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-primary-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-primary-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-primary-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-primary-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-primary-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-primary-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-primary-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-primary-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-primary-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-primary-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-primary-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-primary-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-primary-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-primary-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-primary-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-primary-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-primary-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-secondary-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-secondary-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-secondary-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-secondary.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-secondary.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-secondary.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-secondary-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-secondary-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-secondary-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-secondary-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-secondary-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-secondary-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-secondary-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-secondary-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-secondary-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-secondary-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-secondary-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-secondary-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-secondary-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-secondary-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-secondary-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-secondary-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-secondary-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-secondary-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-secondary-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-secondary-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-secondary-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-success-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-success-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-success-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-success-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-success-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-success-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-success-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-success-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-success-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-success-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-success-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-success-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-success-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-success-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-success-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-success-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-success-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-success-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-success-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-success-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-success-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-success-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-success-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-success-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-info-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-info-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-info-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-info-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-info-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-info-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-info.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-info.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-info.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-info.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-info.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-info.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-info-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-info-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-info-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-info-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-info-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-info-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-info-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-info-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-info-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-info-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-info-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-info-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-info-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-info-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-info-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-info-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-info-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-info-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-info-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-info-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-info-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-info-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-info-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-info-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-warning-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-warning-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-warning-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-danger-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-danger-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-danger-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-danger-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-danger-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-danger-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-danger.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-danger.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-danger.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-danger.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-danger.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-danger.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-danger-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-danger-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-danger-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-danger-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-danger-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-danger-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-danger-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-danger-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-danger-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-danger-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-danger-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-danger-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-danger-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-danger-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-danger-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-danger-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-danger-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-danger-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-danger-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-danger-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-danger-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-dark-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-dark-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-dark-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-dark-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-dark-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-dark-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-dark.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-dark.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-dark.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-dark.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-dark.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-dark.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-red-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-red-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-red-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-red-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-red-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-red-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-red-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-red-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-red-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-red-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-red-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-red-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-red.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-red.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-red.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-red.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-red.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-red.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-red-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-red-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-red-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-red-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-red-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-red-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-red-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-red-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-red-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-red-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-red-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-red-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-red-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-red-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-red-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-red-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-red-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-red-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-red-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-red-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-red-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-red-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-red-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-red-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-red-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-red-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-red-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-red-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-red-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-red-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-red-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-red-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-red-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-red-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-red-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-red-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-red-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-red-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-red-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-red-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-red-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-red-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-blue-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-blue-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-blue.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-blue.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-blue.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-blue.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-blue.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-blue-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-blue-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-blue-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-blue-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-blue-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-blue-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-blue-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-blue-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-blue-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-blue-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-blue-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-blue-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-blue-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-blue-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-teal-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-teal-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-teal-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-teal.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-teal.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-teal.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-teal.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-teal.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-teal.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-teal-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-teal-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-teal-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-teal-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-teal-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-teal-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-teal-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-teal-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-teal-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-teal-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-teal-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-teal-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-green-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-green-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-green-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-green-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-green-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-green-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-green-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-green-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-green-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-green-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-green-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-green-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-green-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-green-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-green-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-green-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-green-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-green-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-green-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-green-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-green-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-green-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-green-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-green-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-orange-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-orange-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-orange-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey-1000.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-1000.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey-1000.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-1000.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey-1000.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-1000.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-fuse-dark-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-fuse-dark-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-fuse-dark-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-fuse-dark.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-fuse-dark-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-fuse-dark-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-fuse-dark-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-fuse-dark-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-fuse-dark-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-fuse-dark-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-black-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-black-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-black-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-black-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-black-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-black-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-black.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-black.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-black.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-black.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-black.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-black.text-auto .form-check-label input[type=radio] ~ .radio-icon:before {
  border-color: rgba(255, 255, 255, 0.7);
}
.light-fg .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.light-fg .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.light-fg .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.light-fg .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.light-fg .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.light-fg .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .light-fg.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.light-fg.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.light-fg.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.light-fg.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.light-fg.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.light-fg.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-primary-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-primary-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-primary-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-primary.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-primary-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-primary-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-primary-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-primary-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-primary-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-primary-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-secondary-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-secondary.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-secondary-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-secondary-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-secondary-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-secondary-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-secondary-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-secondary-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-secondary-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-success-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-success-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-success-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-success-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-info-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-info.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-info.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-info.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-info-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-info-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-info-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-info-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-warning-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-danger-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-danger-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-danger.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-danger-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-danger-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-danger-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-danger-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-danger-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-danger-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-danger-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-dark-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-dark-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-dark-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-dark-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-dark-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-dark-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-dark.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-dark.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-dark.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-dark.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-dark.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-dark.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-red-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-red-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-red.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-red.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-red.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-red-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-red-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-red-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-red-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-red-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-red-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-red-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-teal-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-teal.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-teal-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-teal-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-teal-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-teal-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-green-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-green-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-green-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-green-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-orange-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey-1000.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-1000.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-1000.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-1000.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-1000.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-1000.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-fuse-dark-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-fuse-dark-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-fuse-dark-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-fuse-dark.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-fuse-dark-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-fuse-dark-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-fuse-dark-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-fuse-dark-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-fuse-dark-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-fuse-dark-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-black-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-black-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-black-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-black-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-black-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-black-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-black.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-black.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-black.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-black.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-black.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-black.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
  color: rgba(255, 255, 255, 0.7);
}
.light-fg input[type=checkbox]:disabled ~ .checkbox-icon,
.light-fg input[type=checkbox]:disabled ~ .custom-control-indicator,
.light-fg input[type=checkbox]:disabled ~ .form-check-description, .light-fg input[type=checkbox][disabled] ~ .checkbox-icon,
.light-fg input[type=checkbox][disabled] ~ .custom-control-indicator,
.light-fg input[type=checkbox][disabled] ~ .form-check-description, .light-fg.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.light-fg.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.light-fg.text-auto input[type=checkbox]:disabled ~ .form-check-description, .light-fg.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.light-fg.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.light-fg.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-primary-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-primary-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-primary-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-primary-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-primary-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-primary-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-primary-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-primary-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-primary-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-primary-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-primary-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-primary-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-primary-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-primary-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-primary-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-primary-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-primary-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-primary-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-primary.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-primary.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-primary.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-primary.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-primary.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-primary.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-primary-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-primary-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-primary-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-primary-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-primary-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-primary-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-primary-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-primary-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-primary-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-primary-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-primary-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-primary-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-primary-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-primary-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-primary-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-primary-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-primary-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-primary-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-primary-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-primary-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-primary-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-primary-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-primary-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-primary-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-primary-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-primary-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-primary-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-primary-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-primary-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-primary-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-primary-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-primary-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-primary-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-primary-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-primary-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-primary-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-secondary-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-secondary-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-secondary-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-secondary-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-secondary-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-secondary-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-secondary.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-secondary.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-secondary.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-secondary.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-secondary.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-secondary.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-secondary-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-secondary-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-secondary-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-secondary-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-secondary-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-secondary-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-secondary-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-secondary-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-secondary-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-secondary-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-secondary-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-secondary-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-secondary-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-secondary-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-secondary-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-secondary-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-secondary-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-secondary-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-secondary-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-secondary-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-secondary-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-secondary-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-secondary-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-secondary-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-secondary-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-secondary-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-secondary-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-secondary-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-secondary-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-secondary-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-secondary-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-secondary-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-secondary-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-secondary-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-secondary-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-secondary-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-secondary-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-secondary-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-secondary-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-secondary-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-secondary-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-secondary-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-success-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-success-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-success-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-success-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-success-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-success-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-success-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-success-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-success-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-success-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-success-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-success-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-success-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-success-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-success-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-success-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-success-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-success-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-success-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-success-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-success-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-success-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-success-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-success-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-info-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-info-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-info-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-info-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-info-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-info-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-info.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-info.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-info.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-info.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-info.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-info.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-info-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-info-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-info-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-info-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-info-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-info-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-info-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-info-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-info-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-info-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-info-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-info-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-info-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-info-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-info-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-info-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-info-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-info-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-info-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-info-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-info-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-info-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-info-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-info-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-warning-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-warning-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-warning-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-warning-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-warning-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-warning-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-danger-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-danger-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-danger-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-danger-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-danger-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-danger-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-danger-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-danger-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-danger-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-danger-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-danger-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-danger-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-danger.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-danger.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-danger.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-danger.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-danger.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-danger.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-danger-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-danger-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-danger-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-danger-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-danger-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-danger-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-danger-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-danger-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-danger-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-danger-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-danger-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-danger-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-danger-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-danger-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-danger-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-danger-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-danger-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-danger-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-danger-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-danger-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-danger-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-danger-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-danger-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-danger-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-danger-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-danger-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-danger-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-danger-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-danger-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-danger-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-danger-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-danger-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-danger-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-danger-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-danger-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-danger-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-danger-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-danger-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-danger-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-danger-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-danger-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-danger-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-dark-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-dark-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-dark-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-dark-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-dark-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-dark-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-dark.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-dark.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-dark.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-dark.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-dark.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-dark.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-red-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-red-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-red-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-red-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-red-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-red-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-red-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-red-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-red-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-red-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-red-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-red-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-red.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-red.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-red.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-red.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-red.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-red.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-red-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-red-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-red-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-red-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-red-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-red-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-red-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-red-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-red-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-red-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-red-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-red-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-red-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-red-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-red-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-red-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-red-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-red-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-red-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-red-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-red-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-red-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-red-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-red-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-red-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-red-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-red-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-red-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-red-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-red-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-red-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-red-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-red-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-red-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-red-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-red-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-red-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-red-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-red-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-red-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-red-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-red-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-blue-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-blue-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-blue-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-blue-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-blue.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-blue.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-blue.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-blue.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-blue-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-blue-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-blue-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-blue-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-blue-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-blue-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-blue-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-blue-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-blue-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-blue-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-blue-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-blue-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-blue-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-blue-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-blue-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-blue-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-blue-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-blue-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-blue-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-blue-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-blue-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-blue-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-blue-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-blue-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-blue-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-blue-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-blue-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-blue-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-teal-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-teal-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-teal-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-teal-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-teal-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-teal-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-teal.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-teal.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-teal.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-teal.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-teal.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-teal.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-teal-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-teal-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-teal-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-teal-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-teal-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-teal-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-teal-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-teal-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-teal-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-teal-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-teal-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-teal-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-teal-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-teal-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-teal-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-teal-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-teal-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-teal-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-teal-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-teal-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-teal-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-teal-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-teal-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-teal-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-green-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-green-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-green-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-green-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-green-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-green-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-green-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-green-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-green-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-green-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-green-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-green-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-green-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-green-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-green-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-green-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-green-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-green-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-green-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-green-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-green-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-green-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-green-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-green-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-orange-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-orange-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-orange-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-orange-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-orange-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-orange-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey-1000.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey-1000.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey-1000.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey-1000.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey-1000.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey-1000.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-fuse-dark-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-fuse-dark-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-fuse-dark-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-fuse-dark-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-fuse-dark-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-fuse-dark-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-fuse-dark-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-fuse-dark-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-fuse-dark-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-fuse-dark-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-fuse-dark-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-fuse-dark-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-fuse-dark-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-fuse-dark-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-fuse-dark-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-fuse-dark-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-fuse-dark-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-fuse-dark-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-fuse-dark.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-fuse-dark.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-fuse-dark.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-fuse-dark.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-fuse-dark.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-fuse-dark.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-fuse-dark-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-fuse-dark-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-fuse-dark-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-fuse-dark-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-fuse-dark-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-fuse-dark-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-fuse-dark-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-fuse-dark-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-fuse-dark-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-fuse-dark-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-fuse-dark-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-fuse-dark-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-fuse-dark-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-fuse-dark-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-fuse-dark-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-fuse-dark-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-fuse-dark-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-fuse-dark-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-fuse-dark-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-fuse-dark-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-fuse-dark-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-fuse-dark-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-fuse-dark-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-fuse-dark-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-fuse-dark-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-fuse-dark-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-fuse-dark-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-fuse-dark-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-fuse-dark-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-fuse-dark-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-fuse-dark-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-fuse-dark-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-fuse-dark-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-fuse-dark-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-fuse-dark-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-fuse-dark-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-black-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-black-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-black-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-black-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-black-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-black-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-black.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-black.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-black.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-black.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-black.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-black.text-auto input[type=checkbox][disabled] ~ .form-check-description {
  color: rgba(255, 255, 255, 0.5) !important;
}
.light-fg .form-check.disabled .form-check-label, .light-fg.text-auto .form-check.disabled .form-check-label, .bg-primary-300.text-auto .form-check.disabled .form-check-label, .bg-primary-400.text-auto .form-check.disabled .form-check-label, .bg-primary-500.text-auto .form-check.disabled .form-check-label, .bg-primary.text-auto .form-check.disabled .form-check-label, .bg-primary-600.text-auto .form-check.disabled .form-check-label, .bg-primary-700.text-auto .form-check.disabled .form-check-label, .bg-primary-800.text-auto .form-check.disabled .form-check-label, .bg-primary-900.text-auto .form-check.disabled .form-check-label, .bg-primary-A400.text-auto .form-check.disabled .form-check-label, .bg-primary-A700.text-auto .form-check.disabled .form-check-label, .bg-secondary-500.text-auto .form-check.disabled .form-check-label, .bg-secondary.text-auto .form-check.disabled .form-check-label, .bg-secondary-600.text-auto .form-check.disabled .form-check-label, .bg-secondary-700.text-auto .form-check.disabled .form-check-label, .bg-secondary-800.text-auto .form-check.disabled .form-check-label, .bg-secondary-900.text-auto .form-check.disabled .form-check-label, .bg-secondary-A200.text-auto .form-check.disabled .form-check-label, .bg-secondary-A400.text-auto .form-check.disabled .form-check-label, .bg-secondary-A700.text-auto .form-check.disabled .form-check-label, .bg-success-600.text-auto .form-check.disabled .form-check-label, .bg-success-700.text-auto .form-check.disabled .form-check-label, .bg-success-800.text-auto .form-check.disabled .form-check-label, .bg-success-900.text-auto .form-check.disabled .form-check-label, .bg-info-500.text-auto .form-check.disabled .form-check-label, .bg-info.text-auto .form-check.disabled .form-check-label, .bg-info-600.text-auto .form-check.disabled .form-check-label, .bg-info-700.text-auto .form-check.disabled .form-check-label, .bg-info-800.text-auto .form-check.disabled .form-check-label, .bg-info-900.text-auto .form-check.disabled .form-check-label, .bg-warning-900.text-auto .form-check.disabled .form-check-label, .bg-danger-400.text-auto .form-check.disabled .form-check-label, .bg-danger-500.text-auto .form-check.disabled .form-check-label, .bg-danger.text-auto .form-check.disabled .form-check-label, .bg-danger-600.text-auto .form-check.disabled .form-check-label, .bg-danger-700.text-auto .form-check.disabled .form-check-label, .bg-danger-800.text-auto .form-check.disabled .form-check-label, .bg-danger-900.text-auto .form-check.disabled .form-check-label, .bg-danger-A200.text-auto .form-check.disabled .form-check-label, .bg-danger-A400.text-auto .form-check.disabled .form-check-label, .bg-danger-A700.text-auto .form-check.disabled .form-check-label, .bg-dark-500.text-auto .form-check.disabled .form-check-label, .bg-dark.text-auto .form-check.disabled .form-check-label, .bg-red-400.text-auto .form-check.disabled .form-check-label, .bg-red-500.text-auto .form-check.disabled .form-check-label, .bg-red.text-auto .form-check.disabled .form-check-label, .bg-red-600.text-auto .form-check.disabled .form-check-label, .bg-red-700.text-auto .form-check.disabled .form-check-label, .bg-red-800.text-auto .form-check.disabled .form-check-label, .bg-red-900.text-auto .form-check.disabled .form-check-label, .bg-red-A200.text-auto .form-check.disabled .form-check-label, .bg-red-A400.text-auto .form-check.disabled .form-check-label, .bg-red-A700.text-auto .form-check.disabled .form-check-label, .bg-blue-500.text-auto .form-check.disabled .form-check-label, .bg-blue.text-auto .form-check.disabled .form-check-label, .bg-blue-600.text-auto .form-check.disabled .form-check-label, .bg-blue-700.text-auto .form-check.disabled .form-check-label, .bg-blue-800.text-auto .form-check.disabled .form-check-label, .bg-blue-900.text-auto .form-check.disabled .form-check-label, .bg-blue-A200.text-auto .form-check.disabled .form-check-label, .bg-blue-A400.text-auto .form-check.disabled .form-check-label, .bg-blue-A700.text-auto .form-check.disabled .form-check-label, .bg-teal-500.text-auto .form-check.disabled .form-check-label, .bg-teal.text-auto .form-check.disabled .form-check-label, .bg-teal-600.text-auto .form-check.disabled .form-check-label, .bg-teal-700.text-auto .form-check.disabled .form-check-label, .bg-teal-800.text-auto .form-check.disabled .form-check-label, .bg-teal-900.text-auto .form-check.disabled .form-check-label, .bg-green-600.text-auto .form-check.disabled .form-check-label, .bg-green-700.text-auto .form-check.disabled .form-check-label, .bg-green-800.text-auto .form-check.disabled .form-check-label, .bg-green-900.text-auto .form-check.disabled .form-check-label, .bg-orange-900.text-auto .form-check.disabled .form-check-label, .bg-grey-600.text-auto .form-check.disabled .form-check-label, .bg-grey-700.text-auto .form-check.disabled .form-check-label, .bg-grey-800.text-auto .form-check.disabled .form-check-label, .bg-grey-900.text-auto .form-check.disabled .form-check-label, .bg-grey-1000.text-auto .form-check.disabled .form-check-label, .bg-grey-A700.text-auto .form-check.disabled .form-check-label, .bg-fuse-dark-300.text-auto .form-check.disabled .form-check-label, .bg-fuse-dark-400.text-auto .form-check.disabled .form-check-label, .bg-fuse-dark-500.text-auto .form-check.disabled .form-check-label, .bg-fuse-dark.text-auto .form-check.disabled .form-check-label, .bg-fuse-dark-600.text-auto .form-check.disabled .form-check-label, .bg-fuse-dark-700.text-auto .form-check.disabled .form-check-label, .bg-fuse-dark-800.text-auto .form-check.disabled .form-check-label, .bg-fuse-dark-900.text-auto .form-check.disabled .form-check-label, .bg-fuse-dark-A400.text-auto .form-check.disabled .form-check-label, .bg-fuse-dark-A700.text-auto .form-check.disabled .form-check-label, .bg-black-500.text-auto .form-check.disabled .form-check-label, .bg-black.text-auto .form-check.disabled .form-check-label {
  color: rgba(255, 255, 255, 0.5) !important;
}
.light-fg .custom-control-input:disabled ~ .custom-control-description, .light-fg.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-primary-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-primary-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-primary-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-primary.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-primary-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-primary-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-primary-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-primary-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-primary-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-primary-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-secondary-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-secondary.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-secondary-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-secondary-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-secondary-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-secondary-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-secondary-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-secondary-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-secondary-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-success-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-success-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-success-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-success-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-info-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-info.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-info-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-info-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-info-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-info-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-warning-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-danger-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-danger-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-danger.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-danger-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-danger-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-danger-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-danger-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-danger-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-danger-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-danger-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-dark-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-dark.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-red-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-red-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-red.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-red-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-red-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-red-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-red-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-red-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-red-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-red-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-teal-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-teal.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-teal-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-teal-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-teal-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-teal-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-green-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-green-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-green-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-green-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey-1000.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-fuse-dark-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-fuse-dark-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-fuse-dark-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-fuse-dark.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-fuse-dark-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-fuse-dark-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-fuse-dark-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-fuse-dark-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-fuse-dark-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-fuse-dark-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-black-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-black.text-auto .custom-control-input:disabled ~ .custom-control-description {
  color: rgba(255, 255, 255, 0.5);
}
.light-fg #sidenav .nav-link:hover:not(.active), .light-fg.text-auto #sidenav .nav-link:hover:not(.active), .bg-primary-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-primary-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-primary-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-primary.text-auto #sidenav .nav-link:hover:not(.active), .bg-primary-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-primary-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-primary-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-primary-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-primary-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-primary-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-secondary-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-secondary.text-auto #sidenav .nav-link:hover:not(.active), .bg-secondary-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-secondary-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-secondary-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-secondary-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-secondary-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-secondary-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-secondary-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-success-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-success-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-success-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-success-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-info-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-info.text-auto #sidenav .nav-link:hover:not(.active), .bg-info-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-info-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-info-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-info-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-warning-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-danger-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-danger-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-danger.text-auto #sidenav .nav-link:hover:not(.active), .bg-danger-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-danger-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-danger-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-danger-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-danger-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-danger-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-danger-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-dark-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-dark.text-auto #sidenav .nav-link:hover:not(.active), .bg-red-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-red-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-red.text-auto #sidenav .nav-link:hover:not(.active), .bg-red-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-red-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-red-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-red-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-red-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-red-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-red-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-teal-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-teal.text-auto #sidenav .nav-link:hover:not(.active), .bg-teal-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-teal-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-teal-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-teal-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-green-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-green-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-green-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-green-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey-1000.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-fuse-dark-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-fuse-dark-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-fuse-dark-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-fuse-dark.text-auto #sidenav .nav-link:hover:not(.active), .bg-fuse-dark-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-fuse-dark-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-fuse-dark-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-fuse-dark-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-fuse-dark-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-fuse-dark-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-black-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-black.text-auto #sidenav .nav-link:hover:not(.active) {
  background: rgba(255, 255, 255, 0.04) !important;
}
.light-fg #sidenav .nav-link:hover:not(.active) > i, .light-fg.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-primary-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-primary-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-primary-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-primary.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-primary-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-primary-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-primary-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-primary-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-primary-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-primary-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-secondary-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-secondary.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-secondary-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-secondary-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-secondary-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-secondary-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-secondary-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-secondary-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-secondary-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-success-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-success-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-success-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-success-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-info-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-info.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-info-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-info-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-info-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-info-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-warning-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-danger-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-danger-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-danger.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-danger-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-danger-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-danger-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-danger-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-danger-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-danger-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-danger-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-dark-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-dark.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-red-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-red-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-red.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-red-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-red-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-red-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-red-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-red-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-red-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-red-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-teal-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-teal.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-teal-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-teal-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-teal-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-teal-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-green-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-green-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-green-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-green-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey-1000.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-fuse-dark-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-fuse-dark-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-fuse-dark-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-fuse-dark.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-fuse-dark-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-fuse-dark-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-fuse-dark-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-fuse-dark-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-fuse-dark-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-fuse-dark-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-black-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-black.text-auto #sidenav .nav-link:hover:not(.active) > i {
  color: rgba(255, 255, 255, 0.87) !important;
}

.dark-fg, .dark-fg.text-auto, .bg-primary-50.text-auto, .bg-primary-100.text-auto, .bg-primary-200.text-auto, .bg-primary-A100.text-auto, .bg-primary-A200.text-auto, .bg-secondary-50.text-auto, .bg-secondary-100.text-auto, .bg-secondary-200.text-auto, .bg-secondary-300.text-auto, .bg-secondary-400.text-auto, .bg-secondary-A100.text-auto, .bg-success-50.text-auto, .bg-success-100.text-auto, .bg-success-200.text-auto, .bg-success-300.text-auto, .bg-success-400.text-auto, .bg-success-500.text-auto, .bg-success.text-auto, .bg-success-A100.text-auto, .bg-success-A200.text-auto, .bg-success-A400.text-auto, .bg-success-A700.text-auto, .bg-info-50.text-auto, .bg-info-100.text-auto, .bg-info-200.text-auto, .bg-info-300.text-auto, .bg-info-400.text-auto, .bg-info-A100.text-auto, .bg-info-A200.text-auto, .bg-info-A400.text-auto, .bg-info-A700.text-auto, .bg-warning-50.text-auto, .bg-warning-100.text-auto, .bg-warning-200.text-auto, .bg-warning-300.text-auto, .bg-warning-400.text-auto, .bg-warning-500.text-auto, .bg-warning.text-auto, .bg-warning-600.text-auto, .bg-warning-700.text-auto, .bg-warning-800.text-auto, .bg-warning-A100.text-auto, .bg-warning-A200.text-auto, .bg-warning-A400.text-auto, .bg-warning-A700.text-auto, .bg-danger-50.text-auto, .bg-danger-100.text-auto, .bg-danger-200.text-auto, .bg-danger-300.text-auto, .bg-danger-A100.text-auto, .bg-light-500.text-auto, .bg-light.text-auto, .bg-red-50.text-auto, .bg-red-100.text-auto, .bg-red-200.text-auto, .bg-red-300.text-auto, .bg-red-A100.text-auto, .bg-blue-50.text-auto, .bg-blue-100.text-auto, .bg-blue-200.text-auto, .bg-blue-300.text-auto, .bg-blue-400.text-auto, .bg-blue-A100.text-auto, .bg-teal-50.text-auto, .bg-teal-100.text-auto, .bg-teal-200.text-auto, .bg-teal-300.text-auto, .bg-teal-400.text-auto, .bg-teal-A100.text-auto, .bg-teal-A200.text-auto, .bg-teal-A400.text-auto, .bg-teal-A700.text-auto, .bg-green-50.text-auto, .bg-green-100.text-auto, .bg-green-200.text-auto, .bg-green-300.text-auto, .bg-green-400.text-auto, .bg-green-500.text-auto, .bg-green.text-auto, .bg-green-A100.text-auto, .bg-green-A200.text-auto, .bg-green-A400.text-auto, .bg-green-A700.text-auto, .bg-orange-50.text-auto, .bg-orange-100.text-auto, .bg-orange-200.text-auto, .bg-orange-300.text-auto, .bg-orange-400.text-auto, .bg-orange-500.text-auto, .bg-orange.text-auto, .bg-orange-600.text-auto, .bg-orange-700.text-auto, .bg-orange-800.text-auto, .bg-orange-A100.text-auto, .bg-orange-A200.text-auto, .bg-orange-A400.text-auto, .bg-orange-A700.text-auto, .bg-grey-50.text-auto, .bg-grey-100.text-auto, .bg-grey-200.text-auto, .bg-grey-300.text-auto, .bg-grey-400.text-auto, .bg-grey-500.text-auto, .bg-grey.text-auto, .bg-grey-A100.text-auto, .bg-grey-A200.text-auto, .bg-grey-A400.text-auto, .bg-fuse-dark-50.text-auto, .bg-fuse-dark-100.text-auto, .bg-fuse-dark-200.text-auto, .bg-fuse-dark-A100.text-auto, .bg-fuse-dark-A200.text-auto, .bg-white-500.text-auto, .bg-white.text-auto {
  color: rgba(0, 0, 0, 0.87);
}
.dark-fg a:hover, .dark-fg.text-auto a:hover, .bg-primary-50.text-auto a:hover, .bg-primary-100.text-auto a:hover, .bg-primary-200.text-auto a:hover, .bg-primary-A100.text-auto a:hover, .bg-primary-A200.text-auto a:hover, .bg-secondary-50.text-auto a:hover, .bg-secondary-100.text-auto a:hover, .bg-secondary-200.text-auto a:hover, .bg-secondary-300.text-auto a:hover, .bg-secondary-400.text-auto a:hover, .bg-secondary-A100.text-auto a:hover, .bg-success-50.text-auto a:hover, .bg-success-100.text-auto a:hover, .bg-success-200.text-auto a:hover, .bg-success-300.text-auto a:hover, .bg-success-400.text-auto a:hover, .bg-success-500.text-auto a:hover, .bg-success.text-auto a:hover, .bg-success-A100.text-auto a:hover, .bg-success-A200.text-auto a:hover, .bg-success-A400.text-auto a:hover, .bg-success-A700.text-auto a:hover, .bg-info-50.text-auto a:hover, .bg-info-100.text-auto a:hover, .bg-info-200.text-auto a:hover, .bg-info-300.text-auto a:hover, .bg-info-400.text-auto a:hover, .bg-info-A100.text-auto a:hover, .bg-info-A200.text-auto a:hover, .bg-info-A400.text-auto a:hover, .bg-info-A700.text-auto a:hover, .bg-warning-50.text-auto a:hover, .bg-warning-100.text-auto a:hover, .bg-warning-200.text-auto a:hover, .bg-warning-300.text-auto a:hover, .bg-warning-400.text-auto a:hover, .bg-warning-500.text-auto a:hover, .bg-warning.text-auto a:hover, .bg-warning-600.text-auto a:hover, .bg-warning-700.text-auto a:hover, .bg-warning-800.text-auto a:hover, .bg-warning-A100.text-auto a:hover, .bg-warning-A200.text-auto a:hover, .bg-warning-A400.text-auto a:hover, .bg-warning-A700.text-auto a:hover, .bg-danger-50.text-auto a:hover, .bg-danger-100.text-auto a:hover, .bg-danger-200.text-auto a:hover, .bg-danger-300.text-auto a:hover, .bg-danger-A100.text-auto a:hover, .bg-light-500.text-auto a:hover, .bg-light.text-auto a:hover, .bg-red-50.text-auto a:hover, .bg-red-100.text-auto a:hover, .bg-red-200.text-auto a:hover, .bg-red-300.text-auto a:hover, .bg-red-A100.text-auto a:hover, .bg-blue-50.text-auto a:hover, .bg-blue-100.text-auto a:hover, .bg-blue-200.text-auto a:hover, .bg-blue-300.text-auto a:hover, .bg-blue-400.text-auto a:hover, .bg-blue-A100.text-auto a:hover, .bg-teal-50.text-auto a:hover, .bg-teal-100.text-auto a:hover, .bg-teal-200.text-auto a:hover, .bg-teal-300.text-auto a:hover, .bg-teal-400.text-auto a:hover, .bg-teal-A100.text-auto a:hover, .bg-teal-A200.text-auto a:hover, .bg-teal-A400.text-auto a:hover, .bg-teal-A700.text-auto a:hover, .bg-green-50.text-auto a:hover, .bg-green-100.text-auto a:hover, .bg-green-200.text-auto a:hover, .bg-green-300.text-auto a:hover, .bg-green-400.text-auto a:hover, .bg-green-500.text-auto a:hover, .bg-green.text-auto a:hover, .bg-green-A100.text-auto a:hover, .bg-green-A200.text-auto a:hover, .bg-green-A400.text-auto a:hover, .bg-green-A700.text-auto a:hover, .bg-orange-50.text-auto a:hover, .bg-orange-100.text-auto a:hover, .bg-orange-200.text-auto a:hover, .bg-orange-300.text-auto a:hover, .bg-orange-400.text-auto a:hover, .bg-orange-500.text-auto a:hover, .bg-orange.text-auto a:hover, .bg-orange-600.text-auto a:hover, .bg-orange-700.text-auto a:hover, .bg-orange-800.text-auto a:hover, .bg-orange-A100.text-auto a:hover, .bg-orange-A200.text-auto a:hover, .bg-orange-A400.text-auto a:hover, .bg-orange-A700.text-auto a:hover, .bg-grey-50.text-auto a:hover, .bg-grey-100.text-auto a:hover, .bg-grey-200.text-auto a:hover, .bg-grey-300.text-auto a:hover, .bg-grey-400.text-auto a:hover, .bg-grey-500.text-auto a:hover, .bg-grey.text-auto a:hover, .bg-grey-A100.text-auto a:hover, .bg-grey-A200.text-auto a:hover, .bg-grey-A400.text-auto a:hover, .bg-fuse-dark-50.text-auto a:hover, .bg-fuse-dark-100.text-auto a:hover, .bg-fuse-dark-200.text-auto a:hover, .bg-fuse-dark-A100.text-auto a:hover, .bg-fuse-dark-A200.text-auto a:hover, .bg-white-500.text-auto a:hover, .bg-white.text-auto a:hover {
  color: #1c1e26;
}
.dark-fg i, .dark-fg [class^=icon-], .dark-fg [class*=" icon-"], .dark-fg.text-auto i, .dark-fg.text-auto [class^=icon-], .dark-fg.text-auto [class*=" icon-"], .bg-primary-50.text-auto i, .bg-primary-50.text-auto [class^=icon-], .bg-primary-50.text-auto [class*=" icon-"], .bg-primary-100.text-auto i, .bg-primary-100.text-auto [class^=icon-], .bg-primary-100.text-auto [class*=" icon-"], .bg-primary-200.text-auto i, .bg-primary-200.text-auto [class^=icon-], .bg-primary-200.text-auto [class*=" icon-"], .bg-primary-A100.text-auto i, .bg-primary-A100.text-auto [class^=icon-], .bg-primary-A100.text-auto [class*=" icon-"], .bg-primary-A200.text-auto i, .bg-primary-A200.text-auto [class^=icon-], .bg-primary-A200.text-auto [class*=" icon-"], .bg-secondary-50.text-auto i, .bg-secondary-50.text-auto [class^=icon-], .bg-secondary-50.text-auto [class*=" icon-"], .bg-secondary-100.text-auto i, .bg-secondary-100.text-auto [class^=icon-], .bg-secondary-100.text-auto [class*=" icon-"], .bg-secondary-200.text-auto i, .bg-secondary-200.text-auto [class^=icon-], .bg-secondary-200.text-auto [class*=" icon-"], .bg-secondary-300.text-auto i, .bg-secondary-300.text-auto [class^=icon-], .bg-secondary-300.text-auto [class*=" icon-"], .bg-secondary-400.text-auto i, .bg-secondary-400.text-auto [class^=icon-], .bg-secondary-400.text-auto [class*=" icon-"], .bg-secondary-A100.text-auto i, .bg-secondary-A100.text-auto [class^=icon-], .bg-secondary-A100.text-auto [class*=" icon-"], .bg-success-50.text-auto i, .bg-success-50.text-auto [class^=icon-], .bg-success-50.text-auto [class*=" icon-"], .bg-success-100.text-auto i, .bg-success-100.text-auto [class^=icon-], .bg-success-100.text-auto [class*=" icon-"], .bg-success-200.text-auto i, .bg-success-200.text-auto [class^=icon-], .bg-success-200.text-auto [class*=" icon-"], .bg-success-300.text-auto i, .bg-success-300.text-auto [class^=icon-], .bg-success-300.text-auto [class*=" icon-"], .bg-success-400.text-auto i, .bg-success-400.text-auto [class^=icon-], .bg-success-400.text-auto [class*=" icon-"], .bg-success-500.text-auto i, .bg-success-500.text-auto [class^=icon-], .bg-success-500.text-auto [class*=" icon-"], .bg-success.text-auto i, .bg-success.text-auto [class^=icon-], .bg-success.text-auto [class*=" icon-"], .bg-success-A100.text-auto i, .bg-success-A100.text-auto [class^=icon-], .bg-success-A100.text-auto [class*=" icon-"], .bg-success-A200.text-auto i, .bg-success-A200.text-auto [class^=icon-], .bg-success-A200.text-auto [class*=" icon-"], .bg-success-A400.text-auto i, .bg-success-A400.text-auto [class^=icon-], .bg-success-A400.text-auto [class*=" icon-"], .bg-success-A700.text-auto i, .bg-success-A700.text-auto [class^=icon-], .bg-success-A700.text-auto [class*=" icon-"], .bg-info-50.text-auto i, .bg-info-50.text-auto [class^=icon-], .bg-info-50.text-auto [class*=" icon-"], .bg-info-100.text-auto i, .bg-info-100.text-auto [class^=icon-], .bg-info-100.text-auto [class*=" icon-"], .bg-info-200.text-auto i, .bg-info-200.text-auto [class^=icon-], .bg-info-200.text-auto [class*=" icon-"], .bg-info-300.text-auto i, .bg-info-300.text-auto [class^=icon-], .bg-info-300.text-auto [class*=" icon-"], .bg-info-400.text-auto i, .bg-info-400.text-auto [class^=icon-], .bg-info-400.text-auto [class*=" icon-"], .bg-info-A100.text-auto i, .bg-info-A100.text-auto [class^=icon-], .bg-info-A100.text-auto [class*=" icon-"], .bg-info-A200.text-auto i, .bg-info-A200.text-auto [class^=icon-], .bg-info-A200.text-auto [class*=" icon-"], .bg-info-A400.text-auto i, .bg-info-A400.text-auto [class^=icon-], .bg-info-A400.text-auto [class*=" icon-"], .bg-info-A700.text-auto i, .bg-info-A700.text-auto [class^=icon-], .bg-info-A700.text-auto [class*=" icon-"], .bg-warning-50.text-auto i, .bg-warning-50.text-auto [class^=icon-], .bg-warning-50.text-auto [class*=" icon-"], .bg-warning-100.text-auto i, .bg-warning-100.text-auto [class^=icon-], .bg-warning-100.text-auto [class*=" icon-"], .bg-warning-200.text-auto i, .bg-warning-200.text-auto [class^=icon-], .bg-warning-200.text-auto [class*=" icon-"], .bg-warning-300.text-auto i, .bg-warning-300.text-auto [class^=icon-], .bg-warning-300.text-auto [class*=" icon-"], .bg-warning-400.text-auto i, .bg-warning-400.text-auto [class^=icon-], .bg-warning-400.text-auto [class*=" icon-"], .bg-warning-500.text-auto i, .bg-warning-500.text-auto [class^=icon-], .bg-warning-500.text-auto [class*=" icon-"], .bg-warning.text-auto i, .bg-warning.text-auto [class^=icon-], .bg-warning.text-auto [class*=" icon-"], .bg-warning-600.text-auto i, .bg-warning-600.text-auto [class^=icon-], .bg-warning-600.text-auto [class*=" icon-"], .bg-warning-700.text-auto i, .bg-warning-700.text-auto [class^=icon-], .bg-warning-700.text-auto [class*=" icon-"], .bg-warning-800.text-auto i, .bg-warning-800.text-auto [class^=icon-], .bg-warning-800.text-auto [class*=" icon-"], .bg-warning-A100.text-auto i, .bg-warning-A100.text-auto [class^=icon-], .bg-warning-A100.text-auto [class*=" icon-"], .bg-warning-A200.text-auto i, .bg-warning-A200.text-auto [class^=icon-], .bg-warning-A200.text-auto [class*=" icon-"], .bg-warning-A400.text-auto i, .bg-warning-A400.text-auto [class^=icon-], .bg-warning-A400.text-auto [class*=" icon-"], .bg-warning-A700.text-auto i, .bg-warning-A700.text-auto [class^=icon-], .bg-warning-A700.text-auto [class*=" icon-"], .bg-danger-50.text-auto i, .bg-danger-50.text-auto [class^=icon-], .bg-danger-50.text-auto [class*=" icon-"], .bg-danger-100.text-auto i, .bg-danger-100.text-auto [class^=icon-], .bg-danger-100.text-auto [class*=" icon-"], .bg-danger-200.text-auto i, .bg-danger-200.text-auto [class^=icon-], .bg-danger-200.text-auto [class*=" icon-"], .bg-danger-300.text-auto i, .bg-danger-300.text-auto [class^=icon-], .bg-danger-300.text-auto [class*=" icon-"], .bg-danger-A100.text-auto i, .bg-danger-A100.text-auto [class^=icon-], .bg-danger-A100.text-auto [class*=" icon-"], .bg-light-500.text-auto i, .bg-light-500.text-auto [class^=icon-], .bg-light-500.text-auto [class*=" icon-"], .bg-light.text-auto i, .bg-light.text-auto [class^=icon-], .bg-light.text-auto [class*=" icon-"], .bg-red-50.text-auto i, .bg-red-50.text-auto [class^=icon-], .bg-red-50.text-auto [class*=" icon-"], .bg-red-100.text-auto i, .bg-red-100.text-auto [class^=icon-], .bg-red-100.text-auto [class*=" icon-"], .bg-red-200.text-auto i, .bg-red-200.text-auto [class^=icon-], .bg-red-200.text-auto [class*=" icon-"], .bg-red-300.text-auto i, .bg-red-300.text-auto [class^=icon-], .bg-red-300.text-auto [class*=" icon-"], .bg-red-A100.text-auto i, .bg-red-A100.text-auto [class^=icon-], .bg-red-A100.text-auto [class*=" icon-"], .bg-blue-50.text-auto i, .bg-blue-50.text-auto [class^=icon-], .bg-blue-50.text-auto [class*=" icon-"], .bg-blue-100.text-auto i, .bg-blue-100.text-auto [class^=icon-], .bg-blue-100.text-auto [class*=" icon-"], .bg-blue-200.text-auto i, .bg-blue-200.text-auto [class^=icon-], .bg-blue-200.text-auto [class*=" icon-"], .bg-blue-300.text-auto i, .bg-blue-300.text-auto [class^=icon-], .bg-blue-300.text-auto [class*=" icon-"], .bg-blue-400.text-auto i, .bg-blue-400.text-auto [class^=icon-], .bg-blue-400.text-auto [class*=" icon-"], .bg-blue-A100.text-auto i, .bg-blue-A100.text-auto [class^=icon-], .bg-blue-A100.text-auto [class*=" icon-"], .bg-teal-50.text-auto i, .bg-teal-50.text-auto [class^=icon-], .bg-teal-50.text-auto [class*=" icon-"], .bg-teal-100.text-auto i, .bg-teal-100.text-auto [class^=icon-], .bg-teal-100.text-auto [class*=" icon-"], .bg-teal-200.text-auto i, .bg-teal-200.text-auto [class^=icon-], .bg-teal-200.text-auto [class*=" icon-"], .bg-teal-300.text-auto i, .bg-teal-300.text-auto [class^=icon-], .bg-teal-300.text-auto [class*=" icon-"], .bg-teal-400.text-auto i, .bg-teal-400.text-auto [class^=icon-], .bg-teal-400.text-auto [class*=" icon-"], .bg-teal-A100.text-auto i, .bg-teal-A100.text-auto [class^=icon-], .bg-teal-A100.text-auto [class*=" icon-"], .bg-teal-A200.text-auto i, .bg-teal-A200.text-auto [class^=icon-], .bg-teal-A200.text-auto [class*=" icon-"], .bg-teal-A400.text-auto i, .bg-teal-A400.text-auto [class^=icon-], .bg-teal-A400.text-auto [class*=" icon-"], .bg-teal-A700.text-auto i, .bg-teal-A700.text-auto [class^=icon-], .bg-teal-A700.text-auto [class*=" icon-"], .bg-green-50.text-auto i, .bg-green-50.text-auto [class^=icon-], .bg-green-50.text-auto [class*=" icon-"], .bg-green-100.text-auto i, .bg-green-100.text-auto [class^=icon-], .bg-green-100.text-auto [class*=" icon-"], .bg-green-200.text-auto i, .bg-green-200.text-auto [class^=icon-], .bg-green-200.text-auto [class*=" icon-"], .bg-green-300.text-auto i, .bg-green-300.text-auto [class^=icon-], .bg-green-300.text-auto [class*=" icon-"], .bg-green-400.text-auto i, .bg-green-400.text-auto [class^=icon-], .bg-green-400.text-auto [class*=" icon-"], .bg-green-500.text-auto i, .bg-green-500.text-auto [class^=icon-], .bg-green-500.text-auto [class*=" icon-"], .bg-green.text-auto i, .bg-green.text-auto [class^=icon-], .bg-green.text-auto [class*=" icon-"], .bg-green-A100.text-auto i, .bg-green-A100.text-auto [class^=icon-], .bg-green-A100.text-auto [class*=" icon-"], .bg-green-A200.text-auto i, .bg-green-A200.text-auto [class^=icon-], .bg-green-A200.text-auto [class*=" icon-"], .bg-green-A400.text-auto i, .bg-green-A400.text-auto [class^=icon-], .bg-green-A400.text-auto [class*=" icon-"], .bg-green-A700.text-auto i, .bg-green-A700.text-auto [class^=icon-], .bg-green-A700.text-auto [class*=" icon-"], .bg-orange-50.text-auto i, .bg-orange-50.text-auto [class^=icon-], .bg-orange-50.text-auto [class*=" icon-"], .bg-orange-100.text-auto i, .bg-orange-100.text-auto [class^=icon-], .bg-orange-100.text-auto [class*=" icon-"], .bg-orange-200.text-auto i, .bg-orange-200.text-auto [class^=icon-], .bg-orange-200.text-auto [class*=" icon-"], .bg-orange-300.text-auto i, .bg-orange-300.text-auto [class^=icon-], .bg-orange-300.text-auto [class*=" icon-"], .bg-orange-400.text-auto i, .bg-orange-400.text-auto [class^=icon-], .bg-orange-400.text-auto [class*=" icon-"], .bg-orange-500.text-auto i, .bg-orange-500.text-auto [class^=icon-], .bg-orange-500.text-auto [class*=" icon-"], .bg-orange.text-auto i, .bg-orange.text-auto [class^=icon-], .bg-orange.text-auto [class*=" icon-"], .bg-orange-600.text-auto i, .bg-orange-600.text-auto [class^=icon-], .bg-orange-600.text-auto [class*=" icon-"], .bg-orange-700.text-auto i, .bg-orange-700.text-auto [class^=icon-], .bg-orange-700.text-auto [class*=" icon-"], .bg-orange-800.text-auto i, .bg-orange-800.text-auto [class^=icon-], .bg-orange-800.text-auto [class*=" icon-"], .bg-orange-A100.text-auto i, .bg-orange-A100.text-auto [class^=icon-], .bg-orange-A100.text-auto [class*=" icon-"], .bg-orange-A200.text-auto i, .bg-orange-A200.text-auto [class^=icon-], .bg-orange-A200.text-auto [class*=" icon-"], .bg-orange-A400.text-auto i, .bg-orange-A400.text-auto [class^=icon-], .bg-orange-A400.text-auto [class*=" icon-"], .bg-orange-A700.text-auto i, .bg-orange-A700.text-auto [class^=icon-], .bg-orange-A700.text-auto [class*=" icon-"], .bg-grey-50.text-auto i, .bg-grey-50.text-auto [class^=icon-], .bg-grey-50.text-auto [class*=" icon-"], .bg-grey-100.text-auto i, .bg-grey-100.text-auto [class^=icon-], .bg-grey-100.text-auto [class*=" icon-"], .bg-grey-200.text-auto i, .bg-grey-200.text-auto [class^=icon-], .bg-grey-200.text-auto [class*=" icon-"], .bg-grey-300.text-auto i, .bg-grey-300.text-auto [class^=icon-], .bg-grey-300.text-auto [class*=" icon-"], .bg-grey-400.text-auto i, .bg-grey-400.text-auto [class^=icon-], .bg-grey-400.text-auto [class*=" icon-"], .bg-grey-500.text-auto i, .bg-grey-500.text-auto [class^=icon-], .bg-grey-500.text-auto [class*=" icon-"], .bg-grey.text-auto i, .bg-grey.text-auto [class^=icon-], .bg-grey.text-auto [class*=" icon-"], .bg-grey-A100.text-auto i, .bg-grey-A100.text-auto [class^=icon-], .bg-grey-A100.text-auto [class*=" icon-"], .bg-grey-A200.text-auto i, .bg-grey-A200.text-auto [class^=icon-], .bg-grey-A200.text-auto [class*=" icon-"], .bg-grey-A400.text-auto i, .bg-grey-A400.text-auto [class^=icon-], .bg-grey-A400.text-auto [class*=" icon-"], .bg-fuse-dark-50.text-auto i, .bg-fuse-dark-50.text-auto [class^=icon-], .bg-fuse-dark-50.text-auto [class*=" icon-"], .bg-fuse-dark-100.text-auto i, .bg-fuse-dark-100.text-auto [class^=icon-], .bg-fuse-dark-100.text-auto [class*=" icon-"], .bg-fuse-dark-200.text-auto i, .bg-fuse-dark-200.text-auto [class^=icon-], .bg-fuse-dark-200.text-auto [class*=" icon-"], .bg-fuse-dark-A100.text-auto i, .bg-fuse-dark-A100.text-auto [class^=icon-], .bg-fuse-dark-A100.text-auto [class*=" icon-"], .bg-fuse-dark-A200.text-auto i, .bg-fuse-dark-A200.text-auto [class^=icon-], .bg-fuse-dark-A200.text-auto [class*=" icon-"], .bg-white-500.text-auto i, .bg-white-500.text-auto [class^=icon-], .bg-white-500.text-auto [class*=" icon-"], .bg-white.text-auto i, .bg-white.text-auto [class^=icon-], .bg-white.text-auto [class*=" icon-"] {
  color: rgba(0, 0, 0, 0.54);
}
.dark-fg .text-muted, .dark-fg.text-auto .text-muted, .bg-primary-50.text-auto .text-muted, .bg-primary-100.text-auto .text-muted, .bg-primary-200.text-auto .text-muted, .bg-primary-A100.text-auto .text-muted, .bg-primary-A200.text-auto .text-muted, .bg-secondary-50.text-auto .text-muted, .bg-secondary-100.text-auto .text-muted, .bg-secondary-200.text-auto .text-muted, .bg-secondary-300.text-auto .text-muted, .bg-secondary-400.text-auto .text-muted, .bg-secondary-A100.text-auto .text-muted, .bg-success-50.text-auto .text-muted, .bg-success-100.text-auto .text-muted, .bg-success-200.text-auto .text-muted, .bg-success-300.text-auto .text-muted, .bg-success-400.text-auto .text-muted, .bg-success-500.text-auto .text-muted, .bg-success.text-auto .text-muted, .bg-success-A100.text-auto .text-muted, .bg-success-A200.text-auto .text-muted, .bg-success-A400.text-auto .text-muted, .bg-success-A700.text-auto .text-muted, .bg-info-50.text-auto .text-muted, .bg-info-100.text-auto .text-muted, .bg-info-200.text-auto .text-muted, .bg-info-300.text-auto .text-muted, .bg-info-400.text-auto .text-muted, .bg-info-A100.text-auto .text-muted, .bg-info-A200.text-auto .text-muted, .bg-info-A400.text-auto .text-muted, .bg-info-A700.text-auto .text-muted, .bg-warning-50.text-auto .text-muted, .bg-warning-100.text-auto .text-muted, .bg-warning-200.text-auto .text-muted, .bg-warning-300.text-auto .text-muted, .bg-warning-400.text-auto .text-muted, .bg-warning-500.text-auto .text-muted, .bg-warning.text-auto .text-muted, .bg-warning-600.text-auto .text-muted, .bg-warning-700.text-auto .text-muted, .bg-warning-800.text-auto .text-muted, .bg-warning-A100.text-auto .text-muted, .bg-warning-A200.text-auto .text-muted, .bg-warning-A400.text-auto .text-muted, .bg-warning-A700.text-auto .text-muted, .bg-danger-50.text-auto .text-muted, .bg-danger-100.text-auto .text-muted, .bg-danger-200.text-auto .text-muted, .bg-danger-300.text-auto .text-muted, .bg-danger-A100.text-auto .text-muted, .bg-light-500.text-auto .text-muted, .bg-light.text-auto .text-muted, .bg-red-50.text-auto .text-muted, .bg-red-100.text-auto .text-muted, .bg-red-200.text-auto .text-muted, .bg-red-300.text-auto .text-muted, .bg-red-A100.text-auto .text-muted, .bg-blue-50.text-auto .text-muted, .bg-blue-100.text-auto .text-muted, .bg-blue-200.text-auto .text-muted, .bg-blue-300.text-auto .text-muted, .bg-blue-400.text-auto .text-muted, .bg-blue-A100.text-auto .text-muted, .bg-teal-50.text-auto .text-muted, .bg-teal-100.text-auto .text-muted, .bg-teal-200.text-auto .text-muted, .bg-teal-300.text-auto .text-muted, .bg-teal-400.text-auto .text-muted, .bg-teal-A100.text-auto .text-muted, .bg-teal-A200.text-auto .text-muted, .bg-teal-A400.text-auto .text-muted, .bg-teal-A700.text-auto .text-muted, .bg-green-50.text-auto .text-muted, .bg-green-100.text-auto .text-muted, .bg-green-200.text-auto .text-muted, .bg-green-300.text-auto .text-muted, .bg-green-400.text-auto .text-muted, .bg-green-500.text-auto .text-muted, .bg-green.text-auto .text-muted, .bg-green-A100.text-auto .text-muted, .bg-green-A200.text-auto .text-muted, .bg-green-A400.text-auto .text-muted, .bg-green-A700.text-auto .text-muted, .bg-orange-50.text-auto .text-muted, .bg-orange-100.text-auto .text-muted, .bg-orange-200.text-auto .text-muted, .bg-orange-300.text-auto .text-muted, .bg-orange-400.text-auto .text-muted, .bg-orange-500.text-auto .text-muted, .bg-orange.text-auto .text-muted, .bg-orange-600.text-auto .text-muted, .bg-orange-700.text-auto .text-muted, .bg-orange-800.text-auto .text-muted, .bg-orange-A100.text-auto .text-muted, .bg-orange-A200.text-auto .text-muted, .bg-orange-A400.text-auto .text-muted, .bg-orange-A700.text-auto .text-muted, .bg-grey-50.text-auto .text-muted, .bg-grey-100.text-auto .text-muted, .bg-grey-200.text-auto .text-muted, .bg-grey-300.text-auto .text-muted, .bg-grey-400.text-auto .text-muted, .bg-grey-500.text-auto .text-muted, .bg-grey.text-auto .text-muted, .bg-grey-A100.text-auto .text-muted, .bg-grey-A200.text-auto .text-muted, .bg-grey-A400.text-auto .text-muted, .bg-fuse-dark-50.text-auto .text-muted, .bg-fuse-dark-100.text-auto .text-muted, .bg-fuse-dark-200.text-auto .text-muted, .bg-fuse-dark-A100.text-auto .text-muted, .bg-fuse-dark-A200.text-auto .text-muted, .bg-white-500.text-auto .text-muted, .bg-white.text-auto .text-muted {
  color: rgba(0, 0, 0, 0.38) !important;
}
.dark-fg .fuse-ripple-ready .fuse-ripple, .dark-fg.text-auto .fuse-ripple-ready .fuse-ripple, .bg-primary-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-primary-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-primary-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-primary-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-primary-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-secondary-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-secondary-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-secondary-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-secondary-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-secondary-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-secondary-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-success-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-success-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-success-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-success-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-success-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-success-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-success.text-auto .fuse-ripple-ready .fuse-ripple, .bg-success-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-success-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-success-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-success-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-info-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-info-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-info-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-info-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-info-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-info-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-info-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-info-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-info-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-warning-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-warning-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-warning-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-warning-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-warning-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-warning-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-warning.text-auto .fuse-ripple-ready .fuse-ripple, .bg-warning-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-warning-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-warning-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-warning-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-warning-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-warning-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-warning-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-danger-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-danger-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-danger-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-danger-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-danger-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light.text-auto .fuse-ripple-ready .fuse-ripple, .bg-red-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-red-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-red-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-red-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-red-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-teal-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-teal-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-teal-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-teal-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-teal-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-teal-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-teal-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-teal-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-teal-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-green-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-green-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-green-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-green-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-green-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-green-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-green.text-auto .fuse-ripple-ready .fuse-ripple, .bg-green-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-green-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-green-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-green-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-grey-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-fuse-dark-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-fuse-dark-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-fuse-dark-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-fuse-dark-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-fuse-dark-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-white-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-white.text-auto .fuse-ripple-ready .fuse-ripple {
  background: rgba(0, 0, 0, 0.12);
}
.dark-fg .form-control, .dark-fg.text-auto .form-control, .bg-primary-50.text-auto .form-control, .bg-primary-100.text-auto .form-control, .bg-primary-200.text-auto .form-control, .bg-primary-A100.text-auto .form-control, .bg-primary-A200.text-auto .form-control, .bg-secondary-50.text-auto .form-control, .bg-secondary-100.text-auto .form-control, .bg-secondary-200.text-auto .form-control, .bg-secondary-300.text-auto .form-control, .bg-secondary-400.text-auto .form-control, .bg-secondary-A100.text-auto .form-control, .bg-success-50.text-auto .form-control, .bg-success-100.text-auto .form-control, .bg-success-200.text-auto .form-control, .bg-success-300.text-auto .form-control, .bg-success-400.text-auto .form-control, .bg-success-500.text-auto .form-control, .bg-success.text-auto .form-control, .bg-success-A100.text-auto .form-control, .bg-success-A200.text-auto .form-control, .bg-success-A400.text-auto .form-control, .bg-success-A700.text-auto .form-control, .bg-info-50.text-auto .form-control, .bg-info-100.text-auto .form-control, .bg-info-200.text-auto .form-control, .bg-info-300.text-auto .form-control, .bg-info-400.text-auto .form-control, .bg-info-A100.text-auto .form-control, .bg-info-A200.text-auto .form-control, .bg-info-A400.text-auto .form-control, .bg-info-A700.text-auto .form-control, .bg-warning-50.text-auto .form-control, .bg-warning-100.text-auto .form-control, .bg-warning-200.text-auto .form-control, .bg-warning-300.text-auto .form-control, .bg-warning-400.text-auto .form-control, .bg-warning-500.text-auto .form-control, .bg-warning.text-auto .form-control, .bg-warning-600.text-auto .form-control, .bg-warning-700.text-auto .form-control, .bg-warning-800.text-auto .form-control, .bg-warning-A100.text-auto .form-control, .bg-warning-A200.text-auto .form-control, .bg-warning-A400.text-auto .form-control, .bg-warning-A700.text-auto .form-control, .bg-danger-50.text-auto .form-control, .bg-danger-100.text-auto .form-control, .bg-danger-200.text-auto .form-control, .bg-danger-300.text-auto .form-control, .bg-danger-A100.text-auto .form-control, .bg-light-500.text-auto .form-control, .bg-light.text-auto .form-control, .bg-red-50.text-auto .form-control, .bg-red-100.text-auto .form-control, .bg-red-200.text-auto .form-control, .bg-red-300.text-auto .form-control, .bg-red-A100.text-auto .form-control, .bg-blue-50.text-auto .form-control, .bg-blue-100.text-auto .form-control, .bg-blue-200.text-auto .form-control, .bg-blue-300.text-auto .form-control, .bg-blue-400.text-auto .form-control, .bg-blue-A100.text-auto .form-control, .bg-teal-50.text-auto .form-control, .bg-teal-100.text-auto .form-control, .bg-teal-200.text-auto .form-control, .bg-teal-300.text-auto .form-control, .bg-teal-400.text-auto .form-control, .bg-teal-A100.text-auto .form-control, .bg-teal-A200.text-auto .form-control, .bg-teal-A400.text-auto .form-control, .bg-teal-A700.text-auto .form-control, .bg-green-50.text-auto .form-control, .bg-green-100.text-auto .form-control, .bg-green-200.text-auto .form-control, .bg-green-300.text-auto .form-control, .bg-green-400.text-auto .form-control, .bg-green-500.text-auto .form-control, .bg-green.text-auto .form-control, .bg-green-A100.text-auto .form-control, .bg-green-A200.text-auto .form-control, .bg-green-A400.text-auto .form-control, .bg-green-A700.text-auto .form-control, .bg-orange-50.text-auto .form-control, .bg-orange-100.text-auto .form-control, .bg-orange-200.text-auto .form-control, .bg-orange-300.text-auto .form-control, .bg-orange-400.text-auto .form-control, .bg-orange-500.text-auto .form-control, .bg-orange.text-auto .form-control, .bg-orange-600.text-auto .form-control, .bg-orange-700.text-auto .form-control, .bg-orange-800.text-auto .form-control, .bg-orange-A100.text-auto .form-control, .bg-orange-A200.text-auto .form-control, .bg-orange-A400.text-auto .form-control, .bg-orange-A700.text-auto .form-control, .bg-grey-50.text-auto .form-control, .bg-grey-100.text-auto .form-control, .bg-grey-200.text-auto .form-control, .bg-grey-300.text-auto .form-control, .bg-grey-400.text-auto .form-control, .bg-grey-500.text-auto .form-control, .bg-grey.text-auto .form-control, .bg-grey-A100.text-auto .form-control, .bg-grey-A200.text-auto .form-control, .bg-grey-A400.text-auto .form-control, .bg-fuse-dark-50.text-auto .form-control, .bg-fuse-dark-100.text-auto .form-control, .bg-fuse-dark-200.text-auto .form-control, .bg-fuse-dark-A100.text-auto .form-control, .bg-fuse-dark-A200.text-auto .form-control, .bg-white-500.text-auto .form-control, .bg-white.text-auto .form-control {
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42);
}
.dark-fg .form-control:hover, .dark-fg.text-auto .form-control:hover, .bg-primary-50.text-auto .form-control:hover, .bg-primary-100.text-auto .form-control:hover, .bg-primary-200.text-auto .form-control:hover, .bg-primary-A100.text-auto .form-control:hover, .bg-primary-A200.text-auto .form-control:hover, .bg-secondary-50.text-auto .form-control:hover, .bg-secondary-100.text-auto .form-control:hover, .bg-secondary-200.text-auto .form-control:hover, .bg-secondary-300.text-auto .form-control:hover, .bg-secondary-400.text-auto .form-control:hover, .bg-secondary-A100.text-auto .form-control:hover, .bg-success-50.text-auto .form-control:hover, .bg-success-100.text-auto .form-control:hover, .bg-success-200.text-auto .form-control:hover, .bg-success-300.text-auto .form-control:hover, .bg-success-400.text-auto .form-control:hover, .bg-success-500.text-auto .form-control:hover, .bg-success.text-auto .form-control:hover, .bg-success-A100.text-auto .form-control:hover, .bg-success-A200.text-auto .form-control:hover, .bg-success-A400.text-auto .form-control:hover, .bg-success-A700.text-auto .form-control:hover, .bg-info-50.text-auto .form-control:hover, .bg-info-100.text-auto .form-control:hover, .bg-info-200.text-auto .form-control:hover, .bg-info-300.text-auto .form-control:hover, .bg-info-400.text-auto .form-control:hover, .bg-info-A100.text-auto .form-control:hover, .bg-info-A200.text-auto .form-control:hover, .bg-info-A400.text-auto .form-control:hover, .bg-info-A700.text-auto .form-control:hover, .bg-warning-50.text-auto .form-control:hover, .bg-warning-100.text-auto .form-control:hover, .bg-warning-200.text-auto .form-control:hover, .bg-warning-300.text-auto .form-control:hover, .bg-warning-400.text-auto .form-control:hover, .bg-warning-500.text-auto .form-control:hover, .bg-warning.text-auto .form-control:hover, .bg-warning-600.text-auto .form-control:hover, .bg-warning-700.text-auto .form-control:hover, .bg-warning-800.text-auto .form-control:hover, .bg-warning-A100.text-auto .form-control:hover, .bg-warning-A200.text-auto .form-control:hover, .bg-warning-A400.text-auto .form-control:hover, .bg-warning-A700.text-auto .form-control:hover, .bg-danger-50.text-auto .form-control:hover, .bg-danger-100.text-auto .form-control:hover, .bg-danger-200.text-auto .form-control:hover, .bg-danger-300.text-auto .form-control:hover, .bg-danger-A100.text-auto .form-control:hover, .bg-light-500.text-auto .form-control:hover, .bg-light.text-auto .form-control:hover, .bg-red-50.text-auto .form-control:hover, .bg-red-100.text-auto .form-control:hover, .bg-red-200.text-auto .form-control:hover, .bg-red-300.text-auto .form-control:hover, .bg-red-A100.text-auto .form-control:hover, .bg-blue-50.text-auto .form-control:hover, .bg-blue-100.text-auto .form-control:hover, .bg-blue-200.text-auto .form-control:hover, .bg-blue-300.text-auto .form-control:hover, .bg-blue-400.text-auto .form-control:hover, .bg-blue-A100.text-auto .form-control:hover, .bg-teal-50.text-auto .form-control:hover, .bg-teal-100.text-auto .form-control:hover, .bg-teal-200.text-auto .form-control:hover, .bg-teal-300.text-auto .form-control:hover, .bg-teal-400.text-auto .form-control:hover, .bg-teal-A100.text-auto .form-control:hover, .bg-teal-A200.text-auto .form-control:hover, .bg-teal-A400.text-auto .form-control:hover, .bg-teal-A700.text-auto .form-control:hover, .bg-green-50.text-auto .form-control:hover, .bg-green-100.text-auto .form-control:hover, .bg-green-200.text-auto .form-control:hover, .bg-green-300.text-auto .form-control:hover, .bg-green-400.text-auto .form-control:hover, .bg-green-500.text-auto .form-control:hover, .bg-green.text-auto .form-control:hover, .bg-green-A100.text-auto .form-control:hover, .bg-green-A200.text-auto .form-control:hover, .bg-green-A400.text-auto .form-control:hover, .bg-green-A700.text-auto .form-control:hover, .bg-orange-50.text-auto .form-control:hover, .bg-orange-100.text-auto .form-control:hover, .bg-orange-200.text-auto .form-control:hover, .bg-orange-300.text-auto .form-control:hover, .bg-orange-400.text-auto .form-control:hover, .bg-orange-500.text-auto .form-control:hover, .bg-orange.text-auto .form-control:hover, .bg-orange-600.text-auto .form-control:hover, .bg-orange-700.text-auto .form-control:hover, .bg-orange-800.text-auto .form-control:hover, .bg-orange-A100.text-auto .form-control:hover, .bg-orange-A200.text-auto .form-control:hover, .bg-orange-A400.text-auto .form-control:hover, .bg-orange-A700.text-auto .form-control:hover, .bg-grey-50.text-auto .form-control:hover, .bg-grey-100.text-auto .form-control:hover, .bg-grey-200.text-auto .form-control:hover, .bg-grey-300.text-auto .form-control:hover, .bg-grey-400.text-auto .form-control:hover, .bg-grey-500.text-auto .form-control:hover, .bg-grey.text-auto .form-control:hover, .bg-grey-A100.text-auto .form-control:hover, .bg-grey-A200.text-auto .form-control:hover, .bg-grey-A400.text-auto .form-control:hover, .bg-fuse-dark-50.text-auto .form-control:hover, .bg-fuse-dark-100.text-auto .form-control:hover, .bg-fuse-dark-200.text-auto .form-control:hover, .bg-fuse-dark-A100.text-auto .form-control:hover, .bg-fuse-dark-A200.text-auto .form-control:hover, .bg-white-500.text-auto .form-control:hover, .bg-white.text-auto .form-control:hover {
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87);
}
.dark-fg .form-control:focus, .dark-fg.text-auto .form-control:focus, .bg-primary-50.text-auto .form-control:focus, .bg-primary-100.text-auto .form-control:focus, .bg-primary-200.text-auto .form-control:focus, .bg-primary-A100.text-auto .form-control:focus, .bg-primary-A200.text-auto .form-control:focus, .bg-secondary-50.text-auto .form-control:focus, .bg-secondary-100.text-auto .form-control:focus, .bg-secondary-200.text-auto .form-control:focus, .bg-secondary-300.text-auto .form-control:focus, .bg-secondary-400.text-auto .form-control:focus, .bg-secondary-A100.text-auto .form-control:focus, .bg-success-50.text-auto .form-control:focus, .bg-success-100.text-auto .form-control:focus, .bg-success-200.text-auto .form-control:focus, .bg-success-300.text-auto .form-control:focus, .bg-success-400.text-auto .form-control:focus, .bg-success-500.text-auto .form-control:focus, .bg-success.text-auto .form-control:focus, .bg-success-A100.text-auto .form-control:focus, .bg-success-A200.text-auto .form-control:focus, .bg-success-A400.text-auto .form-control:focus, .bg-success-A700.text-auto .form-control:focus, .bg-info-50.text-auto .form-control:focus, .bg-info-100.text-auto .form-control:focus, .bg-info-200.text-auto .form-control:focus, .bg-info-300.text-auto .form-control:focus, .bg-info-400.text-auto .form-control:focus, .bg-info-A100.text-auto .form-control:focus, .bg-info-A200.text-auto .form-control:focus, .bg-info-A400.text-auto .form-control:focus, .bg-info-A700.text-auto .form-control:focus, .bg-warning-50.text-auto .form-control:focus, .bg-warning-100.text-auto .form-control:focus, .bg-warning-200.text-auto .form-control:focus, .bg-warning-300.text-auto .form-control:focus, .bg-warning-400.text-auto .form-control:focus, .bg-warning-500.text-auto .form-control:focus, .bg-warning.text-auto .form-control:focus, .bg-warning-600.text-auto .form-control:focus, .bg-warning-700.text-auto .form-control:focus, .bg-warning-800.text-auto .form-control:focus, .bg-warning-A100.text-auto .form-control:focus, .bg-warning-A200.text-auto .form-control:focus, .bg-warning-A400.text-auto .form-control:focus, .bg-warning-A700.text-auto .form-control:focus, .bg-danger-50.text-auto .form-control:focus, .bg-danger-100.text-auto .form-control:focus, .bg-danger-200.text-auto .form-control:focus, .bg-danger-300.text-auto .form-control:focus, .bg-danger-A100.text-auto .form-control:focus, .bg-light-500.text-auto .form-control:focus, .bg-light.text-auto .form-control:focus, .bg-red-50.text-auto .form-control:focus, .bg-red-100.text-auto .form-control:focus, .bg-red-200.text-auto .form-control:focus, .bg-red-300.text-auto .form-control:focus, .bg-red-A100.text-auto .form-control:focus, .bg-blue-50.text-auto .form-control:focus, .bg-blue-100.text-auto .form-control:focus, .bg-blue-200.text-auto .form-control:focus, .bg-blue-300.text-auto .form-control:focus, .bg-blue-400.text-auto .form-control:focus, .bg-blue-A100.text-auto .form-control:focus, .bg-teal-50.text-auto .form-control:focus, .bg-teal-100.text-auto .form-control:focus, .bg-teal-200.text-auto .form-control:focus, .bg-teal-300.text-auto .form-control:focus, .bg-teal-400.text-auto .form-control:focus, .bg-teal-A100.text-auto .form-control:focus, .bg-teal-A200.text-auto .form-control:focus, .bg-teal-A400.text-auto .form-control:focus, .bg-teal-A700.text-auto .form-control:focus, .bg-green-50.text-auto .form-control:focus, .bg-green-100.text-auto .form-control:focus, .bg-green-200.text-auto .form-control:focus, .bg-green-300.text-auto .form-control:focus, .bg-green-400.text-auto .form-control:focus, .bg-green-500.text-auto .form-control:focus, .bg-green.text-auto .form-control:focus, .bg-green-A100.text-auto .form-control:focus, .bg-green-A200.text-auto .form-control:focus, .bg-green-A400.text-auto .form-control:focus, .bg-green-A700.text-auto .form-control:focus, .bg-orange-50.text-auto .form-control:focus, .bg-orange-100.text-auto .form-control:focus, .bg-orange-200.text-auto .form-control:focus, .bg-orange-300.text-auto .form-control:focus, .bg-orange-400.text-auto .form-control:focus, .bg-orange-500.text-auto .form-control:focus, .bg-orange.text-auto .form-control:focus, .bg-orange-600.text-auto .form-control:focus, .bg-orange-700.text-auto .form-control:focus, .bg-orange-800.text-auto .form-control:focus, .bg-orange-A100.text-auto .form-control:focus, .bg-orange-A200.text-auto .form-control:focus, .bg-orange-A400.text-auto .form-control:focus, .bg-orange-A700.text-auto .form-control:focus, .bg-grey-50.text-auto .form-control:focus, .bg-grey-100.text-auto .form-control:focus, .bg-grey-200.text-auto .form-control:focus, .bg-grey-300.text-auto .form-control:focus, .bg-grey-400.text-auto .form-control:focus, .bg-grey-500.text-auto .form-control:focus, .bg-grey.text-auto .form-control:focus, .bg-grey-A100.text-auto .form-control:focus, .bg-grey-A200.text-auto .form-control:focus, .bg-grey-A400.text-auto .form-control:focus, .bg-fuse-dark-50.text-auto .form-control:focus, .bg-fuse-dark-100.text-auto .form-control:focus, .bg-fuse-dark-200.text-auto .form-control:focus, .bg-fuse-dark-A100.text-auto .form-control:focus, .bg-fuse-dark-A200.text-auto .form-control:focus, .bg-white-500.text-auto .form-control:focus, .bg-white.text-auto .form-control:focus {
  box-shadow: 0 2px 0 0 #3C4252;
}
.dark-fg .form-control::placeholder, .dark-fg.text-auto .form-control::placeholder, .bg-primary-50.text-auto .form-control::placeholder, .bg-primary-100.text-auto .form-control::placeholder, .bg-primary-200.text-auto .form-control::placeholder, .bg-primary-A100.text-auto .form-control::placeholder, .bg-primary-A200.text-auto .form-control::placeholder, .bg-secondary-50.text-auto .form-control::placeholder, .bg-secondary-100.text-auto .form-control::placeholder, .bg-secondary-200.text-auto .form-control::placeholder, .bg-secondary-300.text-auto .form-control::placeholder, .bg-secondary-400.text-auto .form-control::placeholder, .bg-secondary-A100.text-auto .form-control::placeholder, .bg-success-50.text-auto .form-control::placeholder, .bg-success-100.text-auto .form-control::placeholder, .bg-success-200.text-auto .form-control::placeholder, .bg-success-300.text-auto .form-control::placeholder, .bg-success-400.text-auto .form-control::placeholder, .bg-success-500.text-auto .form-control::placeholder, .bg-success.text-auto .form-control::placeholder, .bg-success-A100.text-auto .form-control::placeholder, .bg-success-A200.text-auto .form-control::placeholder, .bg-success-A400.text-auto .form-control::placeholder, .bg-success-A700.text-auto .form-control::placeholder, .bg-info-50.text-auto .form-control::placeholder, .bg-info-100.text-auto .form-control::placeholder, .bg-info-200.text-auto .form-control::placeholder, .bg-info-300.text-auto .form-control::placeholder, .bg-info-400.text-auto .form-control::placeholder, .bg-info-A100.text-auto .form-control::placeholder, .bg-info-A200.text-auto .form-control::placeholder, .bg-info-A400.text-auto .form-control::placeholder, .bg-info-A700.text-auto .form-control::placeholder, .bg-warning-50.text-auto .form-control::placeholder, .bg-warning-100.text-auto .form-control::placeholder, .bg-warning-200.text-auto .form-control::placeholder, .bg-warning-300.text-auto .form-control::placeholder, .bg-warning-400.text-auto .form-control::placeholder, .bg-warning-500.text-auto .form-control::placeholder, .bg-warning.text-auto .form-control::placeholder, .bg-warning-600.text-auto .form-control::placeholder, .bg-warning-700.text-auto .form-control::placeholder, .bg-warning-800.text-auto .form-control::placeholder, .bg-warning-A100.text-auto .form-control::placeholder, .bg-warning-A200.text-auto .form-control::placeholder, .bg-warning-A400.text-auto .form-control::placeholder, .bg-warning-A700.text-auto .form-control::placeholder, .bg-danger-50.text-auto .form-control::placeholder, .bg-danger-100.text-auto .form-control::placeholder, .bg-danger-200.text-auto .form-control::placeholder, .bg-danger-300.text-auto .form-control::placeholder, .bg-danger-A100.text-auto .form-control::placeholder, .bg-light-500.text-auto .form-control::placeholder, .bg-light.text-auto .form-control::placeholder, .bg-red-50.text-auto .form-control::placeholder, .bg-red-100.text-auto .form-control::placeholder, .bg-red-200.text-auto .form-control::placeholder, .bg-red-300.text-auto .form-control::placeholder, .bg-red-A100.text-auto .form-control::placeholder, .bg-blue-50.text-auto .form-control::placeholder, .bg-blue-100.text-auto .form-control::placeholder, .bg-blue-200.text-auto .form-control::placeholder, .bg-blue-300.text-auto .form-control::placeholder, .bg-blue-400.text-auto .form-control::placeholder, .bg-blue-A100.text-auto .form-control::placeholder, .bg-teal-50.text-auto .form-control::placeholder, .bg-teal-100.text-auto .form-control::placeholder, .bg-teal-200.text-auto .form-control::placeholder, .bg-teal-300.text-auto .form-control::placeholder, .bg-teal-400.text-auto .form-control::placeholder, .bg-teal-A100.text-auto .form-control::placeholder, .bg-teal-A200.text-auto .form-control::placeholder, .bg-teal-A400.text-auto .form-control::placeholder, .bg-teal-A700.text-auto .form-control::placeholder, .bg-green-50.text-auto .form-control::placeholder, .bg-green-100.text-auto .form-control::placeholder, .bg-green-200.text-auto .form-control::placeholder, .bg-green-300.text-auto .form-control::placeholder, .bg-green-400.text-auto .form-control::placeholder, .bg-green-500.text-auto .form-control::placeholder, .bg-green.text-auto .form-control::placeholder, .bg-green-A100.text-auto .form-control::placeholder, .bg-green-A200.text-auto .form-control::placeholder, .bg-green-A400.text-auto .form-control::placeholder, .bg-green-A700.text-auto .form-control::placeholder, .bg-orange-50.text-auto .form-control::placeholder, .bg-orange-100.text-auto .form-control::placeholder, .bg-orange-200.text-auto .form-control::placeholder, .bg-orange-300.text-auto .form-control::placeholder, .bg-orange-400.text-auto .form-control::placeholder, .bg-orange-500.text-auto .form-control::placeholder, .bg-orange.text-auto .form-control::placeholder, .bg-orange-600.text-auto .form-control::placeholder, .bg-orange-700.text-auto .form-control::placeholder, .bg-orange-800.text-auto .form-control::placeholder, .bg-orange-A100.text-auto .form-control::placeholder, .bg-orange-A200.text-auto .form-control::placeholder, .bg-orange-A400.text-auto .form-control::placeholder, .bg-orange-A700.text-auto .form-control::placeholder, .bg-grey-50.text-auto .form-control::placeholder, .bg-grey-100.text-auto .form-control::placeholder, .bg-grey-200.text-auto .form-control::placeholder, .bg-grey-300.text-auto .form-control::placeholder, .bg-grey-400.text-auto .form-control::placeholder, .bg-grey-500.text-auto .form-control::placeholder, .bg-grey.text-auto .form-control::placeholder, .bg-grey-A100.text-auto .form-control::placeholder, .bg-grey-A200.text-auto .form-control::placeholder, .bg-grey-A400.text-auto .form-control::placeholder, .bg-fuse-dark-50.text-auto .form-control::placeholder, .bg-fuse-dark-100.text-auto .form-control::placeholder, .bg-fuse-dark-200.text-auto .form-control::placeholder, .bg-fuse-dark-A100.text-auto .form-control::placeholder, .bg-fuse-dark-A200.text-auto .form-control::placeholder, .bg-white-500.text-auto .form-control::placeholder, .bg-white.text-auto .form-control::placeholder {
  color: rgba(0, 0, 0, 0.54);
}
.dark-fg textarea.form-control, .dark-fg.text-auto textarea.form-control, .bg-primary-50.text-auto textarea.form-control, .bg-primary-100.text-auto textarea.form-control, .bg-primary-200.text-auto textarea.form-control, .bg-primary-A100.text-auto textarea.form-control, .bg-primary-A200.text-auto textarea.form-control, .bg-secondary-50.text-auto textarea.form-control, .bg-secondary-100.text-auto textarea.form-control, .bg-secondary-200.text-auto textarea.form-control, .bg-secondary-300.text-auto textarea.form-control, .bg-secondary-400.text-auto textarea.form-control, .bg-secondary-A100.text-auto textarea.form-control, .bg-success-50.text-auto textarea.form-control, .bg-success-100.text-auto textarea.form-control, .bg-success-200.text-auto textarea.form-control, .bg-success-300.text-auto textarea.form-control, .bg-success-400.text-auto textarea.form-control, .bg-success-500.text-auto textarea.form-control, .bg-success.text-auto textarea.form-control, .bg-success-A100.text-auto textarea.form-control, .bg-success-A200.text-auto textarea.form-control, .bg-success-A400.text-auto textarea.form-control, .bg-success-A700.text-auto textarea.form-control, .bg-info-50.text-auto textarea.form-control, .bg-info-100.text-auto textarea.form-control, .bg-info-200.text-auto textarea.form-control, .bg-info-300.text-auto textarea.form-control, .bg-info-400.text-auto textarea.form-control, .bg-info-A100.text-auto textarea.form-control, .bg-info-A200.text-auto textarea.form-control, .bg-info-A400.text-auto textarea.form-control, .bg-info-A700.text-auto textarea.form-control, .bg-warning-50.text-auto textarea.form-control, .bg-warning-100.text-auto textarea.form-control, .bg-warning-200.text-auto textarea.form-control, .bg-warning-300.text-auto textarea.form-control, .bg-warning-400.text-auto textarea.form-control, .bg-warning-500.text-auto textarea.form-control, .bg-warning.text-auto textarea.form-control, .bg-warning-600.text-auto textarea.form-control, .bg-warning-700.text-auto textarea.form-control, .bg-warning-800.text-auto textarea.form-control, .bg-warning-A100.text-auto textarea.form-control, .bg-warning-A200.text-auto textarea.form-control, .bg-warning-A400.text-auto textarea.form-control, .bg-warning-A700.text-auto textarea.form-control, .bg-danger-50.text-auto textarea.form-control, .bg-danger-100.text-auto textarea.form-control, .bg-danger-200.text-auto textarea.form-control, .bg-danger-300.text-auto textarea.form-control, .bg-danger-A100.text-auto textarea.form-control, .bg-light-500.text-auto textarea.form-control, .bg-light.text-auto textarea.form-control, .bg-red-50.text-auto textarea.form-control, .bg-red-100.text-auto textarea.form-control, .bg-red-200.text-auto textarea.form-control, .bg-red-300.text-auto textarea.form-control, .bg-red-A100.text-auto textarea.form-control, .bg-blue-50.text-auto textarea.form-control, .bg-blue-100.text-auto textarea.form-control, .bg-blue-200.text-auto textarea.form-control, .bg-blue-300.text-auto textarea.form-control, .bg-blue-400.text-auto textarea.form-control, .bg-blue-A100.text-auto textarea.form-control, .bg-teal-50.text-auto textarea.form-control, .bg-teal-100.text-auto textarea.form-control, .bg-teal-200.text-auto textarea.form-control, .bg-teal-300.text-auto textarea.form-control, .bg-teal-400.text-auto textarea.form-control, .bg-teal-A100.text-auto textarea.form-control, .bg-teal-A200.text-auto textarea.form-control, .bg-teal-A400.text-auto textarea.form-control, .bg-teal-A700.text-auto textarea.form-control, .bg-green-50.text-auto textarea.form-control, .bg-green-100.text-auto textarea.form-control, .bg-green-200.text-auto textarea.form-control, .bg-green-300.text-auto textarea.form-control, .bg-green-400.text-auto textarea.form-control, .bg-green-500.text-auto textarea.form-control, .bg-green.text-auto textarea.form-control, .bg-green-A100.text-auto textarea.form-control, .bg-green-A200.text-auto textarea.form-control, .bg-green-A400.text-auto textarea.form-control, .bg-green-A700.text-auto textarea.form-control, .bg-orange-50.text-auto textarea.form-control, .bg-orange-100.text-auto textarea.form-control, .bg-orange-200.text-auto textarea.form-control, .bg-orange-300.text-auto textarea.form-control, .bg-orange-400.text-auto textarea.form-control, .bg-orange-500.text-auto textarea.form-control, .bg-orange.text-auto textarea.form-control, .bg-orange-600.text-auto textarea.form-control, .bg-orange-700.text-auto textarea.form-control, .bg-orange-800.text-auto textarea.form-control, .bg-orange-A100.text-auto textarea.form-control, .bg-orange-A200.text-auto textarea.form-control, .bg-orange-A400.text-auto textarea.form-control, .bg-orange-A700.text-auto textarea.form-control, .bg-grey-50.text-auto textarea.form-control, .bg-grey-100.text-auto textarea.form-control, .bg-grey-200.text-auto textarea.form-control, .bg-grey-300.text-auto textarea.form-control, .bg-grey-400.text-auto textarea.form-control, .bg-grey-500.text-auto textarea.form-control, .bg-grey.text-auto textarea.form-control, .bg-grey-A100.text-auto textarea.form-control, .bg-grey-A200.text-auto textarea.form-control, .bg-grey-A400.text-auto textarea.form-control, .bg-fuse-dark-50.text-auto textarea.form-control, .bg-fuse-dark-100.text-auto textarea.form-control, .bg-fuse-dark-200.text-auto textarea.form-control, .bg-fuse-dark-A100.text-auto textarea.form-control, .bg-fuse-dark-A200.text-auto textarea.form-control, .bg-white-500.text-auto textarea.form-control, .bg-white.text-auto textarea.form-control {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.dark-fg textarea.form-control:hover, .dark-fg.text-auto textarea.form-control:hover, .bg-primary-50.text-auto textarea.form-control:hover, .bg-primary-100.text-auto textarea.form-control:hover, .bg-primary-200.text-auto textarea.form-control:hover, .bg-primary-A100.text-auto textarea.form-control:hover, .bg-primary-A200.text-auto textarea.form-control:hover, .bg-secondary-50.text-auto textarea.form-control:hover, .bg-secondary-100.text-auto textarea.form-control:hover, .bg-secondary-200.text-auto textarea.form-control:hover, .bg-secondary-300.text-auto textarea.form-control:hover, .bg-secondary-400.text-auto textarea.form-control:hover, .bg-secondary-A100.text-auto textarea.form-control:hover, .bg-success-50.text-auto textarea.form-control:hover, .bg-success-100.text-auto textarea.form-control:hover, .bg-success-200.text-auto textarea.form-control:hover, .bg-success-300.text-auto textarea.form-control:hover, .bg-success-400.text-auto textarea.form-control:hover, .bg-success-500.text-auto textarea.form-control:hover, .bg-success.text-auto textarea.form-control:hover, .bg-success-A100.text-auto textarea.form-control:hover, .bg-success-A200.text-auto textarea.form-control:hover, .bg-success-A400.text-auto textarea.form-control:hover, .bg-success-A700.text-auto textarea.form-control:hover, .bg-info-50.text-auto textarea.form-control:hover, .bg-info-100.text-auto textarea.form-control:hover, .bg-info-200.text-auto textarea.form-control:hover, .bg-info-300.text-auto textarea.form-control:hover, .bg-info-400.text-auto textarea.form-control:hover, .bg-info-A100.text-auto textarea.form-control:hover, .bg-info-A200.text-auto textarea.form-control:hover, .bg-info-A400.text-auto textarea.form-control:hover, .bg-info-A700.text-auto textarea.form-control:hover, .bg-warning-50.text-auto textarea.form-control:hover, .bg-warning-100.text-auto textarea.form-control:hover, .bg-warning-200.text-auto textarea.form-control:hover, .bg-warning-300.text-auto textarea.form-control:hover, .bg-warning-400.text-auto textarea.form-control:hover, .bg-warning-500.text-auto textarea.form-control:hover, .bg-warning.text-auto textarea.form-control:hover, .bg-warning-600.text-auto textarea.form-control:hover, .bg-warning-700.text-auto textarea.form-control:hover, .bg-warning-800.text-auto textarea.form-control:hover, .bg-warning-A100.text-auto textarea.form-control:hover, .bg-warning-A200.text-auto textarea.form-control:hover, .bg-warning-A400.text-auto textarea.form-control:hover, .bg-warning-A700.text-auto textarea.form-control:hover, .bg-danger-50.text-auto textarea.form-control:hover, .bg-danger-100.text-auto textarea.form-control:hover, .bg-danger-200.text-auto textarea.form-control:hover, .bg-danger-300.text-auto textarea.form-control:hover, .bg-danger-A100.text-auto textarea.form-control:hover, .bg-light-500.text-auto textarea.form-control:hover, .bg-light.text-auto textarea.form-control:hover, .bg-red-50.text-auto textarea.form-control:hover, .bg-red-100.text-auto textarea.form-control:hover, .bg-red-200.text-auto textarea.form-control:hover, .bg-red-300.text-auto textarea.form-control:hover, .bg-red-A100.text-auto textarea.form-control:hover, .bg-blue-50.text-auto textarea.form-control:hover, .bg-blue-100.text-auto textarea.form-control:hover, .bg-blue-200.text-auto textarea.form-control:hover, .bg-blue-300.text-auto textarea.form-control:hover, .bg-blue-400.text-auto textarea.form-control:hover, .bg-blue-A100.text-auto textarea.form-control:hover, .bg-teal-50.text-auto textarea.form-control:hover, .bg-teal-100.text-auto textarea.form-control:hover, .bg-teal-200.text-auto textarea.form-control:hover, .bg-teal-300.text-auto textarea.form-control:hover, .bg-teal-400.text-auto textarea.form-control:hover, .bg-teal-A100.text-auto textarea.form-control:hover, .bg-teal-A200.text-auto textarea.form-control:hover, .bg-teal-A400.text-auto textarea.form-control:hover, .bg-teal-A700.text-auto textarea.form-control:hover, .bg-green-50.text-auto textarea.form-control:hover, .bg-green-100.text-auto textarea.form-control:hover, .bg-green-200.text-auto textarea.form-control:hover, .bg-green-300.text-auto textarea.form-control:hover, .bg-green-400.text-auto textarea.form-control:hover, .bg-green-500.text-auto textarea.form-control:hover, .bg-green.text-auto textarea.form-control:hover, .bg-green-A100.text-auto textarea.form-control:hover, .bg-green-A200.text-auto textarea.form-control:hover, .bg-green-A400.text-auto textarea.form-control:hover, .bg-green-A700.text-auto textarea.form-control:hover, .bg-orange-50.text-auto textarea.form-control:hover, .bg-orange-100.text-auto textarea.form-control:hover, .bg-orange-200.text-auto textarea.form-control:hover, .bg-orange-300.text-auto textarea.form-control:hover, .bg-orange-400.text-auto textarea.form-control:hover, .bg-orange-500.text-auto textarea.form-control:hover, .bg-orange.text-auto textarea.form-control:hover, .bg-orange-600.text-auto textarea.form-control:hover, .bg-orange-700.text-auto textarea.form-control:hover, .bg-orange-800.text-auto textarea.form-control:hover, .bg-orange-A100.text-auto textarea.form-control:hover, .bg-orange-A200.text-auto textarea.form-control:hover, .bg-orange-A400.text-auto textarea.form-control:hover, .bg-orange-A700.text-auto textarea.form-control:hover, .bg-grey-50.text-auto textarea.form-control:hover, .bg-grey-100.text-auto textarea.form-control:hover, .bg-grey-200.text-auto textarea.form-control:hover, .bg-grey-300.text-auto textarea.form-control:hover, .bg-grey-400.text-auto textarea.form-control:hover, .bg-grey-500.text-auto textarea.form-control:hover, .bg-grey.text-auto textarea.form-control:hover, .bg-grey-A100.text-auto textarea.form-control:hover, .bg-grey-A200.text-auto textarea.form-control:hover, .bg-grey-A400.text-auto textarea.form-control:hover, .bg-fuse-dark-50.text-auto textarea.form-control:hover, .bg-fuse-dark-100.text-auto textarea.form-control:hover, .bg-fuse-dark-200.text-auto textarea.form-control:hover, .bg-fuse-dark-A100.text-auto textarea.form-control:hover, .bg-fuse-dark-A200.text-auto textarea.form-control:hover, .bg-white-500.text-auto textarea.form-control:hover, .bg-white.text-auto textarea.form-control:hover {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
}
.dark-fg textarea.form-control:focus, .dark-fg textarea.form-control:focus:hover, .dark-fg.text-auto textarea.form-control:focus, .dark-fg.text-auto textarea.form-control:focus:hover, .bg-primary-50.text-auto textarea.form-control:focus, .bg-primary-50.text-auto textarea.form-control:focus:hover, .bg-primary-100.text-auto textarea.form-control:focus, .bg-primary-100.text-auto textarea.form-control:focus:hover, .bg-primary-200.text-auto textarea.form-control:focus, .bg-primary-200.text-auto textarea.form-control:focus:hover, .bg-primary-A100.text-auto textarea.form-control:focus, .bg-primary-A100.text-auto textarea.form-control:focus:hover, .bg-primary-A200.text-auto textarea.form-control:focus, .bg-primary-A200.text-auto textarea.form-control:focus:hover, .bg-secondary-50.text-auto textarea.form-control:focus, .bg-secondary-50.text-auto textarea.form-control:focus:hover, .bg-secondary-100.text-auto textarea.form-control:focus, .bg-secondary-100.text-auto textarea.form-control:focus:hover, .bg-secondary-200.text-auto textarea.form-control:focus, .bg-secondary-200.text-auto textarea.form-control:focus:hover, .bg-secondary-300.text-auto textarea.form-control:focus, .bg-secondary-300.text-auto textarea.form-control:focus:hover, .bg-secondary-400.text-auto textarea.form-control:focus, .bg-secondary-400.text-auto textarea.form-control:focus:hover, .bg-secondary-A100.text-auto textarea.form-control:focus, .bg-secondary-A100.text-auto textarea.form-control:focus:hover, .bg-success-50.text-auto textarea.form-control:focus, .bg-success-50.text-auto textarea.form-control:focus:hover, .bg-success-100.text-auto textarea.form-control:focus, .bg-success-100.text-auto textarea.form-control:focus:hover, .bg-success-200.text-auto textarea.form-control:focus, .bg-success-200.text-auto textarea.form-control:focus:hover, .bg-success-300.text-auto textarea.form-control:focus, .bg-success-300.text-auto textarea.form-control:focus:hover, .bg-success-400.text-auto textarea.form-control:focus, .bg-success-400.text-auto textarea.form-control:focus:hover, .bg-success-500.text-auto textarea.form-control:focus, .bg-success-500.text-auto textarea.form-control:focus:hover, .bg-success.text-auto textarea.form-control:focus, .bg-success.text-auto textarea.form-control:focus:hover, .bg-success-A100.text-auto textarea.form-control:focus, .bg-success-A100.text-auto textarea.form-control:focus:hover, .bg-success-A200.text-auto textarea.form-control:focus, .bg-success-A200.text-auto textarea.form-control:focus:hover, .bg-success-A400.text-auto textarea.form-control:focus, .bg-success-A400.text-auto textarea.form-control:focus:hover, .bg-success-A700.text-auto textarea.form-control:focus, .bg-success-A700.text-auto textarea.form-control:focus:hover, .bg-info-50.text-auto textarea.form-control:focus, .bg-info-50.text-auto textarea.form-control:focus:hover, .bg-info-100.text-auto textarea.form-control:focus, .bg-info-100.text-auto textarea.form-control:focus:hover, .bg-info-200.text-auto textarea.form-control:focus, .bg-info-200.text-auto textarea.form-control:focus:hover, .bg-info-300.text-auto textarea.form-control:focus, .bg-info-300.text-auto textarea.form-control:focus:hover, .bg-info-400.text-auto textarea.form-control:focus, .bg-info-400.text-auto textarea.form-control:focus:hover, .bg-info-A100.text-auto textarea.form-control:focus, .bg-info-A100.text-auto textarea.form-control:focus:hover, .bg-info-A200.text-auto textarea.form-control:focus, .bg-info-A200.text-auto textarea.form-control:focus:hover, .bg-info-A400.text-auto textarea.form-control:focus, .bg-info-A400.text-auto textarea.form-control:focus:hover, .bg-info-A700.text-auto textarea.form-control:focus, .bg-info-A700.text-auto textarea.form-control:focus:hover, .bg-warning-50.text-auto textarea.form-control:focus, .bg-warning-50.text-auto textarea.form-control:focus:hover, .bg-warning-100.text-auto textarea.form-control:focus, .bg-warning-100.text-auto textarea.form-control:focus:hover, .bg-warning-200.text-auto textarea.form-control:focus, .bg-warning-200.text-auto textarea.form-control:focus:hover, .bg-warning-300.text-auto textarea.form-control:focus, .bg-warning-300.text-auto textarea.form-control:focus:hover, .bg-warning-400.text-auto textarea.form-control:focus, .bg-warning-400.text-auto textarea.form-control:focus:hover, .bg-warning-500.text-auto textarea.form-control:focus, .bg-warning-500.text-auto textarea.form-control:focus:hover, .bg-warning.text-auto textarea.form-control:focus, .bg-warning.text-auto textarea.form-control:focus:hover, .bg-warning-600.text-auto textarea.form-control:focus, .bg-warning-600.text-auto textarea.form-control:focus:hover, .bg-warning-700.text-auto textarea.form-control:focus, .bg-warning-700.text-auto textarea.form-control:focus:hover, .bg-warning-800.text-auto textarea.form-control:focus, .bg-warning-800.text-auto textarea.form-control:focus:hover, .bg-warning-A100.text-auto textarea.form-control:focus, .bg-warning-A100.text-auto textarea.form-control:focus:hover, .bg-warning-A200.text-auto textarea.form-control:focus, .bg-warning-A200.text-auto textarea.form-control:focus:hover, .bg-warning-A400.text-auto textarea.form-control:focus, .bg-warning-A400.text-auto textarea.form-control:focus:hover, .bg-warning-A700.text-auto textarea.form-control:focus, .bg-warning-A700.text-auto textarea.form-control:focus:hover, .bg-danger-50.text-auto textarea.form-control:focus, .bg-danger-50.text-auto textarea.form-control:focus:hover, .bg-danger-100.text-auto textarea.form-control:focus, .bg-danger-100.text-auto textarea.form-control:focus:hover, .bg-danger-200.text-auto textarea.form-control:focus, .bg-danger-200.text-auto textarea.form-control:focus:hover, .bg-danger-300.text-auto textarea.form-control:focus, .bg-danger-300.text-auto textarea.form-control:focus:hover, .bg-danger-A100.text-auto textarea.form-control:focus, .bg-danger-A100.text-auto textarea.form-control:focus:hover, .bg-light-500.text-auto textarea.form-control:focus, .bg-light-500.text-auto textarea.form-control:focus:hover, .bg-light.text-auto textarea.form-control:focus, .bg-light.text-auto textarea.form-control:focus:hover, .bg-red-50.text-auto textarea.form-control:focus, .bg-red-50.text-auto textarea.form-control:focus:hover, .bg-red-100.text-auto textarea.form-control:focus, .bg-red-100.text-auto textarea.form-control:focus:hover, .bg-red-200.text-auto textarea.form-control:focus, .bg-red-200.text-auto textarea.form-control:focus:hover, .bg-red-300.text-auto textarea.form-control:focus, .bg-red-300.text-auto textarea.form-control:focus:hover, .bg-red-A100.text-auto textarea.form-control:focus, .bg-red-A100.text-auto textarea.form-control:focus:hover, .bg-blue-50.text-auto textarea.form-control:focus, .bg-blue-50.text-auto textarea.form-control:focus:hover, .bg-blue-100.text-auto textarea.form-control:focus, .bg-blue-100.text-auto textarea.form-control:focus:hover, .bg-blue-200.text-auto textarea.form-control:focus, .bg-blue-200.text-auto textarea.form-control:focus:hover, .bg-blue-300.text-auto textarea.form-control:focus, .bg-blue-300.text-auto textarea.form-control:focus:hover, .bg-blue-400.text-auto textarea.form-control:focus, .bg-blue-400.text-auto textarea.form-control:focus:hover, .bg-blue-A100.text-auto textarea.form-control:focus, .bg-blue-A100.text-auto textarea.form-control:focus:hover, .bg-teal-50.text-auto textarea.form-control:focus, .bg-teal-50.text-auto textarea.form-control:focus:hover, .bg-teal-100.text-auto textarea.form-control:focus, .bg-teal-100.text-auto textarea.form-control:focus:hover, .bg-teal-200.text-auto textarea.form-control:focus, .bg-teal-200.text-auto textarea.form-control:focus:hover, .bg-teal-300.text-auto textarea.form-control:focus, .bg-teal-300.text-auto textarea.form-control:focus:hover, .bg-teal-400.text-auto textarea.form-control:focus, .bg-teal-400.text-auto textarea.form-control:focus:hover, .bg-teal-A100.text-auto textarea.form-control:focus, .bg-teal-A100.text-auto textarea.form-control:focus:hover, .bg-teal-A200.text-auto textarea.form-control:focus, .bg-teal-A200.text-auto textarea.form-control:focus:hover, .bg-teal-A400.text-auto textarea.form-control:focus, .bg-teal-A400.text-auto textarea.form-control:focus:hover, .bg-teal-A700.text-auto textarea.form-control:focus, .bg-teal-A700.text-auto textarea.form-control:focus:hover, .bg-green-50.text-auto textarea.form-control:focus, .bg-green-50.text-auto textarea.form-control:focus:hover, .bg-green-100.text-auto textarea.form-control:focus, .bg-green-100.text-auto textarea.form-control:focus:hover, .bg-green-200.text-auto textarea.form-control:focus, .bg-green-200.text-auto textarea.form-control:focus:hover, .bg-green-300.text-auto textarea.form-control:focus, .bg-green-300.text-auto textarea.form-control:focus:hover, .bg-green-400.text-auto textarea.form-control:focus, .bg-green-400.text-auto textarea.form-control:focus:hover, .bg-green-500.text-auto textarea.form-control:focus, .bg-green-500.text-auto textarea.form-control:focus:hover, .bg-green.text-auto textarea.form-control:focus, .bg-green.text-auto textarea.form-control:focus:hover, .bg-green-A100.text-auto textarea.form-control:focus, .bg-green-A100.text-auto textarea.form-control:focus:hover, .bg-green-A200.text-auto textarea.form-control:focus, .bg-green-A200.text-auto textarea.form-control:focus:hover, .bg-green-A400.text-auto textarea.form-control:focus, .bg-green-A400.text-auto textarea.form-control:focus:hover, .bg-green-A700.text-auto textarea.form-control:focus, .bg-green-A700.text-auto textarea.form-control:focus:hover, .bg-orange-50.text-auto textarea.form-control:focus, .bg-orange-50.text-auto textarea.form-control:focus:hover, .bg-orange-100.text-auto textarea.form-control:focus, .bg-orange-100.text-auto textarea.form-control:focus:hover, .bg-orange-200.text-auto textarea.form-control:focus, .bg-orange-200.text-auto textarea.form-control:focus:hover, .bg-orange-300.text-auto textarea.form-control:focus, .bg-orange-300.text-auto textarea.form-control:focus:hover, .bg-orange-400.text-auto textarea.form-control:focus, .bg-orange-400.text-auto textarea.form-control:focus:hover, .bg-orange-500.text-auto textarea.form-control:focus, .bg-orange-500.text-auto textarea.form-control:focus:hover, .bg-orange.text-auto textarea.form-control:focus, .bg-orange.text-auto textarea.form-control:focus:hover, .bg-orange-600.text-auto textarea.form-control:focus, .bg-orange-600.text-auto textarea.form-control:focus:hover, .bg-orange-700.text-auto textarea.form-control:focus, .bg-orange-700.text-auto textarea.form-control:focus:hover, .bg-orange-800.text-auto textarea.form-control:focus, .bg-orange-800.text-auto textarea.form-control:focus:hover, .bg-orange-A100.text-auto textarea.form-control:focus, .bg-orange-A100.text-auto textarea.form-control:focus:hover, .bg-orange-A200.text-auto textarea.form-control:focus, .bg-orange-A200.text-auto textarea.form-control:focus:hover, .bg-orange-A400.text-auto textarea.form-control:focus, .bg-orange-A400.text-auto textarea.form-control:focus:hover, .bg-orange-A700.text-auto textarea.form-control:focus, .bg-orange-A700.text-auto textarea.form-control:focus:hover, .bg-grey-50.text-auto textarea.form-control:focus, .bg-grey-50.text-auto textarea.form-control:focus:hover, .bg-grey-100.text-auto textarea.form-control:focus, .bg-grey-100.text-auto textarea.form-control:focus:hover, .bg-grey-200.text-auto textarea.form-control:focus, .bg-grey-200.text-auto textarea.form-control:focus:hover, .bg-grey-300.text-auto textarea.form-control:focus, .bg-grey-300.text-auto textarea.form-control:focus:hover, .bg-grey-400.text-auto textarea.form-control:focus, .bg-grey-400.text-auto textarea.form-control:focus:hover, .bg-grey-500.text-auto textarea.form-control:focus, .bg-grey-500.text-auto textarea.form-control:focus:hover, .bg-grey.text-auto textarea.form-control:focus, .bg-grey.text-auto textarea.form-control:focus:hover, .bg-grey-A100.text-auto textarea.form-control:focus, .bg-grey-A100.text-auto textarea.form-control:focus:hover, .bg-grey-A200.text-auto textarea.form-control:focus, .bg-grey-A200.text-auto textarea.form-control:focus:hover, .bg-grey-A400.text-auto textarea.form-control:focus, .bg-grey-A400.text-auto textarea.form-control:focus:hover, .bg-fuse-dark-50.text-auto textarea.form-control:focus, .bg-fuse-dark-50.text-auto textarea.form-control:focus:hover, .bg-fuse-dark-100.text-auto textarea.form-control:focus, .bg-fuse-dark-100.text-auto textarea.form-control:focus:hover, .bg-fuse-dark-200.text-auto textarea.form-control:focus, .bg-fuse-dark-200.text-auto textarea.form-control:focus:hover, .bg-fuse-dark-A100.text-auto textarea.form-control:focus, .bg-fuse-dark-A100.text-auto textarea.form-control:focus:hover, .bg-fuse-dark-A200.text-auto textarea.form-control:focus, .bg-fuse-dark-A200.text-auto textarea.form-control:focus:hover, .bg-white-500.text-auto textarea.form-control:focus, .bg-white-500.text-auto textarea.form-control:focus:hover, .bg-white.text-auto textarea.form-control:focus, .bg-white.text-auto textarea.form-control:focus:hover {
  box-shadow: inset 0 0 0 2px #3C4252;
}
.dark-fg select.form-control, .dark-fg.text-auto select.form-control, .bg-primary-50.text-auto select.form-control, .bg-primary-100.text-auto select.form-control, .bg-primary-200.text-auto select.form-control, .bg-primary-A100.text-auto select.form-control, .bg-primary-A200.text-auto select.form-control, .bg-secondary-50.text-auto select.form-control, .bg-secondary-100.text-auto select.form-control, .bg-secondary-200.text-auto select.form-control, .bg-secondary-300.text-auto select.form-control, .bg-secondary-400.text-auto select.form-control, .bg-secondary-A100.text-auto select.form-control, .bg-success-50.text-auto select.form-control, .bg-success-100.text-auto select.form-control, .bg-success-200.text-auto select.form-control, .bg-success-300.text-auto select.form-control, .bg-success-400.text-auto select.form-control, .bg-success-500.text-auto select.form-control, .bg-success.text-auto select.form-control, .bg-success-A100.text-auto select.form-control, .bg-success-A200.text-auto select.form-control, .bg-success-A400.text-auto select.form-control, .bg-success-A700.text-auto select.form-control, .bg-info-50.text-auto select.form-control, .bg-info-100.text-auto select.form-control, .bg-info-200.text-auto select.form-control, .bg-info-300.text-auto select.form-control, .bg-info-400.text-auto select.form-control, .bg-info-A100.text-auto select.form-control, .bg-info-A200.text-auto select.form-control, .bg-info-A400.text-auto select.form-control, .bg-info-A700.text-auto select.form-control, .bg-warning-50.text-auto select.form-control, .bg-warning-100.text-auto select.form-control, .bg-warning-200.text-auto select.form-control, .bg-warning-300.text-auto select.form-control, .bg-warning-400.text-auto select.form-control, .bg-warning-500.text-auto select.form-control, .bg-warning.text-auto select.form-control, .bg-warning-600.text-auto select.form-control, .bg-warning-700.text-auto select.form-control, .bg-warning-800.text-auto select.form-control, .bg-warning-A100.text-auto select.form-control, .bg-warning-A200.text-auto select.form-control, .bg-warning-A400.text-auto select.form-control, .bg-warning-A700.text-auto select.form-control, .bg-danger-50.text-auto select.form-control, .bg-danger-100.text-auto select.form-control, .bg-danger-200.text-auto select.form-control, .bg-danger-300.text-auto select.form-control, .bg-danger-A100.text-auto select.form-control, .bg-light-500.text-auto select.form-control, .bg-light.text-auto select.form-control, .bg-red-50.text-auto select.form-control, .bg-red-100.text-auto select.form-control, .bg-red-200.text-auto select.form-control, .bg-red-300.text-auto select.form-control, .bg-red-A100.text-auto select.form-control, .bg-blue-50.text-auto select.form-control, .bg-blue-100.text-auto select.form-control, .bg-blue-200.text-auto select.form-control, .bg-blue-300.text-auto select.form-control, .bg-blue-400.text-auto select.form-control, .bg-blue-A100.text-auto select.form-control, .bg-teal-50.text-auto select.form-control, .bg-teal-100.text-auto select.form-control, .bg-teal-200.text-auto select.form-control, .bg-teal-300.text-auto select.form-control, .bg-teal-400.text-auto select.form-control, .bg-teal-A100.text-auto select.form-control, .bg-teal-A200.text-auto select.form-control, .bg-teal-A400.text-auto select.form-control, .bg-teal-A700.text-auto select.form-control, .bg-green-50.text-auto select.form-control, .bg-green-100.text-auto select.form-control, .bg-green-200.text-auto select.form-control, .bg-green-300.text-auto select.form-control, .bg-green-400.text-auto select.form-control, .bg-green-500.text-auto select.form-control, .bg-green.text-auto select.form-control, .bg-green-A100.text-auto select.form-control, .bg-green-A200.text-auto select.form-control, .bg-green-A400.text-auto select.form-control, .bg-green-A700.text-auto select.form-control, .bg-orange-50.text-auto select.form-control, .bg-orange-100.text-auto select.form-control, .bg-orange-200.text-auto select.form-control, .bg-orange-300.text-auto select.form-control, .bg-orange-400.text-auto select.form-control, .bg-orange-500.text-auto select.form-control, .bg-orange.text-auto select.form-control, .bg-orange-600.text-auto select.form-control, .bg-orange-700.text-auto select.form-control, .bg-orange-800.text-auto select.form-control, .bg-orange-A100.text-auto select.form-control, .bg-orange-A200.text-auto select.form-control, .bg-orange-A400.text-auto select.form-control, .bg-orange-A700.text-auto select.form-control, .bg-grey-50.text-auto select.form-control, .bg-grey-100.text-auto select.form-control, .bg-grey-200.text-auto select.form-control, .bg-grey-300.text-auto select.form-control, .bg-grey-400.text-auto select.form-control, .bg-grey-500.text-auto select.form-control, .bg-grey.text-auto select.form-control, .bg-grey-A100.text-auto select.form-control, .bg-grey-A200.text-auto select.form-control, .bg-grey-A400.text-auto select.form-control, .bg-fuse-dark-50.text-auto select.form-control, .bg-fuse-dark-100.text-auto select.form-control, .bg-fuse-dark-200.text-auto select.form-control, .bg-fuse-dark-A100.text-auto select.form-control, .bg-fuse-dark-A200.text-auto select.form-control, .bg-white-500.text-auto select.form-control, .bg-white.text-auto select.form-control {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2210px%22%20height%3D%225px%22%20viewBox%3D%227%2010%2010%205%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cpolygon%20id%3D%22Shape%22%20stroke%3D%22none%22%20fill%3D%22%230%22%20fill-rule%3D%22evenodd%22%20opacity%3D%220.38%22%20points%3D%227%2010%2012%2015%2017%2010%22%3E%3C%2Fpolygon%3E%0A%3C%2Fsvg%3E);
}
.dark-fg select.form-control[multiple], .dark-fg select.form-control[size], .dark-fg.text-auto select.form-control[multiple], .dark-fg.text-auto select.form-control[size], .bg-primary-50.text-auto select.form-control[multiple], .bg-primary-50.text-auto select.form-control[size], .bg-primary-100.text-auto select.form-control[multiple], .bg-primary-100.text-auto select.form-control[size], .bg-primary-200.text-auto select.form-control[multiple], .bg-primary-200.text-auto select.form-control[size], .bg-primary-A100.text-auto select.form-control[multiple], .bg-primary-A100.text-auto select.form-control[size], .bg-primary-A200.text-auto select.form-control[multiple], .bg-primary-A200.text-auto select.form-control[size], .bg-secondary-50.text-auto select.form-control[multiple], .bg-secondary-50.text-auto select.form-control[size], .bg-secondary-100.text-auto select.form-control[multiple], .bg-secondary-100.text-auto select.form-control[size], .bg-secondary-200.text-auto select.form-control[multiple], .bg-secondary-200.text-auto select.form-control[size], .bg-secondary-300.text-auto select.form-control[multiple], .bg-secondary-300.text-auto select.form-control[size], .bg-secondary-400.text-auto select.form-control[multiple], .bg-secondary-400.text-auto select.form-control[size], .bg-secondary-A100.text-auto select.form-control[multiple], .bg-secondary-A100.text-auto select.form-control[size], .bg-success-50.text-auto select.form-control[multiple], .bg-success-50.text-auto select.form-control[size], .bg-success-100.text-auto select.form-control[multiple], .bg-success-100.text-auto select.form-control[size], .bg-success-200.text-auto select.form-control[multiple], .bg-success-200.text-auto select.form-control[size], .bg-success-300.text-auto select.form-control[multiple], .bg-success-300.text-auto select.form-control[size], .bg-success-400.text-auto select.form-control[multiple], .bg-success-400.text-auto select.form-control[size], .bg-success-500.text-auto select.form-control[multiple], .bg-success-500.text-auto select.form-control[size], .bg-success.text-auto select.form-control[multiple], .bg-success.text-auto select.form-control[size], .bg-success-A100.text-auto select.form-control[multiple], .bg-success-A100.text-auto select.form-control[size], .bg-success-A200.text-auto select.form-control[multiple], .bg-success-A200.text-auto select.form-control[size], .bg-success-A400.text-auto select.form-control[multiple], .bg-success-A400.text-auto select.form-control[size], .bg-success-A700.text-auto select.form-control[multiple], .bg-success-A700.text-auto select.form-control[size], .bg-info-50.text-auto select.form-control[multiple], .bg-info-50.text-auto select.form-control[size], .bg-info-100.text-auto select.form-control[multiple], .bg-info-100.text-auto select.form-control[size], .bg-info-200.text-auto select.form-control[multiple], .bg-info-200.text-auto select.form-control[size], .bg-info-300.text-auto select.form-control[multiple], .bg-info-300.text-auto select.form-control[size], .bg-info-400.text-auto select.form-control[multiple], .bg-info-400.text-auto select.form-control[size], .bg-info-A100.text-auto select.form-control[multiple], .bg-info-A100.text-auto select.form-control[size], .bg-info-A200.text-auto select.form-control[multiple], .bg-info-A200.text-auto select.form-control[size], .bg-info-A400.text-auto select.form-control[multiple], .bg-info-A400.text-auto select.form-control[size], .bg-info-A700.text-auto select.form-control[multiple], .bg-info-A700.text-auto select.form-control[size], .bg-warning-50.text-auto select.form-control[multiple], .bg-warning-50.text-auto select.form-control[size], .bg-warning-100.text-auto select.form-control[multiple], .bg-warning-100.text-auto select.form-control[size], .bg-warning-200.text-auto select.form-control[multiple], .bg-warning-200.text-auto select.form-control[size], .bg-warning-300.text-auto select.form-control[multiple], .bg-warning-300.text-auto select.form-control[size], .bg-warning-400.text-auto select.form-control[multiple], .bg-warning-400.text-auto select.form-control[size], .bg-warning-500.text-auto select.form-control[multiple], .bg-warning-500.text-auto select.form-control[size], .bg-warning.text-auto select.form-control[multiple], .bg-warning.text-auto select.form-control[size], .bg-warning-600.text-auto select.form-control[multiple], .bg-warning-600.text-auto select.form-control[size], .bg-warning-700.text-auto select.form-control[multiple], .bg-warning-700.text-auto select.form-control[size], .bg-warning-800.text-auto select.form-control[multiple], .bg-warning-800.text-auto select.form-control[size], .bg-warning-A100.text-auto select.form-control[multiple], .bg-warning-A100.text-auto select.form-control[size], .bg-warning-A200.text-auto select.form-control[multiple], .bg-warning-A200.text-auto select.form-control[size], .bg-warning-A400.text-auto select.form-control[multiple], .bg-warning-A400.text-auto select.form-control[size], .bg-warning-A700.text-auto select.form-control[multiple], .bg-warning-A700.text-auto select.form-control[size], .bg-danger-50.text-auto select.form-control[multiple], .bg-danger-50.text-auto select.form-control[size], .bg-danger-100.text-auto select.form-control[multiple], .bg-danger-100.text-auto select.form-control[size], .bg-danger-200.text-auto select.form-control[multiple], .bg-danger-200.text-auto select.form-control[size], .bg-danger-300.text-auto select.form-control[multiple], .bg-danger-300.text-auto select.form-control[size], .bg-danger-A100.text-auto select.form-control[multiple], .bg-danger-A100.text-auto select.form-control[size], .bg-light-500.text-auto select.form-control[multiple], .bg-light-500.text-auto select.form-control[size], .bg-light.text-auto select.form-control[multiple], .bg-light.text-auto select.form-control[size], .bg-red-50.text-auto select.form-control[multiple], .bg-red-50.text-auto select.form-control[size], .bg-red-100.text-auto select.form-control[multiple], .bg-red-100.text-auto select.form-control[size], .bg-red-200.text-auto select.form-control[multiple], .bg-red-200.text-auto select.form-control[size], .bg-red-300.text-auto select.form-control[multiple], .bg-red-300.text-auto select.form-control[size], .bg-red-A100.text-auto select.form-control[multiple], .bg-red-A100.text-auto select.form-control[size], .bg-blue-50.text-auto select.form-control[multiple], .bg-blue-50.text-auto select.form-control[size], .bg-blue-100.text-auto select.form-control[multiple], .bg-blue-100.text-auto select.form-control[size], .bg-blue-200.text-auto select.form-control[multiple], .bg-blue-200.text-auto select.form-control[size], .bg-blue-300.text-auto select.form-control[multiple], .bg-blue-300.text-auto select.form-control[size], .bg-blue-400.text-auto select.form-control[multiple], .bg-blue-400.text-auto select.form-control[size], .bg-blue-A100.text-auto select.form-control[multiple], .bg-blue-A100.text-auto select.form-control[size], .bg-teal-50.text-auto select.form-control[multiple], .bg-teal-50.text-auto select.form-control[size], .bg-teal-100.text-auto select.form-control[multiple], .bg-teal-100.text-auto select.form-control[size], .bg-teal-200.text-auto select.form-control[multiple], .bg-teal-200.text-auto select.form-control[size], .bg-teal-300.text-auto select.form-control[multiple], .bg-teal-300.text-auto select.form-control[size], .bg-teal-400.text-auto select.form-control[multiple], .bg-teal-400.text-auto select.form-control[size], .bg-teal-A100.text-auto select.form-control[multiple], .bg-teal-A100.text-auto select.form-control[size], .bg-teal-A200.text-auto select.form-control[multiple], .bg-teal-A200.text-auto select.form-control[size], .bg-teal-A400.text-auto select.form-control[multiple], .bg-teal-A400.text-auto select.form-control[size], .bg-teal-A700.text-auto select.form-control[multiple], .bg-teal-A700.text-auto select.form-control[size], .bg-green-50.text-auto select.form-control[multiple], .bg-green-50.text-auto select.form-control[size], .bg-green-100.text-auto select.form-control[multiple], .bg-green-100.text-auto select.form-control[size], .bg-green-200.text-auto select.form-control[multiple], .bg-green-200.text-auto select.form-control[size], .bg-green-300.text-auto select.form-control[multiple], .bg-green-300.text-auto select.form-control[size], .bg-green-400.text-auto select.form-control[multiple], .bg-green-400.text-auto select.form-control[size], .bg-green-500.text-auto select.form-control[multiple], .bg-green-500.text-auto select.form-control[size], .bg-green.text-auto select.form-control[multiple], .bg-green.text-auto select.form-control[size], .bg-green-A100.text-auto select.form-control[multiple], .bg-green-A100.text-auto select.form-control[size], .bg-green-A200.text-auto select.form-control[multiple], .bg-green-A200.text-auto select.form-control[size], .bg-green-A400.text-auto select.form-control[multiple], .bg-green-A400.text-auto select.form-control[size], .bg-green-A700.text-auto select.form-control[multiple], .bg-green-A700.text-auto select.form-control[size], .bg-orange-50.text-auto select.form-control[multiple], .bg-orange-50.text-auto select.form-control[size], .bg-orange-100.text-auto select.form-control[multiple], .bg-orange-100.text-auto select.form-control[size], .bg-orange-200.text-auto select.form-control[multiple], .bg-orange-200.text-auto select.form-control[size], .bg-orange-300.text-auto select.form-control[multiple], .bg-orange-300.text-auto select.form-control[size], .bg-orange-400.text-auto select.form-control[multiple], .bg-orange-400.text-auto select.form-control[size], .bg-orange-500.text-auto select.form-control[multiple], .bg-orange-500.text-auto select.form-control[size], .bg-orange.text-auto select.form-control[multiple], .bg-orange.text-auto select.form-control[size], .bg-orange-600.text-auto select.form-control[multiple], .bg-orange-600.text-auto select.form-control[size], .bg-orange-700.text-auto select.form-control[multiple], .bg-orange-700.text-auto select.form-control[size], .bg-orange-800.text-auto select.form-control[multiple], .bg-orange-800.text-auto select.form-control[size], .bg-orange-A100.text-auto select.form-control[multiple], .bg-orange-A100.text-auto select.form-control[size], .bg-orange-A200.text-auto select.form-control[multiple], .bg-orange-A200.text-auto select.form-control[size], .bg-orange-A400.text-auto select.form-control[multiple], .bg-orange-A400.text-auto select.form-control[size], .bg-orange-A700.text-auto select.form-control[multiple], .bg-orange-A700.text-auto select.form-control[size], .bg-grey-50.text-auto select.form-control[multiple], .bg-grey-50.text-auto select.form-control[size], .bg-grey-100.text-auto select.form-control[multiple], .bg-grey-100.text-auto select.form-control[size], .bg-grey-200.text-auto select.form-control[multiple], .bg-grey-200.text-auto select.form-control[size], .bg-grey-300.text-auto select.form-control[multiple], .bg-grey-300.text-auto select.form-control[size], .bg-grey-400.text-auto select.form-control[multiple], .bg-grey-400.text-auto select.form-control[size], .bg-grey-500.text-auto select.form-control[multiple], .bg-grey-500.text-auto select.form-control[size], .bg-grey.text-auto select.form-control[multiple], .bg-grey.text-auto select.form-control[size], .bg-grey-A100.text-auto select.form-control[multiple], .bg-grey-A100.text-auto select.form-control[size], .bg-grey-A200.text-auto select.form-control[multiple], .bg-grey-A200.text-auto select.form-control[size], .bg-grey-A400.text-auto select.form-control[multiple], .bg-grey-A400.text-auto select.form-control[size], .bg-fuse-dark-50.text-auto select.form-control[multiple], .bg-fuse-dark-50.text-auto select.form-control[size], .bg-fuse-dark-100.text-auto select.form-control[multiple], .bg-fuse-dark-100.text-auto select.form-control[size], .bg-fuse-dark-200.text-auto select.form-control[multiple], .bg-fuse-dark-200.text-auto select.form-control[size], .bg-fuse-dark-A100.text-auto select.form-control[multiple], .bg-fuse-dark-A100.text-auto select.form-control[size], .bg-fuse-dark-A200.text-auto select.form-control[multiple], .bg-fuse-dark-A200.text-auto select.form-control[size], .bg-white-500.text-auto select.form-control[multiple], .bg-white-500.text-auto select.form-control[size], .bg-white.text-auto select.form-control[multiple], .bg-white.text-auto select.form-control[size] {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.dark-fg select.form-control[multiple]:hover, .dark-fg select.form-control[size]:hover, .dark-fg.text-auto select.form-control[multiple]:hover, .dark-fg.text-auto select.form-control[size]:hover, .bg-primary-50.text-auto select.form-control[multiple]:hover, .bg-primary-50.text-auto select.form-control[size]:hover, .bg-primary-100.text-auto select.form-control[multiple]:hover, .bg-primary-100.text-auto select.form-control[size]:hover, .bg-primary-200.text-auto select.form-control[multiple]:hover, .bg-primary-200.text-auto select.form-control[size]:hover, .bg-primary-A100.text-auto select.form-control[multiple]:hover, .bg-primary-A100.text-auto select.form-control[size]:hover, .bg-primary-A200.text-auto select.form-control[multiple]:hover, .bg-primary-A200.text-auto select.form-control[size]:hover, .bg-secondary-50.text-auto select.form-control[multiple]:hover, .bg-secondary-50.text-auto select.form-control[size]:hover, .bg-secondary-100.text-auto select.form-control[multiple]:hover, .bg-secondary-100.text-auto select.form-control[size]:hover, .bg-secondary-200.text-auto select.form-control[multiple]:hover, .bg-secondary-200.text-auto select.form-control[size]:hover, .bg-secondary-300.text-auto select.form-control[multiple]:hover, .bg-secondary-300.text-auto select.form-control[size]:hover, .bg-secondary-400.text-auto select.form-control[multiple]:hover, .bg-secondary-400.text-auto select.form-control[size]:hover, .bg-secondary-A100.text-auto select.form-control[multiple]:hover, .bg-secondary-A100.text-auto select.form-control[size]:hover, .bg-success-50.text-auto select.form-control[multiple]:hover, .bg-success-50.text-auto select.form-control[size]:hover, .bg-success-100.text-auto select.form-control[multiple]:hover, .bg-success-100.text-auto select.form-control[size]:hover, .bg-success-200.text-auto select.form-control[multiple]:hover, .bg-success-200.text-auto select.form-control[size]:hover, .bg-success-300.text-auto select.form-control[multiple]:hover, .bg-success-300.text-auto select.form-control[size]:hover, .bg-success-400.text-auto select.form-control[multiple]:hover, .bg-success-400.text-auto select.form-control[size]:hover, .bg-success-500.text-auto select.form-control[multiple]:hover, .bg-success-500.text-auto select.form-control[size]:hover, .bg-success.text-auto select.form-control[multiple]:hover, .bg-success.text-auto select.form-control[size]:hover, .bg-success-A100.text-auto select.form-control[multiple]:hover, .bg-success-A100.text-auto select.form-control[size]:hover, .bg-success-A200.text-auto select.form-control[multiple]:hover, .bg-success-A200.text-auto select.form-control[size]:hover, .bg-success-A400.text-auto select.form-control[multiple]:hover, .bg-success-A400.text-auto select.form-control[size]:hover, .bg-success-A700.text-auto select.form-control[multiple]:hover, .bg-success-A700.text-auto select.form-control[size]:hover, .bg-info-50.text-auto select.form-control[multiple]:hover, .bg-info-50.text-auto select.form-control[size]:hover, .bg-info-100.text-auto select.form-control[multiple]:hover, .bg-info-100.text-auto select.form-control[size]:hover, .bg-info-200.text-auto select.form-control[multiple]:hover, .bg-info-200.text-auto select.form-control[size]:hover, .bg-info-300.text-auto select.form-control[multiple]:hover, .bg-info-300.text-auto select.form-control[size]:hover, .bg-info-400.text-auto select.form-control[multiple]:hover, .bg-info-400.text-auto select.form-control[size]:hover, .bg-info-A100.text-auto select.form-control[multiple]:hover, .bg-info-A100.text-auto select.form-control[size]:hover, .bg-info-A200.text-auto select.form-control[multiple]:hover, .bg-info-A200.text-auto select.form-control[size]:hover, .bg-info-A400.text-auto select.form-control[multiple]:hover, .bg-info-A400.text-auto select.form-control[size]:hover, .bg-info-A700.text-auto select.form-control[multiple]:hover, .bg-info-A700.text-auto select.form-control[size]:hover, .bg-warning-50.text-auto select.form-control[multiple]:hover, .bg-warning-50.text-auto select.form-control[size]:hover, .bg-warning-100.text-auto select.form-control[multiple]:hover, .bg-warning-100.text-auto select.form-control[size]:hover, .bg-warning-200.text-auto select.form-control[multiple]:hover, .bg-warning-200.text-auto select.form-control[size]:hover, .bg-warning-300.text-auto select.form-control[multiple]:hover, .bg-warning-300.text-auto select.form-control[size]:hover, .bg-warning-400.text-auto select.form-control[multiple]:hover, .bg-warning-400.text-auto select.form-control[size]:hover, .bg-warning-500.text-auto select.form-control[multiple]:hover, .bg-warning-500.text-auto select.form-control[size]:hover, .bg-warning.text-auto select.form-control[multiple]:hover, .bg-warning.text-auto select.form-control[size]:hover, .bg-warning-600.text-auto select.form-control[multiple]:hover, .bg-warning-600.text-auto select.form-control[size]:hover, .bg-warning-700.text-auto select.form-control[multiple]:hover, .bg-warning-700.text-auto select.form-control[size]:hover, .bg-warning-800.text-auto select.form-control[multiple]:hover, .bg-warning-800.text-auto select.form-control[size]:hover, .bg-warning-A100.text-auto select.form-control[multiple]:hover, .bg-warning-A100.text-auto select.form-control[size]:hover, .bg-warning-A200.text-auto select.form-control[multiple]:hover, .bg-warning-A200.text-auto select.form-control[size]:hover, .bg-warning-A400.text-auto select.form-control[multiple]:hover, .bg-warning-A400.text-auto select.form-control[size]:hover, .bg-warning-A700.text-auto select.form-control[multiple]:hover, .bg-warning-A700.text-auto select.form-control[size]:hover, .bg-danger-50.text-auto select.form-control[multiple]:hover, .bg-danger-50.text-auto select.form-control[size]:hover, .bg-danger-100.text-auto select.form-control[multiple]:hover, .bg-danger-100.text-auto select.form-control[size]:hover, .bg-danger-200.text-auto select.form-control[multiple]:hover, .bg-danger-200.text-auto select.form-control[size]:hover, .bg-danger-300.text-auto select.form-control[multiple]:hover, .bg-danger-300.text-auto select.form-control[size]:hover, .bg-danger-A100.text-auto select.form-control[multiple]:hover, .bg-danger-A100.text-auto select.form-control[size]:hover, .bg-light-500.text-auto select.form-control[multiple]:hover, .bg-light-500.text-auto select.form-control[size]:hover, .bg-light.text-auto select.form-control[multiple]:hover, .bg-light.text-auto select.form-control[size]:hover, .bg-red-50.text-auto select.form-control[multiple]:hover, .bg-red-50.text-auto select.form-control[size]:hover, .bg-red-100.text-auto select.form-control[multiple]:hover, .bg-red-100.text-auto select.form-control[size]:hover, .bg-red-200.text-auto select.form-control[multiple]:hover, .bg-red-200.text-auto select.form-control[size]:hover, .bg-red-300.text-auto select.form-control[multiple]:hover, .bg-red-300.text-auto select.form-control[size]:hover, .bg-red-A100.text-auto select.form-control[multiple]:hover, .bg-red-A100.text-auto select.form-control[size]:hover, .bg-blue-50.text-auto select.form-control[multiple]:hover, .bg-blue-50.text-auto select.form-control[size]:hover, .bg-blue-100.text-auto select.form-control[multiple]:hover, .bg-blue-100.text-auto select.form-control[size]:hover, .bg-blue-200.text-auto select.form-control[multiple]:hover, .bg-blue-200.text-auto select.form-control[size]:hover, .bg-blue-300.text-auto select.form-control[multiple]:hover, .bg-blue-300.text-auto select.form-control[size]:hover, .bg-blue-400.text-auto select.form-control[multiple]:hover, .bg-blue-400.text-auto select.form-control[size]:hover, .bg-blue-A100.text-auto select.form-control[multiple]:hover, .bg-blue-A100.text-auto select.form-control[size]:hover, .bg-teal-50.text-auto select.form-control[multiple]:hover, .bg-teal-50.text-auto select.form-control[size]:hover, .bg-teal-100.text-auto select.form-control[multiple]:hover, .bg-teal-100.text-auto select.form-control[size]:hover, .bg-teal-200.text-auto select.form-control[multiple]:hover, .bg-teal-200.text-auto select.form-control[size]:hover, .bg-teal-300.text-auto select.form-control[multiple]:hover, .bg-teal-300.text-auto select.form-control[size]:hover, .bg-teal-400.text-auto select.form-control[multiple]:hover, .bg-teal-400.text-auto select.form-control[size]:hover, .bg-teal-A100.text-auto select.form-control[multiple]:hover, .bg-teal-A100.text-auto select.form-control[size]:hover, .bg-teal-A200.text-auto select.form-control[multiple]:hover, .bg-teal-A200.text-auto select.form-control[size]:hover, .bg-teal-A400.text-auto select.form-control[multiple]:hover, .bg-teal-A400.text-auto select.form-control[size]:hover, .bg-teal-A700.text-auto select.form-control[multiple]:hover, .bg-teal-A700.text-auto select.form-control[size]:hover, .bg-green-50.text-auto select.form-control[multiple]:hover, .bg-green-50.text-auto select.form-control[size]:hover, .bg-green-100.text-auto select.form-control[multiple]:hover, .bg-green-100.text-auto select.form-control[size]:hover, .bg-green-200.text-auto select.form-control[multiple]:hover, .bg-green-200.text-auto select.form-control[size]:hover, .bg-green-300.text-auto select.form-control[multiple]:hover, .bg-green-300.text-auto select.form-control[size]:hover, .bg-green-400.text-auto select.form-control[multiple]:hover, .bg-green-400.text-auto select.form-control[size]:hover, .bg-green-500.text-auto select.form-control[multiple]:hover, .bg-green-500.text-auto select.form-control[size]:hover, .bg-green.text-auto select.form-control[multiple]:hover, .bg-green.text-auto select.form-control[size]:hover, .bg-green-A100.text-auto select.form-control[multiple]:hover, .bg-green-A100.text-auto select.form-control[size]:hover, .bg-green-A200.text-auto select.form-control[multiple]:hover, .bg-green-A200.text-auto select.form-control[size]:hover, .bg-green-A400.text-auto select.form-control[multiple]:hover, .bg-green-A400.text-auto select.form-control[size]:hover, .bg-green-A700.text-auto select.form-control[multiple]:hover, .bg-green-A700.text-auto select.form-control[size]:hover, .bg-orange-50.text-auto select.form-control[multiple]:hover, .bg-orange-50.text-auto select.form-control[size]:hover, .bg-orange-100.text-auto select.form-control[multiple]:hover, .bg-orange-100.text-auto select.form-control[size]:hover, .bg-orange-200.text-auto select.form-control[multiple]:hover, .bg-orange-200.text-auto select.form-control[size]:hover, .bg-orange-300.text-auto select.form-control[multiple]:hover, .bg-orange-300.text-auto select.form-control[size]:hover, .bg-orange-400.text-auto select.form-control[multiple]:hover, .bg-orange-400.text-auto select.form-control[size]:hover, .bg-orange-500.text-auto select.form-control[multiple]:hover, .bg-orange-500.text-auto select.form-control[size]:hover, .bg-orange.text-auto select.form-control[multiple]:hover, .bg-orange.text-auto select.form-control[size]:hover, .bg-orange-600.text-auto select.form-control[multiple]:hover, .bg-orange-600.text-auto select.form-control[size]:hover, .bg-orange-700.text-auto select.form-control[multiple]:hover, .bg-orange-700.text-auto select.form-control[size]:hover, .bg-orange-800.text-auto select.form-control[multiple]:hover, .bg-orange-800.text-auto select.form-control[size]:hover, .bg-orange-A100.text-auto select.form-control[multiple]:hover, .bg-orange-A100.text-auto select.form-control[size]:hover, .bg-orange-A200.text-auto select.form-control[multiple]:hover, .bg-orange-A200.text-auto select.form-control[size]:hover, .bg-orange-A400.text-auto select.form-control[multiple]:hover, .bg-orange-A400.text-auto select.form-control[size]:hover, .bg-orange-A700.text-auto select.form-control[multiple]:hover, .bg-orange-A700.text-auto select.form-control[size]:hover, .bg-grey-50.text-auto select.form-control[multiple]:hover, .bg-grey-50.text-auto select.form-control[size]:hover, .bg-grey-100.text-auto select.form-control[multiple]:hover, .bg-grey-100.text-auto select.form-control[size]:hover, .bg-grey-200.text-auto select.form-control[multiple]:hover, .bg-grey-200.text-auto select.form-control[size]:hover, .bg-grey-300.text-auto select.form-control[multiple]:hover, .bg-grey-300.text-auto select.form-control[size]:hover, .bg-grey-400.text-auto select.form-control[multiple]:hover, .bg-grey-400.text-auto select.form-control[size]:hover, .bg-grey-500.text-auto select.form-control[multiple]:hover, .bg-grey-500.text-auto select.form-control[size]:hover, .bg-grey.text-auto select.form-control[multiple]:hover, .bg-grey.text-auto select.form-control[size]:hover, .bg-grey-A100.text-auto select.form-control[multiple]:hover, .bg-grey-A100.text-auto select.form-control[size]:hover, .bg-grey-A200.text-auto select.form-control[multiple]:hover, .bg-grey-A200.text-auto select.form-control[size]:hover, .bg-grey-A400.text-auto select.form-control[multiple]:hover, .bg-grey-A400.text-auto select.form-control[size]:hover, .bg-fuse-dark-50.text-auto select.form-control[multiple]:hover, .bg-fuse-dark-50.text-auto select.form-control[size]:hover, .bg-fuse-dark-100.text-auto select.form-control[multiple]:hover, .bg-fuse-dark-100.text-auto select.form-control[size]:hover, .bg-fuse-dark-200.text-auto select.form-control[multiple]:hover, .bg-fuse-dark-200.text-auto select.form-control[size]:hover, .bg-fuse-dark-A100.text-auto select.form-control[multiple]:hover, .bg-fuse-dark-A100.text-auto select.form-control[size]:hover, .bg-fuse-dark-A200.text-auto select.form-control[multiple]:hover, .bg-fuse-dark-A200.text-auto select.form-control[size]:hover, .bg-white-500.text-auto select.form-control[multiple]:hover, .bg-white-500.text-auto select.form-control[size]:hover, .bg-white.text-auto select.form-control[multiple]:hover, .bg-white.text-auto select.form-control[size]:hover {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
}
.dark-fg select.form-control[multiple]:focus, .dark-fg select.form-control[multiple]:focus:hover, .dark-fg select.form-control[size]:focus, .dark-fg select.form-control[size]:focus:hover, .dark-fg.text-auto select.form-control[multiple]:focus, .dark-fg.text-auto select.form-control[multiple]:focus:hover, .dark-fg.text-auto select.form-control[size]:focus, .dark-fg.text-auto select.form-control[size]:focus:hover, .bg-primary-50.text-auto select.form-control[multiple]:focus, .bg-primary-50.text-auto select.form-control[multiple]:focus:hover, .bg-primary-50.text-auto select.form-control[size]:focus, .bg-primary-50.text-auto select.form-control[size]:focus:hover, .bg-primary-100.text-auto select.form-control[multiple]:focus, .bg-primary-100.text-auto select.form-control[multiple]:focus:hover, .bg-primary-100.text-auto select.form-control[size]:focus, .bg-primary-100.text-auto select.form-control[size]:focus:hover, .bg-primary-200.text-auto select.form-control[multiple]:focus, .bg-primary-200.text-auto select.form-control[multiple]:focus:hover, .bg-primary-200.text-auto select.form-control[size]:focus, .bg-primary-200.text-auto select.form-control[size]:focus:hover, .bg-primary-A100.text-auto select.form-control[multiple]:focus, .bg-primary-A100.text-auto select.form-control[multiple]:focus:hover, .bg-primary-A100.text-auto select.form-control[size]:focus, .bg-primary-A100.text-auto select.form-control[size]:focus:hover, .bg-primary-A200.text-auto select.form-control[multiple]:focus, .bg-primary-A200.text-auto select.form-control[multiple]:focus:hover, .bg-primary-A200.text-auto select.form-control[size]:focus, .bg-primary-A200.text-auto select.form-control[size]:focus:hover, .bg-secondary-50.text-auto select.form-control[multiple]:focus, .bg-secondary-50.text-auto select.form-control[multiple]:focus:hover, .bg-secondary-50.text-auto select.form-control[size]:focus, .bg-secondary-50.text-auto select.form-control[size]:focus:hover, .bg-secondary-100.text-auto select.form-control[multiple]:focus, .bg-secondary-100.text-auto select.form-control[multiple]:focus:hover, .bg-secondary-100.text-auto select.form-control[size]:focus, .bg-secondary-100.text-auto select.form-control[size]:focus:hover, .bg-secondary-200.text-auto select.form-control[multiple]:focus, .bg-secondary-200.text-auto select.form-control[multiple]:focus:hover, .bg-secondary-200.text-auto select.form-control[size]:focus, .bg-secondary-200.text-auto select.form-control[size]:focus:hover, .bg-secondary-300.text-auto select.form-control[multiple]:focus, .bg-secondary-300.text-auto select.form-control[multiple]:focus:hover, .bg-secondary-300.text-auto select.form-control[size]:focus, .bg-secondary-300.text-auto select.form-control[size]:focus:hover, .bg-secondary-400.text-auto select.form-control[multiple]:focus, .bg-secondary-400.text-auto select.form-control[multiple]:focus:hover, .bg-secondary-400.text-auto select.form-control[size]:focus, .bg-secondary-400.text-auto select.form-control[size]:focus:hover, .bg-secondary-A100.text-auto select.form-control[multiple]:focus, .bg-secondary-A100.text-auto select.form-control[multiple]:focus:hover, .bg-secondary-A100.text-auto select.form-control[size]:focus, .bg-secondary-A100.text-auto select.form-control[size]:focus:hover, .bg-success-50.text-auto select.form-control[multiple]:focus, .bg-success-50.text-auto select.form-control[multiple]:focus:hover, .bg-success-50.text-auto select.form-control[size]:focus, .bg-success-50.text-auto select.form-control[size]:focus:hover, .bg-success-100.text-auto select.form-control[multiple]:focus, .bg-success-100.text-auto select.form-control[multiple]:focus:hover, .bg-success-100.text-auto select.form-control[size]:focus, .bg-success-100.text-auto select.form-control[size]:focus:hover, .bg-success-200.text-auto select.form-control[multiple]:focus, .bg-success-200.text-auto select.form-control[multiple]:focus:hover, .bg-success-200.text-auto select.form-control[size]:focus, .bg-success-200.text-auto select.form-control[size]:focus:hover, .bg-success-300.text-auto select.form-control[multiple]:focus, .bg-success-300.text-auto select.form-control[multiple]:focus:hover, .bg-success-300.text-auto select.form-control[size]:focus, .bg-success-300.text-auto select.form-control[size]:focus:hover, .bg-success-400.text-auto select.form-control[multiple]:focus, .bg-success-400.text-auto select.form-control[multiple]:focus:hover, .bg-success-400.text-auto select.form-control[size]:focus, .bg-success-400.text-auto select.form-control[size]:focus:hover, .bg-success-500.text-auto select.form-control[multiple]:focus, .bg-success-500.text-auto select.form-control[multiple]:focus:hover, .bg-success-500.text-auto select.form-control[size]:focus, .bg-success-500.text-auto select.form-control[size]:focus:hover, .bg-success.text-auto select.form-control[multiple]:focus, .bg-success.text-auto select.form-control[multiple]:focus:hover, .bg-success.text-auto select.form-control[size]:focus, .bg-success.text-auto select.form-control[size]:focus:hover, .bg-success-A100.text-auto select.form-control[multiple]:focus, .bg-success-A100.text-auto select.form-control[multiple]:focus:hover, .bg-success-A100.text-auto select.form-control[size]:focus, .bg-success-A100.text-auto select.form-control[size]:focus:hover, .bg-success-A200.text-auto select.form-control[multiple]:focus, .bg-success-A200.text-auto select.form-control[multiple]:focus:hover, .bg-success-A200.text-auto select.form-control[size]:focus, .bg-success-A200.text-auto select.form-control[size]:focus:hover, .bg-success-A400.text-auto select.form-control[multiple]:focus, .bg-success-A400.text-auto select.form-control[multiple]:focus:hover, .bg-success-A400.text-auto select.form-control[size]:focus, .bg-success-A400.text-auto select.form-control[size]:focus:hover, .bg-success-A700.text-auto select.form-control[multiple]:focus, .bg-success-A700.text-auto select.form-control[multiple]:focus:hover, .bg-success-A700.text-auto select.form-control[size]:focus, .bg-success-A700.text-auto select.form-control[size]:focus:hover, .bg-info-50.text-auto select.form-control[multiple]:focus, .bg-info-50.text-auto select.form-control[multiple]:focus:hover, .bg-info-50.text-auto select.form-control[size]:focus, .bg-info-50.text-auto select.form-control[size]:focus:hover, .bg-info-100.text-auto select.form-control[multiple]:focus, .bg-info-100.text-auto select.form-control[multiple]:focus:hover, .bg-info-100.text-auto select.form-control[size]:focus, .bg-info-100.text-auto select.form-control[size]:focus:hover, .bg-info-200.text-auto select.form-control[multiple]:focus, .bg-info-200.text-auto select.form-control[multiple]:focus:hover, .bg-info-200.text-auto select.form-control[size]:focus, .bg-info-200.text-auto select.form-control[size]:focus:hover, .bg-info-300.text-auto select.form-control[multiple]:focus, .bg-info-300.text-auto select.form-control[multiple]:focus:hover, .bg-info-300.text-auto select.form-control[size]:focus, .bg-info-300.text-auto select.form-control[size]:focus:hover, .bg-info-400.text-auto select.form-control[multiple]:focus, .bg-info-400.text-auto select.form-control[multiple]:focus:hover, .bg-info-400.text-auto select.form-control[size]:focus, .bg-info-400.text-auto select.form-control[size]:focus:hover, .bg-info-A100.text-auto select.form-control[multiple]:focus, .bg-info-A100.text-auto select.form-control[multiple]:focus:hover, .bg-info-A100.text-auto select.form-control[size]:focus, .bg-info-A100.text-auto select.form-control[size]:focus:hover, .bg-info-A200.text-auto select.form-control[multiple]:focus, .bg-info-A200.text-auto select.form-control[multiple]:focus:hover, .bg-info-A200.text-auto select.form-control[size]:focus, .bg-info-A200.text-auto select.form-control[size]:focus:hover, .bg-info-A400.text-auto select.form-control[multiple]:focus, .bg-info-A400.text-auto select.form-control[multiple]:focus:hover, .bg-info-A400.text-auto select.form-control[size]:focus, .bg-info-A400.text-auto select.form-control[size]:focus:hover, .bg-info-A700.text-auto select.form-control[multiple]:focus, .bg-info-A700.text-auto select.form-control[multiple]:focus:hover, .bg-info-A700.text-auto select.form-control[size]:focus, .bg-info-A700.text-auto select.form-control[size]:focus:hover, .bg-warning-50.text-auto select.form-control[multiple]:focus, .bg-warning-50.text-auto select.form-control[multiple]:focus:hover, .bg-warning-50.text-auto select.form-control[size]:focus, .bg-warning-50.text-auto select.form-control[size]:focus:hover, .bg-warning-100.text-auto select.form-control[multiple]:focus, .bg-warning-100.text-auto select.form-control[multiple]:focus:hover, .bg-warning-100.text-auto select.form-control[size]:focus, .bg-warning-100.text-auto select.form-control[size]:focus:hover, .bg-warning-200.text-auto select.form-control[multiple]:focus, .bg-warning-200.text-auto select.form-control[multiple]:focus:hover, .bg-warning-200.text-auto select.form-control[size]:focus, .bg-warning-200.text-auto select.form-control[size]:focus:hover, .bg-warning-300.text-auto select.form-control[multiple]:focus, .bg-warning-300.text-auto select.form-control[multiple]:focus:hover, .bg-warning-300.text-auto select.form-control[size]:focus, .bg-warning-300.text-auto select.form-control[size]:focus:hover, .bg-warning-400.text-auto select.form-control[multiple]:focus, .bg-warning-400.text-auto select.form-control[multiple]:focus:hover, .bg-warning-400.text-auto select.form-control[size]:focus, .bg-warning-400.text-auto select.form-control[size]:focus:hover, .bg-warning-500.text-auto select.form-control[multiple]:focus, .bg-warning-500.text-auto select.form-control[multiple]:focus:hover, .bg-warning-500.text-auto select.form-control[size]:focus, .bg-warning-500.text-auto select.form-control[size]:focus:hover, .bg-warning.text-auto select.form-control[multiple]:focus, .bg-warning.text-auto select.form-control[multiple]:focus:hover, .bg-warning.text-auto select.form-control[size]:focus, .bg-warning.text-auto select.form-control[size]:focus:hover, .bg-warning-600.text-auto select.form-control[multiple]:focus, .bg-warning-600.text-auto select.form-control[multiple]:focus:hover, .bg-warning-600.text-auto select.form-control[size]:focus, .bg-warning-600.text-auto select.form-control[size]:focus:hover, .bg-warning-700.text-auto select.form-control[multiple]:focus, .bg-warning-700.text-auto select.form-control[multiple]:focus:hover, .bg-warning-700.text-auto select.form-control[size]:focus, .bg-warning-700.text-auto select.form-control[size]:focus:hover, .bg-warning-800.text-auto select.form-control[multiple]:focus, .bg-warning-800.text-auto select.form-control[multiple]:focus:hover, .bg-warning-800.text-auto select.form-control[size]:focus, .bg-warning-800.text-auto select.form-control[size]:focus:hover, .bg-warning-A100.text-auto select.form-control[multiple]:focus, .bg-warning-A100.text-auto select.form-control[multiple]:focus:hover, .bg-warning-A100.text-auto select.form-control[size]:focus, .bg-warning-A100.text-auto select.form-control[size]:focus:hover, .bg-warning-A200.text-auto select.form-control[multiple]:focus, .bg-warning-A200.text-auto select.form-control[multiple]:focus:hover, .bg-warning-A200.text-auto select.form-control[size]:focus, .bg-warning-A200.text-auto select.form-control[size]:focus:hover, .bg-warning-A400.text-auto select.form-control[multiple]:focus, .bg-warning-A400.text-auto select.form-control[multiple]:focus:hover, .bg-warning-A400.text-auto select.form-control[size]:focus, .bg-warning-A400.text-auto select.form-control[size]:focus:hover, .bg-warning-A700.text-auto select.form-control[multiple]:focus, .bg-warning-A700.text-auto select.form-control[multiple]:focus:hover, .bg-warning-A700.text-auto select.form-control[size]:focus, .bg-warning-A700.text-auto select.form-control[size]:focus:hover, .bg-danger-50.text-auto select.form-control[multiple]:focus, .bg-danger-50.text-auto select.form-control[multiple]:focus:hover, .bg-danger-50.text-auto select.form-control[size]:focus, .bg-danger-50.text-auto select.form-control[size]:focus:hover, .bg-danger-100.text-auto select.form-control[multiple]:focus, .bg-danger-100.text-auto select.form-control[multiple]:focus:hover, .bg-danger-100.text-auto select.form-control[size]:focus, .bg-danger-100.text-auto select.form-control[size]:focus:hover, .bg-danger-200.text-auto select.form-control[multiple]:focus, .bg-danger-200.text-auto select.form-control[multiple]:focus:hover, .bg-danger-200.text-auto select.form-control[size]:focus, .bg-danger-200.text-auto select.form-control[size]:focus:hover, .bg-danger-300.text-auto select.form-control[multiple]:focus, .bg-danger-300.text-auto select.form-control[multiple]:focus:hover, .bg-danger-300.text-auto select.form-control[size]:focus, .bg-danger-300.text-auto select.form-control[size]:focus:hover, .bg-danger-A100.text-auto select.form-control[multiple]:focus, .bg-danger-A100.text-auto select.form-control[multiple]:focus:hover, .bg-danger-A100.text-auto select.form-control[size]:focus, .bg-danger-A100.text-auto select.form-control[size]:focus:hover, .bg-light-500.text-auto select.form-control[multiple]:focus, .bg-light-500.text-auto select.form-control[multiple]:focus:hover, .bg-light-500.text-auto select.form-control[size]:focus, .bg-light-500.text-auto select.form-control[size]:focus:hover, .bg-light.text-auto select.form-control[multiple]:focus, .bg-light.text-auto select.form-control[multiple]:focus:hover, .bg-light.text-auto select.form-control[size]:focus, .bg-light.text-auto select.form-control[size]:focus:hover, .bg-red-50.text-auto select.form-control[multiple]:focus, .bg-red-50.text-auto select.form-control[multiple]:focus:hover, .bg-red-50.text-auto select.form-control[size]:focus, .bg-red-50.text-auto select.form-control[size]:focus:hover, .bg-red-100.text-auto select.form-control[multiple]:focus, .bg-red-100.text-auto select.form-control[multiple]:focus:hover, .bg-red-100.text-auto select.form-control[size]:focus, .bg-red-100.text-auto select.form-control[size]:focus:hover, .bg-red-200.text-auto select.form-control[multiple]:focus, .bg-red-200.text-auto select.form-control[multiple]:focus:hover, .bg-red-200.text-auto select.form-control[size]:focus, .bg-red-200.text-auto select.form-control[size]:focus:hover, .bg-red-300.text-auto select.form-control[multiple]:focus, .bg-red-300.text-auto select.form-control[multiple]:focus:hover, .bg-red-300.text-auto select.form-control[size]:focus, .bg-red-300.text-auto select.form-control[size]:focus:hover, .bg-red-A100.text-auto select.form-control[multiple]:focus, .bg-red-A100.text-auto select.form-control[multiple]:focus:hover, .bg-red-A100.text-auto select.form-control[size]:focus, .bg-red-A100.text-auto select.form-control[size]:focus:hover, .bg-blue-50.text-auto select.form-control[multiple]:focus, .bg-blue-50.text-auto select.form-control[multiple]:focus:hover, .bg-blue-50.text-auto select.form-control[size]:focus, .bg-blue-50.text-auto select.form-control[size]:focus:hover, .bg-blue-100.text-auto select.form-control[multiple]:focus, .bg-blue-100.text-auto select.form-control[multiple]:focus:hover, .bg-blue-100.text-auto select.form-control[size]:focus, .bg-blue-100.text-auto select.form-control[size]:focus:hover, .bg-blue-200.text-auto select.form-control[multiple]:focus, .bg-blue-200.text-auto select.form-control[multiple]:focus:hover, .bg-blue-200.text-auto select.form-control[size]:focus, .bg-blue-200.text-auto select.form-control[size]:focus:hover, .bg-blue-300.text-auto select.form-control[multiple]:focus, .bg-blue-300.text-auto select.form-control[multiple]:focus:hover, .bg-blue-300.text-auto select.form-control[size]:focus, .bg-blue-300.text-auto select.form-control[size]:focus:hover, .bg-blue-400.text-auto select.form-control[multiple]:focus, .bg-blue-400.text-auto select.form-control[multiple]:focus:hover, .bg-blue-400.text-auto select.form-control[size]:focus, .bg-blue-400.text-auto select.form-control[size]:focus:hover, .bg-blue-A100.text-auto select.form-control[multiple]:focus, .bg-blue-A100.text-auto select.form-control[multiple]:focus:hover, .bg-blue-A100.text-auto select.form-control[size]:focus, .bg-blue-A100.text-auto select.form-control[size]:focus:hover, .bg-teal-50.text-auto select.form-control[multiple]:focus, .bg-teal-50.text-auto select.form-control[multiple]:focus:hover, .bg-teal-50.text-auto select.form-control[size]:focus, .bg-teal-50.text-auto select.form-control[size]:focus:hover, .bg-teal-100.text-auto select.form-control[multiple]:focus, .bg-teal-100.text-auto select.form-control[multiple]:focus:hover, .bg-teal-100.text-auto select.form-control[size]:focus, .bg-teal-100.text-auto select.form-control[size]:focus:hover, .bg-teal-200.text-auto select.form-control[multiple]:focus, .bg-teal-200.text-auto select.form-control[multiple]:focus:hover, .bg-teal-200.text-auto select.form-control[size]:focus, .bg-teal-200.text-auto select.form-control[size]:focus:hover, .bg-teal-300.text-auto select.form-control[multiple]:focus, .bg-teal-300.text-auto select.form-control[multiple]:focus:hover, .bg-teal-300.text-auto select.form-control[size]:focus, .bg-teal-300.text-auto select.form-control[size]:focus:hover, .bg-teal-400.text-auto select.form-control[multiple]:focus, .bg-teal-400.text-auto select.form-control[multiple]:focus:hover, .bg-teal-400.text-auto select.form-control[size]:focus, .bg-teal-400.text-auto select.form-control[size]:focus:hover, .bg-teal-A100.text-auto select.form-control[multiple]:focus, .bg-teal-A100.text-auto select.form-control[multiple]:focus:hover, .bg-teal-A100.text-auto select.form-control[size]:focus, .bg-teal-A100.text-auto select.form-control[size]:focus:hover, .bg-teal-A200.text-auto select.form-control[multiple]:focus, .bg-teal-A200.text-auto select.form-control[multiple]:focus:hover, .bg-teal-A200.text-auto select.form-control[size]:focus, .bg-teal-A200.text-auto select.form-control[size]:focus:hover, .bg-teal-A400.text-auto select.form-control[multiple]:focus, .bg-teal-A400.text-auto select.form-control[multiple]:focus:hover, .bg-teal-A400.text-auto select.form-control[size]:focus, .bg-teal-A400.text-auto select.form-control[size]:focus:hover, .bg-teal-A700.text-auto select.form-control[multiple]:focus, .bg-teal-A700.text-auto select.form-control[multiple]:focus:hover, .bg-teal-A700.text-auto select.form-control[size]:focus, .bg-teal-A700.text-auto select.form-control[size]:focus:hover, .bg-green-50.text-auto select.form-control[multiple]:focus, .bg-green-50.text-auto select.form-control[multiple]:focus:hover, .bg-green-50.text-auto select.form-control[size]:focus, .bg-green-50.text-auto select.form-control[size]:focus:hover, .bg-green-100.text-auto select.form-control[multiple]:focus, .bg-green-100.text-auto select.form-control[multiple]:focus:hover, .bg-green-100.text-auto select.form-control[size]:focus, .bg-green-100.text-auto select.form-control[size]:focus:hover, .bg-green-200.text-auto select.form-control[multiple]:focus, .bg-green-200.text-auto select.form-control[multiple]:focus:hover, .bg-green-200.text-auto select.form-control[size]:focus, .bg-green-200.text-auto select.form-control[size]:focus:hover, .bg-green-300.text-auto select.form-control[multiple]:focus, .bg-green-300.text-auto select.form-control[multiple]:focus:hover, .bg-green-300.text-auto select.form-control[size]:focus, .bg-green-300.text-auto select.form-control[size]:focus:hover, .bg-green-400.text-auto select.form-control[multiple]:focus, .bg-green-400.text-auto select.form-control[multiple]:focus:hover, .bg-green-400.text-auto select.form-control[size]:focus, .bg-green-400.text-auto select.form-control[size]:focus:hover, .bg-green-500.text-auto select.form-control[multiple]:focus, .bg-green-500.text-auto select.form-control[multiple]:focus:hover, .bg-green-500.text-auto select.form-control[size]:focus, .bg-green-500.text-auto select.form-control[size]:focus:hover, .bg-green.text-auto select.form-control[multiple]:focus, .bg-green.text-auto select.form-control[multiple]:focus:hover, .bg-green.text-auto select.form-control[size]:focus, .bg-green.text-auto select.form-control[size]:focus:hover, .bg-green-A100.text-auto select.form-control[multiple]:focus, .bg-green-A100.text-auto select.form-control[multiple]:focus:hover, .bg-green-A100.text-auto select.form-control[size]:focus, .bg-green-A100.text-auto select.form-control[size]:focus:hover, .bg-green-A200.text-auto select.form-control[multiple]:focus, .bg-green-A200.text-auto select.form-control[multiple]:focus:hover, .bg-green-A200.text-auto select.form-control[size]:focus, .bg-green-A200.text-auto select.form-control[size]:focus:hover, .bg-green-A400.text-auto select.form-control[multiple]:focus, .bg-green-A400.text-auto select.form-control[multiple]:focus:hover, .bg-green-A400.text-auto select.form-control[size]:focus, .bg-green-A400.text-auto select.form-control[size]:focus:hover, .bg-green-A700.text-auto select.form-control[multiple]:focus, .bg-green-A700.text-auto select.form-control[multiple]:focus:hover, .bg-green-A700.text-auto select.form-control[size]:focus, .bg-green-A700.text-auto select.form-control[size]:focus:hover, .bg-orange-50.text-auto select.form-control[multiple]:focus, .bg-orange-50.text-auto select.form-control[multiple]:focus:hover, .bg-orange-50.text-auto select.form-control[size]:focus, .bg-orange-50.text-auto select.form-control[size]:focus:hover, .bg-orange-100.text-auto select.form-control[multiple]:focus, .bg-orange-100.text-auto select.form-control[multiple]:focus:hover, .bg-orange-100.text-auto select.form-control[size]:focus, .bg-orange-100.text-auto select.form-control[size]:focus:hover, .bg-orange-200.text-auto select.form-control[multiple]:focus, .bg-orange-200.text-auto select.form-control[multiple]:focus:hover, .bg-orange-200.text-auto select.form-control[size]:focus, .bg-orange-200.text-auto select.form-control[size]:focus:hover, .bg-orange-300.text-auto select.form-control[multiple]:focus, .bg-orange-300.text-auto select.form-control[multiple]:focus:hover, .bg-orange-300.text-auto select.form-control[size]:focus, .bg-orange-300.text-auto select.form-control[size]:focus:hover, .bg-orange-400.text-auto select.form-control[multiple]:focus, .bg-orange-400.text-auto select.form-control[multiple]:focus:hover, .bg-orange-400.text-auto select.form-control[size]:focus, .bg-orange-400.text-auto select.form-control[size]:focus:hover, .bg-orange-500.text-auto select.form-control[multiple]:focus, .bg-orange-500.text-auto select.form-control[multiple]:focus:hover, .bg-orange-500.text-auto select.form-control[size]:focus, .bg-orange-500.text-auto select.form-control[size]:focus:hover, .bg-orange.text-auto select.form-control[multiple]:focus, .bg-orange.text-auto select.form-control[multiple]:focus:hover, .bg-orange.text-auto select.form-control[size]:focus, .bg-orange.text-auto select.form-control[size]:focus:hover, .bg-orange-600.text-auto select.form-control[multiple]:focus, .bg-orange-600.text-auto select.form-control[multiple]:focus:hover, .bg-orange-600.text-auto select.form-control[size]:focus, .bg-orange-600.text-auto select.form-control[size]:focus:hover, .bg-orange-700.text-auto select.form-control[multiple]:focus, .bg-orange-700.text-auto select.form-control[multiple]:focus:hover, .bg-orange-700.text-auto select.form-control[size]:focus, .bg-orange-700.text-auto select.form-control[size]:focus:hover, .bg-orange-800.text-auto select.form-control[multiple]:focus, .bg-orange-800.text-auto select.form-control[multiple]:focus:hover, .bg-orange-800.text-auto select.form-control[size]:focus, .bg-orange-800.text-auto select.form-control[size]:focus:hover, .bg-orange-A100.text-auto select.form-control[multiple]:focus, .bg-orange-A100.text-auto select.form-control[multiple]:focus:hover, .bg-orange-A100.text-auto select.form-control[size]:focus, .bg-orange-A100.text-auto select.form-control[size]:focus:hover, .bg-orange-A200.text-auto select.form-control[multiple]:focus, .bg-orange-A200.text-auto select.form-control[multiple]:focus:hover, .bg-orange-A200.text-auto select.form-control[size]:focus, .bg-orange-A200.text-auto select.form-control[size]:focus:hover, .bg-orange-A400.text-auto select.form-control[multiple]:focus, .bg-orange-A400.text-auto select.form-control[multiple]:focus:hover, .bg-orange-A400.text-auto select.form-control[size]:focus, .bg-orange-A400.text-auto select.form-control[size]:focus:hover, .bg-orange-A700.text-auto select.form-control[multiple]:focus, .bg-orange-A700.text-auto select.form-control[multiple]:focus:hover, .bg-orange-A700.text-auto select.form-control[size]:focus, .bg-orange-A700.text-auto select.form-control[size]:focus:hover, .bg-grey-50.text-auto select.form-control[multiple]:focus, .bg-grey-50.text-auto select.form-control[multiple]:focus:hover, .bg-grey-50.text-auto select.form-control[size]:focus, .bg-grey-50.text-auto select.form-control[size]:focus:hover, .bg-grey-100.text-auto select.form-control[multiple]:focus, .bg-grey-100.text-auto select.form-control[multiple]:focus:hover, .bg-grey-100.text-auto select.form-control[size]:focus, .bg-grey-100.text-auto select.form-control[size]:focus:hover, .bg-grey-200.text-auto select.form-control[multiple]:focus, .bg-grey-200.text-auto select.form-control[multiple]:focus:hover, .bg-grey-200.text-auto select.form-control[size]:focus, .bg-grey-200.text-auto select.form-control[size]:focus:hover, .bg-grey-300.text-auto select.form-control[multiple]:focus, .bg-grey-300.text-auto select.form-control[multiple]:focus:hover, .bg-grey-300.text-auto select.form-control[size]:focus, .bg-grey-300.text-auto select.form-control[size]:focus:hover, .bg-grey-400.text-auto select.form-control[multiple]:focus, .bg-grey-400.text-auto select.form-control[multiple]:focus:hover, .bg-grey-400.text-auto select.form-control[size]:focus, .bg-grey-400.text-auto select.form-control[size]:focus:hover, .bg-grey-500.text-auto select.form-control[multiple]:focus, .bg-grey-500.text-auto select.form-control[multiple]:focus:hover, .bg-grey-500.text-auto select.form-control[size]:focus, .bg-grey-500.text-auto select.form-control[size]:focus:hover, .bg-grey.text-auto select.form-control[multiple]:focus, .bg-grey.text-auto select.form-control[multiple]:focus:hover, .bg-grey.text-auto select.form-control[size]:focus, .bg-grey.text-auto select.form-control[size]:focus:hover, .bg-grey-A100.text-auto select.form-control[multiple]:focus, .bg-grey-A100.text-auto select.form-control[multiple]:focus:hover, .bg-grey-A100.text-auto select.form-control[size]:focus, .bg-grey-A100.text-auto select.form-control[size]:focus:hover, .bg-grey-A200.text-auto select.form-control[multiple]:focus, .bg-grey-A200.text-auto select.form-control[multiple]:focus:hover, .bg-grey-A200.text-auto select.form-control[size]:focus, .bg-grey-A200.text-auto select.form-control[size]:focus:hover, .bg-grey-A400.text-auto select.form-control[multiple]:focus, .bg-grey-A400.text-auto select.form-control[multiple]:focus:hover, .bg-grey-A400.text-auto select.form-control[size]:focus, .bg-grey-A400.text-auto select.form-control[size]:focus:hover, .bg-fuse-dark-50.text-auto select.form-control[multiple]:focus, .bg-fuse-dark-50.text-auto select.form-control[multiple]:focus:hover, .bg-fuse-dark-50.text-auto select.form-control[size]:focus, .bg-fuse-dark-50.text-auto select.form-control[size]:focus:hover, .bg-fuse-dark-100.text-auto select.form-control[multiple]:focus, .bg-fuse-dark-100.text-auto select.form-control[multiple]:focus:hover, .bg-fuse-dark-100.text-auto select.form-control[size]:focus, .bg-fuse-dark-100.text-auto select.form-control[size]:focus:hover, .bg-fuse-dark-200.text-auto select.form-control[multiple]:focus, .bg-fuse-dark-200.text-auto select.form-control[multiple]:focus:hover, .bg-fuse-dark-200.text-auto select.form-control[size]:focus, .bg-fuse-dark-200.text-auto select.form-control[size]:focus:hover, .bg-fuse-dark-A100.text-auto select.form-control[multiple]:focus, .bg-fuse-dark-A100.text-auto select.form-control[multiple]:focus:hover, .bg-fuse-dark-A100.text-auto select.form-control[size]:focus, .bg-fuse-dark-A100.text-auto select.form-control[size]:focus:hover, .bg-fuse-dark-A200.text-auto select.form-control[multiple]:focus, .bg-fuse-dark-A200.text-auto select.form-control[multiple]:focus:hover, .bg-fuse-dark-A200.text-auto select.form-control[size]:focus, .bg-fuse-dark-A200.text-auto select.form-control[size]:focus:hover, .bg-white-500.text-auto select.form-control[multiple]:focus, .bg-white-500.text-auto select.form-control[multiple]:focus:hover, .bg-white-500.text-auto select.form-control[size]:focus, .bg-white-500.text-auto select.form-control[size]:focus:hover, .bg-white.text-auto select.form-control[multiple]:focus, .bg-white.text-auto select.form-control[multiple]:focus:hover, .bg-white.text-auto select.form-control[size]:focus, .bg-white.text-auto select.form-control[size]:focus:hover {
  box-shadow: inset 0 0 0 2px #3C4252;
}
.dark-fg .form-group > label, .dark-fg.text-auto .form-group > label, .bg-primary-50.text-auto .form-group > label, .bg-primary-100.text-auto .form-group > label, .bg-primary-200.text-auto .form-group > label, .bg-primary-A100.text-auto .form-group > label, .bg-primary-A200.text-auto .form-group > label, .bg-secondary-50.text-auto .form-group > label, .bg-secondary-100.text-auto .form-group > label, .bg-secondary-200.text-auto .form-group > label, .bg-secondary-300.text-auto .form-group > label, .bg-secondary-400.text-auto .form-group > label, .bg-secondary-A100.text-auto .form-group > label, .bg-success-50.text-auto .form-group > label, .bg-success-100.text-auto .form-group > label, .bg-success-200.text-auto .form-group > label, .bg-success-300.text-auto .form-group > label, .bg-success-400.text-auto .form-group > label, .bg-success-500.text-auto .form-group > label, .bg-success.text-auto .form-group > label, .bg-success-A100.text-auto .form-group > label, .bg-success-A200.text-auto .form-group > label, .bg-success-A400.text-auto .form-group > label, .bg-success-A700.text-auto .form-group > label, .bg-info-50.text-auto .form-group > label, .bg-info-100.text-auto .form-group > label, .bg-info-200.text-auto .form-group > label, .bg-info-300.text-auto .form-group > label, .bg-info-400.text-auto .form-group > label, .bg-info-A100.text-auto .form-group > label, .bg-info-A200.text-auto .form-group > label, .bg-info-A400.text-auto .form-group > label, .bg-info-A700.text-auto .form-group > label, .bg-warning-50.text-auto .form-group > label, .bg-warning-100.text-auto .form-group > label, .bg-warning-200.text-auto .form-group > label, .bg-warning-300.text-auto .form-group > label, .bg-warning-400.text-auto .form-group > label, .bg-warning-500.text-auto .form-group > label, .bg-warning.text-auto .form-group > label, .bg-warning-600.text-auto .form-group > label, .bg-warning-700.text-auto .form-group > label, .bg-warning-800.text-auto .form-group > label, .bg-warning-A100.text-auto .form-group > label, .bg-warning-A200.text-auto .form-group > label, .bg-warning-A400.text-auto .form-group > label, .bg-warning-A700.text-auto .form-group > label, .bg-danger-50.text-auto .form-group > label, .bg-danger-100.text-auto .form-group > label, .bg-danger-200.text-auto .form-group > label, .bg-danger-300.text-auto .form-group > label, .bg-danger-A100.text-auto .form-group > label, .bg-light-500.text-auto .form-group > label, .bg-light.text-auto .form-group > label, .bg-red-50.text-auto .form-group > label, .bg-red-100.text-auto .form-group > label, .bg-red-200.text-auto .form-group > label, .bg-red-300.text-auto .form-group > label, .bg-red-A100.text-auto .form-group > label, .bg-blue-50.text-auto .form-group > label, .bg-blue-100.text-auto .form-group > label, .bg-blue-200.text-auto .form-group > label, .bg-blue-300.text-auto .form-group > label, .bg-blue-400.text-auto .form-group > label, .bg-blue-A100.text-auto .form-group > label, .bg-teal-50.text-auto .form-group > label, .bg-teal-100.text-auto .form-group > label, .bg-teal-200.text-auto .form-group > label, .bg-teal-300.text-auto .form-group > label, .bg-teal-400.text-auto .form-group > label, .bg-teal-A100.text-auto .form-group > label, .bg-teal-A200.text-auto .form-group > label, .bg-teal-A400.text-auto .form-group > label, .bg-teal-A700.text-auto .form-group > label, .bg-green-50.text-auto .form-group > label, .bg-green-100.text-auto .form-group > label, .bg-green-200.text-auto .form-group > label, .bg-green-300.text-auto .form-group > label, .bg-green-400.text-auto .form-group > label, .bg-green-500.text-auto .form-group > label, .bg-green.text-auto .form-group > label, .bg-green-A100.text-auto .form-group > label, .bg-green-A200.text-auto .form-group > label, .bg-green-A400.text-auto .form-group > label, .bg-green-A700.text-auto .form-group > label, .bg-orange-50.text-auto .form-group > label, .bg-orange-100.text-auto .form-group > label, .bg-orange-200.text-auto .form-group > label, .bg-orange-300.text-auto .form-group > label, .bg-orange-400.text-auto .form-group > label, .bg-orange-500.text-auto .form-group > label, .bg-orange.text-auto .form-group > label, .bg-orange-600.text-auto .form-group > label, .bg-orange-700.text-auto .form-group > label, .bg-orange-800.text-auto .form-group > label, .bg-orange-A100.text-auto .form-group > label, .bg-orange-A200.text-auto .form-group > label, .bg-orange-A400.text-auto .form-group > label, .bg-orange-A700.text-auto .form-group > label, .bg-grey-50.text-auto .form-group > label, .bg-grey-100.text-auto .form-group > label, .bg-grey-200.text-auto .form-group > label, .bg-grey-300.text-auto .form-group > label, .bg-grey-400.text-auto .form-group > label, .bg-grey-500.text-auto .form-group > label, .bg-grey.text-auto .form-group > label, .bg-grey-A100.text-auto .form-group > label, .bg-grey-A200.text-auto .form-group > label, .bg-grey-A400.text-auto .form-group > label, .bg-fuse-dark-50.text-auto .form-group > label, .bg-fuse-dark-100.text-auto .form-group > label, .bg-fuse-dark-200.text-auto .form-group > label, .bg-fuse-dark-A100.text-auto .form-group > label, .bg-fuse-dark-A200.text-auto .form-group > label, .bg-white-500.text-auto .form-group > label, .bg-white.text-auto .form-group > label {
  color: rgba(0, 0, 0, 0.54);
}
.dark-fg .nav .subheader, .dark-fg.text-auto .nav .subheader, .bg-primary-50.text-auto .nav .subheader, .bg-primary-100.text-auto .nav .subheader, .bg-primary-200.text-auto .nav .subheader, .bg-primary-A100.text-auto .nav .subheader, .bg-primary-A200.text-auto .nav .subheader, .bg-secondary-50.text-auto .nav .subheader, .bg-secondary-100.text-auto .nav .subheader, .bg-secondary-200.text-auto .nav .subheader, .bg-secondary-300.text-auto .nav .subheader, .bg-secondary-400.text-auto .nav .subheader, .bg-secondary-A100.text-auto .nav .subheader, .bg-success-50.text-auto .nav .subheader, .bg-success-100.text-auto .nav .subheader, .bg-success-200.text-auto .nav .subheader, .bg-success-300.text-auto .nav .subheader, .bg-success-400.text-auto .nav .subheader, .bg-success-500.text-auto .nav .subheader, .bg-success.text-auto .nav .subheader, .bg-success-A100.text-auto .nav .subheader, .bg-success-A200.text-auto .nav .subheader, .bg-success-A400.text-auto .nav .subheader, .bg-success-A700.text-auto .nav .subheader, .bg-info-50.text-auto .nav .subheader, .bg-info-100.text-auto .nav .subheader, .bg-info-200.text-auto .nav .subheader, .bg-info-300.text-auto .nav .subheader, .bg-info-400.text-auto .nav .subheader, .bg-info-A100.text-auto .nav .subheader, .bg-info-A200.text-auto .nav .subheader, .bg-info-A400.text-auto .nav .subheader, .bg-info-A700.text-auto .nav .subheader, .bg-warning-50.text-auto .nav .subheader, .bg-warning-100.text-auto .nav .subheader, .bg-warning-200.text-auto .nav .subheader, .bg-warning-300.text-auto .nav .subheader, .bg-warning-400.text-auto .nav .subheader, .bg-warning-500.text-auto .nav .subheader, .bg-warning.text-auto .nav .subheader, .bg-warning-600.text-auto .nav .subheader, .bg-warning-700.text-auto .nav .subheader, .bg-warning-800.text-auto .nav .subheader, .bg-warning-A100.text-auto .nav .subheader, .bg-warning-A200.text-auto .nav .subheader, .bg-warning-A400.text-auto .nav .subheader, .bg-warning-A700.text-auto .nav .subheader, .bg-danger-50.text-auto .nav .subheader, .bg-danger-100.text-auto .nav .subheader, .bg-danger-200.text-auto .nav .subheader, .bg-danger-300.text-auto .nav .subheader, .bg-danger-A100.text-auto .nav .subheader, .bg-light-500.text-auto .nav .subheader, .bg-light.text-auto .nav .subheader, .bg-red-50.text-auto .nav .subheader, .bg-red-100.text-auto .nav .subheader, .bg-red-200.text-auto .nav .subheader, .bg-red-300.text-auto .nav .subheader, .bg-red-A100.text-auto .nav .subheader, .bg-blue-50.text-auto .nav .subheader, .bg-blue-100.text-auto .nav .subheader, .bg-blue-200.text-auto .nav .subheader, .bg-blue-300.text-auto .nav .subheader, .bg-blue-400.text-auto .nav .subheader, .bg-blue-A100.text-auto .nav .subheader, .bg-teal-50.text-auto .nav .subheader, .bg-teal-100.text-auto .nav .subheader, .bg-teal-200.text-auto .nav .subheader, .bg-teal-300.text-auto .nav .subheader, .bg-teal-400.text-auto .nav .subheader, .bg-teal-A100.text-auto .nav .subheader, .bg-teal-A200.text-auto .nav .subheader, .bg-teal-A400.text-auto .nav .subheader, .bg-teal-A700.text-auto .nav .subheader, .bg-green-50.text-auto .nav .subheader, .bg-green-100.text-auto .nav .subheader, .bg-green-200.text-auto .nav .subheader, .bg-green-300.text-auto .nav .subheader, .bg-green-400.text-auto .nav .subheader, .bg-green-500.text-auto .nav .subheader, .bg-green.text-auto .nav .subheader, .bg-green-A100.text-auto .nav .subheader, .bg-green-A200.text-auto .nav .subheader, .bg-green-A400.text-auto .nav .subheader, .bg-green-A700.text-auto .nav .subheader, .bg-orange-50.text-auto .nav .subheader, .bg-orange-100.text-auto .nav .subheader, .bg-orange-200.text-auto .nav .subheader, .bg-orange-300.text-auto .nav .subheader, .bg-orange-400.text-auto .nav .subheader, .bg-orange-500.text-auto .nav .subheader, .bg-orange.text-auto .nav .subheader, .bg-orange-600.text-auto .nav .subheader, .bg-orange-700.text-auto .nav .subheader, .bg-orange-800.text-auto .nav .subheader, .bg-orange-A100.text-auto .nav .subheader, .bg-orange-A200.text-auto .nav .subheader, .bg-orange-A400.text-auto .nav .subheader, .bg-orange-A700.text-auto .nav .subheader, .bg-grey-50.text-auto .nav .subheader, .bg-grey-100.text-auto .nav .subheader, .bg-grey-200.text-auto .nav .subheader, .bg-grey-300.text-auto .nav .subheader, .bg-grey-400.text-auto .nav .subheader, .bg-grey-500.text-auto .nav .subheader, .bg-grey.text-auto .nav .subheader, .bg-grey-A100.text-auto .nav .subheader, .bg-grey-A200.text-auto .nav .subheader, .bg-grey-A400.text-auto .nav .subheader, .bg-fuse-dark-50.text-auto .nav .subheader, .bg-fuse-dark-100.text-auto .nav .subheader, .bg-fuse-dark-200.text-auto .nav .subheader, .bg-fuse-dark-A100.text-auto .nav .subheader, .bg-fuse-dark-A200.text-auto .nav .subheader, .bg-white-500.text-auto .nav .subheader, .bg-white.text-auto .nav .subheader {
  color: rgba(0, 0, 0, 0.54);
}
.dark-fg .nav .subheader:before, .dark-fg.text-auto .nav .subheader:before, .bg-primary-50.text-auto .nav .subheader:before, .bg-primary-100.text-auto .nav .subheader:before, .bg-primary-200.text-auto .nav .subheader:before, .bg-primary-A100.text-auto .nav .subheader:before, .bg-primary-A200.text-auto .nav .subheader:before, .bg-secondary-50.text-auto .nav .subheader:before, .bg-secondary-100.text-auto .nav .subheader:before, .bg-secondary-200.text-auto .nav .subheader:before, .bg-secondary-300.text-auto .nav .subheader:before, .bg-secondary-400.text-auto .nav .subheader:before, .bg-secondary-A100.text-auto .nav .subheader:before, .bg-success-50.text-auto .nav .subheader:before, .bg-success-100.text-auto .nav .subheader:before, .bg-success-200.text-auto .nav .subheader:before, .bg-success-300.text-auto .nav .subheader:before, .bg-success-400.text-auto .nav .subheader:before, .bg-success-500.text-auto .nav .subheader:before, .bg-success.text-auto .nav .subheader:before, .bg-success-A100.text-auto .nav .subheader:before, .bg-success-A200.text-auto .nav .subheader:before, .bg-success-A400.text-auto .nav .subheader:before, .bg-success-A700.text-auto .nav .subheader:before, .bg-info-50.text-auto .nav .subheader:before, .bg-info-100.text-auto .nav .subheader:before, .bg-info-200.text-auto .nav .subheader:before, .bg-info-300.text-auto .nav .subheader:before, .bg-info-400.text-auto .nav .subheader:before, .bg-info-A100.text-auto .nav .subheader:before, .bg-info-A200.text-auto .nav .subheader:before, .bg-info-A400.text-auto .nav .subheader:before, .bg-info-A700.text-auto .nav .subheader:before, .bg-warning-50.text-auto .nav .subheader:before, .bg-warning-100.text-auto .nav .subheader:before, .bg-warning-200.text-auto .nav .subheader:before, .bg-warning-300.text-auto .nav .subheader:before, .bg-warning-400.text-auto .nav .subheader:before, .bg-warning-500.text-auto .nav .subheader:before, .bg-warning.text-auto .nav .subheader:before, .bg-warning-600.text-auto .nav .subheader:before, .bg-warning-700.text-auto .nav .subheader:before, .bg-warning-800.text-auto .nav .subheader:before, .bg-warning-A100.text-auto .nav .subheader:before, .bg-warning-A200.text-auto .nav .subheader:before, .bg-warning-A400.text-auto .nav .subheader:before, .bg-warning-A700.text-auto .nav .subheader:before, .bg-danger-50.text-auto .nav .subheader:before, .bg-danger-100.text-auto .nav .subheader:before, .bg-danger-200.text-auto .nav .subheader:before, .bg-danger-300.text-auto .nav .subheader:before, .bg-danger-A100.text-auto .nav .subheader:before, .bg-light-500.text-auto .nav .subheader:before, .bg-light.text-auto .nav .subheader:before, .bg-red-50.text-auto .nav .subheader:before, .bg-red-100.text-auto .nav .subheader:before, .bg-red-200.text-auto .nav .subheader:before, .bg-red-300.text-auto .nav .subheader:before, .bg-red-A100.text-auto .nav .subheader:before, .bg-blue-50.text-auto .nav .subheader:before, .bg-blue-100.text-auto .nav .subheader:before, .bg-blue-200.text-auto .nav .subheader:before, .bg-blue-300.text-auto .nav .subheader:before, .bg-blue-400.text-auto .nav .subheader:before, .bg-blue-A100.text-auto .nav .subheader:before, .bg-teal-50.text-auto .nav .subheader:before, .bg-teal-100.text-auto .nav .subheader:before, .bg-teal-200.text-auto .nav .subheader:before, .bg-teal-300.text-auto .nav .subheader:before, .bg-teal-400.text-auto .nav .subheader:before, .bg-teal-A100.text-auto .nav .subheader:before, .bg-teal-A200.text-auto .nav .subheader:before, .bg-teal-A400.text-auto .nav .subheader:before, .bg-teal-A700.text-auto .nav .subheader:before, .bg-green-50.text-auto .nav .subheader:before, .bg-green-100.text-auto .nav .subheader:before, .bg-green-200.text-auto .nav .subheader:before, .bg-green-300.text-auto .nav .subheader:before, .bg-green-400.text-auto .nav .subheader:before, .bg-green-500.text-auto .nav .subheader:before, .bg-green.text-auto .nav .subheader:before, .bg-green-A100.text-auto .nav .subheader:before, .bg-green-A200.text-auto .nav .subheader:before, .bg-green-A400.text-auto .nav .subheader:before, .bg-green-A700.text-auto .nav .subheader:before, .bg-orange-50.text-auto .nav .subheader:before, .bg-orange-100.text-auto .nav .subheader:before, .bg-orange-200.text-auto .nav .subheader:before, .bg-orange-300.text-auto .nav .subheader:before, .bg-orange-400.text-auto .nav .subheader:before, .bg-orange-500.text-auto .nav .subheader:before, .bg-orange.text-auto .nav .subheader:before, .bg-orange-600.text-auto .nav .subheader:before, .bg-orange-700.text-auto .nav .subheader:before, .bg-orange-800.text-auto .nav .subheader:before, .bg-orange-A100.text-auto .nav .subheader:before, .bg-orange-A200.text-auto .nav .subheader:before, .bg-orange-A400.text-auto .nav .subheader:before, .bg-orange-A700.text-auto .nav .subheader:before, .bg-grey-50.text-auto .nav .subheader:before, .bg-grey-100.text-auto .nav .subheader:before, .bg-grey-200.text-auto .nav .subheader:before, .bg-grey-300.text-auto .nav .subheader:before, .bg-grey-400.text-auto .nav .subheader:before, .bg-grey-500.text-auto .nav .subheader:before, .bg-grey.text-auto .nav .subheader:before, .bg-grey-A100.text-auto .nav .subheader:before, .bg-grey-A200.text-auto .nav .subheader:before, .bg-grey-A400.text-auto .nav .subheader:before, .bg-fuse-dark-50.text-auto .nav .subheader:before, .bg-fuse-dark-100.text-auto .nav .subheader:before, .bg-fuse-dark-200.text-auto .nav .subheader:before, .bg-fuse-dark-A100.text-auto .nav .subheader:before, .bg-fuse-dark-A200.text-auto .nav .subheader:before, .bg-white-500.text-auto .nav .subheader:before, .bg-white.text-auto .nav .subheader:before {
  border-top-color: rgba(0, 0, 0, 0.54);
}
.dark-fg .nav .nav-link, .dark-fg.text-auto .nav .nav-link, .bg-primary-50.text-auto .nav .nav-link, .bg-primary-100.text-auto .nav .nav-link, .bg-primary-200.text-auto .nav .nav-link, .bg-primary-A100.text-auto .nav .nav-link, .bg-primary-A200.text-auto .nav .nav-link, .bg-secondary-50.text-auto .nav .nav-link, .bg-secondary-100.text-auto .nav .nav-link, .bg-secondary-200.text-auto .nav .nav-link, .bg-secondary-300.text-auto .nav .nav-link, .bg-secondary-400.text-auto .nav .nav-link, .bg-secondary-A100.text-auto .nav .nav-link, .bg-success-50.text-auto .nav .nav-link, .bg-success-100.text-auto .nav .nav-link, .bg-success-200.text-auto .nav .nav-link, .bg-success-300.text-auto .nav .nav-link, .bg-success-400.text-auto .nav .nav-link, .bg-success-500.text-auto .nav .nav-link, .bg-success.text-auto .nav .nav-link, .bg-success-A100.text-auto .nav .nav-link, .bg-success-A200.text-auto .nav .nav-link, .bg-success-A400.text-auto .nav .nav-link, .bg-success-A700.text-auto .nav .nav-link, .bg-info-50.text-auto .nav .nav-link, .bg-info-100.text-auto .nav .nav-link, .bg-info-200.text-auto .nav .nav-link, .bg-info-300.text-auto .nav .nav-link, .bg-info-400.text-auto .nav .nav-link, .bg-info-A100.text-auto .nav .nav-link, .bg-info-A200.text-auto .nav .nav-link, .bg-info-A400.text-auto .nav .nav-link, .bg-info-A700.text-auto .nav .nav-link, .bg-warning-50.text-auto .nav .nav-link, .bg-warning-100.text-auto .nav .nav-link, .bg-warning-200.text-auto .nav .nav-link, .bg-warning-300.text-auto .nav .nav-link, .bg-warning-400.text-auto .nav .nav-link, .bg-warning-500.text-auto .nav .nav-link, .bg-warning.text-auto .nav .nav-link, .bg-warning-600.text-auto .nav .nav-link, .bg-warning-700.text-auto .nav .nav-link, .bg-warning-800.text-auto .nav .nav-link, .bg-warning-A100.text-auto .nav .nav-link, .bg-warning-A200.text-auto .nav .nav-link, .bg-warning-A400.text-auto .nav .nav-link, .bg-warning-A700.text-auto .nav .nav-link, .bg-danger-50.text-auto .nav .nav-link, .bg-danger-100.text-auto .nav .nav-link, .bg-danger-200.text-auto .nav .nav-link, .bg-danger-300.text-auto .nav .nav-link, .bg-danger-A100.text-auto .nav .nav-link, .bg-light-500.text-auto .nav .nav-link, .bg-light.text-auto .nav .nav-link, .bg-red-50.text-auto .nav .nav-link, .bg-red-100.text-auto .nav .nav-link, .bg-red-200.text-auto .nav .nav-link, .bg-red-300.text-auto .nav .nav-link, .bg-red-A100.text-auto .nav .nav-link, .bg-blue-50.text-auto .nav .nav-link, .bg-blue-100.text-auto .nav .nav-link, .bg-blue-200.text-auto .nav .nav-link, .bg-blue-300.text-auto .nav .nav-link, .bg-blue-400.text-auto .nav .nav-link, .bg-blue-A100.text-auto .nav .nav-link, .bg-teal-50.text-auto .nav .nav-link, .bg-teal-100.text-auto .nav .nav-link, .bg-teal-200.text-auto .nav .nav-link, .bg-teal-300.text-auto .nav .nav-link, .bg-teal-400.text-auto .nav .nav-link, .bg-teal-A100.text-auto .nav .nav-link, .bg-teal-A200.text-auto .nav .nav-link, .bg-teal-A400.text-auto .nav .nav-link, .bg-teal-A700.text-auto .nav .nav-link, .bg-green-50.text-auto .nav .nav-link, .bg-green-100.text-auto .nav .nav-link, .bg-green-200.text-auto .nav .nav-link, .bg-green-300.text-auto .nav .nav-link, .bg-green-400.text-auto .nav .nav-link, .bg-green-500.text-auto .nav .nav-link, .bg-green.text-auto .nav .nav-link, .bg-green-A100.text-auto .nav .nav-link, .bg-green-A200.text-auto .nav .nav-link, .bg-green-A400.text-auto .nav .nav-link, .bg-green-A700.text-auto .nav .nav-link, .bg-orange-50.text-auto .nav .nav-link, .bg-orange-100.text-auto .nav .nav-link, .bg-orange-200.text-auto .nav .nav-link, .bg-orange-300.text-auto .nav .nav-link, .bg-orange-400.text-auto .nav .nav-link, .bg-orange-500.text-auto .nav .nav-link, .bg-orange.text-auto .nav .nav-link, .bg-orange-600.text-auto .nav .nav-link, .bg-orange-700.text-auto .nav .nav-link, .bg-orange-800.text-auto .nav .nav-link, .bg-orange-A100.text-auto .nav .nav-link, .bg-orange-A200.text-auto .nav .nav-link, .bg-orange-A400.text-auto .nav .nav-link, .bg-orange-A700.text-auto .nav .nav-link, .bg-grey-50.text-auto .nav .nav-link, .bg-grey-100.text-auto .nav .nav-link, .bg-grey-200.text-auto .nav .nav-link, .bg-grey-300.text-auto .nav .nav-link, .bg-grey-400.text-auto .nav .nav-link, .bg-grey-500.text-auto .nav .nav-link, .bg-grey.text-auto .nav .nav-link, .bg-grey-A100.text-auto .nav .nav-link, .bg-grey-A200.text-auto .nav .nav-link, .bg-grey-A400.text-auto .nav .nav-link, .bg-fuse-dark-50.text-auto .nav .nav-link, .bg-fuse-dark-100.text-auto .nav .nav-link, .bg-fuse-dark-200.text-auto .nav .nav-link, .bg-fuse-dark-A100.text-auto .nav .nav-link, .bg-fuse-dark-A200.text-auto .nav .nav-link, .bg-white-500.text-auto .nav .nav-link, .bg-white.text-auto .nav .nav-link {
  color: rgba(0, 0, 0, 0.87);
}
.dark-fg .nav .nav-link:hover, .dark-fg.text-auto .nav .nav-link:hover, .bg-primary-50.text-auto .nav .nav-link:hover, .bg-primary-100.text-auto .nav .nav-link:hover, .bg-primary-200.text-auto .nav .nav-link:hover, .bg-primary-A100.text-auto .nav .nav-link:hover, .bg-primary-A200.text-auto .nav .nav-link:hover, .bg-secondary-50.text-auto .nav .nav-link:hover, .bg-secondary-100.text-auto .nav .nav-link:hover, .bg-secondary-200.text-auto .nav .nav-link:hover, .bg-secondary-300.text-auto .nav .nav-link:hover, .bg-secondary-400.text-auto .nav .nav-link:hover, .bg-secondary-A100.text-auto .nav .nav-link:hover, .bg-success-50.text-auto .nav .nav-link:hover, .bg-success-100.text-auto .nav .nav-link:hover, .bg-success-200.text-auto .nav .nav-link:hover, .bg-success-300.text-auto .nav .nav-link:hover, .bg-success-400.text-auto .nav .nav-link:hover, .bg-success-500.text-auto .nav .nav-link:hover, .bg-success.text-auto .nav .nav-link:hover, .bg-success-A100.text-auto .nav .nav-link:hover, .bg-success-A200.text-auto .nav .nav-link:hover, .bg-success-A400.text-auto .nav .nav-link:hover, .bg-success-A700.text-auto .nav .nav-link:hover, .bg-info-50.text-auto .nav .nav-link:hover, .bg-info-100.text-auto .nav .nav-link:hover, .bg-info-200.text-auto .nav .nav-link:hover, .bg-info-300.text-auto .nav .nav-link:hover, .bg-info-400.text-auto .nav .nav-link:hover, .bg-info-A100.text-auto .nav .nav-link:hover, .bg-info-A200.text-auto .nav .nav-link:hover, .bg-info-A400.text-auto .nav .nav-link:hover, .bg-info-A700.text-auto .nav .nav-link:hover, .bg-warning-50.text-auto .nav .nav-link:hover, .bg-warning-100.text-auto .nav .nav-link:hover, .bg-warning-200.text-auto .nav .nav-link:hover, .bg-warning-300.text-auto .nav .nav-link:hover, .bg-warning-400.text-auto .nav .nav-link:hover, .bg-warning-500.text-auto .nav .nav-link:hover, .bg-warning.text-auto .nav .nav-link:hover, .bg-warning-600.text-auto .nav .nav-link:hover, .bg-warning-700.text-auto .nav .nav-link:hover, .bg-warning-800.text-auto .nav .nav-link:hover, .bg-warning-A100.text-auto .nav .nav-link:hover, .bg-warning-A200.text-auto .nav .nav-link:hover, .bg-warning-A400.text-auto .nav .nav-link:hover, .bg-warning-A700.text-auto .nav .nav-link:hover, .bg-danger-50.text-auto .nav .nav-link:hover, .bg-danger-100.text-auto .nav .nav-link:hover, .bg-danger-200.text-auto .nav .nav-link:hover, .bg-danger-300.text-auto .nav .nav-link:hover, .bg-danger-A100.text-auto .nav .nav-link:hover, .bg-light-500.text-auto .nav .nav-link:hover, .bg-light.text-auto .nav .nav-link:hover, .bg-red-50.text-auto .nav .nav-link:hover, .bg-red-100.text-auto .nav .nav-link:hover, .bg-red-200.text-auto .nav .nav-link:hover, .bg-red-300.text-auto .nav .nav-link:hover, .bg-red-A100.text-auto .nav .nav-link:hover, .bg-blue-50.text-auto .nav .nav-link:hover, .bg-blue-100.text-auto .nav .nav-link:hover, .bg-blue-200.text-auto .nav .nav-link:hover, .bg-blue-300.text-auto .nav .nav-link:hover, .bg-blue-400.text-auto .nav .nav-link:hover, .bg-blue-A100.text-auto .nav .nav-link:hover, .bg-teal-50.text-auto .nav .nav-link:hover, .bg-teal-100.text-auto .nav .nav-link:hover, .bg-teal-200.text-auto .nav .nav-link:hover, .bg-teal-300.text-auto .nav .nav-link:hover, .bg-teal-400.text-auto .nav .nav-link:hover, .bg-teal-A100.text-auto .nav .nav-link:hover, .bg-teal-A200.text-auto .nav .nav-link:hover, .bg-teal-A400.text-auto .nav .nav-link:hover, .bg-teal-A700.text-auto .nav .nav-link:hover, .bg-green-50.text-auto .nav .nav-link:hover, .bg-green-100.text-auto .nav .nav-link:hover, .bg-green-200.text-auto .nav .nav-link:hover, .bg-green-300.text-auto .nav .nav-link:hover, .bg-green-400.text-auto .nav .nav-link:hover, .bg-green-500.text-auto .nav .nav-link:hover, .bg-green.text-auto .nav .nav-link:hover, .bg-green-A100.text-auto .nav .nav-link:hover, .bg-green-A200.text-auto .nav .nav-link:hover, .bg-green-A400.text-auto .nav .nav-link:hover, .bg-green-A700.text-auto .nav .nav-link:hover, .bg-orange-50.text-auto .nav .nav-link:hover, .bg-orange-100.text-auto .nav .nav-link:hover, .bg-orange-200.text-auto .nav .nav-link:hover, .bg-orange-300.text-auto .nav .nav-link:hover, .bg-orange-400.text-auto .nav .nav-link:hover, .bg-orange-500.text-auto .nav .nav-link:hover, .bg-orange.text-auto .nav .nav-link:hover, .bg-orange-600.text-auto .nav .nav-link:hover, .bg-orange-700.text-auto .nav .nav-link:hover, .bg-orange-800.text-auto .nav .nav-link:hover, .bg-orange-A100.text-auto .nav .nav-link:hover, .bg-orange-A200.text-auto .nav .nav-link:hover, .bg-orange-A400.text-auto .nav .nav-link:hover, .bg-orange-A700.text-auto .nav .nav-link:hover, .bg-grey-50.text-auto .nav .nav-link:hover, .bg-grey-100.text-auto .nav .nav-link:hover, .bg-grey-200.text-auto .nav .nav-link:hover, .bg-grey-300.text-auto .nav .nav-link:hover, .bg-grey-400.text-auto .nav .nav-link:hover, .bg-grey-500.text-auto .nav .nav-link:hover, .bg-grey.text-auto .nav .nav-link:hover, .bg-grey-A100.text-auto .nav .nav-link:hover, .bg-grey-A200.text-auto .nav .nav-link:hover, .bg-grey-A400.text-auto .nav .nav-link:hover, .bg-fuse-dark-50.text-auto .nav .nav-link:hover, .bg-fuse-dark-100.text-auto .nav .nav-link:hover, .bg-fuse-dark-200.text-auto .nav .nav-link:hover, .bg-fuse-dark-A100.text-auto .nav .nav-link:hover, .bg-fuse-dark-A200.text-auto .nav .nav-link:hover, .bg-white-500.text-auto .nav .nav-link:hover, .bg-white.text-auto .nav .nav-link:hover {
  color: #3C4252;
}
.dark-fg .nav .nav-link:hover > i, .dark-fg.text-auto .nav .nav-link:hover > i, .bg-primary-50.text-auto .nav .nav-link:hover > i, .bg-primary-100.text-auto .nav .nav-link:hover > i, .bg-primary-200.text-auto .nav .nav-link:hover > i, .bg-primary-A100.text-auto .nav .nav-link:hover > i, .bg-primary-A200.text-auto .nav .nav-link:hover > i, .bg-secondary-50.text-auto .nav .nav-link:hover > i, .bg-secondary-100.text-auto .nav .nav-link:hover > i, .bg-secondary-200.text-auto .nav .nav-link:hover > i, .bg-secondary-300.text-auto .nav .nav-link:hover > i, .bg-secondary-400.text-auto .nav .nav-link:hover > i, .bg-secondary-A100.text-auto .nav .nav-link:hover > i, .bg-success-50.text-auto .nav .nav-link:hover > i, .bg-success-100.text-auto .nav .nav-link:hover > i, .bg-success-200.text-auto .nav .nav-link:hover > i, .bg-success-300.text-auto .nav .nav-link:hover > i, .bg-success-400.text-auto .nav .nav-link:hover > i, .bg-success-500.text-auto .nav .nav-link:hover > i, .bg-success.text-auto .nav .nav-link:hover > i, .bg-success-A100.text-auto .nav .nav-link:hover > i, .bg-success-A200.text-auto .nav .nav-link:hover > i, .bg-success-A400.text-auto .nav .nav-link:hover > i, .bg-success-A700.text-auto .nav .nav-link:hover > i, .bg-info-50.text-auto .nav .nav-link:hover > i, .bg-info-100.text-auto .nav .nav-link:hover > i, .bg-info-200.text-auto .nav .nav-link:hover > i, .bg-info-300.text-auto .nav .nav-link:hover > i, .bg-info-400.text-auto .nav .nav-link:hover > i, .bg-info-A100.text-auto .nav .nav-link:hover > i, .bg-info-A200.text-auto .nav .nav-link:hover > i, .bg-info-A400.text-auto .nav .nav-link:hover > i, .bg-info-A700.text-auto .nav .nav-link:hover > i, .bg-warning-50.text-auto .nav .nav-link:hover > i, .bg-warning-100.text-auto .nav .nav-link:hover > i, .bg-warning-200.text-auto .nav .nav-link:hover > i, .bg-warning-300.text-auto .nav .nav-link:hover > i, .bg-warning-400.text-auto .nav .nav-link:hover > i, .bg-warning-500.text-auto .nav .nav-link:hover > i, .bg-warning.text-auto .nav .nav-link:hover > i, .bg-warning-600.text-auto .nav .nav-link:hover > i, .bg-warning-700.text-auto .nav .nav-link:hover > i, .bg-warning-800.text-auto .nav .nav-link:hover > i, .bg-warning-A100.text-auto .nav .nav-link:hover > i, .bg-warning-A200.text-auto .nav .nav-link:hover > i, .bg-warning-A400.text-auto .nav .nav-link:hover > i, .bg-warning-A700.text-auto .nav .nav-link:hover > i, .bg-danger-50.text-auto .nav .nav-link:hover > i, .bg-danger-100.text-auto .nav .nav-link:hover > i, .bg-danger-200.text-auto .nav .nav-link:hover > i, .bg-danger-300.text-auto .nav .nav-link:hover > i, .bg-danger-A100.text-auto .nav .nav-link:hover > i, .bg-light-500.text-auto .nav .nav-link:hover > i, .bg-light.text-auto .nav .nav-link:hover > i, .bg-red-50.text-auto .nav .nav-link:hover > i, .bg-red-100.text-auto .nav .nav-link:hover > i, .bg-red-200.text-auto .nav .nav-link:hover > i, .bg-red-300.text-auto .nav .nav-link:hover > i, .bg-red-A100.text-auto .nav .nav-link:hover > i, .bg-blue-50.text-auto .nav .nav-link:hover > i, .bg-blue-100.text-auto .nav .nav-link:hover > i, .bg-blue-200.text-auto .nav .nav-link:hover > i, .bg-blue-300.text-auto .nav .nav-link:hover > i, .bg-blue-400.text-auto .nav .nav-link:hover > i, .bg-blue-A100.text-auto .nav .nav-link:hover > i, .bg-teal-50.text-auto .nav .nav-link:hover > i, .bg-teal-100.text-auto .nav .nav-link:hover > i, .bg-teal-200.text-auto .nav .nav-link:hover > i, .bg-teal-300.text-auto .nav .nav-link:hover > i, .bg-teal-400.text-auto .nav .nav-link:hover > i, .bg-teal-A100.text-auto .nav .nav-link:hover > i, .bg-teal-A200.text-auto .nav .nav-link:hover > i, .bg-teal-A400.text-auto .nav .nav-link:hover > i, .bg-teal-A700.text-auto .nav .nav-link:hover > i, .bg-green-50.text-auto .nav .nav-link:hover > i, .bg-green-100.text-auto .nav .nav-link:hover > i, .bg-green-200.text-auto .nav .nav-link:hover > i, .bg-green-300.text-auto .nav .nav-link:hover > i, .bg-green-400.text-auto .nav .nav-link:hover > i, .bg-green-500.text-auto .nav .nav-link:hover > i, .bg-green.text-auto .nav .nav-link:hover > i, .bg-green-A100.text-auto .nav .nav-link:hover > i, .bg-green-A200.text-auto .nav .nav-link:hover > i, .bg-green-A400.text-auto .nav .nav-link:hover > i, .bg-green-A700.text-auto .nav .nav-link:hover > i, .bg-orange-50.text-auto .nav .nav-link:hover > i, .bg-orange-100.text-auto .nav .nav-link:hover > i, .bg-orange-200.text-auto .nav .nav-link:hover > i, .bg-orange-300.text-auto .nav .nav-link:hover > i, .bg-orange-400.text-auto .nav .nav-link:hover > i, .bg-orange-500.text-auto .nav .nav-link:hover > i, .bg-orange.text-auto .nav .nav-link:hover > i, .bg-orange-600.text-auto .nav .nav-link:hover > i, .bg-orange-700.text-auto .nav .nav-link:hover > i, .bg-orange-800.text-auto .nav .nav-link:hover > i, .bg-orange-A100.text-auto .nav .nav-link:hover > i, .bg-orange-A200.text-auto .nav .nav-link:hover > i, .bg-orange-A400.text-auto .nav .nav-link:hover > i, .bg-orange-A700.text-auto .nav .nav-link:hover > i, .bg-grey-50.text-auto .nav .nav-link:hover > i, .bg-grey-100.text-auto .nav .nav-link:hover > i, .bg-grey-200.text-auto .nav .nav-link:hover > i, .bg-grey-300.text-auto .nav .nav-link:hover > i, .bg-grey-400.text-auto .nav .nav-link:hover > i, .bg-grey-500.text-auto .nav .nav-link:hover > i, .bg-grey.text-auto .nav .nav-link:hover > i, .bg-grey-A100.text-auto .nav .nav-link:hover > i, .bg-grey-A200.text-auto .nav .nav-link:hover > i, .bg-grey-A400.text-auto .nav .nav-link:hover > i, .bg-fuse-dark-50.text-auto .nav .nav-link:hover > i, .bg-fuse-dark-100.text-auto .nav .nav-link:hover > i, .bg-fuse-dark-200.text-auto .nav .nav-link:hover > i, .bg-fuse-dark-A100.text-auto .nav .nav-link:hover > i, .bg-fuse-dark-A200.text-auto .nav .nav-link:hover > i, .bg-white-500.text-auto .nav .nav-link:hover > i, .bg-white.text-auto .nav .nav-link:hover > i {
  color: #3C4252;
}
.dark-fg .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.dark-fg .custom-checkbox input[type=radio] ~ .radio-icon:before,
.dark-fg .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.dark-fg .custom-radio input[type=radio] ~ .radio-icon:before,
.dark-fg .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.dark-fg .form-check-label input[type=radio] ~ .radio-icon:before, .dark-fg.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.dark-fg.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.dark-fg.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.dark-fg.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.dark-fg.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.dark-fg.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-primary-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-primary-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-primary-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-primary-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-primary-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-primary-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-primary-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-primary-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-primary-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-primary-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-primary-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-primary-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-primary-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-primary-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-primary-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-primary-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-secondary-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-secondary-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-secondary-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-secondary-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-secondary-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-secondary-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-secondary-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-secondary-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-secondary-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-secondary-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-secondary-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-secondary-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-secondary-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-secondary-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-secondary-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-secondary-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-secondary-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-secondary-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-secondary-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-success-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-success-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-success-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-success-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-success-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-success-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-success-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-success-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-success-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-success-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-success-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-success-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-success-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-success-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-success-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-success-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-success-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-success-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-success-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-success-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-success-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-success-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-success-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-success-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-success-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-success-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-success-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-success-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-success-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-success-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-success-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-success-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-success-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-success-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-success-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-success-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-success.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-success.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-success.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-success.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-success.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-success.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-success-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-success-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-success-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-success-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-success-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-success-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-success-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-success-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-success-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-success-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-success-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-success-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-success-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-success-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-success-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-success-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-success-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-success-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-success-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-success-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-success-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-success-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-success-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-success-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-info-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-info-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-info-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-info-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-info-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-info-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-info-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-info-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-info-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-info-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-info-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-info-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-info-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-info-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-info-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-info-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-info-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-info-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-info-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-info-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-info-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-info-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-info-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-info-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-info-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-info-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-info-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-info-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-info-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-info-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-info-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-info-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-info-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-info-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-info-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-info-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-info-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-info-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-info-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-info-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-info-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-info-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-info-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-info-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-info-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-info-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-info-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-info-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-info-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-info-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-info-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-info-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-info-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-info-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-warning-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-warning-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-warning-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-warning-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-warning-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-warning-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-warning-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-warning-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-warning-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-warning-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-warning-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-warning-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-warning-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-warning-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-warning-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-warning-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-warning-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-warning-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-warning.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-warning.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-warning.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-warning.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-warning.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-warning.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-warning-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-warning-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-warning-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-warning-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-warning-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-warning-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-warning-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-warning-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-warning-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-warning-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-warning-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-warning-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-warning-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-warning-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-warning-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-warning-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-warning-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-warning-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-warning-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-warning-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-warning-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-warning-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-danger-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-danger-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-danger-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-danger-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-danger-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-danger-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-danger-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-danger-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-danger-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-danger-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-danger-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-danger-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-danger-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-danger-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-danger-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-danger-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-light-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-light-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-light-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-light-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-light-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-light.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-light.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-light.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-light.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-light.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-red-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-red-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-red-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-red-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-red-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-red-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-red-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-red-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-red-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-red-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-red-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-red-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-red-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-red-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-red-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-red-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-red-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-red-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-red-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-red-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-red-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-red-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-red-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-red-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-red-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-red-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-red-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-red-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-red-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-red-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-blue-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-blue-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-blue-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-blue-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-blue-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-blue-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-blue-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-blue-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-blue-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-blue-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-blue-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-blue-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-blue-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-teal-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-teal-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-teal-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-teal-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-teal-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-teal-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-teal-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-teal-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-teal-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-teal-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-teal-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-teal-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-teal-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-teal-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-teal-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-teal-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-teal-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-teal-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-teal-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-teal-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-teal-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-teal-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-teal-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-teal-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-teal-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-teal-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-teal-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-teal-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-green-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-green-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-green-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-green-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-green-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-green-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-green-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-green-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-green-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-green-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-green-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-green-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-green-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-green-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-green-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-green-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-green-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-green-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-green-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-green-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-green-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-green-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-green-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-green-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-green-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-green-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-green-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-green-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-green-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-green-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-green-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-green-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-green-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-green-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-green-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-green-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-green.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-green.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-green.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-green.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-green.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-green.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-green-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-green-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-green-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-green-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-green-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-green-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-green-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-green-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-green-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-green-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-green-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-green-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-green-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-green-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-green-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-green-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-green-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-green-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-green-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-green-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-green-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-green-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-green-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-green-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-orange-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-orange-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-orange-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-orange-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-orange-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-orange-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-orange-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-orange-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-orange-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-orange-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-orange-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-orange-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-orange-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-orange-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-orange-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-orange-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-orange-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-orange-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-orange.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-orange.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-orange.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-orange.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-orange.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-orange.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-orange-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-orange-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-orange-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-orange-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-orange-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-orange-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-orange-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-orange-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-orange-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-orange-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-orange-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-orange-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-orange-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-orange-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-orange-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-orange-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-orange-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-orange-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-orange-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-orange-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-orange-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-orange-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-grey-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-grey-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-grey-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-grey-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-fuse-dark-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-fuse-dark-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-fuse-dark-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-fuse-dark-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-fuse-dark-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-fuse-dark-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-fuse-dark-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-white-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-white-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-white-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-white-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-white-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-white-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-white.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
.bg-white.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
.bg-white.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
.bg-white.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
.bg-white.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
.bg-white.text-auto .form-check-label input[type=radio] ~ .radio-icon:before {
  border-color: rgba(0, 0, 0, 0.54);
}
.dark-fg .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.dark-fg .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.dark-fg .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.dark-fg .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.dark-fg .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.dark-fg .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .dark-fg.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.dark-fg.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.dark-fg.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.dark-fg.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.dark-fg.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.dark-fg.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-primary-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-primary-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-primary-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-primary-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-primary-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-primary-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-primary-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-secondary-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-secondary-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-secondary-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-secondary-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-secondary-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-secondary-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-secondary-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-secondary-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-success-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-success-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-success-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-success-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-success-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-success-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-success.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-success.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-success.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-success-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-success-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-success-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-success-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-success-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-success-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-info-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-info-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-info-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-info-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-info-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-info-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-info-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-info-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-info-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-info-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-info-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-warning-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-warning-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-warning-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-warning-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-warning-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-warning-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-warning.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-warning-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-warning-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-warning-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-warning-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-warning-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-warning-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-warning-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-warning-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-warning-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-danger-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-danger-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-danger-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-danger-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-danger-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-danger-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-danger-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-light-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-light-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-light-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-light-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-light-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-light.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-light.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-light.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-light.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-light.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-red-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-red-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-red-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-red-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-red-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-red-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-red-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-blue-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-blue-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-teal-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-teal-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-teal-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-teal-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-teal-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-teal-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-teal-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-teal-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-teal-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-teal-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-teal-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-green-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-green-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-green-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-green-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-green-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-green-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-green.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-green.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-green.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-green-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-green-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-green-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-green-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-green-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-green-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-orange-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-orange-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-orange-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-orange-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-orange-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-orange-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-orange.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-orange-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-orange-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-orange-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-orange-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-orange-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-orange-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-orange-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-orange-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-orange-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-grey-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-grey-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-grey-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-fuse-dark-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-fuse-dark-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-fuse-dark-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-fuse-dark-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-fuse-dark-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-fuse-dark-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-fuse-dark-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-white-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-white-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-white-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-white-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-white-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-white-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-white.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
.bg-white.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
.bg-white.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
.bg-white.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
.bg-white.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
.bg-white.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
  color: rgba(0, 0, 0, 0.54);
}
.dark-fg input[type=checkbox]:disabled ~ .checkbox-icon,
.dark-fg input[type=checkbox]:disabled ~ .custom-control-indicator,
.dark-fg input[type=checkbox]:disabled ~ .form-check-description, .dark-fg input[type=checkbox][disabled] ~ .checkbox-icon,
.dark-fg input[type=checkbox][disabled] ~ .custom-control-indicator,
.dark-fg input[type=checkbox][disabled] ~ .form-check-description, .dark-fg.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.dark-fg.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.dark-fg.text-auto input[type=checkbox]:disabled ~ .form-check-description, .dark-fg.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.dark-fg.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.dark-fg.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-primary-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-primary-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-primary-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-primary-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-primary-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-primary-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-primary-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-primary-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-primary-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-primary-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-primary-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-primary-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-primary-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-primary-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-primary-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-primary-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-primary-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-primary-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-primary-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-primary-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-primary-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-primary-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-primary-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-primary-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-primary-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-primary-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-primary-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-primary-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-primary-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-primary-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-secondary-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-secondary-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-secondary-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-secondary-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-secondary-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-secondary-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-secondary-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-secondary-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-secondary-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-secondary-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-secondary-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-secondary-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-secondary-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-secondary-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-secondary-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-secondary-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-secondary-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-secondary-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-secondary-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-secondary-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-secondary-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-secondary-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-secondary-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-secondary-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-secondary-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-secondary-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-secondary-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-secondary-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-secondary-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-secondary-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-secondary-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-secondary-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-secondary-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-secondary-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-secondary-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-secondary-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-success-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-success-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-success-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-success-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-success-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-success-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-success-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-success-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-success-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-success-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-success-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-success-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-success-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-success-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-success-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-success-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-success-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-success-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-success-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-success-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-success-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-success-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-success-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-success-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-success-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-success-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-success-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-success-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-success-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-success-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-success-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-success-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-success-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-success-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-success-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-success-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-success.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-success.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-success.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-success.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-success.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-success.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-success-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-success-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-success-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-success-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-success-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-success-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-success-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-success-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-success-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-success-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-success-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-success-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-success-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-success-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-success-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-success-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-success-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-success-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-success-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-success-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-success-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-success-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-success-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-success-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-info-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-info-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-info-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-info-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-info-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-info-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-info-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-info-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-info-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-info-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-info-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-info-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-info-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-info-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-info-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-info-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-info-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-info-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-info-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-info-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-info-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-info-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-info-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-info-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-info-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-info-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-info-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-info-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-info-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-info-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-info-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-info-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-info-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-info-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-info-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-info-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-info-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-info-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-info-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-info-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-info-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-info-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-info-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-info-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-info-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-info-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-info-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-info-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-info-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-info-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-info-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-info-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-info-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-info-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-warning-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-warning-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-warning-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-warning-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-warning-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-warning-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-warning-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-warning-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-warning-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-warning-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-warning-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-warning-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-warning-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-warning-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-warning-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-warning-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-warning-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-warning-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-warning-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-warning-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-warning-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-warning-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-warning-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-warning-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-warning-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-warning-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-warning-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-warning-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-warning-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-warning-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-warning-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-warning-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-warning-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-warning-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-warning-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-warning-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-warning.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-warning.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-warning.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-warning.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-warning.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-warning.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-warning-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-warning-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-warning-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-warning-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-warning-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-warning-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-warning-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-warning-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-warning-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-warning-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-warning-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-warning-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-warning-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-warning-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-warning-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-warning-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-warning-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-warning-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-warning-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-warning-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-warning-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-warning-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-warning-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-warning-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-warning-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-warning-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-warning-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-warning-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-warning-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-warning-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-warning-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-warning-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-warning-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-warning-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-warning-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-warning-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-warning-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-warning-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-warning-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-warning-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-warning-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-warning-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-danger-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-danger-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-danger-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-danger-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-danger-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-danger-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-danger-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-danger-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-danger-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-danger-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-danger-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-danger-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-danger-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-danger-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-danger-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-danger-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-danger-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-danger-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-danger-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-danger-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-danger-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-danger-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-danger-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-danger-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-danger-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-danger-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-danger-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-danger-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-danger-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-danger-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-light-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-light-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-light-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-light-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-light.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-light.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-light.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-light.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-red-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-red-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-red-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-red-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-red-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-red-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-red-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-red-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-red-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-red-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-red-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-red-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-red-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-red-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-red-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-red-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-red-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-red-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-red-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-red-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-red-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-red-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-red-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-red-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-red-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-red-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-red-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-red-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-red-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-red-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-blue-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-blue-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-blue-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-blue-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-blue-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-blue-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-blue-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-blue-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-blue-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-blue-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-blue-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-blue-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-blue-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-blue-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-blue-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-blue-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-blue-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-blue-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-blue-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-blue-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-blue-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-blue-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-blue-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-blue-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-teal-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-teal-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-teal-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-teal-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-teal-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-teal-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-teal-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-teal-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-teal-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-teal-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-teal-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-teal-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-teal-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-teal-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-teal-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-teal-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-teal-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-teal-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-teal-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-teal-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-teal-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-teal-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-teal-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-teal-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-teal-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-teal-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-teal-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-teal-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-teal-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-teal-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-teal-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-teal-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-teal-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-teal-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-teal-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-teal-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-teal-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-teal-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-teal-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-teal-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-teal-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-teal-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-teal-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-teal-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-teal-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-teal-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-teal-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-teal-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-teal-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-teal-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-teal-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-teal-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-teal-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-teal-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-green-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-green-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-green-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-green-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-green-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-green-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-green-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-green-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-green-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-green-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-green-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-green-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-green-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-green-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-green-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-green-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-green-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-green-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-green-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-green-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-green-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-green-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-green-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-green-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-green-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-green-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-green-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-green-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-green-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-green-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-green-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-green-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-green-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-green-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-green-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-green-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-green.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-green.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-green.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-green.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-green.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-green.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-green-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-green-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-green-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-green-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-green-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-green-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-green-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-green-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-green-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-green-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-green-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-green-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-green-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-green-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-green-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-green-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-green-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-green-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-green-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-green-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-green-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-green-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-green-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-green-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-orange-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-orange-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-orange-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-orange-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-orange-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-orange-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-orange-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-orange-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-orange-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-orange-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-orange-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-orange-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-orange-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-orange-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-orange-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-orange-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-orange-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-orange-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-orange-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-orange-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-orange-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-orange-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-orange-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-orange-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-orange-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-orange-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-orange-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-orange-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-orange-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-orange-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-orange-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-orange-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-orange-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-orange-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-orange-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-orange-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-orange.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-orange.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-orange.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-orange.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-orange.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-orange.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-orange-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-orange-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-orange-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-orange-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-orange-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-orange-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-orange-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-orange-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-orange-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-orange-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-orange-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-orange-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-orange-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-orange-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-orange-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-orange-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-orange-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-orange-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-orange-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-orange-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-orange-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-orange-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-orange-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-orange-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-orange-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-orange-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-orange-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-orange-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-orange-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-orange-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-orange-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-orange-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-orange-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-orange-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-orange-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-orange-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-orange-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-orange-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-orange-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-orange-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-orange-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-orange-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-grey-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-grey-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-grey-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-grey-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-grey-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-grey-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-fuse-dark-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-fuse-dark-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-fuse-dark-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-fuse-dark-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-fuse-dark-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-fuse-dark-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-fuse-dark-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-fuse-dark-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-fuse-dark-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-fuse-dark-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-fuse-dark-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-fuse-dark-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-fuse-dark-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-fuse-dark-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-fuse-dark-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-fuse-dark-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-fuse-dark-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-fuse-dark-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-fuse-dark-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-fuse-dark-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-fuse-dark-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-fuse-dark-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-fuse-dark-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-fuse-dark-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-fuse-dark-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-fuse-dark-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-fuse-dark-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-fuse-dark-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-fuse-dark-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-fuse-dark-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-white-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-white-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-white-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-white-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-white-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-white-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-white.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
.bg-white.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
.bg-white.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-white.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
.bg-white.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
.bg-white.text-auto input[type=checkbox][disabled] ~ .form-check-description {
  color: rgba(0, 0, 0, 0.38) !important;
}
.dark-fg .form-check.disabled .form-check-label, .dark-fg.text-auto .form-check.disabled .form-check-label, .bg-primary-50.text-auto .form-check.disabled .form-check-label, .bg-primary-100.text-auto .form-check.disabled .form-check-label, .bg-primary-200.text-auto .form-check.disabled .form-check-label, .bg-primary-A100.text-auto .form-check.disabled .form-check-label, .bg-primary-A200.text-auto .form-check.disabled .form-check-label, .bg-secondary-50.text-auto .form-check.disabled .form-check-label, .bg-secondary-100.text-auto .form-check.disabled .form-check-label, .bg-secondary-200.text-auto .form-check.disabled .form-check-label, .bg-secondary-300.text-auto .form-check.disabled .form-check-label, .bg-secondary-400.text-auto .form-check.disabled .form-check-label, .bg-secondary-A100.text-auto .form-check.disabled .form-check-label, .bg-success-50.text-auto .form-check.disabled .form-check-label, .bg-success-100.text-auto .form-check.disabled .form-check-label, .bg-success-200.text-auto .form-check.disabled .form-check-label, .bg-success-300.text-auto .form-check.disabled .form-check-label, .bg-success-400.text-auto .form-check.disabled .form-check-label, .bg-success-500.text-auto .form-check.disabled .form-check-label, .bg-success.text-auto .form-check.disabled .form-check-label, .bg-success-A100.text-auto .form-check.disabled .form-check-label, .bg-success-A200.text-auto .form-check.disabled .form-check-label, .bg-success-A400.text-auto .form-check.disabled .form-check-label, .bg-success-A700.text-auto .form-check.disabled .form-check-label, .bg-info-50.text-auto .form-check.disabled .form-check-label, .bg-info-100.text-auto .form-check.disabled .form-check-label, .bg-info-200.text-auto .form-check.disabled .form-check-label, .bg-info-300.text-auto .form-check.disabled .form-check-label, .bg-info-400.text-auto .form-check.disabled .form-check-label, .bg-info-A100.text-auto .form-check.disabled .form-check-label, .bg-info-A200.text-auto .form-check.disabled .form-check-label, .bg-info-A400.text-auto .form-check.disabled .form-check-label, .bg-info-A700.text-auto .form-check.disabled .form-check-label, .bg-warning-50.text-auto .form-check.disabled .form-check-label, .bg-warning-100.text-auto .form-check.disabled .form-check-label, .bg-warning-200.text-auto .form-check.disabled .form-check-label, .bg-warning-300.text-auto .form-check.disabled .form-check-label, .bg-warning-400.text-auto .form-check.disabled .form-check-label, .bg-warning-500.text-auto .form-check.disabled .form-check-label, .bg-warning.text-auto .form-check.disabled .form-check-label, .bg-warning-600.text-auto .form-check.disabled .form-check-label, .bg-warning-700.text-auto .form-check.disabled .form-check-label, .bg-warning-800.text-auto .form-check.disabled .form-check-label, .bg-warning-A100.text-auto .form-check.disabled .form-check-label, .bg-warning-A200.text-auto .form-check.disabled .form-check-label, .bg-warning-A400.text-auto .form-check.disabled .form-check-label, .bg-warning-A700.text-auto .form-check.disabled .form-check-label, .bg-danger-50.text-auto .form-check.disabled .form-check-label, .bg-danger-100.text-auto .form-check.disabled .form-check-label, .bg-danger-200.text-auto .form-check.disabled .form-check-label, .bg-danger-300.text-auto .form-check.disabled .form-check-label, .bg-danger-A100.text-auto .form-check.disabled .form-check-label, .bg-light-500.text-auto .form-check.disabled .form-check-label, .bg-light.text-auto .form-check.disabled .form-check-label, .bg-red-50.text-auto .form-check.disabled .form-check-label, .bg-red-100.text-auto .form-check.disabled .form-check-label, .bg-red-200.text-auto .form-check.disabled .form-check-label, .bg-red-300.text-auto .form-check.disabled .form-check-label, .bg-red-A100.text-auto .form-check.disabled .form-check-label, .bg-blue-50.text-auto .form-check.disabled .form-check-label, .bg-blue-100.text-auto .form-check.disabled .form-check-label, .bg-blue-200.text-auto .form-check.disabled .form-check-label, .bg-blue-300.text-auto .form-check.disabled .form-check-label, .bg-blue-400.text-auto .form-check.disabled .form-check-label, .bg-blue-A100.text-auto .form-check.disabled .form-check-label, .bg-teal-50.text-auto .form-check.disabled .form-check-label, .bg-teal-100.text-auto .form-check.disabled .form-check-label, .bg-teal-200.text-auto .form-check.disabled .form-check-label, .bg-teal-300.text-auto .form-check.disabled .form-check-label, .bg-teal-400.text-auto .form-check.disabled .form-check-label, .bg-teal-A100.text-auto .form-check.disabled .form-check-label, .bg-teal-A200.text-auto .form-check.disabled .form-check-label, .bg-teal-A400.text-auto .form-check.disabled .form-check-label, .bg-teal-A700.text-auto .form-check.disabled .form-check-label, .bg-green-50.text-auto .form-check.disabled .form-check-label, .bg-green-100.text-auto .form-check.disabled .form-check-label, .bg-green-200.text-auto .form-check.disabled .form-check-label, .bg-green-300.text-auto .form-check.disabled .form-check-label, .bg-green-400.text-auto .form-check.disabled .form-check-label, .bg-green-500.text-auto .form-check.disabled .form-check-label, .bg-green.text-auto .form-check.disabled .form-check-label, .bg-green-A100.text-auto .form-check.disabled .form-check-label, .bg-green-A200.text-auto .form-check.disabled .form-check-label, .bg-green-A400.text-auto .form-check.disabled .form-check-label, .bg-green-A700.text-auto .form-check.disabled .form-check-label, .bg-orange-50.text-auto .form-check.disabled .form-check-label, .bg-orange-100.text-auto .form-check.disabled .form-check-label, .bg-orange-200.text-auto .form-check.disabled .form-check-label, .bg-orange-300.text-auto .form-check.disabled .form-check-label, .bg-orange-400.text-auto .form-check.disabled .form-check-label, .bg-orange-500.text-auto .form-check.disabled .form-check-label, .bg-orange.text-auto .form-check.disabled .form-check-label, .bg-orange-600.text-auto .form-check.disabled .form-check-label, .bg-orange-700.text-auto .form-check.disabled .form-check-label, .bg-orange-800.text-auto .form-check.disabled .form-check-label, .bg-orange-A100.text-auto .form-check.disabled .form-check-label, .bg-orange-A200.text-auto .form-check.disabled .form-check-label, .bg-orange-A400.text-auto .form-check.disabled .form-check-label, .bg-orange-A700.text-auto .form-check.disabled .form-check-label, .bg-grey-50.text-auto .form-check.disabled .form-check-label, .bg-grey-100.text-auto .form-check.disabled .form-check-label, .bg-grey-200.text-auto .form-check.disabled .form-check-label, .bg-grey-300.text-auto .form-check.disabled .form-check-label, .bg-grey-400.text-auto .form-check.disabled .form-check-label, .bg-grey-500.text-auto .form-check.disabled .form-check-label, .bg-grey.text-auto .form-check.disabled .form-check-label, .bg-grey-A100.text-auto .form-check.disabled .form-check-label, .bg-grey-A200.text-auto .form-check.disabled .form-check-label, .bg-grey-A400.text-auto .form-check.disabled .form-check-label, .bg-fuse-dark-50.text-auto .form-check.disabled .form-check-label, .bg-fuse-dark-100.text-auto .form-check.disabled .form-check-label, .bg-fuse-dark-200.text-auto .form-check.disabled .form-check-label, .bg-fuse-dark-A100.text-auto .form-check.disabled .form-check-label, .bg-fuse-dark-A200.text-auto .form-check.disabled .form-check-label, .bg-white-500.text-auto .form-check.disabled .form-check-label, .bg-white.text-auto .form-check.disabled .form-check-label {
  color: rgba(0, 0, 0, 0.38) !important;
}
.dark-fg .custom-control-input:disabled ~ .custom-control-description, .dark-fg.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-primary-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-primary-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-primary-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-primary-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-primary-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-secondary-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-secondary-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-secondary-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-secondary-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-secondary-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-secondary-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-success-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-success-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-success-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-success-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-success-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-success-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-success.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-success-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-success-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-success-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-success-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-info-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-info-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-info-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-info-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-info-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-info-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-info-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-info-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-info-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-warning-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-warning-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-warning-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-warning-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-warning-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-warning-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-warning.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-warning-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-warning-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-warning-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-warning-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-warning-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-warning-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-warning-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-danger-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-danger-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-danger-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-danger-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-danger-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-red-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-red-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-red-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-red-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-red-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-teal-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-teal-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-teal-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-teal-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-teal-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-teal-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-teal-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-teal-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-teal-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-green-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-green-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-green-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-green-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-green-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-green-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-green.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-green-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-green-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-green-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-green-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-grey-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-fuse-dark-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-fuse-dark-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-fuse-dark-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-fuse-dark-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-fuse-dark-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-white-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-white.text-auto .custom-control-input:disabled ~ .custom-control-description {
  color: rgba(0, 0, 0, 0.54);
}
.dark-fg #sidenav .nav-link:hover:not(.active), .dark-fg.text-auto #sidenav .nav-link:hover:not(.active), .bg-primary-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-primary-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-primary-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-primary-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-primary-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-secondary-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-secondary-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-secondary-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-secondary-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-secondary-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-secondary-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-success-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-success-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-success-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-success-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-success-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-success-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-success.text-auto #sidenav .nav-link:hover:not(.active), .bg-success-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-success-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-success-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-success-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-info-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-info-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-info-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-info-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-info-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-info-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-info-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-info-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-info-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-warning-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-warning-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-warning-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-warning-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-warning-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-warning-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-warning.text-auto #sidenav .nav-link:hover:not(.active), .bg-warning-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-warning-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-warning-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-warning-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-warning-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-warning-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-warning-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-danger-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-danger-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-danger-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-danger-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-danger-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-light.text-auto #sidenav .nav-link:hover:not(.active), .bg-red-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-red-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-red-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-red-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-red-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-teal-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-teal-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-teal-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-teal-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-teal-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-teal-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-teal-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-teal-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-teal-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-green-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-green-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-green-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-green-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-green-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-green-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-green.text-auto #sidenav .nav-link:hover:not(.active), .bg-green-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-green-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-green-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-green-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-grey-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-fuse-dark-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-fuse-dark-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-fuse-dark-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-fuse-dark-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-fuse-dark-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-white-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-white.text-auto #sidenav .nav-link:hover:not(.active) {
  background: rgba(0, 0, 0, 0.05) !important;
}
.dark-fg #sidenav .nav-link:hover:not(.active) > i, .dark-fg.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-primary-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-primary-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-primary-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-primary-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-primary-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-secondary-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-secondary-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-secondary-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-secondary-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-secondary-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-secondary-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-success-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-success-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-success-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-success-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-success-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-success-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-success.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-success-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-success-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-success-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-success-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-info-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-info-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-info-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-info-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-info-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-info-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-info-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-info-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-info-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-warning-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-warning-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-warning-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-warning-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-warning-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-warning-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-warning.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-warning-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-warning-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-warning-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-warning-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-warning-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-warning-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-warning-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-danger-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-danger-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-danger-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-danger-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-danger-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-red-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-red-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-red-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-red-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-red-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-teal-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-teal-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-teal-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-teal-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-teal-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-teal-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-teal-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-teal-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-teal-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-green-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-green-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-green-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-green-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-green-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-green-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-green.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-green-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-green-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-green-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-green-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-grey-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-fuse-dark-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-fuse-dark-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-fuse-dark-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-fuse-dark-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-fuse-dark-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-white-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-white.text-auto #sidenav .nav-link:hover:not(.active) > i {
  color: rgba(0, 0, 0, 0.54) !important;
}

.custom-control-indicator {
  pointer-events: initial;
}

.custom-select {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: auto;
  border: none;
  border-radius: 0;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
  background-image: none;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-indicator {
  background-color: transparent;
  background-image: none;
  box-shadow: none;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-indicator:before {
  content: "";
}

.custom-file-label {
  padding: 0;
}

.paginate_button:hover {
  background-color: #f1f1f1 !important;
}

.paginate_button .current:hover {
  background-color: #f1f1f1 !important;
}

table.dataTable thead th.select-all-checkbox {
  padding: 10px 18px 10px 10px;
}

table.dataTable thead th,
table.dataTable thead td {
  padding: 10px 18px 10px 10px !important;
}

div#positions {
  margin-top: 8px;
}

div#positions ul {
  margin-top: 4px;
  padding-left: 0px;
  list-style: none;
}

#positions #position-select-list a.remove-position-button {
  display: inline;
  margin: 2px 0px 0px 10px;
  padding-left: 20px;
}

div#positions ul li {
  margin-bottom: 10px;
}

div#positions ul li a {
  margin: 0;
}

#staff-search-results .dataTables_wrapper #search-results-table_filter {
  float: left;
  padding-top: 8px !important;
}

#staff-search-results #search-results-table_paginate {
  float: right;
}

#staff-search-results #search-results-table_paginate {
  height: 40px;
}

#staff-search-results #search-results-table_info {
  float: left;
}

#staff-search-results #search-results-table_length {
  float: left;
}

#staff-search-results #search-results-table_next {
  padding: 0px 0px 0px 0px;
}

#staff-search-results #search-results-table_previous {
  padding: 0px 0px 0px 0px;
}

.dataTables_wrapper .dataTables_length {
  padding: 11px 0px 0px 25px !important;
}

.dropdown-item {
  line-height: 4.8rem;
  height: 4.8rem;
  text-decoration: none;
}

.btn-group,
.btn-group-vertical {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2) , 0px 2px 2px 0px rgba(0, 0, 0, 0.14) , 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2) , 0px 0px 0px 0px rgba(0, 0, 0, 0.14) , 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  min-height: 4rem;
  line-height: 2.4rem;
}
.btn-group > .btn:active, .btn-group > .btn.active, .btn-group > .btn:focus, .btn-group > .btn.focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn.focus {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2) , 0px 0px 0px 0px rgba(0, 0, 0, 0.14) , 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.btn-group > .btn i,
.btn-group > .btn [class^=icon-],
.btn-group > .btn [class*=" icon-"],
.btn-group-vertical > .btn i,
.btn-group-vertical > .btn [class^=icon-],
.btn-group-vertical > .btn [class*=" icon-"] {
  vertical-align: middle;
}
.btn-group .btn-group,
.btn-group-vertical .btn-group {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2) , 0px 0px 0px 0px rgba(0, 0, 0, 0.14) , 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}

.btn-toolbar {
  align-items: center;
  min-height: 6.4rem;
}
.btn-toolbar .btn-group {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2) , 0px 0px 0px 0px rgba(0, 0, 0, 0.14) , 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  margin: 0 0.8rem;
}
.btn-toolbar .btn-group:last-child:after {
  display: none;
}
.btn-toolbar .btn-group .btn {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2) , 0px 0px 0px 0px rgba(0, 0, 0, 0.14) , 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  min-width: 4rem;
  min-height: 4rem;
  line-height: 2.4rem;
}
.btn-toolbar .btn-group .btn:not(.dropdown-toggle) {
  padding: 0.8rem;
}
.btn-toolbar .btn-group .btn-group {
  margin: 0 0.8rem;
}
.btn-toolbar .input-group {
  margin: 0.4rem 0.8rem;
}

.btn + .dropdown-toggle-split {
  min-width: 0;
}

.form-group .btn-success {
  margin-top: 20px !important;
}

.error-msg,
.warning-msg,
.success-msg {
  width: 80%;
  margin: 8px 0px 15px 0px;
  padding: 10px;
  border-width: 1px;
  border-style: solid;
  color: #333333;
}

.error-msg p,
.warning-msg p,
.success-msg p {
  margin: 0;
  padding: 0;
}

.error-msg {
  padding-left: 30px;
  background: #FBE6F2 url(/img/disable.png) no-repeat 5px center;
  border-color: #D893A1;
}

.warning-msg {
  background-color: #ffffcc;
  border-color: #ffcc00;
}

.error-msg h3,
.warning-msg h3,
.success-msg h3 {
  margin-top: 0px;
  margin-bottom: 4px;
}

.error-msg p,
.warning-msg p,
.success-msg p {
  margin: 0;
}

.success-msg {
  padding-left: 30px;
  background: #EDF5FF url(/img/accept.png) no-repeat 5px center;
  border-color: #6699FF;
}

.update-msg {
  padding: 5px;
  background-color: #6699ff;
  color: #fff;
}

.mar-grouping {
  margin: 10px 0px 0px 0px;
  border: 3px solid #CCC;
  padding: 8px;
}

.button-group a {
  margin-bottom: 8px;
}

.file-link-set {
  border: 1px solid #ccc;
  padding: 4px;
  margin-bottom: 8px;
}

#header-business-name {
  font-size: 2.6rem !important;
  font-weight: 600 !important;
  margin: -3px 0px 0px 10px;
}

@media only screen and (max-width: 1000px) {
  #header-business-name {
    margin: 1px 0px 0px 10px !important;
    font-size: 16px !important;
  }
}
.toggle-aside-button {
  width: 9rem !important;
  margin-top: 2px;
  box-shadow: none !important;
}

@media only screen and (max-width: 1000px) {
  .toggle-aside-button {
    padding: 0px;
  }
}
.avatar-wrapper {
  margin-right: 4px;
}

.page-header .button-group a.btn {
  background-color: #fff !important;
}

.page-header .button-group a.btn:hover {
  background-color: #666 !important;
}

.random-class {
  margin-top: 20px;
}

.fuse-ripple-input-wrapper .fuse-ripple-input {
  padding: 0px 30px !important;
}

span.btn {
  padding: 0px !important;
}

.input-group .form-group {
  margin-bottom: 0;
}
.input-group .form-group .form-control {
  width: 100%;
}
.input-group .input-group-addon {
  margin: 0;
  padding: 0;
}
.input-group .input-group-addon .form-check-input,
.input-group .input-group-addon input[type=radio],
.input-group .input-group-addon input[type=checkbox] {
  top: auto;
  bottom: 0;
  left: 10px;
  width: 24px;
  height: 24px;
}
.input-group .input-group-addon .form-check-input ~ .checkbox-icon, .input-group .input-group-addon .form-check-input ~ .custom-control-indicator,
.input-group .input-group-addon .form-check-input ~ .radio-icon, .input-group .input-group-addon .form-check-input ~ .custom-control-indicator,
.input-group .input-group-addon input[type=radio] ~ .checkbox-icon,
.input-group .input-group-addon input[type=radio] ~ .custom-control-indicator,
.input-group .input-group-addon input[type=radio] ~ .radio-icon,
.input-group .input-group-addon input[type=radio] ~ .custom-control-indicator,
.input-group .input-group-addon input[type=checkbox] ~ .checkbox-icon,
.input-group .input-group-addon input[type=checkbox] ~ .custom-control-indicator,
.input-group .input-group-addon input[type=checkbox] ~ .radio-icon,
.input-group .input-group-addon input[type=checkbox] ~ .custom-control-indicator {
  position: absolute;
  top: auto;
  bottom: -8px;
}
.input-group .input-group-btn {
  margin: 0 1.6rem;
}
.input-group .input-group-btn:first-child {
  margin-left: 0;
}
.input-group .input-group-btn:last-child {
  margin-right: 0;
}
.input-group .input-group-addon {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
.input-group .input-group-addon:first-child {
  padding-left: 0;
}
.input-group .input-group-addon:last-child {
  padding-right: 0;
}
.input-group .input-group-append {
  margin-left: 1.6rem;
}
.input-group .input-group-prepend {
  margin-right: 1.6rem;
}

.jumbotron {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2) , 0px 2px 2px 0px rgba(0, 0, 0, 0.14) , 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

/* -------------------------------------- jQuery UI ---------------------------------- */
.ui-datepicker {
  z-index: 4000 !important;
}

/* -------------------------------------- Icons ---------------------------------- */
ul.action-icons li {
  display: inline;
  float: left;
  margin-right: 8px;
}

ul.top-action-icons li {
  margin: 0px 20px 10px 0px;
}

a.action-icon {
  display: block;
  width: 20px;
  height: 20px;
  text-indent: -4000px;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
}

a.icon-with-text {
  width: auto;
  background-position: left center;
  text-indent: 0;
  line-height: 20px;
  padding-left: 25px;
}

a.staff-icon {
  background-image: url(/img/group.png);
}

a.info-icon {
  background-image: url(/img/icons/information.png);
}

a.add-icon {
  background-image: url(/img/add.png);
}

a.approve-icon {
  background-image: url(/img/accept.png);
}

a.disapprove-icon {
  background-image: url(/img/disable.png);
}

a.edit-icon {
  background-image: url(/img/editpage.png);
}

a.copy-icon {
  background-image: url(/img/page_copy.png);
}

a.calendar-icon {
  background-image: url(/img/icons/calendar.png);
}

a.group-icon {
  background-image: url(/img/group.png);
}

a.user-icon {
  background-image: url(/img/user.png);
}

a.email-icon {
  background-image: url(/img/email.png);
}

a.clock-red-icon {
  background-image: url(/img/icons/clock_red.png);
}

a.delete-icon {
  background-image: url(/img/bin_empty.png);
}

a.disable-icon {
  background-image: url(/img/disable.png);
}

a.remove-icon {
  background-image: url(/img/delete.png);
}

a.printer-icon {
  background-image: url(/img/icons/printer.png);
}

a.shift-appt-icon {
  background-image: url(/img/icons/date_go.png);
}

.list-group {
  padding: 0.8rem 0;
}
.list-group.dense {
  padding: 0.4rem 0;
}
.list-group.dense .list-group-item {
  padding: 0.6rem 1.6rem;
  min-height: 4rem;
  line-height: 1.6rem;
}
.list-group.dense .list-group-item > .avatar {
  width: 36px;
  min-width: 36px;
  height: 36px;
  margin: 0 2rem 0 0;
}
.list-group.dense .list-group-item > .avatar > img {
  max-width: 36px;
  max-height: 36px;
}
.list-group.dense .list-group-item.two-line {
  min-height: 6rem;
}
.list-group.dense .list-group-item.three-line {
  min-height: 7.6rem;
}
.list-group .list-group-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: none;
  padding: 0.8rem 1.6rem;
  min-height: 4.8rem;
  line-height: 1.6rem;
  text-decoration: none;
}
.list-group .list-group-item > .icon {
  margin-right: 3.2rem;
}
.list-group .list-group-item > .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 40px;
  height: 40px;
  margin: 0 1.6rem 0 0;
  border-radius: 100%;
}
.list-group .list-group-item > .avatar > img {
  max-width: 40px;
  max-height: 40px;
}
.list-group .list-group-item > .list-item-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.list-group .list-group-item > .secondary-container {
  display: flex;
  margin-left: 1.6rem;
}
.list-group .list-group-item h3 {
  font-size: 1.4rem;
  margin: 0;
}
.list-group .list-group-item h4 {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 1px 0 3px 0;
}
.list-group .list-group-item p {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
}
.list-group .list-group-item.subheader {
  min-height: 4.8rem;
  height: 4.8rem;
  font-weight: 500;
  font-size: 13px;
}
.list-group .list-group-item.subheader.align-with-text {
  padding-left: 72px;
}
.list-group .list-group-item.two-line {
  min-height: 7.2rem;
}
.list-group .list-group-item.three-line {
  min-height: 8.8rem;
  align-items: flex-start;
}
.list-group .list-group-item.three-line > .icon,
.list-group .list-group-item.three-line > .avatar,
.list-group .list-group-item.three-line > .secondary-container {
  margin-top: 0.4rem;
}
.list-group .list-group-item.two-line {
  min-height: 7.2rem;
}
.list-group .list-group-item.three-line {
  min-height: 8.8rem;
  align-items: flex-start;
}
.list-group .list-group-item.three-line > .icon,
.list-group .list-group-item.three-line > .avatar,
.list-group .list-group-item.three-line > .secondary-container {
  margin-top: 0.4rem;
}
#large-modal-iframe {
  border: none;
  height: 600px !important;
}

@media only screen and (max-width: 1000px) {
  #large-modal-iframe {
    height: 400px !important;
  }
}
.nav-tabs li {
  margin: 8px 8px 0px 0px;
}

.nav {
  padding: 0;
}
.nav .subheader {
  height: 5.6rem;
  min-height: 5.6rem;
  color: #6C757D;
  display: flex;
  align-items: center;
  font-weight: 500;
  padding-left: 2.4rem;
}
.nav li.nav-item {
  list-style: none;
}
.nav ul {
  padding: 0;
}
.nav ul > li > .nav-link {
  padding-left: 5.6rem;
}
.nav ul ul > li > .nav-link {
  padding-left: 7.2rem;
}

ul.nav {
  margin: -10px 4px 30px 0px;
}

aside.aside-left ul.nav {
  margin-top: 10px;
}

.nav-link {
  display: flex;
  align-items: center;
  height: 4.8rem;
  color: #495057;
  text-decoration: none;
}
.nav-link.btn {
  text-transform: none;
  text-align: left;
  letter-spacing: normal;
  line-height: normal;
  font-weight: normal;
  box-shadow: none;
}
.nav-link:hover i, .nav-link:hover [class^=icon-], .nav-link:hover [class*=" icon-"], .nav-link.active i, .nav-link.active [class^=icon-], .nav-link.active [class*=" icon-"], .nav-link.active:hover i, .nav-link.active:hover [class^=icon-], .nav-link.active:hover [class*=" icon-"] {
  color: inherit;
}
.nav-link i, .nav-link [class^=icon-], .nav-link [class*=" icon-"] {
  margin-right: 1.6rem;
}
.nav-link > span {
  flex: 1;
}
.nav-link.with-arrow:after {
  font-family: "fuse-iconfont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  transition: transform 0.3s ease-in-out, opacity 0.25s ease-in-out 0.1s, -webkit-transform 0.3s ease-in-out;
}
.nav-link.with-arrow:not(.collapsed):after {
  transform: rotate(90deg);
}
.nav-link.with-arrow.collapsed:after {
  transform: rotate(0deg);
}

.nav-fill .nav-item .nav-link {
  justify-content: center;
}

.nav-justified .nav-item .nav-link, .nav-justified .nav-item.nav-link {
  justify-content: center;
}

.nav-tabs .nav-link {
  color: #6C757D;
  position: relative;
  box-shadow: none !important;
  justify-content: center;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: transparent;
}
.nav-tabs .nav-link.active:not(.dropdown-toggle):after,
.nav-tabs .nav-item.show .nav-link:not(.dropdown-toggle):after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #3C4252;
}

#modify-sidebar li.subheader {
  height: 25px !important;
  min-height: 25px !important;
  margin: 40px 20px 20px 20px;
  padding: 0px 0px 8px 0px;
  font-size: 20px;
  line-height: 15px !important;
  border-bottom: 2px solid #666;
}

#modify-sidebar a.nav-link {
  padding: 10px;
  text-align: center;
  margin: 0px 20px 8px 20px;
  border-top: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
  border-bottom: 3px solid #e8e8e8;
  background-color: #f7f7f7;
  height: 40px;
}

#modify-sidebar a.nav-link:hover {
  background-color: #f0f0f0;
}

.navbar-brand {
  display: flex;
  height: 4.8rem;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
}

.navbar-text {
  display: flex;
  height: 4.8rem;
  flex-direction: row;
  align-items: center;
}

.pagination {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2) , 0px 2px 2px 0px rgba(0, 0, 0, 0.14) , 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  display: inline-flex;
}
.pagination .page-link {
  min-width: 4.8rem;
  min-height: 5.6rem;
  margin-left: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden !important;
  text-decoration: none;
}
.pagination .page-link:focus, .pagination .page-link:active {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.54);
  box-shadow: none;
}
.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1.6rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  overflow: hidden;
  font-size: 1.4rem;
  line-height: 1.6rem;
  text-align: center;
  background-color: #E9ECEF;
  border-radius: 2px;
}

.progress-bar {
  height: 1.6rem;
  line-height: 1.6rem;
  color: #FFF;
  background-color: #3C4252;
  transition: width 0.6s ease;
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1.6rem 1.6rem;
}

.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}

.ui-pnotify.md {
  width: auto !important;
}
.ui-pnotify.md .ui-pnotify-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  background: #323232;
  color: #FFFFFF;
  min-height: 4.8rem !important;
  height: 4.8rem !important;
  border-radius: 2px;
  padding: 1.4rem 2.4rem;
}
.ui-pnotify.md .ui-pnotify-container .ui-pnotify-title,
.ui-pnotify.md .ui-pnotify-container .ui-pnotify-icon,
.ui-pnotify.md .ui-pnotify-container .ui-pnotify-closer,
.ui-pnotify.md .ui-pnotify-container .ui-pnotify-sticker {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.ui-pnotify.md .ui-pnotify-container .ui-pnotify-text {
  white-space: nowrap;
  margin-right: 2.4rem;
  line-height: 2rem;
}
.ui-pnotify.md .ui-pnotify-container .ui-pnotify-action-bar {
  margin: 0 0 0 auto !important;
  text-align: left !important;
}
.ui-pnotify.md .ui-pnotify-container .ui-pnotify-action-bar .btn.btn-link {
  padding: 0;
  color: #F44336;
}
.ui-pnotify.md.multiline .ui-pnotify-container {
  height: auto !important;
  min-height: 8rem !important;
  padding: 2.4rem;
}
.ui-pnotify.md.multiline .ui-pnotify-container .ui-pnotify-text {
  max-width: 240px;
  width: 240px;
  line-height: 1.5;
  white-space: normal;
}
.ui-pnotify.md.multiline.action-on-bottom .ui-pnotify-container {
  max-width: 376px;
  min-height: 12.2rem !important;
  padding: 2.4rem 2.4rem 1.4rem 2.4rem;
}
.ui-pnotify.md.multiline.action-on-bottom .ui-pnotify-container .ui-pnotify-text {
  max-width: none;
  width: 100%;
  margin: 0 0 1.4rem 0;
}

.table th,
.table td {
  padding: 1.6rem 1.2rem;
  vertical-align: middle;
}
.table thead th {
  border-bottom: 1px solid #E9ECEF;
  font-weight: 500;
}

.dataTables_wrapper {
  overflow-x: scroll !important;
  overflow-y: hidden !important;
}

/* Overwrite the default to keep the scrollbar always visible */
/*
::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}
*/
table,
table.dataTable {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc !important;
  width: 99% !important;
  margin: 4px 0px 0px 0px !important;
}

/*
table thead th {
    background-color: #f1f1f1;
} 
*/
table thead {
  background: #666 url(/img/bar.gif) repeat-x left center;
}

table thead th,
table td {
  border-right: 1px solid #ccc;
  vertical-align: middle !important;
}

table.dataTable.stripe tbody tr.odd {
  background-color: #f0f0f6 !important;
}

.dataTables_filter {
  margin-right: 12px;
}

#sign-up-now {
  display: inline;
  float: left;
  margin: 234px 0px 0px 15px;
}

a#sign-up-now-button {
  display: block;
  width: 240px;
  height: 86px;
  background: transparent url(/img/home_signup.png) no-repeat top left;
  text-indent: -4000px;
}

.card-explanation {
  float: left;
  width: 60%;
  margin-top: -6px;
}

.card-top-buttons {
  float: right;
  margin: 0px 10px 20px 0px;
}

#staffApptSelect {
  margin: 0 0 1em 0;
  padding: 15px;
  border: 1px solid #ccc;
  background: #f8f8f8;
}

#employeeResults {
  height: 150px;
  margin: 0px 0px 10px 0px;
  padding: 10px 0px 0px 10px;
  overflow-y: auto;
  border: 1px solid #ccc;
  background-color: #fff;
}

.source .hll {
  background-color: #FFC;
}
.source .c {
  color: #999;
}
.source .k {
  color: #069;
}
.source .o {
  color: #555;
}
.source .cm {
  color: #999;
}
.source .cp {
  color: #099;
}
.source .c1 {
  color: #999;
}
.source .cs {
  color: #999;
}
.source .gd {
  background-color: #FCC;
  border: 1px solid #C00;
}
.source .ge {
  font-style: italic;
}
.source .gr {
  color: #F00;
}
.source .gh {
  color: #030;
}
.source .gi {
  background-color: #CFC;
  border: 1px solid #0C0;
}
.source .go {
  color: #AAA;
}
.source .gp {
  color: #009;
}
.source .gu {
  color: #030;
}
.source .gt {
  color: #9C6;
}
.source .kc {
  color: #069;
}
.source .kd {
  color: #069;
}
.source .kn {
  color: #069;
}
.source .kp {
  color: #069;
}
.source .kr {
  color: #069;
}
.source .kt {
  color: #078;
}
.source .m {
  color: #F60;
}
.source .s {
  color: #D44950;
}
.source .na {
  color: #4F9FCF;
}
.source .nb {
  color: #366;
}
.source .nc {
  color: #0A8;
}
.source .no {
  color: #360;
}
.source .nd {
  color: #99F;
}
.source .ni {
  color: #999;
}
.source .ne {
  color: #C00;
}
.source .nf {
  color: #C0F;
}
.source .nl {
  color: #99F;
}
.source .nn {
  color: #0CF;
}
.source .nt {
  color: #2F6F9F;
}
.source .nv {
  color: #033;
}
.source .ow {
  color: #000;
}
.source .w {
  color: #BBB;
}
.source .mf {
  color: #F60;
}
.source .mh {
  color: #F60;
}
.source .mi {
  color: #F60;
}
.source .mo {
  color: #F60;
}
.source .sb {
  color: #C30;
}
.source .sc {
  color: #C30;
}
.source .sd {
  font-style: italic;
  color: #C30;
}
.source .s2 {
  color: #C30;
}
.source .se {
  color: #C30;
}
.source .sh {
  color: #C30;
}
.source .si {
  color: #A00;
}
.source .sx {
  color: #C30;
}
.source .sr {
  color: #3AA;
}
.source .s1 {
  color: #C30;
}
.source .ss {
  color: #FC3;
}
.source .bp {
  color: #366;
}
.source .vc {
  color: #033;
}
.source .vg {
  color: #033;
}
.source .vi {
  color: #033;
}
.source .il {
  color: #F60;
}
.source .css .o,
.source .css .o + .nt,
.source .css .nt + .nt {
  color: #999;
}
.source .language-bash::before {
  color: #009;
  content: "$ ";
  user-select: none;
}
.source .language-powershell::before {
  color: #009;
  content: "PM> ";
  user-select: none;
}

.doc .content > .row > [class^=col-] {
  margin-bottom: 4.8rem;
}
.doc .doc-title {
  margin: 0;
}
.doc .example {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  height: 100%;
  position: relative;
  background: #FFFFFF;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2) , 0px 1px 1px 0px rgba(0, 0, 0, 0.14) , 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.doc .example:after {
  display: block;
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 32px;
  height: 32px;
  content: "";
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0.2;
}
.doc .example > .description {
  display: flex;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.doc .example > .description .description-text h2, .doc .example > .description .description-text h3, .doc .example > .description .description-text h4, .doc .example > .description .description-text h5 {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
}
.doc .example > .description .description-text h2 + p, .doc .example > .description .description-text h3 + p, .doc .example > .description .description-text h4 + p, .doc .example > .description .description-text h5 + p {
  margin: 2px 0 0 0;
  color: rgba(0, 0, 0, 0.54);
}
.doc .example > .description .toggle-source-preview {
  cursor: pointer;
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  margin-left: auto;
  padding-left: 24px;
  color: rgba(0, 0, 0, 0.54);
}
.doc .example > .description .toggle-source-preview .icon-code-tags {
  display: block;
}
.doc .example > .description .toggle-source-preview .icon-eye-outline {
  display: none;
}
.doc .example > .description .toggle-source-preview:hover {
  color: #3C4252;
}
.doc .example.show-source > .description .toggle-source-preview .icon-code-tags {
  display: none;
}
.doc .example.show-source > .description .toggle-source-preview .icon-eye-outline {
  display: block;
}
.doc .example.show-source > .source-preview-wrapper > .preview {
  transform: translateY(200%);
}
.doc .example.show-source > .source-preview-wrapper > .source {
  transform: translateY(0);
}
.doc .example > .source-preview-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.doc .example > .source-preview-wrapper > .preview,
.doc .example > .source-preview-wrapper > .source {
  transition: transform 0.4s ease-in-out;
  backface-visibility: hidden;
}
.doc .example > .source-preview-wrapper > .preview {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: none;
  padding: 2.4rem;
  transform: translateY(0);
}
@media (max-width: 767.98px) {
  .doc .example > .source-preview-wrapper > .preview {
    padding: 1.6rem;
  }
}
.doc .example > .source-preview-wrapper > .preview .preview-elements {
  max-width: 100%;
}
.doc .example > .source-preview-wrapper > .preview .preview-elements > .btn-group {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}
.doc .example > .source-preview-wrapper > .preview .preview-elements > .form-control + .form-control {
  margin-top: 0.8rem;
}
.doc .example > .source-preview-wrapper > .preview .preview-elements > .nav + .nav,
.doc .example > .source-preview-wrapper > .preview .preview-elements > .alert + .alert,
.doc .example > .source-preview-wrapper > .preview .preview-elements > .navbar + .navbar,
.doc .example > .source-preview-wrapper > .preview .preview-elements > .progress + .progress,
.doc .example > .source-preview-wrapper > .preview .preview-elements > .progress + .btn {
  margin-top: 1.6rem;
}
.doc .example > .source-preview-wrapper > .preview .preview-elements > .dropdown-menu:first-child {
  position: static;
  display: block;
}
.doc .example > .source-preview-wrapper > .preview .preview-elements > .form-group:last-child {
  margin-bottom: 0;
}
.doc .example > .source-preview-wrapper > .source {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  z-index: 99;
  background: #FFFFFF;
  transform: translateY(-100%);
}
.doc .example > .source-preview-wrapper > .source:before {
  display: block;
  position: absolute;
  content: " HTML ";
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.74);
  line-height: 1;
  top: 0;
  right: 0;
  border: 1px solid #DDDDDD;
  border-top: none;
  border-right: none;
  padding: 2px 8px;
  background: #F7F7F7;
}
.doc .example > .source-preview-wrapper > .source pre {
  margin: 0;
  background-image: linear-gradient(rgba(25, 118, 210, 0.025) 50%, transparent 50%);
  background-size: 3em 3em;
  background-origin: content-box;
  font-size: 12px;
  min-height: 100%;
  white-space: pre-wrap;
}
.doc .example > .source-preview-wrapper > .source pre > code {
  display: block;
  position: relative;
  padding: 19px 16px;
}
.doc.buttons-doc .example .preview .btn:not(.btn-block) {
  margin: 0.4rem;
}
.doc.buttons-doc .example .preview .btn-group .btn {
  margin: 0;
}
.doc.buttons-doc .example.block-level-btn-example .preview .preview-elements {
  width: 100%;
}
.doc.buttons-doc .example.block-level-btn-example .preview .preview-elements .btn {
  margin-bottom: 1.6rem;
}
.doc.button-group-doc .example .preview .btn-group-vertical {
  margin: 0.8rem;
}
.doc.cards-doc .example .source-preview-wrapper {
  background: #FAFAFA;
}
.doc.dropdowns-doc .example {
  min-height: 540px;
}
.doc.dropdowns-doc .example .preview .btn-group {
  margin: 0.4rem;
}
.doc.dropdowns-doc .example .preview .preview-elements > .dropdown-menu:first-child {
  position: static;
  display: block;
}
.doc.forms-doc .example .preview .preview-elements {
  width: 100%;
}
.doc.input-group-doc .example .preview .preview-elements {
  width: 100%;
}
.doc.tooltips-doc .example {
  min-height: 540px;
}
.doc.tooltips-doc .example .bd-example-tooltips {
  text-align: center;
}
.doc.tooltips-doc .example .bd-example-tooltips > .btn {
  margin: 1.6rem;
}
.doc.tooltips-doc .example.tooltip-static .preview-elements .tooltip {
  position: relative;
  display: inline-block;
  margin: 10px 20px;
  opacity: 1;
}
.doc.tooltips-doc .example.tooltip-static .preview-elements .bs-tooltip-top-docs .arrow,
.doc.tooltips-doc .example.tooltip-static .preview-elements .bs-tooltip-bottom-docs .arrow {
  left: 50%;
}
.doc.tooltips-doc .example.tooltip-static .preview-elements .bs-tooltip-right-docs .arrow,
.doc.tooltips-doc .example.tooltip-static .preview-elements .bs-tooltip-left-docs .arrow {
  top: 50%;
}
.doc.popovers-doc .example {
  min-height: 540px;
}
.doc.popovers-doc .example.popovers-static .preview-elements .popover {
  position: relative;
  display: block;
  float: left;
  width: 260px;
  margin: 1.25rem;
}
.doc.popovers-doc .example.popovers-static .preview-elements .bs-popover-top-docs .arrow,
.doc.popovers-doc .example.popovers-static .preview-elements .bs-popover-bottom-docs .arrow {
  left: 50%;
}
.doc.popovers-doc .example.popovers-static .preview-elements .bs-popover-right-docs .arrow,
.doc.popovers-doc .example.popovers-static .preview-elements .bs-popover-left-docs .arrow {
  top: 50%;
}
.doc.popovers-doc .example .bd-example-popovers .btn {
  margin: 0.8rem;
}
.doc.modal-doc .example.modal-components .preview .modal {
  display: block;
  position: relative;
  padding: 0.8rem;
}
.doc.modal-doc #gridSystemModal .row > .col,
.doc.modal-doc #gridSystemModal .row > [class^=col-] {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: rgba(86, 61, 124, 0.15);
  border: 1px solid rgba(86, 61, 124, 0.2);
}
.doc.navs-doc #horizontal-alignment-right .preview-elements {
  width: 100%;
}
.doc.navbar-doc .preview-elements {
  width: 100%;
}
.doc.pagination-doc .preview-elements {
  width: 100%;
}
.doc.progress-doc .preview-elements {
  width: 100%;
}
.doc.simple-table-doc .preview-elements {
  width: 100%;
}
.doc.data-table-doc .preview-elements {
  width: 100%;
}
.doc.icons-doc .icons > div {
  width: 112px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 16px;
}

#mail .search-bar {
  height: 5.6rem;
  background: #FFFFFF;
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2) , 0px 7px 10px 1px rgba(0, 0, 0, 0.14) , 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}
#mail .search-bar .sidebar-toggle-button {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 0 !important;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
#mail .search-bar .search-bar-input {
  height: 5.6rem;
  color: rgba(0, 0, 0, 0.54);
  border: none;
  outline: none;
}
#mail .thread-list .no-threads {
  background: #FAFAFA;
  width: 100%;
  text-align: center;
  padding: 32px;
  font-size: 20px;
}
#mail .thread-list .thread {
  background: #FAFAFA;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
#mail .thread-list .thread.unread {
  background: #FFFFFF;
}
#mail .thread-list .thread.unread .info .name,
#mail .thread-list .thread.unread .info .subject {
  font-weight: 700;
}
#mail .thread-list .thread.unread .info .message .labels {
  background: #FFFFFF;
}
#mail .thread-list .thread.selected {
  background: #FFF8E1;
}
#mail .thread-list .thread.selected .info .message .labels {
  background: #FFF8E1;
}
#mail .thread-list .thread .info .name {
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 0.8rem;
}
#mail .thread-list .thread .info .name .avatar {
  background: #039BE5;
}
#mail .thread-list .thread .info .name .has-attachment {
  margin-left: 0.8rem;
  transform: rotate(90deg);
}
#mail .thread-list .thread .info .message {
  position: relative;
  color: rgba(0, 0, 0, 0.54);
}
#mail .thread-list .thread .info .message .labels {
  position: absolute;
  background: #FAFAFA;
  top: 0;
  right: 0;
  padding-left: 6px;
}
#mail .thread-list .thread .info .message .labels .label:first-child {
  margin-left: 0;
}
#mail .thread-list .thread .time {
  text-align: center;
}
#mail .thread-list .thread .actions .icon-star,
#mail .thread-list .thread .actions .icon-label {
  color: #FFC107;
}
@media (max-width: 991.98px) {
  #mail .page-sidebar .header {
    color: rgba(0, 0, 0, 0.87);
  }
}

#contacts .page-header {
  height: 7.6rem;
  min-height: 7.6rem;
  max-height: 7.6rem;
}
#contacts .page-header .search-wrapper {
  max-width: 24rem;
}
#contacts .page-content-wrapper .page-content {
  padding: 2.4rem 9rem 2.4rem 0;
}
#contacts .page-content-wrapper .page-content .contacts-list {
  width: 100%;
}
#contacts .page-content-wrapper .page-content .contacts-list .contacts-list-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
#contacts .page-content-wrapper .page-content .contacts-list .contact-item {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
#contacts .page-content-wrapper .page-content .contacts-list .contact-item .actions .icon-star {
  color: #FFC107;
}

#file-manager .page-header {
  position: relative;
}
#file-manager .page-header .header-content {
  height: 100%;
}
#file-manager .page-header .header-content .breadcrumb {
  margin: 0;
}
#file-manager .page-header #add-file-button {
  position: absolute;
  left: 2.4rem;
  bottom: -2.8rem;
  z-index: 99;
}
#file-manager .page-sidebar {
  width: 32rem;
  max-width: 90%;
  background: #FFFFFF;
}
#file-manager .page-sidebar .header {
  height: 10rem;
  min-height: 10rem;
  max-height: 10rem;
  padding: 2.4rem;
}
#file-manager .page-sidebar .content .file-details .preview {
  height: 240px;
}
#file-manager .page-sidebar .content .file-details .offline-switch {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-weight: 500;
}
#file-manager .page-content {
  background-color: #FFFFFF;
}
#file-manager .file-icon .icon-folder:before {
  color: #FFB300;
}
#file-manager .file-icon .icon-document:before {
  color: #1565C0;
}
#file-manager .file-icon .icon-spreadsheet:before {
  color: #4CAF50;
}
#file-manager .list-view tr td {
  padding: 0;
  height: 7.5rem;
  vertical-align: middle;
}
#file-manager .list-view > thead tr th {
  padding: 1.6rem 0;
}
#file-manager .list-view > thead tr th:first-child {
  border-bottom: none;
  width: 10.6rem;
}
#file-manager .list-view > tbody tr {
  cursor: pointer;
  outline: none;
}
#file-manager .list-view > tbody tr.selected {
  background: #E3F2FD;
}
#file-manager .list-view > tbody tr td {
  border-bottom: none;
}
#file-manager .list-view > tbody tr td.file-icon {
  text-align: center;
}
#file-manager .list-view > tbody tr td.name {
  font-weight: 500;
}
#file-manager .list-view > tbody tr td.type {
  text-transform: capitalize;
}
#file-manager .list-view > tbody tr td.owner {
  text-transform: capitalize;
}
#file-manager .list-view > tbody tr td.show-details {
  text-align: center;
}
#file-manager .list-view > tbody tr td.more {
  text-align: center;
}

#todo .search-bar {
  height: 5.6rem;
  background: #FFFFFF;
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2) , 0px 7px 10px 1px rgba(0, 0, 0, 0.14) , 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}
#todo .search-bar .sidebar-toggle-button {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 0 !important;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
#todo .search-bar .search-bar-input {
  height: 5.6rem;
  color: rgba(0, 0, 0, 0.54);
  border: none;
  outline: none;
}
#todo .todo-items {
  background: #FAFAFA;
}
#todo .todo-items .todo-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
#todo .todo-items .todo-item .tags .tag {
  background-color: rgba(0, 0, 0, 0.08);
  color: black;
}
#todo .todo-items .todo-item .tags .tag .tag-color {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
}
#todo .todo-items .todo-item.completed {
  background: #EEEEEE;
}
#todo .todo-items .todo-item.completed .title,
#todo .todo-items .todo-item.completed .notes {
  color: rgba(0, 0, 0, 0.54);
  text-decoration: line-through;
}
#todo .todo-items .todo-item.selected {
  background: #FFF8E1;
}
#todo .todo-items .todo-item .info .title {
  font-size: 1.5rem;
  font-weight: 500;
}
#todo .todo-items .todo-item .buttons .icon-alert-circle {
  color: #E53935;
}
#todo .todo-items .todo-item .buttons .icon-star {
  color: #FFC107;
}
@media (max-width: 991.98px) {
  #todo .page-sidebar .header {
    color: rgba(0, 0, 0, 0.87);
  }
}

#chat {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#chat .page-content-wrapper {
  display: flex;
  flex: 1;
  max-width: 1400px;
}
#chat .page-content-wrapper > .page-content-card {
  flex-direction: row;
  flex: 1 1 auto;
  position: relative;
  background: url("/assets/images/patterns/rain-grey.png");
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar {
  position: relative;
  overflow: hidden;
  width: 40rem;
  background: #FFF;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar .toolbar {
  height: auto;
  min-height: auto;
  max-height: none;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views {
  height: 100%;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views .view {
  height: 100%;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views .view > .content {
  overflow-x: hidden;
  overflow-y: auto;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #chats-view .toolbar {
  background-color: #F3F4F5;
  color: rgba(0, 0, 0, 0.87);
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #chats-view .toolbar .toolbar-top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  height: 6.4rem;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #chats-view .toolbar .toolbar-top .avatar-wrapper {
  cursor: pointer;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #chats-view .toolbar .toolbar-top .avatar-wrapper .status {
  position: absolute;
  top: 2.8rem;
  left: 2.8rem;
  border-radius: 50%;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #chats-view .toolbar .toolbar-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #FAFAFA;
  height: 6.4rem;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #chats-view .toolbar .toolbar-bottom .search-wrapper {
  height: 3.6rem;
  background-color: #FFFFFF;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #chats-view > .content .chat-list .contact {
  min-height: 8.8rem;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #chats-view > .content .chat-list .contact .last-message {
  max-width: 180px;
  margin-bottom: 0;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #chats-view > .content .chat-list .contact .last-message-time {
  white-space: nowrap;
  font-size: 1.3rem;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #chats-view > .content .chat-list .contact.unread .name, #chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #chats-view > .content .chat-list .contact.unread .last-message, #chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #chats-view > .content .chat-list .contact.unread .last-message-time {
  font-weight: 500;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #chats-view > .content .chat-list .contact .unread-message-count {
  border-radius: 50%;
  text-align: center;
  width: 24px;
  height: 24px;
  line-height: 24px;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #contacts-view > .toolbar .toolbar-top {
  height: 6.4rem;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #contacts-view > .toolbar .toolbar-bottom {
  height: 6.4rem;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #contacts-view > .toolbar .toolbar-bottom .search-wrapper {
  height: 3.6rem;
  background-color: #FFFFFF;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #contacts-view > .content .contact-list .contact {
  position: relative;
  height: 8.8rem;
  min-height: 8.8rem;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #contacts-view > .content .contact-list .contact .mood {
  font-size: 1.3rem;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #user-view > .toolbar {
  height: 30rem;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #user-view > .toolbar .toolbar-top {
  height: 6.4rem;
}
#chat .page-content-wrapper > .page-content-card > .left-sidebar #chat-left-sidebar-views #user-view > .toolbar .toolbar-bottom .search-wrapper {
  height: 3.6rem;
  background-color: #FFFFFF;
}
#chat .page-content-wrapper > .page-content-card > .page-content {
  overflow: hidden;
  flex: 1;
  background: transparent;
}
#chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views {
  display: flex;
  flex: 1;
}
#chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views > .view {
  flex: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.8));
}
#chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views #start-view .big-circle {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.8));
  border-radius: 50%;
  width: 300px;
  height: 300px;
  line-height: 300px;
  text-align: center;
}
#chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views #start-view .app-title {
  font-weight: 500;
}
#chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views #chat-view .toolbar {
  flex: 1 0 auto;
  background-color: #F3F4F5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  height: 6.4rem;
  max-height: 6.4rem;
}
#chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views #chat-view .chat-content {
  flex: 1 1 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
@-moz-document url-prefix() {
  #chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views #chat-view .chat-content {
    flex: 1 0 0px;
  }
}
#chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views #chat-view .chat-content .chat-messages .message-row .bubble {
  position: relative;
  padding: 0.6rem 0.7rem 0.8rem 0.9rem;
  background-color: #FFF;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
  border-radius: 6px;
}
#chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views #chat-view .chat-content .chat-messages .message-row .bubble:before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAADGUExURQAAAP////b29vn5+f///wAAAP///wAAAAAAAP///9ra2v////j4+PHx8fv7++Hh4fHx8f////////////////39/QAAAP////////z8/P////39/f39/fz8/P////////////z8/P////////////z8/P////////////v7+/Hx8f///9bW1vz8/K2trf////39/f39/WJiYgAAAExMTFtbWwAAAN3d3cjIyPr6+vX19QAAAO7u7vz8/NTU1Ofn5zMzM////zGPlXsAAABBdFJOUwAcm/kREh4CCDWL1SneR6TfAQffhMYK/A5nRrLWfRc5DW2ih5f+19Kn+9v4g/1LCJuXHwQUKgahcXS6DNnlDMMKKzPoTgAAAKBJREFUKM+V08USwmAQA+C/0NIWd3d3d8/7vxTMcIPkQK7f7CG7s8bQAOY/SCuwFYQU1P+eiCqIK2gpWCmoCrAgoKQgJ8CHgIqAMjg0MxxSQ3DogEMWFBZtUPAHYGB1CyDQWE6AH7BrfXzlAxGAQhECTGAmwN1Okz0Gb/LW4fEItIfrOfNELMh3tck7u+PhcT2zQ7l77/K8iY8yJwV3BeYFqpc/uSyPGdAAAAAASUVORK5CYII=);
  content: "";
  position: absolute;
  left: -1.1rem;
  bottom: 0.3rem;
  width: 1.2rem;
  height: 1.9rem;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
#chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views #chat-view .chat-content .chat-messages .message-row .bubble .message {
  white-space: pre-wrap;
}
#chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views #chat-view .chat-content .chat-messages .message-row .bubble .time {
  font-size: 1.1rem;
}
#chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views #chat-view .chat-content .chat-messages .message-row.user {
  align-items: flex-end;
}
#chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views #chat-view .chat-content .chat-messages .message-row.user .avatar {
  order: 2;
  margin: 0 0 0 16px;
}
#chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views #chat-view .chat-content .chat-messages .message-row.user .bubble {
  margin-left: auto;
  background-color: #E8F5E9;
  border: 1px solid #DFEBE0;
  order: 1;
}
#chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views #chat-view .chat-content .chat-messages .message-row.user .bubble:before {
  right: -11px;
  left: auto;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAD2UExURQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRsXAAAANzwzNPmxNrtyau5oIWRedDkwNntyczgwdfpyJ+/n97wzsLWtNjsytvwzczfvtPmxau6nNjqxtrtyio1KtzwzNjryAAAANzwzgAAANzwzK7Aor/Us9Lnw8vevAAAAMzevtbpxrvMrX+IdwAAAEROOi45Lr3MrZGjf9LoxX+MctnqydLkwhgYGMzfv9vuyQAAANzwzNvuy9zxy7vMu7XGqNvtzKKykwAAANruzKq6nLnMriQkGMXXuL3PsNjsySgzKAAAANLkw83fvd3vy9z4xtzwzRpFmIEAAABQdFJOUwAXChEGBAMBAgwhDvJ7k0YqMc0Zmwj6apf2kjU0+dkw/swh/CP9j2Wr2gndvaYeBRoxQg6gUPt/FaHJGdTj9A9k7XQLeE6iFcN12xkSt9r4NKizowAAAMFJREFUKM+V0sdywlAMBVDbMX7PQCihQ+iQ0HsJvfem/P/PwBIzugu0PXNnNNJVyPmhsIPhhoB2COwIGuLdhAcl3AhCBoBoHUC6BCBbA0C/EkBFB5D/FjxQwQYg1RI8UKINgDoSAPUlAPqUAMgfAEBfXsEDBV0+Hogi4Zhg4THj9YwHoqEBYOrgYTI3GVgMNn8r+Qq94k9yZNosW/3Hy9VuTjWfHkOX6367bGZUU7de66ieHZrO1OGg8Z1WTgYAFLgD5S1PCkzo1B0AAAAASUVORK5CYII=);
}
#chat .page-content-wrapper > .page-content-card > .page-content #chat-content-views #chat-view .chat-footer {
  flex: 1 0 auto;
  min-height: 6.4rem;
  max-height: 9.6rem;
  background-color: #F3F4F5;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
#chat .page-content-wrapper > .page-content-card .avatar-wrapper {
  position: relative;
}
#chat .page-content-wrapper > .page-content-card .avatar-wrapper .status {
  position: absolute;
  top: 28px;
  left: 28px;
  border-radius: 50%;
}
#chat .page-content-wrapper > .page-content-card .avatar-wrapper .status.online {
  color: #4CAF50;
}
#chat .page-content-wrapper > .page-content-card .avatar-wrapper .status.online:before {
  content: "";
}
#chat .page-content-wrapper > .page-content-card .avatar-wrapper .status.do-not-disturb {
  color: #F44336;
}
#chat .page-content-wrapper > .page-content-card .avatar-wrapper .status.do-not-disturb:before {
  content: "";
}
#chat .page-content-wrapper > .page-content-card .avatar-wrapper .status.away {
  background-color: #FFC107;
  color: #FFFFFF;
}
#chat .page-content-wrapper > .page-content-card .avatar-wrapper .status.away:before {
  content: "";
}
#chat .page-content-wrapper > .page-content-card .avatar-wrapper .status.offline {
  color: #4CAF50;
  background-color: #FFFFFF;
}
#chat .page-content-wrapper > .page-content-card .avatar-wrapper .status.offline:before {
  content: "";
}

#project-dashboard .page-header {
  height: 16rem;
  min-height: 16rem;
  max-height: 16rem;
}
#project-dashboard .page-header .project-selection .selected-project {
  background: rgba(0, 0, 0, 0.12);
  color: #FFF;
}
#project-dashboard .page-header .project-selection .project-selector {
  margin-left: 0.1rem;
  background: rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
#project-dashboard .page-header .project-selection .project-selector i {
  color: #FFF;
}
#project-dashboard .page-content .nav-tabs {
  padding: 0 2.4rem;
  background-color: #FFFFFF;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
}
#project-dashboard .page-content .tab-content .widget-group .widget .widget-header {
  height: 5.5rem;
}
#project-dashboard .page-content .tab-content #home-tab-pane .widget-group .widget .widget-content .title {
  font-size: 7.2rem;
  line-height: 7.2rem;
}
#project-dashboard .page-content .tab-content #home-tab-pane .widget-group .widget .widget-content .sub-title {
  font-weight: 500;
}
#project-dashboard .page-content .tab-content #home-tab-pane #widget5-main-chart {
  height: 42rem;
}
#project-dashboard .page-content .tab-content #home-tab-pane #widget5-supporting-charts .chart-wrapper {
  height: 5rem;
}
#project-dashboard .page-content .tab-content #home-tab-pane #widget6-main-chart {
  height: 40rem;
}
#project-dashboard .page-content .tab-content #budget-summary-tab-pane #widget8-main-chart {
  height: 40rem;
}
#project-dashboard .page-content .tab-content #budget-summary-tab-pane #widget9-weeklySpent .chart-wrapper,
#project-dashboard .page-content .tab-content #budget-summary-tab-pane #widget9-totalSpent .chart-wrapper,
#project-dashboard .page-content .tab-content #budget-summary-tab-pane #widget9-remaining .chart-wrapper {
  height: 5rem;
}
#project-dashboard .page-sidebar {
  width: 25rem;
  min-width: 25rem;
}
#project-dashboard .page-sidebar .widget-group .widget-now .widget-content .month {
  font-size: 2.4rem;
}
#project-dashboard .page-sidebar .widget-group .widget-now .widget-content .day {
  font-size: 7.2rem;
  line-height: 8.8rem;
}
#project-dashboard .page-sidebar .widget-group .widget-now .widget-content .year {
  font-size: 2.4rem;
}
#project-dashboard .page-sidebar .widget-group .widget-weather .today-weather > span {
  font-weight: 300;
  font-size: 4.5rem;
  line-height: 6.4rem;
}

#server-dashboard .page-content .widget-group .widget .widget-header {
  height: 5.5rem;
}
#server-dashboard .page-content .widget-group .widget.widget2, #server-dashboard .page-content .widget-group .widget.widget3, #server-dashboard .page-content .widget-group .widget.widget4, #server-dashboard .page-content .widget-group .widget.widget5 {
  height: 170px;
  display: flex;
  flex-direction: column;
}
#server-dashboard .page-content .widget-group .widget.widget2 .widget-content, #server-dashboard .page-content .widget-group .widget.widget3 .widget-content, #server-dashboard .page-content .widget-group .widget.widget4 .widget-content, #server-dashboard .page-content .widget-group .widget.widget5 .widget-content {
  flex: 1;
}
#server-dashboard .page-content #widget1-main-chart {
  height: 32rem;
}
#server-dashboard .page-content #widget4-main-chart {
  height: 5rem;
}
#server-dashboard .page-content #widget6-main-chart {
  height: 14rem;
}

#e-commerce-products .page-content > .header .search-wrapper {
  max-width: 48rem;
}
#e-commerce-products #e-commerce-products-table_wrapper #e-commerce-products-table .product-image {
  width: 5.2rem;
  height: 5.2rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

#e-commerce-product > .page-header {
  height: 12rem;
  min-height: 12rem;
  max-height: 12rem;
}
#e-commerce-product > .page-content #product-images-tab-pane .product-image {
  position: relative;
  width: 100px;
  min-height: 100px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

#e-commerce-orders .page-content > .header .search-wrapper {
  max-width: 48rem;
}
#e-commerce-orders #e-commerce-orders-table .product-image {
  width: 5.2rem;
  height: 5.2rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

#calendar .page-header {
  position: relative;
  background-size: cover;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-color: #FAFAFA;
  color: #FFFFFF;
}
#calendar .page-header:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}
#calendar .page-header.Jan {
  background-image: url("/assets/images/backgrounds/winter.jpg");
  background-position: 0 85%;
}
#calendar .page-header.Feb {
  background-image: url("/assets/images/backgrounds/winter.jpg");
  background-position: 0 85%;
}
#calendar .page-header.Mar {
  background-image: url("/assets/images/backgrounds/spring.jpg");
  background-position: 0 40%;
}
#calendar .page-header.Apr {
  background-image: url("/assets/images/backgrounds/spring.jpg");
  background-position: 0 40%;
}
#calendar .page-header.May {
  background-image: url("/assets/images/backgrounds/spring.jpg");
  background-position: 0 40%;
}
#calendar .page-header.Jun {
  background-image: url("/assets/images/backgrounds/summer.jpg");
  background-position: 0 80%;
}
#calendar .page-header.Jul {
  background-image: url("/assets/images/backgrounds/summer.jpg");
  background-position: 0 80%;
}
#calendar .page-header.Aug {
  background-image: url("/assets/images/backgrounds/summer.jpg");
  background-position: 0 80%;
}
#calendar .page-header.Sep {
  background-image: url("/assets/images/backgrounds/autumn.jpg");
  background-position: 0 40%;
}
#calendar .page-header.Oct {
  background-image: url("/assets/images/backgrounds/autumn.jpg");
  background-position: 0 40%;
}
#calendar .page-header.Nov {
  background-image: url("/assets/images/backgrounds/autumn.jpg");
  background-position: 0 40%;
}
#calendar .page-header.Dec {
  background-image: url("/assets/images/backgrounds/winter.jpg");
  background-position: 0 85%;
}
#calendar .page-header #add-event-button {
  position: absolute;
  right: 2.4rem;
  bottom: -2.8rem;
  z-index: 99;
}
#calendar .page-header .header-content {
  height: 100%;
}
#calendar .page-header .header-content .header-top {
  z-index: 2;
}
#calendar .page-header .header-content .header-bottom {
  z-index: 2;
}
#calendar .page-content #calendar-view.fc .fc-widget-header {
  border: none;
  color: rgba(0, 0, 0, 0.54);
}
#calendar .page-content #calendar-view.fc .fc-widget-header .fc-day-header {
  text-align: left;
  border: none;
  font-weight: 500;
  padding: 0.8rem;
}
#calendar .page-content #calendar-view.fc .fc-widget-content {
  color: rgba(0, 0, 0, 0.54);
}
#calendar .page-content #calendar-view.fc .fc-widget-content .fc-day-grid-container .fc-day-grid .fc-day-number {
  text-align: left;
  padding: 0.8rem 8px 0 0.8rem;
}
#calendar .page-content #calendar-view.fc .fc-widget-content .fc-time-grid-container {
  overflow: hidden;
  height: auto !important;
}
#calendar .page-content #calendar-view.fc .fc-widget-content .fc-time-grid-container .fc-axis {
  font-weight: 500;
  border: none;
}
#calendar .page-content #calendar-view.fc .fc-day-grid-event {
  margin: 0.4rem 0.8rem 0 0.8rem;
  padding: 0.2rem 0.4rem;
  font-size: 1.3rem;
  color: #FFFFFF;
}
#calendar .page-content #calendar-view.fc .fc-time-grid-event {
  color: #FFFFFF;
}
#calendar .page-content #calendar-view.fc .fc-agenda-view .fc-widget-header .fc-day-header {
  border: 1px solid #DDD;
  line-height: 5rem;
  font-size: 1.7rem;
}
#calendar .page-content #calendar-view.fc .fc-agenda-view > table > tbody > tr > td.fc-widget-content {
  border: none;
}
#calendar .page-content #calendar-view.fc .fc-agenda-view .fc-minor .fc-widget-content {
  border-top: none;
}
#calendar .page-content #calendar-view.fc .fc-agenda-view .fc-week, #calendar .page-content #calendar-view.fc .fc-agenda-view .fc-day {
  height: 10rem !important;
}
#calendar .page-content #calendar-view.fc .fc-agenda-view .fc-widget-content {
  height: 5rem;
}
#calendar .page-content #calendar-view.fc .fc-agenda-view .fc-axis {
  padding-left: 2.4rem;
}

#profile .page-header {
  height: 32rem;
  min-height: 32rem;
  max-height: 32rem;
  background: url("/assets/images/backgrounds/dark-material-bg.jpg") no-repeat;
  background-size: cover;
}
#profile #timeline-tab-pane .timeline .timeline-item .post-media iframe,
#profile #timeline-tab-pane .timeline .timeline-item .post-media .media-img {
  max-width: 100%;
}
#profile #photos-videos-tab-pane .period .period-media .media {
  position: relative;
  width: 200px;
}
#profile #photos-videos-tab-pane .period .period-media .media .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.54);
  color: #FFF;
}

#login {
  display: flex;
  flex: 1 0 auto;
  width: 100%;
  min-height: 100%;
  background: url("/assets/images/backgrounds/dark-material-bg.jpg") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#login .form-wrapper {
  width: 38.4rem;
  max-width: 38.4rem;
  background: #FFFFFF;
  text-align: center;
}
#login .form-wrapper .logo {
  display: block;
  text-indent: -4000px;
  width: 12.8rem;
  height: 12.8rem;
  margin: 0rem auto 2.8rem auto;
  color: #FFFFFF;
  background: url(/img/esa_logo_128x128_ll_m_w.png) no-repeat !important;
  /* border-radius: 2px; */
}
#login .form-wrapper .title {
  font-size: 1.7rem;
}
#login .form-wrapper form {
  width: 100%;
  text-align: left;
}
#login .form-wrapper form .remember-forgot-password .remember-me {
  font-size: 1.3rem;
}
#login .form-wrapper form .remember-forgot-password .forgot-password {
  font-size: 1.3rem;
  font-weight: 500;
}
#login .form-wrapper form .submit-button {
  width: 22rem;
}
#login .form-wrapper .register {
  font-weight: 500;
  font-size: 1.3rem;
}
#login .form-wrapper .separator {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.4rem auto 1.6rem auto;
  position: relative;
  overflow: hidden;
  width: 10rem;
  color: rgba(0, 0, 0, 0.54);
  text-align: center;
}
#login .form-wrapper .separator .text {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  padding: 0 0.8rem;
  z-index: 9999;
}
#login .form-wrapper .separator .text:before, #login .form-wrapper .separator .text:after {
  content: "";
  display: block;
  width: 3rem;
  position: absolute;
  top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
#login .form-wrapper .separator .text:before {
  right: 100%;
}
#login .form-wrapper .separator .text:after {
  left: 100%;
}
#login .form-wrapper .btn.google, #login .form-wrapper .btn.facebook {
  width: 19.2rem;
  text-transform: none;
  color: #FFFFFF;
  font-size: 1.3rem;
}
#login .form-wrapper .btn.google i, #login .form-wrapper .btn.facebook i {
  color: #FFFFFF;
  margin: 0 0.8rem 0 0;
}
#login .form-wrapper .btn.google {
  background-color: #D73D32;
}
#login .form-wrapper .btn.facebook {
  background-color: #3f5c9a;
}

@media (max-width: 767.98px) {
  #login .form-wrapper {
    padding: 1.6rem;
    padding: 2.4rem;
    width: 100%;
  }
  #login .form-wrapper form .btn {
    width: 95%;
  }
  #login .form-wrapper btn.google, #login .form-wrapper btn.facebook {
    width: 80%;
  }
}
#login-v2 {
  flex: 1 0 auto;
  width: 100%;
  height: 100%;
  background: url("/assets/images/backgrounds/dark-material-bg.jpg") no-repeat;
  background-size: cover;
}
#login-v2 .intro .logo {
  width: 12.8rem;
  height: 12.8rem;
  line-height: 12.8rem;
  font-size: 8.6rem;
  font-weight: 500;
  color: #FFFFFF;
  border-radius: 2px;
  text-align: center;
}
#login-v2 .intro .title {
  font-size: 4.2rem;
  font-weight: 300;
}
#login-v2 .intro .description {
  font-size: 1.4rem;
  max-width: 60rem;
}
#login-v2 .form-wrapper .form-content {
  width: 41.6rem;
  max-width: 100%;
}
#login-v2 .form-wrapper .form-content form {
  width: 100%;
  text-align: left;
}
#login-v2 .form-wrapper .form-content form .remember-forgot-password .remember-me {
  font-size: 1.3rem;
}
#login-v2 .form-wrapper .form-content form .remember-forgot-password .forgot-password {
  font-size: 1.3rem;
  font-weight: 500;
}
#login-v2 .form-wrapper .form-content .register {
  font-weight: 500;
  font-size: 1.3rem;
}
#login-v2 .form-wrapper .form-content .separator {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.4rem auto 1.6rem auto;
  position: relative;
  overflow: hidden;
  width: 10rem;
  color: rgba(0, 0, 0, 0.54);
  text-align: center;
}
#login-v2 .form-wrapper .form-content .separator .text {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  padding: 0 0.8rem;
  z-index: 9999;
}
#login-v2 .form-wrapper .form-content .separator .text:before, #login-v2 .form-wrapper .form-content .separator .text:after {
  content: "";
  display: block;
  width: 3rem;
  position: absolute;
  top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
#login-v2 .form-wrapper .form-content .separator .text:before {
  right: 100%;
}
#login-v2 .form-wrapper .form-content .separator .text:after {
  left: 100%;
}
#login-v2 .form-wrapper .form-content .btn.google, #login-v2 .form-wrapper .form-content .btn.facebook {
  width: 19.2rem;
  text-transform: none;
  color: #FFFFFF;
  font-size: 1.3rem;
}
#login-v2 .form-wrapper .form-content .btn.google i, #login-v2 .form-wrapper .form-content .btn.facebook i {
  color: #FFFFFF;
  margin: 0 0.8rem 0 0;
}
#login-v2 .form-wrapper .form-content .btn.google {
  background-color: #D73D32;
}
#login-v2 .form-wrapper .form-content .btn.facebook {
  background-color: #3f5c9a;
}

@media (max-width: 767.98px) {
  #login-v2 .form-wrapper form .btn {
    width: 95%;
  }
  #login-v2 .form-wrapper .btn.google, #login-v2 .form-wrapper .btn.facebook {
    width: 80%;
  }
}
#register {
  display: flex;
  flex: 1 0 auto;
  width: 100%;
  min-height: 100%;
  background: url("/assets/images/backgrounds/dark-material-bg.jpg") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#register .form-wrapper {
  width: 38.4rem;
  max-width: 38.4rem;
  background: #FFFFFF;
  text-align: center;
}
#register .form-wrapper .logo {
  width: 12.8rem;
  height: 12.8rem;
  line-height: 12.8rem;
  font-size: 8.6rem;
  font-weight: 500;
  margin: 3.2rem auto;
  color: #FFFFFF;
  border-radius: 2px;
}
#register .form-wrapper .title {
  font-size: 1.7rem;
}
#register .form-wrapper form {
  width: 100%;
  text-align: left;
}
#register .form-wrapper form .terms-conditions {
  font-size: 1.3rem;
}
#register .form-wrapper form .terms-conditions .form-check {
  font-size: 1.3rem;
}
#register .form-wrapper form .submit-button {
  width: 22rem;
}
#register .form-wrapper .login {
  font-weight: 500;
  font-size: 1.3rem;
}
@media (max-width: 767.98px) {
  #register .form-wrapper {
    padding: 1.6rem;
    width: 100%;
  }
  #register .form-wrapper form .btn {
    width: 95%;
  }
  #register .form-wrapper .btn.google, #register .form-wrapper .btn.facebook {
    width: 80%;
  }
}
#register-v2 {
  flex: 1 0 auto;
  width: 100%;
  height: 100%;
  background: url("/assets/images/backgrounds/dark-material-bg.jpg") no-repeat;
  background-size: cover;
}
#register-v2 .intro .logo {
  width: 12.8rem;
  height: 12.8rem;
  line-height: 12.8rem;
  font-size: 8.6rem;
  font-weight: 500;
  color: #FFFFFF;
  border-radius: 2px;
  text-align: center;
}
#register-v2 .intro .title {
  font-size: 4.2rem;
  font-weight: 300;
}
#register-v2 .intro .description {
  font-size: 1.4rem;
  max-width: 60rem;
}
#register-v2 .form-wrapper .form-content {
  width: 41.6rem;
  max-width: 100%;
}
#register-v2 .form-wrapper .form-content .logo {
  width: 12.8rem;
  height: 12.8rem;
  line-height: 12.8rem;
  font-size: 8.6rem;
  font-weight: 500;
  margin: 3.2rem auto;
  color: #FFFFFF;
  border-radius: 2px;
}
#register-v2 .form-wrapper .form-content form {
  width: 100%;
  text-align: left;
}
#register-v2 .form-wrapper .form-content form .terms-conditions {
  font-size: 1.3rem;
}
#register-v2 .form-wrapper .form-content form .terms-conditions .form-check {
  font-size: 1.3rem;
}
#register-v2 .form-wrapper .form-content .login {
  font-weight: 500;
  font-size: 1.3rem;
}
@media (max-width: 767.98px) {
  #register-v2 .form-wrapper form .btn {
    width: 95%;
  }
  #register-v2 .form-wrapper .btn.google, #register-v2 .form-wrapper .btn.facebook {
    width: 80%;
  }
}
#forgot-password {
  display: flex;
  flex: 1 0 auto;
  width: 100%;
  min-height: 100%;
  background: url("/assets/images/backgrounds/dark-material-bg.jpg") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#forgot-password .form-wrapper {
  width: 38.4rem;
  max-width: 38.4rem;
  background: #FFFFFF;
  text-align: center;
}
#forgot-password .form-wrapper .logo {
  width: 12.8rem;
  height: 12.8rem;
  line-height: 12.8rem;
  font-size: 8.6rem;
  font-weight: 500;
  margin: 3.2rem auto;
  color: #FFFFFF;
  border-radius: 2px;
}
#forgot-password .form-wrapper .title {
  font-size: 1.7rem;
}
#forgot-password .form-wrapper form {
  width: 100%;
  text-align: left;
}
#forgot-password .form-wrapper form .submit-button {
  width: 22rem;
}
@media (max-width: 767.98px) {
  #forgot-password .form-wrapper {
    padding: 1.6rem;
    padding: 2.4rem;
    width: 100%;
  }
  #forgot-password .form-wrapper form .btn {
    width: 95%;
  }
}
#reset-password {
  display: flex;
  flex: 1 0 auto;
  width: 100%;
  min-height: 100%;
  background: url("/assets/images/backgrounds/dark-material-bg.jpg") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#reset-password .form-wrapper {
  width: 38.4rem;
  max-width: 38.4rem;
  background: #FFFFFF;
  text-align: center;
}
#reset-password .form-wrapper .logo {
  width: 12.8rem;
  height: 12.8rem;
  line-height: 12.8rem;
  font-size: 8.6rem;
  font-weight: 500;
  margin: 3.2rem auto;
  color: #FFFFFF;
  border-radius: 2px;
}
#reset-password .form-wrapper .title {
  font-size: 1.7rem;
}
#reset-password .form-wrapper form {
  width: 100%;
  text-align: left;
}
#reset-password .form-wrapper form .submit-button {
  width: 22rem;
}

@media (max-width: 767.98px) {
  #reset-password .form-wrapper {
    padding: 1.6rem;
    padding: 2.4rem;
    width: 100%;
  }
  #reset-password .form-wrapper form .btn {
    width: 95%;
  }
}
#lock-screen {
  display: flex;
  flex: 1 0 auto;
  width: 100%;
  min-height: 100%;
  background: url("/assets/images/backgrounds/dark-material-bg.jpg") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#lock-screen .form-wrapper {
  width: 38.4rem;
  max-width: 38.4rem;
  background: #FFFFFF;
}
#lock-screen .form-wrapper .avatar-container {
  position: relative;
}
#lock-screen .form-wrapper .avatar-container i {
  position: absolute;
  bottom: -4px;
  right: -6px;
}
#lock-screen .form-wrapper .title {
  font-size: 1.7rem;
}
#lock-screen .form-wrapper .subtitle {
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.54);
}
#lock-screen .form-wrapper form {
  width: 100%;
  text-align: left;
}
#lock-screen .form-wrapper form .submit-button {
  width: 22rem;
}
#lock-screen .form-wrapper .message {
  font-weight: 500;
}

@media (max-width: 767.98px) {
  #lock-screen .form-wrapper {
    padding: 1.6rem;
    padding: 2.4rem;
    width: 100%;
  }
  #lock-screen .form-wrapper form .btn {
    width: 95%;
  }
}
#coming-soon {
  display: flex;
  flex: 1 0 auto;
  width: 100%;
  min-height: 100%;
  background: url("/assets/images/backgrounds/dark-material-bg.jpg") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#coming-soon .form-wrapper {
  width: 38.4rem;
  max-width: 38.4rem;
  background: #FFFFFF;
  text-align: center;
}
#coming-soon .form-wrapper .logo {
  width: 12.8rem;
  height: 12.8rem;
  line-height: 12.8rem;
  font-size: 8.6rem;
  font-weight: 500;
  margin: 3.2rem auto;
  color: #FFFFFF;
  border-radius: 2px;
}
#coming-soon .form-wrapper .title {
  font-size: 1.7rem;
}
#coming-soon .form-wrapper .subtitle {
  text-align: center;
  max-width: 30rem;
  font-size: 1.5rem;
}
#coming-soon .form-wrapper .timer > div {
  text-align: center;
}
#coming-soon .form-wrapper .timer > div .value {
  font-size: 3.4rem;
}
#coming-soon .form-wrapper .timer > div .type {
  color: rgba(0, 0, 0, 0.54);
}
#coming-soon .form-wrapper form {
  width: 100%;
  text-align: left;
}
#coming-soon .form-wrapper form .message {
  font-weight: 500;
}
#coming-soon .form-wrapper form .submit-button {
  width: 22rem;
}

@media (max-width: 767.98px) {
  #coming-soon .form-wrapper {
    width: 100%;
  }
  #coming-soon .form-wrapper form .btn {
    width: 95%;
  }
}
#maintenance {
  display: flex;
  flex: 1 0 auto;
  width: 100%;
  min-height: 100%;
  background: url("/assets/images/backgrounds/dark-material-bg.jpg") no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#maintenance .form-wrapper {
  width: 38.4rem;
  max-width: 38.4rem;
  background: #FFFFFF;
  text-align: center;
}
#maintenance .form-wrapper .logo {
  width: 12.8rem;
  height: 12.8rem;
  line-height: 12.8rem;
  font-size: 8.6rem;
  font-weight: 500;
  margin: 3.2rem auto;
  color: #FFFFFF;
  border-radius: 2px;
}
#maintenance .form-wrapper .title {
  font-size: 1.7rem;
}
#maintenance .form-wrapper .subtitle {
  text-align: center;
  max-width: 30rem;
  font-size: 1.5rem;
}

@media (max-width: 767.98px) {
  #maintenance .form-wrapper {
    padding: 1.6rem;
    padding: 2.4rem;
    width: 100%;
  }
}
#error-404 {
  flex: 1;
}
#error-404 .content {
  width: 90%;
  max-width: 51.2rem;
}
#error-404 .content .error-code {
  font-weight: 500;
}
#error-404 .content .search {
  height: 5.6rem;
  line-height: 5.6rem;
}
#error-404 .content .search input {
  background: transparent;
}
#error-404 .content .back-link {
  font-size: 1.5rem;
}

#error-500 {
  flex: 1;
}
#error-500 .content {
  width: 90%;
  max-width: 51.2rem;
}
#error-500 .content .error-code {
  font-weight: 500;
}
#error-500 .content .report-link {
  font-size: 1.5rem;
}

#search .page-header .search-bar {
  max-width: 78rem;
}
#search .page-header .search-bar .search-input {
  font-size: 2.4rem;
}
#search .tab-content .result-info {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
#search .tab-content .result-info .pager .page-info {
  font-weight: 500;
}
#search .tab-content #classic-tab-pane .results {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  max-width: 51.2rem;
}
#search .tab-content #classic-tab-pane .results .result-item .title {
  font-weight: 500;
  cursor: pointer;
}
#search .tab-content #classic-tab-pane .results .result-item .url {
  color: #4CAF50;
}
#search .tab-content #emails-tab-pane .results .result-item {
  position: relative;
  max-width: 78rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
#search .tab-content #emails-tab-pane .results .result-item .info {
  overflow: hidden;
}
#search .tab-content #emails-tab-pane .results .result-item .info .name {
  font-size: 1.5rem;
  font-weight: 500;
}
.nvd3-doc #line-chart {
  height: 45rem;
}
.nvd3-doc #stacked-area-chart {
  height: 45rem;
}
.nvd3-doc #sparkline-chart {
  height: 45rem;
}
.nvd3-doc #historical-bar-chart {
  height: 45rem;
}
.nvd3-doc #multi-bar-horizontal-chart {
  height: 45rem;
}
.nvd3-doc #pie-chart {
  height: 50rem;
}
.nvd3-doc #donut-chart {
  height: 25rem;
}
.nvd3-doc #scatter-chart {
  height: 45rem;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
  cursor: default !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before {
  display: none !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
  top: 9px;
  left: 4px;
  height: 15px;
  line-height: 15px;
  width: 15px;
  display: block;
  position: absolute;
  color: white;
  box-sizing: content-box;
  text-align: center;
  font-family: "Courier New", Courier, monospace;
  border-radius: 50%;
  top: 50%;
  margin-top: -7px;
  left: 8px;
  color: rgba(0, 0, 0, 0.54);
  background: 0 0;
  border: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.54);
  font-weight: 700;
  content: "+";
  background-color: transparent;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
  content: "-";
  background-color: transparent;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.child ul {
  display: block;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.child ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 8px 0;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.child ul li:first-child {
  padding-top: 0;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.child ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.child ul li .dtr-title {
  margin-right: 8px;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {
  display: none;
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {
  padding-left: 27px;
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {
  top: 5px;
  left: 4px;
  height: 14px;
  width: 14px;
  border-radius: 14px;
  line-height: 14px;
  text-indent: 3px;
}
table.dataTable.dtr-column > tbody > tr > td.control,
table.dataTable.dtr-column > tbody > tr > th.control {
  position: relative;
  cursor: pointer;
}
table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
  top: 50%;
  left: 50%;
  height: 16px;
  width: 16px;
  margin-top: -10px;
  margin-left: -10px;
  display: block;
  position: absolute;
  color: white;
  box-sizing: content-box;
  text-align: center;
  font-family: "Courier New", Courier, monospace;
  border-radius: 50%;
  top: 50%;
  margin-top: -7px;
  left: 8px;
  color: rgba(0, 0, 0, 0.54);
  background: 0 0;
  border: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.54);
  font-weight: 700;
  content: "+";
  background-color: transparent;
}
table.dataTable.dtr-column > tbody > tr.parent td.control:before,
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
  content: "-";
  background-color: transparent;
}
table.dataTable > tbody > tr.child {
  padding: 0.5em 1em;
}
table.dataTable > tbody > tr.child:hover {
  background: transparent !important;
}
table.dataTable > tbody > tr.child ul.dtr-details {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details li {
  border-bottom: 1px solid #EFEFEF;
  padding: 0.5em 0;
}
table.dataTable > tbody > tr.child ul.dtr-details li:first-child {
  padding-top: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details li:last-child {
  border-bottom: none;
}
table.dataTable > tbody > tr.child span.dtr-title {
  display: inline-block;
  min-width: 75px;
  font-weight: bold;
}
div.dtr-modal {
  position: fixed;
  box-sizing: border-box;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  padding: 10em 1em;
}
div.dtr-modal div.dtr-modal-display {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  overflow: auto;
  margin: auto;
  z-index: 102;
  overflow: auto;
  background-color: #F5F5F7;
  border: 1px solid black;
  border-radius: 0.5em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}
div.dtr-modal div.dtr-modal-content {
  position: relative;
  padding: 1em;
}
div.dtr-modal div.dtr-modal-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border: 1px solid #EAEAEA;
  background-color: #F9F9F9;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  z-index: 12;
}
div.dtr-modal div.dtr-modal-close:hover {
  background-color: #EAEAEA;
}
div.dtr-modal div.dtr-modal-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 767px) {
  div.dtr-modal div.dtr-modal-display {
    width: 95%;
  }
}
@media only screen and (max-width: 1000px) {
  #aside {
    position: fixed !important;
  }
}
body.fuse-aside-folded:not(.fuse-aside-expanded) #aside > .aside-content {
  width: 6.4rem !important;
  min-width: 6.4rem !important;
}
body.fuse-aside-folded:not(.fuse-aside-expanded) #aside > .aside-content > .aside-toolbar {
  padding-left: 1.6rem !important;
}
body.fuse-aside-folded:not(.fuse-aside-expanded) #aside #sidenav .subheader:before {
  content: "";
  display: block;
  position: absolute;
  min-width: 1.6rem;
  border-top-width: 2px;
  border-top-style: solid;
  opacity: 0.5;
}
body.fuse-aside-folded:not(.fuse-aside-expanded) #aside #sidenav .subheader > span {
  opacity: 0;
  transition: opacity 200ms ease;
}
body.fuse-aside-folded:not(.fuse-aside-expanded) #aside #sidenav .nav-link > span {
  opacity: 0;
  transition: opacity 200ms ease;
}
body.fuse-aside-folded:not(.fuse-aside-expanded) #aside #sidenav .nav-item .collapse.show {
  display: none;
}
body.layout-left-navigation #aside .aside-content {
  margin-left: 0rem;
}
body.layout-right-navigation #aside .aside-content {
  margin-right: 0rem;
}
body #sidenav .subheader > span {
  opacity: 1;
}
body #sidenav .nav-link > span {
  opacity: 1;
}
body.fuse-aside-folded:not(.fuse-aside-expanded) #aside {
  width: 6.4rem;
}
body.fuse-aside-folded:not(.fuse-aside-expanded) #aside .aside-content {
  position: absolute;
}
body.layout-left-navigation #aside .aside-content > .aside-content {
  left: 0;
}
body.layout-left-navigation #toggle-fold-aside-button {
  transform: rotate(0deg);
  padding: 0.2rem !important;
  box-shadow: none !important;
}
body.layout-left-navigation #toggle-fold-aside-button i.icon {
  font-size: 20px !important;
}
body.layout-left-navigation.fuse-aside-folded #toggle-fold-aside-button {
  transform: rotate(180deg);
}
body.layout-right-navigation #aside > .aside-content {
  right: 0;
}
body.layout-right-navigation #toggle-fold-aside-button {
  transform: rotate(180deg);
}
body.layout-right-navigation.fuse-aside-folded #toggle-fold-aside-button {
  transform: rotate(0deg);
}
body #toggle-fold-aside-button {
  transition: transform 0.3s ease-in-out 0.1s;
}

nvd3 {
  display: block;
  width: 100%;
  height: 100%;
}
nvd3.remove-x-lines .nv-x .tick line {
  display: none;
}
nvd3.remove-y-lines .nv-y .tick line {
  display: none;
}
nvd3.remove-line-stroke .nv-groups path.nv-line {
  stroke-width: 0 !important;
}
nvd3.remove-opacity .nv-groups .nv-group {
  fill-opacity: 1 !important;
}
nvd3.show-line-points .nv-line .nv-scatter .nv-groups .nv-point {
  fill-opacity: 1 !important;
  stroke-opacity: 1 !important;
}

.nvd3 text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Ubuntu", sans-serif;
}
.nvd3 line.nv-guideline {
  stroke: rgba(0, 0, 0, 0.54);
}
.nvd3 .nv-groups .nv-point.hover {
  stroke-width: 3px !important;
  fill-opacity: 1 !important;
  stroke-opacity: 1 !important;
}

.nvtooltip {
  background: none;
  color: white;
  padding: 0;
  border: none;
}
.nvtooltip.gravity-n:after {
  display: block;
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  left: 50%;
  bottom: 100%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.87);
}
.nvtooltip.gravity-s:after {
  display: block;
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.87);
}
.nvtooltip.gravity-e:after {
  display: block;
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  right: 0;
  margin-top: -6px;
  margin-right: -11px;
  border: 6px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.87);
}
.nvtooltip.gravity-w:after {
  display: block;
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  margin-top: -6px;
  margin-left: -11px;
  border: 6px solid transparent;
  border-right-color: rgba(0, 0, 0, 0.87);
}
.nvtooltip table {
  background: rgba(0, 0, 0, 0.87);
  padding: 8px 12px;
  margin: 0;
  border-radius: 2px;
  border-collapse: initial;
}
.nvtooltip table tbody tr td.legend-color-guide div {
  border: none;
}
.nvtooltip table tbody tr td:last-child {
  padding-right: 0;
}

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