@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900);[data-fuse-bar].fuse-bar {
  position: absolute !important;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.25);
  z-index: 1021;
  display: block;
  text-align: left;
  overflow: auto;
  transition: transform 300ms ease;
  display: block;
  background-color: white; }
  [data-fuse-bar].fuse-bar.fuse-bar-open {
    visibility: visible;
    opacity: 1; }
  [data-fuse-bar].fuse-bar.fuse-bar-closed {
    visibility: hidden;
    opacity: 0; }
  [data-fuse-bar].fuse-bar.fixed-position {
    position: fixed; }
  [data-fuse-bar].fuse-bar.position-top, [data-fuse-bar].fuse-bar.position-bottom {
    max-height: 100%; }
  [data-fuse-bar].fuse-bar.position-left, [data-fuse-bar].fuse-bar.position-right {
    max-width: 90%; }
  [data-fuse-bar].fuse-bar.position-right {
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    transform: translate3D(100%, 0, 0); }
  [data-fuse-bar].fuse-bar.position-left {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    transform: translate3D(-100%, 0, 0); }
  [data-fuse-bar].fuse-bar.position-top {
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    transform: translate3D(0, -100%, 0); }
  [data-fuse-bar].fuse-bar.position-bottom {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translate3D(0, 100%, 0); }

.fuse-bar-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1020;
  background: rgba(0, 0, 0, 0.54); }

@media (max-width: 767px) {
  [data-fuse-bar-media-step="sm"] {
    position: absolute !important;
    visibility: hidden; } }

@media (max-width: 991px) {
  [data-fuse-bar-media-step="md"] {
    position: absolute !important;
    visibility: hidden; } }

@media (max-width: 1199px) {
  [data-fuse-bar-media-step="lg"] {
    position: absolute !important;
    visibility: hidden; } }
@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: #868E96;
  --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: "Roboto", "Helvetica Neue", 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,
  a:visited {
    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; }
  .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: "Roboto", "Helvetica Neue", 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: .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: -.25em; }

sup {
  top: -.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]):focus, a:not([href]):not([tabindex]):hover {
    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; }

a,
area,
button,
[role="button"],
input:not([type="range"]),
label,
select,
summary,
textarea {
  touch-action: manipulation; }

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: .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: .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: 2.4rem; }

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

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

.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%;
  text-transform: uppercase; }

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

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #868E96; }
  .blockquote-footer::before {
    content: "\2014   \A0"; }

.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: #868E96; }

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: 15px;
  padding-left: 15px;
  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: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

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

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

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

.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.33333%;
  max-width: 8.33333%; }

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1; }

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

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

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

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

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

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

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

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

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

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

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

@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.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    order: -1; }
  .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.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@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.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    order: -1; }
  .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.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@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.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    order: -1; }
  .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.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@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.33333%;
    max-width: 8.33333%; }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    order: -1; }
  .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.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

.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.99px) {
  .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.99px) {
  .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.99px) {
  .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.99px) {
  .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; }

.form-control {
  display: block;
  width: 100%;
  padding: 0.8rem 0px;
  font-size: 1.4rem;
  line-height: 1.78571;
  color: #495057;
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  .form-control::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control:focus {
    color: #495057;
    background-color: transparent;
    border-color: none;
    outline: 0;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42), 0 2px 0 0 #3C4252; }
  .form-control::placeholder {
    color: rgba(0, 0, 0, 0.54);
    opacity: 1; }
  .form-control:disabled, .form-control[readonly] {
    background-color: transparent;
    opacity: 1; }

select.form-control:not([size]):not([multiple]) {
  height: calc(2.5rem + 0px); }

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: transparent; }

.form-control-file,
.form-control-range {
  display: block;
  width: 100%; }

.col-form-label {
  padding-top: calc(0.8rem + 1px);
  padding-bottom: calc(0.8rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.78571; }

.col-form-label-lg {
  padding-top: calc(0 + 1px);
  padding-bottom: calc(0 + 1px);
  font-size: 1.6rem;
  line-height: 2.25; }

.col-form-label-sm {
  padding-top: calc(0 + 1px);
  padding-bottom: calc(0 + 1px);
  font-size: 1.3rem;
  line-height: 1.78571; }

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  margin-bottom: 0;
  line-height: 1.78571;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0; }
  .form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control,
  .input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,
  .input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,
  .input-group-sm > .input-group-prepend > .form-control-plaintext.btn,
  .input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control,
  .input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,
  .input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,
  .input-group-lg > .input-group-prepend > .form-control-plaintext.btn,
  .input-group-lg > .input-group-append > .form-control-plaintext.btn {
    padding-right: 0;
    padding-left: 0; }

.form-control-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0 1.6rem;
  font-size: 1.3rem;
  line-height: 1.78571;
  border-radius: 2px; }

select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) {
  height: calc(2.32143rem + 0px); }

.form-control-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0 1.6rem;
  font-size: 1.6rem;
  line-height: 2.25;
  border-radius: 2px; }

select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) {
  height: calc(2.925rem + 0px); }

.form-group {
  margin-bottom: 0px; }

.form-text {
  display: block;
  margin-top: 0.8rem; }

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px; }
  .form-row > .col,
  .form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px; }

.form-check {
  position: relative;
  display: block;
  padding-left: 0; }

.form-check-input {
  position: absolute;
  margin-top: 0;
  margin-left: 0; }
  .form-check-input:disabled ~ .form-check-label {
    color: rgba(0, 0, 0, 0.38); }

.form-check-label {
  margin-bottom: 0; }

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem; }
  .form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-left: 0; }

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.8rem;
  font-size: 80%;
  color: #4CAF50; }

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  width: 250px;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #FFF;
  background-color: rgba(76, 175, 80, 0.8);
  border-radius: .2rem; }

.was-validated .form-control:valid, .form-control.is-valid, .was-validated
.custom-select:valid,
.custom-select.is-valid {
  border-color: #4CAF50; }
  .was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated
  .custom-select:valid:focus,
  .custom-select.is-valid:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25); }
  .was-validated .form-control:valid ~ .valid-feedback,
  .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
  .form-control.is-valid ~ .valid-tooltip, .was-validated
  .custom-select:valid ~ .valid-feedback,
  .was-validated
  .custom-select:valid ~ .valid-tooltip,
  .custom-select.is-valid ~ .valid-feedback,
  .custom-select.is-valid ~ .valid-tooltip {
    display: block; }

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #4CAF50; }

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #4CAF50; }
  .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
    background-color: #a3d7a5; }

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block; }

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #6ec071; }

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #FFF, 0 0 0 0.2rem rgba(76, 175, 80, 0.25); }

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #4CAF50; }
  .was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before {
    border-color: inherit; }

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block; }

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25); }

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.8rem;
  font-size: 80%;
  color: #F44336; }

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  width: 250px;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #FFF;
  background-color: rgba(244, 67, 54, 0.8);
  border-radius: .2rem; }

.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated
.custom-select:invalid,
.custom-select.is-invalid {
  border-color: #F44336; }
  .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated
  .custom-select:invalid:focus,
  .custom-select.is-invalid:focus {
    border-color: #F44336;
    box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25); }
  .was-validated .form-control:invalid ~ .invalid-feedback,
  .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
  .form-control.is-invalid ~ .invalid-tooltip, .was-validated
  .custom-select:invalid ~ .invalid-feedback,
  .was-validated
  .custom-select:invalid ~ .invalid-tooltip,
  .custom-select.is-invalid ~ .invalid-feedback,
  .custom-select.is-invalid ~ .invalid-tooltip {
    display: block; }

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #F44336; }

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #F44336; }
  .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
    background-color: #fbb4af; }

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block; }

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #f77066; }

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #FFF, 0 0 0 0.2rem rgba(244, 67, 54, 0.25); }

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #F44336; }
  .was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before {
    border-color: inherit; }

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block; }

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25); }

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center; }
  .form-inline .form-check {
    width: 100%; }
  @media (min-width: 576px) {
    .form-inline label {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0; }
    .form-inline .form-group {
      display: flex;
      flex: 0 0 auto;
      flex-flow: row wrap;
      align-items: center;
      margin-bottom: 0; }
    .form-inline .form-control {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    .form-inline .form-control-plaintext {
      display: inline-block; }
    .form-inline .input-group {
      width: auto; }
    .form-inline .form-check {
      display: flex;
      align-items: center;
      justify-content: center;
      width: auto;
      padding-left: 0; }
    .form-inline .form-check-input {
      position: relative;
      margin-top: 0;
      margin-right: 1.2rem;
      margin-left: 0; }
    .form-inline .custom-control {
      align-items: center;
      justify-content: center; }
    .form-inline .custom-control-label {
      margin-bottom: 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:focus, .dropdown-item:hover {
    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: #868E96;
    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: #868E96;
  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; }

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%; }
  .input-group .form-control,
  .input-group .custom-select,
  .input-group .custom-file {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0; }
    .input-group .form-control:focus,
    .input-group .custom-select:focus,
    .input-group .custom-file:focus {
      z-index: 3; }
    .input-group .form-control + .form-control,
    .input-group .custom-select + .form-control,
    .input-group .custom-file + .form-control {
      margin-left: -1px; }
  .input-group .form-control:not(:last-child),
  .input-group .custom-select:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .input-group .form-control:not(:first-child),
  .input-group .custom-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .input-group .custom-file {
    display: flex;
    align-items: center; }
    .input-group .custom-file:not(:last-child) .custom-file-control,
    .input-group .custom-file:not(:last-child) .custom-file-control::before {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
    .input-group .custom-file:not(:first-child) .custom-file-control,
    .input-group .custom-file:not(:first-child) .custom-file-control::before {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }

.input-group-prepend,
.input-group-append {
  display: flex;
  align-items: center; }
  .input-group-prepend .btn,
  .input-group-append .btn {
    position: relative;
    z-index: 2; }
  .input-group-prepend .btn + .btn,
  .input-group-prepend .btn + .input-group-text,
  .input-group-prepend .input-group-text + .input-group-text,
  .input-group-prepend .input-group-text + .btn,
  .input-group-append .btn + .btn,
  .input-group-append .btn + .input-group-text,
  .input-group-append .input-group-text + .input-group-text,
  .input-group-append .input-group-text + .btn {
    margin-left: -1px; }

.input-group-prepend {
  margin-right: -1px; }

.input-group-append {
  margin-left: -1px; }

.input-group-text {
  padding: 0.8rem 0px;
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.78571;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0; }
  .input-group-text input[type="radio"],
  .input-group-text input[type="checkbox"] {
    margin-top: 0; }

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.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: transparent;
    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: #868E96; }
    .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: transparent; }

.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-radio .custom-control-label::before {
  border-radius: 50%; }

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: transparent; }

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: none; }

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.5rem + 0px);
  padding: 0rem 2.4rem 0rem 0rem;
  line-height: 1.78571;
  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 transparent;
  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: #868E96;
    background-color: #E9ECEF; }
  .custom-select::-ms-expand {
    opacity: 0; }

.custom-select-sm {
  height: calc(2.32143rem + 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: 2px;
  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 2px 2px 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:focus, .nav-link:hover {
    text-decoration: none; }
  .nav-link.disabled {
    color: #868E96; }

.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:focus, .nav-tabs .nav-link:hover {
      border-color: #E9ECEF; }
    .nav-tabs .nav-link.disabled {
      color: #868E96;
      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:focus, .navbar-brand:hover {
    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:focus, .navbar-toggler:hover {
    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.99px) {
  .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: .5rem;
        padding-left: .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.99px) {
  .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: .5rem;
        padding-left: .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.99px) {
  .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: .5rem;
        padding-left: .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.99px) {
  .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: .5rem;
        padding-left: .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: .5rem;
      padding-left: .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:focus, .navbar-light .navbar-brand:hover {
    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:focus, .navbar-light .navbar-nav .nav-link:hover {
    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:focus, .navbar-light .navbar-text a:hover {
      color: rgba(0, 0, 0, 0.9); }

.navbar-dark .navbar-brand {
  color: white; }
  .navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
    color: white; }

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5); }
  .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    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:focus, .navbar-dark .navbar-text a:hover {
      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: 15px; }
  @media (min-width: 576px) {
    .card-deck {
      flex-flow: row wrap;
      margin-right: -15px;
      margin-left: -15px; }
      .card-deck .card {
        display: flex;
        flex: 1 0 0%;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px; } }

.card-group {
  display: flex;
  flex-direction: column; }
  .card-group > .card {
    margin-bottom: 15px; }
  @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: #868E96;
  content: "\EA94"; }

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline; }

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none; }

.breadcrumb-item.active {
  color: #868E96; }

.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:focus, .page-link:hover {
    color: rgba(0, 0, 0, 0.87);
    text-decoration: none;
    background-color: #E9ECEF;
    border-color: #DDD; }
  .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: #868E96;
  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.46154; }

.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]:focus, .badge-primary[href]:hover {
    color: #FFF;
    text-decoration: none;
    background-color: #262a35; }

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

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

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

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

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

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

.badge-dark {
  color: #FFF;
  background-color: #343A40; }
  .badge-dark[href]:focus, .badge-dark[href]:hover {
    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:focus, .list-group-item-action:hover {
    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:focus, .list-group-item:hover {
    z-index: 1;
    text-decoration: none; }
  .list-group-item.disabled, .list-group-item:disabled {
    color: #868E96;
    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; }

a.list-group-item-primary,
button.list-group-item-primary {
  color: #1f222b; }
  a.list-group-item-primary:focus, a.list-group-item-primary:hover,
  button.list-group-item-primary:focus,
  button.list-group-item-primary:hover {
    color: #1f222b;
    background-color: #babdc3; }
  a.list-group-item-primary.active,
  button.list-group-item-primary.active {
    color: #FFF;
    background-color: #1f222b;
    border-color: #1f222b; }

.list-group-item-secondary {
  color: #114e7e;
  background-color: #c1e2fc; }

a.list-group-item-secondary,
button.list-group-item-secondary {
  color: #114e7e; }
  a.list-group-item-secondary:focus, a.list-group-item-secondary:hover,
  button.list-group-item-secondary:focus,
  button.list-group-item-secondary:hover {
    color: #114e7e;
    background-color: #a9d7fb; }
  a.list-group-item-secondary.active,
  button.list-group-item-secondary.active {
    color: #FFF;
    background-color: #114e7e;
    border-color: #114e7e; }

.list-group-item-success {
  color: #285b2a;
  background-color: #cde9ce; }

a.list-group-item-success,
button.list-group-item-success {
  color: #285b2a; }
  a.list-group-item-success:focus, a.list-group-item-success:hover,
  button.list-group-item-success:focus,
  button.list-group-item-success:hover {
    color: #285b2a;
    background-color: #bbe1bd; }
  a.list-group-item-success.active,
  button.list-group-item-success.active {
    color: #FFF;
    background-color: #285b2a;
    border-color: #285b2a; }

.list-group-item-info {
  color: #004e47;
  background-color: #b8e2de; }

a.list-group-item-info,
button.list-group-item-info {
  color: #004e47; }
  a.list-group-item-info:focus, a.list-group-item-info:hover,
  button.list-group-item-info:focus,
  button.list-group-item-info:hover {
    color: #004e47;
    background-color: #a6dbd6; }
  a.list-group-item-info.active,
  button.list-group-item-info.active {
    color: #FFF;
    background-color: #004e47;
    border-color: #004e47; }

.list-group-item-warning {
  color: #854f00;
  background-color: #ffe2b8; }

a.list-group-item-warning,
button.list-group-item-warning {
  color: #854f00; }
  a.list-group-item-warning:focus, a.list-group-item-warning:hover,
  button.list-group-item-warning:focus,
  button.list-group-item-warning:hover {
    color: #854f00;
    background-color: #ffd89f; }
  a.list-group-item-warning.active,
  button.list-group-item-warning.active {
    color: #FFF;
    background-color: #854f00;
    border-color: #854f00; }

.list-group-item-danger {
  color: #7f231c;
  background-color: #fccac7; }

a.list-group-item-danger,
button.list-group-item-danger {
  color: #7f231c; }
  a.list-group-item-danger:focus, a.list-group-item-danger:hover,
  button.list-group-item-danger:focus,
  button.list-group-item-danger:hover {
    color: #7f231c;
    background-color: #fbb3af; }
  a.list-group-item-danger.active,
  button.list-group-item-danger.active {
    color: #FFF;
    background-color: #7f231c;
    border-color: #7f231c; }

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe; }

a.list-group-item-light,
button.list-group-item-light {
  color: #818182; }
  a.list-group-item-light:focus, a.list-group-item-light:hover,
  button.list-group-item-light:focus,
  button.list-group-item-light:hover {
    color: #818182;
    background-color: #ececf6; }
  a.list-group-item-light.active,
  button.list-group-item-light.active {
    color: #FFF;
    background-color: #818182;
    border-color: #818182; }

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca; }

a.list-group-item-dark,
button.list-group-item-dark {
  color: #1b1e21; }
  a.list-group-item-dark:focus, a.list-group-item-dark:hover,
  button.list-group-item-dark:focus,
  button.list-group-item-dark:hover {
    color: #1b1e21;
    background-color: #b9bbbe; }
  a.list-group-item-dark.active,
  button.list-group-item-dark.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: .5; }
  .close:focus, .close:hover {
    color: #000;
    text-decoration: none;
    opacity: .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 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 0px solid #E9ECEF;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px; }
  .modal-header .close {
    padding: 15px;
    margin: -15px -15px -15px auto; }

.modal-title {
  margin-bottom: 0;
  line-height: 1.5; }

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

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

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

@media (min-width: 576px) {
  .modal-dialog {
    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: 90%; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Roboto", "Helvetica Neue", 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: "Roboto", "Helvetica Neue", 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 5px 10px 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:focus, .carousel-control-prev:hover,
  .carousel-control-next:focus,
  .carousel-control-next:hover {
    color: #FFF;
    text-decoration: none;
    outline: 0;
    opacity: .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:focus, a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: #262a35 !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border {
  border: 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; } }

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

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

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

@media print {
  .d-print-none {
    display: none !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.85714%; }

.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:focus, a.text-primary:hover {
  color: #262a35 !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

a.text-dark:focus, a.text-dark:hover {
  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; }

#wrapper {
  min-height: 100%;
  flex: auto; }

body {
  display: flex;
  flex-flow: column nowrap;
  min-height: 100%;
  /* fix IE11 */ }

#wrapper {
  min-height: 100%;
  flex: auto; }

body {
  background-color: whitesmoke; }

html,
body {
  overflow: hidden !important; }

body > main {
  top: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0; }

.layout #wrapper {
  display: flex;
  height: 100%;
  max-height: 100%;
  overflow: hidden; }
  .layout #wrapper > .content-wrapper {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    width: 100%; }
    .layout #wrapper > .content-wrapper > .content {
      display: flex;
      flex: 1 1 auto;
      flex-direction: column;
      overflow: auto; }

.layout #wrapper > .content-wrapper > .content {
  position: relative; }

.layout #wrapper > .aside {
  z-index: 1000; }
  .layout #wrapper > .aside > .aside-content-wrapper {
    overflow: hidden;
    width: 25.6rem;
    min-width: 25.6rem;
    height: 100%;
    transition: all 300ms ease;
    position: relative; }
    .layout #wrapper > .aside > .aside-content-wrapper > .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);
      background: white;
      position: fixed;
      width: 25.6rem;
      top: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      transition: all 300ms ease;
      overflow: hidden; }
      .layout #wrapper > .aside > .aside-content-wrapper > .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-wrapper > .aside-content > .aside-toolbar .logo {
          display: flex;
          align-items: center; }
          .layout #wrapper > .aside > .aside-content-wrapper > .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-wrapper > .aside-content > .aside-toolbar .logo .logo-text {
            margin-left: 16px;
            font-size: 1.6rem; }
      .layout #wrapper > .aside > .aside-content-wrapper > .aside-content > #sidenav {
        overflow-x: hidden;
        overflow-y: auto;
        flex-wrap: nowrap; }
        .layout #wrapper > .aside > .aside-content-wrapper > .aside-content > #sidenav .subheader {
          white-space: nowrap; }
        .layout #wrapper > .aside > .aside-content-wrapper > .aside-content > #sidenav .nav-link {
          color: inherit; }
          .layout #wrapper > .aside > .aside-content-wrapper > .aside-content > #sidenav .nav-link.active {
            background-color: #2196F3;
            color: white; }
            .layout #wrapper > .aside > .aside-content-wrapper > .aside-content > #sidenav .nav-link.active > i {
              color: white; }
          .layout #wrapper > .aside > .aside-content-wrapper > .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: -.4rem;
        right: -.4rem; }
  #toolbar .toggle-aside-button,
  #toolbar .search-button,
  #toolbar .quick-panel-button {
    height: 6.4rem;
    width: 6.4rem; }
    @media (max-width: 575.99px) {
      #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.99px) {
      #toolbar .language-button > .dropdown-toggle {
        width: 4.8rem;
        height: 4.8rem; } }

.layout.layout-vertical #wrapper > .content-wrapper {
  overflow: hidden;
  z-index: 1010; }

.layout.layout-vertical.layout-above-toolbar > main {
  display: flex;
  flex-direction: column; }

.layout.layout-vertical.layout-above-toolbar #toolbar {
  z-index: 1030; }

.layout.layout-vertical.layout-above-toolbar #wrapper {
  flex: 1;
  min-height: auto; }
  .layout.layout-vertical.layout-above-toolbar #wrapper > aside {
    z-index: 1021; }
  .layout.layout-vertical.layout-above-toolbar #wrapper #aside > .aside-content-wrapper > .aside-content {
    margin-top: 6.4rem; }

.layout.layout-vertical.layout-below-toolbar #wrapper > aside {
  z-index: 1030; }

.layout.layout-vertical.layout-below-toolbar #wrapper > .fuse-bar-backdrop.fuse-bar-backdrop-aside {
  z-index: 1029; }

.layout.layout-vertical.layout-below-toolbar #wrapper > .content-wrapper #toolbar {
  z-index: 1020; }

.layout.layout-vertical.layout-below-toolbar.layout-left-navigation #wrapper > .content-wrapper, .layout.layout-vertical.layout-below-toolbar.layout-right-navigation #wrapper > .content-wrapper {
  flex: 1; }

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
/*----------------------------------------------------------------*/
.page-layout {
  position: relative;
  overflow: hidden;
  flex: 1; }
  .page-layout .top-bg {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    height: 20rem;
    background-image: url("/assets/images/backgrounds/header-bg.png");
    background-size: cover; }
  .page-layout > .page-header {
    height: 20rem;
    min-height: 20rem;
    max-height: 20rem;
    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-header {
          height: 13.6rem;
          min-height: 13.6rem;
          max-height: 13.6rem; }
        .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: transparent;
        box-shadow: none; }
        .page-layout.carded.left-sidebar > .page-sidebar .header, .page-layout.carded.right-sidebar > .page-sidebar .header {
          height: 20rem;
          min-height: 20rem;
          max-height: 20rem; }
        .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-header, .page-layout.carded.right-sidebar .page-content-wrapper .page-header {
          height: 13.6rem;
          min-height: 13.6rem;
          max-height: 13.6rem; }
        .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: transparent;
    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 {
        height: 20rem;
        min-height: 20rem;
        max-height: 20rem;
        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.99px) {
      .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.99px) {
  .page-layout .top-bg {
    height: 16rem; }
  .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.carded.right-sidebar > .page-content-wrapper .page-header, .page-layout.carded.left-sidebar > .page-content-wrapper .page-header, .page-layout.carded.full-width > .page-content-wrapper .page-header {
      height: 9.6rem;
      min-height: 9.6rem;
      max-height: 9.6rem; }
  .page-layout.simple.full-width > .page-header, .page-layout.simple.inner-sidebar > .page-header {
    height: 16rem;
    min-height: 16rem;
    max-height: 16rem; }
  .page-layout.simple.right-sidebar > .page-content-wrapper .page-header, .page-layout.simple.left-sidebar > .page-content-wrapper .page-header {
    height: 16rem;
    min-height: 16rem;
    max-height: 16rem; }
  .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; }

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

.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.78571;
  border-radius: 2px;
  position: relative;
  min-width: 8.8rem;
  height: 3.6rem;
  line-height: 3.6rem;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-appearance: none;
  letter-spacing: 0.04em;
  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:focus, .btn:hover {
    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:active, .btn.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[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: 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;
  color: white!important; }
  .btn-primary:hover {
    color: #FFF;
    background-color: #2c303c;
    border-color: #262a35;
    color: white; }
    .btn-primary:hover a:hover {
      color: #1c1e26; }
    .btn-primary:hover i, .btn-primary:hover [class^="icon-"], .btn-primary:hover [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-primary:hover .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-primary:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-primary:hover .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-primary:hover .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-primary:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-primary:hover .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-primary:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-primary:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-primary:hover textarea.form-control:focus, .btn-primary:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-primary:hover 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); }
      .btn-primary:hover select.form-control[multiple], .btn-primary:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-primary:hover select.form-control[multiple]:hover, .btn-primary:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-primary:hover select.form-control[multiple]:focus, .btn-primary:hover select.form-control[multiple]:focus:hover, .btn-primary:hover select.form-control[size]:focus, .btn-primary:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-primary:hover .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-primary:hover .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-primary:hover .nav .nav-link {
      color: white; }
      .btn-primary:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-primary:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-primary:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-primary:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-primary:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-primary:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-primary:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-primary:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-primary:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-primary:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-primary:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-primary:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-primary:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-primary:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-primary:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-primary:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-primary:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-primary:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-primary:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-primary:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-primary:hover .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-primary:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-primary:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-primary:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-primary a:hover {
    color: #1c1e26; }
  .btn-primary i, .btn-primary [class^="icon-"], .btn-primary [class*=" icon-"] {
    color: rgba(255, 255, 255, 0.87)!important; }
  .btn-primary .text-muted {
    color: rgba(255, 255, 255, 0.5) !important; }
  .btn-primary .fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }
  .btn-primary .form-control {
    color: white;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
    .btn-primary .form-control:hover {
      box-shadow: 0 2px 0 0 white; }
    .btn-primary .form-control:focus {
      box-shadow: 0 2px 0 0 #3C4252; }
    .btn-primary .form-control::placeholder {
      color: rgba(255, 255, 255, 0.7); }
  .btn-primary textarea.form-control {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
    .btn-primary textarea.form-control:hover {
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
    .btn-primary textarea.form-control:focus, .btn-primary textarea.form-control:focus:hover {
      box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-primary 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); }
    .btn-primary select.form-control[multiple], .btn-primary select.form-control[size] {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-primary select.form-control[multiple]:hover, .btn-primary select.form-control[size]:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-primary select.form-control[multiple]:focus, .btn-primary select.form-control[multiple]:focus:hover, .btn-primary select.form-control[size]:focus, .btn-primary select.form-control[size]:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-primary .form-group > label {
    color: rgba(255, 255, 255, 0.7); }
  .btn-primary .nav .subheader {
    color: rgba(255, 255, 255, 0.5); }
  .btn-primary .nav .nav-link {
    color: white; }
    .btn-primary .nav .nav-link:hover {
      color: #3C4252; }
      .btn-primary .nav .nav-link:hover > i {
        color: #3C4252; }
  .btn-primary .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .btn-primary .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .btn-primary .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .btn-primary .custom-radio input[type=radio] ~ .radio-icon:before,
  .btn-primary .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .btn-primary .form-check-label input[type=radio] ~ .radio-icon:before {
    border-color: rgba(255, 255, 255, 0.7); }
  .btn-primary .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-primary .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .btn-primary .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-primary .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .btn-primary .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-primary .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
    color: rgba(255, 255, 255, 0.7); }
  .btn-primary input[type=checkbox]:disabled ~ .checkbox-icon,
  .btn-primary input[type=checkbox]:disabled ~ .custom-control-indicator,
  .btn-primary input[type=checkbox]:disabled ~ .form-check-description, .btn-primary input[type=checkbox][disabled] ~ .checkbox-icon,
  .btn-primary input[type=checkbox][disabled] ~ .custom-control-indicator,
  .btn-primary input[type=checkbox][disabled] ~ .form-check-description {
    color: rgba(255, 255, 255, 0.5) !important; }
  .btn-primary .form-check.disabled .form-check-label {
    color: rgba(255, 255, 255, 0.5) !important; }
  .btn-primary .custom-control-input:disabled ~ .custom-control-description {
    color: rgba(255, 255, 255, 0.5); }
  .btn-primary #sidenav .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.04) !important; }
    .btn-primary #sidenav .nav-link:hover:not(.active) > i {
      color: rgba(255, 255, 255, 0.87) !important; }
  .btn-primary.disabled, .btn-primary:disabled {
    background-color: #3C4252;
    border-color: #3C4252; }
  .btn-primary:active, .btn-primary.active,
  .show > .btn-primary.dropdown-toggle {
    color: white;
    background-color: #2c303c;
    background-image: 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-primary:active a:hover, .btn-primary.active a:hover,
    .show > .btn-primary.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-primary:active i, .btn-primary:active [class^="icon-"], .btn-primary:active [class*=" icon-"], .btn-primary.active i, .btn-primary.active [class^="icon-"], .btn-primary.active [class*=" icon-"],
    .show > .btn-primary.dropdown-toggle i,
    .show > .btn-primary.dropdown-toggle [class^="icon-"],
    .show > .btn-primary.dropdown-toggle [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-primary:active .text-muted, .btn-primary.active .text-muted,
    .show > .btn-primary.dropdown-toggle .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-primary:active .fuse-ripple-ready .fuse-ripple, .btn-primary.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-primary.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-primary:active .form-control, .btn-primary.active .form-control,
    .show > .btn-primary.dropdown-toggle .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-primary:active .form-control:hover, .btn-primary.active .form-control:hover,
      .show > .btn-primary.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-primary:active .form-control:focus, .btn-primary.active .form-control:focus,
      .show > .btn-primary.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-primary:active .form-control::placeholder, .btn-primary.active .form-control::placeholder,
      .show > .btn-primary.dropdown-toggle .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-primary:active textarea.form-control, .btn-primary.active textarea.form-control,
    .show > .btn-primary.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-primary:active textarea.form-control:hover, .btn-primary.active textarea.form-control:hover,
      .show > .btn-primary.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-primary:active textarea.form-control:focus, .btn-primary:active textarea.form-control:focus:hover, .btn-primary.active textarea.form-control:focus, .btn-primary.active textarea.form-control:focus:hover,
      .show > .btn-primary.dropdown-toggle textarea.form-control:focus,
      .show > .btn-primary.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-primary:active select.form-control, .btn-primary.active select.form-control,
    .show > .btn-primary.dropdown-toggle 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); }
      .btn-primary:active select.form-control[multiple], .btn-primary:active select.form-control[size], .btn-primary.active select.form-control[multiple], .btn-primary.active select.form-control[size],
      .show > .btn-primary.dropdown-toggle select.form-control[multiple],
      .show > .btn-primary.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-primary:active select.form-control[multiple]:hover, .btn-primary:active select.form-control[size]:hover, .btn-primary.active select.form-control[multiple]:hover, .btn-primary.active select.form-control[size]:hover,
        .show > .btn-primary.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-primary.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-primary:active select.form-control[multiple]:focus, .btn-primary:active select.form-control[multiple]:focus:hover, .btn-primary:active select.form-control[size]:focus, .btn-primary:active select.form-control[size]:focus:hover, .btn-primary.active select.form-control[multiple]:focus, .btn-primary.active select.form-control[multiple]:focus:hover, .btn-primary.active select.form-control[size]:focus, .btn-primary.active select.form-control[size]:focus:hover,
        .show > .btn-primary.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-primary.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-primary.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-primary.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-primary:active .form-group > label, .btn-primary.active .form-group > label,
    .show > .btn-primary.dropdown-toggle .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-primary:active .nav .subheader, .btn-primary.active .nav .subheader,
    .show > .btn-primary.dropdown-toggle .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-primary:active .nav .nav-link, .btn-primary.active .nav .nav-link,
    .show > .btn-primary.dropdown-toggle .nav .nav-link {
      color: white; }
      .btn-primary:active .nav .nav-link:hover, .btn-primary.active .nav .nav-link:hover,
      .show > .btn-primary.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-primary:active .nav .nav-link:hover > i, .btn-primary.active .nav .nav-link:hover > i,
        .show > .btn-primary.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-primary:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-primary:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-primary:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-primary:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-primary:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-primary:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-primary.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-primary.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-primary.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-primary.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-primary.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-primary.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-primary.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-primary.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-primary.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-primary.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-primary.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-primary.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-primary:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-primary:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-primary:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-primary:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-primary:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-primary:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-primary.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-primary.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-primary.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-primary.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-primary.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-primary.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-primary.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-primary.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-primary.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-primary.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-primary.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-primary.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-primary:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-primary:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-primary:active input[type=checkbox]:disabled ~ .form-check-description, .btn-primary:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-primary:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-primary:active input[type=checkbox][disabled] ~ .form-check-description, .btn-primary.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-primary.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-primary.active input[type=checkbox]:disabled ~ .form-check-description, .btn-primary.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-primary.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-primary.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-primary.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-primary.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-primary.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-primary.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-primary.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-primary.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-primary:active .form-check.disabled .form-check-label, .btn-primary.active .form-check.disabled .form-check-label,
    .show > .btn-primary.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-primary:active .custom-control-input:disabled ~ .custom-control-description, .btn-primary.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-primary.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-primary:active #sidenav .nav-link:hover:not(.active), .btn-primary.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-primary.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-primary:active #sidenav .nav-link:hover:not(.active) > i, .btn-primary.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-primary.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-primary.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28)!important; }

.btn-secondary {
  color: #FFF;
  background-color: #2196F3;
  border-color: #2196F3;
  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;
  color: white!important; }
  .btn-secondary:hover {
    color: #FFF;
    background-color: #0c83e2;
    border-color: #0c7cd5;
    color: white; }
    .btn-secondary:hover a:hover {
      color: #1c1e26; }
    .btn-secondary:hover i, .btn-secondary:hover [class^="icon-"], .btn-secondary:hover [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-secondary:hover .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-secondary:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-secondary:hover .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-secondary:hover .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-secondary:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-secondary:hover .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-secondary:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-secondary:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-secondary:hover textarea.form-control:focus, .btn-secondary:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-secondary:hover 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); }
      .btn-secondary:hover select.form-control[multiple], .btn-secondary:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-secondary:hover select.form-control[multiple]:hover, .btn-secondary:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-secondary:hover select.form-control[multiple]:focus, .btn-secondary:hover select.form-control[multiple]:focus:hover, .btn-secondary:hover select.form-control[size]:focus, .btn-secondary:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-secondary:hover .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-secondary:hover .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-secondary:hover .nav .nav-link {
      color: white; }
      .btn-secondary:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-secondary:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-secondary:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-secondary:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-secondary:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-secondary:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-secondary:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-secondary:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-secondary:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-secondary:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-secondary:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-secondary:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-secondary:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-secondary:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-secondary:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-secondary:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-secondary:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-secondary:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-secondary:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-secondary:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-secondary:hover .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-secondary:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-secondary:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-secondary:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-secondary a:hover {
    color: #1c1e26; }
  .btn-secondary i, .btn-secondary [class^="icon-"], .btn-secondary [class*=" icon-"] {
    color: rgba(255, 255, 255, 0.87)!important; }
  .btn-secondary .text-muted {
    color: rgba(255, 255, 255, 0.5) !important; }
  .btn-secondary .fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }
  .btn-secondary .form-control {
    color: white;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
    .btn-secondary .form-control:hover {
      box-shadow: 0 2px 0 0 white; }
    .btn-secondary .form-control:focus {
      box-shadow: 0 2px 0 0 #3C4252; }
    .btn-secondary .form-control::placeholder {
      color: rgba(255, 255, 255, 0.7); }
  .btn-secondary textarea.form-control {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
    .btn-secondary textarea.form-control:hover {
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
    .btn-secondary textarea.form-control:focus, .btn-secondary textarea.form-control:focus:hover {
      box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-secondary 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); }
    .btn-secondary select.form-control[multiple], .btn-secondary select.form-control[size] {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-secondary select.form-control[multiple]:hover, .btn-secondary select.form-control[size]:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-secondary select.form-control[multiple]:focus, .btn-secondary select.form-control[multiple]:focus:hover, .btn-secondary select.form-control[size]:focus, .btn-secondary select.form-control[size]:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-secondary .form-group > label {
    color: rgba(255, 255, 255, 0.7); }
  .btn-secondary .nav .subheader {
    color: rgba(255, 255, 255, 0.5); }
  .btn-secondary .nav .nav-link {
    color: white; }
    .btn-secondary .nav .nav-link:hover {
      color: #3C4252; }
      .btn-secondary .nav .nav-link:hover > i {
        color: #3C4252; }
  .btn-secondary .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .btn-secondary .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .btn-secondary .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .btn-secondary .custom-radio input[type=radio] ~ .radio-icon:before,
  .btn-secondary .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .btn-secondary .form-check-label input[type=radio] ~ .radio-icon:before {
    border-color: rgba(255, 255, 255, 0.7); }
  .btn-secondary .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-secondary .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .btn-secondary .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-secondary .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .btn-secondary .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-secondary .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
    color: rgba(255, 255, 255, 0.7); }
  .btn-secondary input[type=checkbox]:disabled ~ .checkbox-icon,
  .btn-secondary input[type=checkbox]:disabled ~ .custom-control-indicator,
  .btn-secondary input[type=checkbox]:disabled ~ .form-check-description, .btn-secondary input[type=checkbox][disabled] ~ .checkbox-icon,
  .btn-secondary input[type=checkbox][disabled] ~ .custom-control-indicator,
  .btn-secondary input[type=checkbox][disabled] ~ .form-check-description {
    color: rgba(255, 255, 255, 0.5) !important; }
  .btn-secondary .form-check.disabled .form-check-label {
    color: rgba(255, 255, 255, 0.5) !important; }
  .btn-secondary .custom-control-input:disabled ~ .custom-control-description {
    color: rgba(255, 255, 255, 0.5); }
  .btn-secondary #sidenav .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.04) !important; }
    .btn-secondary #sidenav .nav-link:hover:not(.active) > i {
      color: rgba(255, 255, 255, 0.87) !important; }
  .btn-secondary.disabled, .btn-secondary:disabled {
    background-color: #2196F3;
    border-color: #2196F3; }
  .btn-secondary:active, .btn-secondary.active,
  .show > .btn-secondary.dropdown-toggle {
    color: white;
    background-color: #0c83e2;
    background-image: 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-secondary:active a:hover, .btn-secondary.active a:hover,
    .show > .btn-secondary.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-secondary:active i, .btn-secondary:active [class^="icon-"], .btn-secondary:active [class*=" icon-"], .btn-secondary.active i, .btn-secondary.active [class^="icon-"], .btn-secondary.active [class*=" icon-"],
    .show > .btn-secondary.dropdown-toggle i,
    .show > .btn-secondary.dropdown-toggle [class^="icon-"],
    .show > .btn-secondary.dropdown-toggle [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-secondary:active .text-muted, .btn-secondary.active .text-muted,
    .show > .btn-secondary.dropdown-toggle .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-secondary:active .fuse-ripple-ready .fuse-ripple, .btn-secondary.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-secondary.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-secondary:active .form-control, .btn-secondary.active .form-control,
    .show > .btn-secondary.dropdown-toggle .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-secondary:active .form-control:hover, .btn-secondary.active .form-control:hover,
      .show > .btn-secondary.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-secondary:active .form-control:focus, .btn-secondary.active .form-control:focus,
      .show > .btn-secondary.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-secondary:active .form-control::placeholder, .btn-secondary.active .form-control::placeholder,
      .show > .btn-secondary.dropdown-toggle .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-secondary:active textarea.form-control, .btn-secondary.active textarea.form-control,
    .show > .btn-secondary.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-secondary:active textarea.form-control:hover, .btn-secondary.active textarea.form-control:hover,
      .show > .btn-secondary.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-secondary:active textarea.form-control:focus, .btn-secondary:active textarea.form-control:focus:hover, .btn-secondary.active textarea.form-control:focus, .btn-secondary.active textarea.form-control:focus:hover,
      .show > .btn-secondary.dropdown-toggle textarea.form-control:focus,
      .show > .btn-secondary.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-secondary:active select.form-control, .btn-secondary.active select.form-control,
    .show > .btn-secondary.dropdown-toggle 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); }
      .btn-secondary:active select.form-control[multiple], .btn-secondary:active select.form-control[size], .btn-secondary.active select.form-control[multiple], .btn-secondary.active select.form-control[size],
      .show > .btn-secondary.dropdown-toggle select.form-control[multiple],
      .show > .btn-secondary.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-secondary:active select.form-control[multiple]:hover, .btn-secondary:active select.form-control[size]:hover, .btn-secondary.active select.form-control[multiple]:hover, .btn-secondary.active select.form-control[size]:hover,
        .show > .btn-secondary.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-secondary.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-secondary:active select.form-control[multiple]:focus, .btn-secondary:active select.form-control[multiple]:focus:hover, .btn-secondary:active select.form-control[size]:focus, .btn-secondary:active select.form-control[size]:focus:hover, .btn-secondary.active select.form-control[multiple]:focus, .btn-secondary.active select.form-control[multiple]:focus:hover, .btn-secondary.active select.form-control[size]:focus, .btn-secondary.active select.form-control[size]:focus:hover,
        .show > .btn-secondary.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-secondary.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-secondary.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-secondary.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-secondary:active .form-group > label, .btn-secondary.active .form-group > label,
    .show > .btn-secondary.dropdown-toggle .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-secondary:active .nav .subheader, .btn-secondary.active .nav .subheader,
    .show > .btn-secondary.dropdown-toggle .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-secondary:active .nav .nav-link, .btn-secondary.active .nav .nav-link,
    .show > .btn-secondary.dropdown-toggle .nav .nav-link {
      color: white; }
      .btn-secondary:active .nav .nav-link:hover, .btn-secondary.active .nav .nav-link:hover,
      .show > .btn-secondary.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-secondary:active .nav .nav-link:hover > i, .btn-secondary.active .nav .nav-link:hover > i,
        .show > .btn-secondary.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-secondary:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-secondary:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-secondary:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-secondary:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-secondary:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-secondary:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-secondary.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-secondary.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-secondary.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-secondary.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-secondary.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-secondary.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-secondary.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-secondary.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-secondary.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-secondary.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-secondary.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-secondary.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-secondary:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-secondary:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-secondary:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-secondary:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-secondary:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-secondary:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-secondary.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-secondary.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-secondary.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-secondary.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-secondary.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-secondary.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-secondary.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-secondary.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-secondary.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-secondary.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-secondary.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-secondary.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-secondary:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-secondary:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-secondary:active input[type=checkbox]:disabled ~ .form-check-description, .btn-secondary:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-secondary:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-secondary:active input[type=checkbox][disabled] ~ .form-check-description, .btn-secondary.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-secondary.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-secondary.active input[type=checkbox]:disabled ~ .form-check-description, .btn-secondary.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-secondary.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-secondary.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-secondary.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-secondary.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-secondary.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-secondary.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-secondary.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-secondary.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-secondary:active .form-check.disabled .form-check-label, .btn-secondary.active .form-check.disabled .form-check-label,
    .show > .btn-secondary.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-secondary:active .custom-control-input:disabled ~ .custom-control-description, .btn-secondary.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-secondary.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-secondary:active #sidenav .nav-link:hover:not(.active), .btn-secondary.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-secondary.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-secondary:active #sidenav .nav-link:hover:not(.active) > i, .btn-secondary.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-secondary.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-secondary.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28)!important; }

.btn-success {
  color: #FFF;
  background-color: #4CAF50;
  border-color: #4CAF50;
  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;
  color: rgba(0, 0, 0, 0.87)!important; }
  .btn-success:hover {
    color: #FFF;
    background-color: #409444;
    border-color: #3d8b40;
    color: rgba(0, 0, 0, 0.87); }
    .btn-success:hover a:hover {
      color: #1c1e26; }
    .btn-success:hover i, .btn-success:hover [class^="icon-"], .btn-success:hover [class*=" icon-"] {
      color: rgba(0, 0, 0, 0.54); }
    .btn-success:hover .text-muted {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-success:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(0, 0, 0, 0.12); }
    .btn-success:hover .form-control {
      color: rgba(0, 0, 0, 0.87);
      box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42); }
      .btn-success:hover .form-control:hover {
        box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
      .btn-success:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-success:hover .form-control::placeholder {
        color: rgba(0, 0, 0, 0.54); }
    .btn-success:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
      .btn-success:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
      .btn-success:hover textarea.form-control:focus, .btn-success:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-success:hover 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); }
      .btn-success:hover select.form-control[multiple], .btn-success:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
        .btn-success:hover select.form-control[multiple]:hover, .btn-success:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
        .btn-success:hover select.form-control[multiple]:focus, .btn-success:hover select.form-control[multiple]:focus:hover, .btn-success:hover select.form-control[size]:focus, .btn-success:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-success:hover .form-group > label {
      color: rgba(0, 0, 0, 0.54); }
    .btn-success:hover .nav .subheader {
      color: rgba(0, 0, 0, 0.54); }
    .btn-success:hover .nav .nav-link {
      color: rgba(0, 0, 0, 0.87); }
      .btn-success:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-success:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-success:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-success:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-success:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-success:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-success:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-success:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(0, 0, 0, 0.54); }
    .btn-success:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-success:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-success:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-success:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-success:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-success:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(0, 0, 0, 0.54); }
    .btn-success:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-success:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-success:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-success:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-success:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-success:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-success:hover .form-check.disabled .form-check-label {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-success:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(0, 0, 0, 0.54); }
    .btn-success:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(0, 0, 0, 0.05) !important; }
      .btn-success:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(0, 0, 0, 0.54) !important; }
  .btn-success a:hover {
    color: #1c1e26; }
  .btn-success i, .btn-success [class^="icon-"], .btn-success [class*=" icon-"] {
    color: rgba(0, 0, 0, 0.54)!important; }
  .btn-success .text-muted {
    color: rgba(0, 0, 0, 0.38) !important; }
  .btn-success .fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }
  .btn-success .form-control {
    color: rgba(0, 0, 0, 0.87);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42); }
    .btn-success .form-control:hover {
      box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
    .btn-success .form-control:focus {
      box-shadow: 0 2px 0 0 #3C4252; }
    .btn-success .form-control::placeholder {
      color: rgba(0, 0, 0, 0.54); }
  .btn-success textarea.form-control {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
    .btn-success textarea.form-control:hover {
      box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
    .btn-success textarea.form-control:focus, .btn-success textarea.form-control:focus:hover {
      box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-success 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); }
    .btn-success select.form-control[multiple], .btn-success select.form-control[size] {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
      .btn-success select.form-control[multiple]:hover, .btn-success select.form-control[size]:hover {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
      .btn-success select.form-control[multiple]:focus, .btn-success select.form-control[multiple]:focus:hover, .btn-success select.form-control[size]:focus, .btn-success select.form-control[size]:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-success .form-group > label {
    color: rgba(0, 0, 0, 0.54); }
  .btn-success .nav .subheader {
    color: rgba(0, 0, 0, 0.54); }
  .btn-success .nav .nav-link {
    color: rgba(0, 0, 0, 0.87); }
    .btn-success .nav .nav-link:hover {
      color: #3C4252; }
      .btn-success .nav .nav-link:hover > i {
        color: #3C4252; }
  .btn-success .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .btn-success .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .btn-success .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .btn-success .custom-radio input[type=radio] ~ .radio-icon:before,
  .btn-success .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .btn-success .form-check-label input[type=radio] ~ .radio-icon:before {
    border-color: rgba(0, 0, 0, 0.54); }
  .btn-success .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-success .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .btn-success .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-success .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .btn-success .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-success .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
    color: rgba(0, 0, 0, 0.54); }
  .btn-success input[type=checkbox]:disabled ~ .checkbox-icon,
  .btn-success input[type=checkbox]:disabled ~ .custom-control-indicator,
  .btn-success input[type=checkbox]:disabled ~ .form-check-description, .btn-success input[type=checkbox][disabled] ~ .checkbox-icon,
  .btn-success input[type=checkbox][disabled] ~ .custom-control-indicator,
  .btn-success input[type=checkbox][disabled] ~ .form-check-description {
    color: rgba(0, 0, 0, 0.38) !important; }
  .btn-success .form-check.disabled .form-check-label {
    color: rgba(0, 0, 0, 0.38) !important; }
  .btn-success .custom-control-input:disabled ~ .custom-control-description {
    color: rgba(0, 0, 0, 0.54); }
  .btn-success #sidenav .nav-link:hover:not(.active) {
    background: rgba(0, 0, 0, 0.05) !important; }
    .btn-success #sidenav .nav-link:hover:not(.active) > i {
      color: rgba(0, 0, 0, 0.54) !important; }
  .btn-success.disabled, .btn-success:disabled {
    background-color: #4CAF50;
    border-color: #4CAF50; }
  .btn-success:active, .btn-success.active,
  .show > .btn-success.dropdown-toggle {
    color: rgba(0, 0, 0, 0.87);
    background-color: #409444;
    background-image: 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-success:active a:hover, .btn-success.active a:hover,
    .show > .btn-success.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-success:active i, .btn-success:active [class^="icon-"], .btn-success:active [class*=" icon-"], .btn-success.active i, .btn-success.active [class^="icon-"], .btn-success.active [class*=" icon-"],
    .show > .btn-success.dropdown-toggle i,
    .show > .btn-success.dropdown-toggle [class^="icon-"],
    .show > .btn-success.dropdown-toggle [class*=" icon-"] {
      color: rgba(0, 0, 0, 0.54); }
    .btn-success:active .text-muted, .btn-success.active .text-muted,
    .show > .btn-success.dropdown-toggle .text-muted {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-success:active .fuse-ripple-ready .fuse-ripple, .btn-success.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-success.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(0, 0, 0, 0.12); }
    .btn-success:active .form-control, .btn-success.active .form-control,
    .show > .btn-success.dropdown-toggle .form-control {
      color: rgba(0, 0, 0, 0.87);
      box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42); }
      .btn-success:active .form-control:hover, .btn-success.active .form-control:hover,
      .show > .btn-success.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
      .btn-success:active .form-control:focus, .btn-success.active .form-control:focus,
      .show > .btn-success.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-success:active .form-control::placeholder, .btn-success.active .form-control::placeholder,
      .show > .btn-success.dropdown-toggle .form-control::placeholder {
        color: rgba(0, 0, 0, 0.54); }
    .btn-success:active textarea.form-control, .btn-success.active textarea.form-control,
    .show > .btn-success.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
      .btn-success:active textarea.form-control:hover, .btn-success.active textarea.form-control:hover,
      .show > .btn-success.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
      .btn-success:active textarea.form-control:focus, .btn-success:active textarea.form-control:focus:hover, .btn-success.active textarea.form-control:focus, .btn-success.active textarea.form-control:focus:hover,
      .show > .btn-success.dropdown-toggle textarea.form-control:focus,
      .show > .btn-success.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-success:active select.form-control, .btn-success.active select.form-control,
    .show > .btn-success.dropdown-toggle 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); }
      .btn-success:active select.form-control[multiple], .btn-success:active select.form-control[size], .btn-success.active select.form-control[multiple], .btn-success.active select.form-control[size],
      .show > .btn-success.dropdown-toggle select.form-control[multiple],
      .show > .btn-success.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
        .btn-success:active select.form-control[multiple]:hover, .btn-success:active select.form-control[size]:hover, .btn-success.active select.form-control[multiple]:hover, .btn-success.active select.form-control[size]:hover,
        .show > .btn-success.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-success.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
        .btn-success:active select.form-control[multiple]:focus, .btn-success:active select.form-control[multiple]:focus:hover, .btn-success:active select.form-control[size]:focus, .btn-success:active select.form-control[size]:focus:hover, .btn-success.active select.form-control[multiple]:focus, .btn-success.active select.form-control[multiple]:focus:hover, .btn-success.active select.form-control[size]:focus, .btn-success.active select.form-control[size]:focus:hover,
        .show > .btn-success.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-success.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-success.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-success.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-success:active .form-group > label, .btn-success.active .form-group > label,
    .show > .btn-success.dropdown-toggle .form-group > label {
      color: rgba(0, 0, 0, 0.54); }
    .btn-success:active .nav .subheader, .btn-success.active .nav .subheader,
    .show > .btn-success.dropdown-toggle .nav .subheader {
      color: rgba(0, 0, 0, 0.54); }
    .btn-success:active .nav .nav-link, .btn-success.active .nav .nav-link,
    .show > .btn-success.dropdown-toggle .nav .nav-link {
      color: rgba(0, 0, 0, 0.87); }
      .btn-success:active .nav .nav-link:hover, .btn-success.active .nav .nav-link:hover,
      .show > .btn-success.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-success:active .nav .nav-link:hover > i, .btn-success.active .nav .nav-link:hover > i,
        .show > .btn-success.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-success:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-success:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-success:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-success:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-success:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-success:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-success.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-success.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-success.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-success.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-success.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-success.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-success.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-success.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-success.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-success.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-success.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-success.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(0, 0, 0, 0.54); }
    .btn-success:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-success:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-success:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-success:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-success:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-success:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-success.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-success.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-success.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-success.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-success.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-success.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-success.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-success.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-success.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-success.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-success.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-success.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(0, 0, 0, 0.54); }
    .btn-success:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-success:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-success:active input[type=checkbox]:disabled ~ .form-check-description, .btn-success:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-success:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-success:active input[type=checkbox][disabled] ~ .form-check-description, .btn-success.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-success.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-success.active input[type=checkbox]:disabled ~ .form-check-description, .btn-success.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-success.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-success.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-success.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-success.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-success.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-success.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-success.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-success.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-success:active .form-check.disabled .form-check-label, .btn-success.active .form-check.disabled .form-check-label,
    .show > .btn-success.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-success:active .custom-control-input:disabled ~ .custom-control-description, .btn-success.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-success.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(0, 0, 0, 0.54); }
    .btn-success:active #sidenav .nav-link:hover:not(.active), .btn-success.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-success.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(0, 0, 0, 0.05) !important; }
      .btn-success:active #sidenav .nav-link:hover:not(.active) > i, .btn-success.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-success.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(0, 0, 0, 0.54) !important; }
  .btn-success.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12)!important; }

.btn-info {
  color: #FFF;
  background-color: #009688;
  border-color: #009688;
  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;
  color: white!important; }
  .btn-info:hover {
    color: #FFF;
    background-color: #007065;
    border-color: #00635a;
    color: white; }
    .btn-info:hover a:hover {
      color: #1c1e26; }
    .btn-info:hover i, .btn-info:hover [class^="icon-"], .btn-info:hover [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-info:hover .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-info:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-info:hover .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-info:hover .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-info:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-info:hover .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-info:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-info:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-info:hover textarea.form-control:focus, .btn-info:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-info:hover 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); }
      .btn-info:hover select.form-control[multiple], .btn-info:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-info:hover select.form-control[multiple]:hover, .btn-info:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-info:hover select.form-control[multiple]:focus, .btn-info:hover select.form-control[multiple]:focus:hover, .btn-info:hover select.form-control[size]:focus, .btn-info:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-info:hover .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-info:hover .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-info:hover .nav .nav-link {
      color: white; }
      .btn-info:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-info:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-info:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-info:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-info:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-info:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-info:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-info:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-info:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-info:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-info:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-info:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-info:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-info:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-info:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-info:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-info:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-info:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-info:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-info:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-info:hover .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-info:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-info:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-info:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-info a:hover {
    color: #1c1e26; }
  .btn-info i, .btn-info [class^="icon-"], .btn-info [class*=" icon-"] {
    color: rgba(255, 255, 255, 0.87)!important; }
  .btn-info .text-muted {
    color: rgba(255, 255, 255, 0.5) !important; }
  .btn-info .fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }
  .btn-info .form-control {
    color: white;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
    .btn-info .form-control:hover {
      box-shadow: 0 2px 0 0 white; }
    .btn-info .form-control:focus {
      box-shadow: 0 2px 0 0 #3C4252; }
    .btn-info .form-control::placeholder {
      color: rgba(255, 255, 255, 0.7); }
  .btn-info textarea.form-control {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
    .btn-info textarea.form-control:hover {
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
    .btn-info textarea.form-control:focus, .btn-info textarea.form-control:focus:hover {
      box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-info 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); }
    .btn-info select.form-control[multiple], .btn-info select.form-control[size] {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-info select.form-control[multiple]:hover, .btn-info select.form-control[size]:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-info select.form-control[multiple]:focus, .btn-info select.form-control[multiple]:focus:hover, .btn-info select.form-control[size]:focus, .btn-info select.form-control[size]:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-info .form-group > label {
    color: rgba(255, 255, 255, 0.7); }
  .btn-info .nav .subheader {
    color: rgba(255, 255, 255, 0.5); }
  .btn-info .nav .nav-link {
    color: white; }
    .btn-info .nav .nav-link:hover {
      color: #3C4252; }
      .btn-info .nav .nav-link:hover > i {
        color: #3C4252; }
  .btn-info .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .btn-info .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .btn-info .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .btn-info .custom-radio input[type=radio] ~ .radio-icon:before,
  .btn-info .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .btn-info .form-check-label input[type=radio] ~ .radio-icon:before {
    border-color: rgba(255, 255, 255, 0.7); }
  .btn-info .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-info .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .btn-info .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-info .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .btn-info .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-info .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
    color: rgba(255, 255, 255, 0.7); }
  .btn-info input[type=checkbox]:disabled ~ .checkbox-icon,
  .btn-info input[type=checkbox]:disabled ~ .custom-control-indicator,
  .btn-info input[type=checkbox]:disabled ~ .form-check-description, .btn-info input[type=checkbox][disabled] ~ .checkbox-icon,
  .btn-info input[type=checkbox][disabled] ~ .custom-control-indicator,
  .btn-info input[type=checkbox][disabled] ~ .form-check-description {
    color: rgba(255, 255, 255, 0.5) !important; }
  .btn-info .form-check.disabled .form-check-label {
    color: rgba(255, 255, 255, 0.5) !important; }
  .btn-info .custom-control-input:disabled ~ .custom-control-description {
    color: rgba(255, 255, 255, 0.5); }
  .btn-info #sidenav .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.04) !important; }
    .btn-info #sidenav .nav-link:hover:not(.active) > i {
      color: rgba(255, 255, 255, 0.87) !important; }
  .btn-info.disabled, .btn-info:disabled {
    background-color: #009688;
    border-color: #009688; }
  .btn-info:active, .btn-info.active,
  .show > .btn-info.dropdown-toggle {
    color: white;
    background-color: #007065;
    background-image: 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-info:active a:hover, .btn-info.active a:hover,
    .show > .btn-info.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-info:active i, .btn-info:active [class^="icon-"], .btn-info:active [class*=" icon-"], .btn-info.active i, .btn-info.active [class^="icon-"], .btn-info.active [class*=" icon-"],
    .show > .btn-info.dropdown-toggle i,
    .show > .btn-info.dropdown-toggle [class^="icon-"],
    .show > .btn-info.dropdown-toggle [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-info:active .text-muted, .btn-info.active .text-muted,
    .show > .btn-info.dropdown-toggle .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-info:active .fuse-ripple-ready .fuse-ripple, .btn-info.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-info.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-info:active .form-control, .btn-info.active .form-control,
    .show > .btn-info.dropdown-toggle .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-info:active .form-control:hover, .btn-info.active .form-control:hover,
      .show > .btn-info.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-info:active .form-control:focus, .btn-info.active .form-control:focus,
      .show > .btn-info.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-info:active .form-control::placeholder, .btn-info.active .form-control::placeholder,
      .show > .btn-info.dropdown-toggle .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-info:active textarea.form-control, .btn-info.active textarea.form-control,
    .show > .btn-info.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-info:active textarea.form-control:hover, .btn-info.active textarea.form-control:hover,
      .show > .btn-info.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-info:active textarea.form-control:focus, .btn-info:active textarea.form-control:focus:hover, .btn-info.active textarea.form-control:focus, .btn-info.active textarea.form-control:focus:hover,
      .show > .btn-info.dropdown-toggle textarea.form-control:focus,
      .show > .btn-info.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-info:active select.form-control, .btn-info.active select.form-control,
    .show > .btn-info.dropdown-toggle 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); }
      .btn-info:active select.form-control[multiple], .btn-info:active select.form-control[size], .btn-info.active select.form-control[multiple], .btn-info.active select.form-control[size],
      .show > .btn-info.dropdown-toggle select.form-control[multiple],
      .show > .btn-info.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-info:active select.form-control[multiple]:hover, .btn-info:active select.form-control[size]:hover, .btn-info.active select.form-control[multiple]:hover, .btn-info.active select.form-control[size]:hover,
        .show > .btn-info.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-info.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-info:active select.form-control[multiple]:focus, .btn-info:active select.form-control[multiple]:focus:hover, .btn-info:active select.form-control[size]:focus, .btn-info:active select.form-control[size]:focus:hover, .btn-info.active select.form-control[multiple]:focus, .btn-info.active select.form-control[multiple]:focus:hover, .btn-info.active select.form-control[size]:focus, .btn-info.active select.form-control[size]:focus:hover,
        .show > .btn-info.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-info.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-info.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-info.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-info:active .form-group > label, .btn-info.active .form-group > label,
    .show > .btn-info.dropdown-toggle .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-info:active .nav .subheader, .btn-info.active .nav .subheader,
    .show > .btn-info.dropdown-toggle .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-info:active .nav .nav-link, .btn-info.active .nav .nav-link,
    .show > .btn-info.dropdown-toggle .nav .nav-link {
      color: white; }
      .btn-info:active .nav .nav-link:hover, .btn-info.active .nav .nav-link:hover,
      .show > .btn-info.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-info:active .nav .nav-link:hover > i, .btn-info.active .nav .nav-link:hover > i,
        .show > .btn-info.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-info:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-info:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-info:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-info:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-info:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-info:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-info.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-info.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-info.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-info.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-info.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-info.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-info.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-info.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-info.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-info.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-info.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-info.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-info:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-info:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-info:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-info:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-info:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-info:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-info.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-info.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-info.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-info.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-info.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-info.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-info.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-info.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-info.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-info.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-info.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-info.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-info:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-info:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-info:active input[type=checkbox]:disabled ~ .form-check-description, .btn-info:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-info:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-info:active input[type=checkbox][disabled] ~ .form-check-description, .btn-info.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-info.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-info.active input[type=checkbox]:disabled ~ .form-check-description, .btn-info.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-info.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-info.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-info.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-info.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-info.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-info.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-info.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-info.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-info:active .form-check.disabled .form-check-label, .btn-info.active .form-check.disabled .form-check-label,
    .show > .btn-info.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-info:active .custom-control-input:disabled ~ .custom-control-description, .btn-info.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-info.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-info:active #sidenav .nav-link:hover:not(.active), .btn-info.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-info.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-info:active #sidenav .nav-link:hover:not(.active) > i, .btn-info.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-info.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-info.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28)!important; }

.btn-warning {
  color: #212529;
  background-color: #FF9800;
  border-color: #FF9800;
  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;
  color: rgba(0, 0, 0, 0.87)!important; }
  .btn-warning:hover {
    color: #212529;
    background-color: #d98100;
    border-color: #cc7a00;
    color: rgba(0, 0, 0, 0.87); }
    .btn-warning:hover a:hover {
      color: #1c1e26; }
    .btn-warning:hover i, .btn-warning:hover [class^="icon-"], .btn-warning:hover [class*=" icon-"] {
      color: rgba(0, 0, 0, 0.54); }
    .btn-warning:hover .text-muted {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-warning:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(0, 0, 0, 0.12); }
    .btn-warning:hover .form-control {
      color: rgba(0, 0, 0, 0.87);
      box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42); }
      .btn-warning:hover .form-control:hover {
        box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
      .btn-warning:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-warning:hover .form-control::placeholder {
        color: rgba(0, 0, 0, 0.54); }
    .btn-warning:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
      .btn-warning:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
      .btn-warning:hover textarea.form-control:focus, .btn-warning:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-warning:hover 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); }
      .btn-warning:hover select.form-control[multiple], .btn-warning:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
        .btn-warning:hover select.form-control[multiple]:hover, .btn-warning:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
        .btn-warning:hover select.form-control[multiple]:focus, .btn-warning:hover select.form-control[multiple]:focus:hover, .btn-warning:hover select.form-control[size]:focus, .btn-warning:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-warning:hover .form-group > label {
      color: rgba(0, 0, 0, 0.54); }
    .btn-warning:hover .nav .subheader {
      color: rgba(0, 0, 0, 0.54); }
    .btn-warning:hover .nav .nav-link {
      color: rgba(0, 0, 0, 0.87); }
      .btn-warning:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-warning:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-warning:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-warning:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-warning:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-warning:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-warning:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-warning:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(0, 0, 0, 0.54); }
    .btn-warning:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-warning:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-warning:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-warning:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-warning:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-warning:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(0, 0, 0, 0.54); }
    .btn-warning:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-warning:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-warning:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-warning:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-warning:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-warning:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-warning:hover .form-check.disabled .form-check-label {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-warning:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(0, 0, 0, 0.54); }
    .btn-warning:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(0, 0, 0, 0.05) !important; }
      .btn-warning:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(0, 0, 0, 0.54) !important; }
  .btn-warning a:hover {
    color: #1c1e26; }
  .btn-warning i, .btn-warning [class^="icon-"], .btn-warning [class*=" icon-"] {
    color: rgba(0, 0, 0, 0.54)!important; }
  .btn-warning .text-muted {
    color: rgba(0, 0, 0, 0.38) !important; }
  .btn-warning .fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }
  .btn-warning .form-control {
    color: rgba(0, 0, 0, 0.87);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42); }
    .btn-warning .form-control:hover {
      box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
    .btn-warning .form-control:focus {
      box-shadow: 0 2px 0 0 #3C4252; }
    .btn-warning .form-control::placeholder {
      color: rgba(0, 0, 0, 0.54); }
  .btn-warning textarea.form-control {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
    .btn-warning textarea.form-control:hover {
      box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
    .btn-warning textarea.form-control:focus, .btn-warning textarea.form-control:focus:hover {
      box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-warning 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); }
    .btn-warning select.form-control[multiple], .btn-warning select.form-control[size] {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
      .btn-warning select.form-control[multiple]:hover, .btn-warning select.form-control[size]:hover {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
      .btn-warning select.form-control[multiple]:focus, .btn-warning select.form-control[multiple]:focus:hover, .btn-warning select.form-control[size]:focus, .btn-warning select.form-control[size]:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-warning .form-group > label {
    color: rgba(0, 0, 0, 0.54); }
  .btn-warning .nav .subheader {
    color: rgba(0, 0, 0, 0.54); }
  .btn-warning .nav .nav-link {
    color: rgba(0, 0, 0, 0.87); }
    .btn-warning .nav .nav-link:hover {
      color: #3C4252; }
      .btn-warning .nav .nav-link:hover > i {
        color: #3C4252; }
  .btn-warning .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .btn-warning .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .btn-warning .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .btn-warning .custom-radio input[type=radio] ~ .radio-icon:before,
  .btn-warning .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .btn-warning .form-check-label input[type=radio] ~ .radio-icon:before {
    border-color: rgba(0, 0, 0, 0.54); }
  .btn-warning .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-warning .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .btn-warning .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-warning .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .btn-warning .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-warning .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
    color: rgba(0, 0, 0, 0.54); }
  .btn-warning input[type=checkbox]:disabled ~ .checkbox-icon,
  .btn-warning input[type=checkbox]:disabled ~ .custom-control-indicator,
  .btn-warning input[type=checkbox]:disabled ~ .form-check-description, .btn-warning input[type=checkbox][disabled] ~ .checkbox-icon,
  .btn-warning input[type=checkbox][disabled] ~ .custom-control-indicator,
  .btn-warning input[type=checkbox][disabled] ~ .form-check-description {
    color: rgba(0, 0, 0, 0.38) !important; }
  .btn-warning .form-check.disabled .form-check-label {
    color: rgba(0, 0, 0, 0.38) !important; }
  .btn-warning .custom-control-input:disabled ~ .custom-control-description {
    color: rgba(0, 0, 0, 0.54); }
  .btn-warning #sidenav .nav-link:hover:not(.active) {
    background: rgba(0, 0, 0, 0.05) !important; }
    .btn-warning #sidenav .nav-link:hover:not(.active) > i {
      color: rgba(0, 0, 0, 0.54) !important; }
  .btn-warning.disabled, .btn-warning:disabled {
    background-color: #FF9800;
    border-color: #FF9800; }
  .btn-warning:active, .btn-warning.active,
  .show > .btn-warning.dropdown-toggle {
    color: rgba(0, 0, 0, 0.87);
    background-color: #d98100;
    background-image: 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-warning:active a:hover, .btn-warning.active a:hover,
    .show > .btn-warning.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-warning:active i, .btn-warning:active [class^="icon-"], .btn-warning:active [class*=" icon-"], .btn-warning.active i, .btn-warning.active [class^="icon-"], .btn-warning.active [class*=" icon-"],
    .show > .btn-warning.dropdown-toggle i,
    .show > .btn-warning.dropdown-toggle [class^="icon-"],
    .show > .btn-warning.dropdown-toggle [class*=" icon-"] {
      color: rgba(0, 0, 0, 0.54); }
    .btn-warning:active .text-muted, .btn-warning.active .text-muted,
    .show > .btn-warning.dropdown-toggle .text-muted {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-warning:active .fuse-ripple-ready .fuse-ripple, .btn-warning.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-warning.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(0, 0, 0, 0.12); }
    .btn-warning:active .form-control, .btn-warning.active .form-control,
    .show > .btn-warning.dropdown-toggle .form-control {
      color: rgba(0, 0, 0, 0.87);
      box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42); }
      .btn-warning:active .form-control:hover, .btn-warning.active .form-control:hover,
      .show > .btn-warning.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
      .btn-warning:active .form-control:focus, .btn-warning.active .form-control:focus,
      .show > .btn-warning.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-warning:active .form-control::placeholder, .btn-warning.active .form-control::placeholder,
      .show > .btn-warning.dropdown-toggle .form-control::placeholder {
        color: rgba(0, 0, 0, 0.54); }
    .btn-warning:active textarea.form-control, .btn-warning.active textarea.form-control,
    .show > .btn-warning.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
      .btn-warning:active textarea.form-control:hover, .btn-warning.active textarea.form-control:hover,
      .show > .btn-warning.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
      .btn-warning:active textarea.form-control:focus, .btn-warning:active textarea.form-control:focus:hover, .btn-warning.active textarea.form-control:focus, .btn-warning.active textarea.form-control:focus:hover,
      .show > .btn-warning.dropdown-toggle textarea.form-control:focus,
      .show > .btn-warning.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-warning:active select.form-control, .btn-warning.active select.form-control,
    .show > .btn-warning.dropdown-toggle 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); }
      .btn-warning:active select.form-control[multiple], .btn-warning:active select.form-control[size], .btn-warning.active select.form-control[multiple], .btn-warning.active select.form-control[size],
      .show > .btn-warning.dropdown-toggle select.form-control[multiple],
      .show > .btn-warning.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
        .btn-warning:active select.form-control[multiple]:hover, .btn-warning:active select.form-control[size]:hover, .btn-warning.active select.form-control[multiple]:hover, .btn-warning.active select.form-control[size]:hover,
        .show > .btn-warning.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-warning.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
        .btn-warning:active select.form-control[multiple]:focus, .btn-warning:active select.form-control[multiple]:focus:hover, .btn-warning:active select.form-control[size]:focus, .btn-warning:active select.form-control[size]:focus:hover, .btn-warning.active select.form-control[multiple]:focus, .btn-warning.active select.form-control[multiple]:focus:hover, .btn-warning.active select.form-control[size]:focus, .btn-warning.active select.form-control[size]:focus:hover,
        .show > .btn-warning.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-warning.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-warning.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-warning.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-warning:active .form-group > label, .btn-warning.active .form-group > label,
    .show > .btn-warning.dropdown-toggle .form-group > label {
      color: rgba(0, 0, 0, 0.54); }
    .btn-warning:active .nav .subheader, .btn-warning.active .nav .subheader,
    .show > .btn-warning.dropdown-toggle .nav .subheader {
      color: rgba(0, 0, 0, 0.54); }
    .btn-warning:active .nav .nav-link, .btn-warning.active .nav .nav-link,
    .show > .btn-warning.dropdown-toggle .nav .nav-link {
      color: rgba(0, 0, 0, 0.87); }
      .btn-warning:active .nav .nav-link:hover, .btn-warning.active .nav .nav-link:hover,
      .show > .btn-warning.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-warning:active .nav .nav-link:hover > i, .btn-warning.active .nav .nav-link:hover > i,
        .show > .btn-warning.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-warning:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-warning:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-warning:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-warning:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-warning:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-warning:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-warning.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-warning.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-warning.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-warning.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-warning.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-warning.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-warning.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-warning.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-warning.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-warning.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-warning.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-warning.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(0, 0, 0, 0.54); }
    .btn-warning:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-warning:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-warning:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-warning:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-warning:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-warning:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-warning.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-warning.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-warning.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-warning.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-warning.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-warning.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-warning.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-warning.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-warning.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-warning.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-warning.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-warning.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(0, 0, 0, 0.54); }
    .btn-warning:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-warning:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-warning:active input[type=checkbox]:disabled ~ .form-check-description, .btn-warning:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-warning:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-warning:active input[type=checkbox][disabled] ~ .form-check-description, .btn-warning.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-warning.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-warning.active input[type=checkbox]:disabled ~ .form-check-description, .btn-warning.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-warning.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-warning.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-warning.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-warning.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-warning.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-warning.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-warning.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-warning.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-warning:active .form-check.disabled .form-check-label, .btn-warning.active .form-check.disabled .form-check-label,
    .show > .btn-warning.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-warning:active .custom-control-input:disabled ~ .custom-control-description, .btn-warning.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-warning.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(0, 0, 0, 0.54); }
    .btn-warning:active #sidenav .nav-link:hover:not(.active), .btn-warning.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-warning.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(0, 0, 0, 0.05) !important; }
      .btn-warning:active #sidenav .nav-link:hover:not(.active) > i, .btn-warning.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-warning.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(0, 0, 0, 0.54) !important; }
  .btn-warning.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12)!important; }

.btn-danger {
  color: #FFF;
  background-color: #F44336;
  border-color: #F44336;
  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;
  color: white!important; }
  .btn-danger:hover {
    color: #FFF;
    background-color: #f22112;
    border-color: #ea1c0d;
    color: white; }
    .btn-danger:hover a:hover {
      color: #1c1e26; }
    .btn-danger:hover i, .btn-danger:hover [class^="icon-"], .btn-danger:hover [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-danger:hover .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-danger:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-danger:hover .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-danger:hover .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-danger:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-danger:hover .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-danger:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-danger:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-danger:hover textarea.form-control:focus, .btn-danger:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-danger:hover 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); }
      .btn-danger:hover select.form-control[multiple], .btn-danger:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-danger:hover select.form-control[multiple]:hover, .btn-danger:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-danger:hover select.form-control[multiple]:focus, .btn-danger:hover select.form-control[multiple]:focus:hover, .btn-danger:hover select.form-control[size]:focus, .btn-danger:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-danger:hover .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-danger:hover .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-danger:hover .nav .nav-link {
      color: white; }
      .btn-danger:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-danger:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-danger:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-danger:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-danger:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-danger:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-danger:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-danger:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-danger:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-danger:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-danger:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-danger:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-danger:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-danger:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-danger:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-danger:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-danger:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-danger:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-danger:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-danger:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-danger:hover .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-danger:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-danger:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-danger:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-danger a:hover {
    color: #1c1e26; }
  .btn-danger i, .btn-danger [class^="icon-"], .btn-danger [class*=" icon-"] {
    color: rgba(255, 255, 255, 0.87)!important; }
  .btn-danger .text-muted {
    color: rgba(255, 255, 255, 0.5) !important; }
  .btn-danger .fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }
  .btn-danger .form-control {
    color: white;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
    .btn-danger .form-control:hover {
      box-shadow: 0 2px 0 0 white; }
    .btn-danger .form-control:focus {
      box-shadow: 0 2px 0 0 #3C4252; }
    .btn-danger .form-control::placeholder {
      color: rgba(255, 255, 255, 0.7); }
  .btn-danger textarea.form-control {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
    .btn-danger textarea.form-control:hover {
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
    .btn-danger textarea.form-control:focus, .btn-danger textarea.form-control:focus:hover {
      box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-danger 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); }
    .btn-danger select.form-control[multiple], .btn-danger select.form-control[size] {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-danger select.form-control[multiple]:hover, .btn-danger select.form-control[size]:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-danger select.form-control[multiple]:focus, .btn-danger select.form-control[multiple]:focus:hover, .btn-danger select.form-control[size]:focus, .btn-danger select.form-control[size]:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-danger .form-group > label {
    color: rgba(255, 255, 255, 0.7); }
  .btn-danger .nav .subheader {
    color: rgba(255, 255, 255, 0.5); }
  .btn-danger .nav .nav-link {
    color: white; }
    .btn-danger .nav .nav-link:hover {
      color: #3C4252; }
      .btn-danger .nav .nav-link:hover > i {
        color: #3C4252; }
  .btn-danger .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .btn-danger .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .btn-danger .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .btn-danger .custom-radio input[type=radio] ~ .radio-icon:before,
  .btn-danger .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .btn-danger .form-check-label input[type=radio] ~ .radio-icon:before {
    border-color: rgba(255, 255, 255, 0.7); }
  .btn-danger .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-danger .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .btn-danger .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-danger .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .btn-danger .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-danger .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
    color: rgba(255, 255, 255, 0.7); }
  .btn-danger input[type=checkbox]:disabled ~ .checkbox-icon,
  .btn-danger input[type=checkbox]:disabled ~ .custom-control-indicator,
  .btn-danger input[type=checkbox]:disabled ~ .form-check-description, .btn-danger input[type=checkbox][disabled] ~ .checkbox-icon,
  .btn-danger input[type=checkbox][disabled] ~ .custom-control-indicator,
  .btn-danger input[type=checkbox][disabled] ~ .form-check-description {
    color: rgba(255, 255, 255, 0.5) !important; }
  .btn-danger .form-check.disabled .form-check-label {
    color: rgba(255, 255, 255, 0.5) !important; }
  .btn-danger .custom-control-input:disabled ~ .custom-control-description {
    color: rgba(255, 255, 255, 0.5); }
  .btn-danger #sidenav .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.04) !important; }
    .btn-danger #sidenav .nav-link:hover:not(.active) > i {
      color: rgba(255, 255, 255, 0.87) !important; }
  .btn-danger.disabled, .btn-danger:disabled {
    background-color: #F44336;
    border-color: #F44336; }
  .btn-danger:active, .btn-danger.active,
  .show > .btn-danger.dropdown-toggle {
    color: white;
    background-color: #f22112;
    background-image: 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-danger:active a:hover, .btn-danger.active a:hover,
    .show > .btn-danger.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-danger:active i, .btn-danger:active [class^="icon-"], .btn-danger:active [class*=" icon-"], .btn-danger.active i, .btn-danger.active [class^="icon-"], .btn-danger.active [class*=" icon-"],
    .show > .btn-danger.dropdown-toggle i,
    .show > .btn-danger.dropdown-toggle [class^="icon-"],
    .show > .btn-danger.dropdown-toggle [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-danger:active .text-muted, .btn-danger.active .text-muted,
    .show > .btn-danger.dropdown-toggle .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-danger:active .fuse-ripple-ready .fuse-ripple, .btn-danger.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-danger.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-danger:active .form-control, .btn-danger.active .form-control,
    .show > .btn-danger.dropdown-toggle .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-danger:active .form-control:hover, .btn-danger.active .form-control:hover,
      .show > .btn-danger.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-danger:active .form-control:focus, .btn-danger.active .form-control:focus,
      .show > .btn-danger.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-danger:active .form-control::placeholder, .btn-danger.active .form-control::placeholder,
      .show > .btn-danger.dropdown-toggle .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-danger:active textarea.form-control, .btn-danger.active textarea.form-control,
    .show > .btn-danger.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-danger:active textarea.form-control:hover, .btn-danger.active textarea.form-control:hover,
      .show > .btn-danger.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-danger:active textarea.form-control:focus, .btn-danger:active textarea.form-control:focus:hover, .btn-danger.active textarea.form-control:focus, .btn-danger.active textarea.form-control:focus:hover,
      .show > .btn-danger.dropdown-toggle textarea.form-control:focus,
      .show > .btn-danger.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-danger:active select.form-control, .btn-danger.active select.form-control,
    .show > .btn-danger.dropdown-toggle 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); }
      .btn-danger:active select.form-control[multiple], .btn-danger:active select.form-control[size], .btn-danger.active select.form-control[multiple], .btn-danger.active select.form-control[size],
      .show > .btn-danger.dropdown-toggle select.form-control[multiple],
      .show > .btn-danger.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-danger:active select.form-control[multiple]:hover, .btn-danger:active select.form-control[size]:hover, .btn-danger.active select.form-control[multiple]:hover, .btn-danger.active select.form-control[size]:hover,
        .show > .btn-danger.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-danger.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-danger:active select.form-control[multiple]:focus, .btn-danger:active select.form-control[multiple]:focus:hover, .btn-danger:active select.form-control[size]:focus, .btn-danger:active select.form-control[size]:focus:hover, .btn-danger.active select.form-control[multiple]:focus, .btn-danger.active select.form-control[multiple]:focus:hover, .btn-danger.active select.form-control[size]:focus, .btn-danger.active select.form-control[size]:focus:hover,
        .show > .btn-danger.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-danger.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-danger.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-danger.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-danger:active .form-group > label, .btn-danger.active .form-group > label,
    .show > .btn-danger.dropdown-toggle .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-danger:active .nav .subheader, .btn-danger.active .nav .subheader,
    .show > .btn-danger.dropdown-toggle .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-danger:active .nav .nav-link, .btn-danger.active .nav .nav-link,
    .show > .btn-danger.dropdown-toggle .nav .nav-link {
      color: white; }
      .btn-danger:active .nav .nav-link:hover, .btn-danger.active .nav .nav-link:hover,
      .show > .btn-danger.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-danger:active .nav .nav-link:hover > i, .btn-danger.active .nav .nav-link:hover > i,
        .show > .btn-danger.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-danger:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-danger:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-danger:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-danger:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-danger:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-danger:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-danger.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-danger.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-danger.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-danger.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-danger.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-danger.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-danger.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-danger.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-danger.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-danger.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-danger.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-danger.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-danger:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-danger:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-danger:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-danger:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-danger:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-danger:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-danger.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-danger.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-danger.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-danger.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-danger.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-danger.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-danger.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-danger.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-danger.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-danger.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-danger.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-danger.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-danger:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-danger:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-danger:active input[type=checkbox]:disabled ~ .form-check-description, .btn-danger:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-danger:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-danger:active input[type=checkbox][disabled] ~ .form-check-description, .btn-danger.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-danger.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-danger.active input[type=checkbox]:disabled ~ .form-check-description, .btn-danger.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-danger.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-danger.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-danger.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-danger.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-danger.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-danger.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-danger.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-danger.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-danger:active .form-check.disabled .form-check-label, .btn-danger.active .form-check.disabled .form-check-label,
    .show > .btn-danger.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-danger:active .custom-control-input:disabled ~ .custom-control-description, .btn-danger.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-danger.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-danger:active #sidenav .nav-link:hover:not(.active), .btn-danger.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-danger.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-danger:active #sidenav .nav-link:hover:not(.active) > i, .btn-danger.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-danger.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-danger.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28)!important; }

.btn-light {
  color: #212529;
  background-color: #F8F9FA;
  border-color: #F8F9FA;
  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;
  color: rgba(0, 0, 0, 0.87)!important; }
  .btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
    color: rgba(0, 0, 0, 0.87); }
    .btn-light:hover a:hover {
      color: #1c1e26; }
    .btn-light:hover i, .btn-light:hover [class^="icon-"], .btn-light:hover [class*=" icon-"] {
      color: rgba(0, 0, 0, 0.54); }
    .btn-light:hover .text-muted {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-light:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(0, 0, 0, 0.12); }
    .btn-light:hover .form-control {
      color: rgba(0, 0, 0, 0.87);
      box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42); }
      .btn-light:hover .form-control:hover {
        box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
      .btn-light:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-light:hover .form-control::placeholder {
        color: rgba(0, 0, 0, 0.54); }
    .btn-light:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
      .btn-light:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
      .btn-light:hover textarea.form-control:focus, .btn-light:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-light:hover 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); }
      .btn-light:hover select.form-control[multiple], .btn-light:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
        .btn-light:hover select.form-control[multiple]:hover, .btn-light:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
        .btn-light:hover select.form-control[multiple]:focus, .btn-light:hover select.form-control[multiple]:focus:hover, .btn-light:hover select.form-control[size]:focus, .btn-light:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-light:hover .form-group > label {
      color: rgba(0, 0, 0, 0.54); }
    .btn-light:hover .nav .subheader {
      color: rgba(0, 0, 0, 0.54); }
    .btn-light:hover .nav .nav-link {
      color: rgba(0, 0, 0, 0.87); }
      .btn-light:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-light:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-light:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-light:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-light:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-light:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-light:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-light:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(0, 0, 0, 0.54); }
    .btn-light:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-light:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-light:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-light:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-light:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-light:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(0, 0, 0, 0.54); }
    .btn-light:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-light:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-light:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-light:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-light:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-light:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-light:hover .form-check.disabled .form-check-label {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-light:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(0, 0, 0, 0.54); }
    .btn-light:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(0, 0, 0, 0.05) !important; }
      .btn-light:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(0, 0, 0, 0.54) !important; }
  .btn-light a:hover {
    color: #1c1e26; }
  .btn-light i, .btn-light [class^="icon-"], .btn-light [class*=" icon-"] {
    color: rgba(0, 0, 0, 0.54)!important; }
  .btn-light .text-muted {
    color: rgba(0, 0, 0, 0.38) !important; }
  .btn-light .fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }
  .btn-light .form-control {
    color: rgba(0, 0, 0, 0.87);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42); }
    .btn-light .form-control:hover {
      box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
    .btn-light .form-control:focus {
      box-shadow: 0 2px 0 0 #3C4252; }
    .btn-light .form-control::placeholder {
      color: rgba(0, 0, 0, 0.54); }
  .btn-light textarea.form-control {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
    .btn-light textarea.form-control:hover {
      box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
    .btn-light textarea.form-control:focus, .btn-light textarea.form-control:focus:hover {
      box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-light 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); }
    .btn-light select.form-control[multiple], .btn-light select.form-control[size] {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
      .btn-light select.form-control[multiple]:hover, .btn-light select.form-control[size]:hover {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
      .btn-light select.form-control[multiple]:focus, .btn-light select.form-control[multiple]:focus:hover, .btn-light select.form-control[size]:focus, .btn-light select.form-control[size]:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-light .form-group > label {
    color: rgba(0, 0, 0, 0.54); }
  .btn-light .nav .subheader {
    color: rgba(0, 0, 0, 0.54); }
  .btn-light .nav .nav-link {
    color: rgba(0, 0, 0, 0.87); }
    .btn-light .nav .nav-link:hover {
      color: #3C4252; }
      .btn-light .nav .nav-link:hover > i {
        color: #3C4252; }
  .btn-light .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .btn-light .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .btn-light .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .btn-light .custom-radio input[type=radio] ~ .radio-icon:before,
  .btn-light .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .btn-light .form-check-label input[type=radio] ~ .radio-icon:before {
    border-color: rgba(0, 0, 0, 0.54); }
  .btn-light .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-light .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .btn-light .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-light .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .btn-light .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-light .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
    color: rgba(0, 0, 0, 0.54); }
  .btn-light input[type=checkbox]:disabled ~ .checkbox-icon,
  .btn-light input[type=checkbox]:disabled ~ .custom-control-indicator,
  .btn-light input[type=checkbox]:disabled ~ .form-check-description, .btn-light input[type=checkbox][disabled] ~ .checkbox-icon,
  .btn-light input[type=checkbox][disabled] ~ .custom-control-indicator,
  .btn-light input[type=checkbox][disabled] ~ .form-check-description {
    color: rgba(0, 0, 0, 0.38) !important; }
  .btn-light .form-check.disabled .form-check-label {
    color: rgba(0, 0, 0, 0.38) !important; }
  .btn-light .custom-control-input:disabled ~ .custom-control-description {
    color: rgba(0, 0, 0, 0.54); }
  .btn-light #sidenav .nav-link:hover:not(.active) {
    background: rgba(0, 0, 0, 0.05) !important; }
    .btn-light #sidenav .nav-link:hover:not(.active) > i {
      color: rgba(0, 0, 0, 0.54) !important; }
  .btn-light.disabled, .btn-light:disabled {
    background-color: #F8F9FA;
    border-color: #F8F9FA; }
  .btn-light:active, .btn-light.active,
  .show > .btn-light.dropdown-toggle {
    color: rgba(0, 0, 0, 0.87);
    background-color: #e2e6ea;
    background-image: 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-light:active a:hover, .btn-light.active a:hover,
    .show > .btn-light.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-light:active i, .btn-light:active [class^="icon-"], .btn-light:active [class*=" icon-"], .btn-light.active i, .btn-light.active [class^="icon-"], .btn-light.active [class*=" icon-"],
    .show > .btn-light.dropdown-toggle i,
    .show > .btn-light.dropdown-toggle [class^="icon-"],
    .show > .btn-light.dropdown-toggle [class*=" icon-"] {
      color: rgba(0, 0, 0, 0.54); }
    .btn-light:active .text-muted, .btn-light.active .text-muted,
    .show > .btn-light.dropdown-toggle .text-muted {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-light:active .fuse-ripple-ready .fuse-ripple, .btn-light.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-light.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(0, 0, 0, 0.12); }
    .btn-light:active .form-control, .btn-light.active .form-control,
    .show > .btn-light.dropdown-toggle .form-control {
      color: rgba(0, 0, 0, 0.87);
      box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42); }
      .btn-light:active .form-control:hover, .btn-light.active .form-control:hover,
      .show > .btn-light.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
      .btn-light:active .form-control:focus, .btn-light.active .form-control:focus,
      .show > .btn-light.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-light:active .form-control::placeholder, .btn-light.active .form-control::placeholder,
      .show > .btn-light.dropdown-toggle .form-control::placeholder {
        color: rgba(0, 0, 0, 0.54); }
    .btn-light:active textarea.form-control, .btn-light.active textarea.form-control,
    .show > .btn-light.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
      .btn-light:active textarea.form-control:hover, .btn-light.active textarea.form-control:hover,
      .show > .btn-light.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
      .btn-light:active textarea.form-control:focus, .btn-light:active textarea.form-control:focus:hover, .btn-light.active textarea.form-control:focus, .btn-light.active textarea.form-control:focus:hover,
      .show > .btn-light.dropdown-toggle textarea.form-control:focus,
      .show > .btn-light.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-light:active select.form-control, .btn-light.active select.form-control,
    .show > .btn-light.dropdown-toggle 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); }
      .btn-light:active select.form-control[multiple], .btn-light:active select.form-control[size], .btn-light.active select.form-control[multiple], .btn-light.active select.form-control[size],
      .show > .btn-light.dropdown-toggle select.form-control[multiple],
      .show > .btn-light.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
        .btn-light:active select.form-control[multiple]:hover, .btn-light:active select.form-control[size]:hover, .btn-light.active select.form-control[multiple]:hover, .btn-light.active select.form-control[size]:hover,
        .show > .btn-light.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-light.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
        .btn-light:active select.form-control[multiple]:focus, .btn-light:active select.form-control[multiple]:focus:hover, .btn-light:active select.form-control[size]:focus, .btn-light:active select.form-control[size]:focus:hover, .btn-light.active select.form-control[multiple]:focus, .btn-light.active select.form-control[multiple]:focus:hover, .btn-light.active select.form-control[size]:focus, .btn-light.active select.form-control[size]:focus:hover,
        .show > .btn-light.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-light.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-light.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-light.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-light:active .form-group > label, .btn-light.active .form-group > label,
    .show > .btn-light.dropdown-toggle .form-group > label {
      color: rgba(0, 0, 0, 0.54); }
    .btn-light:active .nav .subheader, .btn-light.active .nav .subheader,
    .show > .btn-light.dropdown-toggle .nav .subheader {
      color: rgba(0, 0, 0, 0.54); }
    .btn-light:active .nav .nav-link, .btn-light.active .nav .nav-link,
    .show > .btn-light.dropdown-toggle .nav .nav-link {
      color: rgba(0, 0, 0, 0.87); }
      .btn-light:active .nav .nav-link:hover, .btn-light.active .nav .nav-link:hover,
      .show > .btn-light.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-light:active .nav .nav-link:hover > i, .btn-light.active .nav .nav-link:hover > i,
        .show > .btn-light.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-light:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-light:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-light:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-light:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-light:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-light:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-light.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-light.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-light.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-light.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-light.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-light.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-light.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-light.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-light.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-light.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-light.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-light.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(0, 0, 0, 0.54); }
    .btn-light:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-light:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-light:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-light:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-light:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-light:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-light.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-light.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-light.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-light.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-light.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-light.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-light.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-light.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-light.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-light.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-light.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-light.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(0, 0, 0, 0.54); }
    .btn-light:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-light:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-light:active input[type=checkbox]:disabled ~ .form-check-description, .btn-light:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-light:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-light:active input[type=checkbox][disabled] ~ .form-check-description, .btn-light.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-light.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-light.active input[type=checkbox]:disabled ~ .form-check-description, .btn-light.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-light.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-light.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-light.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-light.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-light.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-light.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-light.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-light.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-light:active .form-check.disabled .form-check-label, .btn-light.active .form-check.disabled .form-check-label,
    .show > .btn-light.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-light:active .custom-control-input:disabled ~ .custom-control-description, .btn-light.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-light.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(0, 0, 0, 0.54); }
    .btn-light:active #sidenav .nav-link:hover:not(.active), .btn-light.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-light.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(0, 0, 0, 0.05) !important; }
      .btn-light:active #sidenav .nav-link:hover:not(.active) > i, .btn-light.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-light.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(0, 0, 0, 0.54) !important; }
  .btn-light.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12)!important; }

.btn-dark {
  color: #FFF;
  background-color: #343A40;
  border-color: #343A40;
  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;
  color: white!important; }
  .btn-dark:hover {
    color: #FFF;
    background-color: #23272b;
    border-color: #1d2124;
    color: white; }
    .btn-dark:hover a:hover {
      color: #1c1e26; }
    .btn-dark:hover i, .btn-dark:hover [class^="icon-"], .btn-dark:hover [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-dark:hover .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-dark:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-dark:hover .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-dark:hover .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-dark:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-dark:hover .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-dark:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-dark:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-dark:hover textarea.form-control:focus, .btn-dark:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-dark:hover 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); }
      .btn-dark:hover select.form-control[multiple], .btn-dark:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-dark:hover select.form-control[multiple]:hover, .btn-dark:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-dark:hover select.form-control[multiple]:focus, .btn-dark:hover select.form-control[multiple]:focus:hover, .btn-dark:hover select.form-control[size]:focus, .btn-dark:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-dark:hover .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-dark:hover .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-dark:hover .nav .nav-link {
      color: white; }
      .btn-dark:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-dark:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-dark:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-dark:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-dark:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-dark:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-dark:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-dark:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-dark:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-dark:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-dark:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-dark:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-dark:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-dark:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-dark:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-dark:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-dark:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-dark:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-dark:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-dark:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-dark:hover .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-dark:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-dark:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-dark:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-dark a:hover {
    color: #1c1e26; }
  .btn-dark i, .btn-dark [class^="icon-"], .btn-dark [class*=" icon-"] {
    color: rgba(255, 255, 255, 0.87)!important; }
  .btn-dark .text-muted {
    color: rgba(255, 255, 255, 0.5) !important; }
  .btn-dark .fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }
  .btn-dark .form-control {
    color: white;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
    .btn-dark .form-control:hover {
      box-shadow: 0 2px 0 0 white; }
    .btn-dark .form-control:focus {
      box-shadow: 0 2px 0 0 #3C4252; }
    .btn-dark .form-control::placeholder {
      color: rgba(255, 255, 255, 0.7); }
  .btn-dark textarea.form-control {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
    .btn-dark textarea.form-control:hover {
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
    .btn-dark textarea.form-control:focus, .btn-dark textarea.form-control:focus:hover {
      box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-dark 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); }
    .btn-dark select.form-control[multiple], .btn-dark select.form-control[size] {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-dark select.form-control[multiple]:hover, .btn-dark select.form-control[size]:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-dark select.form-control[multiple]:focus, .btn-dark select.form-control[multiple]:focus:hover, .btn-dark select.form-control[size]:focus, .btn-dark select.form-control[size]:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
  .btn-dark .form-group > label {
    color: rgba(255, 255, 255, 0.7); }
  .btn-dark .nav .subheader {
    color: rgba(255, 255, 255, 0.5); }
  .btn-dark .nav .nav-link {
    color: white; }
    .btn-dark .nav .nav-link:hover {
      color: #3C4252; }
      .btn-dark .nav .nav-link:hover > i {
        color: #3C4252; }
  .btn-dark .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .btn-dark .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .btn-dark .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .btn-dark .custom-radio input[type=radio] ~ .radio-icon:before,
  .btn-dark .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .btn-dark .form-check-label input[type=radio] ~ .radio-icon:before {
    border-color: rgba(255, 255, 255, 0.7); }
  .btn-dark .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-dark .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .btn-dark .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-dark .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .btn-dark .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .btn-dark .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
    color: rgba(255, 255, 255, 0.7); }
  .btn-dark input[type=checkbox]:disabled ~ .checkbox-icon,
  .btn-dark input[type=checkbox]:disabled ~ .custom-control-indicator,
  .btn-dark input[type=checkbox]:disabled ~ .form-check-description, .btn-dark input[type=checkbox][disabled] ~ .checkbox-icon,
  .btn-dark input[type=checkbox][disabled] ~ .custom-control-indicator,
  .btn-dark input[type=checkbox][disabled] ~ .form-check-description {
    color: rgba(255, 255, 255, 0.5) !important; }
  .btn-dark .form-check.disabled .form-check-label {
    color: rgba(255, 255, 255, 0.5) !important; }
  .btn-dark .custom-control-input:disabled ~ .custom-control-description {
    color: rgba(255, 255, 255, 0.5); }
  .btn-dark #sidenav .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.04) !important; }
    .btn-dark #sidenav .nav-link:hover:not(.active) > i {
      color: rgba(255, 255, 255, 0.87) !important; }
  .btn-dark.disabled, .btn-dark:disabled {
    background-color: #343A40;
    border-color: #343A40; }
  .btn-dark:active, .btn-dark.active,
  .show > .btn-dark.dropdown-toggle {
    color: white;
    background-color: #23272b;
    background-image: 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-dark:active a:hover, .btn-dark.active a:hover,
    .show > .btn-dark.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-dark:active i, .btn-dark:active [class^="icon-"], .btn-dark:active [class*=" icon-"], .btn-dark.active i, .btn-dark.active [class^="icon-"], .btn-dark.active [class*=" icon-"],
    .show > .btn-dark.dropdown-toggle i,
    .show > .btn-dark.dropdown-toggle [class^="icon-"],
    .show > .btn-dark.dropdown-toggle [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-dark:active .text-muted, .btn-dark.active .text-muted,
    .show > .btn-dark.dropdown-toggle .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-dark:active .fuse-ripple-ready .fuse-ripple, .btn-dark.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-dark.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-dark:active .form-control, .btn-dark.active .form-control,
    .show > .btn-dark.dropdown-toggle .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-dark:active .form-control:hover, .btn-dark.active .form-control:hover,
      .show > .btn-dark.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-dark:active .form-control:focus, .btn-dark.active .form-control:focus,
      .show > .btn-dark.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-dark:active .form-control::placeholder, .btn-dark.active .form-control::placeholder,
      .show > .btn-dark.dropdown-toggle .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-dark:active textarea.form-control, .btn-dark.active textarea.form-control,
    .show > .btn-dark.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-dark:active textarea.form-control:hover, .btn-dark.active textarea.form-control:hover,
      .show > .btn-dark.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-dark:active textarea.form-control:focus, .btn-dark:active textarea.form-control:focus:hover, .btn-dark.active textarea.form-control:focus, .btn-dark.active textarea.form-control:focus:hover,
      .show > .btn-dark.dropdown-toggle textarea.form-control:focus,
      .show > .btn-dark.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-dark:active select.form-control, .btn-dark.active select.form-control,
    .show > .btn-dark.dropdown-toggle 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); }
      .btn-dark:active select.form-control[multiple], .btn-dark:active select.form-control[size], .btn-dark.active select.form-control[multiple], .btn-dark.active select.form-control[size],
      .show > .btn-dark.dropdown-toggle select.form-control[multiple],
      .show > .btn-dark.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-dark:active select.form-control[multiple]:hover, .btn-dark:active select.form-control[size]:hover, .btn-dark.active select.form-control[multiple]:hover, .btn-dark.active select.form-control[size]:hover,
        .show > .btn-dark.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-dark.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-dark:active select.form-control[multiple]:focus, .btn-dark:active select.form-control[multiple]:focus:hover, .btn-dark:active select.form-control[size]:focus, .btn-dark:active select.form-control[size]:focus:hover, .btn-dark.active select.form-control[multiple]:focus, .btn-dark.active select.form-control[multiple]:focus:hover, .btn-dark.active select.form-control[size]:focus, .btn-dark.active select.form-control[size]:focus:hover,
        .show > .btn-dark.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-dark.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-dark.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-dark.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-dark:active .form-group > label, .btn-dark.active .form-group > label,
    .show > .btn-dark.dropdown-toggle .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-dark:active .nav .subheader, .btn-dark.active .nav .subheader,
    .show > .btn-dark.dropdown-toggle .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-dark:active .nav .nav-link, .btn-dark.active .nav .nav-link,
    .show > .btn-dark.dropdown-toggle .nav .nav-link {
      color: white; }
      .btn-dark:active .nav .nav-link:hover, .btn-dark.active .nav .nav-link:hover,
      .show > .btn-dark.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-dark:active .nav .nav-link:hover > i, .btn-dark.active .nav .nav-link:hover > i,
        .show > .btn-dark.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-dark:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-dark:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-dark:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-dark:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-dark:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-dark:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-dark.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-dark.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-dark.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-dark.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-dark.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-dark.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-dark.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-dark.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-dark.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-dark.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-dark.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-dark.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-dark:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-dark:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-dark:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-dark:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-dark:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-dark:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-dark.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-dark.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-dark.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-dark.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-dark.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-dark.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-dark.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-dark.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-dark.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-dark.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-dark.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-dark.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-dark:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-dark:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-dark:active input[type=checkbox]:disabled ~ .form-check-description, .btn-dark:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-dark:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-dark:active input[type=checkbox][disabled] ~ .form-check-description, .btn-dark.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-dark.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-dark.active input[type=checkbox]:disabled ~ .form-check-description, .btn-dark.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-dark.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-dark.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-dark.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-dark.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-dark.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-dark.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-dark.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-dark.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-dark:active .form-check.disabled .form-check-label, .btn-dark.active .form-check.disabled .form-check-label,
    .show > .btn-dark.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-dark:active .custom-control-input:disabled ~ .custom-control-description, .btn-dark.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-dark.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-dark:active #sidenav .nav-link:hover:not(.active), .btn-dark.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-dark.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-dark:active #sidenav .nav-link:hover:not(.active) > i, .btn-dark.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-dark.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-dark.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28)!important; }

.btn-outline-primary {
  color: #3C4252;
  background-color: transparent;
  background-image: none;
  border-color: #3C4252; }
  .btn-outline-primary:hover {
    color: white;
    background-color: #3C4252;
    border-color: #3C4252; }
    .btn-outline-primary:hover a:hover {
      color: #1c1e26; }
    .btn-outline-primary:hover i, .btn-outline-primary:hover [class^="icon-"], .btn-outline-primary:hover [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-outline-primary:hover .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-primary:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-outline-primary:hover .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-outline-primary:hover .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-outline-primary:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-primary:hover .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-outline-primary:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-outline-primary:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-outline-primary:hover textarea.form-control:focus, .btn-outline-primary:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-primary:hover 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); }
      .btn-outline-primary:hover select.form-control[multiple], .btn-outline-primary:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-outline-primary:hover select.form-control[multiple]:hover, .btn-outline-primary:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-outline-primary:hover select.form-control[multiple]:focus, .btn-outline-primary:hover select.form-control[multiple]:focus:hover, .btn-outline-primary:hover select.form-control[size]:focus, .btn-outline-primary:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-primary:hover .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-primary:hover .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-primary:hover .nav .nav-link {
      color: white; }
      .btn-outline-primary:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-primary:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-primary:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-primary:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-primary:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-primary:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-primary:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-primary:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-outline-primary:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-primary:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-primary:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-primary:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-primary:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-primary:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-primary:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-primary:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-primary:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-primary:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-primary:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-primary:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-primary:hover .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-primary:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-primary:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-outline-primary:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #3C4252;
    background-color: transparent; }
  .btn-outline-primary:active, .btn-outline-primary.active,
  .show > .btn-outline-primary.dropdown-toggle {
    color: white;
    background-color: #3C4252;
    border-color: #3C4252; }
    .btn-outline-primary:active a:hover, .btn-outline-primary.active a:hover,
    .show > .btn-outline-primary.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-outline-primary:active i, .btn-outline-primary:active [class^="icon-"], .btn-outline-primary:active [class*=" icon-"], .btn-outline-primary.active i, .btn-outline-primary.active [class^="icon-"], .btn-outline-primary.active [class*=" icon-"],
    .show > .btn-outline-primary.dropdown-toggle i,
    .show > .btn-outline-primary.dropdown-toggle [class^="icon-"],
    .show > .btn-outline-primary.dropdown-toggle [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-outline-primary:active .text-muted, .btn-outline-primary.active .text-muted,
    .show > .btn-outline-primary.dropdown-toggle .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-primary:active .fuse-ripple-ready .fuse-ripple, .btn-outline-primary.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-outline-primary.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-outline-primary:active .form-control, .btn-outline-primary.active .form-control,
    .show > .btn-outline-primary.dropdown-toggle .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-outline-primary:active .form-control:hover, .btn-outline-primary.active .form-control:hover,
      .show > .btn-outline-primary.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-outline-primary:active .form-control:focus, .btn-outline-primary.active .form-control:focus,
      .show > .btn-outline-primary.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-primary:active .form-control::placeholder, .btn-outline-primary.active .form-control::placeholder,
      .show > .btn-outline-primary.dropdown-toggle .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-outline-primary:active textarea.form-control, .btn-outline-primary.active textarea.form-control,
    .show > .btn-outline-primary.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-outline-primary:active textarea.form-control:hover, .btn-outline-primary.active textarea.form-control:hover,
      .show > .btn-outline-primary.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-outline-primary:active textarea.form-control:focus, .btn-outline-primary:active textarea.form-control:focus:hover, .btn-outline-primary.active textarea.form-control:focus, .btn-outline-primary.active textarea.form-control:focus:hover,
      .show > .btn-outline-primary.dropdown-toggle textarea.form-control:focus,
      .show > .btn-outline-primary.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-primary:active select.form-control, .btn-outline-primary.active select.form-control,
    .show > .btn-outline-primary.dropdown-toggle 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); }
      .btn-outline-primary:active select.form-control[multiple], .btn-outline-primary:active select.form-control[size], .btn-outline-primary.active select.form-control[multiple], .btn-outline-primary.active select.form-control[size],
      .show > .btn-outline-primary.dropdown-toggle select.form-control[multiple],
      .show > .btn-outline-primary.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-outline-primary:active select.form-control[multiple]:hover, .btn-outline-primary:active select.form-control[size]:hover, .btn-outline-primary.active select.form-control[multiple]:hover, .btn-outline-primary.active select.form-control[size]:hover,
        .show > .btn-outline-primary.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-outline-primary.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-outline-primary:active select.form-control[multiple]:focus, .btn-outline-primary:active select.form-control[multiple]:focus:hover, .btn-outline-primary:active select.form-control[size]:focus, .btn-outline-primary:active select.form-control[size]:focus:hover, .btn-outline-primary.active select.form-control[multiple]:focus, .btn-outline-primary.active select.form-control[multiple]:focus:hover, .btn-outline-primary.active select.form-control[size]:focus, .btn-outline-primary.active select.form-control[size]:focus:hover,
        .show > .btn-outline-primary.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-outline-primary.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-outline-primary.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-outline-primary.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-primary:active .form-group > label, .btn-outline-primary.active .form-group > label,
    .show > .btn-outline-primary.dropdown-toggle .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-primary:active .nav .subheader, .btn-outline-primary.active .nav .subheader,
    .show > .btn-outline-primary.dropdown-toggle .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-primary:active .nav .nav-link, .btn-outline-primary.active .nav .nav-link,
    .show > .btn-outline-primary.dropdown-toggle .nav .nav-link {
      color: white; }
      .btn-outline-primary:active .nav .nav-link:hover, .btn-outline-primary.active .nav .nav-link:hover,
      .show > .btn-outline-primary.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-primary:active .nav .nav-link:hover > i, .btn-outline-primary.active .nav .nav-link:hover > i,
        .show > .btn-outline-primary.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-primary:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-primary:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-primary:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-primary:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-primary:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-primary:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-outline-primary.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-primary.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-primary.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-primary.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-primary.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-primary.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-primary.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-primary.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-primary.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-primary.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-primary.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-primary.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-outline-primary:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-primary:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-primary:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-primary:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-primary:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-primary:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-outline-primary.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-primary.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-primary.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-primary.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-primary.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-primary.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-primary.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-primary.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-primary.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-primary.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-primary.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-primary.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-primary:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-primary:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-primary:active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-primary:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-primary:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-primary:active input[type=checkbox][disabled] ~ .form-check-description, .btn-outline-primary.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-primary.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-primary.active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-primary.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-primary.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-primary.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-outline-primary.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-outline-primary.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-outline-primary.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-outline-primary.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-outline-primary.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-outline-primary.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-primary:active .form-check.disabled .form-check-label, .btn-outline-primary.active .form-check.disabled .form-check-label,
    .show > .btn-outline-primary.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-primary:active .custom-control-input:disabled ~ .custom-control-description, .btn-outline-primary.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-outline-primary.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-primary:active #sidenav .nav-link:hover:not(.active), .btn-outline-primary.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-outline-primary.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-outline-primary:active #sidenav .nav-link:hover:not(.active) > i, .btn-outline-primary.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-outline-primary.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-outline-primary.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.btn-outline-secondary {
  color: #2196F3;
  background-color: transparent;
  background-image: none;
  border-color: #2196F3; }
  .btn-outline-secondary:hover {
    color: white;
    background-color: #2196F3;
    border-color: #2196F3; }
    .btn-outline-secondary:hover a:hover {
      color: #1c1e26; }
    .btn-outline-secondary:hover i, .btn-outline-secondary:hover [class^="icon-"], .btn-outline-secondary:hover [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-outline-secondary:hover .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-secondary:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-outline-secondary:hover .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-outline-secondary:hover .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-outline-secondary:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-secondary:hover .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-outline-secondary:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-outline-secondary:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-outline-secondary:hover textarea.form-control:focus, .btn-outline-secondary:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-secondary:hover 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); }
      .btn-outline-secondary:hover select.form-control[multiple], .btn-outline-secondary:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-outline-secondary:hover select.form-control[multiple]:hover, .btn-outline-secondary:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-outline-secondary:hover select.form-control[multiple]:focus, .btn-outline-secondary:hover select.form-control[multiple]:focus:hover, .btn-outline-secondary:hover select.form-control[size]:focus, .btn-outline-secondary:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-secondary:hover .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-secondary:hover .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-secondary:hover .nav .nav-link {
      color: white; }
      .btn-outline-secondary:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-secondary:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-secondary:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-secondary:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-secondary:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-secondary:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-secondary:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-secondary:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-outline-secondary:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-secondary:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-secondary:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-secondary:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-secondary:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-secondary:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-secondary:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-secondary:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-secondary:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-secondary:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-secondary:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-secondary:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-secondary:hover .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-secondary:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-secondary:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-outline-secondary:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #2196F3;
    background-color: transparent; }
  .btn-outline-secondary:active, .btn-outline-secondary.active,
  .show > .btn-outline-secondary.dropdown-toggle {
    color: white;
    background-color: #2196F3;
    border-color: #2196F3; }
    .btn-outline-secondary:active a:hover, .btn-outline-secondary.active a:hover,
    .show > .btn-outline-secondary.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-outline-secondary:active i, .btn-outline-secondary:active [class^="icon-"], .btn-outline-secondary:active [class*=" icon-"], .btn-outline-secondary.active i, .btn-outline-secondary.active [class^="icon-"], .btn-outline-secondary.active [class*=" icon-"],
    .show > .btn-outline-secondary.dropdown-toggle i,
    .show > .btn-outline-secondary.dropdown-toggle [class^="icon-"],
    .show > .btn-outline-secondary.dropdown-toggle [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-outline-secondary:active .text-muted, .btn-outline-secondary.active .text-muted,
    .show > .btn-outline-secondary.dropdown-toggle .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-secondary:active .fuse-ripple-ready .fuse-ripple, .btn-outline-secondary.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-outline-secondary.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-outline-secondary:active .form-control, .btn-outline-secondary.active .form-control,
    .show > .btn-outline-secondary.dropdown-toggle .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-outline-secondary:active .form-control:hover, .btn-outline-secondary.active .form-control:hover,
      .show > .btn-outline-secondary.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-outline-secondary:active .form-control:focus, .btn-outline-secondary.active .form-control:focus,
      .show > .btn-outline-secondary.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-secondary:active .form-control::placeholder, .btn-outline-secondary.active .form-control::placeholder,
      .show > .btn-outline-secondary.dropdown-toggle .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-outline-secondary:active textarea.form-control, .btn-outline-secondary.active textarea.form-control,
    .show > .btn-outline-secondary.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-outline-secondary:active textarea.form-control:hover, .btn-outline-secondary.active textarea.form-control:hover,
      .show > .btn-outline-secondary.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-outline-secondary:active textarea.form-control:focus, .btn-outline-secondary:active textarea.form-control:focus:hover, .btn-outline-secondary.active textarea.form-control:focus, .btn-outline-secondary.active textarea.form-control:focus:hover,
      .show > .btn-outline-secondary.dropdown-toggle textarea.form-control:focus,
      .show > .btn-outline-secondary.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-secondary:active select.form-control, .btn-outline-secondary.active select.form-control,
    .show > .btn-outline-secondary.dropdown-toggle 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); }
      .btn-outline-secondary:active select.form-control[multiple], .btn-outline-secondary:active select.form-control[size], .btn-outline-secondary.active select.form-control[multiple], .btn-outline-secondary.active select.form-control[size],
      .show > .btn-outline-secondary.dropdown-toggle select.form-control[multiple],
      .show > .btn-outline-secondary.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-outline-secondary:active select.form-control[multiple]:hover, .btn-outline-secondary:active select.form-control[size]:hover, .btn-outline-secondary.active select.form-control[multiple]:hover, .btn-outline-secondary.active select.form-control[size]:hover,
        .show > .btn-outline-secondary.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-outline-secondary.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-outline-secondary:active select.form-control[multiple]:focus, .btn-outline-secondary:active select.form-control[multiple]:focus:hover, .btn-outline-secondary:active select.form-control[size]:focus, .btn-outline-secondary:active select.form-control[size]:focus:hover, .btn-outline-secondary.active select.form-control[multiple]:focus, .btn-outline-secondary.active select.form-control[multiple]:focus:hover, .btn-outline-secondary.active select.form-control[size]:focus, .btn-outline-secondary.active select.form-control[size]:focus:hover,
        .show > .btn-outline-secondary.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-outline-secondary.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-outline-secondary.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-outline-secondary.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-secondary:active .form-group > label, .btn-outline-secondary.active .form-group > label,
    .show > .btn-outline-secondary.dropdown-toggle .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-secondary:active .nav .subheader, .btn-outline-secondary.active .nav .subheader,
    .show > .btn-outline-secondary.dropdown-toggle .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-secondary:active .nav .nav-link, .btn-outline-secondary.active .nav .nav-link,
    .show > .btn-outline-secondary.dropdown-toggle .nav .nav-link {
      color: white; }
      .btn-outline-secondary:active .nav .nav-link:hover, .btn-outline-secondary.active .nav .nav-link:hover,
      .show > .btn-outline-secondary.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-secondary:active .nav .nav-link:hover > i, .btn-outline-secondary.active .nav .nav-link:hover > i,
        .show > .btn-outline-secondary.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-secondary:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-secondary:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-secondary:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-secondary:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-secondary:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-secondary:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-outline-secondary.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-secondary.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-secondary.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-secondary.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-secondary.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-secondary.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-secondary.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-secondary.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-secondary.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-secondary.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-secondary.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-secondary.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-outline-secondary:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-secondary:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-secondary:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-secondary:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-secondary:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-secondary:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-outline-secondary.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-secondary.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-secondary.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-secondary.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-secondary.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-secondary.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-secondary.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-secondary.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-secondary.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-secondary.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-secondary.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-secondary.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-secondary:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-secondary:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-secondary:active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-secondary:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-secondary:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-secondary:active input[type=checkbox][disabled] ~ .form-check-description, .btn-outline-secondary.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-secondary.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-secondary.active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-secondary.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-secondary.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-secondary.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-outline-secondary.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-outline-secondary.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-outline-secondary.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-outline-secondary.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-outline-secondary.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-outline-secondary.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-secondary:active .form-check.disabled .form-check-label, .btn-outline-secondary.active .form-check.disabled .form-check-label,
    .show > .btn-outline-secondary.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-secondary:active .custom-control-input:disabled ~ .custom-control-description, .btn-outline-secondary.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-outline-secondary.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-secondary:active #sidenav .nav-link:hover:not(.active), .btn-outline-secondary.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-outline-secondary.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-outline-secondary:active #sidenav .nav-link:hover:not(.active) > i, .btn-outline-secondary.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-outline-secondary.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-outline-secondary.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.btn-outline-success {
  color: #4CAF50;
  background-color: transparent;
  background-image: none;
  border-color: #4CAF50; }
  .btn-outline-success:hover {
    color: rgba(0, 0, 0, 0.87);
    background-color: #4CAF50;
    border-color: #4CAF50; }
    .btn-outline-success:hover a:hover {
      color: #1c1e26; }
    .btn-outline-success:hover i, .btn-outline-success:hover [class^="icon-"], .btn-outline-success:hover [class*=" icon-"] {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-success:hover .text-muted {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-success:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(0, 0, 0, 0.12); }
    .btn-outline-success:hover .form-control {
      color: rgba(0, 0, 0, 0.87);
      box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42); }
      .btn-outline-success:hover .form-control:hover {
        box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
      .btn-outline-success:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-success:hover .form-control::placeholder {
        color: rgba(0, 0, 0, 0.54); }
    .btn-outline-success:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
      .btn-outline-success:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
      .btn-outline-success:hover textarea.form-control:focus, .btn-outline-success:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-success:hover 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); }
      .btn-outline-success:hover select.form-control[multiple], .btn-outline-success:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
        .btn-outline-success:hover select.form-control[multiple]:hover, .btn-outline-success:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
        .btn-outline-success:hover select.form-control[multiple]:focus, .btn-outline-success:hover select.form-control[multiple]:focus:hover, .btn-outline-success:hover select.form-control[size]:focus, .btn-outline-success:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-success:hover .form-group > label {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-success:hover .nav .subheader {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-success:hover .nav .nav-link {
      color: rgba(0, 0, 0, 0.87); }
      .btn-outline-success:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-success:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-success:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-success:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-success:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-success:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-success:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-success:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(0, 0, 0, 0.54); }
    .btn-outline-success:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-success:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-success:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-success:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-success:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-success:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-success:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-success:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-success:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-success:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-success:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-success:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-success:hover .form-check.disabled .form-check-label {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-success:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-success:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(0, 0, 0, 0.05) !important; }
      .btn-outline-success:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(0, 0, 0, 0.54) !important; }
  .btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #4CAF50;
    background-color: transparent; }
  .btn-outline-success:active, .btn-outline-success.active,
  .show > .btn-outline-success.dropdown-toggle {
    color: rgba(0, 0, 0, 0.87);
    background-color: #4CAF50;
    border-color: #4CAF50; }
    .btn-outline-success:active a:hover, .btn-outline-success.active a:hover,
    .show > .btn-outline-success.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-outline-success:active i, .btn-outline-success:active [class^="icon-"], .btn-outline-success:active [class*=" icon-"], .btn-outline-success.active i, .btn-outline-success.active [class^="icon-"], .btn-outline-success.active [class*=" icon-"],
    .show > .btn-outline-success.dropdown-toggle i,
    .show > .btn-outline-success.dropdown-toggle [class^="icon-"],
    .show > .btn-outline-success.dropdown-toggle [class*=" icon-"] {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-success:active .text-muted, .btn-outline-success.active .text-muted,
    .show > .btn-outline-success.dropdown-toggle .text-muted {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-success:active .fuse-ripple-ready .fuse-ripple, .btn-outline-success.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-outline-success.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(0, 0, 0, 0.12); }
    .btn-outline-success:active .form-control, .btn-outline-success.active .form-control,
    .show > .btn-outline-success.dropdown-toggle .form-control {
      color: rgba(0, 0, 0, 0.87);
      box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42); }
      .btn-outline-success:active .form-control:hover, .btn-outline-success.active .form-control:hover,
      .show > .btn-outline-success.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
      .btn-outline-success:active .form-control:focus, .btn-outline-success.active .form-control:focus,
      .show > .btn-outline-success.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-success:active .form-control::placeholder, .btn-outline-success.active .form-control::placeholder,
      .show > .btn-outline-success.dropdown-toggle .form-control::placeholder {
        color: rgba(0, 0, 0, 0.54); }
    .btn-outline-success:active textarea.form-control, .btn-outline-success.active textarea.form-control,
    .show > .btn-outline-success.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
      .btn-outline-success:active textarea.form-control:hover, .btn-outline-success.active textarea.form-control:hover,
      .show > .btn-outline-success.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
      .btn-outline-success:active textarea.form-control:focus, .btn-outline-success:active textarea.form-control:focus:hover, .btn-outline-success.active textarea.form-control:focus, .btn-outline-success.active textarea.form-control:focus:hover,
      .show > .btn-outline-success.dropdown-toggle textarea.form-control:focus,
      .show > .btn-outline-success.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-success:active select.form-control, .btn-outline-success.active select.form-control,
    .show > .btn-outline-success.dropdown-toggle 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); }
      .btn-outline-success:active select.form-control[multiple], .btn-outline-success:active select.form-control[size], .btn-outline-success.active select.form-control[multiple], .btn-outline-success.active select.form-control[size],
      .show > .btn-outline-success.dropdown-toggle select.form-control[multiple],
      .show > .btn-outline-success.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
        .btn-outline-success:active select.form-control[multiple]:hover, .btn-outline-success:active select.form-control[size]:hover, .btn-outline-success.active select.form-control[multiple]:hover, .btn-outline-success.active select.form-control[size]:hover,
        .show > .btn-outline-success.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-outline-success.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
        .btn-outline-success:active select.form-control[multiple]:focus, .btn-outline-success:active select.form-control[multiple]:focus:hover, .btn-outline-success:active select.form-control[size]:focus, .btn-outline-success:active select.form-control[size]:focus:hover, .btn-outline-success.active select.form-control[multiple]:focus, .btn-outline-success.active select.form-control[multiple]:focus:hover, .btn-outline-success.active select.form-control[size]:focus, .btn-outline-success.active select.form-control[size]:focus:hover,
        .show > .btn-outline-success.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-outline-success.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-outline-success.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-outline-success.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-success:active .form-group > label, .btn-outline-success.active .form-group > label,
    .show > .btn-outline-success.dropdown-toggle .form-group > label {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-success:active .nav .subheader, .btn-outline-success.active .nav .subheader,
    .show > .btn-outline-success.dropdown-toggle .nav .subheader {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-success:active .nav .nav-link, .btn-outline-success.active .nav .nav-link,
    .show > .btn-outline-success.dropdown-toggle .nav .nav-link {
      color: rgba(0, 0, 0, 0.87); }
      .btn-outline-success:active .nav .nav-link:hover, .btn-outline-success.active .nav .nav-link:hover,
      .show > .btn-outline-success.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-success:active .nav .nav-link:hover > i, .btn-outline-success.active .nav .nav-link:hover > i,
        .show > .btn-outline-success.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-success:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-success:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-success:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-success:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-success:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-success:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-outline-success.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-success.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-success.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-success.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-success.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-success.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-success.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-success.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-success.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-success.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-success.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-success.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(0, 0, 0, 0.54); }
    .btn-outline-success:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-success:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-success:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-success:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-success:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-success:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-outline-success.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-success.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-success.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-success.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-success.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-success.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-success.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-success.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-success.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-success.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-success.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-success.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-success:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-success:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-success:active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-success:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-success:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-success:active input[type=checkbox][disabled] ~ .form-check-description, .btn-outline-success.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-success.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-success.active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-success.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-success.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-success.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-outline-success.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-outline-success.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-outline-success.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-outline-success.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-outline-success.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-outline-success.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-success:active .form-check.disabled .form-check-label, .btn-outline-success.active .form-check.disabled .form-check-label,
    .show > .btn-outline-success.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-success:active .custom-control-input:disabled ~ .custom-control-description, .btn-outline-success.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-outline-success.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-success:active #sidenav .nav-link:hover:not(.active), .btn-outline-success.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-outline-success.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(0, 0, 0, 0.05) !important; }
      .btn-outline-success:active #sidenav .nav-link:hover:not(.active) > i, .btn-outline-success.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-outline-success.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(0, 0, 0, 0.54) !important; }
  .btn-outline-success.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.btn-outline-info {
  color: #009688;
  background-color: transparent;
  background-image: none;
  border-color: #009688; }
  .btn-outline-info:hover {
    color: white;
    background-color: #009688;
    border-color: #009688; }
    .btn-outline-info:hover a:hover {
      color: #1c1e26; }
    .btn-outline-info:hover i, .btn-outline-info:hover [class^="icon-"], .btn-outline-info:hover [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-outline-info:hover .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-info:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-outline-info:hover .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-outline-info:hover .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-outline-info:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-info:hover .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-outline-info:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-outline-info:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-outline-info:hover textarea.form-control:focus, .btn-outline-info:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-info:hover 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); }
      .btn-outline-info:hover select.form-control[multiple], .btn-outline-info:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-outline-info:hover select.form-control[multiple]:hover, .btn-outline-info:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-outline-info:hover select.form-control[multiple]:focus, .btn-outline-info:hover select.form-control[multiple]:focus:hover, .btn-outline-info:hover select.form-control[size]:focus, .btn-outline-info:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-info:hover .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-info:hover .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-info:hover .nav .nav-link {
      color: white; }
      .btn-outline-info:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-info:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-info:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-info:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-info:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-info:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-info:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-info:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-outline-info:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-info:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-info:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-info:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-info:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-info:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-info:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-info:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-info:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-info:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-info:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-info:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-info:hover .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-info:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-info:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-outline-info:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #009688;
    background-color: transparent; }
  .btn-outline-info:active, .btn-outline-info.active,
  .show > .btn-outline-info.dropdown-toggle {
    color: white;
    background-color: #009688;
    border-color: #009688; }
    .btn-outline-info:active a:hover, .btn-outline-info.active a:hover,
    .show > .btn-outline-info.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-outline-info:active i, .btn-outline-info:active [class^="icon-"], .btn-outline-info:active [class*=" icon-"], .btn-outline-info.active i, .btn-outline-info.active [class^="icon-"], .btn-outline-info.active [class*=" icon-"],
    .show > .btn-outline-info.dropdown-toggle i,
    .show > .btn-outline-info.dropdown-toggle [class^="icon-"],
    .show > .btn-outline-info.dropdown-toggle [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-outline-info:active .text-muted, .btn-outline-info.active .text-muted,
    .show > .btn-outline-info.dropdown-toggle .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-info:active .fuse-ripple-ready .fuse-ripple, .btn-outline-info.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-outline-info.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-outline-info:active .form-control, .btn-outline-info.active .form-control,
    .show > .btn-outline-info.dropdown-toggle .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-outline-info:active .form-control:hover, .btn-outline-info.active .form-control:hover,
      .show > .btn-outline-info.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-outline-info:active .form-control:focus, .btn-outline-info.active .form-control:focus,
      .show > .btn-outline-info.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-info:active .form-control::placeholder, .btn-outline-info.active .form-control::placeholder,
      .show > .btn-outline-info.dropdown-toggle .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-outline-info:active textarea.form-control, .btn-outline-info.active textarea.form-control,
    .show > .btn-outline-info.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-outline-info:active textarea.form-control:hover, .btn-outline-info.active textarea.form-control:hover,
      .show > .btn-outline-info.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-outline-info:active textarea.form-control:focus, .btn-outline-info:active textarea.form-control:focus:hover, .btn-outline-info.active textarea.form-control:focus, .btn-outline-info.active textarea.form-control:focus:hover,
      .show > .btn-outline-info.dropdown-toggle textarea.form-control:focus,
      .show > .btn-outline-info.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-info:active select.form-control, .btn-outline-info.active select.form-control,
    .show > .btn-outline-info.dropdown-toggle 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); }
      .btn-outline-info:active select.form-control[multiple], .btn-outline-info:active select.form-control[size], .btn-outline-info.active select.form-control[multiple], .btn-outline-info.active select.form-control[size],
      .show > .btn-outline-info.dropdown-toggle select.form-control[multiple],
      .show > .btn-outline-info.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-outline-info:active select.form-control[multiple]:hover, .btn-outline-info:active select.form-control[size]:hover, .btn-outline-info.active select.form-control[multiple]:hover, .btn-outline-info.active select.form-control[size]:hover,
        .show > .btn-outline-info.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-outline-info.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-outline-info:active select.form-control[multiple]:focus, .btn-outline-info:active select.form-control[multiple]:focus:hover, .btn-outline-info:active select.form-control[size]:focus, .btn-outline-info:active select.form-control[size]:focus:hover, .btn-outline-info.active select.form-control[multiple]:focus, .btn-outline-info.active select.form-control[multiple]:focus:hover, .btn-outline-info.active select.form-control[size]:focus, .btn-outline-info.active select.form-control[size]:focus:hover,
        .show > .btn-outline-info.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-outline-info.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-outline-info.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-outline-info.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-info:active .form-group > label, .btn-outline-info.active .form-group > label,
    .show > .btn-outline-info.dropdown-toggle .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-info:active .nav .subheader, .btn-outline-info.active .nav .subheader,
    .show > .btn-outline-info.dropdown-toggle .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-info:active .nav .nav-link, .btn-outline-info.active .nav .nav-link,
    .show > .btn-outline-info.dropdown-toggle .nav .nav-link {
      color: white; }
      .btn-outline-info:active .nav .nav-link:hover, .btn-outline-info.active .nav .nav-link:hover,
      .show > .btn-outline-info.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-info:active .nav .nav-link:hover > i, .btn-outline-info.active .nav .nav-link:hover > i,
        .show > .btn-outline-info.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-info:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-info:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-info:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-info:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-info:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-info:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-outline-info.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-info.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-info.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-info.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-info.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-info.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-info.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-info.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-info.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-info.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-info.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-info.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-outline-info:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-info:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-info:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-info:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-info:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-info:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-outline-info.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-info.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-info.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-info.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-info.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-info.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-info.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-info.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-info.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-info.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-info.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-info.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-info:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-info:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-info:active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-info:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-info:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-info:active input[type=checkbox][disabled] ~ .form-check-description, .btn-outline-info.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-info.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-info.active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-info.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-info.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-info.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-outline-info.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-outline-info.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-outline-info.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-outline-info.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-outline-info.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-outline-info.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-info:active .form-check.disabled .form-check-label, .btn-outline-info.active .form-check.disabled .form-check-label,
    .show > .btn-outline-info.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-info:active .custom-control-input:disabled ~ .custom-control-description, .btn-outline-info.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-outline-info.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-info:active #sidenav .nav-link:hover:not(.active), .btn-outline-info.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-outline-info.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-outline-info:active #sidenav .nav-link:hover:not(.active) > i, .btn-outline-info.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-outline-info.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-outline-info.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.btn-outline-warning {
  color: #FF9800;
  background-color: transparent;
  background-image: none;
  border-color: #FF9800; }
  .btn-outline-warning:hover {
    color: rgba(0, 0, 0, 0.87);
    background-color: #FF9800;
    border-color: #FF9800; }
    .btn-outline-warning:hover a:hover {
      color: #1c1e26; }
    .btn-outline-warning:hover i, .btn-outline-warning:hover [class^="icon-"], .btn-outline-warning:hover [class*=" icon-"] {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-warning:hover .text-muted {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-warning:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(0, 0, 0, 0.12); }
    .btn-outline-warning:hover .form-control {
      color: rgba(0, 0, 0, 0.87);
      box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42); }
      .btn-outline-warning:hover .form-control:hover {
        box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
      .btn-outline-warning:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-warning:hover .form-control::placeholder {
        color: rgba(0, 0, 0, 0.54); }
    .btn-outline-warning:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
      .btn-outline-warning:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
      .btn-outline-warning:hover textarea.form-control:focus, .btn-outline-warning:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-warning:hover 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); }
      .btn-outline-warning:hover select.form-control[multiple], .btn-outline-warning:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
        .btn-outline-warning:hover select.form-control[multiple]:hover, .btn-outline-warning:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
        .btn-outline-warning:hover select.form-control[multiple]:focus, .btn-outline-warning:hover select.form-control[multiple]:focus:hover, .btn-outline-warning:hover select.form-control[size]:focus, .btn-outline-warning:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-warning:hover .form-group > label {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-warning:hover .nav .subheader {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-warning:hover .nav .nav-link {
      color: rgba(0, 0, 0, 0.87); }
      .btn-outline-warning:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-warning:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-warning:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-warning:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-warning:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-warning:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-warning:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-warning:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(0, 0, 0, 0.54); }
    .btn-outline-warning:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-warning:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-warning:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-warning:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-warning:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-warning:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-warning:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-warning:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-warning:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-warning:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-warning:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-warning:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-warning:hover .form-check.disabled .form-check-label {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-warning:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-warning:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(0, 0, 0, 0.05) !important; }
      .btn-outline-warning:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(0, 0, 0, 0.54) !important; }
  .btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #FF9800;
    background-color: transparent; }
  .btn-outline-warning:active, .btn-outline-warning.active,
  .show > .btn-outline-warning.dropdown-toggle {
    color: rgba(0, 0, 0, 0.87);
    background-color: #FF9800;
    border-color: #FF9800; }
    .btn-outline-warning:active a:hover, .btn-outline-warning.active a:hover,
    .show > .btn-outline-warning.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-outline-warning:active i, .btn-outline-warning:active [class^="icon-"], .btn-outline-warning:active [class*=" icon-"], .btn-outline-warning.active i, .btn-outline-warning.active [class^="icon-"], .btn-outline-warning.active [class*=" icon-"],
    .show > .btn-outline-warning.dropdown-toggle i,
    .show > .btn-outline-warning.dropdown-toggle [class^="icon-"],
    .show > .btn-outline-warning.dropdown-toggle [class*=" icon-"] {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-warning:active .text-muted, .btn-outline-warning.active .text-muted,
    .show > .btn-outline-warning.dropdown-toggle .text-muted {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-warning:active .fuse-ripple-ready .fuse-ripple, .btn-outline-warning.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-outline-warning.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(0, 0, 0, 0.12); }
    .btn-outline-warning:active .form-control, .btn-outline-warning.active .form-control,
    .show > .btn-outline-warning.dropdown-toggle .form-control {
      color: rgba(0, 0, 0, 0.87);
      box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42); }
      .btn-outline-warning:active .form-control:hover, .btn-outline-warning.active .form-control:hover,
      .show > .btn-outline-warning.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
      .btn-outline-warning:active .form-control:focus, .btn-outline-warning.active .form-control:focus,
      .show > .btn-outline-warning.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-warning:active .form-control::placeholder, .btn-outline-warning.active .form-control::placeholder,
      .show > .btn-outline-warning.dropdown-toggle .form-control::placeholder {
        color: rgba(0, 0, 0, 0.54); }
    .btn-outline-warning:active textarea.form-control, .btn-outline-warning.active textarea.form-control,
    .show > .btn-outline-warning.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
      .btn-outline-warning:active textarea.form-control:hover, .btn-outline-warning.active textarea.form-control:hover,
      .show > .btn-outline-warning.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
      .btn-outline-warning:active textarea.form-control:focus, .btn-outline-warning:active textarea.form-control:focus:hover, .btn-outline-warning.active textarea.form-control:focus, .btn-outline-warning.active textarea.form-control:focus:hover,
      .show > .btn-outline-warning.dropdown-toggle textarea.form-control:focus,
      .show > .btn-outline-warning.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-warning:active select.form-control, .btn-outline-warning.active select.form-control,
    .show > .btn-outline-warning.dropdown-toggle 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); }
      .btn-outline-warning:active select.form-control[multiple], .btn-outline-warning:active select.form-control[size], .btn-outline-warning.active select.form-control[multiple], .btn-outline-warning.active select.form-control[size],
      .show > .btn-outline-warning.dropdown-toggle select.form-control[multiple],
      .show > .btn-outline-warning.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
        .btn-outline-warning:active select.form-control[multiple]:hover, .btn-outline-warning:active select.form-control[size]:hover, .btn-outline-warning.active select.form-control[multiple]:hover, .btn-outline-warning.active select.form-control[size]:hover,
        .show > .btn-outline-warning.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-outline-warning.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
        .btn-outline-warning:active select.form-control[multiple]:focus, .btn-outline-warning:active select.form-control[multiple]:focus:hover, .btn-outline-warning:active select.form-control[size]:focus, .btn-outline-warning:active select.form-control[size]:focus:hover, .btn-outline-warning.active select.form-control[multiple]:focus, .btn-outline-warning.active select.form-control[multiple]:focus:hover, .btn-outline-warning.active select.form-control[size]:focus, .btn-outline-warning.active select.form-control[size]:focus:hover,
        .show > .btn-outline-warning.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-outline-warning.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-outline-warning.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-outline-warning.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-warning:active .form-group > label, .btn-outline-warning.active .form-group > label,
    .show > .btn-outline-warning.dropdown-toggle .form-group > label {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-warning:active .nav .subheader, .btn-outline-warning.active .nav .subheader,
    .show > .btn-outline-warning.dropdown-toggle .nav .subheader {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-warning:active .nav .nav-link, .btn-outline-warning.active .nav .nav-link,
    .show > .btn-outline-warning.dropdown-toggle .nav .nav-link {
      color: rgba(0, 0, 0, 0.87); }
      .btn-outline-warning:active .nav .nav-link:hover, .btn-outline-warning.active .nav .nav-link:hover,
      .show > .btn-outline-warning.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-warning:active .nav .nav-link:hover > i, .btn-outline-warning.active .nav .nav-link:hover > i,
        .show > .btn-outline-warning.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-warning:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-warning:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-warning:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-warning:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-warning:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-warning:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-outline-warning.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-warning.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-warning.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-warning.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-warning.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-warning.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-warning.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-warning.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-warning.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-warning.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-warning.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-warning.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(0, 0, 0, 0.54); }
    .btn-outline-warning:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-warning:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-warning:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-warning:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-warning:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-warning:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-outline-warning.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-warning.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-warning.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-warning.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-warning.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-warning.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-warning.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-warning.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-warning.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-warning.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-warning.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-warning.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-warning:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-warning:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-warning:active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-warning:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-warning:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-warning:active input[type=checkbox][disabled] ~ .form-check-description, .btn-outline-warning.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-warning.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-warning.active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-warning.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-warning.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-warning.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-outline-warning.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-outline-warning.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-outline-warning.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-outline-warning.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-outline-warning.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-outline-warning.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-warning:active .form-check.disabled .form-check-label, .btn-outline-warning.active .form-check.disabled .form-check-label,
    .show > .btn-outline-warning.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-warning:active .custom-control-input:disabled ~ .custom-control-description, .btn-outline-warning.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-outline-warning.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-warning:active #sidenav .nav-link:hover:not(.active), .btn-outline-warning.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-outline-warning.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(0, 0, 0, 0.05) !important; }
      .btn-outline-warning:active #sidenav .nav-link:hover:not(.active) > i, .btn-outline-warning.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-outline-warning.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(0, 0, 0, 0.54) !important; }
  .btn-outline-warning.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.btn-outline-danger {
  color: #F44336;
  background-color: transparent;
  background-image: none;
  border-color: #F44336; }
  .btn-outline-danger:hover {
    color: white;
    background-color: #F44336;
    border-color: #F44336; }
    .btn-outline-danger:hover a:hover {
      color: #1c1e26; }
    .btn-outline-danger:hover i, .btn-outline-danger:hover [class^="icon-"], .btn-outline-danger:hover [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-outline-danger:hover .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-danger:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-outline-danger:hover .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-outline-danger:hover .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-outline-danger:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-danger:hover .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-outline-danger:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-outline-danger:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-outline-danger:hover textarea.form-control:focus, .btn-outline-danger:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-danger:hover 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); }
      .btn-outline-danger:hover select.form-control[multiple], .btn-outline-danger:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-outline-danger:hover select.form-control[multiple]:hover, .btn-outline-danger:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-outline-danger:hover select.form-control[multiple]:focus, .btn-outline-danger:hover select.form-control[multiple]:focus:hover, .btn-outline-danger:hover select.form-control[size]:focus, .btn-outline-danger:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-danger:hover .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-danger:hover .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-danger:hover .nav .nav-link {
      color: white; }
      .btn-outline-danger:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-danger:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-danger:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-danger:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-danger:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-danger:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-danger:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-danger:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-outline-danger:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-danger:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-danger:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-danger:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-danger:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-danger:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-danger:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-danger:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-danger:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-danger:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-danger:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-danger:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-danger:hover .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-danger:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-danger:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-outline-danger:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #F44336;
    background-color: transparent; }
  .btn-outline-danger:active, .btn-outline-danger.active,
  .show > .btn-outline-danger.dropdown-toggle {
    color: white;
    background-color: #F44336;
    border-color: #F44336; }
    .btn-outline-danger:active a:hover, .btn-outline-danger.active a:hover,
    .show > .btn-outline-danger.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-outline-danger:active i, .btn-outline-danger:active [class^="icon-"], .btn-outline-danger:active [class*=" icon-"], .btn-outline-danger.active i, .btn-outline-danger.active [class^="icon-"], .btn-outline-danger.active [class*=" icon-"],
    .show > .btn-outline-danger.dropdown-toggle i,
    .show > .btn-outline-danger.dropdown-toggle [class^="icon-"],
    .show > .btn-outline-danger.dropdown-toggle [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-outline-danger:active .text-muted, .btn-outline-danger.active .text-muted,
    .show > .btn-outline-danger.dropdown-toggle .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-danger:active .fuse-ripple-ready .fuse-ripple, .btn-outline-danger.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-outline-danger.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-outline-danger:active .form-control, .btn-outline-danger.active .form-control,
    .show > .btn-outline-danger.dropdown-toggle .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-outline-danger:active .form-control:hover, .btn-outline-danger.active .form-control:hover,
      .show > .btn-outline-danger.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-outline-danger:active .form-control:focus, .btn-outline-danger.active .form-control:focus,
      .show > .btn-outline-danger.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-danger:active .form-control::placeholder, .btn-outline-danger.active .form-control::placeholder,
      .show > .btn-outline-danger.dropdown-toggle .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-outline-danger:active textarea.form-control, .btn-outline-danger.active textarea.form-control,
    .show > .btn-outline-danger.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-outline-danger:active textarea.form-control:hover, .btn-outline-danger.active textarea.form-control:hover,
      .show > .btn-outline-danger.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-outline-danger:active textarea.form-control:focus, .btn-outline-danger:active textarea.form-control:focus:hover, .btn-outline-danger.active textarea.form-control:focus, .btn-outline-danger.active textarea.form-control:focus:hover,
      .show > .btn-outline-danger.dropdown-toggle textarea.form-control:focus,
      .show > .btn-outline-danger.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-danger:active select.form-control, .btn-outline-danger.active select.form-control,
    .show > .btn-outline-danger.dropdown-toggle 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); }
      .btn-outline-danger:active select.form-control[multiple], .btn-outline-danger:active select.form-control[size], .btn-outline-danger.active select.form-control[multiple], .btn-outline-danger.active select.form-control[size],
      .show > .btn-outline-danger.dropdown-toggle select.form-control[multiple],
      .show > .btn-outline-danger.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-outline-danger:active select.form-control[multiple]:hover, .btn-outline-danger:active select.form-control[size]:hover, .btn-outline-danger.active select.form-control[multiple]:hover, .btn-outline-danger.active select.form-control[size]:hover,
        .show > .btn-outline-danger.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-outline-danger.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-outline-danger:active select.form-control[multiple]:focus, .btn-outline-danger:active select.form-control[multiple]:focus:hover, .btn-outline-danger:active select.form-control[size]:focus, .btn-outline-danger:active select.form-control[size]:focus:hover, .btn-outline-danger.active select.form-control[multiple]:focus, .btn-outline-danger.active select.form-control[multiple]:focus:hover, .btn-outline-danger.active select.form-control[size]:focus, .btn-outline-danger.active select.form-control[size]:focus:hover,
        .show > .btn-outline-danger.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-outline-danger.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-outline-danger.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-outline-danger.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-danger:active .form-group > label, .btn-outline-danger.active .form-group > label,
    .show > .btn-outline-danger.dropdown-toggle .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-danger:active .nav .subheader, .btn-outline-danger.active .nav .subheader,
    .show > .btn-outline-danger.dropdown-toggle .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-danger:active .nav .nav-link, .btn-outline-danger.active .nav .nav-link,
    .show > .btn-outline-danger.dropdown-toggle .nav .nav-link {
      color: white; }
      .btn-outline-danger:active .nav .nav-link:hover, .btn-outline-danger.active .nav .nav-link:hover,
      .show > .btn-outline-danger.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-danger:active .nav .nav-link:hover > i, .btn-outline-danger.active .nav .nav-link:hover > i,
        .show > .btn-outline-danger.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-danger:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-danger:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-danger:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-danger:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-danger:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-danger:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-outline-danger.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-danger.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-danger.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-danger.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-danger.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-danger.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-danger.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-danger.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-danger.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-danger.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-danger.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-danger.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-outline-danger:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-danger:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-danger:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-danger:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-danger:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-danger:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-outline-danger.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-danger.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-danger.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-danger.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-danger.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-danger.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-danger.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-danger.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-danger.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-danger.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-danger.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-danger.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-danger:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-danger:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-danger:active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-danger:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-danger:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-danger:active input[type=checkbox][disabled] ~ .form-check-description, .btn-outline-danger.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-danger.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-danger.active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-danger.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-danger.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-danger.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-outline-danger.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-outline-danger.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-outline-danger.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-outline-danger.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-outline-danger.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-outline-danger.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-danger:active .form-check.disabled .form-check-label, .btn-outline-danger.active .form-check.disabled .form-check-label,
    .show > .btn-outline-danger.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-danger:active .custom-control-input:disabled ~ .custom-control-description, .btn-outline-danger.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-outline-danger.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-danger:active #sidenav .nav-link:hover:not(.active), .btn-outline-danger.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-outline-danger.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-outline-danger:active #sidenav .nav-link:hover:not(.active) > i, .btn-outline-danger.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-outline-danger.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-outline-danger.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.btn-outline-light {
  color: #F8F9FA;
  background-color: transparent;
  background-image: none;
  border-color: #F8F9FA; }
  .btn-outline-light:hover {
    color: rgba(0, 0, 0, 0.87);
    background-color: #F8F9FA;
    border-color: #F8F9FA; }
    .btn-outline-light:hover a:hover {
      color: #1c1e26; }
    .btn-outline-light:hover i, .btn-outline-light:hover [class^="icon-"], .btn-outline-light:hover [class*=" icon-"] {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-light:hover .text-muted {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-light:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(0, 0, 0, 0.12); }
    .btn-outline-light:hover .form-control {
      color: rgba(0, 0, 0, 0.87);
      box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42); }
      .btn-outline-light:hover .form-control:hover {
        box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
      .btn-outline-light:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-light:hover .form-control::placeholder {
        color: rgba(0, 0, 0, 0.54); }
    .btn-outline-light:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
      .btn-outline-light:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
      .btn-outline-light:hover textarea.form-control:focus, .btn-outline-light:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-light:hover 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); }
      .btn-outline-light:hover select.form-control[multiple], .btn-outline-light:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
        .btn-outline-light:hover select.form-control[multiple]:hover, .btn-outline-light:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
        .btn-outline-light:hover select.form-control[multiple]:focus, .btn-outline-light:hover select.form-control[multiple]:focus:hover, .btn-outline-light:hover select.form-control[size]:focus, .btn-outline-light:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-light:hover .form-group > label {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-light:hover .nav .subheader {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-light:hover .nav .nav-link {
      color: rgba(0, 0, 0, 0.87); }
      .btn-outline-light:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-light:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-light:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-light:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-light:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-light:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-light:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-light:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(0, 0, 0, 0.54); }
    .btn-outline-light:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-light:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-light:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-light:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-light:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-light:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-light:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-light:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-light:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-light:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-light:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-light:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-light:hover .form-check.disabled .form-check-label {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-light:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-light:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(0, 0, 0, 0.05) !important; }
      .btn-outline-light:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(0, 0, 0, 0.54) !important; }
  .btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #F8F9FA;
    background-color: transparent; }
  .btn-outline-light:active, .btn-outline-light.active,
  .show > .btn-outline-light.dropdown-toggle {
    color: rgba(0, 0, 0, 0.87);
    background-color: #F8F9FA;
    border-color: #F8F9FA; }
    .btn-outline-light:active a:hover, .btn-outline-light.active a:hover,
    .show > .btn-outline-light.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-outline-light:active i, .btn-outline-light:active [class^="icon-"], .btn-outline-light:active [class*=" icon-"], .btn-outline-light.active i, .btn-outline-light.active [class^="icon-"], .btn-outline-light.active [class*=" icon-"],
    .show > .btn-outline-light.dropdown-toggle i,
    .show > .btn-outline-light.dropdown-toggle [class^="icon-"],
    .show > .btn-outline-light.dropdown-toggle [class*=" icon-"] {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-light:active .text-muted, .btn-outline-light.active .text-muted,
    .show > .btn-outline-light.dropdown-toggle .text-muted {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-light:active .fuse-ripple-ready .fuse-ripple, .btn-outline-light.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-outline-light.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(0, 0, 0, 0.12); }
    .btn-outline-light:active .form-control, .btn-outline-light.active .form-control,
    .show > .btn-outline-light.dropdown-toggle .form-control {
      color: rgba(0, 0, 0, 0.87);
      box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42); }
      .btn-outline-light:active .form-control:hover, .btn-outline-light.active .form-control:hover,
      .show > .btn-outline-light.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
      .btn-outline-light:active .form-control:focus, .btn-outline-light.active .form-control:focus,
      .show > .btn-outline-light.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-light:active .form-control::placeholder, .btn-outline-light.active .form-control::placeholder,
      .show > .btn-outline-light.dropdown-toggle .form-control::placeholder {
        color: rgba(0, 0, 0, 0.54); }
    .btn-outline-light:active textarea.form-control, .btn-outline-light.active textarea.form-control,
    .show > .btn-outline-light.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
      .btn-outline-light:active textarea.form-control:hover, .btn-outline-light.active textarea.form-control:hover,
      .show > .btn-outline-light.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
      .btn-outline-light:active textarea.form-control:focus, .btn-outline-light:active textarea.form-control:focus:hover, .btn-outline-light.active textarea.form-control:focus, .btn-outline-light.active textarea.form-control:focus:hover,
      .show > .btn-outline-light.dropdown-toggle textarea.form-control:focus,
      .show > .btn-outline-light.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-light:active select.form-control, .btn-outline-light.active select.form-control,
    .show > .btn-outline-light.dropdown-toggle 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); }
      .btn-outline-light:active select.form-control[multiple], .btn-outline-light:active select.form-control[size], .btn-outline-light.active select.form-control[multiple], .btn-outline-light.active select.form-control[size],
      .show > .btn-outline-light.dropdown-toggle select.form-control[multiple],
      .show > .btn-outline-light.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
        .btn-outline-light:active select.form-control[multiple]:hover, .btn-outline-light:active select.form-control[size]:hover, .btn-outline-light.active select.form-control[multiple]:hover, .btn-outline-light.active select.form-control[size]:hover,
        .show > .btn-outline-light.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-outline-light.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
        .btn-outline-light:active select.form-control[multiple]:focus, .btn-outline-light:active select.form-control[multiple]:focus:hover, .btn-outline-light:active select.form-control[size]:focus, .btn-outline-light:active select.form-control[size]:focus:hover, .btn-outline-light.active select.form-control[multiple]:focus, .btn-outline-light.active select.form-control[multiple]:focus:hover, .btn-outline-light.active select.form-control[size]:focus, .btn-outline-light.active select.form-control[size]:focus:hover,
        .show > .btn-outline-light.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-outline-light.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-outline-light.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-outline-light.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-light:active .form-group > label, .btn-outline-light.active .form-group > label,
    .show > .btn-outline-light.dropdown-toggle .form-group > label {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-light:active .nav .subheader, .btn-outline-light.active .nav .subheader,
    .show > .btn-outline-light.dropdown-toggle .nav .subheader {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-light:active .nav .nav-link, .btn-outline-light.active .nav .nav-link,
    .show > .btn-outline-light.dropdown-toggle .nav .nav-link {
      color: rgba(0, 0, 0, 0.87); }
      .btn-outline-light:active .nav .nav-link:hover, .btn-outline-light.active .nav .nav-link:hover,
      .show > .btn-outline-light.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-light:active .nav .nav-link:hover > i, .btn-outline-light.active .nav .nav-link:hover > i,
        .show > .btn-outline-light.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-light:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-light:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-light:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-light:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-light:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-light:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-outline-light.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-light.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-light.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-light.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-light.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-light.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-light.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-light.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-light.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-light.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-light.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-light.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(0, 0, 0, 0.54); }
    .btn-outline-light:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-light:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-light:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-light:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-light:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-light:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-outline-light.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-light.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-light.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-light.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-light.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-light.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-light.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-light.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-light.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-light.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-light.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-light.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-light:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-light:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-light:active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-light:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-light:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-light:active input[type=checkbox][disabled] ~ .form-check-description, .btn-outline-light.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-light.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-light.active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-light.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-light.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-light.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-outline-light.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-outline-light.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-outline-light.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-outline-light.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-outline-light.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-outline-light.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-light:active .form-check.disabled .form-check-label, .btn-outline-light.active .form-check.disabled .form-check-label,
    .show > .btn-outline-light.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(0, 0, 0, 0.38) !important; }
    .btn-outline-light:active .custom-control-input:disabled ~ .custom-control-description, .btn-outline-light.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-outline-light.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(0, 0, 0, 0.54); }
    .btn-outline-light:active #sidenav .nav-link:hover:not(.active), .btn-outline-light.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-outline-light.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(0, 0, 0, 0.05) !important; }
      .btn-outline-light:active #sidenav .nav-link:hover:not(.active) > i, .btn-outline-light.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-outline-light.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(0, 0, 0, 0.54) !important; }
  .btn-outline-light.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.btn-outline-dark {
  color: #343A40;
  background-color: transparent;
  background-image: none;
  border-color: #343A40; }
  .btn-outline-dark:hover {
    color: white;
    background-color: #343A40;
    border-color: #343A40; }
    .btn-outline-dark:hover a:hover {
      color: #1c1e26; }
    .btn-outline-dark:hover i, .btn-outline-dark:hover [class^="icon-"], .btn-outline-dark:hover [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-outline-dark:hover .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-dark:hover .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-outline-dark:hover .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-outline-dark:hover .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-outline-dark:hover .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-dark:hover .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-outline-dark:hover textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-outline-dark:hover textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-outline-dark:hover textarea.form-control:focus, .btn-outline-dark:hover textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-dark:hover 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); }
      .btn-outline-dark:hover select.form-control[multiple], .btn-outline-dark:hover select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-outline-dark:hover select.form-control[multiple]:hover, .btn-outline-dark:hover select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-outline-dark:hover select.form-control[multiple]:focus, .btn-outline-dark:hover select.form-control[multiple]:focus:hover, .btn-outline-dark:hover select.form-control[size]:focus, .btn-outline-dark:hover select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-dark:hover .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-dark:hover .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-dark:hover .nav .nav-link {
      color: white; }
      .btn-outline-dark:hover .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-dark:hover .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-dark:hover .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-dark:hover .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-dark:hover .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-dark:hover .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-dark:hover .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-dark:hover .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-outline-dark:hover .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-dark:hover .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-dark:hover .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-dark:hover .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-dark:hover .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-dark:hover .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-dark:hover input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-dark:hover input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-dark:hover input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-dark:hover input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-dark:hover input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-dark:hover input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-dark:hover .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-dark:hover .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-dark:hover #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-outline-dark:hover #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #343A40;
    background-color: transparent; }
  .btn-outline-dark:active, .btn-outline-dark.active,
  .show > .btn-outline-dark.dropdown-toggle {
    color: white;
    background-color: #343A40;
    border-color: #343A40; }
    .btn-outline-dark:active a:hover, .btn-outline-dark.active a:hover,
    .show > .btn-outline-dark.dropdown-toggle a:hover {
      color: #1c1e26; }
    .btn-outline-dark:active i, .btn-outline-dark:active [class^="icon-"], .btn-outline-dark:active [class*=" icon-"], .btn-outline-dark.active i, .btn-outline-dark.active [class^="icon-"], .btn-outline-dark.active [class*=" icon-"],
    .show > .btn-outline-dark.dropdown-toggle i,
    .show > .btn-outline-dark.dropdown-toggle [class^="icon-"],
    .show > .btn-outline-dark.dropdown-toggle [class*=" icon-"] {
      color: rgba(255, 255, 255, 0.87); }
    .btn-outline-dark:active .text-muted, .btn-outline-dark.active .text-muted,
    .show > .btn-outline-dark.dropdown-toggle .text-muted {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-dark:active .fuse-ripple-ready .fuse-ripple, .btn-outline-dark.active .fuse-ripple-ready .fuse-ripple,
    .show > .btn-outline-dark.dropdown-toggle .fuse-ripple-ready .fuse-ripple {
      background: rgba(255, 255, 255, 0.28); }
    .btn-outline-dark:active .form-control, .btn-outline-dark.active .form-control,
    .show > .btn-outline-dark.dropdown-toggle .form-control {
      color: white;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.7); }
      .btn-outline-dark:active .form-control:hover, .btn-outline-dark.active .form-control:hover,
      .show > .btn-outline-dark.dropdown-toggle .form-control:hover {
        box-shadow: 0 2px 0 0 white; }
      .btn-outline-dark:active .form-control:focus, .btn-outline-dark.active .form-control:focus,
      .show > .btn-outline-dark.dropdown-toggle .form-control:focus {
        box-shadow: 0 2px 0 0 #3C4252; }
      .btn-outline-dark:active .form-control::placeholder, .btn-outline-dark.active .form-control::placeholder,
      .show > .btn-outline-dark.dropdown-toggle .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7); }
    .btn-outline-dark:active textarea.form-control, .btn-outline-dark.active textarea.form-control,
    .show > .btn-outline-dark.dropdown-toggle textarea.form-control {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
      .btn-outline-dark:active textarea.form-control:hover, .btn-outline-dark.active textarea.form-control:hover,
      .show > .btn-outline-dark.dropdown-toggle textarea.form-control:hover {
        box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
      .btn-outline-dark:active textarea.form-control:focus, .btn-outline-dark:active textarea.form-control:focus:hover, .btn-outline-dark.active textarea.form-control:focus, .btn-outline-dark.active textarea.form-control:focus:hover,
      .show > .btn-outline-dark.dropdown-toggle textarea.form-control:focus,
      .show > .btn-outline-dark.dropdown-toggle textarea.form-control:focus:hover {
        box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-dark:active select.form-control, .btn-outline-dark.active select.form-control,
    .show > .btn-outline-dark.dropdown-toggle 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); }
      .btn-outline-dark:active select.form-control[multiple], .btn-outline-dark:active select.form-control[size], .btn-outline-dark.active select.form-control[multiple], .btn-outline-dark.active select.form-control[size],
      .show > .btn-outline-dark.dropdown-toggle select.form-control[multiple],
      .show > .btn-outline-dark.dropdown-toggle select.form-control[size] {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
        .btn-outline-dark:active select.form-control[multiple]:hover, .btn-outline-dark:active select.form-control[size]:hover, .btn-outline-dark.active select.form-control[multiple]:hover, .btn-outline-dark.active select.form-control[size]:hover,
        .show > .btn-outline-dark.dropdown-toggle select.form-control[multiple]:hover,
        .show > .btn-outline-dark.dropdown-toggle select.form-control[size]:hover {
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
        .btn-outline-dark:active select.form-control[multiple]:focus, .btn-outline-dark:active select.form-control[multiple]:focus:hover, .btn-outline-dark:active select.form-control[size]:focus, .btn-outline-dark:active select.form-control[size]:focus:hover, .btn-outline-dark.active select.form-control[multiple]:focus, .btn-outline-dark.active select.form-control[multiple]:focus:hover, .btn-outline-dark.active select.form-control[size]:focus, .btn-outline-dark.active select.form-control[size]:focus:hover,
        .show > .btn-outline-dark.dropdown-toggle select.form-control[multiple]:focus,
        .show > .btn-outline-dark.dropdown-toggle select.form-control[multiple]:focus:hover,
        .show > .btn-outline-dark.dropdown-toggle select.form-control[size]:focus,
        .show > .btn-outline-dark.dropdown-toggle select.form-control[size]:focus:hover {
          box-shadow: inset 0 0 0 2px #3C4252; }
    .btn-outline-dark:active .form-group > label, .btn-outline-dark.active .form-group > label,
    .show > .btn-outline-dark.dropdown-toggle .form-group > label {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-dark:active .nav .subheader, .btn-outline-dark.active .nav .subheader,
    .show > .btn-outline-dark.dropdown-toggle .nav .subheader {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-dark:active .nav .nav-link, .btn-outline-dark.active .nav .nav-link,
    .show > .btn-outline-dark.dropdown-toggle .nav .nav-link {
      color: white; }
      .btn-outline-dark:active .nav .nav-link:hover, .btn-outline-dark.active .nav .nav-link:hover,
      .show > .btn-outline-dark.dropdown-toggle .nav .nav-link:hover {
        color: #3C4252; }
        .btn-outline-dark:active .nav .nav-link:hover > i, .btn-outline-dark.active .nav .nav-link:hover > i,
        .show > .btn-outline-dark.dropdown-toggle .nav .nav-link:hover > i {
          color: #3C4252; }
    .btn-outline-dark:active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-dark:active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-dark:active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-dark:active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-dark:active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-dark:active .form-check-label input[type=radio] ~ .radio-icon:before, .btn-outline-dark.active .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-dark.active .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .btn-outline-dark.active .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-dark.active .custom-radio input[type=radio] ~ .radio-icon:before,
    .btn-outline-dark.active .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .btn-outline-dark.active .form-check-label input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-dark.dropdown-toggle .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-dark.dropdown-toggle .custom-checkbox input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-dark.dropdown-toggle .custom-radio input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-dark.dropdown-toggle .custom-radio input[type=radio] ~ .radio-icon:before,
    .show > .btn-outline-dark.dropdown-toggle .form-check-label input[type=radio] ~ .custom-control-indicator:before,
    .show > .btn-outline-dark.dropdown-toggle .form-check-label input[type=radio] ~ .radio-icon:before {
      border-color: rgba(255, 255, 255, 0.7); }
    .btn-outline-dark:active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-dark:active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-dark:active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-dark:active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-dark:active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-dark:active .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .btn-outline-dark.active .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-dark.active .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-dark.active .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-dark.active .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .btn-outline-dark.active .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .btn-outline-dark.active .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-dark.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-dark.dropdown-toggle .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-dark.dropdown-toggle .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-dark.dropdown-toggle .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
    .show > .btn-outline-dark.dropdown-toggle .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
    .show > .btn-outline-dark.dropdown-toggle .form-check-label input[type=checkbox] ~ .checkbox-icon:before {
      color: rgba(255, 255, 255, 0.7); }
    .btn-outline-dark:active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-dark:active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-dark:active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-dark:active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-dark:active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-dark:active input[type=checkbox][disabled] ~ .form-check-description, .btn-outline-dark.active input[type=checkbox]:disabled ~ .checkbox-icon,
    .btn-outline-dark.active input[type=checkbox]:disabled ~ .custom-control-indicator,
    .btn-outline-dark.active input[type=checkbox]:disabled ~ .form-check-description, .btn-outline-dark.active input[type=checkbox][disabled] ~ .checkbox-icon,
    .btn-outline-dark.active input[type=checkbox][disabled] ~ .custom-control-indicator,
    .btn-outline-dark.active input[type=checkbox][disabled] ~ .form-check-description,
    .show > .btn-outline-dark.dropdown-toggle input[type=checkbox]:disabled ~ .checkbox-icon,
    .show > .btn-outline-dark.dropdown-toggle input[type=checkbox]:disabled ~ .custom-control-indicator,
    .show > .btn-outline-dark.dropdown-toggle input[type=checkbox]:disabled ~ .form-check-description,
    .show > .btn-outline-dark.dropdown-toggle input[type=checkbox][disabled] ~ .checkbox-icon,
    .show > .btn-outline-dark.dropdown-toggle input[type=checkbox][disabled] ~ .custom-control-indicator,
    .show > .btn-outline-dark.dropdown-toggle input[type=checkbox][disabled] ~ .form-check-description {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-dark:active .form-check.disabled .form-check-label, .btn-outline-dark.active .form-check.disabled .form-check-label,
    .show > .btn-outline-dark.dropdown-toggle .form-check.disabled .form-check-label {
      color: rgba(255, 255, 255, 0.5) !important; }
    .btn-outline-dark:active .custom-control-input:disabled ~ .custom-control-description, .btn-outline-dark.active .custom-control-input:disabled ~ .custom-control-description,
    .show > .btn-outline-dark.dropdown-toggle .custom-control-input:disabled ~ .custom-control-description {
      color: rgba(255, 255, 255, 0.5); }
    .btn-outline-dark:active #sidenav .nav-link:hover:not(.active), .btn-outline-dark.active #sidenav .nav-link:hover:not(.active),
    .show > .btn-outline-dark.dropdown-toggle #sidenav .nav-link:hover:not(.active) {
      background: rgba(255, 255, 255, 0.04) !important; }
      .btn-outline-dark:active #sidenav .nav-link:hover:not(.active) > i, .btn-outline-dark.active #sidenav .nav-link:hover:not(.active) > i,
      .show > .btn-outline-dark.dropdown-toggle #sidenav .nav-link:hover:not(.active) > i {
        color: rgba(255, 255, 255, 0.87) !important; }
  .btn-outline-dark.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.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:focus, .btn-link:hover {
    color: #1c1e26;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link:disabled {
    color: #868E96; }
    .btn-link:disabled:focus, .btn-link:disabled:hover {
      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.46154;
  border-radius: 2px;
  height: calc(2.32143rem + 0px);
  line-height: calc(2.32143rem + 0px); }

.btn-icon {
  background: transparent;
  min-width: auto;
  min-width: initial;
  height: auto;
  line-height: normal;
  padding: .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"],
input[type="reset"],
input[type="button"] {
  text-transform: uppercase; }
  input[type="submit"].btn-block,
  input[type="reset"].btn-block,
  input[type="button"].btn-block {
    width: 100%; }

[data-toggle="collapse"] {
  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; }

button,
input[type=email],
input[type=tel],
input[type=text],
input[type=password],
input[type=image],
input[type=submit],
input[type=button],
input[type=search],
textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none; }

.form-control {
  padding: 0 0 0 0;
  border: 0px solid transparent;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.42);
  transition: box-shadow 180ms cubic-bezier(0.4, 0, 0.2, 1); }
  .form-control:hover {
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.87); }
  .form-control:focus {
    box-shadow: 0 2px 0 0 #3C4252; }

label + .form-control::placeholder {
  color: rgba(0, 0, 0, 0.54);
  opacity: 1 !important; }

select.form-control {
  padding-right: 24px;
  padding-bottom: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: calc(100% - 24px);
  background: none;
  background-repeat: no-repeat;
  background-position: right center;
  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);
  cursor: pointer; }
  select.form-control[multiple], select.form-control[size] {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
    select.form-control[multiple]:focus, select.form-control[size]:focus {
      box-shadow: inset 0 0 0 2px #3C4252; }
  select.form-control  option {
    color: #495057; }
  select.form-control option {
    padding: 16px 40px;
    margin: 0 -24px; }

.col-form-label {
  padding-top: 0;
  font-size: 1.4rem;
  line-height: normal; }

.col-form-label-lg {
  padding-top: 0;
  line-height: normal; }

.col-form-label-sm {
  padding-top: 0;
  line-height: normal; }

.form-control-plaintext {
  display: block;
  padding: 0 1.6rem 0 1.6rem;
  font-size: 1.4rem; }
  .form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control,
  .input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,
  .input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,
  .input-group-sm > .input-group-prepend > .form-control-plaintext.btn,
  .input-group-sm > .input-group-append > .form-control-plaintext.btn {
    font-size: 1.3rem; }
  .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control,
  .input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,
  .input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,
  .input-group-lg > .input-group-prepend > .form-control-plaintext.btn,
  .input-group-lg > .input-group-append > .form-control-plaintext.btn {
    font-size: 1.6rem; }

.form-control-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0 0; }

select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) {
  height: calc(2.32143rem + 0px); }

.form-control-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0 0; }

.form-row .form-group {
  display: flex;
  align-items: flex-end; }

.form-row .form-control + .col-form-label {
  left: 5px !important; }

.form-check.disabled .form-check-label {
  color: rgba(0, 0, 0, 0.38) !important;
  cursor: not-allowed; }

.form-check-label {
  cursor: pointer; }

input[type=checkbox]:disabled ~ .checkbox-icon,
input[type=checkbox]:disabled ~ .custom-control-indicator,
input[type=checkbox]:disabled ~ .form-check-description, input[type=checkbox][disabled] ~ .checkbox-icon,
input[type=checkbox][disabled] ~ .custom-control-indicator,
input[type=checkbox][disabled] ~ .form-check-description {
  color: rgba(0, 0, 0, 0.38) !important; }

.form-check-label,
.custom-checkbox,
.custom-radio {
  padding-left: 20px !important;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  min-width: 24px;
  min-height: 24px; }
  .form-check-label input[type=checkbox],
  .custom-checkbox input[type=checkbox],
  .custom-radio input[type=checkbox] {
    position: absolute;
    top: -8px;
    left: 2px; }
    .form-check-label input[type=checkbox] ~ .checkbox-icon,
    .form-check-label input[type=checkbox] ~ .custom-control-indicator,
    .custom-checkbox input[type=checkbox] ~ .checkbox-icon,
    .custom-checkbox input[type=checkbox] ~ .custom-control-indicator,
    .custom-radio input[type=checkbox] ~ .checkbox-icon,
    .custom-radio input[type=checkbox] ~ .custom-control-indicator {
      position: absolute;
      top: -8px;
      left: -10px;
      font-family: 'fuse-iconfont';
      font-weight: normal;
      font-style: normal;
      font-size: 24px;
      line-height: normal;
      cursor: pointer;
      width: 40px;
      height: 40px;
      pointer-events: initial;
      color: rgba(0, 0, 0, 0.54); }
      .form-check-label input[type=checkbox] ~ .checkbox-icon + span,
      .form-check-label input[type=checkbox] ~ .custom-control-indicator + span,
      .custom-checkbox input[type=checkbox] ~ .checkbox-icon + span,
      .custom-checkbox input[type=checkbox] ~ .custom-control-indicator + span,
      .custom-radio input[type=checkbox] ~ .checkbox-icon + span,
      .custom-radio input[type=checkbox] ~ .custom-control-indicator + span {
        padding-left: 8px; }
      .form-check-label input[type=checkbox] ~ .checkbox-icon.fuse-ripple-ready,
      .form-check-label input[type=checkbox] ~ .custom-control-indicator.fuse-ripple-ready,
      .custom-checkbox input[type=checkbox] ~ .checkbox-icon.fuse-ripple-ready,
      .custom-checkbox input[type=checkbox] ~ .custom-control-indicator.fuse-ripple-ready,
      .custom-radio input[type=checkbox] ~ .checkbox-icon.fuse-ripple-ready,
      .custom-radio input[type=checkbox] ~ .custom-control-indicator.fuse-ripple-ready {
        overflow: visible; }
      .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .form-check-label input[type=checkbox] ~ .checkbox-icon:after,
      .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
      .form-check-label input[type=checkbox] ~ .custom-control-indicator:after,
      .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
      .custom-checkbox input[type=checkbox] ~ .checkbox-icon:after,
      .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
      .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:after,
      .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
      .custom-radio input[type=checkbox] ~ .checkbox-icon:after,
      .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
      .custom-radio input[type=checkbox] ~ .custom-control-indicator:after {
        position: absolute;
        -webkit-transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
        transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
        transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
        transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
        top: 8px;
        left: 8px; }
      .form-check-label input[type=checkbox] ~ .checkbox-icon:before,
      .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
      .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
      .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
      .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
      .custom-radio input[type=checkbox] ~ .custom-control-indicator:before {
        content: "\EA7E";
        opacity: 1; }
      .form-check-label input[type=checkbox] ~ .checkbox-icon:after,
      .form-check-label input[type=checkbox] ~ .custom-control-indicator:after,
      .custom-checkbox input[type=checkbox] ~ .checkbox-icon:after,
      .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:after,
      .custom-radio input[type=checkbox] ~ .checkbox-icon:after,
      .custom-radio input[type=checkbox] ~ .custom-control-indicator:after {
        content: "\EA83";
        opacity: 0; }
    .form-check-label input[type=checkbox]:disabled ~ .checkbox-icon,
    .form-check-label input[type=checkbox]:disabled ~ .custom-control-indicator,
    .form-check-label input[type=checkbox]:disabled .form-check-description, .form-check-label input[type=checkbox][disabled] ~ .checkbox-icon,
    .form-check-label input[type=checkbox][disabled] ~ .custom-control-indicator,
    .form-check-label input[type=checkbox][disabled] .form-check-description,
    .custom-checkbox input[type=checkbox]:disabled ~ .checkbox-icon,
    .custom-checkbox input[type=checkbox]:disabled ~ .custom-control-indicator,
    .custom-checkbox input[type=checkbox]:disabled .form-check-description,
    .custom-checkbox input[type=checkbox][disabled] ~ .checkbox-icon,
    .custom-checkbox input[type=checkbox][disabled] ~ .custom-control-indicator,
    .custom-checkbox input[type=checkbox][disabled] .form-check-description,
    .custom-radio input[type=checkbox]:disabled ~ .checkbox-icon,
    .custom-radio input[type=checkbox]:disabled ~ .custom-control-indicator,
    .custom-radio input[type=checkbox]:disabled .form-check-description,
    .custom-radio input[type=checkbox][disabled] ~ .checkbox-icon,
    .custom-radio input[type=checkbox][disabled] ~ .custom-control-indicator,
    .custom-radio input[type=checkbox][disabled] .form-check-description {
      cursor: not-allowed;
      pointer-events: none; }
    .form-check-label input[type=checkbox]:checked ~ .checkbox-icon,
    .form-check-label input[type=checkbox]:checked ~ .custom-control-indicator,
    .custom-checkbox input[type=checkbox]:checked ~ .checkbox-icon,
    .custom-checkbox input[type=checkbox]:checked ~ .custom-control-indicator,
    .custom-radio input[type=checkbox]:checked ~ .checkbox-icon,
    .custom-radio input[type=checkbox]:checked ~ .custom-control-indicator {
      color: #3C4252; }
      .form-check-label input[type=checkbox]:checked ~ .checkbox-icon:before,
      .form-check-label input[type=checkbox]:checked ~ .custom-control-indicator:before,
      .custom-checkbox input[type=checkbox]:checked ~ .checkbox-icon:before,
      .custom-checkbox input[type=checkbox]:checked ~ .custom-control-indicator:before,
      .custom-radio input[type=checkbox]:checked ~ .checkbox-icon:before,
      .custom-radio input[type=checkbox]:checked ~ .custom-control-indicator:before {
        opacity: 0; }
      .form-check-label input[type=checkbox]:checked ~ .checkbox-icon:after,
      .form-check-label input[type=checkbox]:checked ~ .custom-control-indicator:after,
      .custom-checkbox input[type=checkbox]:checked ~ .checkbox-icon:after,
      .custom-checkbox input[type=checkbox]:checked ~ .custom-control-indicator:after,
      .custom-radio input[type=checkbox]:checked ~ .checkbox-icon:after,
      .custom-radio input[type=checkbox]:checked ~ .custom-control-indicator:after {
        opacity: 1; }
  .form-check-label input[type=radio],
  .custom-checkbox input[type=radio],
  .custom-radio input[type=radio] {
    position: absolute;
    top: -8px;
    left: 2px; }
    .form-check-label input[type=radio] ~ .radio-icon,
    .form-check-label input[type=radio] ~ .custom-control-indicator,
    .custom-checkbox input[type=radio] ~ .radio-icon,
    .custom-checkbox input[type=radio] ~ .custom-control-indicator,
    .custom-radio input[type=radio] ~ .radio-icon,
    .custom-radio input[type=radio] ~ .custom-control-indicator {
      cursor: pointer;
      width: 40px;
      height: 40px;
      position: absolute;
      top: -8px;
      left: -10px;
      color: rgba(0, 0, 0, 0.54); }
      .form-check-label input[type=radio] ~ .radio-icon.fuse-ripple-ready,
      .form-check-label input[type=radio] ~ .custom-control-indicator.fuse-ripple-ready,
      .custom-checkbox input[type=radio] ~ .radio-icon.fuse-ripple-ready,
      .custom-checkbox input[type=radio] ~ .custom-control-indicator.fuse-ripple-ready,
      .custom-radio input[type=radio] ~ .radio-icon.fuse-ripple-ready,
      .custom-radio input[type=radio] ~ .custom-control-indicator.fuse-ripple-ready {
        overflow: visible; }
      .form-check-label input[type=radio] ~ .radio-icon + span,
      .form-check-label input[type=radio] ~ .custom-control-indicator + span,
      .custom-checkbox input[type=radio] ~ .radio-icon + span,
      .custom-checkbox input[type=radio] ~ .custom-control-indicator + span,
      .custom-radio input[type=radio] ~ .radio-icon + span,
      .custom-radio input[type=radio] ~ .custom-control-indicator + span {
        padding-left: 8px; }
      .form-check-label input[type=radio] ~ .radio-icon:before, .form-check-label input[type=radio] ~ .radio-icon:after,
      .form-check-label input[type=radio] ~ .custom-control-indicator:before,
      .form-check-label input[type=radio] ~ .custom-control-indicator:after,
      .custom-checkbox input[type=radio] ~ .radio-icon:before,
      .custom-checkbox input[type=radio] ~ .radio-icon:after,
      .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
      .custom-checkbox input[type=radio] ~ .custom-control-indicator:after,
      .custom-radio input[type=radio] ~ .radio-icon:before,
      .custom-radio input[type=radio] ~ .radio-icon:after,
      .custom-radio input[type=radio] ~ .custom-control-indicator:before,
      .custom-radio input[type=radio] ~ .custom-control-indicator:after {
        width: 20px;
        height: 20px;
        content: '';
        display: block;
        position: absolute;
        top: 10px;
        left: 10px; }
      .form-check-label input[type=radio] ~ .radio-icon:before,
      .form-check-label input[type=radio] ~ .custom-control-indicator:before,
      .custom-checkbox input[type=radio] ~ .radio-icon:before,
      .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
      .custom-radio input[type=radio] ~ .radio-icon:before,
      .custom-radio input[type=radio] ~ .custom-control-indicator:before {
        border-color: rgba(0, 0, 0, 0.54);
        transition: border-color 120ms 0ms cubic-bezier(0.4, 0, 1, 1);
        border-width: 2px;
        border-style: solid;
        border-radius: 50%;
        box-sizing: border-box; }
      .form-check-label input[type=radio] ~ .radio-icon:after,
      .form-check-label input[type=radio] ~ .custom-control-indicator:after,
      .custom-checkbox input[type=radio] ~ .radio-icon:after,
      .custom-checkbox input[type=radio] ~ .custom-control-indicator:after,
      .custom-radio input[type=radio] ~ .radio-icon:after,
      .custom-radio input[type=radio] ~ .custom-control-indicator:after {
        background-color: rgba(0, 0, 0, 0.54);
        transform: scale(0, 0);
        transition: background-color 120ms 0ms cubic-bezier(0.4, 0, 1, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 1, 1);
        transition: transform 120ms 0ms cubic-bezier(0.4, 0, 1, 1), background-color 120ms 0ms cubic-bezier(0.4, 0, 1, 1);
        border-radius: 50%;
        box-sizing: border-box; }
    .form-check-label input[type=radio]:disabled ~ .radio-icon,
    .form-check-label input[type=radio]:disabled ~ .custom-control-indicator,
    .form-check-label input[type=radio]:disabled .form-check-description, .form-check-label input[type=radio][disabled] ~ .radio-icon,
    .form-check-label input[type=radio][disabled] ~ .custom-control-indicator,
    .form-check-label input[type=radio][disabled] .form-check-description,
    .custom-checkbox input[type=radio]:disabled ~ .radio-icon,
    .custom-checkbox input[type=radio]:disabled ~ .custom-control-indicator,
    .custom-checkbox input[type=radio]:disabled .form-check-description,
    .custom-checkbox input[type=radio][disabled] ~ .radio-icon,
    .custom-checkbox input[type=radio][disabled] ~ .custom-control-indicator,
    .custom-checkbox input[type=radio][disabled] .form-check-description,
    .custom-radio input[type=radio]:disabled ~ .radio-icon,
    .custom-radio input[type=radio]:disabled ~ .custom-control-indicator,
    .custom-radio input[type=radio]:disabled .form-check-description,
    .custom-radio input[type=radio][disabled] ~ .radio-icon,
    .custom-radio input[type=radio][disabled] ~ .custom-control-indicator,
    .custom-radio input[type=radio][disabled] .form-check-description {
      cursor: not-allowed;
      pointer-events: none; }
    .form-check-label input[type=radio]:disabled ~ .radio-icon:before,
    .form-check-label input[type=radio]:disabled ~ .custom-control-indicator:before, .form-check-label input[type=radio][disabled] ~ .radio-icon:before,
    .form-check-label input[type=radio][disabled] ~ .custom-control-indicator:before,
    .custom-checkbox input[type=radio]:disabled ~ .radio-icon:before,
    .custom-checkbox input[type=radio]:disabled ~ .custom-control-indicator:before,
    .custom-checkbox input[type=radio][disabled] ~ .radio-icon:before,
    .custom-checkbox input[type=radio][disabled] ~ .custom-control-indicator:before,
    .custom-radio input[type=radio]:disabled ~ .radio-icon:before,
    .custom-radio input[type=radio]:disabled ~ .custom-control-indicator:before,
    .custom-radio input[type=radio][disabled] ~ .radio-icon:before,
    .custom-radio input[type=radio][disabled] ~ .custom-control-indicator:before {
      border-color: rgba(0, 0, 0, 0.38); }
    .form-check-label input[type=radio]:disabled ~ .radio-icon:after,
    .form-check-label input[type=radio]:disabled ~ .custom-control-indicator:after, .form-check-label input[type=radio][disabled] ~ .radio-icon:after,
    .form-check-label input[type=radio][disabled] ~ .custom-control-indicator:after,
    .custom-checkbox input[type=radio]:disabled ~ .radio-icon:after,
    .custom-checkbox input[type=radio]:disabled ~ .custom-control-indicator:after,
    .custom-checkbox input[type=radio][disabled] ~ .radio-icon:after,
    .custom-checkbox input[type=radio][disabled] ~ .custom-control-indicator:after,
    .custom-radio input[type=radio]:disabled ~ .radio-icon:after,
    .custom-radio input[type=radio]:disabled ~ .custom-control-indicator:after,
    .custom-radio input[type=radio][disabled] ~ .radio-icon:after,
    .custom-radio input[type=radio][disabled] ~ .custom-control-indicator:after {
      background-color: rgba(0, 0, 0, 0.38); }
    .form-check-label input[type=radio]:checked ~ .radio-icon:before,
    .form-check-label input[type=radio]:checked ~ .custom-control-indicator:before,
    .custom-checkbox input[type=radio]:checked ~ .radio-icon:before,
    .custom-checkbox input[type=radio]:checked ~ .custom-control-indicator:before,
    .custom-radio input[type=radio]:checked ~ .radio-icon:before,
    .custom-radio input[type=radio]:checked ~ .custom-control-indicator:before {
      border-color: #3C4252; }
    .form-check-label input[type=radio]:checked ~ .radio-icon:after,
    .form-check-label input[type=radio]:checked ~ .custom-control-indicator:after,
    .custom-checkbox input[type=radio]:checked ~ .radio-icon:after,
    .custom-checkbox input[type=radio]:checked ~ .custom-control-indicator:after,
    .custom-radio input[type=radio]:checked ~ .radio-icon:after,
    .custom-radio input[type=radio]:checked ~ .custom-control-indicator:after {
      transform: scale(0.5);
      background-color: #3C4252; }

.form-check-input,
.custom-control-input {
  opacity: 0;
  width: 40px;
  height: 40px;
  position: relative;
  margin-top: 0;
  margin-left: -1.2rem; }
  .form-check-input:only-child,
  .custom-control-input:only-child {
    position: static; }

@media (min-width: 576px) {
  .form-inline .form-check-input {
    margin-right: 0;
    margin-left: -1.2rem; }
  .form-inline .custom-control-indicator {
    position: absolute; } }

.form-group {
  padding-top: 1.6rem;
  margin-bottom: 3.2rem; }
  .form-group.row > label {
    transform: scale(1); }
  .form-group > label {
    width: 100%;
    color: rgba(0, 0, 0, 0.38);
    transform: scale(0.923, 0.923);
    transform-origin: left; }

.form-group,
.form-check {
  font-size: 1.6rem;
  will-change: opacity, transform, color;
  letter-spacing: 0.04em;
  position: relative;
  box-sizing: border-box;
  align-items: flex-start;
  flex-wrap: wrap;
  display: flex;
  justify-content: flex-start; }
  .form-group.md-focus input[type=email].form-control::placeholder,
  .form-group.md-focus input[type=password].form-control::placeholder,
  .form-group.md-focus input[type=text].form-control::placeholder,
  .form-group.md-focus input[type=search].form-control::placeholder,
  .form-group.md-focus input[type=url].form-control::placeholder,
  .form-group.md-focus input[type=tel].form-control::placeholder,
  .form-group.md-focus input[type=password].form-control::placeholder,
  .form-group.md-focus input[type=number].form-control::placeholder,
  .form-group.md-focus input[type=datetime-local].form-control::placeholder,
  .form-group.md-focus input[type=date].form-control::placeholder,
  .form-group.md-focus input[type=month].form-control::placeholder,
  .form-group.md-focus input[type=week].form-control::placeholder,
  .form-group.md-focus input[type=time].form-control::placeholder,
  .form-group.md-focus textarea.form-control::placeholder,
  .form-check.md-focus input[type=email].form-control::placeholder,
  .form-check.md-focus input[type=password].form-control::placeholder,
  .form-check.md-focus input[type=text].form-control::placeholder,
  .form-check.md-focus input[type=search].form-control::placeholder,
  .form-check.md-focus input[type=url].form-control::placeholder,
  .form-check.md-focus input[type=tel].form-control::placeholder,
  .form-check.md-focus input[type=password].form-control::placeholder,
  .form-check.md-focus input[type=number].form-control::placeholder,
  .form-check.md-focus input[type=datetime-local].form-control::placeholder,
  .form-check.md-focus input[type=date].form-control::placeholder,
  .form-check.md-focus input[type=month].form-control::placeholder,
  .form-check.md-focus input[type=week].form-control::placeholder,
  .form-check.md-focus input[type=time].form-control::placeholder,
  .form-check.md-focus textarea.form-control::placeholder {
    opacity: 1; }
  .form-group.md-focus textarea.form-control,
  .form-check.md-focus textarea.form-control {
    box-shadow: inset 0 0 0 2px #3C4252; }
  .form-group .form-control,
  .form-check .form-control {
    margin: 0; }
  .form-group.has-success .form-check-label .checkbox-icon,
  .form-group.has-success .form-check-label .custom-control-indicator,
  .form-group.has-success .custom-checkbox .checkbox-icon,
  .form-group.has-success .custom-checkbox .custom-control-indicator, .form-group.has-warning .form-check-label .checkbox-icon,
  .form-group.has-warning .form-check-label .custom-control-indicator,
  .form-group.has-warning .custom-checkbox .checkbox-icon,
  .form-group.has-warning .custom-checkbox .custom-control-indicator, .form-group.has-danger .form-check-label .checkbox-icon,
  .form-group.has-danger .form-check-label .custom-control-indicator,
  .form-group.has-danger .custom-checkbox .checkbox-icon,
  .form-group.has-danger .custom-checkbox .custom-control-indicator,
  .form-check.has-success .form-check-label .checkbox-icon,
  .form-check.has-success .form-check-label .custom-control-indicator,
  .form-check.has-success .custom-checkbox .checkbox-icon,
  .form-check.has-success .custom-checkbox .custom-control-indicator,
  .form-check.has-warning .form-check-label .checkbox-icon,
  .form-check.has-warning .form-check-label .custom-control-indicator,
  .form-check.has-warning .custom-checkbox .checkbox-icon,
  .form-check.has-warning .custom-checkbox .custom-control-indicator,
  .form-check.has-danger .form-check-label .checkbox-icon,
  .form-check.has-danger .form-check-label .custom-control-indicator,
  .form-check.has-danger .custom-checkbox .checkbox-icon,
  .form-check.has-danger .custom-checkbox .custom-control-indicator {
    color: inherit !important; }
  .form-group:not(.has-success):not(.has-warning):not(.has-danger).md-focus label,
  .form-group:not(.has-success):not(.has-warning):not(.has-danger) .form-control:focus + label,
  .form-check:not(.has-success):not(.has-warning):not(.has-danger).md-focus label,
  .form-check:not(.has-success):not(.has-warning):not(.has-danger) .form-control:focus + label {
    color: #3C4252 !important; }
  .form-group input[type=email].form-control,
  .form-group input[type=password].form-control,
  .form-group input[type=text].form-control,
  .form-group input[type=search].form-control,
  .form-group input[type=url].form-control,
  .form-group input[type=tel].form-control,
  .form-group input[type=password].form-control,
  .form-group input[type=number].form-control,
  .form-group input[type=datetime-local].form-control,
  .form-group input[type=date].form-control,
  .form-group input[type=month].form-control,
  .form-group input[type=week].form-control,
  .form-group input[type=time].form-control,
  .form-group textarea.form-control,
  .form-check input[type=email].form-control,
  .form-check input[type=password].form-control,
  .form-check input[type=text].form-control,
  .form-check input[type=search].form-control,
  .form-check input[type=url].form-control,
  .form-check input[type=tel].form-control,
  .form-check input[type=password].form-control,
  .form-check input[type=number].form-control,
  .form-check input[type=datetime-local].form-control,
  .form-check input[type=date].form-control,
  .form-check input[type=month].form-control,
  .form-check input[type=week].form-control,
  .form-check input[type=time].form-control,
  .form-check textarea.form-control {
    padding: 0 0 8px;
    border: none;
    background: none;
    appearance: none; }
    .form-group input[type=email].form-control::placeholder,
    .form-group input[type=password].form-control::placeholder,
    .form-group input[type=text].form-control::placeholder,
    .form-group input[type=search].form-control::placeholder,
    .form-group input[type=url].form-control::placeholder,
    .form-group input[type=tel].form-control::placeholder,
    .form-group input[type=password].form-control::placeholder,
    .form-group input[type=number].form-control::placeholder,
    .form-group input[type=datetime-local].form-control::placeholder,
    .form-group input[type=date].form-control::placeholder,
    .form-group input[type=month].form-control::placeholder,
    .form-group input[type=week].form-control::placeholder,
    .form-group input[type=time].form-control::placeholder,
    .form-group textarea.form-control::placeholder,
    .form-check input[type=email].form-control::placeholder,
    .form-check input[type=password].form-control::placeholder,
    .form-check input[type=text].form-control::placeholder,
    .form-check input[type=search].form-control::placeholder,
    .form-check input[type=url].form-control::placeholder,
    .form-check input[type=tel].form-control::placeholder,
    .form-check input[type=password].form-control::placeholder,
    .form-check input[type=number].form-control::placeholder,
    .form-check input[type=datetime-local].form-control::placeholder,
    .form-check input[type=date].form-control::placeholder,
    .form-check input[type=month].form-control::placeholder,
    .form-check input[type=week].form-control::placeholder,
    .form-check input[type=time].form-control::placeholder,
    .form-check textarea.form-control::placeholder {
      opacity: 0;
      transition: opacity 180ms ease; }
    .form-group input[type=email].form-control:focus + label,
    .form-group input[type=email].form-control.md-has-value + label,
    .form-group input[type=password].form-control:focus + label,
    .form-group input[type=password].form-control.md-has-value + label,
    .form-group input[type=text].form-control:focus + label,
    .form-group input[type=text].form-control.md-has-value + label,
    .form-group input[type=search].form-control:focus + label,
    .form-group input[type=search].form-control.md-has-value + label,
    .form-group input[type=url].form-control:focus + label,
    .form-group input[type=url].form-control.md-has-value + label,
    .form-group input[type=tel].form-control:focus + label,
    .form-group input[type=tel].form-control.md-has-value + label,
    .form-group input[type=password].form-control:focus + label,
    .form-group input[type=password].form-control.md-has-value + label,
    .form-group input[type=number].form-control:focus + label,
    .form-group input[type=number].form-control.md-has-value + label,
    .form-group input[type=datetime-local].form-control:focus + label,
    .form-group input[type=datetime-local].form-control.md-has-value + label,
    .form-group input[type=date].form-control:focus + label,
    .form-group input[type=date].form-control.md-has-value + label,
    .form-group input[type=month].form-control:focus + label,
    .form-group input[type=month].form-control.md-has-value + label,
    .form-group input[type=week].form-control:focus + label,
    .form-group input[type=week].form-control.md-has-value + label,
    .form-group input[type=time].form-control:focus + label,
    .form-group input[type=time].form-control.md-has-value + label,
    .form-group textarea.form-control:focus + label,
    .form-group textarea.form-control.md-has-value + label,
    .form-check input[type=email].form-control:focus + label,
    .form-check input[type=email].form-control.md-has-value + label,
    .form-check input[type=password].form-control:focus + label,
    .form-check input[type=password].form-control.md-has-value + label,
    .form-check input[type=text].form-control:focus + label,
    .form-check input[type=text].form-control.md-has-value + label,
    .form-check input[type=search].form-control:focus + label,
    .form-check input[type=search].form-control.md-has-value + label,
    .form-check input[type=url].form-control:focus + label,
    .form-check input[type=url].form-control.md-has-value + label,
    .form-check input[type=tel].form-control:focus + label,
    .form-check input[type=tel].form-control.md-has-value + label,
    .form-check input[type=password].form-control:focus + label,
    .form-check input[type=password].form-control.md-has-value + label,
    .form-check input[type=number].form-control:focus + label,
    .form-check input[type=number].form-control.md-has-value + label,
    .form-check input[type=datetime-local].form-control:focus + label,
    .form-check input[type=datetime-local].form-control.md-has-value + label,
    .form-check input[type=date].form-control:focus + label,
    .form-check input[type=date].form-control.md-has-value + label,
    .form-check input[type=month].form-control:focus + label,
    .form-check input[type=month].form-control.md-has-value + label,
    .form-check input[type=week].form-control:focus + label,
    .form-check input[type=week].form-control.md-has-value + label,
    .form-check input[type=time].form-control:focus + label,
    .form-check input[type=time].form-control.md-has-value + label,
    .form-check textarea.form-control:focus + label,
    .form-check textarea.form-control.md-has-value + label {
      transform: translateY(-100%) scale(0.75, 0.75);
      cursor: auto; }
    .form-group input[type=email].form-control + label,
    .form-group input[type=password].form-control + label,
    .form-group input[type=text].form-control + label,
    .form-group input[type=search].form-control + label,
    .form-group input[type=url].form-control + label,
    .form-group input[type=tel].form-control + label,
    .form-group input[type=password].form-control + label,
    .form-group input[type=number].form-control + label,
    .form-group input[type=datetime-local].form-control + label,
    .form-group input[type=date].form-control + label,
    .form-group input[type=month].form-control + label,
    .form-group input[type=week].form-control + label,
    .form-group input[type=time].form-control + label,
    .form-group textarea.form-control + label,
    .form-check input[type=email].form-control + label,
    .form-check input[type=password].form-control + label,
    .form-check input[type=text].form-control + label,
    .form-check input[type=search].form-control + label,
    .form-check input[type=url].form-control + label,
    .form-check input[type=tel].form-control + label,
    .form-check input[type=password].form-control + label,
    .form-check input[type=number].form-control + label,
    .form-check input[type=datetime-local].form-control + label,
    .form-check input[type=date].form-control + label,
    .form-check input[type=month].form-control + label,
    .form-check input[type=week].form-control + label,
    .form-check input[type=time].form-control + label,
    .form-check textarea.form-control + label {
      position: absolute;
      top: 16px;
      left: 0;
      -webkit-transform-origin: left top;
      transform: translateY(0) scale(1);
      transform-origin: left top;
      -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), color 180ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), color 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
      cursor: text;
      pointer-events: none;
      margin: 0;
      line-height: normal; }
  .form-group textarea.form-control,
  .form-check textarea.form-control {
    padding: 4px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
    border-radius: 2px; }
    .form-group textarea.form-control:hover,
    .form-check textarea.form-control:hover {
      box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12); }
    .form-group textarea.form-control:focus, .form-group textarea.form-control:focus:hover,
    .form-check textarea.form-control:focus,
    .form-check textarea.form-control:focus:hover {
      box-shadow: inset 0 0 0 2px #3C4252; }
    .form-group textarea.form-control + label,
    .form-check textarea.form-control + label {
      top: 16px;
      left: 0;
      padding: 4px;
      bottom: auto; }
    .form-group textarea.form-control:focus + label,
    .form-check textarea.form-control:focus + label {
      color: #3C4252; }
    .form-group textarea.form-control:focus + label,
    .form-group textarea.form-control.md-has-value + label,
    .form-check textarea.form-control:focus + label,
    .form-check textarea.form-control.md-has-value + label {
      transform: translateY(-100%) scale(0.923, 0.923);
      cursor: auto; }

.form-text {
  color: rgba(0, 0, 0, 0.38);
  width: 100%;
  font-size: 1.3rem; }

.form-inline .form-group {
  min-height: 0; }
  .form-inline .form-group > label {
    justify-content: flex-start;
    width: auto; }

.was-validated .form-control:valid, .form-control.is-valid, .was-validated
.custom-select:valid,
.custom-select.is-valid {
  box-shadow: 0 1px 0 0 #4CAF50; }
  .was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated
  .custom-select:valid:focus,
  .custom-select.is-valid:focus {
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25); }
  .was-validated .form-control:valid ~ .valid-feedback,
  .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
  .form-control.is-valid ~ .valid-tooltip, .was-validated
  .custom-select:valid ~ .valid-feedback,
  .was-validated
  .custom-select:valid ~ .valid-tooltip,
  .custom-select.is-valid ~ .valid-feedback,
  .custom-select.is-valid ~ .valid-tooltip {
    display: block; }

.was-validated .custom-control-input:valid ~ .custom-control-indicator, .custom-control-input.is-valid ~ .custom-control-indicator {
  color: #4caf50; }
  .was-validated .custom-control-input:valid ~ .custom-control-indicator:before, .custom-control-input.is-valid ~ .custom-control-indicator:before {
    border-color: #4CAF50; }

.was-validated .custom-control-input:valid ~ .custom-control-description, .custom-control-input.is-valid ~ .custom-control-description {
  color: #4CAF50; }

.was-validated .custom-file-input:valid ~ .custom-file-control, .custom-file-input.is-valid ~ .custom-file-control {
  box-shadow: 0 1px 0 0 #4CAF50; }
  .was-validated .custom-file-input:valid ~ .custom-file-control::before, .custom-file-input.is-valid ~ .custom-file-control::before {
    border-color: inherit; }

.was-validated .custom-file-input:valid:focus, .custom-file-input.is-valid:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25); }

.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated
.custom-select:invalid,
.custom-select.is-invalid {
  box-shadow: 0 1px 0 0 #F44336; }
  .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated
  .custom-select:invalid:focus,
  .custom-select.is-invalid:focus {
    box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25); }
  .was-validated .form-control:invalid ~ .invalid-feedback,
  .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
  .form-control.is-invalid ~ .invalid-tooltip, .was-validated
  .custom-select:invalid ~ .invalid-feedback,
  .was-validated
  .custom-select:invalid ~ .invalid-tooltip,
  .custom-select.is-invalid ~ .invalid-feedback,
  .custom-select.is-invalid ~ .invalid-tooltip {
    display: block; }

.was-validated .custom-control-input:invalid ~ .custom-control-indicator, .custom-control-input.is-invalid ~ .custom-control-indicator {
  color: #f44336; }
  .was-validated .custom-control-input:invalid ~ .custom-control-indicator:before, .custom-control-input.is-invalid ~ .custom-control-indicator:before {
    border-color: #F44336; }

.was-validated .custom-control-input:invalid ~ .custom-control-description, .custom-control-input.is-invalid ~ .custom-control-description {
  color: #F44336; }

.was-validated .custom-file-input:invalid ~ .custom-file-control, .custom-file-input.is-invalid ~ .custom-file-control {
  box-shadow: 0 1px 0 0 #F44336; }
  .was-validated .custom-file-input:invalid ~ .custom-file-control::before, .custom-file-input.is-invalid ~ .custom-file-control::before {
    border-color: inherit; }

.was-validated .custom-file-input:invalid:focus, .custom-file-input.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25); }

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

.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: "\ED8E"; }

.dropdown-item {
  line-height: 4.8rem;
  height: 4.8rem;
  text-decoration: none; }

.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); }
  .pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
    padding-left: 1.6rem;
    padding-right: 1.6rem; }

.badge {
  color: white;
  text-decoration: none; }

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

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

.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-transform: uppercase;
  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: 1.2rem 1.6rem; }

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

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

@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; }

.nav {
  padding: 0; }
  .nav .subheader {
    height: 5.6rem;
    min-height: 5.6rem;
    color: #868E96;
    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; }

.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: "\EA94";
    transition: transform .3s ease-in-out, opacity .25s ease-in-out .1s, -webkit-transform .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: #868E96;
  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; }

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

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

.table th,
.table td {
  padding: 1.6rem 1.2rem;
  vertical-align: middle; }

.table thead th {
  border-bottom: 1px solid #E9ECEF;
  font-weight: 500; }

.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-pink-50 {
  background-color: #FCE4EC !important; }
  .bg-pink-50.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-pink-50.text-auto {
  background-color: #FCE4EC !important; }

.text-pink-50 {
  color: #FCE4EC !important; }

.border-pink-50 {
  border-color: #FCE4EC !important; }

.border-top-pink-50 {
  border-top-color: #FCE4EC !important; }

.border-right-pink-50 {
  border-right-color: #FCE4EC !important; }

.border-bottom-pink-50 {
  border-bottom-color: #FCE4EC !important; }

.border-left-pink-50 {
  border-left-color: #FCE4EC !important; }

.bg-pink-100 {
  background-color: #F8BBD0 !important; }
  .bg-pink-100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-pink-100.text-auto {
  background-color: #F8BBD0 !important; }

.text-pink-100 {
  color: #F8BBD0 !important; }

.border-pink-100 {
  border-color: #F8BBD0 !important; }

.border-top-pink-100 {
  border-top-color: #F8BBD0 !important; }

.border-right-pink-100 {
  border-right-color: #F8BBD0 !important; }

.border-bottom-pink-100 {
  border-bottom-color: #F8BBD0 !important; }

.border-left-pink-100 {
  border-left-color: #F8BBD0 !important; }

.bg-pink-200 {
  background-color: #F48FB1 !important; }
  .bg-pink-200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-pink-200.text-auto {
  background-color: #F48FB1 !important; }

.text-pink-200 {
  color: #F48FB1 !important; }

.border-pink-200 {
  border-color: #F48FB1 !important; }

.border-top-pink-200 {
  border-top-color: #F48FB1 !important; }

.border-right-pink-200 {
  border-right-color: #F48FB1 !important; }

.border-bottom-pink-200 {
  border-bottom-color: #F48FB1 !important; }

.border-left-pink-200 {
  border-left-color: #F48FB1 !important; }

.bg-pink-300 {
  background-color: #F06292 !important; }
  .bg-pink-300.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-pink-300.text-auto {
  background-color: #F06292 !important; }

.text-pink-300 {
  color: #F06292 !important; }

.border-pink-300 {
  border-color: #F06292 !important; }

.border-top-pink-300 {
  border-top-color: #F06292 !important; }

.border-right-pink-300 {
  border-right-color: #F06292 !important; }

.border-bottom-pink-300 {
  border-bottom-color: #F06292 !important; }

.border-left-pink-300 {
  border-left-color: #F06292 !important; }

.bg-pink-400 {
  background-color: #EC407A !important; }
  .bg-pink-400.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-pink-400.text-auto {
  background-color: #EC407A !important; }

.text-pink-400 {
  color: #EC407A !important; }

.border-pink-400 {
  border-color: #EC407A !important; }

.border-top-pink-400 {
  border-top-color: #EC407A !important; }

.border-right-pink-400 {
  border-right-color: #EC407A !important; }

.border-bottom-pink-400 {
  border-bottom-color: #EC407A !important; }

.border-left-pink-400 {
  border-left-color: #EC407A !important; }

.bg-pink-500 {
  background-color: #E91E63 !important; }
  .bg-pink-500.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-pink-500.text-auto {
  background-color: #E91E63 !important; }

.text-pink-500 {
  color: #E91E63 !important; }

.border-pink-500 {
  border-color: #E91E63 !important; }

.border-top-pink-500 {
  border-top-color: #E91E63 !important; }

.border-right-pink-500 {
  border-right-color: #E91E63 !important; }

.border-bottom-pink-500 {
  border-bottom-color: #E91E63 !important; }

.border-left-pink-500 {
  border-left-color: #E91E63 !important; }

.bg-pink.text-auto {
  background-color: #E91E63 !important; }

.bg-pink {
  background-color: #E91E63 !important; }
  .bg-pink.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.text-pink {
  color: #E91E63 !important; }

.border-pink {
  border-color: #E91E63 !important; }

.border-top-pink {
  border-top-color: #E91E63 !important; }

.border-right-pink {
  border-right-color: #E91E63 !important; }

.border-bottom-pink {
  border-bottom-color: #E91E63 !important; }

.border-left-pink {
  border-left-color: #E91E63 !important; }

.bg-pink-600 {
  background-color: #D81B60 !important; }
  .bg-pink-600.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-pink-600.text-auto {
  background-color: #D81B60 !important; }

.text-pink-600 {
  color: #D81B60 !important; }

.border-pink-600 {
  border-color: #D81B60 !important; }

.border-top-pink-600 {
  border-top-color: #D81B60 !important; }

.border-right-pink-600 {
  border-right-color: #D81B60 !important; }

.border-bottom-pink-600 {
  border-bottom-color: #D81B60 !important; }

.border-left-pink-600 {
  border-left-color: #D81B60 !important; }

.bg-pink-700 {
  background-color: #C2185B !important; }
  .bg-pink-700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-pink-700.text-auto {
  background-color: #C2185B !important; }

.text-pink-700 {
  color: #C2185B !important; }

.border-pink-700 {
  border-color: #C2185B !important; }

.border-top-pink-700 {
  border-top-color: #C2185B !important; }

.border-right-pink-700 {
  border-right-color: #C2185B !important; }

.border-bottom-pink-700 {
  border-bottom-color: #C2185B !important; }

.border-left-pink-700 {
  border-left-color: #C2185B !important; }

.bg-pink-800 {
  background-color: #AD1457 !important; }
  .bg-pink-800.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-pink-800.text-auto {
  background-color: #AD1457 !important; }

.text-pink-800 {
  color: #AD1457 !important; }

.border-pink-800 {
  border-color: #AD1457 !important; }

.border-top-pink-800 {
  border-top-color: #AD1457 !important; }

.border-right-pink-800 {
  border-right-color: #AD1457 !important; }

.border-bottom-pink-800 {
  border-bottom-color: #AD1457 !important; }

.border-left-pink-800 {
  border-left-color: #AD1457 !important; }

.bg-pink-900 {
  background-color: #880E4F !important; }
  .bg-pink-900.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-pink-900.text-auto {
  background-color: #880E4F !important; }

.text-pink-900 {
  color: #880E4F !important; }

.border-pink-900 {
  border-color: #880E4F !important; }

.border-top-pink-900 {
  border-top-color: #880E4F !important; }

.border-right-pink-900 {
  border-right-color: #880E4F !important; }

.border-bottom-pink-900 {
  border-bottom-color: #880E4F !important; }

.border-left-pink-900 {
  border-left-color: #880E4F !important; }

.bg-pink-A100 {
  background-color: #FF80AB !important; }
  .bg-pink-A100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-pink-A100.text-auto {
  background-color: #FF80AB !important; }

.text-pink-A100 {
  color: #FF80AB !important; }

.border-pink-A100 {
  border-color: #FF80AB !important; }

.border-top-pink-A100 {
  border-top-color: #FF80AB !important; }

.border-right-pink-A100 {
  border-right-color: #FF80AB !important; }

.border-bottom-pink-A100 {
  border-bottom-color: #FF80AB !important; }

.border-left-pink-A100 {
  border-left-color: #FF80AB !important; }

.bg-pink-A200 {
  background-color: #FF4081 !important; }
  .bg-pink-A200.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-pink-A200.text-auto {
  background-color: #FF4081 !important; }

.text-pink-A200 {
  color: #FF4081 !important; }

.border-pink-A200 {
  border-color: #FF4081 !important; }

.border-top-pink-A200 {
  border-top-color: #FF4081 !important; }

.border-right-pink-A200 {
  border-right-color: #FF4081 !important; }

.border-bottom-pink-A200 {
  border-bottom-color: #FF4081 !important; }

.border-left-pink-A200 {
  border-left-color: #FF4081 !important; }

.bg-pink-A400 {
  background-color: #F50057 !important; }
  .bg-pink-A400.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-pink-A400.text-auto {
  background-color: #F50057 !important; }

.text-pink-A400 {
  color: #F50057 !important; }

.border-pink-A400 {
  border-color: #F50057 !important; }

.border-top-pink-A400 {
  border-top-color: #F50057 !important; }

.border-right-pink-A400 {
  border-right-color: #F50057 !important; }

.border-bottom-pink-A400 {
  border-bottom-color: #F50057 !important; }

.border-left-pink-A400 {
  border-left-color: #F50057 !important; }

.bg-pink-A700 {
  background-color: #C51162 !important; }
  .bg-pink-A700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-pink-A700.text-auto {
  background-color: #C51162 !important; }

.text-pink-A700 {
  color: #C51162 !important; }

.border-pink-A700 {
  border-color: #C51162 !important; }

.border-top-pink-A700 {
  border-top-color: #C51162 !important; }

.border-right-pink-A700 {
  border-right-color: #C51162 !important; }

.border-bottom-pink-A700 {
  border-bottom-color: #C51162 !important; }

.border-left-pink-A700 {
  border-left-color: #C51162 !important; }

.bg-purple-50 {
  background-color: #F3E5F5 !important; }
  .bg-purple-50.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-purple-50.text-auto {
  background-color: #F3E5F5 !important; }

.text-purple-50 {
  color: #F3E5F5 !important; }

.border-purple-50 {
  border-color: #F3E5F5 !important; }

.border-top-purple-50 {
  border-top-color: #F3E5F5 !important; }

.border-right-purple-50 {
  border-right-color: #F3E5F5 !important; }

.border-bottom-purple-50 {
  border-bottom-color: #F3E5F5 !important; }

.border-left-purple-50 {
  border-left-color: #F3E5F5 !important; }

.bg-purple-100 {
  background-color: #E1BEE7 !important; }
  .bg-purple-100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-purple-100.text-auto {
  background-color: #E1BEE7 !important; }

.text-purple-100 {
  color: #E1BEE7 !important; }

.border-purple-100 {
  border-color: #E1BEE7 !important; }

.border-top-purple-100 {
  border-top-color: #E1BEE7 !important; }

.border-right-purple-100 {
  border-right-color: #E1BEE7 !important; }

.border-bottom-purple-100 {
  border-bottom-color: #E1BEE7 !important; }

.border-left-purple-100 {
  border-left-color: #E1BEE7 !important; }

.bg-purple-200 {
  background-color: #CE93D8 !important; }
  .bg-purple-200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-purple-200.text-auto {
  background-color: #CE93D8 !important; }

.text-purple-200 {
  color: #CE93D8 !important; }

.border-purple-200 {
  border-color: #CE93D8 !important; }

.border-top-purple-200 {
  border-top-color: #CE93D8 !important; }

.border-right-purple-200 {
  border-right-color: #CE93D8 !important; }

.border-bottom-purple-200 {
  border-bottom-color: #CE93D8 !important; }

.border-left-purple-200 {
  border-left-color: #CE93D8 !important; }

.bg-purple-300 {
  background-color: #BA68C8 !important; }
  .bg-purple-300.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-purple-300.text-auto {
  background-color: #BA68C8 !important; }

.text-purple-300 {
  color: #BA68C8 !important; }

.border-purple-300 {
  border-color: #BA68C8 !important; }

.border-top-purple-300 {
  border-top-color: #BA68C8 !important; }

.border-right-purple-300 {
  border-right-color: #BA68C8 !important; }

.border-bottom-purple-300 {
  border-bottom-color: #BA68C8 !important; }

.border-left-purple-300 {
  border-left-color: #BA68C8 !important; }

.bg-purple-400 {
  background-color: #AB47BC !important; }
  .bg-purple-400.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-purple-400.text-auto {
  background-color: #AB47BC !important; }

.text-purple-400 {
  color: #AB47BC !important; }

.border-purple-400 {
  border-color: #AB47BC !important; }

.border-top-purple-400 {
  border-top-color: #AB47BC !important; }

.border-right-purple-400 {
  border-right-color: #AB47BC !important; }

.border-bottom-purple-400 {
  border-bottom-color: #AB47BC !important; }

.border-left-purple-400 {
  border-left-color: #AB47BC !important; }

.bg-purple-500 {
  background-color: #9C27B0 !important; }
  .bg-purple-500.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-purple-500.text-auto {
  background-color: #9C27B0 !important; }

.text-purple-500 {
  color: #9C27B0 !important; }

.border-purple-500 {
  border-color: #9C27B0 !important; }

.border-top-purple-500 {
  border-top-color: #9C27B0 !important; }

.border-right-purple-500 {
  border-right-color: #9C27B0 !important; }

.border-bottom-purple-500 {
  border-bottom-color: #9C27B0 !important; }

.border-left-purple-500 {
  border-left-color: #9C27B0 !important; }

.bg-purple.text-auto {
  background-color: #9C27B0 !important; }

.bg-purple {
  background-color: #9C27B0 !important; }
  .bg-purple.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.text-purple {
  color: #9C27B0 !important; }

.border-purple {
  border-color: #9C27B0 !important; }

.border-top-purple {
  border-top-color: #9C27B0 !important; }

.border-right-purple {
  border-right-color: #9C27B0 !important; }

.border-bottom-purple {
  border-bottom-color: #9C27B0 !important; }

.border-left-purple {
  border-left-color: #9C27B0 !important; }

.bg-purple-600 {
  background-color: #8E24AA !important; }
  .bg-purple-600.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-purple-600.text-auto {
  background-color: #8E24AA !important; }

.text-purple-600 {
  color: #8E24AA !important; }

.border-purple-600 {
  border-color: #8E24AA !important; }

.border-top-purple-600 {
  border-top-color: #8E24AA !important; }

.border-right-purple-600 {
  border-right-color: #8E24AA !important; }

.border-bottom-purple-600 {
  border-bottom-color: #8E24AA !important; }

.border-left-purple-600 {
  border-left-color: #8E24AA !important; }

.bg-purple-700 {
  background-color: #7B1FA2 !important; }
  .bg-purple-700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-purple-700.text-auto {
  background-color: #7B1FA2 !important; }

.text-purple-700 {
  color: #7B1FA2 !important; }

.border-purple-700 {
  border-color: #7B1FA2 !important; }

.border-top-purple-700 {
  border-top-color: #7B1FA2 !important; }

.border-right-purple-700 {
  border-right-color: #7B1FA2 !important; }

.border-bottom-purple-700 {
  border-bottom-color: #7B1FA2 !important; }

.border-left-purple-700 {
  border-left-color: #7B1FA2 !important; }

.bg-purple-800 {
  background-color: #6A1B9A !important; }
  .bg-purple-800.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-purple-800.text-auto {
  background-color: #6A1B9A !important; }

.text-purple-800 {
  color: #6A1B9A !important; }

.border-purple-800 {
  border-color: #6A1B9A !important; }

.border-top-purple-800 {
  border-top-color: #6A1B9A !important; }

.border-right-purple-800 {
  border-right-color: #6A1B9A !important; }

.border-bottom-purple-800 {
  border-bottom-color: #6A1B9A !important; }

.border-left-purple-800 {
  border-left-color: #6A1B9A !important; }

.bg-purple-900 {
  background-color: #4A148C !important; }
  .bg-purple-900.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-purple-900.text-auto {
  background-color: #4A148C !important; }

.text-purple-900 {
  color: #4A148C !important; }

.border-purple-900 {
  border-color: #4A148C !important; }

.border-top-purple-900 {
  border-top-color: #4A148C !important; }

.border-right-purple-900 {
  border-right-color: #4A148C !important; }

.border-bottom-purple-900 {
  border-bottom-color: #4A148C !important; }

.border-left-purple-900 {
  border-left-color: #4A148C !important; }

.bg-purple-A100 {
  background-color: #EA80FC !important; }
  .bg-purple-A100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-purple-A100.text-auto {
  background-color: #EA80FC !important; }

.text-purple-A100 {
  color: #EA80FC !important; }

.border-purple-A100 {
  border-color: #EA80FC !important; }

.border-top-purple-A100 {
  border-top-color: #EA80FC !important; }

.border-right-purple-A100 {
  border-right-color: #EA80FC !important; }

.border-bottom-purple-A100 {
  border-bottom-color: #EA80FC !important; }

.border-left-purple-A100 {
  border-left-color: #EA80FC !important; }

.bg-purple-A200 {
  background-color: #E040FB !important; }
  .bg-purple-A200.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-purple-A200.text-auto {
  background-color: #E040FB !important; }

.text-purple-A200 {
  color: #E040FB !important; }

.border-purple-A200 {
  border-color: #E040FB !important; }

.border-top-purple-A200 {
  border-top-color: #E040FB !important; }

.border-right-purple-A200 {
  border-right-color: #E040FB !important; }

.border-bottom-purple-A200 {
  border-bottom-color: #E040FB !important; }

.border-left-purple-A200 {
  border-left-color: #E040FB !important; }

.bg-purple-A400 {
  background-color: #D500F9 !important; }
  .bg-purple-A400.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-purple-A400.text-auto {
  background-color: #D500F9 !important; }

.text-purple-A400 {
  color: #D500F9 !important; }

.border-purple-A400 {
  border-color: #D500F9 !important; }

.border-top-purple-A400 {
  border-top-color: #D500F9 !important; }

.border-right-purple-A400 {
  border-right-color: #D500F9 !important; }

.border-bottom-purple-A400 {
  border-bottom-color: #D500F9 !important; }

.border-left-purple-A400 {
  border-left-color: #D500F9 !important; }

.bg-purple-A700 {
  background-color: #AA00FF !important; }
  .bg-purple-A700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-purple-A700.text-auto {
  background-color: #AA00FF !important; }

.text-purple-A700 {
  color: #AA00FF !important; }

.border-purple-A700 {
  border-color: #AA00FF !important; }

.border-top-purple-A700 {
  border-top-color: #AA00FF !important; }

.border-right-purple-A700 {
  border-right-color: #AA00FF !important; }

.border-bottom-purple-A700 {
  border-bottom-color: #AA00FF !important; }

.border-left-purple-A700 {
  border-left-color: #AA00FF !important; }

.bg-deep-purple-50 {
  background-color: #EDE7F6 !important; }
  .bg-deep-purple-50.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-deep-purple-50.text-auto {
  background-color: #EDE7F6 !important; }

.text-deep-purple-50 {
  color: #EDE7F6 !important; }

.border-deep-purple-50 {
  border-color: #EDE7F6 !important; }

.border-top-deep-purple-50 {
  border-top-color: #EDE7F6 !important; }

.border-right-deep-purple-50 {
  border-right-color: #EDE7F6 !important; }

.border-bottom-deep-purple-50 {
  border-bottom-color: #EDE7F6 !important; }

.border-left-deep-purple-50 {
  border-left-color: #EDE7F6 !important; }

.bg-deep-purple-100 {
  background-color: #D1C4E9 !important; }
  .bg-deep-purple-100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-deep-purple-100.text-auto {
  background-color: #D1C4E9 !important; }

.text-deep-purple-100 {
  color: #D1C4E9 !important; }

.border-deep-purple-100 {
  border-color: #D1C4E9 !important; }

.border-top-deep-purple-100 {
  border-top-color: #D1C4E9 !important; }

.border-right-deep-purple-100 {
  border-right-color: #D1C4E9 !important; }

.border-bottom-deep-purple-100 {
  border-bottom-color: #D1C4E9 !important; }

.border-left-deep-purple-100 {
  border-left-color: #D1C4E9 !important; }

.bg-deep-purple-200 {
  background-color: #B39DDB !important; }
  .bg-deep-purple-200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-deep-purple-200.text-auto {
  background-color: #B39DDB !important; }

.text-deep-purple-200 {
  color: #B39DDB !important; }

.border-deep-purple-200 {
  border-color: #B39DDB !important; }

.border-top-deep-purple-200 {
  border-top-color: #B39DDB !important; }

.border-right-deep-purple-200 {
  border-right-color: #B39DDB !important; }

.border-bottom-deep-purple-200 {
  border-bottom-color: #B39DDB !important; }

.border-left-deep-purple-200 {
  border-left-color: #B39DDB !important; }

.bg-deep-purple-300 {
  background-color: #9575CD !important; }
  .bg-deep-purple-300.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-purple-300.text-auto {
  background-color: #9575CD !important; }

.text-deep-purple-300 {
  color: #9575CD !important; }

.border-deep-purple-300 {
  border-color: #9575CD !important; }

.border-top-deep-purple-300 {
  border-top-color: #9575CD !important; }

.border-right-deep-purple-300 {
  border-right-color: #9575CD !important; }

.border-bottom-deep-purple-300 {
  border-bottom-color: #9575CD !important; }

.border-left-deep-purple-300 {
  border-left-color: #9575CD !important; }

.bg-deep-purple-400 {
  background-color: #7E57C2 !important; }
  .bg-deep-purple-400.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-purple-400.text-auto {
  background-color: #7E57C2 !important; }

.text-deep-purple-400 {
  color: #7E57C2 !important; }

.border-deep-purple-400 {
  border-color: #7E57C2 !important; }

.border-top-deep-purple-400 {
  border-top-color: #7E57C2 !important; }

.border-right-deep-purple-400 {
  border-right-color: #7E57C2 !important; }

.border-bottom-deep-purple-400 {
  border-bottom-color: #7E57C2 !important; }

.border-left-deep-purple-400 {
  border-left-color: #7E57C2 !important; }

.bg-deep-purple-500 {
  background-color: #673AB7 !important; }
  .bg-deep-purple-500.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-purple-500.text-auto {
  background-color: #673AB7 !important; }

.text-deep-purple-500 {
  color: #673AB7 !important; }

.border-deep-purple-500 {
  border-color: #673AB7 !important; }

.border-top-deep-purple-500 {
  border-top-color: #673AB7 !important; }

.border-right-deep-purple-500 {
  border-right-color: #673AB7 !important; }

.border-bottom-deep-purple-500 {
  border-bottom-color: #673AB7 !important; }

.border-left-deep-purple-500 {
  border-left-color: #673AB7 !important; }

.bg-deep-purple.text-auto {
  background-color: #673AB7 !important; }

.bg-deep-purple {
  background-color: #673AB7 !important; }
  .bg-deep-purple.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.text-deep-purple {
  color: #673AB7 !important; }

.border-deep-purple {
  border-color: #673AB7 !important; }

.border-top-deep-purple {
  border-top-color: #673AB7 !important; }

.border-right-deep-purple {
  border-right-color: #673AB7 !important; }

.border-bottom-deep-purple {
  border-bottom-color: #673AB7 !important; }

.border-left-deep-purple {
  border-left-color: #673AB7 !important; }

.bg-deep-purple-600 {
  background-color: #5E35B1 !important; }
  .bg-deep-purple-600.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-purple-600.text-auto {
  background-color: #5E35B1 !important; }

.text-deep-purple-600 {
  color: #5E35B1 !important; }

.border-deep-purple-600 {
  border-color: #5E35B1 !important; }

.border-top-deep-purple-600 {
  border-top-color: #5E35B1 !important; }

.border-right-deep-purple-600 {
  border-right-color: #5E35B1 !important; }

.border-bottom-deep-purple-600 {
  border-bottom-color: #5E35B1 !important; }

.border-left-deep-purple-600 {
  border-left-color: #5E35B1 !important; }

.bg-deep-purple-700 {
  background-color: #512DA8 !important; }
  .bg-deep-purple-700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-purple-700.text-auto {
  background-color: #512DA8 !important; }

.text-deep-purple-700 {
  color: #512DA8 !important; }

.border-deep-purple-700 {
  border-color: #512DA8 !important; }

.border-top-deep-purple-700 {
  border-top-color: #512DA8 !important; }

.border-right-deep-purple-700 {
  border-right-color: #512DA8 !important; }

.border-bottom-deep-purple-700 {
  border-bottom-color: #512DA8 !important; }

.border-left-deep-purple-700 {
  border-left-color: #512DA8 !important; }

.bg-deep-purple-800 {
  background-color: #4527A0 !important; }
  .bg-deep-purple-800.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-purple-800.text-auto {
  background-color: #4527A0 !important; }

.text-deep-purple-800 {
  color: #4527A0 !important; }

.border-deep-purple-800 {
  border-color: #4527A0 !important; }

.border-top-deep-purple-800 {
  border-top-color: #4527A0 !important; }

.border-right-deep-purple-800 {
  border-right-color: #4527A0 !important; }

.border-bottom-deep-purple-800 {
  border-bottom-color: #4527A0 !important; }

.border-left-deep-purple-800 {
  border-left-color: #4527A0 !important; }

.bg-deep-purple-900 {
  background-color: #311B92 !important; }
  .bg-deep-purple-900.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-purple-900.text-auto {
  background-color: #311B92 !important; }

.text-deep-purple-900 {
  color: #311B92 !important; }

.border-deep-purple-900 {
  border-color: #311B92 !important; }

.border-top-deep-purple-900 {
  border-top-color: #311B92 !important; }

.border-right-deep-purple-900 {
  border-right-color: #311B92 !important; }

.border-bottom-deep-purple-900 {
  border-bottom-color: #311B92 !important; }

.border-left-deep-purple-900 {
  border-left-color: #311B92 !important; }

.bg-deep-purple-A100 {
  background-color: #B388FF !important; }
  .bg-deep-purple-A100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-deep-purple-A100.text-auto {
  background-color: #B388FF !important; }

.text-deep-purple-A100 {
  color: #B388FF !important; }

.border-deep-purple-A100 {
  border-color: #B388FF !important; }

.border-top-deep-purple-A100 {
  border-top-color: #B388FF !important; }

.border-right-deep-purple-A100 {
  border-right-color: #B388FF !important; }

.border-bottom-deep-purple-A100 {
  border-bottom-color: #B388FF !important; }

.border-left-deep-purple-A100 {
  border-left-color: #B388FF !important; }

.bg-deep-purple-A200 {
  background-color: #7C4DFF !important; }
  .bg-deep-purple-A200.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-purple-A200.text-auto {
  background-color: #7C4DFF !important; }

.text-deep-purple-A200 {
  color: #7C4DFF !important; }

.border-deep-purple-A200 {
  border-color: #7C4DFF !important; }

.border-top-deep-purple-A200 {
  border-top-color: #7C4DFF !important; }

.border-right-deep-purple-A200 {
  border-right-color: #7C4DFF !important; }

.border-bottom-deep-purple-A200 {
  border-bottom-color: #7C4DFF !important; }

.border-left-deep-purple-A200 {
  border-left-color: #7C4DFF !important; }

.bg-deep-purple-A400 {
  background-color: #651FFF !important; }
  .bg-deep-purple-A400.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-purple-A400.text-auto {
  background-color: #651FFF !important; }

.text-deep-purple-A400 {
  color: #651FFF !important; }

.border-deep-purple-A400 {
  border-color: #651FFF !important; }

.border-top-deep-purple-A400 {
  border-top-color: #651FFF !important; }

.border-right-deep-purple-A400 {
  border-right-color: #651FFF !important; }

.border-bottom-deep-purple-A400 {
  border-bottom-color: #651FFF !important; }

.border-left-deep-purple-A400 {
  border-left-color: #651FFF !important; }

.bg-deep-purple-A700 {
  background-color: #6200EA !important; }
  .bg-deep-purple-A700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-purple-A700.text-auto {
  background-color: #6200EA !important; }

.text-deep-purple-A700 {
  color: #6200EA !important; }

.border-deep-purple-A700 {
  border-color: #6200EA !important; }

.border-top-deep-purple-A700 {
  border-top-color: #6200EA !important; }

.border-right-deep-purple-A700 {
  border-right-color: #6200EA !important; }

.border-bottom-deep-purple-A700 {
  border-bottom-color: #6200EA !important; }

.border-left-deep-purple-A700 {
  border-left-color: #6200EA !important; }

.bg-indigo-50 {
  background-color: #E8EAF6 !important; }
  .bg-indigo-50.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-indigo-50.text-auto {
  background-color: #E8EAF6 !important; }

.text-indigo-50 {
  color: #E8EAF6 !important; }

.border-indigo-50 {
  border-color: #E8EAF6 !important; }

.border-top-indigo-50 {
  border-top-color: #E8EAF6 !important; }

.border-right-indigo-50 {
  border-right-color: #E8EAF6 !important; }

.border-bottom-indigo-50 {
  border-bottom-color: #E8EAF6 !important; }

.border-left-indigo-50 {
  border-left-color: #E8EAF6 !important; }

.bg-indigo-100 {
  background-color: #C5CAE9 !important; }
  .bg-indigo-100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-indigo-100.text-auto {
  background-color: #C5CAE9 !important; }

.text-indigo-100 {
  color: #C5CAE9 !important; }

.border-indigo-100 {
  border-color: #C5CAE9 !important; }

.border-top-indigo-100 {
  border-top-color: #C5CAE9 !important; }

.border-right-indigo-100 {
  border-right-color: #C5CAE9 !important; }

.border-bottom-indigo-100 {
  border-bottom-color: #C5CAE9 !important; }

.border-left-indigo-100 {
  border-left-color: #C5CAE9 !important; }

.bg-indigo-200 {
  background-color: #9FA8DA !important; }
  .bg-indigo-200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-indigo-200.text-auto {
  background-color: #9FA8DA !important; }

.text-indigo-200 {
  color: #9FA8DA !important; }

.border-indigo-200 {
  border-color: #9FA8DA !important; }

.border-top-indigo-200 {
  border-top-color: #9FA8DA !important; }

.border-right-indigo-200 {
  border-right-color: #9FA8DA !important; }

.border-bottom-indigo-200 {
  border-bottom-color: #9FA8DA !important; }

.border-left-indigo-200 {
  border-left-color: #9FA8DA !important; }

.bg-indigo-300 {
  background-color: #7986CB !important; }
  .bg-indigo-300.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-indigo-300.text-auto {
  background-color: #7986CB !important; }

.text-indigo-300 {
  color: #7986CB !important; }

.border-indigo-300 {
  border-color: #7986CB !important; }

.border-top-indigo-300 {
  border-top-color: #7986CB !important; }

.border-right-indigo-300 {
  border-right-color: #7986CB !important; }

.border-bottom-indigo-300 {
  border-bottom-color: #7986CB !important; }

.border-left-indigo-300 {
  border-left-color: #7986CB !important; }

.bg-indigo-400 {
  background-color: #5C6BC0 !important; }
  .bg-indigo-400.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-indigo-400.text-auto {
  background-color: #5C6BC0 !important; }

.text-indigo-400 {
  color: #5C6BC0 !important; }

.border-indigo-400 {
  border-color: #5C6BC0 !important; }

.border-top-indigo-400 {
  border-top-color: #5C6BC0 !important; }

.border-right-indigo-400 {
  border-right-color: #5C6BC0 !important; }

.border-bottom-indigo-400 {
  border-bottom-color: #5C6BC0 !important; }

.border-left-indigo-400 {
  border-left-color: #5C6BC0 !important; }

.bg-indigo-500 {
  background-color: #3F51B5 !important; }
  .bg-indigo-500.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-indigo-500.text-auto {
  background-color: #3F51B5 !important; }

.text-indigo-500 {
  color: #3F51B5 !important; }

.border-indigo-500 {
  border-color: #3F51B5 !important; }

.border-top-indigo-500 {
  border-top-color: #3F51B5 !important; }

.border-right-indigo-500 {
  border-right-color: #3F51B5 !important; }

.border-bottom-indigo-500 {
  border-bottom-color: #3F51B5 !important; }

.border-left-indigo-500 {
  border-left-color: #3F51B5 !important; }

.bg-indigo.text-auto {
  background-color: #3F51B5 !important; }

.bg-indigo {
  background-color: #3F51B5 !important; }
  .bg-indigo.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.text-indigo {
  color: #3F51B5 !important; }

.border-indigo {
  border-color: #3F51B5 !important; }

.border-top-indigo {
  border-top-color: #3F51B5 !important; }

.border-right-indigo {
  border-right-color: #3F51B5 !important; }

.border-bottom-indigo {
  border-bottom-color: #3F51B5 !important; }

.border-left-indigo {
  border-left-color: #3F51B5 !important; }

.bg-indigo-600 {
  background-color: #3949AB !important; }
  .bg-indigo-600.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-indigo-600.text-auto {
  background-color: #3949AB !important; }

.text-indigo-600 {
  color: #3949AB !important; }

.border-indigo-600 {
  border-color: #3949AB !important; }

.border-top-indigo-600 {
  border-top-color: #3949AB !important; }

.border-right-indigo-600 {
  border-right-color: #3949AB !important; }

.border-bottom-indigo-600 {
  border-bottom-color: #3949AB !important; }

.border-left-indigo-600 {
  border-left-color: #3949AB !important; }

.bg-indigo-700 {
  background-color: #303F9F !important; }
  .bg-indigo-700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-indigo-700.text-auto {
  background-color: #303F9F !important; }

.text-indigo-700 {
  color: #303F9F !important; }

.border-indigo-700 {
  border-color: #303F9F !important; }

.border-top-indigo-700 {
  border-top-color: #303F9F !important; }

.border-right-indigo-700 {
  border-right-color: #303F9F !important; }

.border-bottom-indigo-700 {
  border-bottom-color: #303F9F !important; }

.border-left-indigo-700 {
  border-left-color: #303F9F !important; }

.bg-indigo-800 {
  background-color: #283593 !important; }
  .bg-indigo-800.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-indigo-800.text-auto {
  background-color: #283593 !important; }

.text-indigo-800 {
  color: #283593 !important; }

.border-indigo-800 {
  border-color: #283593 !important; }

.border-top-indigo-800 {
  border-top-color: #283593 !important; }

.border-right-indigo-800 {
  border-right-color: #283593 !important; }

.border-bottom-indigo-800 {
  border-bottom-color: #283593 !important; }

.border-left-indigo-800 {
  border-left-color: #283593 !important; }

.bg-indigo-900 {
  background-color: #1A237E !important; }
  .bg-indigo-900.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-indigo-900.text-auto {
  background-color: #1A237E !important; }

.text-indigo-900 {
  color: #1A237E !important; }

.border-indigo-900 {
  border-color: #1A237E !important; }

.border-top-indigo-900 {
  border-top-color: #1A237E !important; }

.border-right-indigo-900 {
  border-right-color: #1A237E !important; }

.border-bottom-indigo-900 {
  border-bottom-color: #1A237E !important; }

.border-left-indigo-900 {
  border-left-color: #1A237E !important; }

.bg-indigo-A100 {
  background-color: #8C9EFF !important; }
  .bg-indigo-A100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-indigo-A100.text-auto {
  background-color: #8C9EFF !important; }

.text-indigo-A100 {
  color: #8C9EFF !important; }

.border-indigo-A100 {
  border-color: #8C9EFF !important; }

.border-top-indigo-A100 {
  border-top-color: #8C9EFF !important; }

.border-right-indigo-A100 {
  border-right-color: #8C9EFF !important; }

.border-bottom-indigo-A100 {
  border-bottom-color: #8C9EFF !important; }

.border-left-indigo-A100 {
  border-left-color: #8C9EFF !important; }

.bg-indigo-A200 {
  background-color: #536DFE !important; }
  .bg-indigo-A200.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-indigo-A200.text-auto {
  background-color: #536DFE !important; }

.text-indigo-A200 {
  color: #536DFE !important; }

.border-indigo-A200 {
  border-color: #536DFE !important; }

.border-top-indigo-A200 {
  border-top-color: #536DFE !important; }

.border-right-indigo-A200 {
  border-right-color: #536DFE !important; }

.border-bottom-indigo-A200 {
  border-bottom-color: #536DFE !important; }

.border-left-indigo-A200 {
  border-left-color: #536DFE !important; }

.bg-indigo-A400 {
  background-color: #3D5AFE !important; }
  .bg-indigo-A400.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-indigo-A400.text-auto {
  background-color: #3D5AFE !important; }

.text-indigo-A400 {
  color: #3D5AFE !important; }

.border-indigo-A400 {
  border-color: #3D5AFE !important; }

.border-top-indigo-A400 {
  border-top-color: #3D5AFE !important; }

.border-right-indigo-A400 {
  border-right-color: #3D5AFE !important; }

.border-bottom-indigo-A400 {
  border-bottom-color: #3D5AFE !important; }

.border-left-indigo-A400 {
  border-left-color: #3D5AFE !important; }

.bg-indigo-A700 {
  background-color: #304FFE !important; }
  .bg-indigo-A700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-indigo-A700.text-auto {
  background-color: #304FFE !important; }

.text-indigo-A700 {
  color: #304FFE !important; }

.border-indigo-A700 {
  border-color: #304FFE !important; }

.border-top-indigo-A700 {
  border-top-color: #304FFE !important; }

.border-right-indigo-A700 {
  border-right-color: #304FFE !important; }

.border-bottom-indigo-A700 {
  border-bottom-color: #304FFE !important; }

.border-left-indigo-A700 {
  border-left-color: #304FFE !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-light-blue-50 {
  background-color: #E1F5FE !important; }
  .bg-light-blue-50.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-blue-50.text-auto {
  background-color: #E1F5FE !important; }

.text-light-blue-50 {
  color: #E1F5FE !important; }

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

.border-top-light-blue-50 {
  border-top-color: #E1F5FE !important; }

.border-right-light-blue-50 {
  border-right-color: #E1F5FE !important; }

.border-bottom-light-blue-50 {
  border-bottom-color: #E1F5FE !important; }

.border-left-light-blue-50 {
  border-left-color: #E1F5FE !important; }

.bg-light-blue-100 {
  background-color: #B3E5FC !important; }
  .bg-light-blue-100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-blue-100.text-auto {
  background-color: #B3E5FC !important; }

.text-light-blue-100 {
  color: #B3E5FC !important; }

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

.border-top-light-blue-100 {
  border-top-color: #B3E5FC !important; }

.border-right-light-blue-100 {
  border-right-color: #B3E5FC !important; }

.border-bottom-light-blue-100 {
  border-bottom-color: #B3E5FC !important; }

.border-left-light-blue-100 {
  border-left-color: #B3E5FC !important; }

.bg-light-blue-200 {
  background-color: #81D4FA !important; }
  .bg-light-blue-200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-blue-200.text-auto {
  background-color: #81D4FA !important; }

.text-light-blue-200 {
  color: #81D4FA !important; }

.border-light-blue-200 {
  border-color: #81D4FA !important; }

.border-top-light-blue-200 {
  border-top-color: #81D4FA !important; }

.border-right-light-blue-200 {
  border-right-color: #81D4FA !important; }

.border-bottom-light-blue-200 {
  border-bottom-color: #81D4FA !important; }

.border-left-light-blue-200 {
  border-left-color: #81D4FA !important; }

.bg-light-blue-300 {
  background-color: #4FC3F7 !important; }
  .bg-light-blue-300.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-blue-300.text-auto {
  background-color: #4FC3F7 !important; }

.text-light-blue-300 {
  color: #4FC3F7 !important; }

.border-light-blue-300 {
  border-color: #4FC3F7 !important; }

.border-top-light-blue-300 {
  border-top-color: #4FC3F7 !important; }

.border-right-light-blue-300 {
  border-right-color: #4FC3F7 !important; }

.border-bottom-light-blue-300 {
  border-bottom-color: #4FC3F7 !important; }

.border-left-light-blue-300 {
  border-left-color: #4FC3F7 !important; }

.bg-light-blue-400 {
  background-color: #29B6F6 !important; }
  .bg-light-blue-400.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-blue-400.text-auto {
  background-color: #29B6F6 !important; }

.text-light-blue-400 {
  color: #29B6F6 !important; }

.border-light-blue-400 {
  border-color: #29B6F6 !important; }

.border-top-light-blue-400 {
  border-top-color: #29B6F6 !important; }

.border-right-light-blue-400 {
  border-right-color: #29B6F6 !important; }

.border-bottom-light-blue-400 {
  border-bottom-color: #29B6F6 !important; }

.border-left-light-blue-400 {
  border-left-color: #29B6F6 !important; }

.bg-light-blue-500 {
  background-color: #03A9F4 !important; }
  .bg-light-blue-500.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-blue-500.text-auto {
  background-color: #03A9F4 !important; }

.text-light-blue-500 {
  color: #03A9F4 !important; }

.border-light-blue-500 {
  border-color: #03A9F4 !important; }

.border-top-light-blue-500 {
  border-top-color: #03A9F4 !important; }

.border-right-light-blue-500 {
  border-right-color: #03A9F4 !important; }

.border-bottom-light-blue-500 {
  border-bottom-color: #03A9F4 !important; }

.border-left-light-blue-500 {
  border-left-color: #03A9F4 !important; }

.bg-light-blue.text-auto {
  background-color: #03A9F4 !important; }

.bg-light-blue {
  background-color: #03A9F4 !important; }
  .bg-light-blue.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.text-light-blue {
  color: #03A9F4 !important; }

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

.border-top-light-blue {
  border-top-color: #03A9F4 !important; }

.border-right-light-blue {
  border-right-color: #03A9F4 !important; }

.border-bottom-light-blue {
  border-bottom-color: #03A9F4 !important; }

.border-left-light-blue {
  border-left-color: #03A9F4 !important; }

.bg-light-blue-600 {
  background-color: #039BE5 !important; }
  .bg-light-blue-600.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-blue-600.text-auto {
  background-color: #039BE5 !important; }

.text-light-blue-600 {
  color: #039BE5 !important; }

.border-light-blue-600 {
  border-color: #039BE5 !important; }

.border-top-light-blue-600 {
  border-top-color: #039BE5 !important; }

.border-right-light-blue-600 {
  border-right-color: #039BE5 !important; }

.border-bottom-light-blue-600 {
  border-bottom-color: #039BE5 !important; }

.border-left-light-blue-600 {
  border-left-color: #039BE5 !important; }

.bg-light-blue-700 {
  background-color: #0288D1 !important; }
  .bg-light-blue-700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-light-blue-700.text-auto {
  background-color: #0288D1 !important; }

.text-light-blue-700 {
  color: #0288D1 !important; }

.border-light-blue-700 {
  border-color: #0288D1 !important; }

.border-top-light-blue-700 {
  border-top-color: #0288D1 !important; }

.border-right-light-blue-700 {
  border-right-color: #0288D1 !important; }

.border-bottom-light-blue-700 {
  border-bottom-color: #0288D1 !important; }

.border-left-light-blue-700 {
  border-left-color: #0288D1 !important; }

.bg-light-blue-800 {
  background-color: #0277BD !important; }
  .bg-light-blue-800.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-light-blue-800.text-auto {
  background-color: #0277BD !important; }

.text-light-blue-800 {
  color: #0277BD !important; }

.border-light-blue-800 {
  border-color: #0277BD !important; }

.border-top-light-blue-800 {
  border-top-color: #0277BD !important; }

.border-right-light-blue-800 {
  border-right-color: #0277BD !important; }

.border-bottom-light-blue-800 {
  border-bottom-color: #0277BD !important; }

.border-left-light-blue-800 {
  border-left-color: #0277BD !important; }

.bg-light-blue-900 {
  background-color: #01579B !important; }
  .bg-light-blue-900.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-light-blue-900.text-auto {
  background-color: #01579B !important; }

.text-light-blue-900 {
  color: #01579B !important; }

.border-light-blue-900 {
  border-color: #01579B !important; }

.border-top-light-blue-900 {
  border-top-color: #01579B !important; }

.border-right-light-blue-900 {
  border-right-color: #01579B !important; }

.border-bottom-light-blue-900 {
  border-bottom-color: #01579B !important; }

.border-left-light-blue-900 {
  border-left-color: #01579B !important; }

.bg-light-blue-A100 {
  background-color: #80D8FF !important; }
  .bg-light-blue-A100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-blue-A100.text-auto {
  background-color: #80D8FF !important; }

.text-light-blue-A100 {
  color: #80D8FF !important; }

.border-light-blue-A100 {
  border-color: #80D8FF !important; }

.border-top-light-blue-A100 {
  border-top-color: #80D8FF !important; }

.border-right-light-blue-A100 {
  border-right-color: #80D8FF !important; }

.border-bottom-light-blue-A100 {
  border-bottom-color: #80D8FF !important; }

.border-left-light-blue-A100 {
  border-left-color: #80D8FF !important; }

.bg-light-blue-A200 {
  background-color: #40C4FF !important; }
  .bg-light-blue-A200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-blue-A200.text-auto {
  background-color: #40C4FF !important; }

.text-light-blue-A200 {
  color: #40C4FF !important; }

.border-light-blue-A200 {
  border-color: #40C4FF !important; }

.border-top-light-blue-A200 {
  border-top-color: #40C4FF !important; }

.border-right-light-blue-A200 {
  border-right-color: #40C4FF !important; }

.border-bottom-light-blue-A200 {
  border-bottom-color: #40C4FF !important; }

.border-left-light-blue-A200 {
  border-left-color: #40C4FF !important; }

.bg-light-blue-A400 {
  background-color: #00B0FF !important; }
  .bg-light-blue-A400.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-blue-A400.text-auto {
  background-color: #00B0FF !important; }

.text-light-blue-A400 {
  color: #00B0FF !important; }

.border-light-blue-A400 {
  border-color: #00B0FF !important; }

.border-top-light-blue-A400 {
  border-top-color: #00B0FF !important; }

.border-right-light-blue-A400 {
  border-right-color: #00B0FF !important; }

.border-bottom-light-blue-A400 {
  border-bottom-color: #00B0FF !important; }

.border-left-light-blue-A400 {
  border-left-color: #00B0FF !important; }

.bg-light-blue-A700 {
  background-color: #0091EA !important; }
  .bg-light-blue-A700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-light-blue-A700.text-auto {
  background-color: #0091EA !important; }

.text-light-blue-A700 {
  color: #0091EA !important; }

.border-light-blue-A700 {
  border-color: #0091EA !important; }

.border-top-light-blue-A700 {
  border-top-color: #0091EA !important; }

.border-right-light-blue-A700 {
  border-right-color: #0091EA !important; }

.border-bottom-light-blue-A700 {
  border-bottom-color: #0091EA !important; }

.border-left-light-blue-A700 {
  border-left-color: #0091EA !important; }

.bg-cyan-50 {
  background-color: #E0F7FA !important; }
  .bg-cyan-50.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-cyan-50.text-auto {
  background-color: #E0F7FA !important; }

.text-cyan-50 {
  color: #E0F7FA !important; }

.border-cyan-50 {
  border-color: #E0F7FA !important; }

.border-top-cyan-50 {
  border-top-color: #E0F7FA !important; }

.border-right-cyan-50 {
  border-right-color: #E0F7FA !important; }

.border-bottom-cyan-50 {
  border-bottom-color: #E0F7FA !important; }

.border-left-cyan-50 {
  border-left-color: #E0F7FA !important; }

.bg-cyan-100 {
  background-color: #B2EBF2 !important; }
  .bg-cyan-100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-cyan-100.text-auto {
  background-color: #B2EBF2 !important; }

.text-cyan-100 {
  color: #B2EBF2 !important; }

.border-cyan-100 {
  border-color: #B2EBF2 !important; }

.border-top-cyan-100 {
  border-top-color: #B2EBF2 !important; }

.border-right-cyan-100 {
  border-right-color: #B2EBF2 !important; }

.border-bottom-cyan-100 {
  border-bottom-color: #B2EBF2 !important; }

.border-left-cyan-100 {
  border-left-color: #B2EBF2 !important; }

.bg-cyan-200 {
  background-color: #80DEEA !important; }
  .bg-cyan-200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-cyan-200.text-auto {
  background-color: #80DEEA !important; }

.text-cyan-200 {
  color: #80DEEA !important; }

.border-cyan-200 {
  border-color: #80DEEA !important; }

.border-top-cyan-200 {
  border-top-color: #80DEEA !important; }

.border-right-cyan-200 {
  border-right-color: #80DEEA !important; }

.border-bottom-cyan-200 {
  border-bottom-color: #80DEEA !important; }

.border-left-cyan-200 {
  border-left-color: #80DEEA !important; }

.bg-cyan-300 {
  background-color: #4DD0E1 !important; }
  .bg-cyan-300.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-cyan-300.text-auto {
  background-color: #4DD0E1 !important; }

.text-cyan-300 {
  color: #4DD0E1 !important; }

.border-cyan-300 {
  border-color: #4DD0E1 !important; }

.border-top-cyan-300 {
  border-top-color: #4DD0E1 !important; }

.border-right-cyan-300 {
  border-right-color: #4DD0E1 !important; }

.border-bottom-cyan-300 {
  border-bottom-color: #4DD0E1 !important; }

.border-left-cyan-300 {
  border-left-color: #4DD0E1 !important; }

.bg-cyan-400 {
  background-color: #26C6DA !important; }
  .bg-cyan-400.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-cyan-400.text-auto {
  background-color: #26C6DA !important; }

.text-cyan-400 {
  color: #26C6DA !important; }

.border-cyan-400 {
  border-color: #26C6DA !important; }

.border-top-cyan-400 {
  border-top-color: #26C6DA !important; }

.border-right-cyan-400 {
  border-right-color: #26C6DA !important; }

.border-bottom-cyan-400 {
  border-bottom-color: #26C6DA !important; }

.border-left-cyan-400 {
  border-left-color: #26C6DA !important; }

.bg-cyan-500 {
  background-color: #00BCD4 !important; }
  .bg-cyan-500.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-cyan-500.text-auto {
  background-color: #00BCD4 !important; }

.text-cyan-500 {
  color: #00BCD4 !important; }

.border-cyan-500 {
  border-color: #00BCD4 !important; }

.border-top-cyan-500 {
  border-top-color: #00BCD4 !important; }

.border-right-cyan-500 {
  border-right-color: #00BCD4 !important; }

.border-bottom-cyan-500 {
  border-bottom-color: #00BCD4 !important; }

.border-left-cyan-500 {
  border-left-color: #00BCD4 !important; }

.bg-cyan.text-auto {
  background-color: #00BCD4 !important; }

.bg-cyan {
  background-color: #00BCD4 !important; }
  .bg-cyan.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.text-cyan {
  color: #00BCD4 !important; }

.border-cyan {
  border-color: #00BCD4 !important; }

.border-top-cyan {
  border-top-color: #00BCD4 !important; }

.border-right-cyan {
  border-right-color: #00BCD4 !important; }

.border-bottom-cyan {
  border-bottom-color: #00BCD4 !important; }

.border-left-cyan {
  border-left-color: #00BCD4 !important; }

.bg-cyan-600 {
  background-color: #00ACC1 !important; }
  .bg-cyan-600.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-cyan-600.text-auto {
  background-color: #00ACC1 !important; }

.text-cyan-600 {
  color: #00ACC1 !important; }

.border-cyan-600 {
  border-color: #00ACC1 !important; }

.border-top-cyan-600 {
  border-top-color: #00ACC1 !important; }

.border-right-cyan-600 {
  border-right-color: #00ACC1 !important; }

.border-bottom-cyan-600 {
  border-bottom-color: #00ACC1 !important; }

.border-left-cyan-600 {
  border-left-color: #00ACC1 !important; }

.bg-cyan-700 {
  background-color: #0097A7 !important; }
  .bg-cyan-700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-cyan-700.text-auto {
  background-color: #0097A7 !important; }

.text-cyan-700 {
  color: #0097A7 !important; }

.border-cyan-700 {
  border-color: #0097A7 !important; }

.border-top-cyan-700 {
  border-top-color: #0097A7 !important; }

.border-right-cyan-700 {
  border-right-color: #0097A7 !important; }

.border-bottom-cyan-700 {
  border-bottom-color: #0097A7 !important; }

.border-left-cyan-700 {
  border-left-color: #0097A7 !important; }

.bg-cyan-800 {
  background-color: #00838F !important; }
  .bg-cyan-800.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-cyan-800.text-auto {
  background-color: #00838F !important; }

.text-cyan-800 {
  color: #00838F !important; }

.border-cyan-800 {
  border-color: #00838F !important; }

.border-top-cyan-800 {
  border-top-color: #00838F !important; }

.border-right-cyan-800 {
  border-right-color: #00838F !important; }

.border-bottom-cyan-800 {
  border-bottom-color: #00838F !important; }

.border-left-cyan-800 {
  border-left-color: #00838F !important; }

.bg-cyan-900 {
  background-color: #006064 !important; }
  .bg-cyan-900.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-cyan-900.text-auto {
  background-color: #006064 !important; }

.text-cyan-900 {
  color: #006064 !important; }

.border-cyan-900 {
  border-color: #006064 !important; }

.border-top-cyan-900 {
  border-top-color: #006064 !important; }

.border-right-cyan-900 {
  border-right-color: #006064 !important; }

.border-bottom-cyan-900 {
  border-bottom-color: #006064 !important; }

.border-left-cyan-900 {
  border-left-color: #006064 !important; }

.bg-cyan-A100 {
  background-color: #84FFFF !important; }
  .bg-cyan-A100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-cyan-A100.text-auto {
  background-color: #84FFFF !important; }

.text-cyan-A100 {
  color: #84FFFF !important; }

.border-cyan-A100 {
  border-color: #84FFFF !important; }

.border-top-cyan-A100 {
  border-top-color: #84FFFF !important; }

.border-right-cyan-A100 {
  border-right-color: #84FFFF !important; }

.border-bottom-cyan-A100 {
  border-bottom-color: #84FFFF !important; }

.border-left-cyan-A100 {
  border-left-color: #84FFFF !important; }

.bg-cyan-A200 {
  background-color: #18FFFF !important; }
  .bg-cyan-A200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-cyan-A200.text-auto {
  background-color: #18FFFF !important; }

.text-cyan-A200 {
  color: #18FFFF !important; }

.border-cyan-A200 {
  border-color: #18FFFF !important; }

.border-top-cyan-A200 {
  border-top-color: #18FFFF !important; }

.border-right-cyan-A200 {
  border-right-color: #18FFFF !important; }

.border-bottom-cyan-A200 {
  border-bottom-color: #18FFFF !important; }

.border-left-cyan-A200 {
  border-left-color: #18FFFF !important; }

.bg-cyan-A400 {
  background-color: #00E5FF !important; }
  .bg-cyan-A400.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-cyan-A400.text-auto {
  background-color: #00E5FF !important; }

.text-cyan-A400 {
  color: #00E5FF !important; }

.border-cyan-A400 {
  border-color: #00E5FF !important; }

.border-top-cyan-A400 {
  border-top-color: #00E5FF !important; }

.border-right-cyan-A400 {
  border-right-color: #00E5FF !important; }

.border-bottom-cyan-A400 {
  border-bottom-color: #00E5FF !important; }

.border-left-cyan-A400 {
  border-left-color: #00E5FF !important; }

.bg-cyan-A700 {
  background-color: #00B8D4 !important; }
  .bg-cyan-A700.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-cyan-A700.text-auto {
  background-color: #00B8D4 !important; }

.text-cyan-A700 {
  color: #00B8D4 !important; }

.border-cyan-A700 {
  border-color: #00B8D4 !important; }

.border-top-cyan-A700 {
  border-top-color: #00B8D4 !important; }

.border-right-cyan-A700 {
  border-right-color: #00B8D4 !important; }

.border-bottom-cyan-A700 {
  border-bottom-color: #00B8D4 !important; }

.border-left-cyan-A700 {
  border-left-color: #00B8D4 !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-light-green-50 {
  background-color: #F1F8E9 !important; }
  .bg-light-green-50.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-green-50.text-auto {
  background-color: #F1F8E9 !important; }

.text-light-green-50 {
  color: #F1F8E9 !important; }

.border-light-green-50 {
  border-color: #F1F8E9 !important; }

.border-top-light-green-50 {
  border-top-color: #F1F8E9 !important; }

.border-right-light-green-50 {
  border-right-color: #F1F8E9 !important; }

.border-bottom-light-green-50 {
  border-bottom-color: #F1F8E9 !important; }

.border-left-light-green-50 {
  border-left-color: #F1F8E9 !important; }

.bg-light-green-100 {
  background-color: #DCEDC8 !important; }
  .bg-light-green-100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-green-100.text-auto {
  background-color: #DCEDC8 !important; }

.text-light-green-100 {
  color: #DCEDC8 !important; }

.border-light-green-100 {
  border-color: #DCEDC8 !important; }

.border-top-light-green-100 {
  border-top-color: #DCEDC8 !important; }

.border-right-light-green-100 {
  border-right-color: #DCEDC8 !important; }

.border-bottom-light-green-100 {
  border-bottom-color: #DCEDC8 !important; }

.border-left-light-green-100 {
  border-left-color: #DCEDC8 !important; }

.bg-light-green-200 {
  background-color: #C5E1A5 !important; }
  .bg-light-green-200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-green-200.text-auto {
  background-color: #C5E1A5 !important; }

.text-light-green-200 {
  color: #C5E1A5 !important; }

.border-light-green-200 {
  border-color: #C5E1A5 !important; }

.border-top-light-green-200 {
  border-top-color: #C5E1A5 !important; }

.border-right-light-green-200 {
  border-right-color: #C5E1A5 !important; }

.border-bottom-light-green-200 {
  border-bottom-color: #C5E1A5 !important; }

.border-left-light-green-200 {
  border-left-color: #C5E1A5 !important; }

.bg-light-green-300 {
  background-color: #AED581 !important; }
  .bg-light-green-300.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-green-300.text-auto {
  background-color: #AED581 !important; }

.text-light-green-300 {
  color: #AED581 !important; }

.border-light-green-300 {
  border-color: #AED581 !important; }

.border-top-light-green-300 {
  border-top-color: #AED581 !important; }

.border-right-light-green-300 {
  border-right-color: #AED581 !important; }

.border-bottom-light-green-300 {
  border-bottom-color: #AED581 !important; }

.border-left-light-green-300 {
  border-left-color: #AED581 !important; }

.bg-light-green-400 {
  background-color: #9CCC65 !important; }
  .bg-light-green-400.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-green-400.text-auto {
  background-color: #9CCC65 !important; }

.text-light-green-400 {
  color: #9CCC65 !important; }

.border-light-green-400 {
  border-color: #9CCC65 !important; }

.border-top-light-green-400 {
  border-top-color: #9CCC65 !important; }

.border-right-light-green-400 {
  border-right-color: #9CCC65 !important; }

.border-bottom-light-green-400 {
  border-bottom-color: #9CCC65 !important; }

.border-left-light-green-400 {
  border-left-color: #9CCC65 !important; }

.bg-light-green-500 {
  background-color: #8BC34A !important; }
  .bg-light-green-500.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-green-500.text-auto {
  background-color: #8BC34A !important; }

.text-light-green-500 {
  color: #8BC34A !important; }

.border-light-green-500 {
  border-color: #8BC34A !important; }

.border-top-light-green-500 {
  border-top-color: #8BC34A !important; }

.border-right-light-green-500 {
  border-right-color: #8BC34A !important; }

.border-bottom-light-green-500 {
  border-bottom-color: #8BC34A !important; }

.border-left-light-green-500 {
  border-left-color: #8BC34A !important; }

.bg-light-green.text-auto {
  background-color: #8BC34A !important; }

.bg-light-green {
  background-color: #8BC34A !important; }
  .bg-light-green.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.text-light-green {
  color: #8BC34A !important; }

.border-light-green {
  border-color: #8BC34A !important; }

.border-top-light-green {
  border-top-color: #8BC34A !important; }

.border-right-light-green {
  border-right-color: #8BC34A !important; }

.border-bottom-light-green {
  border-bottom-color: #8BC34A !important; }

.border-left-light-green {
  border-left-color: #8BC34A !important; }

.bg-light-green-600 {
  background-color: #7CB342 !important; }
  .bg-light-green-600.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-green-600.text-auto {
  background-color: #7CB342 !important; }

.text-light-green-600 {
  color: #7CB342 !important; }

.border-light-green-600 {
  border-color: #7CB342 !important; }

.border-top-light-green-600 {
  border-top-color: #7CB342 !important; }

.border-right-light-green-600 {
  border-right-color: #7CB342 !important; }

.border-bottom-light-green-600 {
  border-bottom-color: #7CB342 !important; }

.border-left-light-green-600 {
  border-left-color: #7CB342 !important; }

.bg-light-green-700 {
  background-color: #689F38 !important; }
  .bg-light-green-700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-light-green-700.text-auto {
  background-color: #689F38 !important; }

.text-light-green-700 {
  color: #689F38 !important; }

.border-light-green-700 {
  border-color: #689F38 !important; }

.border-top-light-green-700 {
  border-top-color: #689F38 !important; }

.border-right-light-green-700 {
  border-right-color: #689F38 !important; }

.border-bottom-light-green-700 {
  border-bottom-color: #689F38 !important; }

.border-left-light-green-700 {
  border-left-color: #689F38 !important; }

.bg-light-green-800 {
  background-color: #558B2F !important; }
  .bg-light-green-800.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-light-green-800.text-auto {
  background-color: #558B2F !important; }

.text-light-green-800 {
  color: #558B2F !important; }

.border-light-green-800 {
  border-color: #558B2F !important; }

.border-top-light-green-800 {
  border-top-color: #558B2F !important; }

.border-right-light-green-800 {
  border-right-color: #558B2F !important; }

.border-bottom-light-green-800 {
  border-bottom-color: #558B2F !important; }

.border-left-light-green-800 {
  border-left-color: #558B2F !important; }

.bg-light-green-900 {
  background-color: #33691E !important; }
  .bg-light-green-900.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-light-green-900.text-auto {
  background-color: #33691E !important; }

.text-light-green-900 {
  color: #33691E !important; }

.border-light-green-900 {
  border-color: #33691E !important; }

.border-top-light-green-900 {
  border-top-color: #33691E !important; }

.border-right-light-green-900 {
  border-right-color: #33691E !important; }

.border-bottom-light-green-900 {
  border-bottom-color: #33691E !important; }

.border-left-light-green-900 {
  border-left-color: #33691E !important; }

.bg-light-green-A100 {
  background-color: #CCFF90 !important; }
  .bg-light-green-A100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-green-A100.text-auto {
  background-color: #CCFF90 !important; }

.text-light-green-A100 {
  color: #CCFF90 !important; }

.border-light-green-A100 {
  border-color: #CCFF90 !important; }

.border-top-light-green-A100 {
  border-top-color: #CCFF90 !important; }

.border-right-light-green-A100 {
  border-right-color: #CCFF90 !important; }

.border-bottom-light-green-A100 {
  border-bottom-color: #CCFF90 !important; }

.border-left-light-green-A100 {
  border-left-color: #CCFF90 !important; }

.bg-light-green-A200 {
  background-color: #B2FF59 !important; }
  .bg-light-green-A200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-green-A200.text-auto {
  background-color: #B2FF59 !important; }

.text-light-green-A200 {
  color: #B2FF59 !important; }

.border-light-green-A200 {
  border-color: #B2FF59 !important; }

.border-top-light-green-A200 {
  border-top-color: #B2FF59 !important; }

.border-right-light-green-A200 {
  border-right-color: #B2FF59 !important; }

.border-bottom-light-green-A200 {
  border-bottom-color: #B2FF59 !important; }

.border-left-light-green-A200 {
  border-left-color: #B2FF59 !important; }

.bg-light-green-A400 {
  background-color: #76FF03 !important; }
  .bg-light-green-A400.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-green-A400.text-auto {
  background-color: #76FF03 !important; }

.text-light-green-A400 {
  color: #76FF03 !important; }

.border-light-green-A400 {
  border-color: #76FF03 !important; }

.border-top-light-green-A400 {
  border-top-color: #76FF03 !important; }

.border-right-light-green-A400 {
  border-right-color: #76FF03 !important; }

.border-bottom-light-green-A400 {
  border-bottom-color: #76FF03 !important; }

.border-left-light-green-A400 {
  border-left-color: #76FF03 !important; }

.bg-light-green-A700 {
  background-color: #64DD17 !important; }
  .bg-light-green-A700.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-light-green-A700.text-auto {
  background-color: #64DD17 !important; }

.text-light-green-A700 {
  color: #64DD17 !important; }

.border-light-green-A700 {
  border-color: #64DD17 !important; }

.border-top-light-green-A700 {
  border-top-color: #64DD17 !important; }

.border-right-light-green-A700 {
  border-right-color: #64DD17 !important; }

.border-bottom-light-green-A700 {
  border-bottom-color: #64DD17 !important; }

.border-left-light-green-A700 {
  border-left-color: #64DD17 !important; }

.bg-lime-50 {
  background-color: #F9FBE7 !important; }
  .bg-lime-50.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-lime-50.text-auto {
  background-color: #F9FBE7 !important; }

.text-lime-50 {
  color: #F9FBE7 !important; }

.border-lime-50 {
  border-color: #F9FBE7 !important; }

.border-top-lime-50 {
  border-top-color: #F9FBE7 !important; }

.border-right-lime-50 {
  border-right-color: #F9FBE7 !important; }

.border-bottom-lime-50 {
  border-bottom-color: #F9FBE7 !important; }

.border-left-lime-50 {
  border-left-color: #F9FBE7 !important; }

.bg-lime-100 {
  background-color: #F0F4C3 !important; }
  .bg-lime-100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-lime-100.text-auto {
  background-color: #F0F4C3 !important; }

.text-lime-100 {
  color: #F0F4C3 !important; }

.border-lime-100 {
  border-color: #F0F4C3 !important; }

.border-top-lime-100 {
  border-top-color: #F0F4C3 !important; }

.border-right-lime-100 {
  border-right-color: #F0F4C3 !important; }

.border-bottom-lime-100 {
  border-bottom-color: #F0F4C3 !important; }

.border-left-lime-100 {
  border-left-color: #F0F4C3 !important; }

.bg-lime-200 {
  background-color: #E6EE9C !important; }
  .bg-lime-200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-lime-200.text-auto {
  background-color: #E6EE9C !important; }

.text-lime-200 {
  color: #E6EE9C !important; }

.border-lime-200 {
  border-color: #E6EE9C !important; }

.border-top-lime-200 {
  border-top-color: #E6EE9C !important; }

.border-right-lime-200 {
  border-right-color: #E6EE9C !important; }

.border-bottom-lime-200 {
  border-bottom-color: #E6EE9C !important; }

.border-left-lime-200 {
  border-left-color: #E6EE9C !important; }

.bg-lime-300 {
  background-color: #DCE775 !important; }
  .bg-lime-300.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-lime-300.text-auto {
  background-color: #DCE775 !important; }

.text-lime-300 {
  color: #DCE775 !important; }

.border-lime-300 {
  border-color: #DCE775 !important; }

.border-top-lime-300 {
  border-top-color: #DCE775 !important; }

.border-right-lime-300 {
  border-right-color: #DCE775 !important; }

.border-bottom-lime-300 {
  border-bottom-color: #DCE775 !important; }

.border-left-lime-300 {
  border-left-color: #DCE775 !important; }

.bg-lime-400 {
  background-color: #D4E157 !important; }
  .bg-lime-400.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-lime-400.text-auto {
  background-color: #D4E157 !important; }

.text-lime-400 {
  color: #D4E157 !important; }

.border-lime-400 {
  border-color: #D4E157 !important; }

.border-top-lime-400 {
  border-top-color: #D4E157 !important; }

.border-right-lime-400 {
  border-right-color: #D4E157 !important; }

.border-bottom-lime-400 {
  border-bottom-color: #D4E157 !important; }

.border-left-lime-400 {
  border-left-color: #D4E157 !important; }

.bg-lime-500 {
  background-color: #CDDC39 !important; }
  .bg-lime-500.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-lime-500.text-auto {
  background-color: #CDDC39 !important; }

.text-lime-500 {
  color: #CDDC39 !important; }

.border-lime-500 {
  border-color: #CDDC39 !important; }

.border-top-lime-500 {
  border-top-color: #CDDC39 !important; }

.border-right-lime-500 {
  border-right-color: #CDDC39 !important; }

.border-bottom-lime-500 {
  border-bottom-color: #CDDC39 !important; }

.border-left-lime-500 {
  border-left-color: #CDDC39 !important; }

.bg-lime.text-auto {
  background-color: #CDDC39 !important; }

.bg-lime {
  background-color: #CDDC39 !important; }
  .bg-lime.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.text-lime {
  color: #CDDC39 !important; }

.border-lime {
  border-color: #CDDC39 !important; }

.border-top-lime {
  border-top-color: #CDDC39 !important; }

.border-right-lime {
  border-right-color: #CDDC39 !important; }

.border-bottom-lime {
  border-bottom-color: #CDDC39 !important; }

.border-left-lime {
  border-left-color: #CDDC39 !important; }

.bg-lime-600 {
  background-color: #C0CA33 !important; }
  .bg-lime-600.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-lime-600.text-auto {
  background-color: #C0CA33 !important; }

.text-lime-600 {
  color: #C0CA33 !important; }

.border-lime-600 {
  border-color: #C0CA33 !important; }

.border-top-lime-600 {
  border-top-color: #C0CA33 !important; }

.border-right-lime-600 {
  border-right-color: #C0CA33 !important; }

.border-bottom-lime-600 {
  border-bottom-color: #C0CA33 !important; }

.border-left-lime-600 {
  border-left-color: #C0CA33 !important; }

.bg-lime-700 {
  background-color: #AFB42B !important; }
  .bg-lime-700.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-lime-700.text-auto {
  background-color: #AFB42B !important; }

.text-lime-700 {
  color: #AFB42B !important; }

.border-lime-700 {
  border-color: #AFB42B !important; }

.border-top-lime-700 {
  border-top-color: #AFB42B !important; }

.border-right-lime-700 {
  border-right-color: #AFB42B !important; }

.border-bottom-lime-700 {
  border-bottom-color: #AFB42B !important; }

.border-left-lime-700 {
  border-left-color: #AFB42B !important; }

.bg-lime-800 {
  background-color: #9E9D24 !important; }
  .bg-lime-800.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-lime-800.text-auto {
  background-color: #9E9D24 !important; }

.text-lime-800 {
  color: #9E9D24 !important; }

.border-lime-800 {
  border-color: #9E9D24 !important; }

.border-top-lime-800 {
  border-top-color: #9E9D24 !important; }

.border-right-lime-800 {
  border-right-color: #9E9D24 !important; }

.border-bottom-lime-800 {
  border-bottom-color: #9E9D24 !important; }

.border-left-lime-800 {
  border-left-color: #9E9D24 !important; }

.bg-lime-900 {
  background-color: #827717 !important; }
  .bg-lime-900.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-lime-900.text-auto {
  background-color: #827717 !important; }

.text-lime-900 {
  color: #827717 !important; }

.border-lime-900 {
  border-color: #827717 !important; }

.border-top-lime-900 {
  border-top-color: #827717 !important; }

.border-right-lime-900 {
  border-right-color: #827717 !important; }

.border-bottom-lime-900 {
  border-bottom-color: #827717 !important; }

.border-left-lime-900 {
  border-left-color: #827717 !important; }

.bg-lime-A100 {
  background-color: #F4FF81 !important; }
  .bg-lime-A100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-lime-A100.text-auto {
  background-color: #F4FF81 !important; }

.text-lime-A100 {
  color: #F4FF81 !important; }

.border-lime-A100 {
  border-color: #F4FF81 !important; }

.border-top-lime-A100 {
  border-top-color: #F4FF81 !important; }

.border-right-lime-A100 {
  border-right-color: #F4FF81 !important; }

.border-bottom-lime-A100 {
  border-bottom-color: #F4FF81 !important; }

.border-left-lime-A100 {
  border-left-color: #F4FF81 !important; }

.bg-lime-A200 {
  background-color: #EEFF41 !important; }
  .bg-lime-A200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-lime-A200.text-auto {
  background-color: #EEFF41 !important; }

.text-lime-A200 {
  color: #EEFF41 !important; }

.border-lime-A200 {
  border-color: #EEFF41 !important; }

.border-top-lime-A200 {
  border-top-color: #EEFF41 !important; }

.border-right-lime-A200 {
  border-right-color: #EEFF41 !important; }

.border-bottom-lime-A200 {
  border-bottom-color: #EEFF41 !important; }

.border-left-lime-A200 {
  border-left-color: #EEFF41 !important; }

.bg-lime-A400 {
  background-color: #C6FF00 !important; }
  .bg-lime-A400.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-lime-A400.text-auto {
  background-color: #C6FF00 !important; }

.text-lime-A400 {
  color: #C6FF00 !important; }

.border-lime-A400 {
  border-color: #C6FF00 !important; }

.border-top-lime-A400 {
  border-top-color: #C6FF00 !important; }

.border-right-lime-A400 {
  border-right-color: #C6FF00 !important; }

.border-bottom-lime-A400 {
  border-bottom-color: #C6FF00 !important; }

.border-left-lime-A400 {
  border-left-color: #C6FF00 !important; }

.bg-lime-A700 {
  background-color: #AEEA00 !important; }
  .bg-lime-A700.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-lime-A700.text-auto {
  background-color: #AEEA00 !important; }

.text-lime-A700 {
  color: #AEEA00 !important; }

.border-lime-A700 {
  border-color: #AEEA00 !important; }

.border-top-lime-A700 {
  border-top-color: #AEEA00 !important; }

.border-right-lime-A700 {
  border-right-color: #AEEA00 !important; }

.border-bottom-lime-A700 {
  border-bottom-color: #AEEA00 !important; }

.border-left-lime-A700 {
  border-left-color: #AEEA00 !important; }

.bg-yellow-50 {
  background-color: #FFFDE7 !important; }
  .bg-yellow-50.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-yellow-50.text-auto {
  background-color: #FFFDE7 !important; }

.text-yellow-50 {
  color: #FFFDE7 !important; }

.border-yellow-50 {
  border-color: #FFFDE7 !important; }

.border-top-yellow-50 {
  border-top-color: #FFFDE7 !important; }

.border-right-yellow-50 {
  border-right-color: #FFFDE7 !important; }

.border-bottom-yellow-50 {
  border-bottom-color: #FFFDE7 !important; }

.border-left-yellow-50 {
  border-left-color: #FFFDE7 !important; }

.bg-yellow-100 {
  background-color: #FFF9C4 !important; }
  .bg-yellow-100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-yellow-100.text-auto {
  background-color: #FFF9C4 !important; }

.text-yellow-100 {
  color: #FFF9C4 !important; }

.border-yellow-100 {
  border-color: #FFF9C4 !important; }

.border-top-yellow-100 {
  border-top-color: #FFF9C4 !important; }

.border-right-yellow-100 {
  border-right-color: #FFF9C4 !important; }

.border-bottom-yellow-100 {
  border-bottom-color: #FFF9C4 !important; }

.border-left-yellow-100 {
  border-left-color: #FFF9C4 !important; }

.bg-yellow-200 {
  background-color: #FFF59D !important; }
  .bg-yellow-200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-yellow-200.text-auto {
  background-color: #FFF59D !important; }

.text-yellow-200 {
  color: #FFF59D !important; }

.border-yellow-200 {
  border-color: #FFF59D !important; }

.border-top-yellow-200 {
  border-top-color: #FFF59D !important; }

.border-right-yellow-200 {
  border-right-color: #FFF59D !important; }

.border-bottom-yellow-200 {
  border-bottom-color: #FFF59D !important; }

.border-left-yellow-200 {
  border-left-color: #FFF59D !important; }

.bg-yellow-300 {
  background-color: #FFF176 !important; }
  .bg-yellow-300.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-yellow-300.text-auto {
  background-color: #FFF176 !important; }

.text-yellow-300 {
  color: #FFF176 !important; }

.border-yellow-300 {
  border-color: #FFF176 !important; }

.border-top-yellow-300 {
  border-top-color: #FFF176 !important; }

.border-right-yellow-300 {
  border-right-color: #FFF176 !important; }

.border-bottom-yellow-300 {
  border-bottom-color: #FFF176 !important; }

.border-left-yellow-300 {
  border-left-color: #FFF176 !important; }

.bg-yellow-400 {
  background-color: #FFEE58 !important; }
  .bg-yellow-400.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-yellow-400.text-auto {
  background-color: #FFEE58 !important; }

.text-yellow-400 {
  color: #FFEE58 !important; }

.border-yellow-400 {
  border-color: #FFEE58 !important; }

.border-top-yellow-400 {
  border-top-color: #FFEE58 !important; }

.border-right-yellow-400 {
  border-right-color: #FFEE58 !important; }

.border-bottom-yellow-400 {
  border-bottom-color: #FFEE58 !important; }

.border-left-yellow-400 {
  border-left-color: #FFEE58 !important; }

.bg-yellow-500 {
  background-color: #FFEB3B !important; }
  .bg-yellow-500.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-yellow-500.text-auto {
  background-color: #FFEB3B !important; }

.text-yellow-500 {
  color: #FFEB3B !important; }

.border-yellow-500 {
  border-color: #FFEB3B !important; }

.border-top-yellow-500 {
  border-top-color: #FFEB3B !important; }

.border-right-yellow-500 {
  border-right-color: #FFEB3B !important; }

.border-bottom-yellow-500 {
  border-bottom-color: #FFEB3B !important; }

.border-left-yellow-500 {
  border-left-color: #FFEB3B !important; }

.bg-yellow.text-auto {
  background-color: #FFEB3B !important; }

.bg-yellow {
  background-color: #FFEB3B !important; }
  .bg-yellow.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.text-yellow {
  color: #FFEB3B !important; }

.border-yellow {
  border-color: #FFEB3B !important; }

.border-top-yellow {
  border-top-color: #FFEB3B !important; }

.border-right-yellow {
  border-right-color: #FFEB3B !important; }

.border-bottom-yellow {
  border-bottom-color: #FFEB3B !important; }

.border-left-yellow {
  border-left-color: #FFEB3B !important; }

.bg-yellow-600 {
  background-color: #FDD835 !important; }
  .bg-yellow-600.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-yellow-600.text-auto {
  background-color: #FDD835 !important; }

.text-yellow-600 {
  color: #FDD835 !important; }

.border-yellow-600 {
  border-color: #FDD835 !important; }

.border-top-yellow-600 {
  border-top-color: #FDD835 !important; }

.border-right-yellow-600 {
  border-right-color: #FDD835 !important; }

.border-bottom-yellow-600 {
  border-bottom-color: #FDD835 !important; }

.border-left-yellow-600 {
  border-left-color: #FDD835 !important; }

.bg-yellow-700 {
  background-color: #FBC02D !important; }
  .bg-yellow-700.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-yellow-700.text-auto {
  background-color: #FBC02D !important; }

.text-yellow-700 {
  color: #FBC02D !important; }

.border-yellow-700 {
  border-color: #FBC02D !important; }

.border-top-yellow-700 {
  border-top-color: #FBC02D !important; }

.border-right-yellow-700 {
  border-right-color: #FBC02D !important; }

.border-bottom-yellow-700 {
  border-bottom-color: #FBC02D !important; }

.border-left-yellow-700 {
  border-left-color: #FBC02D !important; }

.bg-yellow-800 {
  background-color: #F9A825 !important; }
  .bg-yellow-800.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-yellow-800.text-auto {
  background-color: #F9A825 !important; }

.text-yellow-800 {
  color: #F9A825 !important; }

.border-yellow-800 {
  border-color: #F9A825 !important; }

.border-top-yellow-800 {
  border-top-color: #F9A825 !important; }

.border-right-yellow-800 {
  border-right-color: #F9A825 !important; }

.border-bottom-yellow-800 {
  border-bottom-color: #F9A825 !important; }

.border-left-yellow-800 {
  border-left-color: #F9A825 !important; }

.bg-yellow-900 {
  background-color: #F57F17 !important; }
  .bg-yellow-900.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-yellow-900.text-auto {
  background-color: #F57F17 !important; }

.text-yellow-900 {
  color: #F57F17 !important; }

.border-yellow-900 {
  border-color: #F57F17 !important; }

.border-top-yellow-900 {
  border-top-color: #F57F17 !important; }

.border-right-yellow-900 {
  border-right-color: #F57F17 !important; }

.border-bottom-yellow-900 {
  border-bottom-color: #F57F17 !important; }

.border-left-yellow-900 {
  border-left-color: #F57F17 !important; }

.bg-yellow-A100 {
  background-color: #FFFF8D !important; }
  .bg-yellow-A100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-yellow-A100.text-auto {
  background-color: #FFFF8D !important; }

.text-yellow-A100 {
  color: #FFFF8D !important; }

.border-yellow-A100 {
  border-color: #FFFF8D !important; }

.border-top-yellow-A100 {
  border-top-color: #FFFF8D !important; }

.border-right-yellow-A100 {
  border-right-color: #FFFF8D !important; }

.border-bottom-yellow-A100 {
  border-bottom-color: #FFFF8D !important; }

.border-left-yellow-A100 {
  border-left-color: #FFFF8D !important; }

.bg-yellow-A200 {
  background-color: #FFFF00 !important; }
  .bg-yellow-A200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-yellow-A200.text-auto {
  background-color: #FFFF00 !important; }

.text-yellow-A200 {
  color: #FFFF00 !important; }

.border-yellow-A200 {
  border-color: #FFFF00 !important; }

.border-top-yellow-A200 {
  border-top-color: #FFFF00 !important; }

.border-right-yellow-A200 {
  border-right-color: #FFFF00 !important; }

.border-bottom-yellow-A200 {
  border-bottom-color: #FFFF00 !important; }

.border-left-yellow-A200 {
  border-left-color: #FFFF00 !important; }

.bg-yellow-A400 {
  background-color: #FFEA00 !important; }
  .bg-yellow-A400.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-yellow-A400.text-auto {
  background-color: #FFEA00 !important; }

.text-yellow-A400 {
  color: #FFEA00 !important; }

.border-yellow-A400 {
  border-color: #FFEA00 !important; }

.border-top-yellow-A400 {
  border-top-color: #FFEA00 !important; }

.border-right-yellow-A400 {
  border-right-color: #FFEA00 !important; }

.border-bottom-yellow-A400 {
  border-bottom-color: #FFEA00 !important; }

.border-left-yellow-A400 {
  border-left-color: #FFEA00 !important; }

.bg-yellow-A700 {
  background-color: #FFD600 !important; }
  .bg-yellow-A700.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-yellow-A700.text-auto {
  background-color: #FFD600 !important; }

.text-yellow-A700 {
  color: #FFD600 !important; }

.border-yellow-A700 {
  border-color: #FFD600 !important; }

.border-top-yellow-A700 {
  border-top-color: #FFD600 !important; }

.border-right-yellow-A700 {
  border-right-color: #FFD600 !important; }

.border-bottom-yellow-A700 {
  border-bottom-color: #FFD600 !important; }

.border-left-yellow-A700 {
  border-left-color: #FFD600 !important; }

.bg-amber-50 {
  background-color: #FFF8E1 !important; }
  .bg-amber-50.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-amber-50.text-auto {
  background-color: #FFF8E1 !important; }

.text-amber-50 {
  color: #FFF8E1 !important; }

.border-amber-50 {
  border-color: #FFF8E1 !important; }

.border-top-amber-50 {
  border-top-color: #FFF8E1 !important; }

.border-right-amber-50 {
  border-right-color: #FFF8E1 !important; }

.border-bottom-amber-50 {
  border-bottom-color: #FFF8E1 !important; }

.border-left-amber-50 {
  border-left-color: #FFF8E1 !important; }

.bg-amber-100 {
  background-color: #FFECB3 !important; }
  .bg-amber-100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-amber-100.text-auto {
  background-color: #FFECB3 !important; }

.text-amber-100 {
  color: #FFECB3 !important; }

.border-amber-100 {
  border-color: #FFECB3 !important; }

.border-top-amber-100 {
  border-top-color: #FFECB3 !important; }

.border-right-amber-100 {
  border-right-color: #FFECB3 !important; }

.border-bottom-amber-100 {
  border-bottom-color: #FFECB3 !important; }

.border-left-amber-100 {
  border-left-color: #FFECB3 !important; }

.bg-amber-200 {
  background-color: #FFE082 !important; }
  .bg-amber-200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-amber-200.text-auto {
  background-color: #FFE082 !important; }

.text-amber-200 {
  color: #FFE082 !important; }

.border-amber-200 {
  border-color: #FFE082 !important; }

.border-top-amber-200 {
  border-top-color: #FFE082 !important; }

.border-right-amber-200 {
  border-right-color: #FFE082 !important; }

.border-bottom-amber-200 {
  border-bottom-color: #FFE082 !important; }

.border-left-amber-200 {
  border-left-color: #FFE082 !important; }

.bg-amber-300 {
  background-color: #FFD54F !important; }
  .bg-amber-300.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-amber-300.text-auto {
  background-color: #FFD54F !important; }

.text-amber-300 {
  color: #FFD54F !important; }

.border-amber-300 {
  border-color: #FFD54F !important; }

.border-top-amber-300 {
  border-top-color: #FFD54F !important; }

.border-right-amber-300 {
  border-right-color: #FFD54F !important; }

.border-bottom-amber-300 {
  border-bottom-color: #FFD54F !important; }

.border-left-amber-300 {
  border-left-color: #FFD54F !important; }

.bg-amber-400 {
  background-color: #FFCA28 !important; }
  .bg-amber-400.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-amber-400.text-auto {
  background-color: #FFCA28 !important; }

.text-amber-400 {
  color: #FFCA28 !important; }

.border-amber-400 {
  border-color: #FFCA28 !important; }

.border-top-amber-400 {
  border-top-color: #FFCA28 !important; }

.border-right-amber-400 {
  border-right-color: #FFCA28 !important; }

.border-bottom-amber-400 {
  border-bottom-color: #FFCA28 !important; }

.border-left-amber-400 {
  border-left-color: #FFCA28 !important; }

.bg-amber-500 {
  background-color: #FFC107 !important; }
  .bg-amber-500.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-amber-500.text-auto {
  background-color: #FFC107 !important; }

.text-amber-500 {
  color: #FFC107 !important; }

.border-amber-500 {
  border-color: #FFC107 !important; }

.border-top-amber-500 {
  border-top-color: #FFC107 !important; }

.border-right-amber-500 {
  border-right-color: #FFC107 !important; }

.border-bottom-amber-500 {
  border-bottom-color: #FFC107 !important; }

.border-left-amber-500 {
  border-left-color: #FFC107 !important; }

.bg-amber.text-auto {
  background-color: #FFC107 !important; }

.bg-amber {
  background-color: #FFC107 !important; }
  .bg-amber.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.text-amber {
  color: #FFC107 !important; }

.border-amber {
  border-color: #FFC107 !important; }

.border-top-amber {
  border-top-color: #FFC107 !important; }

.border-right-amber {
  border-right-color: #FFC107 !important; }

.border-bottom-amber {
  border-bottom-color: #FFC107 !important; }

.border-left-amber {
  border-left-color: #FFC107 !important; }

.bg-amber-600 {
  background-color: #FFB300 !important; }
  .bg-amber-600.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-amber-600.text-auto {
  background-color: #FFB300 !important; }

.text-amber-600 {
  color: #FFB300 !important; }

.border-amber-600 {
  border-color: #FFB300 !important; }

.border-top-amber-600 {
  border-top-color: #FFB300 !important; }

.border-right-amber-600 {
  border-right-color: #FFB300 !important; }

.border-bottom-amber-600 {
  border-bottom-color: #FFB300 !important; }

.border-left-amber-600 {
  border-left-color: #FFB300 !important; }

.bg-amber-700 {
  background-color: #FFA000 !important; }
  .bg-amber-700.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-amber-700.text-auto {
  background-color: #FFA000 !important; }

.text-amber-700 {
  color: #FFA000 !important; }

.border-amber-700 {
  border-color: #FFA000 !important; }

.border-top-amber-700 {
  border-top-color: #FFA000 !important; }

.border-right-amber-700 {
  border-right-color: #FFA000 !important; }

.border-bottom-amber-700 {
  border-bottom-color: #FFA000 !important; }

.border-left-amber-700 {
  border-left-color: #FFA000 !important; }

.bg-amber-800 {
  background-color: #FF8F00 !important; }
  .bg-amber-800.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-amber-800.text-auto {
  background-color: #FF8F00 !important; }

.text-amber-800 {
  color: #FF8F00 !important; }

.border-amber-800 {
  border-color: #FF8F00 !important; }

.border-top-amber-800 {
  border-top-color: #FF8F00 !important; }

.border-right-amber-800 {
  border-right-color: #FF8F00 !important; }

.border-bottom-amber-800 {
  border-bottom-color: #FF8F00 !important; }

.border-left-amber-800 {
  border-left-color: #FF8F00 !important; }

.bg-amber-900 {
  background-color: #FF6F00 !important; }
  .bg-amber-900.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-amber-900.text-auto {
  background-color: #FF6F00 !important; }

.text-amber-900 {
  color: #FF6F00 !important; }

.border-amber-900 {
  border-color: #FF6F00 !important; }

.border-top-amber-900 {
  border-top-color: #FF6F00 !important; }

.border-right-amber-900 {
  border-right-color: #FF6F00 !important; }

.border-bottom-amber-900 {
  border-bottom-color: #FF6F00 !important; }

.border-left-amber-900 {
  border-left-color: #FF6F00 !important; }

.bg-amber-A100 {
  background-color: #FFE57F !important; }
  .bg-amber-A100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-amber-A100.text-auto {
  background-color: #FFE57F !important; }

.text-amber-A100 {
  color: #FFE57F !important; }

.border-amber-A100 {
  border-color: #FFE57F !important; }

.border-top-amber-A100 {
  border-top-color: #FFE57F !important; }

.border-right-amber-A100 {
  border-right-color: #FFE57F !important; }

.border-bottom-amber-A100 {
  border-bottom-color: #FFE57F !important; }

.border-left-amber-A100 {
  border-left-color: #FFE57F !important; }

.bg-amber-A200 {
  background-color: #FFD740 !important; }
  .bg-amber-A200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-amber-A200.text-auto {
  background-color: #FFD740 !important; }

.text-amber-A200 {
  color: #FFD740 !important; }

.border-amber-A200 {
  border-color: #FFD740 !important; }

.border-top-amber-A200 {
  border-top-color: #FFD740 !important; }

.border-right-amber-A200 {
  border-right-color: #FFD740 !important; }

.border-bottom-amber-A200 {
  border-bottom-color: #FFD740 !important; }

.border-left-amber-A200 {
  border-left-color: #FFD740 !important; }

.bg-amber-A400 {
  background-color: #FFC400 !important; }
  .bg-amber-A400.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-amber-A400.text-auto {
  background-color: #FFC400 !important; }

.text-amber-A400 {
  color: #FFC400 !important; }

.border-amber-A400 {
  border-color: #FFC400 !important; }

.border-top-amber-A400 {
  border-top-color: #FFC400 !important; }

.border-right-amber-A400 {
  border-right-color: #FFC400 !important; }

.border-bottom-amber-A400 {
  border-bottom-color: #FFC400 !important; }

.border-left-amber-A400 {
  border-left-color: #FFC400 !important; }

.bg-amber-A700 {
  background-color: #FFAB00 !important; }
  .bg-amber-A700.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-amber-A700.text-auto {
  background-color: #FFAB00 !important; }

.text-amber-A700 {
  color: #FFAB00 !important; }

.border-amber-A700 {
  border-color: #FFAB00 !important; }

.border-top-amber-A700 {
  border-top-color: #FFAB00 !important; }

.border-right-amber-A700 {
  border-right-color: #FFAB00 !important; }

.border-bottom-amber-A700 {
  border-bottom-color: #FFAB00 !important; }

.border-left-amber-A700 {
  border-left-color: #FFAB00 !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-deep-orange-50 {
  background-color: #FBE9E7 !important; }
  .bg-deep-orange-50.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-deep-orange-50.text-auto {
  background-color: #FBE9E7 !important; }

.text-deep-orange-50 {
  color: #FBE9E7 !important; }

.border-deep-orange-50 {
  border-color: #FBE9E7 !important; }

.border-top-deep-orange-50 {
  border-top-color: #FBE9E7 !important; }

.border-right-deep-orange-50 {
  border-right-color: #FBE9E7 !important; }

.border-bottom-deep-orange-50 {
  border-bottom-color: #FBE9E7 !important; }

.border-left-deep-orange-50 {
  border-left-color: #FBE9E7 !important; }

.bg-deep-orange-100 {
  background-color: #FFCCBC !important; }
  .bg-deep-orange-100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-deep-orange-100.text-auto {
  background-color: #FFCCBC !important; }

.text-deep-orange-100 {
  color: #FFCCBC !important; }

.border-deep-orange-100 {
  border-color: #FFCCBC !important; }

.border-top-deep-orange-100 {
  border-top-color: #FFCCBC !important; }

.border-right-deep-orange-100 {
  border-right-color: #FFCCBC !important; }

.border-bottom-deep-orange-100 {
  border-bottom-color: #FFCCBC !important; }

.border-left-deep-orange-100 {
  border-left-color: #FFCCBC !important; }

.bg-deep-orange-200 {
  background-color: #FFAB91 !important; }
  .bg-deep-orange-200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-deep-orange-200.text-auto {
  background-color: #FFAB91 !important; }

.text-deep-orange-200 {
  color: #FFAB91 !important; }

.border-deep-orange-200 {
  border-color: #FFAB91 !important; }

.border-top-deep-orange-200 {
  border-top-color: #FFAB91 !important; }

.border-right-deep-orange-200 {
  border-right-color: #FFAB91 !important; }

.border-bottom-deep-orange-200 {
  border-bottom-color: #FFAB91 !important; }

.border-left-deep-orange-200 {
  border-left-color: #FFAB91 !important; }

.bg-deep-orange-300 {
  background-color: #FF8A65 !important; }
  .bg-deep-orange-300.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-deep-orange-300.text-auto {
  background-color: #FF8A65 !important; }

.text-deep-orange-300 {
  color: #FF8A65 !important; }

.border-deep-orange-300 {
  border-color: #FF8A65 !important; }

.border-top-deep-orange-300 {
  border-top-color: #FF8A65 !important; }

.border-right-deep-orange-300 {
  border-right-color: #FF8A65 !important; }

.border-bottom-deep-orange-300 {
  border-bottom-color: #FF8A65 !important; }

.border-left-deep-orange-300 {
  border-left-color: #FF8A65 !important; }

.bg-deep-orange-400 {
  background-color: #FF7043 !important; }
  .bg-deep-orange-400.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-deep-orange-400.text-auto {
  background-color: #FF7043 !important; }

.text-deep-orange-400 {
  color: #FF7043 !important; }

.border-deep-orange-400 {
  border-color: #FF7043 !important; }

.border-top-deep-orange-400 {
  border-top-color: #FF7043 !important; }

.border-right-deep-orange-400 {
  border-right-color: #FF7043 !important; }

.border-bottom-deep-orange-400 {
  border-bottom-color: #FF7043 !important; }

.border-left-deep-orange-400 {
  border-left-color: #FF7043 !important; }

.bg-deep-orange-500 {
  background-color: #FF5722 !important; }
  .bg-deep-orange-500.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-orange-500.text-auto {
  background-color: #FF5722 !important; }

.text-deep-orange-500 {
  color: #FF5722 !important; }

.border-deep-orange-500 {
  border-color: #FF5722 !important; }

.border-top-deep-orange-500 {
  border-top-color: #FF5722 !important; }

.border-right-deep-orange-500 {
  border-right-color: #FF5722 !important; }

.border-bottom-deep-orange-500 {
  border-bottom-color: #FF5722 !important; }

.border-left-deep-orange-500 {
  border-left-color: #FF5722 !important; }

.bg-deep-orange.text-auto {
  background-color: #FF5722 !important; }

.bg-deep-orange {
  background-color: #FF5722 !important; }
  .bg-deep-orange.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.text-deep-orange {
  color: #FF5722 !important; }

.border-deep-orange {
  border-color: #FF5722 !important; }

.border-top-deep-orange {
  border-top-color: #FF5722 !important; }

.border-right-deep-orange {
  border-right-color: #FF5722 !important; }

.border-bottom-deep-orange {
  border-bottom-color: #FF5722 !important; }

.border-left-deep-orange {
  border-left-color: #FF5722 !important; }

.bg-deep-orange-600 {
  background-color: #F4511E !important; }
  .bg-deep-orange-600.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-orange-600.text-auto {
  background-color: #F4511E !important; }

.text-deep-orange-600 {
  color: #F4511E !important; }

.border-deep-orange-600 {
  border-color: #F4511E !important; }

.border-top-deep-orange-600 {
  border-top-color: #F4511E !important; }

.border-right-deep-orange-600 {
  border-right-color: #F4511E !important; }

.border-bottom-deep-orange-600 {
  border-bottom-color: #F4511E !important; }

.border-left-deep-orange-600 {
  border-left-color: #F4511E !important; }

.bg-deep-orange-700 {
  background-color: #E64A19 !important; }
  .bg-deep-orange-700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-orange-700.text-auto {
  background-color: #E64A19 !important; }

.text-deep-orange-700 {
  color: #E64A19 !important; }

.border-deep-orange-700 {
  border-color: #E64A19 !important; }

.border-top-deep-orange-700 {
  border-top-color: #E64A19 !important; }

.border-right-deep-orange-700 {
  border-right-color: #E64A19 !important; }

.border-bottom-deep-orange-700 {
  border-bottom-color: #E64A19 !important; }

.border-left-deep-orange-700 {
  border-left-color: #E64A19 !important; }

.bg-deep-orange-800 {
  background-color: #D84315 !important; }
  .bg-deep-orange-800.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-orange-800.text-auto {
  background-color: #D84315 !important; }

.text-deep-orange-800 {
  color: #D84315 !important; }

.border-deep-orange-800 {
  border-color: #D84315 !important; }

.border-top-deep-orange-800 {
  border-top-color: #D84315 !important; }

.border-right-deep-orange-800 {
  border-right-color: #D84315 !important; }

.border-bottom-deep-orange-800 {
  border-bottom-color: #D84315 !important; }

.border-left-deep-orange-800 {
  border-left-color: #D84315 !important; }

.bg-deep-orange-900 {
  background-color: #BF360C !important; }
  .bg-deep-orange-900.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-orange-900.text-auto {
  background-color: #BF360C !important; }

.text-deep-orange-900 {
  color: #BF360C !important; }

.border-deep-orange-900 {
  border-color: #BF360C !important; }

.border-top-deep-orange-900 {
  border-top-color: #BF360C !important; }

.border-right-deep-orange-900 {
  border-right-color: #BF360C !important; }

.border-bottom-deep-orange-900 {
  border-bottom-color: #BF360C !important; }

.border-left-deep-orange-900 {
  border-left-color: #BF360C !important; }

.bg-deep-orange-A100 {
  background-color: #FF9E80 !important; }
  .bg-deep-orange-A100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-deep-orange-A100.text-auto {
  background-color: #FF9E80 !important; }

.text-deep-orange-A100 {
  color: #FF9E80 !important; }

.border-deep-orange-A100 {
  border-color: #FF9E80 !important; }

.border-top-deep-orange-A100 {
  border-top-color: #FF9E80 !important; }

.border-right-deep-orange-A100 {
  border-right-color: #FF9E80 !important; }

.border-bottom-deep-orange-A100 {
  border-bottom-color: #FF9E80 !important; }

.border-left-deep-orange-A100 {
  border-left-color: #FF9E80 !important; }

.bg-deep-orange-A200 {
  background-color: #FF6E40 !important; }
  .bg-deep-orange-A200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-deep-orange-A200.text-auto {
  background-color: #FF6E40 !important; }

.text-deep-orange-A200 {
  color: #FF6E40 !important; }

.border-deep-orange-A200 {
  border-color: #FF6E40 !important; }

.border-top-deep-orange-A200 {
  border-top-color: #FF6E40 !important; }

.border-right-deep-orange-A200 {
  border-right-color: #FF6E40 !important; }

.border-bottom-deep-orange-A200 {
  border-bottom-color: #FF6E40 !important; }

.border-left-deep-orange-A200 {
  border-left-color: #FF6E40 !important; }

.bg-deep-orange-A400 {
  background-color: #FF3D00 !important; }
  .bg-deep-orange-A400.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-orange-A400.text-auto {
  background-color: #FF3D00 !important; }

.text-deep-orange-A400 {
  color: #FF3D00 !important; }

.border-deep-orange-A400 {
  border-color: #FF3D00 !important; }

.border-top-deep-orange-A400 {
  border-top-color: #FF3D00 !important; }

.border-right-deep-orange-A400 {
  border-right-color: #FF3D00 !important; }

.border-bottom-deep-orange-A400 {
  border-bottom-color: #FF3D00 !important; }

.border-left-deep-orange-A400 {
  border-left-color: #FF3D00 !important; }

.bg-deep-orange-A700 {
  background-color: #DD2C00 !important; }
  .bg-deep-orange-A700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-deep-orange-A700.text-auto {
  background-color: #DD2C00 !important; }

.text-deep-orange-A700 {
  color: #DD2C00 !important; }

.border-deep-orange-A700 {
  border-color: #DD2C00 !important; }

.border-top-deep-orange-A700 {
  border-top-color: #DD2C00 !important; }

.border-right-deep-orange-A700 {
  border-right-color: #DD2C00 !important; }

.border-bottom-deep-orange-A700 {
  border-bottom-color: #DD2C00 !important; }

.border-left-deep-orange-A700 {
  border-left-color: #DD2C00 !important; }

.bg-brown-50 {
  background-color: #EFEBE9 !important; }
  .bg-brown-50.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-brown-50.text-auto {
  background-color: #EFEBE9 !important; }

.text-brown-50 {
  color: #EFEBE9 !important; }

.border-brown-50 {
  border-color: #EFEBE9 !important; }

.border-top-brown-50 {
  border-top-color: #EFEBE9 !important; }

.border-right-brown-50 {
  border-right-color: #EFEBE9 !important; }

.border-bottom-brown-50 {
  border-bottom-color: #EFEBE9 !important; }

.border-left-brown-50 {
  border-left-color: #EFEBE9 !important; }

.bg-brown-100 {
  background-color: #D7CCC8 !important; }
  .bg-brown-100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-brown-100.text-auto {
  background-color: #D7CCC8 !important; }

.text-brown-100 {
  color: #D7CCC8 !important; }

.border-brown-100 {
  border-color: #D7CCC8 !important; }

.border-top-brown-100 {
  border-top-color: #D7CCC8 !important; }

.border-right-brown-100 {
  border-right-color: #D7CCC8 !important; }

.border-bottom-brown-100 {
  border-bottom-color: #D7CCC8 !important; }

.border-left-brown-100 {
  border-left-color: #D7CCC8 !important; }

.bg-brown-200 {
  background-color: #BCAAA4 !important; }
  .bg-brown-200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-brown-200.text-auto {
  background-color: #BCAAA4 !important; }

.text-brown-200 {
  color: #BCAAA4 !important; }

.border-brown-200 {
  border-color: #BCAAA4 !important; }

.border-top-brown-200 {
  border-top-color: #BCAAA4 !important; }

.border-right-brown-200 {
  border-right-color: #BCAAA4 !important; }

.border-bottom-brown-200 {
  border-bottom-color: #BCAAA4 !important; }

.border-left-brown-200 {
  border-left-color: #BCAAA4 !important; }

.bg-brown-300 {
  background-color: #A1887F !important; }
  .bg-brown-300.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-brown-300.text-auto {
  background-color: #A1887F !important; }

.text-brown-300 {
  color: #A1887F !important; }

.border-brown-300 {
  border-color: #A1887F !important; }

.border-top-brown-300 {
  border-top-color: #A1887F !important; }

.border-right-brown-300 {
  border-right-color: #A1887F !important; }

.border-bottom-brown-300 {
  border-bottom-color: #A1887F !important; }

.border-left-brown-300 {
  border-left-color: #A1887F !important; }

.bg-brown-400 {
  background-color: #8D6E63 !important; }
  .bg-brown-400.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-brown-400.text-auto {
  background-color: #8D6E63 !important; }

.text-brown-400 {
  color: #8D6E63 !important; }

.border-brown-400 {
  border-color: #8D6E63 !important; }

.border-top-brown-400 {
  border-top-color: #8D6E63 !important; }

.border-right-brown-400 {
  border-right-color: #8D6E63 !important; }

.border-bottom-brown-400 {
  border-bottom-color: #8D6E63 !important; }

.border-left-brown-400 {
  border-left-color: #8D6E63 !important; }

.bg-brown-500 {
  background-color: #795548 !important; }
  .bg-brown-500.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-brown-500.text-auto {
  background-color: #795548 !important; }

.text-brown-500 {
  color: #795548 !important; }

.border-brown-500 {
  border-color: #795548 !important; }

.border-top-brown-500 {
  border-top-color: #795548 !important; }

.border-right-brown-500 {
  border-right-color: #795548 !important; }

.border-bottom-brown-500 {
  border-bottom-color: #795548 !important; }

.border-left-brown-500 {
  border-left-color: #795548 !important; }

.bg-brown.text-auto {
  background-color: #795548 !important; }

.bg-brown {
  background-color: #795548 !important; }
  .bg-brown.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.text-brown {
  color: #795548 !important; }

.border-brown {
  border-color: #795548 !important; }

.border-top-brown {
  border-top-color: #795548 !important; }

.border-right-brown {
  border-right-color: #795548 !important; }

.border-bottom-brown {
  border-bottom-color: #795548 !important; }

.border-left-brown {
  border-left-color: #795548 !important; }

.bg-brown-600 {
  background-color: #6D4C41 !important; }
  .bg-brown-600.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-brown-600.text-auto {
  background-color: #6D4C41 !important; }

.text-brown-600 {
  color: #6D4C41 !important; }

.border-brown-600 {
  border-color: #6D4C41 !important; }

.border-top-brown-600 {
  border-top-color: #6D4C41 !important; }

.border-right-brown-600 {
  border-right-color: #6D4C41 !important; }

.border-bottom-brown-600 {
  border-bottom-color: #6D4C41 !important; }

.border-left-brown-600 {
  border-left-color: #6D4C41 !important; }

.bg-brown-700 {
  background-color: #5D4037 !important; }
  .bg-brown-700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-brown-700.text-auto {
  background-color: #5D4037 !important; }

.text-brown-700 {
  color: #5D4037 !important; }

.border-brown-700 {
  border-color: #5D4037 !important; }

.border-top-brown-700 {
  border-top-color: #5D4037 !important; }

.border-right-brown-700 {
  border-right-color: #5D4037 !important; }

.border-bottom-brown-700 {
  border-bottom-color: #5D4037 !important; }

.border-left-brown-700 {
  border-left-color: #5D4037 !important; }

.bg-brown-800 {
  background-color: #4E342E !important; }
  .bg-brown-800.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-brown-800.text-auto {
  background-color: #4E342E !important; }

.text-brown-800 {
  color: #4E342E !important; }

.border-brown-800 {
  border-color: #4E342E !important; }

.border-top-brown-800 {
  border-top-color: #4E342E !important; }

.border-right-brown-800 {
  border-right-color: #4E342E !important; }

.border-bottom-brown-800 {
  border-bottom-color: #4E342E !important; }

.border-left-brown-800 {
  border-left-color: #4E342E !important; }

.bg-brown-900 {
  background-color: #3E2723 !important; }
  .bg-brown-900.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-brown-900.text-auto {
  background-color: #3E2723 !important; }

.text-brown-900 {
  color: #3E2723 !important; }

.border-brown-900 {
  border-color: #3E2723 !important; }

.border-top-brown-900 {
  border-top-color: #3E2723 !important; }

.border-right-brown-900 {
  border-right-color: #3E2723 !important; }

.border-bottom-brown-900 {
  border-bottom-color: #3E2723 !important; }

.border-left-brown-900 {
  border-left-color: #3E2723 !important; }

.bg-brown-A100 {
  background-color: #D7CCC8 !important; }
  .bg-brown-A100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-brown-A100.text-auto {
  background-color: #D7CCC8 !important; }

.text-brown-A100 {
  color: #D7CCC8 !important; }

.border-brown-A100 {
  border-color: #D7CCC8 !important; }

.border-top-brown-A100 {
  border-top-color: #D7CCC8 !important; }

.border-right-brown-A100 {
  border-right-color: #D7CCC8 !important; }

.border-bottom-brown-A100 {
  border-bottom-color: #D7CCC8 !important; }

.border-left-brown-A100 {
  border-left-color: #D7CCC8 !important; }

.bg-brown-A200 {
  background-color: #BCAAA4 !important; }
  .bg-brown-A200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-brown-A200.text-auto {
  background-color: #BCAAA4 !important; }

.text-brown-A200 {
  color: #BCAAA4 !important; }

.border-brown-A200 {
  border-color: #BCAAA4 !important; }

.border-top-brown-A200 {
  border-top-color: #BCAAA4 !important; }

.border-right-brown-A200 {
  border-right-color: #BCAAA4 !important; }

.border-bottom-brown-A200 {
  border-bottom-color: #BCAAA4 !important; }

.border-left-brown-A200 {
  border-left-color: #BCAAA4 !important; }

.bg-brown-A400 {
  background-color: #8D6E63 !important; }
  .bg-brown-A400.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-brown-A400.text-auto {
  background-color: #8D6E63 !important; }

.text-brown-A400 {
  color: #8D6E63 !important; }

.border-brown-A400 {
  border-color: #8D6E63 !important; }

.border-top-brown-A400 {
  border-top-color: #8D6E63 !important; }

.border-right-brown-A400 {
  border-right-color: #8D6E63 !important; }

.border-bottom-brown-A400 {
  border-bottom-color: #8D6E63 !important; }

.border-left-brown-A400 {
  border-left-color: #8D6E63 !important; }

.bg-brown-A700 {
  background-color: #5D4037 !important; }
  .bg-brown-A700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-brown-A700.text-auto {
  background-color: #5D4037 !important; }

.text-brown-A700 {
  color: #5D4037 !important; }

.border-brown-A700 {
  border-color: #5D4037 !important; }

.border-top-brown-A700 {
  border-top-color: #5D4037 !important; }

.border-right-brown-A700 {
  border-right-color: #5D4037 !important; }

.border-bottom-brown-A700 {
  border-bottom-color: #5D4037 !important; }

.border-left-brown-A700 {
  border-left-color: #5D4037 !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-blue-grey-50 {
  background-color: #ECEFF1 !important; }
  .bg-blue-grey-50.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-blue-grey-50.text-auto {
  background-color: #ECEFF1 !important; }

.text-blue-grey-50 {
  color: #ECEFF1 !important; }

.border-blue-grey-50 {
  border-color: #ECEFF1 !important; }

.border-top-blue-grey-50 {
  border-top-color: #ECEFF1 !important; }

.border-right-blue-grey-50 {
  border-right-color: #ECEFF1 !important; }

.border-bottom-blue-grey-50 {
  border-bottom-color: #ECEFF1 !important; }

.border-left-blue-grey-50 {
  border-left-color: #ECEFF1 !important; }

.bg-blue-grey-100 {
  background-color: #CFD8DC !important; }
  .bg-blue-grey-100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-blue-grey-100.text-auto {
  background-color: #CFD8DC !important; }

.text-blue-grey-100 {
  color: #CFD8DC !important; }

.border-blue-grey-100 {
  border-color: #CFD8DC !important; }

.border-top-blue-grey-100 {
  border-top-color: #CFD8DC !important; }

.border-right-blue-grey-100 {
  border-right-color: #CFD8DC !important; }

.border-bottom-blue-grey-100 {
  border-bottom-color: #CFD8DC !important; }

.border-left-blue-grey-100 {
  border-left-color: #CFD8DC !important; }

.bg-blue-grey-200 {
  background-color: #B0BEC5 !important; }
  .bg-blue-grey-200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-blue-grey-200.text-auto {
  background-color: #B0BEC5 !important; }

.text-blue-grey-200 {
  color: #B0BEC5 !important; }

.border-blue-grey-200 {
  border-color: #B0BEC5 !important; }

.border-top-blue-grey-200 {
  border-top-color: #B0BEC5 !important; }

.border-right-blue-grey-200 {
  border-right-color: #B0BEC5 !important; }

.border-bottom-blue-grey-200 {
  border-bottom-color: #B0BEC5 !important; }

.border-left-blue-grey-200 {
  border-left-color: #B0BEC5 !important; }

.bg-blue-grey-300 {
  background-color: #90A4AE !important; }
  .bg-blue-grey-300.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-blue-grey-300.text-auto {
  background-color: #90A4AE !important; }

.text-blue-grey-300 {
  color: #90A4AE !important; }

.border-blue-grey-300 {
  border-color: #90A4AE !important; }

.border-top-blue-grey-300 {
  border-top-color: #90A4AE !important; }

.border-right-blue-grey-300 {
  border-right-color: #90A4AE !important; }

.border-bottom-blue-grey-300 {
  border-bottom-color: #90A4AE !important; }

.border-left-blue-grey-300 {
  border-left-color: #90A4AE !important; }

.bg-blue-grey-400 {
  background-color: #78909C !important; }
  .bg-blue-grey-400.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-blue-grey-400.text-auto {
  background-color: #78909C !important; }

.text-blue-grey-400 {
  color: #78909C !important; }

.border-blue-grey-400 {
  border-color: #78909C !important; }

.border-top-blue-grey-400 {
  border-top-color: #78909C !important; }

.border-right-blue-grey-400 {
  border-right-color: #78909C !important; }

.border-bottom-blue-grey-400 {
  border-bottom-color: #78909C !important; }

.border-left-blue-grey-400 {
  border-left-color: #78909C !important; }

.bg-blue-grey-500 {
  background-color: #607D8B !important; }
  .bg-blue-grey-500.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-blue-grey-500.text-auto {
  background-color: #607D8B !important; }

.text-blue-grey-500 {
  color: #607D8B !important; }

.border-blue-grey-500 {
  border-color: #607D8B !important; }

.border-top-blue-grey-500 {
  border-top-color: #607D8B !important; }

.border-right-blue-grey-500 {
  border-right-color: #607D8B !important; }

.border-bottom-blue-grey-500 {
  border-bottom-color: #607D8B !important; }

.border-left-blue-grey-500 {
  border-left-color: #607D8B !important; }

.bg-blue-grey.text-auto {
  background-color: #607D8B !important; }

.bg-blue-grey {
  background-color: #607D8B !important; }
  .bg-blue-grey.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.text-blue-grey {
  color: #607D8B !important; }

.border-blue-grey {
  border-color: #607D8B !important; }

.border-top-blue-grey {
  border-top-color: #607D8B !important; }

.border-right-blue-grey {
  border-right-color: #607D8B !important; }

.border-bottom-blue-grey {
  border-bottom-color: #607D8B !important; }

.border-left-blue-grey {
  border-left-color: #607D8B !important; }

.bg-blue-grey-600 {
  background-color: #546E7A !important; }
  .bg-blue-grey-600.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-blue-grey-600.text-auto {
  background-color: #546E7A !important; }

.text-blue-grey-600 {
  color: #546E7A !important; }

.border-blue-grey-600 {
  border-color: #546E7A !important; }

.border-top-blue-grey-600 {
  border-top-color: #546E7A !important; }

.border-right-blue-grey-600 {
  border-right-color: #546E7A !important; }

.border-bottom-blue-grey-600 {
  border-bottom-color: #546E7A !important; }

.border-left-blue-grey-600 {
  border-left-color: #546E7A !important; }

.bg-blue-grey-700 {
  background-color: #455A64 !important; }
  .bg-blue-grey-700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-blue-grey-700.text-auto {
  background-color: #455A64 !important; }

.text-blue-grey-700 {
  color: #455A64 !important; }

.border-blue-grey-700 {
  border-color: #455A64 !important; }

.border-top-blue-grey-700 {
  border-top-color: #455A64 !important; }

.border-right-blue-grey-700 {
  border-right-color: #455A64 !important; }

.border-bottom-blue-grey-700 {
  border-bottom-color: #455A64 !important; }

.border-left-blue-grey-700 {
  border-left-color: #455A64 !important; }

.bg-blue-grey-800 {
  background-color: #37474F !important; }
  .bg-blue-grey-800.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-blue-grey-800.text-auto {
  background-color: #37474F !important; }

.text-blue-grey-800 {
  color: #37474F !important; }

.border-blue-grey-800 {
  border-color: #37474F !important; }

.border-top-blue-grey-800 {
  border-top-color: #37474F !important; }

.border-right-blue-grey-800 {
  border-right-color: #37474F !important; }

.border-bottom-blue-grey-800 {
  border-bottom-color: #37474F !important; }

.border-left-blue-grey-800 {
  border-left-color: #37474F !important; }

.bg-blue-grey-900 {
  background-color: #263238 !important; }
  .bg-blue-grey-900.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-blue-grey-900.text-auto {
  background-color: #263238 !important; }

.text-blue-grey-900 {
  color: #263238 !important; }

.border-blue-grey-900 {
  border-color: #263238 !important; }

.border-top-blue-grey-900 {
  border-top-color: #263238 !important; }

.border-right-blue-grey-900 {
  border-right-color: #263238 !important; }

.border-bottom-blue-grey-900 {
  border-bottom-color: #263238 !important; }

.border-left-blue-grey-900 {
  border-left-color: #263238 !important; }

.bg-blue-grey-A100 {
  background-color: #CFD8DC !important; }
  .bg-blue-grey-A100.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-blue-grey-A100.text-auto {
  background-color: #CFD8DC !important; }

.text-blue-grey-A100 {
  color: #CFD8DC !important; }

.border-blue-grey-A100 {
  border-color: #CFD8DC !important; }

.border-top-blue-grey-A100 {
  border-top-color: #CFD8DC !important; }

.border-right-blue-grey-A100 {
  border-right-color: #CFD8DC !important; }

.border-bottom-blue-grey-A100 {
  border-bottom-color: #CFD8DC !important; }

.border-left-blue-grey-A100 {
  border-left-color: #CFD8DC !important; }

.bg-blue-grey-A200 {
  background-color: #B0BEC5 !important; }
  .bg-blue-grey-A200.fuse-ripple-ready .fuse-ripple {
    background: rgba(0, 0, 0, 0.12); }

.bg-blue-grey-A200.text-auto {
  background-color: #B0BEC5 !important; }

.text-blue-grey-A200 {
  color: #B0BEC5 !important; }

.border-blue-grey-A200 {
  border-color: #B0BEC5 !important; }

.border-top-blue-grey-A200 {
  border-top-color: #B0BEC5 !important; }

.border-right-blue-grey-A200 {
  border-right-color: #B0BEC5 !important; }

.border-bottom-blue-grey-A200 {
  border-bottom-color: #B0BEC5 !important; }

.border-left-blue-grey-A200 {
  border-left-color: #B0BEC5 !important; }

.bg-blue-grey-A400 {
  background-color: #78909C !important; }
  .bg-blue-grey-A400.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-blue-grey-A400.text-auto {
  background-color: #78909C !important; }

.text-blue-grey-A400 {
  color: #78909C !important; }

.border-blue-grey-A400 {
  border-color: #78909C !important; }

.border-top-blue-grey-A400 {
  border-top-color: #78909C !important; }

.border-right-blue-grey-A400 {
  border-right-color: #78909C !important; }

.border-bottom-blue-grey-A400 {
  border-bottom-color: #78909C !important; }

.border-left-blue-grey-A400 {
  border-left-color: #78909C !important; }

.bg-blue-grey-A700 {
  background-color: #455A64 !important; }
  .bg-blue-grey-A700.fuse-ripple-ready .fuse-ripple {
    background: rgba(255, 255, 255, 0.28); }

.bg-blue-grey-A700.text-auto {
  background-color: #455A64 !important; }

.text-blue-grey-A700 {
  color: #455A64 !important; }

.border-blue-grey-A700 {
  border-color: #455A64 !important; }

.border-top-blue-grey-A700 {
  border-top-color: #455A64 !important; }

.border-right-blue-grey-A700 {
  border-right-color: #455A64 !important; }

.border-bottom-blue-grey-A700 {
  border-bottom-color: #455A64 !important; }

.border-left-blue-grey-A700 {
  border-left-color: #455A64 !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-pink-400.text-auto, .bg-pink-500.text-auto, .bg-pink.text-auto, .bg-pink-600.text-auto, .bg-pink-700.text-auto, .bg-pink-800.text-auto, .bg-pink-900.text-auto, .bg-pink-A200.text-auto, .bg-pink-A400.text-auto, .bg-pink-A700.text-auto, .bg-purple-300.text-auto, .bg-purple-400.text-auto, .bg-purple-500.text-auto, .bg-purple.text-auto, .bg-purple-600.text-auto, .bg-purple-700.text-auto, .bg-purple-800.text-auto, .bg-purple-900.text-auto, .bg-purple-A200.text-auto, .bg-purple-A400.text-auto, .bg-purple-A700.text-auto, .bg-deep-purple-300.text-auto, .bg-deep-purple-400.text-auto, .bg-deep-purple-500.text-auto, .bg-deep-purple.text-auto, .bg-deep-purple-600.text-auto, .bg-deep-purple-700.text-auto, .bg-deep-purple-800.text-auto, .bg-deep-purple-900.text-auto, .bg-deep-purple-A200.text-auto, .bg-deep-purple-A400.text-auto, .bg-deep-purple-A700.text-auto, .bg-indigo-300.text-auto, .bg-indigo-400.text-auto, .bg-indigo-500.text-auto, .bg-indigo.text-auto, .bg-indigo-600.text-auto, .bg-indigo-700.text-auto, .bg-indigo-800.text-auto, .bg-indigo-900.text-auto, .bg-indigo-A200.text-auto, .bg-indigo-A400.text-auto, .bg-indigo-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-light-blue-700.text-auto, .bg-light-blue-800.text-auto, .bg-light-blue-900.text-auto, .bg-light-blue-A700.text-auto, .bg-cyan-700.text-auto, .bg-cyan-800.text-auto, .bg-cyan-900.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-light-green-700.text-auto, .bg-light-green-800.text-auto, .bg-light-green-900.text-auto, .bg-lime-900.text-auto, .bg-orange-900.text-auto, .bg-deep-orange-500.text-auto, .bg-deep-orange.text-auto, .bg-deep-orange-600.text-auto, .bg-deep-orange-700.text-auto, .bg-deep-orange-800.text-auto, .bg-deep-orange-900.text-auto, .bg-deep-orange-A400.text-auto, .bg-deep-orange-A700.text-auto, .bg-brown-300.text-auto, .bg-brown-400.text-auto, .bg-brown-500.text-auto, .bg-brown.text-auto, .bg-brown-600.text-auto, .bg-brown-700.text-auto, .bg-brown-800.text-auto, .bg-brown-900.text-auto, .bg-brown-A400.text-auto, .bg-brown-A700.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-blue-grey-400.text-auto, .bg-blue-grey-500.text-auto, .bg-blue-grey.text-auto, .bg-blue-grey-600.text-auto, .bg-blue-grey-700.text-auto, .bg-blue-grey-800.text-auto, .bg-blue-grey-900.text-auto, .bg-blue-grey-A400.text-auto, .bg-blue-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-pink-400.text-auto a:hover, .bg-pink-500.text-auto a:hover, .bg-pink.text-auto a:hover, .bg-pink-600.text-auto a:hover, .bg-pink-700.text-auto a:hover, .bg-pink-800.text-auto a:hover, .bg-pink-900.text-auto a:hover, .bg-pink-A200.text-auto a:hover, .bg-pink-A400.text-auto a:hover, .bg-pink-A700.text-auto a:hover, .bg-purple-300.text-auto a:hover, .bg-purple-400.text-auto a:hover, .bg-purple-500.text-auto a:hover, .bg-purple.text-auto a:hover, .bg-purple-600.text-auto a:hover, .bg-purple-700.text-auto a:hover, .bg-purple-800.text-auto a:hover, .bg-purple-900.text-auto a:hover, .bg-purple-A200.text-auto a:hover, .bg-purple-A400.text-auto a:hover, .bg-purple-A700.text-auto a:hover, .bg-deep-purple-300.text-auto a:hover, .bg-deep-purple-400.text-auto a:hover, .bg-deep-purple-500.text-auto a:hover, .bg-deep-purple.text-auto a:hover, .bg-deep-purple-600.text-auto a:hover, .bg-deep-purple-700.text-auto a:hover, .bg-deep-purple-800.text-auto a:hover, .bg-deep-purple-900.text-auto a:hover, .bg-deep-purple-A200.text-auto a:hover, .bg-deep-purple-A400.text-auto a:hover, .bg-deep-purple-A700.text-auto a:hover, .bg-indigo-300.text-auto a:hover, .bg-indigo-400.text-auto a:hover, .bg-indigo-500.text-auto a:hover, .bg-indigo.text-auto a:hover, .bg-indigo-600.text-auto a:hover, .bg-indigo-700.text-auto a:hover, .bg-indigo-800.text-auto a:hover, .bg-indigo-900.text-auto a:hover, .bg-indigo-A200.text-auto a:hover, .bg-indigo-A400.text-auto a:hover, .bg-indigo-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-light-blue-700.text-auto a:hover, .bg-light-blue-800.text-auto a:hover, .bg-light-blue-900.text-auto a:hover, .bg-light-blue-A700.text-auto a:hover, .bg-cyan-700.text-auto a:hover, .bg-cyan-800.text-auto a:hover, .bg-cyan-900.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-light-green-700.text-auto a:hover, .bg-light-green-800.text-auto a:hover, .bg-light-green-900.text-auto a:hover, .bg-lime-900.text-auto a:hover, .bg-orange-900.text-auto a:hover, .bg-deep-orange-500.text-auto a:hover, .bg-deep-orange.text-auto a:hover, .bg-deep-orange-600.text-auto a:hover, .bg-deep-orange-700.text-auto a:hover, .bg-deep-orange-800.text-auto a:hover, .bg-deep-orange-900.text-auto a:hover, .bg-deep-orange-A400.text-auto a:hover, .bg-deep-orange-A700.text-auto a:hover, .bg-brown-300.text-auto a:hover, .bg-brown-400.text-auto a:hover, .bg-brown-500.text-auto a:hover, .bg-brown.text-auto a:hover, .bg-brown-600.text-auto a:hover, .bg-brown-700.text-auto a:hover, .bg-brown-800.text-auto a:hover, .bg-brown-900.text-auto a:hover, .bg-brown-A400.text-auto a:hover, .bg-brown-A700.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-blue-grey-400.text-auto a:hover, .bg-blue-grey-500.text-auto a:hover, .bg-blue-grey.text-auto a:hover, .bg-blue-grey-600.text-auto a:hover, .bg-blue-grey-700.text-auto a:hover, .bg-blue-grey-800.text-auto a:hover, .bg-blue-grey-900.text-auto a:hover, .bg-blue-grey-A400.text-auto a:hover, .bg-blue-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-pink-400.text-auto i, .bg-pink-400.text-auto [class^="icon-"], .bg-pink-400.text-auto [class*=" icon-"], .bg-pink-500.text-auto i, .bg-pink-500.text-auto [class^="icon-"], .bg-pink-500.text-auto [class*=" icon-"], .bg-pink.text-auto i, .bg-pink.text-auto [class^="icon-"], .bg-pink.text-auto [class*=" icon-"], .bg-pink-600.text-auto i, .bg-pink-600.text-auto [class^="icon-"], .bg-pink-600.text-auto [class*=" icon-"], .bg-pink-700.text-auto i, .bg-pink-700.text-auto [class^="icon-"], .bg-pink-700.text-auto [class*=" icon-"], .bg-pink-800.text-auto i, .bg-pink-800.text-auto [class^="icon-"], .bg-pink-800.text-auto [class*=" icon-"], .bg-pink-900.text-auto i, .bg-pink-900.text-auto [class^="icon-"], .bg-pink-900.text-auto [class*=" icon-"], .bg-pink-A200.text-auto i, .bg-pink-A200.text-auto [class^="icon-"], .bg-pink-A200.text-auto [class*=" icon-"], .bg-pink-A400.text-auto i, .bg-pink-A400.text-auto [class^="icon-"], .bg-pink-A400.text-auto [class*=" icon-"], .bg-pink-A700.text-auto i, .bg-pink-A700.text-auto [class^="icon-"], .bg-pink-A700.text-auto [class*=" icon-"], .bg-purple-300.text-auto i, .bg-purple-300.text-auto [class^="icon-"], .bg-purple-300.text-auto [class*=" icon-"], .bg-purple-400.text-auto i, .bg-purple-400.text-auto [class^="icon-"], .bg-purple-400.text-auto [class*=" icon-"], .bg-purple-500.text-auto i, .bg-purple-500.text-auto [class^="icon-"], .bg-purple-500.text-auto [class*=" icon-"], .bg-purple.text-auto i, .bg-purple.text-auto [class^="icon-"], .bg-purple.text-auto [class*=" icon-"], .bg-purple-600.text-auto i, .bg-purple-600.text-auto [class^="icon-"], .bg-purple-600.text-auto [class*=" icon-"], .bg-purple-700.text-auto i, .bg-purple-700.text-auto [class^="icon-"], .bg-purple-700.text-auto [class*=" icon-"], .bg-purple-800.text-auto i, .bg-purple-800.text-auto [class^="icon-"], .bg-purple-800.text-auto [class*=" icon-"], .bg-purple-900.text-auto i, .bg-purple-900.text-auto [class^="icon-"], .bg-purple-900.text-auto [class*=" icon-"], .bg-purple-A200.text-auto i, .bg-purple-A200.text-auto [class^="icon-"], .bg-purple-A200.text-auto [class*=" icon-"], .bg-purple-A400.text-auto i, .bg-purple-A400.text-auto [class^="icon-"], .bg-purple-A400.text-auto [class*=" icon-"], .bg-purple-A700.text-auto i, .bg-purple-A700.text-auto [class^="icon-"], .bg-purple-A700.text-auto [class*=" icon-"], .bg-deep-purple-300.text-auto i, .bg-deep-purple-300.text-auto [class^="icon-"], .bg-deep-purple-300.text-auto [class*=" icon-"], .bg-deep-purple-400.text-auto i, .bg-deep-purple-400.text-auto [class^="icon-"], .bg-deep-purple-400.text-auto [class*=" icon-"], .bg-deep-purple-500.text-auto i, .bg-deep-purple-500.text-auto [class^="icon-"], .bg-deep-purple-500.text-auto [class*=" icon-"], .bg-deep-purple.text-auto i, .bg-deep-purple.text-auto [class^="icon-"], .bg-deep-purple.text-auto [class*=" icon-"], .bg-deep-purple-600.text-auto i, .bg-deep-purple-600.text-auto [class^="icon-"], .bg-deep-purple-600.text-auto [class*=" icon-"], .bg-deep-purple-700.text-auto i, .bg-deep-purple-700.text-auto [class^="icon-"], .bg-deep-purple-700.text-auto [class*=" icon-"], .bg-deep-purple-800.text-auto i, .bg-deep-purple-800.text-auto [class^="icon-"], .bg-deep-purple-800.text-auto [class*=" icon-"], .bg-deep-purple-900.text-auto i, .bg-deep-purple-900.text-auto [class^="icon-"], .bg-deep-purple-900.text-auto [class*=" icon-"], .bg-deep-purple-A200.text-auto i, .bg-deep-purple-A200.text-auto [class^="icon-"], .bg-deep-purple-A200.text-auto [class*=" icon-"], .bg-deep-purple-A400.text-auto i, .bg-deep-purple-A400.text-auto [class^="icon-"], .bg-deep-purple-A400.text-auto [class*=" icon-"], .bg-deep-purple-A700.text-auto i, .bg-deep-purple-A700.text-auto [class^="icon-"], .bg-deep-purple-A700.text-auto [class*=" icon-"], .bg-indigo-300.text-auto i, .bg-indigo-300.text-auto [class^="icon-"], .bg-indigo-300.text-auto [class*=" icon-"], .bg-indigo-400.text-auto i, .bg-indigo-400.text-auto [class^="icon-"], .bg-indigo-400.text-auto [class*=" icon-"], .bg-indigo-500.text-auto i, .bg-indigo-500.text-auto [class^="icon-"], .bg-indigo-500.text-auto [class*=" icon-"], .bg-indigo.text-auto i, .bg-indigo.text-auto [class^="icon-"], .bg-indigo.text-auto [class*=" icon-"], .bg-indigo-600.text-auto i, .bg-indigo-600.text-auto [class^="icon-"], .bg-indigo-600.text-auto [class*=" icon-"], .bg-indigo-700.text-auto i, .bg-indigo-700.text-auto [class^="icon-"], .bg-indigo-700.text-auto [class*=" icon-"], .bg-indigo-800.text-auto i, .bg-indigo-800.text-auto [class^="icon-"], .bg-indigo-800.text-auto [class*=" icon-"], .bg-indigo-900.text-auto i, .bg-indigo-900.text-auto [class^="icon-"], .bg-indigo-900.text-auto [class*=" icon-"], .bg-indigo-A200.text-auto i, .bg-indigo-A200.text-auto [class^="icon-"], .bg-indigo-A200.text-auto [class*=" icon-"], .bg-indigo-A400.text-auto i, .bg-indigo-A400.text-auto [class^="icon-"], .bg-indigo-A400.text-auto [class*=" icon-"], .bg-indigo-A700.text-auto i, .bg-indigo-A700.text-auto [class^="icon-"], .bg-indigo-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-light-blue-700.text-auto i, .bg-light-blue-700.text-auto [class^="icon-"], .bg-light-blue-700.text-auto [class*=" icon-"], .bg-light-blue-800.text-auto i, .bg-light-blue-800.text-auto [class^="icon-"], .bg-light-blue-800.text-auto [class*=" icon-"], .bg-light-blue-900.text-auto i, .bg-light-blue-900.text-auto [class^="icon-"], .bg-light-blue-900.text-auto [class*=" icon-"], .bg-light-blue-A700.text-auto i, .bg-light-blue-A700.text-auto [class^="icon-"], .bg-light-blue-A700.text-auto [class*=" icon-"], .bg-cyan-700.text-auto i, .bg-cyan-700.text-auto [class^="icon-"], .bg-cyan-700.text-auto [class*=" icon-"], .bg-cyan-800.text-auto i, .bg-cyan-800.text-auto [class^="icon-"], .bg-cyan-800.text-auto [class*=" icon-"], .bg-cyan-900.text-auto i, .bg-cyan-900.text-auto [class^="icon-"], .bg-cyan-900.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-light-green-700.text-auto i, .bg-light-green-700.text-auto [class^="icon-"], .bg-light-green-700.text-auto [class*=" icon-"], .bg-light-green-800.text-auto i, .bg-light-green-800.text-auto [class^="icon-"], .bg-light-green-800.text-auto [class*=" icon-"], .bg-light-green-900.text-auto i, .bg-light-green-900.text-auto [class^="icon-"], .bg-light-green-900.text-auto [class*=" icon-"], .bg-lime-900.text-auto i, .bg-lime-900.text-auto [class^="icon-"], .bg-lime-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-deep-orange-500.text-auto i, .bg-deep-orange-500.text-auto [class^="icon-"], .bg-deep-orange-500.text-auto [class*=" icon-"], .bg-deep-orange.text-auto i, .bg-deep-orange.text-auto [class^="icon-"], .bg-deep-orange.text-auto [class*=" icon-"], .bg-deep-orange-600.text-auto i, .bg-deep-orange-600.text-auto [class^="icon-"], .bg-deep-orange-600.text-auto [class*=" icon-"], .bg-deep-orange-700.text-auto i, .bg-deep-orange-700.text-auto [class^="icon-"], .bg-deep-orange-700.text-auto [class*=" icon-"], .bg-deep-orange-800.text-auto i, .bg-deep-orange-800.text-auto [class^="icon-"], .bg-deep-orange-800.text-auto [class*=" icon-"], .bg-deep-orange-900.text-auto i, .bg-deep-orange-900.text-auto [class^="icon-"], .bg-deep-orange-900.text-auto [class*=" icon-"], .bg-deep-orange-A400.text-auto i, .bg-deep-orange-A400.text-auto [class^="icon-"], .bg-deep-orange-A400.text-auto [class*=" icon-"], .bg-deep-orange-A700.text-auto i, .bg-deep-orange-A700.text-auto [class^="icon-"], .bg-deep-orange-A700.text-auto [class*=" icon-"], .bg-brown-300.text-auto i, .bg-brown-300.text-auto [class^="icon-"], .bg-brown-300.text-auto [class*=" icon-"], .bg-brown-400.text-auto i, .bg-brown-400.text-auto [class^="icon-"], .bg-brown-400.text-auto [class*=" icon-"], .bg-brown-500.text-auto i, .bg-brown-500.text-auto [class^="icon-"], .bg-brown-500.text-auto [class*=" icon-"], .bg-brown.text-auto i, .bg-brown.text-auto [class^="icon-"], .bg-brown.text-auto [class*=" icon-"], .bg-brown-600.text-auto i, .bg-brown-600.text-auto [class^="icon-"], .bg-brown-600.text-auto [class*=" icon-"], .bg-brown-700.text-auto i, .bg-brown-700.text-auto [class^="icon-"], .bg-brown-700.text-auto [class*=" icon-"], .bg-brown-800.text-auto i, .bg-brown-800.text-auto [class^="icon-"], .bg-brown-800.text-auto [class*=" icon-"], .bg-brown-900.text-auto i, .bg-brown-900.text-auto [class^="icon-"], .bg-brown-900.text-auto [class*=" icon-"], .bg-brown-A400.text-auto i, .bg-brown-A400.text-auto [class^="icon-"], .bg-brown-A400.text-auto [class*=" icon-"], .bg-brown-A700.text-auto i, .bg-brown-A700.text-auto [class^="icon-"], .bg-brown-A700.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-blue-grey-400.text-auto i, .bg-blue-grey-400.text-auto [class^="icon-"], .bg-blue-grey-400.text-auto [class*=" icon-"], .bg-blue-grey-500.text-auto i, .bg-blue-grey-500.text-auto [class^="icon-"], .bg-blue-grey-500.text-auto [class*=" icon-"], .bg-blue-grey.text-auto i, .bg-blue-grey.text-auto [class^="icon-"], .bg-blue-grey.text-auto [class*=" icon-"], .bg-blue-grey-600.text-auto i, .bg-blue-grey-600.text-auto [class^="icon-"], .bg-blue-grey-600.text-auto [class*=" icon-"], .bg-blue-grey-700.text-auto i, .bg-blue-grey-700.text-auto [class^="icon-"], .bg-blue-grey-700.text-auto [class*=" icon-"], .bg-blue-grey-800.text-auto i, .bg-blue-grey-800.text-auto [class^="icon-"], .bg-blue-grey-800.text-auto [class*=" icon-"], .bg-blue-grey-900.text-auto i, .bg-blue-grey-900.text-auto [class^="icon-"], .bg-blue-grey-900.text-auto [class*=" icon-"], .bg-blue-grey-A400.text-auto i, .bg-blue-grey-A400.text-auto [class^="icon-"], .bg-blue-grey-A400.text-auto [class*=" icon-"], .bg-blue-grey-A700.text-auto i, .bg-blue-grey-A700.text-auto [class^="icon-"], .bg-blue-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-pink-400.text-auto .text-muted, .bg-pink-500.text-auto .text-muted, .bg-pink.text-auto .text-muted, .bg-pink-600.text-auto .text-muted, .bg-pink-700.text-auto .text-muted, .bg-pink-800.text-auto .text-muted, .bg-pink-900.text-auto .text-muted, .bg-pink-A200.text-auto .text-muted, .bg-pink-A400.text-auto .text-muted, .bg-pink-A700.text-auto .text-muted, .bg-purple-300.text-auto .text-muted, .bg-purple-400.text-auto .text-muted, .bg-purple-500.text-auto .text-muted, .bg-purple.text-auto .text-muted, .bg-purple-600.text-auto .text-muted, .bg-purple-700.text-auto .text-muted, .bg-purple-800.text-auto .text-muted, .bg-purple-900.text-auto .text-muted, .bg-purple-A200.text-auto .text-muted, .bg-purple-A400.text-auto .text-muted, .bg-purple-A700.text-auto .text-muted, .bg-deep-purple-300.text-auto .text-muted, .bg-deep-purple-400.text-auto .text-muted, .bg-deep-purple-500.text-auto .text-muted, .bg-deep-purple.text-auto .text-muted, .bg-deep-purple-600.text-auto .text-muted, .bg-deep-purple-700.text-auto .text-muted, .bg-deep-purple-800.text-auto .text-muted, .bg-deep-purple-900.text-auto .text-muted, .bg-deep-purple-A200.text-auto .text-muted, .bg-deep-purple-A400.text-auto .text-muted, .bg-deep-purple-A700.text-auto .text-muted, .bg-indigo-300.text-auto .text-muted, .bg-indigo-400.text-auto .text-muted, .bg-indigo-500.text-auto .text-muted, .bg-indigo.text-auto .text-muted, .bg-indigo-600.text-auto .text-muted, .bg-indigo-700.text-auto .text-muted, .bg-indigo-800.text-auto .text-muted, .bg-indigo-900.text-auto .text-muted, .bg-indigo-A200.text-auto .text-muted, .bg-indigo-A400.text-auto .text-muted, .bg-indigo-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-light-blue-700.text-auto .text-muted, .bg-light-blue-800.text-auto .text-muted, .bg-light-blue-900.text-auto .text-muted, .bg-light-blue-A700.text-auto .text-muted, .bg-cyan-700.text-auto .text-muted, .bg-cyan-800.text-auto .text-muted, .bg-cyan-900.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-light-green-700.text-auto .text-muted, .bg-light-green-800.text-auto .text-muted, .bg-light-green-900.text-auto .text-muted, .bg-lime-900.text-auto .text-muted, .bg-orange-900.text-auto .text-muted, .bg-deep-orange-500.text-auto .text-muted, .bg-deep-orange.text-auto .text-muted, .bg-deep-orange-600.text-auto .text-muted, .bg-deep-orange-700.text-auto .text-muted, .bg-deep-orange-800.text-auto .text-muted, .bg-deep-orange-900.text-auto .text-muted, .bg-deep-orange-A400.text-auto .text-muted, .bg-deep-orange-A700.text-auto .text-muted, .bg-brown-300.text-auto .text-muted, .bg-brown-400.text-auto .text-muted, .bg-brown-500.text-auto .text-muted, .bg-brown.text-auto .text-muted, .bg-brown-600.text-auto .text-muted, .bg-brown-700.text-auto .text-muted, .bg-brown-800.text-auto .text-muted, .bg-brown-900.text-auto .text-muted, .bg-brown-A400.text-auto .text-muted, .bg-brown-A700.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-blue-grey-400.text-auto .text-muted, .bg-blue-grey-500.text-auto .text-muted, .bg-blue-grey.text-auto .text-muted, .bg-blue-grey-600.text-auto .text-muted, .bg-blue-grey-700.text-auto .text-muted, .bg-blue-grey-800.text-auto .text-muted, .bg-blue-grey-900.text-auto .text-muted, .bg-blue-grey-A400.text-auto .text-muted, .bg-blue-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-pink-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-pink-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-pink.text-auto .fuse-ripple-ready .fuse-ripple, .bg-pink-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-pink-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-pink-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-pink-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-pink-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-pink-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-pink-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-purple-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-purple-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-purple-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-purple.text-auto .fuse-ripple-ready .fuse-ripple, .bg-purple-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-purple-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-purple-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-purple-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-purple-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-purple-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-purple-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-purple-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-purple-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-purple-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-purple.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-purple-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-purple-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-purple-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-purple-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-purple-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-purple-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-purple-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-indigo-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-indigo-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-indigo-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-indigo.text-auto .fuse-ripple-ready .fuse-ripple, .bg-indigo-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-indigo-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-indigo-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-indigo-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-indigo-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-indigo-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-indigo-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-light-blue-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-blue-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-blue-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-blue-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-cyan-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-cyan-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-cyan-900.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-light-green-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-green-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-green-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-lime-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-orange-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-orange-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-orange.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-orange-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-orange-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-orange-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-orange-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-orange-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-orange-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-brown-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-brown-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-brown-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-brown.text-auto .fuse-ripple-ready .fuse-ripple, .bg-brown-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-brown-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-brown-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-brown-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-brown-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-brown-A700.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-blue-grey-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-grey-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-grey.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-grey-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-grey-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-grey-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-grey-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-grey-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-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-pink-400.text-auto .form-control, .bg-pink-500.text-auto .form-control, .bg-pink.text-auto .form-control, .bg-pink-600.text-auto .form-control, .bg-pink-700.text-auto .form-control, .bg-pink-800.text-auto .form-control, .bg-pink-900.text-auto .form-control, .bg-pink-A200.text-auto .form-control, .bg-pink-A400.text-auto .form-control, .bg-pink-A700.text-auto .form-control, .bg-purple-300.text-auto .form-control, .bg-purple-400.text-auto .form-control, .bg-purple-500.text-auto .form-control, .bg-purple.text-auto .form-control, .bg-purple-600.text-auto .form-control, .bg-purple-700.text-auto .form-control, .bg-purple-800.text-auto .form-control, .bg-purple-900.text-auto .form-control, .bg-purple-A200.text-auto .form-control, .bg-purple-A400.text-auto .form-control, .bg-purple-A700.text-auto .form-control, .bg-deep-purple-300.text-auto .form-control, .bg-deep-purple-400.text-auto .form-control, .bg-deep-purple-500.text-auto .form-control, .bg-deep-purple.text-auto .form-control, .bg-deep-purple-600.text-auto .form-control, .bg-deep-purple-700.text-auto .form-control, .bg-deep-purple-800.text-auto .form-control, .bg-deep-purple-900.text-auto .form-control, .bg-deep-purple-A200.text-auto .form-control, .bg-deep-purple-A400.text-auto .form-control, .bg-deep-purple-A700.text-auto .form-control, .bg-indigo-300.text-auto .form-control, .bg-indigo-400.text-auto .form-control, .bg-indigo-500.text-auto .form-control, .bg-indigo.text-auto .form-control, .bg-indigo-600.text-auto .form-control, .bg-indigo-700.text-auto .form-control, .bg-indigo-800.text-auto .form-control, .bg-indigo-900.text-auto .form-control, .bg-indigo-A200.text-auto .form-control, .bg-indigo-A400.text-auto .form-control, .bg-indigo-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-light-blue-700.text-auto .form-control, .bg-light-blue-800.text-auto .form-control, .bg-light-blue-900.text-auto .form-control, .bg-light-blue-A700.text-auto .form-control, .bg-cyan-700.text-auto .form-control, .bg-cyan-800.text-auto .form-control, .bg-cyan-900.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-light-green-700.text-auto .form-control, .bg-light-green-800.text-auto .form-control, .bg-light-green-900.text-auto .form-control, .bg-lime-900.text-auto .form-control, .bg-orange-900.text-auto .form-control, .bg-deep-orange-500.text-auto .form-control, .bg-deep-orange.text-auto .form-control, .bg-deep-orange-600.text-auto .form-control, .bg-deep-orange-700.text-auto .form-control, .bg-deep-orange-800.text-auto .form-control, .bg-deep-orange-900.text-auto .form-control, .bg-deep-orange-A400.text-auto .form-control, .bg-deep-orange-A700.text-auto .form-control, .bg-brown-300.text-auto .form-control, .bg-brown-400.text-auto .form-control, .bg-brown-500.text-auto .form-control, .bg-brown.text-auto .form-control, .bg-brown-600.text-auto .form-control, .bg-brown-700.text-auto .form-control, .bg-brown-800.text-auto .form-control, .bg-brown-900.text-auto .form-control, .bg-brown-A400.text-auto .form-control, .bg-brown-A700.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-blue-grey-400.text-auto .form-control, .bg-blue-grey-500.text-auto .form-control, .bg-blue-grey.text-auto .form-control, .bg-blue-grey-600.text-auto .form-control, .bg-blue-grey-700.text-auto .form-control, .bg-blue-grey-800.text-auto .form-control, .bg-blue-grey-900.text-auto .form-control, .bg-blue-grey-A400.text-auto .form-control, .bg-blue-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-pink-400.text-auto .form-control:hover, .bg-pink-500.text-auto .form-control:hover, .bg-pink.text-auto .form-control:hover, .bg-pink-600.text-auto .form-control:hover, .bg-pink-700.text-auto .form-control:hover, .bg-pink-800.text-auto .form-control:hover, .bg-pink-900.text-auto .form-control:hover, .bg-pink-A200.text-auto .form-control:hover, .bg-pink-A400.text-auto .form-control:hover, .bg-pink-A700.text-auto .form-control:hover, .bg-purple-300.text-auto .form-control:hover, .bg-purple-400.text-auto .form-control:hover, .bg-purple-500.text-auto .form-control:hover, .bg-purple.text-auto .form-control:hover, .bg-purple-600.text-auto .form-control:hover, .bg-purple-700.text-auto .form-control:hover, .bg-purple-800.text-auto .form-control:hover, .bg-purple-900.text-auto .form-control:hover, .bg-purple-A200.text-auto .form-control:hover, .bg-purple-A400.text-auto .form-control:hover, .bg-purple-A700.text-auto .form-control:hover, .bg-deep-purple-300.text-auto .form-control:hover, .bg-deep-purple-400.text-auto .form-control:hover, .bg-deep-purple-500.text-auto .form-control:hover, .bg-deep-purple.text-auto .form-control:hover, .bg-deep-purple-600.text-auto .form-control:hover, .bg-deep-purple-700.text-auto .form-control:hover, .bg-deep-purple-800.text-auto .form-control:hover, .bg-deep-purple-900.text-auto .form-control:hover, .bg-deep-purple-A200.text-auto .form-control:hover, .bg-deep-purple-A400.text-auto .form-control:hover, .bg-deep-purple-A700.text-auto .form-control:hover, .bg-indigo-300.text-auto .form-control:hover, .bg-indigo-400.text-auto .form-control:hover, .bg-indigo-500.text-auto .form-control:hover, .bg-indigo.text-auto .form-control:hover, .bg-indigo-600.text-auto .form-control:hover, .bg-indigo-700.text-auto .form-control:hover, .bg-indigo-800.text-auto .form-control:hover, .bg-indigo-900.text-auto .form-control:hover, .bg-indigo-A200.text-auto .form-control:hover, .bg-indigo-A400.text-auto .form-control:hover, .bg-indigo-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-light-blue-700.text-auto .form-control:hover, .bg-light-blue-800.text-auto .form-control:hover, .bg-light-blue-900.text-auto .form-control:hover, .bg-light-blue-A700.text-auto .form-control:hover, .bg-cyan-700.text-auto .form-control:hover, .bg-cyan-800.text-auto .form-control:hover, .bg-cyan-900.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-light-green-700.text-auto .form-control:hover, .bg-light-green-800.text-auto .form-control:hover, .bg-light-green-900.text-auto .form-control:hover, .bg-lime-900.text-auto .form-control:hover, .bg-orange-900.text-auto .form-control:hover, .bg-deep-orange-500.text-auto .form-control:hover, .bg-deep-orange.text-auto .form-control:hover, .bg-deep-orange-600.text-auto .form-control:hover, .bg-deep-orange-700.text-auto .form-control:hover, .bg-deep-orange-800.text-auto .form-control:hover, .bg-deep-orange-900.text-auto .form-control:hover, .bg-deep-orange-A400.text-auto .form-control:hover, .bg-deep-orange-A700.text-auto .form-control:hover, .bg-brown-300.text-auto .form-control:hover, .bg-brown-400.text-auto .form-control:hover, .bg-brown-500.text-auto .form-control:hover, .bg-brown.text-auto .form-control:hover, .bg-brown-600.text-auto .form-control:hover, .bg-brown-700.text-auto .form-control:hover, .bg-brown-800.text-auto .form-control:hover, .bg-brown-900.text-auto .form-control:hover, .bg-brown-A400.text-auto .form-control:hover, .bg-brown-A700.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-blue-grey-400.text-auto .form-control:hover, .bg-blue-grey-500.text-auto .form-control:hover, .bg-blue-grey.text-auto .form-control:hover, .bg-blue-grey-600.text-auto .form-control:hover, .bg-blue-grey-700.text-auto .form-control:hover, .bg-blue-grey-800.text-auto .form-control:hover, .bg-blue-grey-900.text-auto .form-control:hover, .bg-blue-grey-A400.text-auto .form-control:hover, .bg-blue-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-pink-400.text-auto .form-control:focus, .bg-pink-500.text-auto .form-control:focus, .bg-pink.text-auto .form-control:focus, .bg-pink-600.text-auto .form-control:focus, .bg-pink-700.text-auto .form-control:focus, .bg-pink-800.text-auto .form-control:focus, .bg-pink-900.text-auto .form-control:focus, .bg-pink-A200.text-auto .form-control:focus, .bg-pink-A400.text-auto .form-control:focus, .bg-pink-A700.text-auto .form-control:focus, .bg-purple-300.text-auto .form-control:focus, .bg-purple-400.text-auto .form-control:focus, .bg-purple-500.text-auto .form-control:focus, .bg-purple.text-auto .form-control:focus, .bg-purple-600.text-auto .form-control:focus, .bg-purple-700.text-auto .form-control:focus, .bg-purple-800.text-auto .form-control:focus, .bg-purple-900.text-auto .form-control:focus, .bg-purple-A200.text-auto .form-control:focus, .bg-purple-A400.text-auto .form-control:focus, .bg-purple-A700.text-auto .form-control:focus, .bg-deep-purple-300.text-auto .form-control:focus, .bg-deep-purple-400.text-auto .form-control:focus, .bg-deep-purple-500.text-auto .form-control:focus, .bg-deep-purple.text-auto .form-control:focus, .bg-deep-purple-600.text-auto .form-control:focus, .bg-deep-purple-700.text-auto .form-control:focus, .bg-deep-purple-800.text-auto .form-control:focus, .bg-deep-purple-900.text-auto .form-control:focus, .bg-deep-purple-A200.text-auto .form-control:focus, .bg-deep-purple-A400.text-auto .form-control:focus, .bg-deep-purple-A700.text-auto .form-control:focus, .bg-indigo-300.text-auto .form-control:focus, .bg-indigo-400.text-auto .form-control:focus, .bg-indigo-500.text-auto .form-control:focus, .bg-indigo.text-auto .form-control:focus, .bg-indigo-600.text-auto .form-control:focus, .bg-indigo-700.text-auto .form-control:focus, .bg-indigo-800.text-auto .form-control:focus, .bg-indigo-900.text-auto .form-control:focus, .bg-indigo-A200.text-auto .form-control:focus, .bg-indigo-A400.text-auto .form-control:focus, .bg-indigo-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-light-blue-700.text-auto .form-control:focus, .bg-light-blue-800.text-auto .form-control:focus, .bg-light-blue-900.text-auto .form-control:focus, .bg-light-blue-A700.text-auto .form-control:focus, .bg-cyan-700.text-auto .form-control:focus, .bg-cyan-800.text-auto .form-control:focus, .bg-cyan-900.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-light-green-700.text-auto .form-control:focus, .bg-light-green-800.text-auto .form-control:focus, .bg-light-green-900.text-auto .form-control:focus, .bg-lime-900.text-auto .form-control:focus, .bg-orange-900.text-auto .form-control:focus, .bg-deep-orange-500.text-auto .form-control:focus, .bg-deep-orange.text-auto .form-control:focus, .bg-deep-orange-600.text-auto .form-control:focus, .bg-deep-orange-700.text-auto .form-control:focus, .bg-deep-orange-800.text-auto .form-control:focus, .bg-deep-orange-900.text-auto .form-control:focus, .bg-deep-orange-A400.text-auto .form-control:focus, .bg-deep-orange-A700.text-auto .form-control:focus, .bg-brown-300.text-auto .form-control:focus, .bg-brown-400.text-auto .form-control:focus, .bg-brown-500.text-auto .form-control:focus, .bg-brown.text-auto .form-control:focus, .bg-brown-600.text-auto .form-control:focus, .bg-brown-700.text-auto .form-control:focus, .bg-brown-800.text-auto .form-control:focus, .bg-brown-900.text-auto .form-control:focus, .bg-brown-A400.text-auto .form-control:focus, .bg-brown-A700.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-blue-grey-400.text-auto .form-control:focus, .bg-blue-grey-500.text-auto .form-control:focus, .bg-blue-grey.text-auto .form-control:focus, .bg-blue-grey-600.text-auto .form-control:focus, .bg-blue-grey-700.text-auto .form-control:focus, .bg-blue-grey-800.text-auto .form-control:focus, .bg-blue-grey-900.text-auto .form-control:focus, .bg-blue-grey-A400.text-auto .form-control:focus, .bg-blue-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-pink-400.text-auto .form-control::placeholder, .bg-pink-500.text-auto .form-control::placeholder, .bg-pink.text-auto .form-control::placeholder, .bg-pink-600.text-auto .form-control::placeholder, .bg-pink-700.text-auto .form-control::placeholder, .bg-pink-800.text-auto .form-control::placeholder, .bg-pink-900.text-auto .form-control::placeholder, .bg-pink-A200.text-auto .form-control::placeholder, .bg-pink-A400.text-auto .form-control::placeholder, .bg-pink-A700.text-auto .form-control::placeholder, .bg-purple-300.text-auto .form-control::placeholder, .bg-purple-400.text-auto .form-control::placeholder, .bg-purple-500.text-auto .form-control::placeholder, .bg-purple.text-auto .form-control::placeholder, .bg-purple-600.text-auto .form-control::placeholder, .bg-purple-700.text-auto .form-control::placeholder, .bg-purple-800.text-auto .form-control::placeholder, .bg-purple-900.text-auto .form-control::placeholder, .bg-purple-A200.text-auto .form-control::placeholder, .bg-purple-A400.text-auto .form-control::placeholder, .bg-purple-A700.text-auto .form-control::placeholder, .bg-deep-purple-300.text-auto .form-control::placeholder, .bg-deep-purple-400.text-auto .form-control::placeholder, .bg-deep-purple-500.text-auto .form-control::placeholder, .bg-deep-purple.text-auto .form-control::placeholder, .bg-deep-purple-600.text-auto .form-control::placeholder, .bg-deep-purple-700.text-auto .form-control::placeholder, .bg-deep-purple-800.text-auto .form-control::placeholder, .bg-deep-purple-900.text-auto .form-control::placeholder, .bg-deep-purple-A200.text-auto .form-control::placeholder, .bg-deep-purple-A400.text-auto .form-control::placeholder, .bg-deep-purple-A700.text-auto .form-control::placeholder, .bg-indigo-300.text-auto .form-control::placeholder, .bg-indigo-400.text-auto .form-control::placeholder, .bg-indigo-500.text-auto .form-control::placeholder, .bg-indigo.text-auto .form-control::placeholder, .bg-indigo-600.text-auto .form-control::placeholder, .bg-indigo-700.text-auto .form-control::placeholder, .bg-indigo-800.text-auto .form-control::placeholder, .bg-indigo-900.text-auto .form-control::placeholder, .bg-indigo-A200.text-auto .form-control::placeholder, .bg-indigo-A400.text-auto .form-control::placeholder, .bg-indigo-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-light-blue-700.text-auto .form-control::placeholder, .bg-light-blue-800.text-auto .form-control::placeholder, .bg-light-blue-900.text-auto .form-control::placeholder, .bg-light-blue-A700.text-auto .form-control::placeholder, .bg-cyan-700.text-auto .form-control::placeholder, .bg-cyan-800.text-auto .form-control::placeholder, .bg-cyan-900.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-light-green-700.text-auto .form-control::placeholder, .bg-light-green-800.text-auto .form-control::placeholder, .bg-light-green-900.text-auto .form-control::placeholder, .bg-lime-900.text-auto .form-control::placeholder, .bg-orange-900.text-auto .form-control::placeholder, .bg-deep-orange-500.text-auto .form-control::placeholder, .bg-deep-orange.text-auto .form-control::placeholder, .bg-deep-orange-600.text-auto .form-control::placeholder, .bg-deep-orange-700.text-auto .form-control::placeholder, .bg-deep-orange-800.text-auto .form-control::placeholder, .bg-deep-orange-900.text-auto .form-control::placeholder, .bg-deep-orange-A400.text-auto .form-control::placeholder, .bg-deep-orange-A700.text-auto .form-control::placeholder, .bg-brown-300.text-auto .form-control::placeholder, .bg-brown-400.text-auto .form-control::placeholder, .bg-brown-500.text-auto .form-control::placeholder, .bg-brown.text-auto .form-control::placeholder, .bg-brown-600.text-auto .form-control::placeholder, .bg-brown-700.text-auto .form-control::placeholder, .bg-brown-800.text-auto .form-control::placeholder, .bg-brown-900.text-auto .form-control::placeholder, .bg-brown-A400.text-auto .form-control::placeholder, .bg-brown-A700.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-blue-grey-400.text-auto .form-control::placeholder, .bg-blue-grey-500.text-auto .form-control::placeholder, .bg-blue-grey.text-auto .form-control::placeholder, .bg-blue-grey-600.text-auto .form-control::placeholder, .bg-blue-grey-700.text-auto .form-control::placeholder, .bg-blue-grey-800.text-auto .form-control::placeholder, .bg-blue-grey-900.text-auto .form-control::placeholder, .bg-blue-grey-A400.text-auto .form-control::placeholder, .bg-blue-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-pink-400.text-auto textarea.form-control, .bg-pink-500.text-auto textarea.form-control, .bg-pink.text-auto textarea.form-control, .bg-pink-600.text-auto textarea.form-control, .bg-pink-700.text-auto textarea.form-control, .bg-pink-800.text-auto textarea.form-control, .bg-pink-900.text-auto textarea.form-control, .bg-pink-A200.text-auto textarea.form-control, .bg-pink-A400.text-auto textarea.form-control, .bg-pink-A700.text-auto textarea.form-control, .bg-purple-300.text-auto textarea.form-control, .bg-purple-400.text-auto textarea.form-control, .bg-purple-500.text-auto textarea.form-control, .bg-purple.text-auto textarea.form-control, .bg-purple-600.text-auto textarea.form-control, .bg-purple-700.text-auto textarea.form-control, .bg-purple-800.text-auto textarea.form-control, .bg-purple-900.text-auto textarea.form-control, .bg-purple-A200.text-auto textarea.form-control, .bg-purple-A400.text-auto textarea.form-control, .bg-purple-A700.text-auto textarea.form-control, .bg-deep-purple-300.text-auto textarea.form-control, .bg-deep-purple-400.text-auto textarea.form-control, .bg-deep-purple-500.text-auto textarea.form-control, .bg-deep-purple.text-auto textarea.form-control, .bg-deep-purple-600.text-auto textarea.form-control, .bg-deep-purple-700.text-auto textarea.form-control, .bg-deep-purple-800.text-auto textarea.form-control, .bg-deep-purple-900.text-auto textarea.form-control, .bg-deep-purple-A200.text-auto textarea.form-control, .bg-deep-purple-A400.text-auto textarea.form-control, .bg-deep-purple-A700.text-auto textarea.form-control, .bg-indigo-300.text-auto textarea.form-control, .bg-indigo-400.text-auto textarea.form-control, .bg-indigo-500.text-auto textarea.form-control, .bg-indigo.text-auto textarea.form-control, .bg-indigo-600.text-auto textarea.form-control, .bg-indigo-700.text-auto textarea.form-control, .bg-indigo-800.text-auto textarea.form-control, .bg-indigo-900.text-auto textarea.form-control, .bg-indigo-A200.text-auto textarea.form-control, .bg-indigo-A400.text-auto textarea.form-control, .bg-indigo-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-light-blue-700.text-auto textarea.form-control, .bg-light-blue-800.text-auto textarea.form-control, .bg-light-blue-900.text-auto textarea.form-control, .bg-light-blue-A700.text-auto textarea.form-control, .bg-cyan-700.text-auto textarea.form-control, .bg-cyan-800.text-auto textarea.form-control, .bg-cyan-900.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-light-green-700.text-auto textarea.form-control, .bg-light-green-800.text-auto textarea.form-control, .bg-light-green-900.text-auto textarea.form-control, .bg-lime-900.text-auto textarea.form-control, .bg-orange-900.text-auto textarea.form-control, .bg-deep-orange-500.text-auto textarea.form-control, .bg-deep-orange.text-auto textarea.form-control, .bg-deep-orange-600.text-auto textarea.form-control, .bg-deep-orange-700.text-auto textarea.form-control, .bg-deep-orange-800.text-auto textarea.form-control, .bg-deep-orange-900.text-auto textarea.form-control, .bg-deep-orange-A400.text-auto textarea.form-control, .bg-deep-orange-A700.text-auto textarea.form-control, .bg-brown-300.text-auto textarea.form-control, .bg-brown-400.text-auto textarea.form-control, .bg-brown-500.text-auto textarea.form-control, .bg-brown.text-auto textarea.form-control, .bg-brown-600.text-auto textarea.form-control, .bg-brown-700.text-auto textarea.form-control, .bg-brown-800.text-auto textarea.form-control, .bg-brown-900.text-auto textarea.form-control, .bg-brown-A400.text-auto textarea.form-control, .bg-brown-A700.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-blue-grey-400.text-auto textarea.form-control, .bg-blue-grey-500.text-auto textarea.form-control, .bg-blue-grey.text-auto textarea.form-control, .bg-blue-grey-600.text-auto textarea.form-control, .bg-blue-grey-700.text-auto textarea.form-control, .bg-blue-grey-800.text-auto textarea.form-control, .bg-blue-grey-900.text-auto textarea.form-control, .bg-blue-grey-A400.text-auto textarea.form-control, .bg-blue-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-pink-400.text-auto textarea.form-control:hover, .bg-pink-500.text-auto textarea.form-control:hover, .bg-pink.text-auto textarea.form-control:hover, .bg-pink-600.text-auto textarea.form-control:hover, .bg-pink-700.text-auto textarea.form-control:hover, .bg-pink-800.text-auto textarea.form-control:hover, .bg-pink-900.text-auto textarea.form-control:hover, .bg-pink-A200.text-auto textarea.form-control:hover, .bg-pink-A400.text-auto textarea.form-control:hover, .bg-pink-A700.text-auto textarea.form-control:hover, .bg-purple-300.text-auto textarea.form-control:hover, .bg-purple-400.text-auto textarea.form-control:hover, .bg-purple-500.text-auto textarea.form-control:hover, .bg-purple.text-auto textarea.form-control:hover, .bg-purple-600.text-auto textarea.form-control:hover, .bg-purple-700.text-auto textarea.form-control:hover, .bg-purple-800.text-auto textarea.form-control:hover, .bg-purple-900.text-auto textarea.form-control:hover, .bg-purple-A200.text-auto textarea.form-control:hover, .bg-purple-A400.text-auto textarea.form-control:hover, .bg-purple-A700.text-auto textarea.form-control:hover, .bg-deep-purple-300.text-auto textarea.form-control:hover, .bg-deep-purple-400.text-auto textarea.form-control:hover, .bg-deep-purple-500.text-auto textarea.form-control:hover, .bg-deep-purple.text-auto textarea.form-control:hover, .bg-deep-purple-600.text-auto textarea.form-control:hover, .bg-deep-purple-700.text-auto textarea.form-control:hover, .bg-deep-purple-800.text-auto textarea.form-control:hover, .bg-deep-purple-900.text-auto textarea.form-control:hover, .bg-deep-purple-A200.text-auto textarea.form-control:hover, .bg-deep-purple-A400.text-auto textarea.form-control:hover, .bg-deep-purple-A700.text-auto textarea.form-control:hover, .bg-indigo-300.text-auto textarea.form-control:hover, .bg-indigo-400.text-auto textarea.form-control:hover, .bg-indigo-500.text-auto textarea.form-control:hover, .bg-indigo.text-auto textarea.form-control:hover, .bg-indigo-600.text-auto textarea.form-control:hover, .bg-indigo-700.text-auto textarea.form-control:hover, .bg-indigo-800.text-auto textarea.form-control:hover, .bg-indigo-900.text-auto textarea.form-control:hover, .bg-indigo-A200.text-auto textarea.form-control:hover, .bg-indigo-A400.text-auto textarea.form-control:hover, .bg-indigo-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-light-blue-700.text-auto textarea.form-control:hover, .bg-light-blue-800.text-auto textarea.form-control:hover, .bg-light-blue-900.text-auto textarea.form-control:hover, .bg-light-blue-A700.text-auto textarea.form-control:hover, .bg-cyan-700.text-auto textarea.form-control:hover, .bg-cyan-800.text-auto textarea.form-control:hover, .bg-cyan-900.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-light-green-700.text-auto textarea.form-control:hover, .bg-light-green-800.text-auto textarea.form-control:hover, .bg-light-green-900.text-auto textarea.form-control:hover, .bg-lime-900.text-auto textarea.form-control:hover, .bg-orange-900.text-auto textarea.form-control:hover, .bg-deep-orange-500.text-auto textarea.form-control:hover, .bg-deep-orange.text-auto textarea.form-control:hover, .bg-deep-orange-600.text-auto textarea.form-control:hover, .bg-deep-orange-700.text-auto textarea.form-control:hover, .bg-deep-orange-800.text-auto textarea.form-control:hover, .bg-deep-orange-900.text-auto textarea.form-control:hover, .bg-deep-orange-A400.text-auto textarea.form-control:hover, .bg-deep-orange-A700.text-auto textarea.form-control:hover, .bg-brown-300.text-auto textarea.form-control:hover, .bg-brown-400.text-auto textarea.form-control:hover, .bg-brown-500.text-auto textarea.form-control:hover, .bg-brown.text-auto textarea.form-control:hover, .bg-brown-600.text-auto textarea.form-control:hover, .bg-brown-700.text-auto textarea.form-control:hover, .bg-brown-800.text-auto textarea.form-control:hover, .bg-brown-900.text-auto textarea.form-control:hover, .bg-brown-A400.text-auto textarea.form-control:hover, .bg-brown-A700.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-blue-grey-400.text-auto textarea.form-control:hover, .bg-blue-grey-500.text-auto textarea.form-control:hover, .bg-blue-grey.text-auto textarea.form-control:hover, .bg-blue-grey-600.text-auto textarea.form-control:hover, .bg-blue-grey-700.text-auto textarea.form-control:hover, .bg-blue-grey-800.text-auto textarea.form-control:hover, .bg-blue-grey-900.text-auto textarea.form-control:hover, .bg-blue-grey-A400.text-auto textarea.form-control:hover, .bg-blue-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-pink-400.text-auto textarea.form-control:focus, .bg-pink-400.text-auto textarea.form-control:focus:hover, .bg-pink-500.text-auto textarea.form-control:focus, .bg-pink-500.text-auto textarea.form-control:focus:hover, .bg-pink.text-auto textarea.form-control:focus, .bg-pink.text-auto textarea.form-control:focus:hover, .bg-pink-600.text-auto textarea.form-control:focus, .bg-pink-600.text-auto textarea.form-control:focus:hover, .bg-pink-700.text-auto textarea.form-control:focus, .bg-pink-700.text-auto textarea.form-control:focus:hover, .bg-pink-800.text-auto textarea.form-control:focus, .bg-pink-800.text-auto textarea.form-control:focus:hover, .bg-pink-900.text-auto textarea.form-control:focus, .bg-pink-900.text-auto textarea.form-control:focus:hover, .bg-pink-A200.text-auto textarea.form-control:focus, .bg-pink-A200.text-auto textarea.form-control:focus:hover, .bg-pink-A400.text-auto textarea.form-control:focus, .bg-pink-A400.text-auto textarea.form-control:focus:hover, .bg-pink-A700.text-auto textarea.form-control:focus, .bg-pink-A700.text-auto textarea.form-control:focus:hover, .bg-purple-300.text-auto textarea.form-control:focus, .bg-purple-300.text-auto textarea.form-control:focus:hover, .bg-purple-400.text-auto textarea.form-control:focus, .bg-purple-400.text-auto textarea.form-control:focus:hover, .bg-purple-500.text-auto textarea.form-control:focus, .bg-purple-500.text-auto textarea.form-control:focus:hover, .bg-purple.text-auto textarea.form-control:focus, .bg-purple.text-auto textarea.form-control:focus:hover, .bg-purple-600.text-auto textarea.form-control:focus, .bg-purple-600.text-auto textarea.form-control:focus:hover, .bg-purple-700.text-auto textarea.form-control:focus, .bg-purple-700.text-auto textarea.form-control:focus:hover, .bg-purple-800.text-auto textarea.form-control:focus, .bg-purple-800.text-auto textarea.form-control:focus:hover, .bg-purple-900.text-auto textarea.form-control:focus, .bg-purple-900.text-auto textarea.form-control:focus:hover, .bg-purple-A200.text-auto textarea.form-control:focus, .bg-purple-A200.text-auto textarea.form-control:focus:hover, .bg-purple-A400.text-auto textarea.form-control:focus, .bg-purple-A400.text-auto textarea.form-control:focus:hover, .bg-purple-A700.text-auto textarea.form-control:focus, .bg-purple-A700.text-auto textarea.form-control:focus:hover, .bg-deep-purple-300.text-auto textarea.form-control:focus, .bg-deep-purple-300.text-auto textarea.form-control:focus:hover, .bg-deep-purple-400.text-auto textarea.form-control:focus, .bg-deep-purple-400.text-auto textarea.form-control:focus:hover, .bg-deep-purple-500.text-auto textarea.form-control:focus, .bg-deep-purple-500.text-auto textarea.form-control:focus:hover, .bg-deep-purple.text-auto textarea.form-control:focus, .bg-deep-purple.text-auto textarea.form-control:focus:hover, .bg-deep-purple-600.text-auto textarea.form-control:focus, .bg-deep-purple-600.text-auto textarea.form-control:focus:hover, .bg-deep-purple-700.text-auto textarea.form-control:focus, .bg-deep-purple-700.text-auto textarea.form-control:focus:hover, .bg-deep-purple-800.text-auto textarea.form-control:focus, .bg-deep-purple-800.text-auto textarea.form-control:focus:hover, .bg-deep-purple-900.text-auto textarea.form-control:focus, .bg-deep-purple-900.text-auto textarea.form-control:focus:hover, .bg-deep-purple-A200.text-auto textarea.form-control:focus, .bg-deep-purple-A200.text-auto textarea.form-control:focus:hover, .bg-deep-purple-A400.text-auto textarea.form-control:focus, .bg-deep-purple-A400.text-auto textarea.form-control:focus:hover, .bg-deep-purple-A700.text-auto textarea.form-control:focus, .bg-deep-purple-A700.text-auto textarea.form-control:focus:hover, .bg-indigo-300.text-auto textarea.form-control:focus, .bg-indigo-300.text-auto textarea.form-control:focus:hover, .bg-indigo-400.text-auto textarea.form-control:focus, .bg-indigo-400.text-auto textarea.form-control:focus:hover, .bg-indigo-500.text-auto textarea.form-control:focus, .bg-indigo-500.text-auto textarea.form-control:focus:hover, .bg-indigo.text-auto textarea.form-control:focus, .bg-indigo.text-auto textarea.form-control:focus:hover, .bg-indigo-600.text-auto textarea.form-control:focus, .bg-indigo-600.text-auto textarea.form-control:focus:hover, .bg-indigo-700.text-auto textarea.form-control:focus, .bg-indigo-700.text-auto textarea.form-control:focus:hover, .bg-indigo-800.text-auto textarea.form-control:focus, .bg-indigo-800.text-auto textarea.form-control:focus:hover, .bg-indigo-900.text-auto textarea.form-control:focus, .bg-indigo-900.text-auto textarea.form-control:focus:hover, .bg-indigo-A200.text-auto textarea.form-control:focus, .bg-indigo-A200.text-auto textarea.form-control:focus:hover, .bg-indigo-A400.text-auto textarea.form-control:focus, .bg-indigo-A400.text-auto textarea.form-control:focus:hover, .bg-indigo-A700.text-auto textarea.form-control:focus, .bg-indigo-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-light-blue-700.text-auto textarea.form-control:focus, .bg-light-blue-700.text-auto textarea.form-control:focus:hover, .bg-light-blue-800.text-auto textarea.form-control:focus, .bg-light-blue-800.text-auto textarea.form-control:focus:hover, .bg-light-blue-900.text-auto textarea.form-control:focus, .bg-light-blue-900.text-auto textarea.form-control:focus:hover, .bg-light-blue-A700.text-auto textarea.form-control:focus, .bg-light-blue-A700.text-auto textarea.form-control:focus:hover, .bg-cyan-700.text-auto textarea.form-control:focus, .bg-cyan-700.text-auto textarea.form-control:focus:hover, .bg-cyan-800.text-auto textarea.form-control:focus, .bg-cyan-800.text-auto textarea.form-control:focus:hover, .bg-cyan-900.text-auto textarea.form-control:focus, .bg-cyan-900.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-light-green-700.text-auto textarea.form-control:focus, .bg-light-green-700.text-auto textarea.form-control:focus:hover, .bg-light-green-800.text-auto textarea.form-control:focus, .bg-light-green-800.text-auto textarea.form-control:focus:hover, .bg-light-green-900.text-auto textarea.form-control:focus, .bg-light-green-900.text-auto textarea.form-control:focus:hover, .bg-lime-900.text-auto textarea.form-control:focus, .bg-lime-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-deep-orange-500.text-auto textarea.form-control:focus, .bg-deep-orange-500.text-auto textarea.form-control:focus:hover, .bg-deep-orange.text-auto textarea.form-control:focus, .bg-deep-orange.text-auto textarea.form-control:focus:hover, .bg-deep-orange-600.text-auto textarea.form-control:focus, .bg-deep-orange-600.text-auto textarea.form-control:focus:hover, .bg-deep-orange-700.text-auto textarea.form-control:focus, .bg-deep-orange-700.text-auto textarea.form-control:focus:hover, .bg-deep-orange-800.text-auto textarea.form-control:focus, .bg-deep-orange-800.text-auto textarea.form-control:focus:hover, .bg-deep-orange-900.text-auto textarea.form-control:focus, .bg-deep-orange-900.text-auto textarea.form-control:focus:hover, .bg-deep-orange-A400.text-auto textarea.form-control:focus, .bg-deep-orange-A400.text-auto textarea.form-control:focus:hover, .bg-deep-orange-A700.text-auto textarea.form-control:focus, .bg-deep-orange-A700.text-auto textarea.form-control:focus:hover, .bg-brown-300.text-auto textarea.form-control:focus, .bg-brown-300.text-auto textarea.form-control:focus:hover, .bg-brown-400.text-auto textarea.form-control:focus, .bg-brown-400.text-auto textarea.form-control:focus:hover, .bg-brown-500.text-auto textarea.form-control:focus, .bg-brown-500.text-auto textarea.form-control:focus:hover, .bg-brown.text-auto textarea.form-control:focus, .bg-brown.text-auto textarea.form-control:focus:hover, .bg-brown-600.text-auto textarea.form-control:focus, .bg-brown-600.text-auto textarea.form-control:focus:hover, .bg-brown-700.text-auto textarea.form-control:focus, .bg-brown-700.text-auto textarea.form-control:focus:hover, .bg-brown-800.text-auto textarea.form-control:focus, .bg-brown-800.text-auto textarea.form-control:focus:hover, .bg-brown-900.text-auto textarea.form-control:focus, .bg-brown-900.text-auto textarea.form-control:focus:hover, .bg-brown-A400.text-auto textarea.form-control:focus, .bg-brown-A400.text-auto textarea.form-control:focus:hover, .bg-brown-A700.text-auto textarea.form-control:focus, .bg-brown-A700.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-blue-grey-400.text-auto textarea.form-control:focus, .bg-blue-grey-400.text-auto textarea.form-control:focus:hover, .bg-blue-grey-500.text-auto textarea.form-control:focus, .bg-blue-grey-500.text-auto textarea.form-control:focus:hover, .bg-blue-grey.text-auto textarea.form-control:focus, .bg-blue-grey.text-auto textarea.form-control:focus:hover, .bg-blue-grey-600.text-auto textarea.form-control:focus, .bg-blue-grey-600.text-auto textarea.form-control:focus:hover, .bg-blue-grey-700.text-auto textarea.form-control:focus, .bg-blue-grey-700.text-auto textarea.form-control:focus:hover, .bg-blue-grey-800.text-auto textarea.form-control:focus, .bg-blue-grey-800.text-auto textarea.form-control:focus:hover, .bg-blue-grey-900.text-auto textarea.form-control:focus, .bg-blue-grey-900.text-auto textarea.form-control:focus:hover, .bg-blue-grey-A400.text-auto textarea.form-control:focus, .bg-blue-grey-A400.text-auto textarea.form-control:focus:hover, .bg-blue-grey-A700.text-auto textarea.form-control:focus, .bg-blue-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-pink-400.text-auto select.form-control, .bg-pink-500.text-auto select.form-control, .bg-pink.text-auto select.form-control, .bg-pink-600.text-auto select.form-control, .bg-pink-700.text-auto select.form-control, .bg-pink-800.text-auto select.form-control, .bg-pink-900.text-auto select.form-control, .bg-pink-A200.text-auto select.form-control, .bg-pink-A400.text-auto select.form-control, .bg-pink-A700.text-auto select.form-control, .bg-purple-300.text-auto select.form-control, .bg-purple-400.text-auto select.form-control, .bg-purple-500.text-auto select.form-control, .bg-purple.text-auto select.form-control, .bg-purple-600.text-auto select.form-control, .bg-purple-700.text-auto select.form-control, .bg-purple-800.text-auto select.form-control, .bg-purple-900.text-auto select.form-control, .bg-purple-A200.text-auto select.form-control, .bg-purple-A400.text-auto select.form-control, .bg-purple-A700.text-auto select.form-control, .bg-deep-purple-300.text-auto select.form-control, .bg-deep-purple-400.text-auto select.form-control, .bg-deep-purple-500.text-auto select.form-control, .bg-deep-purple.text-auto select.form-control, .bg-deep-purple-600.text-auto select.form-control, .bg-deep-purple-700.text-auto select.form-control, .bg-deep-purple-800.text-auto select.form-control, .bg-deep-purple-900.text-auto select.form-control, .bg-deep-purple-A200.text-auto select.form-control, .bg-deep-purple-A400.text-auto select.form-control, .bg-deep-purple-A700.text-auto select.form-control, .bg-indigo-300.text-auto select.form-control, .bg-indigo-400.text-auto select.form-control, .bg-indigo-500.text-auto select.form-control, .bg-indigo.text-auto select.form-control, .bg-indigo-600.text-auto select.form-control, .bg-indigo-700.text-auto select.form-control, .bg-indigo-800.text-auto select.form-control, .bg-indigo-900.text-auto select.form-control, .bg-indigo-A200.text-auto select.form-control, .bg-indigo-A400.text-auto select.form-control, .bg-indigo-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-light-blue-700.text-auto select.form-control, .bg-light-blue-800.text-auto select.form-control, .bg-light-blue-900.text-auto select.form-control, .bg-light-blue-A700.text-auto select.form-control, .bg-cyan-700.text-auto select.form-control, .bg-cyan-800.text-auto select.form-control, .bg-cyan-900.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-light-green-700.text-auto select.form-control, .bg-light-green-800.text-auto select.form-control, .bg-light-green-900.text-auto select.form-control, .bg-lime-900.text-auto select.form-control, .bg-orange-900.text-auto select.form-control, .bg-deep-orange-500.text-auto select.form-control, .bg-deep-orange.text-auto select.form-control, .bg-deep-orange-600.text-auto select.form-control, .bg-deep-orange-700.text-auto select.form-control, .bg-deep-orange-800.text-auto select.form-control, .bg-deep-orange-900.text-auto select.form-control, .bg-deep-orange-A400.text-auto select.form-control, .bg-deep-orange-A700.text-auto select.form-control, .bg-brown-300.text-auto select.form-control, .bg-brown-400.text-auto select.form-control, .bg-brown-500.text-auto select.form-control, .bg-brown.text-auto select.form-control, .bg-brown-600.text-auto select.form-control, .bg-brown-700.text-auto select.form-control, .bg-brown-800.text-auto select.form-control, .bg-brown-900.text-auto select.form-control, .bg-brown-A400.text-auto select.form-control, .bg-brown-A700.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-blue-grey-400.text-auto select.form-control, .bg-blue-grey-500.text-auto select.form-control, .bg-blue-grey.text-auto select.form-control, .bg-blue-grey-600.text-auto select.form-control, .bg-blue-grey-700.text-auto select.form-control, .bg-blue-grey-800.text-auto select.form-control, .bg-blue-grey-900.text-auto select.form-control, .bg-blue-grey-A400.text-auto select.form-control, .bg-blue-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-pink-400.text-auto select.form-control[multiple], .bg-pink-400.text-auto select.form-control[size], .bg-pink-500.text-auto select.form-control[multiple], .bg-pink-500.text-auto select.form-control[size], .bg-pink.text-auto select.form-control[multiple], .bg-pink.text-auto select.form-control[size], .bg-pink-600.text-auto select.form-control[multiple], .bg-pink-600.text-auto select.form-control[size], .bg-pink-700.text-auto select.form-control[multiple], .bg-pink-700.text-auto select.form-control[size], .bg-pink-800.text-auto select.form-control[multiple], .bg-pink-800.text-auto select.form-control[size], .bg-pink-900.text-auto select.form-control[multiple], .bg-pink-900.text-auto select.form-control[size], .bg-pink-A200.text-auto select.form-control[multiple], .bg-pink-A200.text-auto select.form-control[size], .bg-pink-A400.text-auto select.form-control[multiple], .bg-pink-A400.text-auto select.form-control[size], .bg-pink-A700.text-auto select.form-control[multiple], .bg-pink-A700.text-auto select.form-control[size], .bg-purple-300.text-auto select.form-control[multiple], .bg-purple-300.text-auto select.form-control[size], .bg-purple-400.text-auto select.form-control[multiple], .bg-purple-400.text-auto select.form-control[size], .bg-purple-500.text-auto select.form-control[multiple], .bg-purple-500.text-auto select.form-control[size], .bg-purple.text-auto select.form-control[multiple], .bg-purple.text-auto select.form-control[size], .bg-purple-600.text-auto select.form-control[multiple], .bg-purple-600.text-auto select.form-control[size], .bg-purple-700.text-auto select.form-control[multiple], .bg-purple-700.text-auto select.form-control[size], .bg-purple-800.text-auto select.form-control[multiple], .bg-purple-800.text-auto select.form-control[size], .bg-purple-900.text-auto select.form-control[multiple], .bg-purple-900.text-auto select.form-control[size], .bg-purple-A200.text-auto select.form-control[multiple], .bg-purple-A200.text-auto select.form-control[size], .bg-purple-A400.text-auto select.form-control[multiple], .bg-purple-A400.text-auto select.form-control[size], .bg-purple-A700.text-auto select.form-control[multiple], .bg-purple-A700.text-auto select.form-control[size], .bg-deep-purple-300.text-auto select.form-control[multiple], .bg-deep-purple-300.text-auto select.form-control[size], .bg-deep-purple-400.text-auto select.form-control[multiple], .bg-deep-purple-400.text-auto select.form-control[size], .bg-deep-purple-500.text-auto select.form-control[multiple], .bg-deep-purple-500.text-auto select.form-control[size], .bg-deep-purple.text-auto select.form-control[multiple], .bg-deep-purple.text-auto select.form-control[size], .bg-deep-purple-600.text-auto select.form-control[multiple], .bg-deep-purple-600.text-auto select.form-control[size], .bg-deep-purple-700.text-auto select.form-control[multiple], .bg-deep-purple-700.text-auto select.form-control[size], .bg-deep-purple-800.text-auto select.form-control[multiple], .bg-deep-purple-800.text-auto select.form-control[size], .bg-deep-purple-900.text-auto select.form-control[multiple], .bg-deep-purple-900.text-auto select.form-control[size], .bg-deep-purple-A200.text-auto select.form-control[multiple], .bg-deep-purple-A200.text-auto select.form-control[size], .bg-deep-purple-A400.text-auto select.form-control[multiple], .bg-deep-purple-A400.text-auto select.form-control[size], .bg-deep-purple-A700.text-auto select.form-control[multiple], .bg-deep-purple-A700.text-auto select.form-control[size], .bg-indigo-300.text-auto select.form-control[multiple], .bg-indigo-300.text-auto select.form-control[size], .bg-indigo-400.text-auto select.form-control[multiple], .bg-indigo-400.text-auto select.form-control[size], .bg-indigo-500.text-auto select.form-control[multiple], .bg-indigo-500.text-auto select.form-control[size], .bg-indigo.text-auto select.form-control[multiple], .bg-indigo.text-auto select.form-control[size], .bg-indigo-600.text-auto select.form-control[multiple], .bg-indigo-600.text-auto select.form-control[size], .bg-indigo-700.text-auto select.form-control[multiple], .bg-indigo-700.text-auto select.form-control[size], .bg-indigo-800.text-auto select.form-control[multiple], .bg-indigo-800.text-auto select.form-control[size], .bg-indigo-900.text-auto select.form-control[multiple], .bg-indigo-900.text-auto select.form-control[size], .bg-indigo-A200.text-auto select.form-control[multiple], .bg-indigo-A200.text-auto select.form-control[size], .bg-indigo-A400.text-auto select.form-control[multiple], .bg-indigo-A400.text-auto select.form-control[size], .bg-indigo-A700.text-auto select.form-control[multiple], .bg-indigo-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-light-blue-700.text-auto select.form-control[multiple], .bg-light-blue-700.text-auto select.form-control[size], .bg-light-blue-800.text-auto select.form-control[multiple], .bg-light-blue-800.text-auto select.form-control[size], .bg-light-blue-900.text-auto select.form-control[multiple], .bg-light-blue-900.text-auto select.form-control[size], .bg-light-blue-A700.text-auto select.form-control[multiple], .bg-light-blue-A700.text-auto select.form-control[size], .bg-cyan-700.text-auto select.form-control[multiple], .bg-cyan-700.text-auto select.form-control[size], .bg-cyan-800.text-auto select.form-control[multiple], .bg-cyan-800.text-auto select.form-control[size], .bg-cyan-900.text-auto select.form-control[multiple], .bg-cyan-900.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-light-green-700.text-auto select.form-control[multiple], .bg-light-green-700.text-auto select.form-control[size], .bg-light-green-800.text-auto select.form-control[multiple], .bg-light-green-800.text-auto select.form-control[size], .bg-light-green-900.text-auto select.form-control[multiple], .bg-light-green-900.text-auto select.form-control[size], .bg-lime-900.text-auto select.form-control[multiple], .bg-lime-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-deep-orange-500.text-auto select.form-control[multiple], .bg-deep-orange-500.text-auto select.form-control[size], .bg-deep-orange.text-auto select.form-control[multiple], .bg-deep-orange.text-auto select.form-control[size], .bg-deep-orange-600.text-auto select.form-control[multiple], .bg-deep-orange-600.text-auto select.form-control[size], .bg-deep-orange-700.text-auto select.form-control[multiple], .bg-deep-orange-700.text-auto select.form-control[size], .bg-deep-orange-800.text-auto select.form-control[multiple], .bg-deep-orange-800.text-auto select.form-control[size], .bg-deep-orange-900.text-auto select.form-control[multiple], .bg-deep-orange-900.text-auto select.form-control[size], .bg-deep-orange-A400.text-auto select.form-control[multiple], .bg-deep-orange-A400.text-auto select.form-control[size], .bg-deep-orange-A700.text-auto select.form-control[multiple], .bg-deep-orange-A700.text-auto select.form-control[size], .bg-brown-300.text-auto select.form-control[multiple], .bg-brown-300.text-auto select.form-control[size], .bg-brown-400.text-auto select.form-control[multiple], .bg-brown-400.text-auto select.form-control[size], .bg-brown-500.text-auto select.form-control[multiple], .bg-brown-500.text-auto select.form-control[size], .bg-brown.text-auto select.form-control[multiple], .bg-brown.text-auto select.form-control[size], .bg-brown-600.text-auto select.form-control[multiple], .bg-brown-600.text-auto select.form-control[size], .bg-brown-700.text-auto select.form-control[multiple], .bg-brown-700.text-auto select.form-control[size], .bg-brown-800.text-auto select.form-control[multiple], .bg-brown-800.text-auto select.form-control[size], .bg-brown-900.text-auto select.form-control[multiple], .bg-brown-900.text-auto select.form-control[size], .bg-brown-A400.text-auto select.form-control[multiple], .bg-brown-A400.text-auto select.form-control[size], .bg-brown-A700.text-auto select.form-control[multiple], .bg-brown-A700.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-blue-grey-400.text-auto select.form-control[multiple], .bg-blue-grey-400.text-auto select.form-control[size], .bg-blue-grey-500.text-auto select.form-control[multiple], .bg-blue-grey-500.text-auto select.form-control[size], .bg-blue-grey.text-auto select.form-control[multiple], .bg-blue-grey.text-auto select.form-control[size], .bg-blue-grey-600.text-auto select.form-control[multiple], .bg-blue-grey-600.text-auto select.form-control[size], .bg-blue-grey-700.text-auto select.form-control[multiple], .bg-blue-grey-700.text-auto select.form-control[size], .bg-blue-grey-800.text-auto select.form-control[multiple], .bg-blue-grey-800.text-auto select.form-control[size], .bg-blue-grey-900.text-auto select.form-control[multiple], .bg-blue-grey-900.text-auto select.form-control[size], .bg-blue-grey-A400.text-auto select.form-control[multiple], .bg-blue-grey-A400.text-auto select.form-control[size], .bg-blue-grey-A700.text-auto select.form-control[multiple], .bg-blue-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-pink-400.text-auto select.form-control[multiple]:hover, .bg-pink-400.text-auto select.form-control[size]:hover, .bg-pink-500.text-auto select.form-control[multiple]:hover, .bg-pink-500.text-auto select.form-control[size]:hover, .bg-pink.text-auto select.form-control[multiple]:hover, .bg-pink.text-auto select.form-control[size]:hover, .bg-pink-600.text-auto select.form-control[multiple]:hover, .bg-pink-600.text-auto select.form-control[size]:hover, .bg-pink-700.text-auto select.form-control[multiple]:hover, .bg-pink-700.text-auto select.form-control[size]:hover, .bg-pink-800.text-auto select.form-control[multiple]:hover, .bg-pink-800.text-auto select.form-control[size]:hover, .bg-pink-900.text-auto select.form-control[multiple]:hover, .bg-pink-900.text-auto select.form-control[size]:hover, .bg-pink-A200.text-auto select.form-control[multiple]:hover, .bg-pink-A200.text-auto select.form-control[size]:hover, .bg-pink-A400.text-auto select.form-control[multiple]:hover, .bg-pink-A400.text-auto select.form-control[size]:hover, .bg-pink-A700.text-auto select.form-control[multiple]:hover, .bg-pink-A700.text-auto select.form-control[size]:hover, .bg-purple-300.text-auto select.form-control[multiple]:hover, .bg-purple-300.text-auto select.form-control[size]:hover, .bg-purple-400.text-auto select.form-control[multiple]:hover, .bg-purple-400.text-auto select.form-control[size]:hover, .bg-purple-500.text-auto select.form-control[multiple]:hover, .bg-purple-500.text-auto select.form-control[size]:hover, .bg-purple.text-auto select.form-control[multiple]:hover, .bg-purple.text-auto select.form-control[size]:hover, .bg-purple-600.text-auto select.form-control[multiple]:hover, .bg-purple-600.text-auto select.form-control[size]:hover, .bg-purple-700.text-auto select.form-control[multiple]:hover, .bg-purple-700.text-auto select.form-control[size]:hover, .bg-purple-800.text-auto select.form-control[multiple]:hover, .bg-purple-800.text-auto select.form-control[size]:hover, .bg-purple-900.text-auto select.form-control[multiple]:hover, .bg-purple-900.text-auto select.form-control[size]:hover, .bg-purple-A200.text-auto select.form-control[multiple]:hover, .bg-purple-A200.text-auto select.form-control[size]:hover, .bg-purple-A400.text-auto select.form-control[multiple]:hover, .bg-purple-A400.text-auto select.form-control[size]:hover, .bg-purple-A700.text-auto select.form-control[multiple]:hover, .bg-purple-A700.text-auto select.form-control[size]:hover, .bg-deep-purple-300.text-auto select.form-control[multiple]:hover, .bg-deep-purple-300.text-auto select.form-control[size]:hover, .bg-deep-purple-400.text-auto select.form-control[multiple]:hover, .bg-deep-purple-400.text-auto select.form-control[size]:hover, .bg-deep-purple-500.text-auto select.form-control[multiple]:hover, .bg-deep-purple-500.text-auto select.form-control[size]:hover, .bg-deep-purple.text-auto select.form-control[multiple]:hover, .bg-deep-purple.text-auto select.form-control[size]:hover, .bg-deep-purple-600.text-auto select.form-control[multiple]:hover, .bg-deep-purple-600.text-auto select.form-control[size]:hover, .bg-deep-purple-700.text-auto select.form-control[multiple]:hover, .bg-deep-purple-700.text-auto select.form-control[size]:hover, .bg-deep-purple-800.text-auto select.form-control[multiple]:hover, .bg-deep-purple-800.text-auto select.form-control[size]:hover, .bg-deep-purple-900.text-auto select.form-control[multiple]:hover, .bg-deep-purple-900.text-auto select.form-control[size]:hover, .bg-deep-purple-A200.text-auto select.form-control[multiple]:hover, .bg-deep-purple-A200.text-auto select.form-control[size]:hover, .bg-deep-purple-A400.text-auto select.form-control[multiple]:hover, .bg-deep-purple-A400.text-auto select.form-control[size]:hover, .bg-deep-purple-A700.text-auto select.form-control[multiple]:hover, .bg-deep-purple-A700.text-auto select.form-control[size]:hover, .bg-indigo-300.text-auto select.form-control[multiple]:hover, .bg-indigo-300.text-auto select.form-control[size]:hover, .bg-indigo-400.text-auto select.form-control[multiple]:hover, .bg-indigo-400.text-auto select.form-control[size]:hover, .bg-indigo-500.text-auto select.form-control[multiple]:hover, .bg-indigo-500.text-auto select.form-control[size]:hover, .bg-indigo.text-auto select.form-control[multiple]:hover, .bg-indigo.text-auto select.form-control[size]:hover, .bg-indigo-600.text-auto select.form-control[multiple]:hover, .bg-indigo-600.text-auto select.form-control[size]:hover, .bg-indigo-700.text-auto select.form-control[multiple]:hover, .bg-indigo-700.text-auto select.form-control[size]:hover, .bg-indigo-800.text-auto select.form-control[multiple]:hover, .bg-indigo-800.text-auto select.form-control[size]:hover, .bg-indigo-900.text-auto select.form-control[multiple]:hover, .bg-indigo-900.text-auto select.form-control[size]:hover, .bg-indigo-A200.text-auto select.form-control[multiple]:hover, .bg-indigo-A200.text-auto select.form-control[size]:hover, .bg-indigo-A400.text-auto select.form-control[multiple]:hover, .bg-indigo-A400.text-auto select.form-control[size]:hover, .bg-indigo-A700.text-auto select.form-control[multiple]:hover, .bg-indigo-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-light-blue-700.text-auto select.form-control[multiple]:hover, .bg-light-blue-700.text-auto select.form-control[size]:hover, .bg-light-blue-800.text-auto select.form-control[multiple]:hover, .bg-light-blue-800.text-auto select.form-control[size]:hover, .bg-light-blue-900.text-auto select.form-control[multiple]:hover, .bg-light-blue-900.text-auto select.form-control[size]:hover, .bg-light-blue-A700.text-auto select.form-control[multiple]:hover, .bg-light-blue-A700.text-auto select.form-control[size]:hover, .bg-cyan-700.text-auto select.form-control[multiple]:hover, .bg-cyan-700.text-auto select.form-control[size]:hover, .bg-cyan-800.text-auto select.form-control[multiple]:hover, .bg-cyan-800.text-auto select.form-control[size]:hover, .bg-cyan-900.text-auto select.form-control[multiple]:hover, .bg-cyan-900.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-light-green-700.text-auto select.form-control[multiple]:hover, .bg-light-green-700.text-auto select.form-control[size]:hover, .bg-light-green-800.text-auto select.form-control[multiple]:hover, .bg-light-green-800.text-auto select.form-control[size]:hover, .bg-light-green-900.text-auto select.form-control[multiple]:hover, .bg-light-green-900.text-auto select.form-control[size]:hover, .bg-lime-900.text-auto select.form-control[multiple]:hover, .bg-lime-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-deep-orange-500.text-auto select.form-control[multiple]:hover, .bg-deep-orange-500.text-auto select.form-control[size]:hover, .bg-deep-orange.text-auto select.form-control[multiple]:hover, .bg-deep-orange.text-auto select.form-control[size]:hover, .bg-deep-orange-600.text-auto select.form-control[multiple]:hover, .bg-deep-orange-600.text-auto select.form-control[size]:hover, .bg-deep-orange-700.text-auto select.form-control[multiple]:hover, .bg-deep-orange-700.text-auto select.form-control[size]:hover, .bg-deep-orange-800.text-auto select.form-control[multiple]:hover, .bg-deep-orange-800.text-auto select.form-control[size]:hover, .bg-deep-orange-900.text-auto select.form-control[multiple]:hover, .bg-deep-orange-900.text-auto select.form-control[size]:hover, .bg-deep-orange-A400.text-auto select.form-control[multiple]:hover, .bg-deep-orange-A400.text-auto select.form-control[size]:hover, .bg-deep-orange-A700.text-auto select.form-control[multiple]:hover, .bg-deep-orange-A700.text-auto select.form-control[size]:hover, .bg-brown-300.text-auto select.form-control[multiple]:hover, .bg-brown-300.text-auto select.form-control[size]:hover, .bg-brown-400.text-auto select.form-control[multiple]:hover, .bg-brown-400.text-auto select.form-control[size]:hover, .bg-brown-500.text-auto select.form-control[multiple]:hover, .bg-brown-500.text-auto select.form-control[size]:hover, .bg-brown.text-auto select.form-control[multiple]:hover, .bg-brown.text-auto select.form-control[size]:hover, .bg-brown-600.text-auto select.form-control[multiple]:hover, .bg-brown-600.text-auto select.form-control[size]:hover, .bg-brown-700.text-auto select.form-control[multiple]:hover, .bg-brown-700.text-auto select.form-control[size]:hover, .bg-brown-800.text-auto select.form-control[multiple]:hover, .bg-brown-800.text-auto select.form-control[size]:hover, .bg-brown-900.text-auto select.form-control[multiple]:hover, .bg-brown-900.text-auto select.form-control[size]:hover, .bg-brown-A400.text-auto select.form-control[multiple]:hover, .bg-brown-A400.text-auto select.form-control[size]:hover, .bg-brown-A700.text-auto select.form-control[multiple]:hover, .bg-brown-A700.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-blue-grey-400.text-auto select.form-control[multiple]:hover, .bg-blue-grey-400.text-auto select.form-control[size]:hover, .bg-blue-grey-500.text-auto select.form-control[multiple]:hover, .bg-blue-grey-500.text-auto select.form-control[size]:hover, .bg-blue-grey.text-auto select.form-control[multiple]:hover, .bg-blue-grey.text-auto select.form-control[size]:hover, .bg-blue-grey-600.text-auto select.form-control[multiple]:hover, .bg-blue-grey-600.text-auto select.form-control[size]:hover, .bg-blue-grey-700.text-auto select.form-control[multiple]:hover, .bg-blue-grey-700.text-auto select.form-control[size]:hover, .bg-blue-grey-800.text-auto select.form-control[multiple]:hover, .bg-blue-grey-800.text-auto select.form-control[size]:hover, .bg-blue-grey-900.text-auto select.form-control[multiple]:hover, .bg-blue-grey-900.text-auto select.form-control[size]:hover, .bg-blue-grey-A400.text-auto select.form-control[multiple]:hover, .bg-blue-grey-A400.text-auto select.form-control[size]:hover, .bg-blue-grey-A700.text-auto select.form-control[multiple]:hover, .bg-blue-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-pink-400.text-auto select.form-control[multiple]:focus, .bg-pink-400.text-auto select.form-control[multiple]:focus:hover, .bg-pink-400.text-auto select.form-control[size]:focus, .bg-pink-400.text-auto select.form-control[size]:focus:hover, .bg-pink-500.text-auto select.form-control[multiple]:focus, .bg-pink-500.text-auto select.form-control[multiple]:focus:hover, .bg-pink-500.text-auto select.form-control[size]:focus, .bg-pink-500.text-auto select.form-control[size]:focus:hover, .bg-pink.text-auto select.form-control[multiple]:focus, .bg-pink.text-auto select.form-control[multiple]:focus:hover, .bg-pink.text-auto select.form-control[size]:focus, .bg-pink.text-auto select.form-control[size]:focus:hover, .bg-pink-600.text-auto select.form-control[multiple]:focus, .bg-pink-600.text-auto select.form-control[multiple]:focus:hover, .bg-pink-600.text-auto select.form-control[size]:focus, .bg-pink-600.text-auto select.form-control[size]:focus:hover, .bg-pink-700.text-auto select.form-control[multiple]:focus, .bg-pink-700.text-auto select.form-control[multiple]:focus:hover, .bg-pink-700.text-auto select.form-control[size]:focus, .bg-pink-700.text-auto select.form-control[size]:focus:hover, .bg-pink-800.text-auto select.form-control[multiple]:focus, .bg-pink-800.text-auto select.form-control[multiple]:focus:hover, .bg-pink-800.text-auto select.form-control[size]:focus, .bg-pink-800.text-auto select.form-control[size]:focus:hover, .bg-pink-900.text-auto select.form-control[multiple]:focus, .bg-pink-900.text-auto select.form-control[multiple]:focus:hover, .bg-pink-900.text-auto select.form-control[size]:focus, .bg-pink-900.text-auto select.form-control[size]:focus:hover, .bg-pink-A200.text-auto select.form-control[multiple]:focus, .bg-pink-A200.text-auto select.form-control[multiple]:focus:hover, .bg-pink-A200.text-auto select.form-control[size]:focus, .bg-pink-A200.text-auto select.form-control[size]:focus:hover, .bg-pink-A400.text-auto select.form-control[multiple]:focus, .bg-pink-A400.text-auto select.form-control[multiple]:focus:hover, .bg-pink-A400.text-auto select.form-control[size]:focus, .bg-pink-A400.text-auto select.form-control[size]:focus:hover, .bg-pink-A700.text-auto select.form-control[multiple]:focus, .bg-pink-A700.text-auto select.form-control[multiple]:focus:hover, .bg-pink-A700.text-auto select.form-control[size]:focus, .bg-pink-A700.text-auto select.form-control[size]:focus:hover, .bg-purple-300.text-auto select.form-control[multiple]:focus, .bg-purple-300.text-auto select.form-control[multiple]:focus:hover, .bg-purple-300.text-auto select.form-control[size]:focus, .bg-purple-300.text-auto select.form-control[size]:focus:hover, .bg-purple-400.text-auto select.form-control[multiple]:focus, .bg-purple-400.text-auto select.form-control[multiple]:focus:hover, .bg-purple-400.text-auto select.form-control[size]:focus, .bg-purple-400.text-auto select.form-control[size]:focus:hover, .bg-purple-500.text-auto select.form-control[multiple]:focus, .bg-purple-500.text-auto select.form-control[multiple]:focus:hover, .bg-purple-500.text-auto select.form-control[size]:focus, .bg-purple-500.text-auto select.form-control[size]:focus:hover, .bg-purple.text-auto select.form-control[multiple]:focus, .bg-purple.text-auto select.form-control[multiple]:focus:hover, .bg-purple.text-auto select.form-control[size]:focus, .bg-purple.text-auto select.form-control[size]:focus:hover, .bg-purple-600.text-auto select.form-control[multiple]:focus, .bg-purple-600.text-auto select.form-control[multiple]:focus:hover, .bg-purple-600.text-auto select.form-control[size]:focus, .bg-purple-600.text-auto select.form-control[size]:focus:hover, .bg-purple-700.text-auto select.form-control[multiple]:focus, .bg-purple-700.text-auto select.form-control[multiple]:focus:hover, .bg-purple-700.text-auto select.form-control[size]:focus, .bg-purple-700.text-auto select.form-control[size]:focus:hover, .bg-purple-800.text-auto select.form-control[multiple]:focus, .bg-purple-800.text-auto select.form-control[multiple]:focus:hover, .bg-purple-800.text-auto select.form-control[size]:focus, .bg-purple-800.text-auto select.form-control[size]:focus:hover, .bg-purple-900.text-auto select.form-control[multiple]:focus, .bg-purple-900.text-auto select.form-control[multiple]:focus:hover, .bg-purple-900.text-auto select.form-control[size]:focus, .bg-purple-900.text-auto select.form-control[size]:focus:hover, .bg-purple-A200.text-auto select.form-control[multiple]:focus, .bg-purple-A200.text-auto select.form-control[multiple]:focus:hover, .bg-purple-A200.text-auto select.form-control[size]:focus, .bg-purple-A200.text-auto select.form-control[size]:focus:hover, .bg-purple-A400.text-auto select.form-control[multiple]:focus, .bg-purple-A400.text-auto select.form-control[multiple]:focus:hover, .bg-purple-A400.text-auto select.form-control[size]:focus, .bg-purple-A400.text-auto select.form-control[size]:focus:hover, .bg-purple-A700.text-auto select.form-control[multiple]:focus, .bg-purple-A700.text-auto select.form-control[multiple]:focus:hover, .bg-purple-A700.text-auto select.form-control[size]:focus, .bg-purple-A700.text-auto select.form-control[size]:focus:hover, .bg-deep-purple-300.text-auto select.form-control[multiple]:focus, .bg-deep-purple-300.text-auto select.form-control[multiple]:focus:hover, .bg-deep-purple-300.text-auto select.form-control[size]:focus, .bg-deep-purple-300.text-auto select.form-control[size]:focus:hover, .bg-deep-purple-400.text-auto select.form-control[multiple]:focus, .bg-deep-purple-400.text-auto select.form-control[multiple]:focus:hover, .bg-deep-purple-400.text-auto select.form-control[size]:focus, .bg-deep-purple-400.text-auto select.form-control[size]:focus:hover, .bg-deep-purple-500.text-auto select.form-control[multiple]:focus, .bg-deep-purple-500.text-auto select.form-control[multiple]:focus:hover, .bg-deep-purple-500.text-auto select.form-control[size]:focus, .bg-deep-purple-500.text-auto select.form-control[size]:focus:hover, .bg-deep-purple.text-auto select.form-control[multiple]:focus, .bg-deep-purple.text-auto select.form-control[multiple]:focus:hover, .bg-deep-purple.text-auto select.form-control[size]:focus, .bg-deep-purple.text-auto select.form-control[size]:focus:hover, .bg-deep-purple-600.text-auto select.form-control[multiple]:focus, .bg-deep-purple-600.text-auto select.form-control[multiple]:focus:hover, .bg-deep-purple-600.text-auto select.form-control[size]:focus, .bg-deep-purple-600.text-auto select.form-control[size]:focus:hover, .bg-deep-purple-700.text-auto select.form-control[multiple]:focus, .bg-deep-purple-700.text-auto select.form-control[multiple]:focus:hover, .bg-deep-purple-700.text-auto select.form-control[size]:focus, .bg-deep-purple-700.text-auto select.form-control[size]:focus:hover, .bg-deep-purple-800.text-auto select.form-control[multiple]:focus, .bg-deep-purple-800.text-auto select.form-control[multiple]:focus:hover, .bg-deep-purple-800.text-auto select.form-control[size]:focus, .bg-deep-purple-800.text-auto select.form-control[size]:focus:hover, .bg-deep-purple-900.text-auto select.form-control[multiple]:focus, .bg-deep-purple-900.text-auto select.form-control[multiple]:focus:hover, .bg-deep-purple-900.text-auto select.form-control[size]:focus, .bg-deep-purple-900.text-auto select.form-control[size]:focus:hover, .bg-deep-purple-A200.text-auto select.form-control[multiple]:focus, .bg-deep-purple-A200.text-auto select.form-control[multiple]:focus:hover, .bg-deep-purple-A200.text-auto select.form-control[size]:focus, .bg-deep-purple-A200.text-auto select.form-control[size]:focus:hover, .bg-deep-purple-A400.text-auto select.form-control[multiple]:focus, .bg-deep-purple-A400.text-auto select.form-control[multiple]:focus:hover, .bg-deep-purple-A400.text-auto select.form-control[size]:focus, .bg-deep-purple-A400.text-auto select.form-control[size]:focus:hover, .bg-deep-purple-A700.text-auto select.form-control[multiple]:focus, .bg-deep-purple-A700.text-auto select.form-control[multiple]:focus:hover, .bg-deep-purple-A700.text-auto select.form-control[size]:focus, .bg-deep-purple-A700.text-auto select.form-control[size]:focus:hover, .bg-indigo-300.text-auto select.form-control[multiple]:focus, .bg-indigo-300.text-auto select.form-control[multiple]:focus:hover, .bg-indigo-300.text-auto select.form-control[size]:focus, .bg-indigo-300.text-auto select.form-control[size]:focus:hover, .bg-indigo-400.text-auto select.form-control[multiple]:focus, .bg-indigo-400.text-auto select.form-control[multiple]:focus:hover, .bg-indigo-400.text-auto select.form-control[size]:focus, .bg-indigo-400.text-auto select.form-control[size]:focus:hover, .bg-indigo-500.text-auto select.form-control[multiple]:focus, .bg-indigo-500.text-auto select.form-control[multiple]:focus:hover, .bg-indigo-500.text-auto select.form-control[size]:focus, .bg-indigo-500.text-auto select.form-control[size]:focus:hover, .bg-indigo.text-auto select.form-control[multiple]:focus, .bg-indigo.text-auto select.form-control[multiple]:focus:hover, .bg-indigo.text-auto select.form-control[size]:focus, .bg-indigo.text-auto select.form-control[size]:focus:hover, .bg-indigo-600.text-auto select.form-control[multiple]:focus, .bg-indigo-600.text-auto select.form-control[multiple]:focus:hover, .bg-indigo-600.text-auto select.form-control[size]:focus, .bg-indigo-600.text-auto select.form-control[size]:focus:hover, .bg-indigo-700.text-auto select.form-control[multiple]:focus, .bg-indigo-700.text-auto select.form-control[multiple]:focus:hover, .bg-indigo-700.text-auto select.form-control[size]:focus, .bg-indigo-700.text-auto select.form-control[size]:focus:hover, .bg-indigo-800.text-auto select.form-control[multiple]:focus, .bg-indigo-800.text-auto select.form-control[multiple]:focus:hover, .bg-indigo-800.text-auto select.form-control[size]:focus, .bg-indigo-800.text-auto select.form-control[size]:focus:hover, .bg-indigo-900.text-auto select.form-control[multiple]:focus, .bg-indigo-900.text-auto select.form-control[multiple]:focus:hover, .bg-indigo-900.text-auto select.form-control[size]:focus, .bg-indigo-900.text-auto select.form-control[size]:focus:hover, .bg-indigo-A200.text-auto select.form-control[multiple]:focus, .bg-indigo-A200.text-auto select.form-control[multiple]:focus:hover, .bg-indigo-A200.text-auto select.form-control[size]:focus, .bg-indigo-A200.text-auto select.form-control[size]:focus:hover, .bg-indigo-A400.text-auto select.form-control[multiple]:focus, .bg-indigo-A400.text-auto select.form-control[multiple]:focus:hover, .bg-indigo-A400.text-auto select.form-control[size]:focus, .bg-indigo-A400.text-auto select.form-control[size]:focus:hover, .bg-indigo-A700.text-auto select.form-control[multiple]:focus, .bg-indigo-A700.text-auto select.form-control[multiple]:focus:hover, .bg-indigo-A700.text-auto select.form-control[size]:focus, .bg-indigo-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-light-blue-700.text-auto select.form-control[multiple]:focus, .bg-light-blue-700.text-auto select.form-control[multiple]:focus:hover, .bg-light-blue-700.text-auto select.form-control[size]:focus, .bg-light-blue-700.text-auto select.form-control[size]:focus:hover, .bg-light-blue-800.text-auto select.form-control[multiple]:focus, .bg-light-blue-800.text-auto select.form-control[multiple]:focus:hover, .bg-light-blue-800.text-auto select.form-control[size]:focus, .bg-light-blue-800.text-auto select.form-control[size]:focus:hover, .bg-light-blue-900.text-auto select.form-control[multiple]:focus, .bg-light-blue-900.text-auto select.form-control[multiple]:focus:hover, .bg-light-blue-900.text-auto select.form-control[size]:focus, .bg-light-blue-900.text-auto select.form-control[size]:focus:hover, .bg-light-blue-A700.text-auto select.form-control[multiple]:focus, .bg-light-blue-A700.text-auto select.form-control[multiple]:focus:hover, .bg-light-blue-A700.text-auto select.form-control[size]:focus, .bg-light-blue-A700.text-auto select.form-control[size]:focus:hover, .bg-cyan-700.text-auto select.form-control[multiple]:focus, .bg-cyan-700.text-auto select.form-control[multiple]:focus:hover, .bg-cyan-700.text-auto select.form-control[size]:focus, .bg-cyan-700.text-auto select.form-control[size]:focus:hover, .bg-cyan-800.text-auto select.form-control[multiple]:focus, .bg-cyan-800.text-auto select.form-control[multiple]:focus:hover, .bg-cyan-800.text-auto select.form-control[size]:focus, .bg-cyan-800.text-auto select.form-control[size]:focus:hover, .bg-cyan-900.text-auto select.form-control[multiple]:focus, .bg-cyan-900.text-auto select.form-control[multiple]:focus:hover, .bg-cyan-900.text-auto select.form-control[size]:focus, .bg-cyan-900.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-light-green-700.text-auto select.form-control[multiple]:focus, .bg-light-green-700.text-auto select.form-control[multiple]:focus:hover, .bg-light-green-700.text-auto select.form-control[size]:focus, .bg-light-green-700.text-auto select.form-control[size]:focus:hover, .bg-light-green-800.text-auto select.form-control[multiple]:focus, .bg-light-green-800.text-auto select.form-control[multiple]:focus:hover, .bg-light-green-800.text-auto select.form-control[size]:focus, .bg-light-green-800.text-auto select.form-control[size]:focus:hover, .bg-light-green-900.text-auto select.form-control[multiple]:focus, .bg-light-green-900.text-auto select.form-control[multiple]:focus:hover, .bg-light-green-900.text-auto select.form-control[size]:focus, .bg-light-green-900.text-auto select.form-control[size]:focus:hover, .bg-lime-900.text-auto select.form-control[multiple]:focus, .bg-lime-900.text-auto select.form-control[multiple]:focus:hover, .bg-lime-900.text-auto select.form-control[size]:focus, .bg-lime-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-deep-orange-500.text-auto select.form-control[multiple]:focus, .bg-deep-orange-500.text-auto select.form-control[multiple]:focus:hover, .bg-deep-orange-500.text-auto select.form-control[size]:focus, .bg-deep-orange-500.text-auto select.form-control[size]:focus:hover, .bg-deep-orange.text-auto select.form-control[multiple]:focus, .bg-deep-orange.text-auto select.form-control[multiple]:focus:hover, .bg-deep-orange.text-auto select.form-control[size]:focus, .bg-deep-orange.text-auto select.form-control[size]:focus:hover, .bg-deep-orange-600.text-auto select.form-control[multiple]:focus, .bg-deep-orange-600.text-auto select.form-control[multiple]:focus:hover, .bg-deep-orange-600.text-auto select.form-control[size]:focus, .bg-deep-orange-600.text-auto select.form-control[size]:focus:hover, .bg-deep-orange-700.text-auto select.form-control[multiple]:focus, .bg-deep-orange-700.text-auto select.form-control[multiple]:focus:hover, .bg-deep-orange-700.text-auto select.form-control[size]:focus, .bg-deep-orange-700.text-auto select.form-control[size]:focus:hover, .bg-deep-orange-800.text-auto select.form-control[multiple]:focus, .bg-deep-orange-800.text-auto select.form-control[multiple]:focus:hover, .bg-deep-orange-800.text-auto select.form-control[size]:focus, .bg-deep-orange-800.text-auto select.form-control[size]:focus:hover, .bg-deep-orange-900.text-auto select.form-control[multiple]:focus, .bg-deep-orange-900.text-auto select.form-control[multiple]:focus:hover, .bg-deep-orange-900.text-auto select.form-control[size]:focus, .bg-deep-orange-900.text-auto select.form-control[size]:focus:hover, .bg-deep-orange-A400.text-auto select.form-control[multiple]:focus, .bg-deep-orange-A400.text-auto select.form-control[multiple]:focus:hover, .bg-deep-orange-A400.text-auto select.form-control[size]:focus, .bg-deep-orange-A400.text-auto select.form-control[size]:focus:hover, .bg-deep-orange-A700.text-auto select.form-control[multiple]:focus, .bg-deep-orange-A700.text-auto select.form-control[multiple]:focus:hover, .bg-deep-orange-A700.text-auto select.form-control[size]:focus, .bg-deep-orange-A700.text-auto select.form-control[size]:focus:hover, .bg-brown-300.text-auto select.form-control[multiple]:focus, .bg-brown-300.text-auto select.form-control[multiple]:focus:hover, .bg-brown-300.text-auto select.form-control[size]:focus, .bg-brown-300.text-auto select.form-control[size]:focus:hover, .bg-brown-400.text-auto select.form-control[multiple]:focus, .bg-brown-400.text-auto select.form-control[multiple]:focus:hover, .bg-brown-400.text-auto select.form-control[size]:focus, .bg-brown-400.text-auto select.form-control[size]:focus:hover, .bg-brown-500.text-auto select.form-control[multiple]:focus, .bg-brown-500.text-auto select.form-control[multiple]:focus:hover, .bg-brown-500.text-auto select.form-control[size]:focus, .bg-brown-500.text-auto select.form-control[size]:focus:hover, .bg-brown.text-auto select.form-control[multiple]:focus, .bg-brown.text-auto select.form-control[multiple]:focus:hover, .bg-brown.text-auto select.form-control[size]:focus, .bg-brown.text-auto select.form-control[size]:focus:hover, .bg-brown-600.text-auto select.form-control[multiple]:focus, .bg-brown-600.text-auto select.form-control[multiple]:focus:hover, .bg-brown-600.text-auto select.form-control[size]:focus, .bg-brown-600.text-auto select.form-control[size]:focus:hover, .bg-brown-700.text-auto select.form-control[multiple]:focus, .bg-brown-700.text-auto select.form-control[multiple]:focus:hover, .bg-brown-700.text-auto select.form-control[size]:focus, .bg-brown-700.text-auto select.form-control[size]:focus:hover, .bg-brown-800.text-auto select.form-control[multiple]:focus, .bg-brown-800.text-auto select.form-control[multiple]:focus:hover, .bg-brown-800.text-auto select.form-control[size]:focus, .bg-brown-800.text-auto select.form-control[size]:focus:hover, .bg-brown-900.text-auto select.form-control[multiple]:focus, .bg-brown-900.text-auto select.form-control[multiple]:focus:hover, .bg-brown-900.text-auto select.form-control[size]:focus, .bg-brown-900.text-auto select.form-control[size]:focus:hover, .bg-brown-A400.text-auto select.form-control[multiple]:focus, .bg-brown-A400.text-auto select.form-control[multiple]:focus:hover, .bg-brown-A400.text-auto select.form-control[size]:focus, .bg-brown-A400.text-auto select.form-control[size]:focus:hover, .bg-brown-A700.text-auto select.form-control[multiple]:focus, .bg-brown-A700.text-auto select.form-control[multiple]:focus:hover, .bg-brown-A700.text-auto select.form-control[size]:focus, .bg-brown-A700.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-blue-grey-400.text-auto select.form-control[multiple]:focus, .bg-blue-grey-400.text-auto select.form-control[multiple]:focus:hover, .bg-blue-grey-400.text-auto select.form-control[size]:focus, .bg-blue-grey-400.text-auto select.form-control[size]:focus:hover, .bg-blue-grey-500.text-auto select.form-control[multiple]:focus, .bg-blue-grey-500.text-auto select.form-control[multiple]:focus:hover, .bg-blue-grey-500.text-auto select.form-control[size]:focus, .bg-blue-grey-500.text-auto select.form-control[size]:focus:hover, .bg-blue-grey.text-auto select.form-control[multiple]:focus, .bg-blue-grey.text-auto select.form-control[multiple]:focus:hover, .bg-blue-grey.text-auto select.form-control[size]:focus, .bg-blue-grey.text-auto select.form-control[size]:focus:hover, .bg-blue-grey-600.text-auto select.form-control[multiple]:focus, .bg-blue-grey-600.text-auto select.form-control[multiple]:focus:hover, .bg-blue-grey-600.text-auto select.form-control[size]:focus, .bg-blue-grey-600.text-auto select.form-control[size]:focus:hover, .bg-blue-grey-700.text-auto select.form-control[multiple]:focus, .bg-blue-grey-700.text-auto select.form-control[multiple]:focus:hover, .bg-blue-grey-700.text-auto select.form-control[size]:focus, .bg-blue-grey-700.text-auto select.form-control[size]:focus:hover, .bg-blue-grey-800.text-auto select.form-control[multiple]:focus, .bg-blue-grey-800.text-auto select.form-control[multiple]:focus:hover, .bg-blue-grey-800.text-auto select.form-control[size]:focus, .bg-blue-grey-800.text-auto select.form-control[size]:focus:hover, .bg-blue-grey-900.text-auto select.form-control[multiple]:focus, .bg-blue-grey-900.text-auto select.form-control[multiple]:focus:hover, .bg-blue-grey-900.text-auto select.form-control[size]:focus, .bg-blue-grey-900.text-auto select.form-control[size]:focus:hover, .bg-blue-grey-A400.text-auto select.form-control[multiple]:focus, .bg-blue-grey-A400.text-auto select.form-control[multiple]:focus:hover, .bg-blue-grey-A400.text-auto select.form-control[size]:focus, .bg-blue-grey-A400.text-auto select.form-control[size]:focus:hover, .bg-blue-grey-A700.text-auto select.form-control[multiple]:focus, .bg-blue-grey-A700.text-auto select.form-control[multiple]:focus:hover, .bg-blue-grey-A700.text-auto select.form-control[size]:focus, .bg-blue-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-pink-400.text-auto .form-group > label, .bg-pink-500.text-auto .form-group > label, .bg-pink.text-auto .form-group > label, .bg-pink-600.text-auto .form-group > label, .bg-pink-700.text-auto .form-group > label, .bg-pink-800.text-auto .form-group > label, .bg-pink-900.text-auto .form-group > label, .bg-pink-A200.text-auto .form-group > label, .bg-pink-A400.text-auto .form-group > label, .bg-pink-A700.text-auto .form-group > label, .bg-purple-300.text-auto .form-group > label, .bg-purple-400.text-auto .form-group > label, .bg-purple-500.text-auto .form-group > label, .bg-purple.text-auto .form-group > label, .bg-purple-600.text-auto .form-group > label, .bg-purple-700.text-auto .form-group > label, .bg-purple-800.text-auto .form-group > label, .bg-purple-900.text-auto .form-group > label, .bg-purple-A200.text-auto .form-group > label, .bg-purple-A400.text-auto .form-group > label, .bg-purple-A700.text-auto .form-group > label, .bg-deep-purple-300.text-auto .form-group > label, .bg-deep-purple-400.text-auto .form-group > label, .bg-deep-purple-500.text-auto .form-group > label, .bg-deep-purple.text-auto .form-group > label, .bg-deep-purple-600.text-auto .form-group > label, .bg-deep-purple-700.text-auto .form-group > label, .bg-deep-purple-800.text-auto .form-group > label, .bg-deep-purple-900.text-auto .form-group > label, .bg-deep-purple-A200.text-auto .form-group > label, .bg-deep-purple-A400.text-auto .form-group > label, .bg-deep-purple-A700.text-auto .form-group > label, .bg-indigo-300.text-auto .form-group > label, .bg-indigo-400.text-auto .form-group > label, .bg-indigo-500.text-auto .form-group > label, .bg-indigo.text-auto .form-group > label, .bg-indigo-600.text-auto .form-group > label, .bg-indigo-700.text-auto .form-group > label, .bg-indigo-800.text-auto .form-group > label, .bg-indigo-900.text-auto .form-group > label, .bg-indigo-A200.text-auto .form-group > label, .bg-indigo-A400.text-auto .form-group > label, .bg-indigo-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-light-blue-700.text-auto .form-group > label, .bg-light-blue-800.text-auto .form-group > label, .bg-light-blue-900.text-auto .form-group > label, .bg-light-blue-A700.text-auto .form-group > label, .bg-cyan-700.text-auto .form-group > label, .bg-cyan-800.text-auto .form-group > label, .bg-cyan-900.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-light-green-700.text-auto .form-group > label, .bg-light-green-800.text-auto .form-group > label, .bg-light-green-900.text-auto .form-group > label, .bg-lime-900.text-auto .form-group > label, .bg-orange-900.text-auto .form-group > label, .bg-deep-orange-500.text-auto .form-group > label, .bg-deep-orange.text-auto .form-group > label, .bg-deep-orange-600.text-auto .form-group > label, .bg-deep-orange-700.text-auto .form-group > label, .bg-deep-orange-800.text-auto .form-group > label, .bg-deep-orange-900.text-auto .form-group > label, .bg-deep-orange-A400.text-auto .form-group > label, .bg-deep-orange-A700.text-auto .form-group > label, .bg-brown-300.text-auto .form-group > label, .bg-brown-400.text-auto .form-group > label, .bg-brown-500.text-auto .form-group > label, .bg-brown.text-auto .form-group > label, .bg-brown-600.text-auto .form-group > label, .bg-brown-700.text-auto .form-group > label, .bg-brown-800.text-auto .form-group > label, .bg-brown-900.text-auto .form-group > label, .bg-brown-A400.text-auto .form-group > label, .bg-brown-A700.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-blue-grey-400.text-auto .form-group > label, .bg-blue-grey-500.text-auto .form-group > label, .bg-blue-grey.text-auto .form-group > label, .bg-blue-grey-600.text-auto .form-group > label, .bg-blue-grey-700.text-auto .form-group > label, .bg-blue-grey-800.text-auto .form-group > label, .bg-blue-grey-900.text-auto .form-group > label, .bg-blue-grey-A400.text-auto .form-group > label, .bg-blue-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-pink-400.text-auto .nav .subheader, .bg-pink-500.text-auto .nav .subheader, .bg-pink.text-auto .nav .subheader, .bg-pink-600.text-auto .nav .subheader, .bg-pink-700.text-auto .nav .subheader, .bg-pink-800.text-auto .nav .subheader, .bg-pink-900.text-auto .nav .subheader, .bg-pink-A200.text-auto .nav .subheader, .bg-pink-A400.text-auto .nav .subheader, .bg-pink-A700.text-auto .nav .subheader, .bg-purple-300.text-auto .nav .subheader, .bg-purple-400.text-auto .nav .subheader, .bg-purple-500.text-auto .nav .subheader, .bg-purple.text-auto .nav .subheader, .bg-purple-600.text-auto .nav .subheader, .bg-purple-700.text-auto .nav .subheader, .bg-purple-800.text-auto .nav .subheader, .bg-purple-900.text-auto .nav .subheader, .bg-purple-A200.text-auto .nav .subheader, .bg-purple-A400.text-auto .nav .subheader, .bg-purple-A700.text-auto .nav .subheader, .bg-deep-purple-300.text-auto .nav .subheader, .bg-deep-purple-400.text-auto .nav .subheader, .bg-deep-purple-500.text-auto .nav .subheader, .bg-deep-purple.text-auto .nav .subheader, .bg-deep-purple-600.text-auto .nav .subheader, .bg-deep-purple-700.text-auto .nav .subheader, .bg-deep-purple-800.text-auto .nav .subheader, .bg-deep-purple-900.text-auto .nav .subheader, .bg-deep-purple-A200.text-auto .nav .subheader, .bg-deep-purple-A400.text-auto .nav .subheader, .bg-deep-purple-A700.text-auto .nav .subheader, .bg-indigo-300.text-auto .nav .subheader, .bg-indigo-400.text-auto .nav .subheader, .bg-indigo-500.text-auto .nav .subheader, .bg-indigo.text-auto .nav .subheader, .bg-indigo-600.text-auto .nav .subheader, .bg-indigo-700.text-auto .nav .subheader, .bg-indigo-800.text-auto .nav .subheader, .bg-indigo-900.text-auto .nav .subheader, .bg-indigo-A200.text-auto .nav .subheader, .bg-indigo-A400.text-auto .nav .subheader, .bg-indigo-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-light-blue-700.text-auto .nav .subheader, .bg-light-blue-800.text-auto .nav .subheader, .bg-light-blue-900.text-auto .nav .subheader, .bg-light-blue-A700.text-auto .nav .subheader, .bg-cyan-700.text-auto .nav .subheader, .bg-cyan-800.text-auto .nav .subheader, .bg-cyan-900.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-light-green-700.text-auto .nav .subheader, .bg-light-green-800.text-auto .nav .subheader, .bg-light-green-900.text-auto .nav .subheader, .bg-lime-900.text-auto .nav .subheader, .bg-orange-900.text-auto .nav .subheader, .bg-deep-orange-500.text-auto .nav .subheader, .bg-deep-orange.text-auto .nav .subheader, .bg-deep-orange-600.text-auto .nav .subheader, .bg-deep-orange-700.text-auto .nav .subheader, .bg-deep-orange-800.text-auto .nav .subheader, .bg-deep-orange-900.text-auto .nav .subheader, .bg-deep-orange-A400.text-auto .nav .subheader, .bg-deep-orange-A700.text-auto .nav .subheader, .bg-brown-300.text-auto .nav .subheader, .bg-brown-400.text-auto .nav .subheader, .bg-brown-500.text-auto .nav .subheader, .bg-brown.text-auto .nav .subheader, .bg-brown-600.text-auto .nav .subheader, .bg-brown-700.text-auto .nav .subheader, .bg-brown-800.text-auto .nav .subheader, .bg-brown-900.text-auto .nav .subheader, .bg-brown-A400.text-auto .nav .subheader, .bg-brown-A700.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-blue-grey-400.text-auto .nav .subheader, .bg-blue-grey-500.text-auto .nav .subheader, .bg-blue-grey.text-auto .nav .subheader, .bg-blue-grey-600.text-auto .nav .subheader, .bg-blue-grey-700.text-auto .nav .subheader, .bg-blue-grey-800.text-auto .nav .subheader, .bg-blue-grey-900.text-auto .nav .subheader, .bg-blue-grey-A400.text-auto .nav .subheader, .bg-blue-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 .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-pink-400.text-auto .nav .nav-link, .bg-pink-500.text-auto .nav .nav-link, .bg-pink.text-auto .nav .nav-link, .bg-pink-600.text-auto .nav .nav-link, .bg-pink-700.text-auto .nav .nav-link, .bg-pink-800.text-auto .nav .nav-link, .bg-pink-900.text-auto .nav .nav-link, .bg-pink-A200.text-auto .nav .nav-link, .bg-pink-A400.text-auto .nav .nav-link, .bg-pink-A700.text-auto .nav .nav-link, .bg-purple-300.text-auto .nav .nav-link, .bg-purple-400.text-auto .nav .nav-link, .bg-purple-500.text-auto .nav .nav-link, .bg-purple.text-auto .nav .nav-link, .bg-purple-600.text-auto .nav .nav-link, .bg-purple-700.text-auto .nav .nav-link, .bg-purple-800.text-auto .nav .nav-link, .bg-purple-900.text-auto .nav .nav-link, .bg-purple-A200.text-auto .nav .nav-link, .bg-purple-A400.text-auto .nav .nav-link, .bg-purple-A700.text-auto .nav .nav-link, .bg-deep-purple-300.text-auto .nav .nav-link, .bg-deep-purple-400.text-auto .nav .nav-link, .bg-deep-purple-500.text-auto .nav .nav-link, .bg-deep-purple.text-auto .nav .nav-link, .bg-deep-purple-600.text-auto .nav .nav-link, .bg-deep-purple-700.text-auto .nav .nav-link, .bg-deep-purple-800.text-auto .nav .nav-link, .bg-deep-purple-900.text-auto .nav .nav-link, .bg-deep-purple-A200.text-auto .nav .nav-link, .bg-deep-purple-A400.text-auto .nav .nav-link, .bg-deep-purple-A700.text-auto .nav .nav-link, .bg-indigo-300.text-auto .nav .nav-link, .bg-indigo-400.text-auto .nav .nav-link, .bg-indigo-500.text-auto .nav .nav-link, .bg-indigo.text-auto .nav .nav-link, .bg-indigo-600.text-auto .nav .nav-link, .bg-indigo-700.text-auto .nav .nav-link, .bg-indigo-800.text-auto .nav .nav-link, .bg-indigo-900.text-auto .nav .nav-link, .bg-indigo-A200.text-auto .nav .nav-link, .bg-indigo-A400.text-auto .nav .nav-link, .bg-indigo-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-light-blue-700.text-auto .nav .nav-link, .bg-light-blue-800.text-auto .nav .nav-link, .bg-light-blue-900.text-auto .nav .nav-link, .bg-light-blue-A700.text-auto .nav .nav-link, .bg-cyan-700.text-auto .nav .nav-link, .bg-cyan-800.text-auto .nav .nav-link, .bg-cyan-900.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-light-green-700.text-auto .nav .nav-link, .bg-light-green-800.text-auto .nav .nav-link, .bg-light-green-900.text-auto .nav .nav-link, .bg-lime-900.text-auto .nav .nav-link, .bg-orange-900.text-auto .nav .nav-link, .bg-deep-orange-500.text-auto .nav .nav-link, .bg-deep-orange.text-auto .nav .nav-link, .bg-deep-orange-600.text-auto .nav .nav-link, .bg-deep-orange-700.text-auto .nav .nav-link, .bg-deep-orange-800.text-auto .nav .nav-link, .bg-deep-orange-900.text-auto .nav .nav-link, .bg-deep-orange-A400.text-auto .nav .nav-link, .bg-deep-orange-A700.text-auto .nav .nav-link, .bg-brown-300.text-auto .nav .nav-link, .bg-brown-400.text-auto .nav .nav-link, .bg-brown-500.text-auto .nav .nav-link, .bg-brown.text-auto .nav .nav-link, .bg-brown-600.text-auto .nav .nav-link, .bg-brown-700.text-auto .nav .nav-link, .bg-brown-800.text-auto .nav .nav-link, .bg-brown-900.text-auto .nav .nav-link, .bg-brown-A400.text-auto .nav .nav-link, .bg-brown-A700.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-blue-grey-400.text-auto .nav .nav-link, .bg-blue-grey-500.text-auto .nav .nav-link, .bg-blue-grey.text-auto .nav .nav-link, .bg-blue-grey-600.text-auto .nav .nav-link, .bg-blue-grey-700.text-auto .nav .nav-link, .bg-blue-grey-800.text-auto .nav .nav-link, .bg-blue-grey-900.text-auto .nav .nav-link, .bg-blue-grey-A400.text-auto .nav .nav-link, .bg-blue-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-pink-400.text-auto .nav .nav-link:hover, .bg-pink-500.text-auto .nav .nav-link:hover, .bg-pink.text-auto .nav .nav-link:hover, .bg-pink-600.text-auto .nav .nav-link:hover, .bg-pink-700.text-auto .nav .nav-link:hover, .bg-pink-800.text-auto .nav .nav-link:hover, .bg-pink-900.text-auto .nav .nav-link:hover, .bg-pink-A200.text-auto .nav .nav-link:hover, .bg-pink-A400.text-auto .nav .nav-link:hover, .bg-pink-A700.text-auto .nav .nav-link:hover, .bg-purple-300.text-auto .nav .nav-link:hover, .bg-purple-400.text-auto .nav .nav-link:hover, .bg-purple-500.text-auto .nav .nav-link:hover, .bg-purple.text-auto .nav .nav-link:hover, .bg-purple-600.text-auto .nav .nav-link:hover, .bg-purple-700.text-auto .nav .nav-link:hover, .bg-purple-800.text-auto .nav .nav-link:hover, .bg-purple-900.text-auto .nav .nav-link:hover, .bg-purple-A200.text-auto .nav .nav-link:hover, .bg-purple-A400.text-auto .nav .nav-link:hover, .bg-purple-A700.text-auto .nav .nav-link:hover, .bg-deep-purple-300.text-auto .nav .nav-link:hover, .bg-deep-purple-400.text-auto .nav .nav-link:hover, .bg-deep-purple-500.text-auto .nav .nav-link:hover, .bg-deep-purple.text-auto .nav .nav-link:hover, .bg-deep-purple-600.text-auto .nav .nav-link:hover, .bg-deep-purple-700.text-auto .nav .nav-link:hover, .bg-deep-purple-800.text-auto .nav .nav-link:hover, .bg-deep-purple-900.text-auto .nav .nav-link:hover, .bg-deep-purple-A200.text-auto .nav .nav-link:hover, .bg-deep-purple-A400.text-auto .nav .nav-link:hover, .bg-deep-purple-A700.text-auto .nav .nav-link:hover, .bg-indigo-300.text-auto .nav .nav-link:hover, .bg-indigo-400.text-auto .nav .nav-link:hover, .bg-indigo-500.text-auto .nav .nav-link:hover, .bg-indigo.text-auto .nav .nav-link:hover, .bg-indigo-600.text-auto .nav .nav-link:hover, .bg-indigo-700.text-auto .nav .nav-link:hover, .bg-indigo-800.text-auto .nav .nav-link:hover, .bg-indigo-900.text-auto .nav .nav-link:hover, .bg-indigo-A200.text-auto .nav .nav-link:hover, .bg-indigo-A400.text-auto .nav .nav-link:hover, .bg-indigo-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-light-blue-700.text-auto .nav .nav-link:hover, .bg-light-blue-800.text-auto .nav .nav-link:hover, .bg-light-blue-900.text-auto .nav .nav-link:hover, .bg-light-blue-A700.text-auto .nav .nav-link:hover, .bg-cyan-700.text-auto .nav .nav-link:hover, .bg-cyan-800.text-auto .nav .nav-link:hover, .bg-cyan-900.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-light-green-700.text-auto .nav .nav-link:hover, .bg-light-green-800.text-auto .nav .nav-link:hover, .bg-light-green-900.text-auto .nav .nav-link:hover, .bg-lime-900.text-auto .nav .nav-link:hover, .bg-orange-900.text-auto .nav .nav-link:hover, .bg-deep-orange-500.text-auto .nav .nav-link:hover, .bg-deep-orange.text-auto .nav .nav-link:hover, .bg-deep-orange-600.text-auto .nav .nav-link:hover, .bg-deep-orange-700.text-auto .nav .nav-link:hover, .bg-deep-orange-800.text-auto .nav .nav-link:hover, .bg-deep-orange-900.text-auto .nav .nav-link:hover, .bg-deep-orange-A400.text-auto .nav .nav-link:hover, .bg-deep-orange-A700.text-auto .nav .nav-link:hover, .bg-brown-300.text-auto .nav .nav-link:hover, .bg-brown-400.text-auto .nav .nav-link:hover, .bg-brown-500.text-auto .nav .nav-link:hover, .bg-brown.text-auto .nav .nav-link:hover, .bg-brown-600.text-auto .nav .nav-link:hover, .bg-brown-700.text-auto .nav .nav-link:hover, .bg-brown-800.text-auto .nav .nav-link:hover, .bg-brown-900.text-auto .nav .nav-link:hover, .bg-brown-A400.text-auto .nav .nav-link:hover, .bg-brown-A700.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-blue-grey-400.text-auto .nav .nav-link:hover, .bg-blue-grey-500.text-auto .nav .nav-link:hover, .bg-blue-grey.text-auto .nav .nav-link:hover, .bg-blue-grey-600.text-auto .nav .nav-link:hover, .bg-blue-grey-700.text-auto .nav .nav-link:hover, .bg-blue-grey-800.text-auto .nav .nav-link:hover, .bg-blue-grey-900.text-auto .nav .nav-link:hover, .bg-blue-grey-A400.text-auto .nav .nav-link:hover, .bg-blue-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-pink-400.text-auto .nav .nav-link:hover > i, .bg-pink-500.text-auto .nav .nav-link:hover > i, .bg-pink.text-auto .nav .nav-link:hover > i, .bg-pink-600.text-auto .nav .nav-link:hover > i, .bg-pink-700.text-auto .nav .nav-link:hover > i, .bg-pink-800.text-auto .nav .nav-link:hover > i, .bg-pink-900.text-auto .nav .nav-link:hover > i, .bg-pink-A200.text-auto .nav .nav-link:hover > i, .bg-pink-A400.text-auto .nav .nav-link:hover > i, .bg-pink-A700.text-auto .nav .nav-link:hover > i, .bg-purple-300.text-auto .nav .nav-link:hover > i, .bg-purple-400.text-auto .nav .nav-link:hover > i, .bg-purple-500.text-auto .nav .nav-link:hover > i, .bg-purple.text-auto .nav .nav-link:hover > i, .bg-purple-600.text-auto .nav .nav-link:hover > i, .bg-purple-700.text-auto .nav .nav-link:hover > i, .bg-purple-800.text-auto .nav .nav-link:hover > i, .bg-purple-900.text-auto .nav .nav-link:hover > i, .bg-purple-A200.text-auto .nav .nav-link:hover > i, .bg-purple-A400.text-auto .nav .nav-link:hover > i, .bg-purple-A700.text-auto .nav .nav-link:hover > i, .bg-deep-purple-300.text-auto .nav .nav-link:hover > i, .bg-deep-purple-400.text-auto .nav .nav-link:hover > i, .bg-deep-purple-500.text-auto .nav .nav-link:hover > i, .bg-deep-purple.text-auto .nav .nav-link:hover > i, .bg-deep-purple-600.text-auto .nav .nav-link:hover > i, .bg-deep-purple-700.text-auto .nav .nav-link:hover > i, .bg-deep-purple-800.text-auto .nav .nav-link:hover > i, .bg-deep-purple-900.text-auto .nav .nav-link:hover > i, .bg-deep-purple-A200.text-auto .nav .nav-link:hover > i, .bg-deep-purple-A400.text-auto .nav .nav-link:hover > i, .bg-deep-purple-A700.text-auto .nav .nav-link:hover > i, .bg-indigo-300.text-auto .nav .nav-link:hover > i, .bg-indigo-400.text-auto .nav .nav-link:hover > i, .bg-indigo-500.text-auto .nav .nav-link:hover > i, .bg-indigo.text-auto .nav .nav-link:hover > i, .bg-indigo-600.text-auto .nav .nav-link:hover > i, .bg-indigo-700.text-auto .nav .nav-link:hover > i, .bg-indigo-800.text-auto .nav .nav-link:hover > i, .bg-indigo-900.text-auto .nav .nav-link:hover > i, .bg-indigo-A200.text-auto .nav .nav-link:hover > i, .bg-indigo-A400.text-auto .nav .nav-link:hover > i, .bg-indigo-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-light-blue-700.text-auto .nav .nav-link:hover > i, .bg-light-blue-800.text-auto .nav .nav-link:hover > i, .bg-light-blue-900.text-auto .nav .nav-link:hover > i, .bg-light-blue-A700.text-auto .nav .nav-link:hover > i, .bg-cyan-700.text-auto .nav .nav-link:hover > i, .bg-cyan-800.text-auto .nav .nav-link:hover > i, .bg-cyan-900.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-light-green-700.text-auto .nav .nav-link:hover > i, .bg-light-green-800.text-auto .nav .nav-link:hover > i, .bg-light-green-900.text-auto .nav .nav-link:hover > i, .bg-lime-900.text-auto .nav .nav-link:hover > i, .bg-orange-900.text-auto .nav .nav-link:hover > i, .bg-deep-orange-500.text-auto .nav .nav-link:hover > i, .bg-deep-orange.text-auto .nav .nav-link:hover > i, .bg-deep-orange-600.text-auto .nav .nav-link:hover > i, .bg-deep-orange-700.text-auto .nav .nav-link:hover > i, .bg-deep-orange-800.text-auto .nav .nav-link:hover > i, .bg-deep-orange-900.text-auto .nav .nav-link:hover > i, .bg-deep-orange-A400.text-auto .nav .nav-link:hover > i, .bg-deep-orange-A700.text-auto .nav .nav-link:hover > i, .bg-brown-300.text-auto .nav .nav-link:hover > i, .bg-brown-400.text-auto .nav .nav-link:hover > i, .bg-brown-500.text-auto .nav .nav-link:hover > i, .bg-brown.text-auto .nav .nav-link:hover > i, .bg-brown-600.text-auto .nav .nav-link:hover > i, .bg-brown-700.text-auto .nav .nav-link:hover > i, .bg-brown-800.text-auto .nav .nav-link:hover > i, .bg-brown-900.text-auto .nav .nav-link:hover > i, .bg-brown-A400.text-auto .nav .nav-link:hover > i, .bg-brown-A700.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-blue-grey-400.text-auto .nav .nav-link:hover > i, .bg-blue-grey-500.text-auto .nav .nav-link:hover > i, .bg-blue-grey.text-auto .nav .nav-link:hover > i, .bg-blue-grey-600.text-auto .nav .nav-link:hover > i, .bg-blue-grey-700.text-auto .nav .nav-link:hover > i, .bg-blue-grey-800.text-auto .nav .nav-link:hover > i, .bg-blue-grey-900.text-auto .nav .nav-link:hover > i, .bg-blue-grey-A400.text-auto .nav .nav-link:hover > i, .bg-blue-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-pink-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-pink-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-pink-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-pink-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-pink-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-pink-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-pink.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-pink.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-pink.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-pink-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-pink-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-pink-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-pink-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-pink-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-pink-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-pink-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-pink-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-pink-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-pink-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-pink-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-pink-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-pink-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-pink-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-pink-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-pink-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-pink-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-pink-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-pink-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-pink-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-pink-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-purple-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-purple-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-purple-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-purple-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-purple-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-purple-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-purple-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-purple-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-purple-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-purple.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-purple.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-purple.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-purple-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-purple-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-purple-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-purple-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-purple-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-purple-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-purple-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-purple-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-purple-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-purple-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-purple-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-purple-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-purple-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-purple-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-purple-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-purple-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-purple-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-purple-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-purple-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-purple-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-purple-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-purple-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-purple-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-purple-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-purple.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-purple-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-purple-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-purple-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-purple-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-purple-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-purple-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-purple-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-indigo-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-indigo-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-indigo-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-indigo-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-indigo-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-indigo-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-indigo-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-indigo-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-indigo-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-indigo.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-indigo.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-indigo.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-indigo-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-indigo-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-indigo-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-indigo-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-indigo-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-indigo-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-indigo-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-indigo-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-indigo-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-indigo-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-indigo-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-indigo-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-indigo-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-indigo-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-indigo-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-indigo-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-indigo-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-indigo-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-indigo-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-indigo-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-indigo-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-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-light-blue-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-blue-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-blue-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-blue-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-cyan-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-cyan-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-cyan-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-cyan-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-cyan-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-cyan-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-cyan-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-cyan-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-cyan-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-900.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-light-green-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-green-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-green-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-green-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-green-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-green-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-green-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-green-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-green-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-lime-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-lime-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-lime-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-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-deep-orange-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-orange.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-orange-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-orange-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-orange-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-orange-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-orange-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-orange-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-brown-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-brown-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-brown-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-brown-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-brown-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-brown-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-brown-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-brown-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-brown-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-brown.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-brown.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-brown.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-brown-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-brown-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-brown-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-brown-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-brown-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-brown-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-brown-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-brown-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-brown-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-brown-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-brown-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-brown-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-brown-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-brown-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-brown-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-brown-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-brown-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-brown-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-A700.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-blue-grey-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-grey-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-grey.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-grey-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-grey-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-grey-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-grey-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-grey-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-grey-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-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-pink-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-pink-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-pink.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-pink-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-pink-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-pink-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-pink-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-pink-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-pink-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-pink-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-purple-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-purple-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-purple-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-purple.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-purple-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-purple-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-purple-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-purple-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-purple-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-purple-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-purple-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-purple-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-purple-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-purple-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-purple.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-purple-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-purple-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-purple-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-purple-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-purple-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-purple-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-purple-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-indigo-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-indigo-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-indigo-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-indigo.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-indigo-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-indigo-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-indigo-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-indigo-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-indigo-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-indigo-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-indigo-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-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-light-blue-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-blue-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-blue-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-blue-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-cyan-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-cyan-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-cyan-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-900.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-light-green-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-green-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-green-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-lime-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-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-deep-orange-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-orange.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-orange-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-orange-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-orange-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-orange-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-orange-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-orange-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-brown-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-brown-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-brown-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-brown.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-brown-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-brown-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-brown-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-brown-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-brown-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-brown-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-A700.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-blue-grey-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-grey-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-grey.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-grey-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-grey-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-grey-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-grey-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-grey-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-grey-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-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-pink-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-pink-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-pink-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-pink-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-pink-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-pink-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-pink-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-pink-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-pink-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-pink-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-pink-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-pink-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-pink.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-pink.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-pink.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-pink.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-pink.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-pink.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-pink-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-pink-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-pink-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-pink-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-pink-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-pink-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-pink-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-pink-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-pink-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-pink-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-pink-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-pink-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-pink-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-pink-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-pink-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-pink-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-pink-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-pink-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-pink-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-pink-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-pink-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-pink-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-pink-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-pink-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-pink-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-pink-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-pink-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-pink-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-pink-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-pink-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-pink-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-pink-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-pink-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-pink-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-pink-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-pink-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-pink-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-pink-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-pink-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-pink-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-pink-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-pink-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-purple-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-purple-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-purple-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-purple-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-purple-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-purple-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-purple-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-purple-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-purple-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-purple-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-purple-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-purple-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-purple-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-purple-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-purple-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-purple-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-purple-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-purple-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-purple.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-purple.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-purple.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-purple.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-purple.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-purple.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-purple-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-purple-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-purple-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-purple-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-purple-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-purple-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-purple-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-purple-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-purple-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-purple-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-purple-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-purple-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-purple-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-purple-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-purple-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-purple-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-purple-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-purple-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-purple-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-purple-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-purple-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-purple-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-purple-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-purple-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-purple-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-purple-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-purple-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-purple-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-purple-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-purple-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-purple-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-purple-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-purple-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-purple-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-purple-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-purple-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-purple-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-purple-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-purple-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-purple-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-purple-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-purple-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-purple-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-purple-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-purple-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-purple-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-purple-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-purple-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-purple-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-purple-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-purple-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-purple-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-purple-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-purple-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-purple-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-purple-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-purple-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-purple-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-purple-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-purple-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-purple.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-purple.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-purple.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-purple.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-purple.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-purple.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-purple-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-purple-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-purple-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-purple-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-purple-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-purple-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-purple-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-purple-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-purple-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-purple-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-purple-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-purple-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-purple-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-purple-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-purple-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-purple-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-purple-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-purple-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-purple-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-purple-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-purple-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-purple-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-purple-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-purple-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-purple-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-purple-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-purple-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-purple-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-purple-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-purple-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-purple-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-purple-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-purple-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-purple-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-purple-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-purple-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-purple-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-purple-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-purple-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-purple-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-purple-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-purple-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-indigo-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-indigo-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-indigo-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-indigo-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-indigo-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-indigo-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-indigo-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-indigo-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-indigo-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-indigo-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-indigo-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-indigo-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-indigo-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-indigo-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-indigo-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-indigo-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-indigo-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-indigo-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-indigo.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-indigo.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-indigo.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-indigo.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-indigo.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-indigo.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-indigo-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-indigo-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-indigo-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-indigo-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-indigo-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-indigo-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-indigo-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-indigo-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-indigo-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-indigo-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-indigo-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-indigo-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-indigo-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-indigo-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-indigo-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-indigo-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-indigo-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-indigo-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-indigo-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-indigo-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-indigo-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-indigo-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-indigo-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-indigo-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-indigo-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-indigo-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-indigo-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-indigo-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-indigo-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-indigo-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-indigo-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-indigo-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-indigo-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-indigo-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-indigo-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-indigo-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-indigo-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-indigo-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-indigo-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-indigo-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-indigo-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-indigo-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-light-blue-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-blue-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-blue-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-blue-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-blue-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-blue-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-blue-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-blue-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-blue-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-blue-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-blue-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-blue-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-blue-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-blue-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-blue-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-blue-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-blue-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-blue-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-blue-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-blue-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-blue-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-blue-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-blue-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-blue-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-cyan-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-cyan-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-cyan-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-cyan-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-cyan-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-cyan-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-cyan-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-cyan-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-cyan-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-cyan-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-cyan-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-cyan-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-cyan-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-cyan-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-cyan-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-cyan-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-cyan-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-cyan-900.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-light-green-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-green-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-green-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-green-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-green-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-green-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-green-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-green-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-green-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-green-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-green-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-green-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-green-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-green-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-green-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-green-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-green-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-green-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-lime-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-lime-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-lime-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-lime-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-lime-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-lime-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-deep-orange-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-orange-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-orange-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-orange-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-orange-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-orange-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-orange.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-orange.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-orange.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-orange.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-orange.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-orange.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-orange-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-orange-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-orange-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-orange-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-orange-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-orange-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-orange-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-orange-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-orange-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-orange-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-orange-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-orange-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-orange-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-orange-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-orange-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-orange-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-orange-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-orange-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-orange-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-orange-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-orange-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-orange-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-orange-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-orange-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-orange-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-orange-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-orange-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-orange-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-orange-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-orange-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-orange-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-orange-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-orange-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-orange-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-orange-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-orange-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-brown-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-brown-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-brown-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-brown-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-brown-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-brown-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-brown-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-brown-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-brown-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-brown-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-brown-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-brown-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-brown-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-brown-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-brown-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-brown-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-brown-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-brown-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-brown.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-brown.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-brown.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-brown.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-brown.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-brown.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-brown-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-brown-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-brown-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-brown-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-brown-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-brown-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-brown-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-brown-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-brown-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-brown-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-brown-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-brown-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-brown-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-brown-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-brown-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-brown-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-brown-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-brown-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-brown-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-brown-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-brown-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-brown-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-brown-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-brown-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-brown-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-brown-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-brown-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-brown-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-brown-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-brown-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-brown-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-brown-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-brown-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-brown-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-brown-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-brown-A700.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-blue-grey-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-blue-grey-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-blue-grey-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-grey-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-blue-grey-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-blue-grey-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-grey-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-blue-grey-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-blue-grey-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-grey-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-blue-grey-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-blue-grey-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-grey.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-blue-grey.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-blue-grey.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-grey.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-blue-grey.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-blue-grey.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-grey-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-blue-grey-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-blue-grey-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-grey-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-blue-grey-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-blue-grey-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-grey-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-blue-grey-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-blue-grey-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-grey-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-blue-grey-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-blue-grey-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-grey-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-blue-grey-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-blue-grey-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-grey-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-blue-grey-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-blue-grey-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-grey-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-blue-grey-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-blue-grey-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-grey-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-blue-grey-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-blue-grey-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-grey-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-blue-grey-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-blue-grey-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-grey-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-blue-grey-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-blue-grey-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-grey-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-blue-grey-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-blue-grey-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-grey-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-blue-grey-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-blue-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-pink-400.text-auto .form-check.disabled .form-check-label, .bg-pink-500.text-auto .form-check.disabled .form-check-label, .bg-pink.text-auto .form-check.disabled .form-check-label, .bg-pink-600.text-auto .form-check.disabled .form-check-label, .bg-pink-700.text-auto .form-check.disabled .form-check-label, .bg-pink-800.text-auto .form-check.disabled .form-check-label, .bg-pink-900.text-auto .form-check.disabled .form-check-label, .bg-pink-A200.text-auto .form-check.disabled .form-check-label, .bg-pink-A400.text-auto .form-check.disabled .form-check-label, .bg-pink-A700.text-auto .form-check.disabled .form-check-label, .bg-purple-300.text-auto .form-check.disabled .form-check-label, .bg-purple-400.text-auto .form-check.disabled .form-check-label, .bg-purple-500.text-auto .form-check.disabled .form-check-label, .bg-purple.text-auto .form-check.disabled .form-check-label, .bg-purple-600.text-auto .form-check.disabled .form-check-label, .bg-purple-700.text-auto .form-check.disabled .form-check-label, .bg-purple-800.text-auto .form-check.disabled .form-check-label, .bg-purple-900.text-auto .form-check.disabled .form-check-label, .bg-purple-A200.text-auto .form-check.disabled .form-check-label, .bg-purple-A400.text-auto .form-check.disabled .form-check-label, .bg-purple-A700.text-auto .form-check.disabled .form-check-label, .bg-deep-purple-300.text-auto .form-check.disabled .form-check-label, .bg-deep-purple-400.text-auto .form-check.disabled .form-check-label, .bg-deep-purple-500.text-auto .form-check.disabled .form-check-label, .bg-deep-purple.text-auto .form-check.disabled .form-check-label, .bg-deep-purple-600.text-auto .form-check.disabled .form-check-label, .bg-deep-purple-700.text-auto .form-check.disabled .form-check-label, .bg-deep-purple-800.text-auto .form-check.disabled .form-check-label, .bg-deep-purple-900.text-auto .form-check.disabled .form-check-label, .bg-deep-purple-A200.text-auto .form-check.disabled .form-check-label, .bg-deep-purple-A400.text-auto .form-check.disabled .form-check-label, .bg-deep-purple-A700.text-auto .form-check.disabled .form-check-label, .bg-indigo-300.text-auto .form-check.disabled .form-check-label, .bg-indigo-400.text-auto .form-check.disabled .form-check-label, .bg-indigo-500.text-auto .form-check.disabled .form-check-label, .bg-indigo.text-auto .form-check.disabled .form-check-label, .bg-indigo-600.text-auto .form-check.disabled .form-check-label, .bg-indigo-700.text-auto .form-check.disabled .form-check-label, .bg-indigo-800.text-auto .form-check.disabled .form-check-label, .bg-indigo-900.text-auto .form-check.disabled .form-check-label, .bg-indigo-A200.text-auto .form-check.disabled .form-check-label, .bg-indigo-A400.text-auto .form-check.disabled .form-check-label, .bg-indigo-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-light-blue-700.text-auto .form-check.disabled .form-check-label, .bg-light-blue-800.text-auto .form-check.disabled .form-check-label, .bg-light-blue-900.text-auto .form-check.disabled .form-check-label, .bg-light-blue-A700.text-auto .form-check.disabled .form-check-label, .bg-cyan-700.text-auto .form-check.disabled .form-check-label, .bg-cyan-800.text-auto .form-check.disabled .form-check-label, .bg-cyan-900.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-light-green-700.text-auto .form-check.disabled .form-check-label, .bg-light-green-800.text-auto .form-check.disabled .form-check-label, .bg-light-green-900.text-auto .form-check.disabled .form-check-label, .bg-lime-900.text-auto .form-check.disabled .form-check-label, .bg-orange-900.text-auto .form-check.disabled .form-check-label, .bg-deep-orange-500.text-auto .form-check.disabled .form-check-label, .bg-deep-orange.text-auto .form-check.disabled .form-check-label, .bg-deep-orange-600.text-auto .form-check.disabled .form-check-label, .bg-deep-orange-700.text-auto .form-check.disabled .form-check-label, .bg-deep-orange-800.text-auto .form-check.disabled .form-check-label, .bg-deep-orange-900.text-auto .form-check.disabled .form-check-label, .bg-deep-orange-A400.text-auto .form-check.disabled .form-check-label, .bg-deep-orange-A700.text-auto .form-check.disabled .form-check-label, .bg-brown-300.text-auto .form-check.disabled .form-check-label, .bg-brown-400.text-auto .form-check.disabled .form-check-label, .bg-brown-500.text-auto .form-check.disabled .form-check-label, .bg-brown.text-auto .form-check.disabled .form-check-label, .bg-brown-600.text-auto .form-check.disabled .form-check-label, .bg-brown-700.text-auto .form-check.disabled .form-check-label, .bg-brown-800.text-auto .form-check.disabled .form-check-label, .bg-brown-900.text-auto .form-check.disabled .form-check-label, .bg-brown-A400.text-auto .form-check.disabled .form-check-label, .bg-brown-A700.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-blue-grey-400.text-auto .form-check.disabled .form-check-label, .bg-blue-grey-500.text-auto .form-check.disabled .form-check-label, .bg-blue-grey.text-auto .form-check.disabled .form-check-label, .bg-blue-grey-600.text-auto .form-check.disabled .form-check-label, .bg-blue-grey-700.text-auto .form-check.disabled .form-check-label, .bg-blue-grey-800.text-auto .form-check.disabled .form-check-label, .bg-blue-grey-900.text-auto .form-check.disabled .form-check-label, .bg-blue-grey-A400.text-auto .form-check.disabled .form-check-label, .bg-blue-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-pink-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-pink-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-pink.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-pink-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-pink-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-pink-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-pink-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-pink-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-pink-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-pink-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-purple-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-purple-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-purple-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-purple.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-purple-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-purple-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-purple-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-purple-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-purple-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-purple-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-purple-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-purple-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-purple-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-purple-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-purple.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-purple-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-purple-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-purple-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-purple-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-purple-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-purple-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-purple-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-indigo-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-indigo-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-indigo-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-indigo.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-indigo-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-indigo-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-indigo-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-indigo-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-indigo-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-indigo-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-indigo-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-light-blue-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-blue-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-blue-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-blue-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-cyan-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-cyan-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-cyan-900.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-light-green-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-green-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-green-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-lime-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-orange-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-orange-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-orange.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-orange-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-orange-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-orange-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-orange-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-orange-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-orange-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-brown-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-brown-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-brown-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-brown.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-brown-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-brown-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-brown-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-brown-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-brown-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-brown-A700.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-blue-grey-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-grey-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-grey.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-grey-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-grey-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-grey-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-grey-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-grey-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-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-pink-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-pink-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-pink.text-auto #sidenav .nav-link:hover:not(.active), .bg-pink-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-pink-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-pink-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-pink-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-pink-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-pink-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-pink-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-purple-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-purple-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-purple-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-purple.text-auto #sidenav .nav-link:hover:not(.active), .bg-purple-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-purple-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-purple-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-purple-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-purple-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-purple-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-purple-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-purple-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-purple-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-purple-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-purple.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-purple-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-purple-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-purple-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-purple-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-purple-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-purple-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-purple-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-indigo-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-indigo-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-indigo-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-indigo.text-auto #sidenav .nav-link:hover:not(.active), .bg-indigo-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-indigo-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-indigo-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-indigo-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-indigo-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-indigo-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-indigo-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-light-blue-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-blue-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-blue-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-blue-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-cyan-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-cyan-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-cyan-900.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-light-green-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-green-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-green-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-lime-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-orange-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-orange-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-orange.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-orange-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-orange-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-orange-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-orange-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-orange-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-orange-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-brown-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-brown-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-brown-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-brown.text-auto #sidenav .nav-link:hover:not(.active), .bg-brown-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-brown-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-brown-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-brown-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-brown-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-brown-A700.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-blue-grey-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-grey-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-grey.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-grey-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-grey-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-grey-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-grey-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-grey-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-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-pink-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-pink-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-pink.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-pink-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-pink-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-pink-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-pink-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-pink-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-pink-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-pink-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-purple-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-purple-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-purple-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-purple.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-purple-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-purple-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-purple-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-purple-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-purple-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-purple-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-purple-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-purple-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-purple-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-purple-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-purple.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-purple-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-purple-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-purple-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-purple-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-purple-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-purple-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-purple-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-indigo-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-indigo-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-indigo-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-indigo.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-indigo-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-indigo-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-indigo-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-indigo-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-indigo-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-indigo-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-indigo-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-light-blue-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-blue-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-blue-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-blue-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-cyan-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-cyan-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-cyan-900.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-light-green-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-green-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-green-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-lime-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-orange-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-orange-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-orange.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-orange-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-orange-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-orange-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-orange-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-orange-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-orange-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-brown-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-brown-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-brown-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-brown.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-brown-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-brown-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-brown-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-brown-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-brown-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-brown-A700.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-blue-grey-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-grey-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-grey.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-grey-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-grey-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-grey-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-grey-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-grey-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-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-pink-50.text-auto, .bg-pink-100.text-auto, .bg-pink-200.text-auto, .bg-pink-300.text-auto, .bg-pink-A100.text-auto, .bg-purple-50.text-auto, .bg-purple-100.text-auto, .bg-purple-200.text-auto, .bg-purple-A100.text-auto, .bg-deep-purple-50.text-auto, .bg-deep-purple-100.text-auto, .bg-deep-purple-200.text-auto, .bg-deep-purple-A100.text-auto, .bg-indigo-50.text-auto, .bg-indigo-100.text-auto, .bg-indigo-200.text-auto, .bg-indigo-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-light-blue-50.text-auto, .bg-light-blue-100.text-auto, .bg-light-blue-200.text-auto, .bg-light-blue-300.text-auto, .bg-light-blue-400.text-auto, .bg-light-blue-500.text-auto, .bg-light-blue.text-auto, .bg-light-blue-600.text-auto, .bg-light-blue-A100.text-auto, .bg-light-blue-A200.text-auto, .bg-light-blue-A400.text-auto, .bg-cyan-50.text-auto, .bg-cyan-100.text-auto, .bg-cyan-200.text-auto, .bg-cyan-300.text-auto, .bg-cyan-400.text-auto, .bg-cyan-500.text-auto, .bg-cyan.text-auto, .bg-cyan-600.text-auto, .bg-cyan-A100.text-auto, .bg-cyan-A200.text-auto, .bg-cyan-A400.text-auto, .bg-cyan-A700.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-light-green-50.text-auto, .bg-light-green-100.text-auto, .bg-light-green-200.text-auto, .bg-light-green-300.text-auto, .bg-light-green-400.text-auto, .bg-light-green-500.text-auto, .bg-light-green.text-auto, .bg-light-green-600.text-auto, .bg-light-green-A100.text-auto, .bg-light-green-A200.text-auto, .bg-light-green-A400.text-auto, .bg-light-green-A700.text-auto, .bg-lime-50.text-auto, .bg-lime-100.text-auto, .bg-lime-200.text-auto, .bg-lime-300.text-auto, .bg-lime-400.text-auto, .bg-lime-500.text-auto, .bg-lime.text-auto, .bg-lime-600.text-auto, .bg-lime-700.text-auto, .bg-lime-800.text-auto, .bg-lime-A100.text-auto, .bg-lime-A200.text-auto, .bg-lime-A400.text-auto, .bg-lime-A700.text-auto, .bg-yellow-50.text-auto, .bg-yellow-100.text-auto, .bg-yellow-200.text-auto, .bg-yellow-300.text-auto, .bg-yellow-400.text-auto, .bg-yellow-500.text-auto, .bg-yellow.text-auto, .bg-yellow-600.text-auto, .bg-yellow-700.text-auto, .bg-yellow-800.text-auto, .bg-yellow-900.text-auto, .bg-yellow-A100.text-auto, .bg-yellow-A200.text-auto, .bg-yellow-A400.text-auto, .bg-yellow-A700.text-auto, .bg-amber-50.text-auto, .bg-amber-100.text-auto, .bg-amber-200.text-auto, .bg-amber-300.text-auto, .bg-amber-400.text-auto, .bg-amber-500.text-auto, .bg-amber.text-auto, .bg-amber-600.text-auto, .bg-amber-700.text-auto, .bg-amber-800.text-auto, .bg-amber-900.text-auto, .bg-amber-A100.text-auto, .bg-amber-A200.text-auto, .bg-amber-A400.text-auto, .bg-amber-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-deep-orange-50.text-auto, .bg-deep-orange-100.text-auto, .bg-deep-orange-200.text-auto, .bg-deep-orange-300.text-auto, .bg-deep-orange-400.text-auto, .bg-deep-orange-A100.text-auto, .bg-deep-orange-A200.text-auto, .bg-brown-50.text-auto, .bg-brown-100.text-auto, .bg-brown-200.text-auto, .bg-brown-A100.text-auto, .bg-brown-A200.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-blue-grey-50.text-auto, .bg-blue-grey-100.text-auto, .bg-blue-grey-200.text-auto, .bg-blue-grey-300.text-auto, .bg-blue-grey-A100.text-auto, .bg-blue-grey-A200.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-pink-50.text-auto a:hover, .bg-pink-100.text-auto a:hover, .bg-pink-200.text-auto a:hover, .bg-pink-300.text-auto a:hover, .bg-pink-A100.text-auto a:hover, .bg-purple-50.text-auto a:hover, .bg-purple-100.text-auto a:hover, .bg-purple-200.text-auto a:hover, .bg-purple-A100.text-auto a:hover, .bg-deep-purple-50.text-auto a:hover, .bg-deep-purple-100.text-auto a:hover, .bg-deep-purple-200.text-auto a:hover, .bg-deep-purple-A100.text-auto a:hover, .bg-indigo-50.text-auto a:hover, .bg-indigo-100.text-auto a:hover, .bg-indigo-200.text-auto a:hover, .bg-indigo-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-light-blue-50.text-auto a:hover, .bg-light-blue-100.text-auto a:hover, .bg-light-blue-200.text-auto a:hover, .bg-light-blue-300.text-auto a:hover, .bg-light-blue-400.text-auto a:hover, .bg-light-blue-500.text-auto a:hover, .bg-light-blue.text-auto a:hover, .bg-light-blue-600.text-auto a:hover, .bg-light-blue-A100.text-auto a:hover, .bg-light-blue-A200.text-auto a:hover, .bg-light-blue-A400.text-auto a:hover, .bg-cyan-50.text-auto a:hover, .bg-cyan-100.text-auto a:hover, .bg-cyan-200.text-auto a:hover, .bg-cyan-300.text-auto a:hover, .bg-cyan-400.text-auto a:hover, .bg-cyan-500.text-auto a:hover, .bg-cyan.text-auto a:hover, .bg-cyan-600.text-auto a:hover, .bg-cyan-A100.text-auto a:hover, .bg-cyan-A200.text-auto a:hover, .bg-cyan-A400.text-auto a:hover, .bg-cyan-A700.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-light-green-50.text-auto a:hover, .bg-light-green-100.text-auto a:hover, .bg-light-green-200.text-auto a:hover, .bg-light-green-300.text-auto a:hover, .bg-light-green-400.text-auto a:hover, .bg-light-green-500.text-auto a:hover, .bg-light-green.text-auto a:hover, .bg-light-green-600.text-auto a:hover, .bg-light-green-A100.text-auto a:hover, .bg-light-green-A200.text-auto a:hover, .bg-light-green-A400.text-auto a:hover, .bg-light-green-A700.text-auto a:hover, .bg-lime-50.text-auto a:hover, .bg-lime-100.text-auto a:hover, .bg-lime-200.text-auto a:hover, .bg-lime-300.text-auto a:hover, .bg-lime-400.text-auto a:hover, .bg-lime-500.text-auto a:hover, .bg-lime.text-auto a:hover, .bg-lime-600.text-auto a:hover, .bg-lime-700.text-auto a:hover, .bg-lime-800.text-auto a:hover, .bg-lime-A100.text-auto a:hover, .bg-lime-A200.text-auto a:hover, .bg-lime-A400.text-auto a:hover, .bg-lime-A700.text-auto a:hover, .bg-yellow-50.text-auto a:hover, .bg-yellow-100.text-auto a:hover, .bg-yellow-200.text-auto a:hover, .bg-yellow-300.text-auto a:hover, .bg-yellow-400.text-auto a:hover, .bg-yellow-500.text-auto a:hover, .bg-yellow.text-auto a:hover, .bg-yellow-600.text-auto a:hover, .bg-yellow-700.text-auto a:hover, .bg-yellow-800.text-auto a:hover, .bg-yellow-900.text-auto a:hover, .bg-yellow-A100.text-auto a:hover, .bg-yellow-A200.text-auto a:hover, .bg-yellow-A400.text-auto a:hover, .bg-yellow-A700.text-auto a:hover, .bg-amber-50.text-auto a:hover, .bg-amber-100.text-auto a:hover, .bg-amber-200.text-auto a:hover, .bg-amber-300.text-auto a:hover, .bg-amber-400.text-auto a:hover, .bg-amber-500.text-auto a:hover, .bg-amber.text-auto a:hover, .bg-amber-600.text-auto a:hover, .bg-amber-700.text-auto a:hover, .bg-amber-800.text-auto a:hover, .bg-amber-900.text-auto a:hover, .bg-amber-A100.text-auto a:hover, .bg-amber-A200.text-auto a:hover, .bg-amber-A400.text-auto a:hover, .bg-amber-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-deep-orange-50.text-auto a:hover, .bg-deep-orange-100.text-auto a:hover, .bg-deep-orange-200.text-auto a:hover, .bg-deep-orange-300.text-auto a:hover, .bg-deep-orange-400.text-auto a:hover, .bg-deep-orange-A100.text-auto a:hover, .bg-deep-orange-A200.text-auto a:hover, .bg-brown-50.text-auto a:hover, .bg-brown-100.text-auto a:hover, .bg-brown-200.text-auto a:hover, .bg-brown-A100.text-auto a:hover, .bg-brown-A200.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-blue-grey-50.text-auto a:hover, .bg-blue-grey-100.text-auto a:hover, .bg-blue-grey-200.text-auto a:hover, .bg-blue-grey-300.text-auto a:hover, .bg-blue-grey-A100.text-auto a:hover, .bg-blue-grey-A200.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-pink-50.text-auto i, .bg-pink-50.text-auto [class^="icon-"], .bg-pink-50.text-auto [class*=" icon-"], .bg-pink-100.text-auto i, .bg-pink-100.text-auto [class^="icon-"], .bg-pink-100.text-auto [class*=" icon-"], .bg-pink-200.text-auto i, .bg-pink-200.text-auto [class^="icon-"], .bg-pink-200.text-auto [class*=" icon-"], .bg-pink-300.text-auto i, .bg-pink-300.text-auto [class^="icon-"], .bg-pink-300.text-auto [class*=" icon-"], .bg-pink-A100.text-auto i, .bg-pink-A100.text-auto [class^="icon-"], .bg-pink-A100.text-auto [class*=" icon-"], .bg-purple-50.text-auto i, .bg-purple-50.text-auto [class^="icon-"], .bg-purple-50.text-auto [class*=" icon-"], .bg-purple-100.text-auto i, .bg-purple-100.text-auto [class^="icon-"], .bg-purple-100.text-auto [class*=" icon-"], .bg-purple-200.text-auto i, .bg-purple-200.text-auto [class^="icon-"], .bg-purple-200.text-auto [class*=" icon-"], .bg-purple-A100.text-auto i, .bg-purple-A100.text-auto [class^="icon-"], .bg-purple-A100.text-auto [class*=" icon-"], .bg-deep-purple-50.text-auto i, .bg-deep-purple-50.text-auto [class^="icon-"], .bg-deep-purple-50.text-auto [class*=" icon-"], .bg-deep-purple-100.text-auto i, .bg-deep-purple-100.text-auto [class^="icon-"], .bg-deep-purple-100.text-auto [class*=" icon-"], .bg-deep-purple-200.text-auto i, .bg-deep-purple-200.text-auto [class^="icon-"], .bg-deep-purple-200.text-auto [class*=" icon-"], .bg-deep-purple-A100.text-auto i, .bg-deep-purple-A100.text-auto [class^="icon-"], .bg-deep-purple-A100.text-auto [class*=" icon-"], .bg-indigo-50.text-auto i, .bg-indigo-50.text-auto [class^="icon-"], .bg-indigo-50.text-auto [class*=" icon-"], .bg-indigo-100.text-auto i, .bg-indigo-100.text-auto [class^="icon-"], .bg-indigo-100.text-auto [class*=" icon-"], .bg-indigo-200.text-auto i, .bg-indigo-200.text-auto [class^="icon-"], .bg-indigo-200.text-auto [class*=" icon-"], .bg-indigo-A100.text-auto i, .bg-indigo-A100.text-auto [class^="icon-"], .bg-indigo-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-light-blue-50.text-auto i, .bg-light-blue-50.text-auto [class^="icon-"], .bg-light-blue-50.text-auto [class*=" icon-"], .bg-light-blue-100.text-auto i, .bg-light-blue-100.text-auto [class^="icon-"], .bg-light-blue-100.text-auto [class*=" icon-"], .bg-light-blue-200.text-auto i, .bg-light-blue-200.text-auto [class^="icon-"], .bg-light-blue-200.text-auto [class*=" icon-"], .bg-light-blue-300.text-auto i, .bg-light-blue-300.text-auto [class^="icon-"], .bg-light-blue-300.text-auto [class*=" icon-"], .bg-light-blue-400.text-auto i, .bg-light-blue-400.text-auto [class^="icon-"], .bg-light-blue-400.text-auto [class*=" icon-"], .bg-light-blue-500.text-auto i, .bg-light-blue-500.text-auto [class^="icon-"], .bg-light-blue-500.text-auto [class*=" icon-"], .bg-light-blue.text-auto i, .bg-light-blue.text-auto [class^="icon-"], .bg-light-blue.text-auto [class*=" icon-"], .bg-light-blue-600.text-auto i, .bg-light-blue-600.text-auto [class^="icon-"], .bg-light-blue-600.text-auto [class*=" icon-"], .bg-light-blue-A100.text-auto i, .bg-light-blue-A100.text-auto [class^="icon-"], .bg-light-blue-A100.text-auto [class*=" icon-"], .bg-light-blue-A200.text-auto i, .bg-light-blue-A200.text-auto [class^="icon-"], .bg-light-blue-A200.text-auto [class*=" icon-"], .bg-light-blue-A400.text-auto i, .bg-light-blue-A400.text-auto [class^="icon-"], .bg-light-blue-A400.text-auto [class*=" icon-"], .bg-cyan-50.text-auto i, .bg-cyan-50.text-auto [class^="icon-"], .bg-cyan-50.text-auto [class*=" icon-"], .bg-cyan-100.text-auto i, .bg-cyan-100.text-auto [class^="icon-"], .bg-cyan-100.text-auto [class*=" icon-"], .bg-cyan-200.text-auto i, .bg-cyan-200.text-auto [class^="icon-"], .bg-cyan-200.text-auto [class*=" icon-"], .bg-cyan-300.text-auto i, .bg-cyan-300.text-auto [class^="icon-"], .bg-cyan-300.text-auto [class*=" icon-"], .bg-cyan-400.text-auto i, .bg-cyan-400.text-auto [class^="icon-"], .bg-cyan-400.text-auto [class*=" icon-"], .bg-cyan-500.text-auto i, .bg-cyan-500.text-auto [class^="icon-"], .bg-cyan-500.text-auto [class*=" icon-"], .bg-cyan.text-auto i, .bg-cyan.text-auto [class^="icon-"], .bg-cyan.text-auto [class*=" icon-"], .bg-cyan-600.text-auto i, .bg-cyan-600.text-auto [class^="icon-"], .bg-cyan-600.text-auto [class*=" icon-"], .bg-cyan-A100.text-auto i, .bg-cyan-A100.text-auto [class^="icon-"], .bg-cyan-A100.text-auto [class*=" icon-"], .bg-cyan-A200.text-auto i, .bg-cyan-A200.text-auto [class^="icon-"], .bg-cyan-A200.text-auto [class*=" icon-"], .bg-cyan-A400.text-auto i, .bg-cyan-A400.text-auto [class^="icon-"], .bg-cyan-A400.text-auto [class*=" icon-"], .bg-cyan-A700.text-auto i, .bg-cyan-A700.text-auto [class^="icon-"], .bg-cyan-A700.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-light-green-50.text-auto i, .bg-light-green-50.text-auto [class^="icon-"], .bg-light-green-50.text-auto [class*=" icon-"], .bg-light-green-100.text-auto i, .bg-light-green-100.text-auto [class^="icon-"], .bg-light-green-100.text-auto [class*=" icon-"], .bg-light-green-200.text-auto i, .bg-light-green-200.text-auto [class^="icon-"], .bg-light-green-200.text-auto [class*=" icon-"], .bg-light-green-300.text-auto i, .bg-light-green-300.text-auto [class^="icon-"], .bg-light-green-300.text-auto [class*=" icon-"], .bg-light-green-400.text-auto i, .bg-light-green-400.text-auto [class^="icon-"], .bg-light-green-400.text-auto [class*=" icon-"], .bg-light-green-500.text-auto i, .bg-light-green-500.text-auto [class^="icon-"], .bg-light-green-500.text-auto [class*=" icon-"], .bg-light-green.text-auto i, .bg-light-green.text-auto [class^="icon-"], .bg-light-green.text-auto [class*=" icon-"], .bg-light-green-600.text-auto i, .bg-light-green-600.text-auto [class^="icon-"], .bg-light-green-600.text-auto [class*=" icon-"], .bg-light-green-A100.text-auto i, .bg-light-green-A100.text-auto [class^="icon-"], .bg-light-green-A100.text-auto [class*=" icon-"], .bg-light-green-A200.text-auto i, .bg-light-green-A200.text-auto [class^="icon-"], .bg-light-green-A200.text-auto [class*=" icon-"], .bg-light-green-A400.text-auto i, .bg-light-green-A400.text-auto [class^="icon-"], .bg-light-green-A400.text-auto [class*=" icon-"], .bg-light-green-A700.text-auto i, .bg-light-green-A700.text-auto [class^="icon-"], .bg-light-green-A700.text-auto [class*=" icon-"], .bg-lime-50.text-auto i, .bg-lime-50.text-auto [class^="icon-"], .bg-lime-50.text-auto [class*=" icon-"], .bg-lime-100.text-auto i, .bg-lime-100.text-auto [class^="icon-"], .bg-lime-100.text-auto [class*=" icon-"], .bg-lime-200.text-auto i, .bg-lime-200.text-auto [class^="icon-"], .bg-lime-200.text-auto [class*=" icon-"], .bg-lime-300.text-auto i, .bg-lime-300.text-auto [class^="icon-"], .bg-lime-300.text-auto [class*=" icon-"], .bg-lime-400.text-auto i, .bg-lime-400.text-auto [class^="icon-"], .bg-lime-400.text-auto [class*=" icon-"], .bg-lime-500.text-auto i, .bg-lime-500.text-auto [class^="icon-"], .bg-lime-500.text-auto [class*=" icon-"], .bg-lime.text-auto i, .bg-lime.text-auto [class^="icon-"], .bg-lime.text-auto [class*=" icon-"], .bg-lime-600.text-auto i, .bg-lime-600.text-auto [class^="icon-"], .bg-lime-600.text-auto [class*=" icon-"], .bg-lime-700.text-auto i, .bg-lime-700.text-auto [class^="icon-"], .bg-lime-700.text-auto [class*=" icon-"], .bg-lime-800.text-auto i, .bg-lime-800.text-auto [class^="icon-"], .bg-lime-800.text-auto [class*=" icon-"], .bg-lime-A100.text-auto i, .bg-lime-A100.text-auto [class^="icon-"], .bg-lime-A100.text-auto [class*=" icon-"], .bg-lime-A200.text-auto i, .bg-lime-A200.text-auto [class^="icon-"], .bg-lime-A200.text-auto [class*=" icon-"], .bg-lime-A400.text-auto i, .bg-lime-A400.text-auto [class^="icon-"], .bg-lime-A400.text-auto [class*=" icon-"], .bg-lime-A700.text-auto i, .bg-lime-A700.text-auto [class^="icon-"], .bg-lime-A700.text-auto [class*=" icon-"], .bg-yellow-50.text-auto i, .bg-yellow-50.text-auto [class^="icon-"], .bg-yellow-50.text-auto [class*=" icon-"], .bg-yellow-100.text-auto i, .bg-yellow-100.text-auto [class^="icon-"], .bg-yellow-100.text-auto [class*=" icon-"], .bg-yellow-200.text-auto i, .bg-yellow-200.text-auto [class^="icon-"], .bg-yellow-200.text-auto [class*=" icon-"], .bg-yellow-300.text-auto i, .bg-yellow-300.text-auto [class^="icon-"], .bg-yellow-300.text-auto [class*=" icon-"], .bg-yellow-400.text-auto i, .bg-yellow-400.text-auto [class^="icon-"], .bg-yellow-400.text-auto [class*=" icon-"], .bg-yellow-500.text-auto i, .bg-yellow-500.text-auto [class^="icon-"], .bg-yellow-500.text-auto [class*=" icon-"], .bg-yellow.text-auto i, .bg-yellow.text-auto [class^="icon-"], .bg-yellow.text-auto [class*=" icon-"], .bg-yellow-600.text-auto i, .bg-yellow-600.text-auto [class^="icon-"], .bg-yellow-600.text-auto [class*=" icon-"], .bg-yellow-700.text-auto i, .bg-yellow-700.text-auto [class^="icon-"], .bg-yellow-700.text-auto [class*=" icon-"], .bg-yellow-800.text-auto i, .bg-yellow-800.text-auto [class^="icon-"], .bg-yellow-800.text-auto [class*=" icon-"], .bg-yellow-900.text-auto i, .bg-yellow-900.text-auto [class^="icon-"], .bg-yellow-900.text-auto [class*=" icon-"], .bg-yellow-A100.text-auto i, .bg-yellow-A100.text-auto [class^="icon-"], .bg-yellow-A100.text-auto [class*=" icon-"], .bg-yellow-A200.text-auto i, .bg-yellow-A200.text-auto [class^="icon-"], .bg-yellow-A200.text-auto [class*=" icon-"], .bg-yellow-A400.text-auto i, .bg-yellow-A400.text-auto [class^="icon-"], .bg-yellow-A400.text-auto [class*=" icon-"], .bg-yellow-A700.text-auto i, .bg-yellow-A700.text-auto [class^="icon-"], .bg-yellow-A700.text-auto [class*=" icon-"], .bg-amber-50.text-auto i, .bg-amber-50.text-auto [class^="icon-"], .bg-amber-50.text-auto [class*=" icon-"], .bg-amber-100.text-auto i, .bg-amber-100.text-auto [class^="icon-"], .bg-amber-100.text-auto [class*=" icon-"], .bg-amber-200.text-auto i, .bg-amber-200.text-auto [class^="icon-"], .bg-amber-200.text-auto [class*=" icon-"], .bg-amber-300.text-auto i, .bg-amber-300.text-auto [class^="icon-"], .bg-amber-300.text-auto [class*=" icon-"], .bg-amber-400.text-auto i, .bg-amber-400.text-auto [class^="icon-"], .bg-amber-400.text-auto [class*=" icon-"], .bg-amber-500.text-auto i, .bg-amber-500.text-auto [class^="icon-"], .bg-amber-500.text-auto [class*=" icon-"], .bg-amber.text-auto i, .bg-amber.text-auto [class^="icon-"], .bg-amber.text-auto [class*=" icon-"], .bg-amber-600.text-auto i, .bg-amber-600.text-auto [class^="icon-"], .bg-amber-600.text-auto [class*=" icon-"], .bg-amber-700.text-auto i, .bg-amber-700.text-auto [class^="icon-"], .bg-amber-700.text-auto [class*=" icon-"], .bg-amber-800.text-auto i, .bg-amber-800.text-auto [class^="icon-"], .bg-amber-800.text-auto [class*=" icon-"], .bg-amber-900.text-auto i, .bg-amber-900.text-auto [class^="icon-"], .bg-amber-900.text-auto [class*=" icon-"], .bg-amber-A100.text-auto i, .bg-amber-A100.text-auto [class^="icon-"], .bg-amber-A100.text-auto [class*=" icon-"], .bg-amber-A200.text-auto i, .bg-amber-A200.text-auto [class^="icon-"], .bg-amber-A200.text-auto [class*=" icon-"], .bg-amber-A400.text-auto i, .bg-amber-A400.text-auto [class^="icon-"], .bg-amber-A400.text-auto [class*=" icon-"], .bg-amber-A700.text-auto i, .bg-amber-A700.text-auto [class^="icon-"], .bg-amber-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-deep-orange-50.text-auto i, .bg-deep-orange-50.text-auto [class^="icon-"], .bg-deep-orange-50.text-auto [class*=" icon-"], .bg-deep-orange-100.text-auto i, .bg-deep-orange-100.text-auto [class^="icon-"], .bg-deep-orange-100.text-auto [class*=" icon-"], .bg-deep-orange-200.text-auto i, .bg-deep-orange-200.text-auto [class^="icon-"], .bg-deep-orange-200.text-auto [class*=" icon-"], .bg-deep-orange-300.text-auto i, .bg-deep-orange-300.text-auto [class^="icon-"], .bg-deep-orange-300.text-auto [class*=" icon-"], .bg-deep-orange-400.text-auto i, .bg-deep-orange-400.text-auto [class^="icon-"], .bg-deep-orange-400.text-auto [class*=" icon-"], .bg-deep-orange-A100.text-auto i, .bg-deep-orange-A100.text-auto [class^="icon-"], .bg-deep-orange-A100.text-auto [class*=" icon-"], .bg-deep-orange-A200.text-auto i, .bg-deep-orange-A200.text-auto [class^="icon-"], .bg-deep-orange-A200.text-auto [class*=" icon-"], .bg-brown-50.text-auto i, .bg-brown-50.text-auto [class^="icon-"], .bg-brown-50.text-auto [class*=" icon-"], .bg-brown-100.text-auto i, .bg-brown-100.text-auto [class^="icon-"], .bg-brown-100.text-auto [class*=" icon-"], .bg-brown-200.text-auto i, .bg-brown-200.text-auto [class^="icon-"], .bg-brown-200.text-auto [class*=" icon-"], .bg-brown-A100.text-auto i, .bg-brown-A100.text-auto [class^="icon-"], .bg-brown-A100.text-auto [class*=" icon-"], .bg-brown-A200.text-auto i, .bg-brown-A200.text-auto [class^="icon-"], .bg-brown-A200.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-blue-grey-50.text-auto i, .bg-blue-grey-50.text-auto [class^="icon-"], .bg-blue-grey-50.text-auto [class*=" icon-"], .bg-blue-grey-100.text-auto i, .bg-blue-grey-100.text-auto [class^="icon-"], .bg-blue-grey-100.text-auto [class*=" icon-"], .bg-blue-grey-200.text-auto i, .bg-blue-grey-200.text-auto [class^="icon-"], .bg-blue-grey-200.text-auto [class*=" icon-"], .bg-blue-grey-300.text-auto i, .bg-blue-grey-300.text-auto [class^="icon-"], .bg-blue-grey-300.text-auto [class*=" icon-"], .bg-blue-grey-A100.text-auto i, .bg-blue-grey-A100.text-auto [class^="icon-"], .bg-blue-grey-A100.text-auto [class*=" icon-"], .bg-blue-grey-A200.text-auto i, .bg-blue-grey-A200.text-auto [class^="icon-"], .bg-blue-grey-A200.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-pink-50.text-auto .text-muted, .bg-pink-100.text-auto .text-muted, .bg-pink-200.text-auto .text-muted, .bg-pink-300.text-auto .text-muted, .bg-pink-A100.text-auto .text-muted, .bg-purple-50.text-auto .text-muted, .bg-purple-100.text-auto .text-muted, .bg-purple-200.text-auto .text-muted, .bg-purple-A100.text-auto .text-muted, .bg-deep-purple-50.text-auto .text-muted, .bg-deep-purple-100.text-auto .text-muted, .bg-deep-purple-200.text-auto .text-muted, .bg-deep-purple-A100.text-auto .text-muted, .bg-indigo-50.text-auto .text-muted, .bg-indigo-100.text-auto .text-muted, .bg-indigo-200.text-auto .text-muted, .bg-indigo-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-light-blue-50.text-auto .text-muted, .bg-light-blue-100.text-auto .text-muted, .bg-light-blue-200.text-auto .text-muted, .bg-light-blue-300.text-auto .text-muted, .bg-light-blue-400.text-auto .text-muted, .bg-light-blue-500.text-auto .text-muted, .bg-light-blue.text-auto .text-muted, .bg-light-blue-600.text-auto .text-muted, .bg-light-blue-A100.text-auto .text-muted, .bg-light-blue-A200.text-auto .text-muted, .bg-light-blue-A400.text-auto .text-muted, .bg-cyan-50.text-auto .text-muted, .bg-cyan-100.text-auto .text-muted, .bg-cyan-200.text-auto .text-muted, .bg-cyan-300.text-auto .text-muted, .bg-cyan-400.text-auto .text-muted, .bg-cyan-500.text-auto .text-muted, .bg-cyan.text-auto .text-muted, .bg-cyan-600.text-auto .text-muted, .bg-cyan-A100.text-auto .text-muted, .bg-cyan-A200.text-auto .text-muted, .bg-cyan-A400.text-auto .text-muted, .bg-cyan-A700.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-light-green-50.text-auto .text-muted, .bg-light-green-100.text-auto .text-muted, .bg-light-green-200.text-auto .text-muted, .bg-light-green-300.text-auto .text-muted, .bg-light-green-400.text-auto .text-muted, .bg-light-green-500.text-auto .text-muted, .bg-light-green.text-auto .text-muted, .bg-light-green-600.text-auto .text-muted, .bg-light-green-A100.text-auto .text-muted, .bg-light-green-A200.text-auto .text-muted, .bg-light-green-A400.text-auto .text-muted, .bg-light-green-A700.text-auto .text-muted, .bg-lime-50.text-auto .text-muted, .bg-lime-100.text-auto .text-muted, .bg-lime-200.text-auto .text-muted, .bg-lime-300.text-auto .text-muted, .bg-lime-400.text-auto .text-muted, .bg-lime-500.text-auto .text-muted, .bg-lime.text-auto .text-muted, .bg-lime-600.text-auto .text-muted, .bg-lime-700.text-auto .text-muted, .bg-lime-800.text-auto .text-muted, .bg-lime-A100.text-auto .text-muted, .bg-lime-A200.text-auto .text-muted, .bg-lime-A400.text-auto .text-muted, .bg-lime-A700.text-auto .text-muted, .bg-yellow-50.text-auto .text-muted, .bg-yellow-100.text-auto .text-muted, .bg-yellow-200.text-auto .text-muted, .bg-yellow-300.text-auto .text-muted, .bg-yellow-400.text-auto .text-muted, .bg-yellow-500.text-auto .text-muted, .bg-yellow.text-auto .text-muted, .bg-yellow-600.text-auto .text-muted, .bg-yellow-700.text-auto .text-muted, .bg-yellow-800.text-auto .text-muted, .bg-yellow-900.text-auto .text-muted, .bg-yellow-A100.text-auto .text-muted, .bg-yellow-A200.text-auto .text-muted, .bg-yellow-A400.text-auto .text-muted, .bg-yellow-A700.text-auto .text-muted, .bg-amber-50.text-auto .text-muted, .bg-amber-100.text-auto .text-muted, .bg-amber-200.text-auto .text-muted, .bg-amber-300.text-auto .text-muted, .bg-amber-400.text-auto .text-muted, .bg-amber-500.text-auto .text-muted, .bg-amber.text-auto .text-muted, .bg-amber-600.text-auto .text-muted, .bg-amber-700.text-auto .text-muted, .bg-amber-800.text-auto .text-muted, .bg-amber-900.text-auto .text-muted, .bg-amber-A100.text-auto .text-muted, .bg-amber-A200.text-auto .text-muted, .bg-amber-A400.text-auto .text-muted, .bg-amber-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-deep-orange-50.text-auto .text-muted, .bg-deep-orange-100.text-auto .text-muted, .bg-deep-orange-200.text-auto .text-muted, .bg-deep-orange-300.text-auto .text-muted, .bg-deep-orange-400.text-auto .text-muted, .bg-deep-orange-A100.text-auto .text-muted, .bg-deep-orange-A200.text-auto .text-muted, .bg-brown-50.text-auto .text-muted, .bg-brown-100.text-auto .text-muted, .bg-brown-200.text-auto .text-muted, .bg-brown-A100.text-auto .text-muted, .bg-brown-A200.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-blue-grey-50.text-auto .text-muted, .bg-blue-grey-100.text-auto .text-muted, .bg-blue-grey-200.text-auto .text-muted, .bg-blue-grey-300.text-auto .text-muted, .bg-blue-grey-A100.text-auto .text-muted, .bg-blue-grey-A200.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-pink-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-pink-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-pink-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-pink-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-pink-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-purple-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-purple-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-purple-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-purple-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-purple-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-purple-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-purple-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-purple-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-indigo-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-indigo-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-indigo-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-indigo-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-light-blue-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-blue-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-blue-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-blue-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-blue-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-blue-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-blue.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-blue-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-blue-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-blue-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-blue-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-cyan-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-cyan-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-cyan-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-cyan-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-cyan-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-cyan-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-cyan.text-auto .fuse-ripple-ready .fuse-ripple, .bg-cyan-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-cyan-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-cyan-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-cyan-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-cyan-A700.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-light-green-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-green-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-green-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-green-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-green-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-green-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-green.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-green-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-green-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-green-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-green-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-light-green-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-lime-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-lime-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-lime-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-lime-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-lime-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-lime-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-lime.text-auto .fuse-ripple-ready .fuse-ripple, .bg-lime-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-lime-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-lime-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-lime-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-lime-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-lime-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-lime-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-yellow-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-yellow-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-yellow-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-yellow-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-yellow-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-yellow-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-yellow.text-auto .fuse-ripple-ready .fuse-ripple, .bg-yellow-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-yellow-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-yellow-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-yellow-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-yellow-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-yellow-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-yellow-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-yellow-A700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-amber-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-amber-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-amber-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-amber-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-amber-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-amber-500.text-auto .fuse-ripple-ready .fuse-ripple, .bg-amber.text-auto .fuse-ripple-ready .fuse-ripple, .bg-amber-600.text-auto .fuse-ripple-ready .fuse-ripple, .bg-amber-700.text-auto .fuse-ripple-ready .fuse-ripple, .bg-amber-800.text-auto .fuse-ripple-ready .fuse-ripple, .bg-amber-900.text-auto .fuse-ripple-ready .fuse-ripple, .bg-amber-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-amber-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-amber-A400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-amber-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-deep-orange-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-orange-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-orange-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-orange-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-orange-400.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-orange-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-deep-orange-A200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-brown-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-brown-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-brown-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-brown-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-brown-A200.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-blue-grey-50.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-grey-100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-grey-200.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-grey-300.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-grey-A100.text-auto .fuse-ripple-ready .fuse-ripple, .bg-blue-grey-A200.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-pink-50.text-auto .form-control, .bg-pink-100.text-auto .form-control, .bg-pink-200.text-auto .form-control, .bg-pink-300.text-auto .form-control, .bg-pink-A100.text-auto .form-control, .bg-purple-50.text-auto .form-control, .bg-purple-100.text-auto .form-control, .bg-purple-200.text-auto .form-control, .bg-purple-A100.text-auto .form-control, .bg-deep-purple-50.text-auto .form-control, .bg-deep-purple-100.text-auto .form-control, .bg-deep-purple-200.text-auto .form-control, .bg-deep-purple-A100.text-auto .form-control, .bg-indigo-50.text-auto .form-control, .bg-indigo-100.text-auto .form-control, .bg-indigo-200.text-auto .form-control, .bg-indigo-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-light-blue-50.text-auto .form-control, .bg-light-blue-100.text-auto .form-control, .bg-light-blue-200.text-auto .form-control, .bg-light-blue-300.text-auto .form-control, .bg-light-blue-400.text-auto .form-control, .bg-light-blue-500.text-auto .form-control, .bg-light-blue.text-auto .form-control, .bg-light-blue-600.text-auto .form-control, .bg-light-blue-A100.text-auto .form-control, .bg-light-blue-A200.text-auto .form-control, .bg-light-blue-A400.text-auto .form-control, .bg-cyan-50.text-auto .form-control, .bg-cyan-100.text-auto .form-control, .bg-cyan-200.text-auto .form-control, .bg-cyan-300.text-auto .form-control, .bg-cyan-400.text-auto .form-control, .bg-cyan-500.text-auto .form-control, .bg-cyan.text-auto .form-control, .bg-cyan-600.text-auto .form-control, .bg-cyan-A100.text-auto .form-control, .bg-cyan-A200.text-auto .form-control, .bg-cyan-A400.text-auto .form-control, .bg-cyan-A700.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-light-green-50.text-auto .form-control, .bg-light-green-100.text-auto .form-control, .bg-light-green-200.text-auto .form-control, .bg-light-green-300.text-auto .form-control, .bg-light-green-400.text-auto .form-control, .bg-light-green-500.text-auto .form-control, .bg-light-green.text-auto .form-control, .bg-light-green-600.text-auto .form-control, .bg-light-green-A100.text-auto .form-control, .bg-light-green-A200.text-auto .form-control, .bg-light-green-A400.text-auto .form-control, .bg-light-green-A700.text-auto .form-control, .bg-lime-50.text-auto .form-control, .bg-lime-100.text-auto .form-control, .bg-lime-200.text-auto .form-control, .bg-lime-300.text-auto .form-control, .bg-lime-400.text-auto .form-control, .bg-lime-500.text-auto .form-control, .bg-lime.text-auto .form-control, .bg-lime-600.text-auto .form-control, .bg-lime-700.text-auto .form-control, .bg-lime-800.text-auto .form-control, .bg-lime-A100.text-auto .form-control, .bg-lime-A200.text-auto .form-control, .bg-lime-A400.text-auto .form-control, .bg-lime-A700.text-auto .form-control, .bg-yellow-50.text-auto .form-control, .bg-yellow-100.text-auto .form-control, .bg-yellow-200.text-auto .form-control, .bg-yellow-300.text-auto .form-control, .bg-yellow-400.text-auto .form-control, .bg-yellow-500.text-auto .form-control, .bg-yellow.text-auto .form-control, .bg-yellow-600.text-auto .form-control, .bg-yellow-700.text-auto .form-control, .bg-yellow-800.text-auto .form-control, .bg-yellow-900.text-auto .form-control, .bg-yellow-A100.text-auto .form-control, .bg-yellow-A200.text-auto .form-control, .bg-yellow-A400.text-auto .form-control, .bg-yellow-A700.text-auto .form-control, .bg-amber-50.text-auto .form-control, .bg-amber-100.text-auto .form-control, .bg-amber-200.text-auto .form-control, .bg-amber-300.text-auto .form-control, .bg-amber-400.text-auto .form-control, .bg-amber-500.text-auto .form-control, .bg-amber.text-auto .form-control, .bg-amber-600.text-auto .form-control, .bg-amber-700.text-auto .form-control, .bg-amber-800.text-auto .form-control, .bg-amber-900.text-auto .form-control, .bg-amber-A100.text-auto .form-control, .bg-amber-A200.text-auto .form-control, .bg-amber-A400.text-auto .form-control, .bg-amber-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-deep-orange-50.text-auto .form-control, .bg-deep-orange-100.text-auto .form-control, .bg-deep-orange-200.text-auto .form-control, .bg-deep-orange-300.text-auto .form-control, .bg-deep-orange-400.text-auto .form-control, .bg-deep-orange-A100.text-auto .form-control, .bg-deep-orange-A200.text-auto .form-control, .bg-brown-50.text-auto .form-control, .bg-brown-100.text-auto .form-control, .bg-brown-200.text-auto .form-control, .bg-brown-A100.text-auto .form-control, .bg-brown-A200.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-blue-grey-50.text-auto .form-control, .bg-blue-grey-100.text-auto .form-control, .bg-blue-grey-200.text-auto .form-control, .bg-blue-grey-300.text-auto .form-control, .bg-blue-grey-A100.text-auto .form-control, .bg-blue-grey-A200.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-pink-50.text-auto .form-control:hover, .bg-pink-100.text-auto .form-control:hover, .bg-pink-200.text-auto .form-control:hover, .bg-pink-300.text-auto .form-control:hover, .bg-pink-A100.text-auto .form-control:hover, .bg-purple-50.text-auto .form-control:hover, .bg-purple-100.text-auto .form-control:hover, .bg-purple-200.text-auto .form-control:hover, .bg-purple-A100.text-auto .form-control:hover, .bg-deep-purple-50.text-auto .form-control:hover, .bg-deep-purple-100.text-auto .form-control:hover, .bg-deep-purple-200.text-auto .form-control:hover, .bg-deep-purple-A100.text-auto .form-control:hover, .bg-indigo-50.text-auto .form-control:hover, .bg-indigo-100.text-auto .form-control:hover, .bg-indigo-200.text-auto .form-control:hover, .bg-indigo-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-light-blue-50.text-auto .form-control:hover, .bg-light-blue-100.text-auto .form-control:hover, .bg-light-blue-200.text-auto .form-control:hover, .bg-light-blue-300.text-auto .form-control:hover, .bg-light-blue-400.text-auto .form-control:hover, .bg-light-blue-500.text-auto .form-control:hover, .bg-light-blue.text-auto .form-control:hover, .bg-light-blue-600.text-auto .form-control:hover, .bg-light-blue-A100.text-auto .form-control:hover, .bg-light-blue-A200.text-auto .form-control:hover, .bg-light-blue-A400.text-auto .form-control:hover, .bg-cyan-50.text-auto .form-control:hover, .bg-cyan-100.text-auto .form-control:hover, .bg-cyan-200.text-auto .form-control:hover, .bg-cyan-300.text-auto .form-control:hover, .bg-cyan-400.text-auto .form-control:hover, .bg-cyan-500.text-auto .form-control:hover, .bg-cyan.text-auto .form-control:hover, .bg-cyan-600.text-auto .form-control:hover, .bg-cyan-A100.text-auto .form-control:hover, .bg-cyan-A200.text-auto .form-control:hover, .bg-cyan-A400.text-auto .form-control:hover, .bg-cyan-A700.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-light-green-50.text-auto .form-control:hover, .bg-light-green-100.text-auto .form-control:hover, .bg-light-green-200.text-auto .form-control:hover, .bg-light-green-300.text-auto .form-control:hover, .bg-light-green-400.text-auto .form-control:hover, .bg-light-green-500.text-auto .form-control:hover, .bg-light-green.text-auto .form-control:hover, .bg-light-green-600.text-auto .form-control:hover, .bg-light-green-A100.text-auto .form-control:hover, .bg-light-green-A200.text-auto .form-control:hover, .bg-light-green-A400.text-auto .form-control:hover, .bg-light-green-A700.text-auto .form-control:hover, .bg-lime-50.text-auto .form-control:hover, .bg-lime-100.text-auto .form-control:hover, .bg-lime-200.text-auto .form-control:hover, .bg-lime-300.text-auto .form-control:hover, .bg-lime-400.text-auto .form-control:hover, .bg-lime-500.text-auto .form-control:hover, .bg-lime.text-auto .form-control:hover, .bg-lime-600.text-auto .form-control:hover, .bg-lime-700.text-auto .form-control:hover, .bg-lime-800.text-auto .form-control:hover, .bg-lime-A100.text-auto .form-control:hover, .bg-lime-A200.text-auto .form-control:hover, .bg-lime-A400.text-auto .form-control:hover, .bg-lime-A700.text-auto .form-control:hover, .bg-yellow-50.text-auto .form-control:hover, .bg-yellow-100.text-auto .form-control:hover, .bg-yellow-200.text-auto .form-control:hover, .bg-yellow-300.text-auto .form-control:hover, .bg-yellow-400.text-auto .form-control:hover, .bg-yellow-500.text-auto .form-control:hover, .bg-yellow.text-auto .form-control:hover, .bg-yellow-600.text-auto .form-control:hover, .bg-yellow-700.text-auto .form-control:hover, .bg-yellow-800.text-auto .form-control:hover, .bg-yellow-900.text-auto .form-control:hover, .bg-yellow-A100.text-auto .form-control:hover, .bg-yellow-A200.text-auto .form-control:hover, .bg-yellow-A400.text-auto .form-control:hover, .bg-yellow-A700.text-auto .form-control:hover, .bg-amber-50.text-auto .form-control:hover, .bg-amber-100.text-auto .form-control:hover, .bg-amber-200.text-auto .form-control:hover, .bg-amber-300.text-auto .form-control:hover, .bg-amber-400.text-auto .form-control:hover, .bg-amber-500.text-auto .form-control:hover, .bg-amber.text-auto .form-control:hover, .bg-amber-600.text-auto .form-control:hover, .bg-amber-700.text-auto .form-control:hover, .bg-amber-800.text-auto .form-control:hover, .bg-amber-900.text-auto .form-control:hover, .bg-amber-A100.text-auto .form-control:hover, .bg-amber-A200.text-auto .form-control:hover, .bg-amber-A400.text-auto .form-control:hover, .bg-amber-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-deep-orange-50.text-auto .form-control:hover, .bg-deep-orange-100.text-auto .form-control:hover, .bg-deep-orange-200.text-auto .form-control:hover, .bg-deep-orange-300.text-auto .form-control:hover, .bg-deep-orange-400.text-auto .form-control:hover, .bg-deep-orange-A100.text-auto .form-control:hover, .bg-deep-orange-A200.text-auto .form-control:hover, .bg-brown-50.text-auto .form-control:hover, .bg-brown-100.text-auto .form-control:hover, .bg-brown-200.text-auto .form-control:hover, .bg-brown-A100.text-auto .form-control:hover, .bg-brown-A200.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-blue-grey-50.text-auto .form-control:hover, .bg-blue-grey-100.text-auto .form-control:hover, .bg-blue-grey-200.text-auto .form-control:hover, .bg-blue-grey-300.text-auto .form-control:hover, .bg-blue-grey-A100.text-auto .form-control:hover, .bg-blue-grey-A200.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-pink-50.text-auto .form-control:focus, .bg-pink-100.text-auto .form-control:focus, .bg-pink-200.text-auto .form-control:focus, .bg-pink-300.text-auto .form-control:focus, .bg-pink-A100.text-auto .form-control:focus, .bg-purple-50.text-auto .form-control:focus, .bg-purple-100.text-auto .form-control:focus, .bg-purple-200.text-auto .form-control:focus, .bg-purple-A100.text-auto .form-control:focus, .bg-deep-purple-50.text-auto .form-control:focus, .bg-deep-purple-100.text-auto .form-control:focus, .bg-deep-purple-200.text-auto .form-control:focus, .bg-deep-purple-A100.text-auto .form-control:focus, .bg-indigo-50.text-auto .form-control:focus, .bg-indigo-100.text-auto .form-control:focus, .bg-indigo-200.text-auto .form-control:focus, .bg-indigo-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-light-blue-50.text-auto .form-control:focus, .bg-light-blue-100.text-auto .form-control:focus, .bg-light-blue-200.text-auto .form-control:focus, .bg-light-blue-300.text-auto .form-control:focus, .bg-light-blue-400.text-auto .form-control:focus, .bg-light-blue-500.text-auto .form-control:focus, .bg-light-blue.text-auto .form-control:focus, .bg-light-blue-600.text-auto .form-control:focus, .bg-light-blue-A100.text-auto .form-control:focus, .bg-light-blue-A200.text-auto .form-control:focus, .bg-light-blue-A400.text-auto .form-control:focus, .bg-cyan-50.text-auto .form-control:focus, .bg-cyan-100.text-auto .form-control:focus, .bg-cyan-200.text-auto .form-control:focus, .bg-cyan-300.text-auto .form-control:focus, .bg-cyan-400.text-auto .form-control:focus, .bg-cyan-500.text-auto .form-control:focus, .bg-cyan.text-auto .form-control:focus, .bg-cyan-600.text-auto .form-control:focus, .bg-cyan-A100.text-auto .form-control:focus, .bg-cyan-A200.text-auto .form-control:focus, .bg-cyan-A400.text-auto .form-control:focus, .bg-cyan-A700.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-light-green-50.text-auto .form-control:focus, .bg-light-green-100.text-auto .form-control:focus, .bg-light-green-200.text-auto .form-control:focus, .bg-light-green-300.text-auto .form-control:focus, .bg-light-green-400.text-auto .form-control:focus, .bg-light-green-500.text-auto .form-control:focus, .bg-light-green.text-auto .form-control:focus, .bg-light-green-600.text-auto .form-control:focus, .bg-light-green-A100.text-auto .form-control:focus, .bg-light-green-A200.text-auto .form-control:focus, .bg-light-green-A400.text-auto .form-control:focus, .bg-light-green-A700.text-auto .form-control:focus, .bg-lime-50.text-auto .form-control:focus, .bg-lime-100.text-auto .form-control:focus, .bg-lime-200.text-auto .form-control:focus, .bg-lime-300.text-auto .form-control:focus, .bg-lime-400.text-auto .form-control:focus, .bg-lime-500.text-auto .form-control:focus, .bg-lime.text-auto .form-control:focus, .bg-lime-600.text-auto .form-control:focus, .bg-lime-700.text-auto .form-control:focus, .bg-lime-800.text-auto .form-control:focus, .bg-lime-A100.text-auto .form-control:focus, .bg-lime-A200.text-auto .form-control:focus, .bg-lime-A400.text-auto .form-control:focus, .bg-lime-A700.text-auto .form-control:focus, .bg-yellow-50.text-auto .form-control:focus, .bg-yellow-100.text-auto .form-control:focus, .bg-yellow-200.text-auto .form-control:focus, .bg-yellow-300.text-auto .form-control:focus, .bg-yellow-400.text-auto .form-control:focus, .bg-yellow-500.text-auto .form-control:focus, .bg-yellow.text-auto .form-control:focus, .bg-yellow-600.text-auto .form-control:focus, .bg-yellow-700.text-auto .form-control:focus, .bg-yellow-800.text-auto .form-control:focus, .bg-yellow-900.text-auto .form-control:focus, .bg-yellow-A100.text-auto .form-control:focus, .bg-yellow-A200.text-auto .form-control:focus, .bg-yellow-A400.text-auto .form-control:focus, .bg-yellow-A700.text-auto .form-control:focus, .bg-amber-50.text-auto .form-control:focus, .bg-amber-100.text-auto .form-control:focus, .bg-amber-200.text-auto .form-control:focus, .bg-amber-300.text-auto .form-control:focus, .bg-amber-400.text-auto .form-control:focus, .bg-amber-500.text-auto .form-control:focus, .bg-amber.text-auto .form-control:focus, .bg-amber-600.text-auto .form-control:focus, .bg-amber-700.text-auto .form-control:focus, .bg-amber-800.text-auto .form-control:focus, .bg-amber-900.text-auto .form-control:focus, .bg-amber-A100.text-auto .form-control:focus, .bg-amber-A200.text-auto .form-control:focus, .bg-amber-A400.text-auto .form-control:focus, .bg-amber-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-deep-orange-50.text-auto .form-control:focus, .bg-deep-orange-100.text-auto .form-control:focus, .bg-deep-orange-200.text-auto .form-control:focus, .bg-deep-orange-300.text-auto .form-control:focus, .bg-deep-orange-400.text-auto .form-control:focus, .bg-deep-orange-A100.text-auto .form-control:focus, .bg-deep-orange-A200.text-auto .form-control:focus, .bg-brown-50.text-auto .form-control:focus, .bg-brown-100.text-auto .form-control:focus, .bg-brown-200.text-auto .form-control:focus, .bg-brown-A100.text-auto .form-control:focus, .bg-brown-A200.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-blue-grey-50.text-auto .form-control:focus, .bg-blue-grey-100.text-auto .form-control:focus, .bg-blue-grey-200.text-auto .form-control:focus, .bg-blue-grey-300.text-auto .form-control:focus, .bg-blue-grey-A100.text-auto .form-control:focus, .bg-blue-grey-A200.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-pink-50.text-auto .form-control::placeholder, .bg-pink-100.text-auto .form-control::placeholder, .bg-pink-200.text-auto .form-control::placeholder, .bg-pink-300.text-auto .form-control::placeholder, .bg-pink-A100.text-auto .form-control::placeholder, .bg-purple-50.text-auto .form-control::placeholder, .bg-purple-100.text-auto .form-control::placeholder, .bg-purple-200.text-auto .form-control::placeholder, .bg-purple-A100.text-auto .form-control::placeholder, .bg-deep-purple-50.text-auto .form-control::placeholder, .bg-deep-purple-100.text-auto .form-control::placeholder, .bg-deep-purple-200.text-auto .form-control::placeholder, .bg-deep-purple-A100.text-auto .form-control::placeholder, .bg-indigo-50.text-auto .form-control::placeholder, .bg-indigo-100.text-auto .form-control::placeholder, .bg-indigo-200.text-auto .form-control::placeholder, .bg-indigo-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-light-blue-50.text-auto .form-control::placeholder, .bg-light-blue-100.text-auto .form-control::placeholder, .bg-light-blue-200.text-auto .form-control::placeholder, .bg-light-blue-300.text-auto .form-control::placeholder, .bg-light-blue-400.text-auto .form-control::placeholder, .bg-light-blue-500.text-auto .form-control::placeholder, .bg-light-blue.text-auto .form-control::placeholder, .bg-light-blue-600.text-auto .form-control::placeholder, .bg-light-blue-A100.text-auto .form-control::placeholder, .bg-light-blue-A200.text-auto .form-control::placeholder, .bg-light-blue-A400.text-auto .form-control::placeholder, .bg-cyan-50.text-auto .form-control::placeholder, .bg-cyan-100.text-auto .form-control::placeholder, .bg-cyan-200.text-auto .form-control::placeholder, .bg-cyan-300.text-auto .form-control::placeholder, .bg-cyan-400.text-auto .form-control::placeholder, .bg-cyan-500.text-auto .form-control::placeholder, .bg-cyan.text-auto .form-control::placeholder, .bg-cyan-600.text-auto .form-control::placeholder, .bg-cyan-A100.text-auto .form-control::placeholder, .bg-cyan-A200.text-auto .form-control::placeholder, .bg-cyan-A400.text-auto .form-control::placeholder, .bg-cyan-A700.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-light-green-50.text-auto .form-control::placeholder, .bg-light-green-100.text-auto .form-control::placeholder, .bg-light-green-200.text-auto .form-control::placeholder, .bg-light-green-300.text-auto .form-control::placeholder, .bg-light-green-400.text-auto .form-control::placeholder, .bg-light-green-500.text-auto .form-control::placeholder, .bg-light-green.text-auto .form-control::placeholder, .bg-light-green-600.text-auto .form-control::placeholder, .bg-light-green-A100.text-auto .form-control::placeholder, .bg-light-green-A200.text-auto .form-control::placeholder, .bg-light-green-A400.text-auto .form-control::placeholder, .bg-light-green-A700.text-auto .form-control::placeholder, .bg-lime-50.text-auto .form-control::placeholder, .bg-lime-100.text-auto .form-control::placeholder, .bg-lime-200.text-auto .form-control::placeholder, .bg-lime-300.text-auto .form-control::placeholder, .bg-lime-400.text-auto .form-control::placeholder, .bg-lime-500.text-auto .form-control::placeholder, .bg-lime.text-auto .form-control::placeholder, .bg-lime-600.text-auto .form-control::placeholder, .bg-lime-700.text-auto .form-control::placeholder, .bg-lime-800.text-auto .form-control::placeholder, .bg-lime-A100.text-auto .form-control::placeholder, .bg-lime-A200.text-auto .form-control::placeholder, .bg-lime-A400.text-auto .form-control::placeholder, .bg-lime-A700.text-auto .form-control::placeholder, .bg-yellow-50.text-auto .form-control::placeholder, .bg-yellow-100.text-auto .form-control::placeholder, .bg-yellow-200.text-auto .form-control::placeholder, .bg-yellow-300.text-auto .form-control::placeholder, .bg-yellow-400.text-auto .form-control::placeholder, .bg-yellow-500.text-auto .form-control::placeholder, .bg-yellow.text-auto .form-control::placeholder, .bg-yellow-600.text-auto .form-control::placeholder, .bg-yellow-700.text-auto .form-control::placeholder, .bg-yellow-800.text-auto .form-control::placeholder, .bg-yellow-900.text-auto .form-control::placeholder, .bg-yellow-A100.text-auto .form-control::placeholder, .bg-yellow-A200.text-auto .form-control::placeholder, .bg-yellow-A400.text-auto .form-control::placeholder, .bg-yellow-A700.text-auto .form-control::placeholder, .bg-amber-50.text-auto .form-control::placeholder, .bg-amber-100.text-auto .form-control::placeholder, .bg-amber-200.text-auto .form-control::placeholder, .bg-amber-300.text-auto .form-control::placeholder, .bg-amber-400.text-auto .form-control::placeholder, .bg-amber-500.text-auto .form-control::placeholder, .bg-amber.text-auto .form-control::placeholder, .bg-amber-600.text-auto .form-control::placeholder, .bg-amber-700.text-auto .form-control::placeholder, .bg-amber-800.text-auto .form-control::placeholder, .bg-amber-900.text-auto .form-control::placeholder, .bg-amber-A100.text-auto .form-control::placeholder, .bg-amber-A200.text-auto .form-control::placeholder, .bg-amber-A400.text-auto .form-control::placeholder, .bg-amber-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-deep-orange-50.text-auto .form-control::placeholder, .bg-deep-orange-100.text-auto .form-control::placeholder, .bg-deep-orange-200.text-auto .form-control::placeholder, .bg-deep-orange-300.text-auto .form-control::placeholder, .bg-deep-orange-400.text-auto .form-control::placeholder, .bg-deep-orange-A100.text-auto .form-control::placeholder, .bg-deep-orange-A200.text-auto .form-control::placeholder, .bg-brown-50.text-auto .form-control::placeholder, .bg-brown-100.text-auto .form-control::placeholder, .bg-brown-200.text-auto .form-control::placeholder, .bg-brown-A100.text-auto .form-control::placeholder, .bg-brown-A200.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-blue-grey-50.text-auto .form-control::placeholder, .bg-blue-grey-100.text-auto .form-control::placeholder, .bg-blue-grey-200.text-auto .form-control::placeholder, .bg-blue-grey-300.text-auto .form-control::placeholder, .bg-blue-grey-A100.text-auto .form-control::placeholder, .bg-blue-grey-A200.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-pink-50.text-auto textarea.form-control, .bg-pink-100.text-auto textarea.form-control, .bg-pink-200.text-auto textarea.form-control, .bg-pink-300.text-auto textarea.form-control, .bg-pink-A100.text-auto textarea.form-control, .bg-purple-50.text-auto textarea.form-control, .bg-purple-100.text-auto textarea.form-control, .bg-purple-200.text-auto textarea.form-control, .bg-purple-A100.text-auto textarea.form-control, .bg-deep-purple-50.text-auto textarea.form-control, .bg-deep-purple-100.text-auto textarea.form-control, .bg-deep-purple-200.text-auto textarea.form-control, .bg-deep-purple-A100.text-auto textarea.form-control, .bg-indigo-50.text-auto textarea.form-control, .bg-indigo-100.text-auto textarea.form-control, .bg-indigo-200.text-auto textarea.form-control, .bg-indigo-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-light-blue-50.text-auto textarea.form-control, .bg-light-blue-100.text-auto textarea.form-control, .bg-light-blue-200.text-auto textarea.form-control, .bg-light-blue-300.text-auto textarea.form-control, .bg-light-blue-400.text-auto textarea.form-control, .bg-light-blue-500.text-auto textarea.form-control, .bg-light-blue.text-auto textarea.form-control, .bg-light-blue-600.text-auto textarea.form-control, .bg-light-blue-A100.text-auto textarea.form-control, .bg-light-blue-A200.text-auto textarea.form-control, .bg-light-blue-A400.text-auto textarea.form-control, .bg-cyan-50.text-auto textarea.form-control, .bg-cyan-100.text-auto textarea.form-control, .bg-cyan-200.text-auto textarea.form-control, .bg-cyan-300.text-auto textarea.form-control, .bg-cyan-400.text-auto textarea.form-control, .bg-cyan-500.text-auto textarea.form-control, .bg-cyan.text-auto textarea.form-control, .bg-cyan-600.text-auto textarea.form-control, .bg-cyan-A100.text-auto textarea.form-control, .bg-cyan-A200.text-auto textarea.form-control, .bg-cyan-A400.text-auto textarea.form-control, .bg-cyan-A700.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-light-green-50.text-auto textarea.form-control, .bg-light-green-100.text-auto textarea.form-control, .bg-light-green-200.text-auto textarea.form-control, .bg-light-green-300.text-auto textarea.form-control, .bg-light-green-400.text-auto textarea.form-control, .bg-light-green-500.text-auto textarea.form-control, .bg-light-green.text-auto textarea.form-control, .bg-light-green-600.text-auto textarea.form-control, .bg-light-green-A100.text-auto textarea.form-control, .bg-light-green-A200.text-auto textarea.form-control, .bg-light-green-A400.text-auto textarea.form-control, .bg-light-green-A700.text-auto textarea.form-control, .bg-lime-50.text-auto textarea.form-control, .bg-lime-100.text-auto textarea.form-control, .bg-lime-200.text-auto textarea.form-control, .bg-lime-300.text-auto textarea.form-control, .bg-lime-400.text-auto textarea.form-control, .bg-lime-500.text-auto textarea.form-control, .bg-lime.text-auto textarea.form-control, .bg-lime-600.text-auto textarea.form-control, .bg-lime-700.text-auto textarea.form-control, .bg-lime-800.text-auto textarea.form-control, .bg-lime-A100.text-auto textarea.form-control, .bg-lime-A200.text-auto textarea.form-control, .bg-lime-A400.text-auto textarea.form-control, .bg-lime-A700.text-auto textarea.form-control, .bg-yellow-50.text-auto textarea.form-control, .bg-yellow-100.text-auto textarea.form-control, .bg-yellow-200.text-auto textarea.form-control, .bg-yellow-300.text-auto textarea.form-control, .bg-yellow-400.text-auto textarea.form-control, .bg-yellow-500.text-auto textarea.form-control, .bg-yellow.text-auto textarea.form-control, .bg-yellow-600.text-auto textarea.form-control, .bg-yellow-700.text-auto textarea.form-control, .bg-yellow-800.text-auto textarea.form-control, .bg-yellow-900.text-auto textarea.form-control, .bg-yellow-A100.text-auto textarea.form-control, .bg-yellow-A200.text-auto textarea.form-control, .bg-yellow-A400.text-auto textarea.form-control, .bg-yellow-A700.text-auto textarea.form-control, .bg-amber-50.text-auto textarea.form-control, .bg-amber-100.text-auto textarea.form-control, .bg-amber-200.text-auto textarea.form-control, .bg-amber-300.text-auto textarea.form-control, .bg-amber-400.text-auto textarea.form-control, .bg-amber-500.text-auto textarea.form-control, .bg-amber.text-auto textarea.form-control, .bg-amber-600.text-auto textarea.form-control, .bg-amber-700.text-auto textarea.form-control, .bg-amber-800.text-auto textarea.form-control, .bg-amber-900.text-auto textarea.form-control, .bg-amber-A100.text-auto textarea.form-control, .bg-amber-A200.text-auto textarea.form-control, .bg-amber-A400.text-auto textarea.form-control, .bg-amber-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-deep-orange-50.text-auto textarea.form-control, .bg-deep-orange-100.text-auto textarea.form-control, .bg-deep-orange-200.text-auto textarea.form-control, .bg-deep-orange-300.text-auto textarea.form-control, .bg-deep-orange-400.text-auto textarea.form-control, .bg-deep-orange-A100.text-auto textarea.form-control, .bg-deep-orange-A200.text-auto textarea.form-control, .bg-brown-50.text-auto textarea.form-control, .bg-brown-100.text-auto textarea.form-control, .bg-brown-200.text-auto textarea.form-control, .bg-brown-A100.text-auto textarea.form-control, .bg-brown-A200.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-blue-grey-50.text-auto textarea.form-control, .bg-blue-grey-100.text-auto textarea.form-control, .bg-blue-grey-200.text-auto textarea.form-control, .bg-blue-grey-300.text-auto textarea.form-control, .bg-blue-grey-A100.text-auto textarea.form-control, .bg-blue-grey-A200.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-pink-50.text-auto textarea.form-control:hover, .bg-pink-100.text-auto textarea.form-control:hover, .bg-pink-200.text-auto textarea.form-control:hover, .bg-pink-300.text-auto textarea.form-control:hover, .bg-pink-A100.text-auto textarea.form-control:hover, .bg-purple-50.text-auto textarea.form-control:hover, .bg-purple-100.text-auto textarea.form-control:hover, .bg-purple-200.text-auto textarea.form-control:hover, .bg-purple-A100.text-auto textarea.form-control:hover, .bg-deep-purple-50.text-auto textarea.form-control:hover, .bg-deep-purple-100.text-auto textarea.form-control:hover, .bg-deep-purple-200.text-auto textarea.form-control:hover, .bg-deep-purple-A100.text-auto textarea.form-control:hover, .bg-indigo-50.text-auto textarea.form-control:hover, .bg-indigo-100.text-auto textarea.form-control:hover, .bg-indigo-200.text-auto textarea.form-control:hover, .bg-indigo-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-light-blue-50.text-auto textarea.form-control:hover, .bg-light-blue-100.text-auto textarea.form-control:hover, .bg-light-blue-200.text-auto textarea.form-control:hover, .bg-light-blue-300.text-auto textarea.form-control:hover, .bg-light-blue-400.text-auto textarea.form-control:hover, .bg-light-blue-500.text-auto textarea.form-control:hover, .bg-light-blue.text-auto textarea.form-control:hover, .bg-light-blue-600.text-auto textarea.form-control:hover, .bg-light-blue-A100.text-auto textarea.form-control:hover, .bg-light-blue-A200.text-auto textarea.form-control:hover, .bg-light-blue-A400.text-auto textarea.form-control:hover, .bg-cyan-50.text-auto textarea.form-control:hover, .bg-cyan-100.text-auto textarea.form-control:hover, .bg-cyan-200.text-auto textarea.form-control:hover, .bg-cyan-300.text-auto textarea.form-control:hover, .bg-cyan-400.text-auto textarea.form-control:hover, .bg-cyan-500.text-auto textarea.form-control:hover, .bg-cyan.text-auto textarea.form-control:hover, .bg-cyan-600.text-auto textarea.form-control:hover, .bg-cyan-A100.text-auto textarea.form-control:hover, .bg-cyan-A200.text-auto textarea.form-control:hover, .bg-cyan-A400.text-auto textarea.form-control:hover, .bg-cyan-A700.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-light-green-50.text-auto textarea.form-control:hover, .bg-light-green-100.text-auto textarea.form-control:hover, .bg-light-green-200.text-auto textarea.form-control:hover, .bg-light-green-300.text-auto textarea.form-control:hover, .bg-light-green-400.text-auto textarea.form-control:hover, .bg-light-green-500.text-auto textarea.form-control:hover, .bg-light-green.text-auto textarea.form-control:hover, .bg-light-green-600.text-auto textarea.form-control:hover, .bg-light-green-A100.text-auto textarea.form-control:hover, .bg-light-green-A200.text-auto textarea.form-control:hover, .bg-light-green-A400.text-auto textarea.form-control:hover, .bg-light-green-A700.text-auto textarea.form-control:hover, .bg-lime-50.text-auto textarea.form-control:hover, .bg-lime-100.text-auto textarea.form-control:hover, .bg-lime-200.text-auto textarea.form-control:hover, .bg-lime-300.text-auto textarea.form-control:hover, .bg-lime-400.text-auto textarea.form-control:hover, .bg-lime-500.text-auto textarea.form-control:hover, .bg-lime.text-auto textarea.form-control:hover, .bg-lime-600.text-auto textarea.form-control:hover, .bg-lime-700.text-auto textarea.form-control:hover, .bg-lime-800.text-auto textarea.form-control:hover, .bg-lime-A100.text-auto textarea.form-control:hover, .bg-lime-A200.text-auto textarea.form-control:hover, .bg-lime-A400.text-auto textarea.form-control:hover, .bg-lime-A700.text-auto textarea.form-control:hover, .bg-yellow-50.text-auto textarea.form-control:hover, .bg-yellow-100.text-auto textarea.form-control:hover, .bg-yellow-200.text-auto textarea.form-control:hover, .bg-yellow-300.text-auto textarea.form-control:hover, .bg-yellow-400.text-auto textarea.form-control:hover, .bg-yellow-500.text-auto textarea.form-control:hover, .bg-yellow.text-auto textarea.form-control:hover, .bg-yellow-600.text-auto textarea.form-control:hover, .bg-yellow-700.text-auto textarea.form-control:hover, .bg-yellow-800.text-auto textarea.form-control:hover, .bg-yellow-900.text-auto textarea.form-control:hover, .bg-yellow-A100.text-auto textarea.form-control:hover, .bg-yellow-A200.text-auto textarea.form-control:hover, .bg-yellow-A400.text-auto textarea.form-control:hover, .bg-yellow-A700.text-auto textarea.form-control:hover, .bg-amber-50.text-auto textarea.form-control:hover, .bg-amber-100.text-auto textarea.form-control:hover, .bg-amber-200.text-auto textarea.form-control:hover, .bg-amber-300.text-auto textarea.form-control:hover, .bg-amber-400.text-auto textarea.form-control:hover, .bg-amber-500.text-auto textarea.form-control:hover, .bg-amber.text-auto textarea.form-control:hover, .bg-amber-600.text-auto textarea.form-control:hover, .bg-amber-700.text-auto textarea.form-control:hover, .bg-amber-800.text-auto textarea.form-control:hover, .bg-amber-900.text-auto textarea.form-control:hover, .bg-amber-A100.text-auto textarea.form-control:hover, .bg-amber-A200.text-auto textarea.form-control:hover, .bg-amber-A400.text-auto textarea.form-control:hover, .bg-amber-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-deep-orange-50.text-auto textarea.form-control:hover, .bg-deep-orange-100.text-auto textarea.form-control:hover, .bg-deep-orange-200.text-auto textarea.form-control:hover, .bg-deep-orange-300.text-auto textarea.form-control:hover, .bg-deep-orange-400.text-auto textarea.form-control:hover, .bg-deep-orange-A100.text-auto textarea.form-control:hover, .bg-deep-orange-A200.text-auto textarea.form-control:hover, .bg-brown-50.text-auto textarea.form-control:hover, .bg-brown-100.text-auto textarea.form-control:hover, .bg-brown-200.text-auto textarea.form-control:hover, .bg-brown-A100.text-auto textarea.form-control:hover, .bg-brown-A200.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-blue-grey-50.text-auto textarea.form-control:hover, .bg-blue-grey-100.text-auto textarea.form-control:hover, .bg-blue-grey-200.text-auto textarea.form-control:hover, .bg-blue-grey-300.text-auto textarea.form-control:hover, .bg-blue-grey-A100.text-auto textarea.form-control:hover, .bg-blue-grey-A200.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-pink-50.text-auto textarea.form-control:focus, .bg-pink-50.text-auto textarea.form-control:focus:hover, .bg-pink-100.text-auto textarea.form-control:focus, .bg-pink-100.text-auto textarea.form-control:focus:hover, .bg-pink-200.text-auto textarea.form-control:focus, .bg-pink-200.text-auto textarea.form-control:focus:hover, .bg-pink-300.text-auto textarea.form-control:focus, .bg-pink-300.text-auto textarea.form-control:focus:hover, .bg-pink-A100.text-auto textarea.form-control:focus, .bg-pink-A100.text-auto textarea.form-control:focus:hover, .bg-purple-50.text-auto textarea.form-control:focus, .bg-purple-50.text-auto textarea.form-control:focus:hover, .bg-purple-100.text-auto textarea.form-control:focus, .bg-purple-100.text-auto textarea.form-control:focus:hover, .bg-purple-200.text-auto textarea.form-control:focus, .bg-purple-200.text-auto textarea.form-control:focus:hover, .bg-purple-A100.text-auto textarea.form-control:focus, .bg-purple-A100.text-auto textarea.form-control:focus:hover, .bg-deep-purple-50.text-auto textarea.form-control:focus, .bg-deep-purple-50.text-auto textarea.form-control:focus:hover, .bg-deep-purple-100.text-auto textarea.form-control:focus, .bg-deep-purple-100.text-auto textarea.form-control:focus:hover, .bg-deep-purple-200.text-auto textarea.form-control:focus, .bg-deep-purple-200.text-auto textarea.form-control:focus:hover, .bg-deep-purple-A100.text-auto textarea.form-control:focus, .bg-deep-purple-A100.text-auto textarea.form-control:focus:hover, .bg-indigo-50.text-auto textarea.form-control:focus, .bg-indigo-50.text-auto textarea.form-control:focus:hover, .bg-indigo-100.text-auto textarea.form-control:focus, .bg-indigo-100.text-auto textarea.form-control:focus:hover, .bg-indigo-200.text-auto textarea.form-control:focus, .bg-indigo-200.text-auto textarea.form-control:focus:hover, .bg-indigo-A100.text-auto textarea.form-control:focus, .bg-indigo-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-light-blue-50.text-auto textarea.form-control:focus, .bg-light-blue-50.text-auto textarea.form-control:focus:hover, .bg-light-blue-100.text-auto textarea.form-control:focus, .bg-light-blue-100.text-auto textarea.form-control:focus:hover, .bg-light-blue-200.text-auto textarea.form-control:focus, .bg-light-blue-200.text-auto textarea.form-control:focus:hover, .bg-light-blue-300.text-auto textarea.form-control:focus, .bg-light-blue-300.text-auto textarea.form-control:focus:hover, .bg-light-blue-400.text-auto textarea.form-control:focus, .bg-light-blue-400.text-auto textarea.form-control:focus:hover, .bg-light-blue-500.text-auto textarea.form-control:focus, .bg-light-blue-500.text-auto textarea.form-control:focus:hover, .bg-light-blue.text-auto textarea.form-control:focus, .bg-light-blue.text-auto textarea.form-control:focus:hover, .bg-light-blue-600.text-auto textarea.form-control:focus, .bg-light-blue-600.text-auto textarea.form-control:focus:hover, .bg-light-blue-A100.text-auto textarea.form-control:focus, .bg-light-blue-A100.text-auto textarea.form-control:focus:hover, .bg-light-blue-A200.text-auto textarea.form-control:focus, .bg-light-blue-A200.text-auto textarea.form-control:focus:hover, .bg-light-blue-A400.text-auto textarea.form-control:focus, .bg-light-blue-A400.text-auto textarea.form-control:focus:hover, .bg-cyan-50.text-auto textarea.form-control:focus, .bg-cyan-50.text-auto textarea.form-control:focus:hover, .bg-cyan-100.text-auto textarea.form-control:focus, .bg-cyan-100.text-auto textarea.form-control:focus:hover, .bg-cyan-200.text-auto textarea.form-control:focus, .bg-cyan-200.text-auto textarea.form-control:focus:hover, .bg-cyan-300.text-auto textarea.form-control:focus, .bg-cyan-300.text-auto textarea.form-control:focus:hover, .bg-cyan-400.text-auto textarea.form-control:focus, .bg-cyan-400.text-auto textarea.form-control:focus:hover, .bg-cyan-500.text-auto textarea.form-control:focus, .bg-cyan-500.text-auto textarea.form-control:focus:hover, .bg-cyan.text-auto textarea.form-control:focus, .bg-cyan.text-auto textarea.form-control:focus:hover, .bg-cyan-600.text-auto textarea.form-control:focus, .bg-cyan-600.text-auto textarea.form-control:focus:hover, .bg-cyan-A100.text-auto textarea.form-control:focus, .bg-cyan-A100.text-auto textarea.form-control:focus:hover, .bg-cyan-A200.text-auto textarea.form-control:focus, .bg-cyan-A200.text-auto textarea.form-control:focus:hover, .bg-cyan-A400.text-auto textarea.form-control:focus, .bg-cyan-A400.text-auto textarea.form-control:focus:hover, .bg-cyan-A700.text-auto textarea.form-control:focus, .bg-cyan-A700.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-light-green-50.text-auto textarea.form-control:focus, .bg-light-green-50.text-auto textarea.form-control:focus:hover, .bg-light-green-100.text-auto textarea.form-control:focus, .bg-light-green-100.text-auto textarea.form-control:focus:hover, .bg-light-green-200.text-auto textarea.form-control:focus, .bg-light-green-200.text-auto textarea.form-control:focus:hover, .bg-light-green-300.text-auto textarea.form-control:focus, .bg-light-green-300.text-auto textarea.form-control:focus:hover, .bg-light-green-400.text-auto textarea.form-control:focus, .bg-light-green-400.text-auto textarea.form-control:focus:hover, .bg-light-green-500.text-auto textarea.form-control:focus, .bg-light-green-500.text-auto textarea.form-control:focus:hover, .bg-light-green.text-auto textarea.form-control:focus, .bg-light-green.text-auto textarea.form-control:focus:hover, .bg-light-green-600.text-auto textarea.form-control:focus, .bg-light-green-600.text-auto textarea.form-control:focus:hover, .bg-light-green-A100.text-auto textarea.form-control:focus, .bg-light-green-A100.text-auto textarea.form-control:focus:hover, .bg-light-green-A200.text-auto textarea.form-control:focus, .bg-light-green-A200.text-auto textarea.form-control:focus:hover, .bg-light-green-A400.text-auto textarea.form-control:focus, .bg-light-green-A400.text-auto textarea.form-control:focus:hover, .bg-light-green-A700.text-auto textarea.form-control:focus, .bg-light-green-A700.text-auto textarea.form-control:focus:hover, .bg-lime-50.text-auto textarea.form-control:focus, .bg-lime-50.text-auto textarea.form-control:focus:hover, .bg-lime-100.text-auto textarea.form-control:focus, .bg-lime-100.text-auto textarea.form-control:focus:hover, .bg-lime-200.text-auto textarea.form-control:focus, .bg-lime-200.text-auto textarea.form-control:focus:hover, .bg-lime-300.text-auto textarea.form-control:focus, .bg-lime-300.text-auto textarea.form-control:focus:hover, .bg-lime-400.text-auto textarea.form-control:focus, .bg-lime-400.text-auto textarea.form-control:focus:hover, .bg-lime-500.text-auto textarea.form-control:focus, .bg-lime-500.text-auto textarea.form-control:focus:hover, .bg-lime.text-auto textarea.form-control:focus, .bg-lime.text-auto textarea.form-control:focus:hover, .bg-lime-600.text-auto textarea.form-control:focus, .bg-lime-600.text-auto textarea.form-control:focus:hover, .bg-lime-700.text-auto textarea.form-control:focus, .bg-lime-700.text-auto textarea.form-control:focus:hover, .bg-lime-800.text-auto textarea.form-control:focus, .bg-lime-800.text-auto textarea.form-control:focus:hover, .bg-lime-A100.text-auto textarea.form-control:focus, .bg-lime-A100.text-auto textarea.form-control:focus:hover, .bg-lime-A200.text-auto textarea.form-control:focus, .bg-lime-A200.text-auto textarea.form-control:focus:hover, .bg-lime-A400.text-auto textarea.form-control:focus, .bg-lime-A400.text-auto textarea.form-control:focus:hover, .bg-lime-A700.text-auto textarea.form-control:focus, .bg-lime-A700.text-auto textarea.form-control:focus:hover, .bg-yellow-50.text-auto textarea.form-control:focus, .bg-yellow-50.text-auto textarea.form-control:focus:hover, .bg-yellow-100.text-auto textarea.form-control:focus, .bg-yellow-100.text-auto textarea.form-control:focus:hover, .bg-yellow-200.text-auto textarea.form-control:focus, .bg-yellow-200.text-auto textarea.form-control:focus:hover, .bg-yellow-300.text-auto textarea.form-control:focus, .bg-yellow-300.text-auto textarea.form-control:focus:hover, .bg-yellow-400.text-auto textarea.form-control:focus, .bg-yellow-400.text-auto textarea.form-control:focus:hover, .bg-yellow-500.text-auto textarea.form-control:focus, .bg-yellow-500.text-auto textarea.form-control:focus:hover, .bg-yellow.text-auto textarea.form-control:focus, .bg-yellow.text-auto textarea.form-control:focus:hover, .bg-yellow-600.text-auto textarea.form-control:focus, .bg-yellow-600.text-auto textarea.form-control:focus:hover, .bg-yellow-700.text-auto textarea.form-control:focus, .bg-yellow-700.text-auto textarea.form-control:focus:hover, .bg-yellow-800.text-auto textarea.form-control:focus, .bg-yellow-800.text-auto textarea.form-control:focus:hover, .bg-yellow-900.text-auto textarea.form-control:focus, .bg-yellow-900.text-auto textarea.form-control:focus:hover, .bg-yellow-A100.text-auto textarea.form-control:focus, .bg-yellow-A100.text-auto textarea.form-control:focus:hover, .bg-yellow-A200.text-auto textarea.form-control:focus, .bg-yellow-A200.text-auto textarea.form-control:focus:hover, .bg-yellow-A400.text-auto textarea.form-control:focus, .bg-yellow-A400.text-auto textarea.form-control:focus:hover, .bg-yellow-A700.text-auto textarea.form-control:focus, .bg-yellow-A700.text-auto textarea.form-control:focus:hover, .bg-amber-50.text-auto textarea.form-control:focus, .bg-amber-50.text-auto textarea.form-control:focus:hover, .bg-amber-100.text-auto textarea.form-control:focus, .bg-amber-100.text-auto textarea.form-control:focus:hover, .bg-amber-200.text-auto textarea.form-control:focus, .bg-amber-200.text-auto textarea.form-control:focus:hover, .bg-amber-300.text-auto textarea.form-control:focus, .bg-amber-300.text-auto textarea.form-control:focus:hover, .bg-amber-400.text-auto textarea.form-control:focus, .bg-amber-400.text-auto textarea.form-control:focus:hover, .bg-amber-500.text-auto textarea.form-control:focus, .bg-amber-500.text-auto textarea.form-control:focus:hover, .bg-amber.text-auto textarea.form-control:focus, .bg-amber.text-auto textarea.form-control:focus:hover, .bg-amber-600.text-auto textarea.form-control:focus, .bg-amber-600.text-auto textarea.form-control:focus:hover, .bg-amber-700.text-auto textarea.form-control:focus, .bg-amber-700.text-auto textarea.form-control:focus:hover, .bg-amber-800.text-auto textarea.form-control:focus, .bg-amber-800.text-auto textarea.form-control:focus:hover, .bg-amber-900.text-auto textarea.form-control:focus, .bg-amber-900.text-auto textarea.form-control:focus:hover, .bg-amber-A100.text-auto textarea.form-control:focus, .bg-amber-A100.text-auto textarea.form-control:focus:hover, .bg-amber-A200.text-auto textarea.form-control:focus, .bg-amber-A200.text-auto textarea.form-control:focus:hover, .bg-amber-A400.text-auto textarea.form-control:focus, .bg-amber-A400.text-auto textarea.form-control:focus:hover, .bg-amber-A700.text-auto textarea.form-control:focus, .bg-amber-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-deep-orange-50.text-auto textarea.form-control:focus, .bg-deep-orange-50.text-auto textarea.form-control:focus:hover, .bg-deep-orange-100.text-auto textarea.form-control:focus, .bg-deep-orange-100.text-auto textarea.form-control:focus:hover, .bg-deep-orange-200.text-auto textarea.form-control:focus, .bg-deep-orange-200.text-auto textarea.form-control:focus:hover, .bg-deep-orange-300.text-auto textarea.form-control:focus, .bg-deep-orange-300.text-auto textarea.form-control:focus:hover, .bg-deep-orange-400.text-auto textarea.form-control:focus, .bg-deep-orange-400.text-auto textarea.form-control:focus:hover, .bg-deep-orange-A100.text-auto textarea.form-control:focus, .bg-deep-orange-A100.text-auto textarea.form-control:focus:hover, .bg-deep-orange-A200.text-auto textarea.form-control:focus, .bg-deep-orange-A200.text-auto textarea.form-control:focus:hover, .bg-brown-50.text-auto textarea.form-control:focus, .bg-brown-50.text-auto textarea.form-control:focus:hover, .bg-brown-100.text-auto textarea.form-control:focus, .bg-brown-100.text-auto textarea.form-control:focus:hover, .bg-brown-200.text-auto textarea.form-control:focus, .bg-brown-200.text-auto textarea.form-control:focus:hover, .bg-brown-A100.text-auto textarea.form-control:focus, .bg-brown-A100.text-auto textarea.form-control:focus:hover, .bg-brown-A200.text-auto textarea.form-control:focus, .bg-brown-A200.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-blue-grey-50.text-auto textarea.form-control:focus, .bg-blue-grey-50.text-auto textarea.form-control:focus:hover, .bg-blue-grey-100.text-auto textarea.form-control:focus, .bg-blue-grey-100.text-auto textarea.form-control:focus:hover, .bg-blue-grey-200.text-auto textarea.form-control:focus, .bg-blue-grey-200.text-auto textarea.form-control:focus:hover, .bg-blue-grey-300.text-auto textarea.form-control:focus, .bg-blue-grey-300.text-auto textarea.form-control:focus:hover, .bg-blue-grey-A100.text-auto textarea.form-control:focus, .bg-blue-grey-A100.text-auto textarea.form-control:focus:hover, .bg-blue-grey-A200.text-auto textarea.form-control:focus, .bg-blue-grey-A200.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-pink-50.text-auto select.form-control, .bg-pink-100.text-auto select.form-control, .bg-pink-200.text-auto select.form-control, .bg-pink-300.text-auto select.form-control, .bg-pink-A100.text-auto select.form-control, .bg-purple-50.text-auto select.form-control, .bg-purple-100.text-auto select.form-control, .bg-purple-200.text-auto select.form-control, .bg-purple-A100.text-auto select.form-control, .bg-deep-purple-50.text-auto select.form-control, .bg-deep-purple-100.text-auto select.form-control, .bg-deep-purple-200.text-auto select.form-control, .bg-deep-purple-A100.text-auto select.form-control, .bg-indigo-50.text-auto select.form-control, .bg-indigo-100.text-auto select.form-control, .bg-indigo-200.text-auto select.form-control, .bg-indigo-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-light-blue-50.text-auto select.form-control, .bg-light-blue-100.text-auto select.form-control, .bg-light-blue-200.text-auto select.form-control, .bg-light-blue-300.text-auto select.form-control, .bg-light-blue-400.text-auto select.form-control, .bg-light-blue-500.text-auto select.form-control, .bg-light-blue.text-auto select.form-control, .bg-light-blue-600.text-auto select.form-control, .bg-light-blue-A100.text-auto select.form-control, .bg-light-blue-A200.text-auto select.form-control, .bg-light-blue-A400.text-auto select.form-control, .bg-cyan-50.text-auto select.form-control, .bg-cyan-100.text-auto select.form-control, .bg-cyan-200.text-auto select.form-control, .bg-cyan-300.text-auto select.form-control, .bg-cyan-400.text-auto select.form-control, .bg-cyan-500.text-auto select.form-control, .bg-cyan.text-auto select.form-control, .bg-cyan-600.text-auto select.form-control, .bg-cyan-A100.text-auto select.form-control, .bg-cyan-A200.text-auto select.form-control, .bg-cyan-A400.text-auto select.form-control, .bg-cyan-A700.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-light-green-50.text-auto select.form-control, .bg-light-green-100.text-auto select.form-control, .bg-light-green-200.text-auto select.form-control, .bg-light-green-300.text-auto select.form-control, .bg-light-green-400.text-auto select.form-control, .bg-light-green-500.text-auto select.form-control, .bg-light-green.text-auto select.form-control, .bg-light-green-600.text-auto select.form-control, .bg-light-green-A100.text-auto select.form-control, .bg-light-green-A200.text-auto select.form-control, .bg-light-green-A400.text-auto select.form-control, .bg-light-green-A700.text-auto select.form-control, .bg-lime-50.text-auto select.form-control, .bg-lime-100.text-auto select.form-control, .bg-lime-200.text-auto select.form-control, .bg-lime-300.text-auto select.form-control, .bg-lime-400.text-auto select.form-control, .bg-lime-500.text-auto select.form-control, .bg-lime.text-auto select.form-control, .bg-lime-600.text-auto select.form-control, .bg-lime-700.text-auto select.form-control, .bg-lime-800.text-auto select.form-control, .bg-lime-A100.text-auto select.form-control, .bg-lime-A200.text-auto select.form-control, .bg-lime-A400.text-auto select.form-control, .bg-lime-A700.text-auto select.form-control, .bg-yellow-50.text-auto select.form-control, .bg-yellow-100.text-auto select.form-control, .bg-yellow-200.text-auto select.form-control, .bg-yellow-300.text-auto select.form-control, .bg-yellow-400.text-auto select.form-control, .bg-yellow-500.text-auto select.form-control, .bg-yellow.text-auto select.form-control, .bg-yellow-600.text-auto select.form-control, .bg-yellow-700.text-auto select.form-control, .bg-yellow-800.text-auto select.form-control, .bg-yellow-900.text-auto select.form-control, .bg-yellow-A100.text-auto select.form-control, .bg-yellow-A200.text-auto select.form-control, .bg-yellow-A400.text-auto select.form-control, .bg-yellow-A700.text-auto select.form-control, .bg-amber-50.text-auto select.form-control, .bg-amber-100.text-auto select.form-control, .bg-amber-200.text-auto select.form-control, .bg-amber-300.text-auto select.form-control, .bg-amber-400.text-auto select.form-control, .bg-amber-500.text-auto select.form-control, .bg-amber.text-auto select.form-control, .bg-amber-600.text-auto select.form-control, .bg-amber-700.text-auto select.form-control, .bg-amber-800.text-auto select.form-control, .bg-amber-900.text-auto select.form-control, .bg-amber-A100.text-auto select.form-control, .bg-amber-A200.text-auto select.form-control, .bg-amber-A400.text-auto select.form-control, .bg-amber-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-deep-orange-50.text-auto select.form-control, .bg-deep-orange-100.text-auto select.form-control, .bg-deep-orange-200.text-auto select.form-control, .bg-deep-orange-300.text-auto select.form-control, .bg-deep-orange-400.text-auto select.form-control, .bg-deep-orange-A100.text-auto select.form-control, .bg-deep-orange-A200.text-auto select.form-control, .bg-brown-50.text-auto select.form-control, .bg-brown-100.text-auto select.form-control, .bg-brown-200.text-auto select.form-control, .bg-brown-A100.text-auto select.form-control, .bg-brown-A200.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-blue-grey-50.text-auto select.form-control, .bg-blue-grey-100.text-auto select.form-control, .bg-blue-grey-200.text-auto select.form-control, .bg-blue-grey-300.text-auto select.form-control, .bg-blue-grey-A100.text-auto select.form-control, .bg-blue-grey-A200.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-pink-50.text-auto select.form-control[multiple], .bg-pink-50.text-auto select.form-control[size], .bg-pink-100.text-auto select.form-control[multiple], .bg-pink-100.text-auto select.form-control[size], .bg-pink-200.text-auto select.form-control[multiple], .bg-pink-200.text-auto select.form-control[size], .bg-pink-300.text-auto select.form-control[multiple], .bg-pink-300.text-auto select.form-control[size], .bg-pink-A100.text-auto select.form-control[multiple], .bg-pink-A100.text-auto select.form-control[size], .bg-purple-50.text-auto select.form-control[multiple], .bg-purple-50.text-auto select.form-control[size], .bg-purple-100.text-auto select.form-control[multiple], .bg-purple-100.text-auto select.form-control[size], .bg-purple-200.text-auto select.form-control[multiple], .bg-purple-200.text-auto select.form-control[size], .bg-purple-A100.text-auto select.form-control[multiple], .bg-purple-A100.text-auto select.form-control[size], .bg-deep-purple-50.text-auto select.form-control[multiple], .bg-deep-purple-50.text-auto select.form-control[size], .bg-deep-purple-100.text-auto select.form-control[multiple], .bg-deep-purple-100.text-auto select.form-control[size], .bg-deep-purple-200.text-auto select.form-control[multiple], .bg-deep-purple-200.text-auto select.form-control[size], .bg-deep-purple-A100.text-auto select.form-control[multiple], .bg-deep-purple-A100.text-auto select.form-control[size], .bg-indigo-50.text-auto select.form-control[multiple], .bg-indigo-50.text-auto select.form-control[size], .bg-indigo-100.text-auto select.form-control[multiple], .bg-indigo-100.text-auto select.form-control[size], .bg-indigo-200.text-auto select.form-control[multiple], .bg-indigo-200.text-auto select.form-control[size], .bg-indigo-A100.text-auto select.form-control[multiple], .bg-indigo-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-light-blue-50.text-auto select.form-control[multiple], .bg-light-blue-50.text-auto select.form-control[size], .bg-light-blue-100.text-auto select.form-control[multiple], .bg-light-blue-100.text-auto select.form-control[size], .bg-light-blue-200.text-auto select.form-control[multiple], .bg-light-blue-200.text-auto select.form-control[size], .bg-light-blue-300.text-auto select.form-control[multiple], .bg-light-blue-300.text-auto select.form-control[size], .bg-light-blue-400.text-auto select.form-control[multiple], .bg-light-blue-400.text-auto select.form-control[size], .bg-light-blue-500.text-auto select.form-control[multiple], .bg-light-blue-500.text-auto select.form-control[size], .bg-light-blue.text-auto select.form-control[multiple], .bg-light-blue.text-auto select.form-control[size], .bg-light-blue-600.text-auto select.form-control[multiple], .bg-light-blue-600.text-auto select.form-control[size], .bg-light-blue-A100.text-auto select.form-control[multiple], .bg-light-blue-A100.text-auto select.form-control[size], .bg-light-blue-A200.text-auto select.form-control[multiple], .bg-light-blue-A200.text-auto select.form-control[size], .bg-light-blue-A400.text-auto select.form-control[multiple], .bg-light-blue-A400.text-auto select.form-control[size], .bg-cyan-50.text-auto select.form-control[multiple], .bg-cyan-50.text-auto select.form-control[size], .bg-cyan-100.text-auto select.form-control[multiple], .bg-cyan-100.text-auto select.form-control[size], .bg-cyan-200.text-auto select.form-control[multiple], .bg-cyan-200.text-auto select.form-control[size], .bg-cyan-300.text-auto select.form-control[multiple], .bg-cyan-300.text-auto select.form-control[size], .bg-cyan-400.text-auto select.form-control[multiple], .bg-cyan-400.text-auto select.form-control[size], .bg-cyan-500.text-auto select.form-control[multiple], .bg-cyan-500.text-auto select.form-control[size], .bg-cyan.text-auto select.form-control[multiple], .bg-cyan.text-auto select.form-control[size], .bg-cyan-600.text-auto select.form-control[multiple], .bg-cyan-600.text-auto select.form-control[size], .bg-cyan-A100.text-auto select.form-control[multiple], .bg-cyan-A100.text-auto select.form-control[size], .bg-cyan-A200.text-auto select.form-control[multiple], .bg-cyan-A200.text-auto select.form-control[size], .bg-cyan-A400.text-auto select.form-control[multiple], .bg-cyan-A400.text-auto select.form-control[size], .bg-cyan-A700.text-auto select.form-control[multiple], .bg-cyan-A700.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-light-green-50.text-auto select.form-control[multiple], .bg-light-green-50.text-auto select.form-control[size], .bg-light-green-100.text-auto select.form-control[multiple], .bg-light-green-100.text-auto select.form-control[size], .bg-light-green-200.text-auto select.form-control[multiple], .bg-light-green-200.text-auto select.form-control[size], .bg-light-green-300.text-auto select.form-control[multiple], .bg-light-green-300.text-auto select.form-control[size], .bg-light-green-400.text-auto select.form-control[multiple], .bg-light-green-400.text-auto select.form-control[size], .bg-light-green-500.text-auto select.form-control[multiple], .bg-light-green-500.text-auto select.form-control[size], .bg-light-green.text-auto select.form-control[multiple], .bg-light-green.text-auto select.form-control[size], .bg-light-green-600.text-auto select.form-control[multiple], .bg-light-green-600.text-auto select.form-control[size], .bg-light-green-A100.text-auto select.form-control[multiple], .bg-light-green-A100.text-auto select.form-control[size], .bg-light-green-A200.text-auto select.form-control[multiple], .bg-light-green-A200.text-auto select.form-control[size], .bg-light-green-A400.text-auto select.form-control[multiple], .bg-light-green-A400.text-auto select.form-control[size], .bg-light-green-A700.text-auto select.form-control[multiple], .bg-light-green-A700.text-auto select.form-control[size], .bg-lime-50.text-auto select.form-control[multiple], .bg-lime-50.text-auto select.form-control[size], .bg-lime-100.text-auto select.form-control[multiple], .bg-lime-100.text-auto select.form-control[size], .bg-lime-200.text-auto select.form-control[multiple], .bg-lime-200.text-auto select.form-control[size], .bg-lime-300.text-auto select.form-control[multiple], .bg-lime-300.text-auto select.form-control[size], .bg-lime-400.text-auto select.form-control[multiple], .bg-lime-400.text-auto select.form-control[size], .bg-lime-500.text-auto select.form-control[multiple], .bg-lime-500.text-auto select.form-control[size], .bg-lime.text-auto select.form-control[multiple], .bg-lime.text-auto select.form-control[size], .bg-lime-600.text-auto select.form-control[multiple], .bg-lime-600.text-auto select.form-control[size], .bg-lime-700.text-auto select.form-control[multiple], .bg-lime-700.text-auto select.form-control[size], .bg-lime-800.text-auto select.form-control[multiple], .bg-lime-800.text-auto select.form-control[size], .bg-lime-A100.text-auto select.form-control[multiple], .bg-lime-A100.text-auto select.form-control[size], .bg-lime-A200.text-auto select.form-control[multiple], .bg-lime-A200.text-auto select.form-control[size], .bg-lime-A400.text-auto select.form-control[multiple], .bg-lime-A400.text-auto select.form-control[size], .bg-lime-A700.text-auto select.form-control[multiple], .bg-lime-A700.text-auto select.form-control[size], .bg-yellow-50.text-auto select.form-control[multiple], .bg-yellow-50.text-auto select.form-control[size], .bg-yellow-100.text-auto select.form-control[multiple], .bg-yellow-100.text-auto select.form-control[size], .bg-yellow-200.text-auto select.form-control[multiple], .bg-yellow-200.text-auto select.form-control[size], .bg-yellow-300.text-auto select.form-control[multiple], .bg-yellow-300.text-auto select.form-control[size], .bg-yellow-400.text-auto select.form-control[multiple], .bg-yellow-400.text-auto select.form-control[size], .bg-yellow-500.text-auto select.form-control[multiple], .bg-yellow-500.text-auto select.form-control[size], .bg-yellow.text-auto select.form-control[multiple], .bg-yellow.text-auto select.form-control[size], .bg-yellow-600.text-auto select.form-control[multiple], .bg-yellow-600.text-auto select.form-control[size], .bg-yellow-700.text-auto select.form-control[multiple], .bg-yellow-700.text-auto select.form-control[size], .bg-yellow-800.text-auto select.form-control[multiple], .bg-yellow-800.text-auto select.form-control[size], .bg-yellow-900.text-auto select.form-control[multiple], .bg-yellow-900.text-auto select.form-control[size], .bg-yellow-A100.text-auto select.form-control[multiple], .bg-yellow-A100.text-auto select.form-control[size], .bg-yellow-A200.text-auto select.form-control[multiple], .bg-yellow-A200.text-auto select.form-control[size], .bg-yellow-A400.text-auto select.form-control[multiple], .bg-yellow-A400.text-auto select.form-control[size], .bg-yellow-A700.text-auto select.form-control[multiple], .bg-yellow-A700.text-auto select.form-control[size], .bg-amber-50.text-auto select.form-control[multiple], .bg-amber-50.text-auto select.form-control[size], .bg-amber-100.text-auto select.form-control[multiple], .bg-amber-100.text-auto select.form-control[size], .bg-amber-200.text-auto select.form-control[multiple], .bg-amber-200.text-auto select.form-control[size], .bg-amber-300.text-auto select.form-control[multiple], .bg-amber-300.text-auto select.form-control[size], .bg-amber-400.text-auto select.form-control[multiple], .bg-amber-400.text-auto select.form-control[size], .bg-amber-500.text-auto select.form-control[multiple], .bg-amber-500.text-auto select.form-control[size], .bg-amber.text-auto select.form-control[multiple], .bg-amber.text-auto select.form-control[size], .bg-amber-600.text-auto select.form-control[multiple], .bg-amber-600.text-auto select.form-control[size], .bg-amber-700.text-auto select.form-control[multiple], .bg-amber-700.text-auto select.form-control[size], .bg-amber-800.text-auto select.form-control[multiple], .bg-amber-800.text-auto select.form-control[size], .bg-amber-900.text-auto select.form-control[multiple], .bg-amber-900.text-auto select.form-control[size], .bg-amber-A100.text-auto select.form-control[multiple], .bg-amber-A100.text-auto select.form-control[size], .bg-amber-A200.text-auto select.form-control[multiple], .bg-amber-A200.text-auto select.form-control[size], .bg-amber-A400.text-auto select.form-control[multiple], .bg-amber-A400.text-auto select.form-control[size], .bg-amber-A700.text-auto select.form-control[multiple], .bg-amber-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-deep-orange-50.text-auto select.form-control[multiple], .bg-deep-orange-50.text-auto select.form-control[size], .bg-deep-orange-100.text-auto select.form-control[multiple], .bg-deep-orange-100.text-auto select.form-control[size], .bg-deep-orange-200.text-auto select.form-control[multiple], .bg-deep-orange-200.text-auto select.form-control[size], .bg-deep-orange-300.text-auto select.form-control[multiple], .bg-deep-orange-300.text-auto select.form-control[size], .bg-deep-orange-400.text-auto select.form-control[multiple], .bg-deep-orange-400.text-auto select.form-control[size], .bg-deep-orange-A100.text-auto select.form-control[multiple], .bg-deep-orange-A100.text-auto select.form-control[size], .bg-deep-orange-A200.text-auto select.form-control[multiple], .bg-deep-orange-A200.text-auto select.form-control[size], .bg-brown-50.text-auto select.form-control[multiple], .bg-brown-50.text-auto select.form-control[size], .bg-brown-100.text-auto select.form-control[multiple], .bg-brown-100.text-auto select.form-control[size], .bg-brown-200.text-auto select.form-control[multiple], .bg-brown-200.text-auto select.form-control[size], .bg-brown-A100.text-auto select.form-control[multiple], .bg-brown-A100.text-auto select.form-control[size], .bg-brown-A200.text-auto select.form-control[multiple], .bg-brown-A200.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-blue-grey-50.text-auto select.form-control[multiple], .bg-blue-grey-50.text-auto select.form-control[size], .bg-blue-grey-100.text-auto select.form-control[multiple], .bg-blue-grey-100.text-auto select.form-control[size], .bg-blue-grey-200.text-auto select.form-control[multiple], .bg-blue-grey-200.text-auto select.form-control[size], .bg-blue-grey-300.text-auto select.form-control[multiple], .bg-blue-grey-300.text-auto select.form-control[size], .bg-blue-grey-A100.text-auto select.form-control[multiple], .bg-blue-grey-A100.text-auto select.form-control[size], .bg-blue-grey-A200.text-auto select.form-control[multiple], .bg-blue-grey-A200.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-pink-50.text-auto select.form-control[multiple]:hover, .bg-pink-50.text-auto select.form-control[size]:hover, .bg-pink-100.text-auto select.form-control[multiple]:hover, .bg-pink-100.text-auto select.form-control[size]:hover, .bg-pink-200.text-auto select.form-control[multiple]:hover, .bg-pink-200.text-auto select.form-control[size]:hover, .bg-pink-300.text-auto select.form-control[multiple]:hover, .bg-pink-300.text-auto select.form-control[size]:hover, .bg-pink-A100.text-auto select.form-control[multiple]:hover, .bg-pink-A100.text-auto select.form-control[size]:hover, .bg-purple-50.text-auto select.form-control[multiple]:hover, .bg-purple-50.text-auto select.form-control[size]:hover, .bg-purple-100.text-auto select.form-control[multiple]:hover, .bg-purple-100.text-auto select.form-control[size]:hover, .bg-purple-200.text-auto select.form-control[multiple]:hover, .bg-purple-200.text-auto select.form-control[size]:hover, .bg-purple-A100.text-auto select.form-control[multiple]:hover, .bg-purple-A100.text-auto select.form-control[size]:hover, .bg-deep-purple-50.text-auto select.form-control[multiple]:hover, .bg-deep-purple-50.text-auto select.form-control[size]:hover, .bg-deep-purple-100.text-auto select.form-control[multiple]:hover, .bg-deep-purple-100.text-auto select.form-control[size]:hover, .bg-deep-purple-200.text-auto select.form-control[multiple]:hover, .bg-deep-purple-200.text-auto select.form-control[size]:hover, .bg-deep-purple-A100.text-auto select.form-control[multiple]:hover, .bg-deep-purple-A100.text-auto select.form-control[size]:hover, .bg-indigo-50.text-auto select.form-control[multiple]:hover, .bg-indigo-50.text-auto select.form-control[size]:hover, .bg-indigo-100.text-auto select.form-control[multiple]:hover, .bg-indigo-100.text-auto select.form-control[size]:hover, .bg-indigo-200.text-auto select.form-control[multiple]:hover, .bg-indigo-200.text-auto select.form-control[size]:hover, .bg-indigo-A100.text-auto select.form-control[multiple]:hover, .bg-indigo-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-light-blue-50.text-auto select.form-control[multiple]:hover, .bg-light-blue-50.text-auto select.form-control[size]:hover, .bg-light-blue-100.text-auto select.form-control[multiple]:hover, .bg-light-blue-100.text-auto select.form-control[size]:hover, .bg-light-blue-200.text-auto select.form-control[multiple]:hover, .bg-light-blue-200.text-auto select.form-control[size]:hover, .bg-light-blue-300.text-auto select.form-control[multiple]:hover, .bg-light-blue-300.text-auto select.form-control[size]:hover, .bg-light-blue-400.text-auto select.form-control[multiple]:hover, .bg-light-blue-400.text-auto select.form-control[size]:hover, .bg-light-blue-500.text-auto select.form-control[multiple]:hover, .bg-light-blue-500.text-auto select.form-control[size]:hover, .bg-light-blue.text-auto select.form-control[multiple]:hover, .bg-light-blue.text-auto select.form-control[size]:hover, .bg-light-blue-600.text-auto select.form-control[multiple]:hover, .bg-light-blue-600.text-auto select.form-control[size]:hover, .bg-light-blue-A100.text-auto select.form-control[multiple]:hover, .bg-light-blue-A100.text-auto select.form-control[size]:hover, .bg-light-blue-A200.text-auto select.form-control[multiple]:hover, .bg-light-blue-A200.text-auto select.form-control[size]:hover, .bg-light-blue-A400.text-auto select.form-control[multiple]:hover, .bg-light-blue-A400.text-auto select.form-control[size]:hover, .bg-cyan-50.text-auto select.form-control[multiple]:hover, .bg-cyan-50.text-auto select.form-control[size]:hover, .bg-cyan-100.text-auto select.form-control[multiple]:hover, .bg-cyan-100.text-auto select.form-control[size]:hover, .bg-cyan-200.text-auto select.form-control[multiple]:hover, .bg-cyan-200.text-auto select.form-control[size]:hover, .bg-cyan-300.text-auto select.form-control[multiple]:hover, .bg-cyan-300.text-auto select.form-control[size]:hover, .bg-cyan-400.text-auto select.form-control[multiple]:hover, .bg-cyan-400.text-auto select.form-control[size]:hover, .bg-cyan-500.text-auto select.form-control[multiple]:hover, .bg-cyan-500.text-auto select.form-control[size]:hover, .bg-cyan.text-auto select.form-control[multiple]:hover, .bg-cyan.text-auto select.form-control[size]:hover, .bg-cyan-600.text-auto select.form-control[multiple]:hover, .bg-cyan-600.text-auto select.form-control[size]:hover, .bg-cyan-A100.text-auto select.form-control[multiple]:hover, .bg-cyan-A100.text-auto select.form-control[size]:hover, .bg-cyan-A200.text-auto select.form-control[multiple]:hover, .bg-cyan-A200.text-auto select.form-control[size]:hover, .bg-cyan-A400.text-auto select.form-control[multiple]:hover, .bg-cyan-A400.text-auto select.form-control[size]:hover, .bg-cyan-A700.text-auto select.form-control[multiple]:hover, .bg-cyan-A700.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-light-green-50.text-auto select.form-control[multiple]:hover, .bg-light-green-50.text-auto select.form-control[size]:hover, .bg-light-green-100.text-auto select.form-control[multiple]:hover, .bg-light-green-100.text-auto select.form-control[size]:hover, .bg-light-green-200.text-auto select.form-control[multiple]:hover, .bg-light-green-200.text-auto select.form-control[size]:hover, .bg-light-green-300.text-auto select.form-control[multiple]:hover, .bg-light-green-300.text-auto select.form-control[size]:hover, .bg-light-green-400.text-auto select.form-control[multiple]:hover, .bg-light-green-400.text-auto select.form-control[size]:hover, .bg-light-green-500.text-auto select.form-control[multiple]:hover, .bg-light-green-500.text-auto select.form-control[size]:hover, .bg-light-green.text-auto select.form-control[multiple]:hover, .bg-light-green.text-auto select.form-control[size]:hover, .bg-light-green-600.text-auto select.form-control[multiple]:hover, .bg-light-green-600.text-auto select.form-control[size]:hover, .bg-light-green-A100.text-auto select.form-control[multiple]:hover, .bg-light-green-A100.text-auto select.form-control[size]:hover, .bg-light-green-A200.text-auto select.form-control[multiple]:hover, .bg-light-green-A200.text-auto select.form-control[size]:hover, .bg-light-green-A400.text-auto select.form-control[multiple]:hover, .bg-light-green-A400.text-auto select.form-control[size]:hover, .bg-light-green-A700.text-auto select.form-control[multiple]:hover, .bg-light-green-A700.text-auto select.form-control[size]:hover, .bg-lime-50.text-auto select.form-control[multiple]:hover, .bg-lime-50.text-auto select.form-control[size]:hover, .bg-lime-100.text-auto select.form-control[multiple]:hover, .bg-lime-100.text-auto select.form-control[size]:hover, .bg-lime-200.text-auto select.form-control[multiple]:hover, .bg-lime-200.text-auto select.form-control[size]:hover, .bg-lime-300.text-auto select.form-control[multiple]:hover, .bg-lime-300.text-auto select.form-control[size]:hover, .bg-lime-400.text-auto select.form-control[multiple]:hover, .bg-lime-400.text-auto select.form-control[size]:hover, .bg-lime-500.text-auto select.form-control[multiple]:hover, .bg-lime-500.text-auto select.form-control[size]:hover, .bg-lime.text-auto select.form-control[multiple]:hover, .bg-lime.text-auto select.form-control[size]:hover, .bg-lime-600.text-auto select.form-control[multiple]:hover, .bg-lime-600.text-auto select.form-control[size]:hover, .bg-lime-700.text-auto select.form-control[multiple]:hover, .bg-lime-700.text-auto select.form-control[size]:hover, .bg-lime-800.text-auto select.form-control[multiple]:hover, .bg-lime-800.text-auto select.form-control[size]:hover, .bg-lime-A100.text-auto select.form-control[multiple]:hover, .bg-lime-A100.text-auto select.form-control[size]:hover, .bg-lime-A200.text-auto select.form-control[multiple]:hover, .bg-lime-A200.text-auto select.form-control[size]:hover, .bg-lime-A400.text-auto select.form-control[multiple]:hover, .bg-lime-A400.text-auto select.form-control[size]:hover, .bg-lime-A700.text-auto select.form-control[multiple]:hover, .bg-lime-A700.text-auto select.form-control[size]:hover, .bg-yellow-50.text-auto select.form-control[multiple]:hover, .bg-yellow-50.text-auto select.form-control[size]:hover, .bg-yellow-100.text-auto select.form-control[multiple]:hover, .bg-yellow-100.text-auto select.form-control[size]:hover, .bg-yellow-200.text-auto select.form-control[multiple]:hover, .bg-yellow-200.text-auto select.form-control[size]:hover, .bg-yellow-300.text-auto select.form-control[multiple]:hover, .bg-yellow-300.text-auto select.form-control[size]:hover, .bg-yellow-400.text-auto select.form-control[multiple]:hover, .bg-yellow-400.text-auto select.form-control[size]:hover, .bg-yellow-500.text-auto select.form-control[multiple]:hover, .bg-yellow-500.text-auto select.form-control[size]:hover, .bg-yellow.text-auto select.form-control[multiple]:hover, .bg-yellow.text-auto select.form-control[size]:hover, .bg-yellow-600.text-auto select.form-control[multiple]:hover, .bg-yellow-600.text-auto select.form-control[size]:hover, .bg-yellow-700.text-auto select.form-control[multiple]:hover, .bg-yellow-700.text-auto select.form-control[size]:hover, .bg-yellow-800.text-auto select.form-control[multiple]:hover, .bg-yellow-800.text-auto select.form-control[size]:hover, .bg-yellow-900.text-auto select.form-control[multiple]:hover, .bg-yellow-900.text-auto select.form-control[size]:hover, .bg-yellow-A100.text-auto select.form-control[multiple]:hover, .bg-yellow-A100.text-auto select.form-control[size]:hover, .bg-yellow-A200.text-auto select.form-control[multiple]:hover, .bg-yellow-A200.text-auto select.form-control[size]:hover, .bg-yellow-A400.text-auto select.form-control[multiple]:hover, .bg-yellow-A400.text-auto select.form-control[size]:hover, .bg-yellow-A700.text-auto select.form-control[multiple]:hover, .bg-yellow-A700.text-auto select.form-control[size]:hover, .bg-amber-50.text-auto select.form-control[multiple]:hover, .bg-amber-50.text-auto select.form-control[size]:hover, .bg-amber-100.text-auto select.form-control[multiple]:hover, .bg-amber-100.text-auto select.form-control[size]:hover, .bg-amber-200.text-auto select.form-control[multiple]:hover, .bg-amber-200.text-auto select.form-control[size]:hover, .bg-amber-300.text-auto select.form-control[multiple]:hover, .bg-amber-300.text-auto select.form-control[size]:hover, .bg-amber-400.text-auto select.form-control[multiple]:hover, .bg-amber-400.text-auto select.form-control[size]:hover, .bg-amber-500.text-auto select.form-control[multiple]:hover, .bg-amber-500.text-auto select.form-control[size]:hover, .bg-amber.text-auto select.form-control[multiple]:hover, .bg-amber.text-auto select.form-control[size]:hover, .bg-amber-600.text-auto select.form-control[multiple]:hover, .bg-amber-600.text-auto select.form-control[size]:hover, .bg-amber-700.text-auto select.form-control[multiple]:hover, .bg-amber-700.text-auto select.form-control[size]:hover, .bg-amber-800.text-auto select.form-control[multiple]:hover, .bg-amber-800.text-auto select.form-control[size]:hover, .bg-amber-900.text-auto select.form-control[multiple]:hover, .bg-amber-900.text-auto select.form-control[size]:hover, .bg-amber-A100.text-auto select.form-control[multiple]:hover, .bg-amber-A100.text-auto select.form-control[size]:hover, .bg-amber-A200.text-auto select.form-control[multiple]:hover, .bg-amber-A200.text-auto select.form-control[size]:hover, .bg-amber-A400.text-auto select.form-control[multiple]:hover, .bg-amber-A400.text-auto select.form-control[size]:hover, .bg-amber-A700.text-auto select.form-control[multiple]:hover, .bg-amber-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-deep-orange-50.text-auto select.form-control[multiple]:hover, .bg-deep-orange-50.text-auto select.form-control[size]:hover, .bg-deep-orange-100.text-auto select.form-control[multiple]:hover, .bg-deep-orange-100.text-auto select.form-control[size]:hover, .bg-deep-orange-200.text-auto select.form-control[multiple]:hover, .bg-deep-orange-200.text-auto select.form-control[size]:hover, .bg-deep-orange-300.text-auto select.form-control[multiple]:hover, .bg-deep-orange-300.text-auto select.form-control[size]:hover, .bg-deep-orange-400.text-auto select.form-control[multiple]:hover, .bg-deep-orange-400.text-auto select.form-control[size]:hover, .bg-deep-orange-A100.text-auto select.form-control[multiple]:hover, .bg-deep-orange-A100.text-auto select.form-control[size]:hover, .bg-deep-orange-A200.text-auto select.form-control[multiple]:hover, .bg-deep-orange-A200.text-auto select.form-control[size]:hover, .bg-brown-50.text-auto select.form-control[multiple]:hover, .bg-brown-50.text-auto select.form-control[size]:hover, .bg-brown-100.text-auto select.form-control[multiple]:hover, .bg-brown-100.text-auto select.form-control[size]:hover, .bg-brown-200.text-auto select.form-control[multiple]:hover, .bg-brown-200.text-auto select.form-control[size]:hover, .bg-brown-A100.text-auto select.form-control[multiple]:hover, .bg-brown-A100.text-auto select.form-control[size]:hover, .bg-brown-A200.text-auto select.form-control[multiple]:hover, .bg-brown-A200.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-blue-grey-50.text-auto select.form-control[multiple]:hover, .bg-blue-grey-50.text-auto select.form-control[size]:hover, .bg-blue-grey-100.text-auto select.form-control[multiple]:hover, .bg-blue-grey-100.text-auto select.form-control[size]:hover, .bg-blue-grey-200.text-auto select.form-control[multiple]:hover, .bg-blue-grey-200.text-auto select.form-control[size]:hover, .bg-blue-grey-300.text-auto select.form-control[multiple]:hover, .bg-blue-grey-300.text-auto select.form-control[size]:hover, .bg-blue-grey-A100.text-auto select.form-control[multiple]:hover, .bg-blue-grey-A100.text-auto select.form-control[size]:hover, .bg-blue-grey-A200.text-auto select.form-control[multiple]:hover, .bg-blue-grey-A200.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-pink-50.text-auto select.form-control[multiple]:focus, .bg-pink-50.text-auto select.form-control[multiple]:focus:hover, .bg-pink-50.text-auto select.form-control[size]:focus, .bg-pink-50.text-auto select.form-control[size]:focus:hover, .bg-pink-100.text-auto select.form-control[multiple]:focus, .bg-pink-100.text-auto select.form-control[multiple]:focus:hover, .bg-pink-100.text-auto select.form-control[size]:focus, .bg-pink-100.text-auto select.form-control[size]:focus:hover, .bg-pink-200.text-auto select.form-control[multiple]:focus, .bg-pink-200.text-auto select.form-control[multiple]:focus:hover, .bg-pink-200.text-auto select.form-control[size]:focus, .bg-pink-200.text-auto select.form-control[size]:focus:hover, .bg-pink-300.text-auto select.form-control[multiple]:focus, .bg-pink-300.text-auto select.form-control[multiple]:focus:hover, .bg-pink-300.text-auto select.form-control[size]:focus, .bg-pink-300.text-auto select.form-control[size]:focus:hover, .bg-pink-A100.text-auto select.form-control[multiple]:focus, .bg-pink-A100.text-auto select.form-control[multiple]:focus:hover, .bg-pink-A100.text-auto select.form-control[size]:focus, .bg-pink-A100.text-auto select.form-control[size]:focus:hover, .bg-purple-50.text-auto select.form-control[multiple]:focus, .bg-purple-50.text-auto select.form-control[multiple]:focus:hover, .bg-purple-50.text-auto select.form-control[size]:focus, .bg-purple-50.text-auto select.form-control[size]:focus:hover, .bg-purple-100.text-auto select.form-control[multiple]:focus, .bg-purple-100.text-auto select.form-control[multiple]:focus:hover, .bg-purple-100.text-auto select.form-control[size]:focus, .bg-purple-100.text-auto select.form-control[size]:focus:hover, .bg-purple-200.text-auto select.form-control[multiple]:focus, .bg-purple-200.text-auto select.form-control[multiple]:focus:hover, .bg-purple-200.text-auto select.form-control[size]:focus, .bg-purple-200.text-auto select.form-control[size]:focus:hover, .bg-purple-A100.text-auto select.form-control[multiple]:focus, .bg-purple-A100.text-auto select.form-control[multiple]:focus:hover, .bg-purple-A100.text-auto select.form-control[size]:focus, .bg-purple-A100.text-auto select.form-control[size]:focus:hover, .bg-deep-purple-50.text-auto select.form-control[multiple]:focus, .bg-deep-purple-50.text-auto select.form-control[multiple]:focus:hover, .bg-deep-purple-50.text-auto select.form-control[size]:focus, .bg-deep-purple-50.text-auto select.form-control[size]:focus:hover, .bg-deep-purple-100.text-auto select.form-control[multiple]:focus, .bg-deep-purple-100.text-auto select.form-control[multiple]:focus:hover, .bg-deep-purple-100.text-auto select.form-control[size]:focus, .bg-deep-purple-100.text-auto select.form-control[size]:focus:hover, .bg-deep-purple-200.text-auto select.form-control[multiple]:focus, .bg-deep-purple-200.text-auto select.form-control[multiple]:focus:hover, .bg-deep-purple-200.text-auto select.form-control[size]:focus, .bg-deep-purple-200.text-auto select.form-control[size]:focus:hover, .bg-deep-purple-A100.text-auto select.form-control[multiple]:focus, .bg-deep-purple-A100.text-auto select.form-control[multiple]:focus:hover, .bg-deep-purple-A100.text-auto select.form-control[size]:focus, .bg-deep-purple-A100.text-auto select.form-control[size]:focus:hover, .bg-indigo-50.text-auto select.form-control[multiple]:focus, .bg-indigo-50.text-auto select.form-control[multiple]:focus:hover, .bg-indigo-50.text-auto select.form-control[size]:focus, .bg-indigo-50.text-auto select.form-control[size]:focus:hover, .bg-indigo-100.text-auto select.form-control[multiple]:focus, .bg-indigo-100.text-auto select.form-control[multiple]:focus:hover, .bg-indigo-100.text-auto select.form-control[size]:focus, .bg-indigo-100.text-auto select.form-control[size]:focus:hover, .bg-indigo-200.text-auto select.form-control[multiple]:focus, .bg-indigo-200.text-auto select.form-control[multiple]:focus:hover, .bg-indigo-200.text-auto select.form-control[size]:focus, .bg-indigo-200.text-auto select.form-control[size]:focus:hover, .bg-indigo-A100.text-auto select.form-control[multiple]:focus, .bg-indigo-A100.text-auto select.form-control[multiple]:focus:hover, .bg-indigo-A100.text-auto select.form-control[size]:focus, .bg-indigo-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-light-blue-50.text-auto select.form-control[multiple]:focus, .bg-light-blue-50.text-auto select.form-control[multiple]:focus:hover, .bg-light-blue-50.text-auto select.form-control[size]:focus, .bg-light-blue-50.text-auto select.form-control[size]:focus:hover, .bg-light-blue-100.text-auto select.form-control[multiple]:focus, .bg-light-blue-100.text-auto select.form-control[multiple]:focus:hover, .bg-light-blue-100.text-auto select.form-control[size]:focus, .bg-light-blue-100.text-auto select.form-control[size]:focus:hover, .bg-light-blue-200.text-auto select.form-control[multiple]:focus, .bg-light-blue-200.text-auto select.form-control[multiple]:focus:hover, .bg-light-blue-200.text-auto select.form-control[size]:focus, .bg-light-blue-200.text-auto select.form-control[size]:focus:hover, .bg-light-blue-300.text-auto select.form-control[multiple]:focus, .bg-light-blue-300.text-auto select.form-control[multiple]:focus:hover, .bg-light-blue-300.text-auto select.form-control[size]:focus, .bg-light-blue-300.text-auto select.form-control[size]:focus:hover, .bg-light-blue-400.text-auto select.form-control[multiple]:focus, .bg-light-blue-400.text-auto select.form-control[multiple]:focus:hover, .bg-light-blue-400.text-auto select.form-control[size]:focus, .bg-light-blue-400.text-auto select.form-control[size]:focus:hover, .bg-light-blue-500.text-auto select.form-control[multiple]:focus, .bg-light-blue-500.text-auto select.form-control[multiple]:focus:hover, .bg-light-blue-500.text-auto select.form-control[size]:focus, .bg-light-blue-500.text-auto select.form-control[size]:focus:hover, .bg-light-blue.text-auto select.form-control[multiple]:focus, .bg-light-blue.text-auto select.form-control[multiple]:focus:hover, .bg-light-blue.text-auto select.form-control[size]:focus, .bg-light-blue.text-auto select.form-control[size]:focus:hover, .bg-light-blue-600.text-auto select.form-control[multiple]:focus, .bg-light-blue-600.text-auto select.form-control[multiple]:focus:hover, .bg-light-blue-600.text-auto select.form-control[size]:focus, .bg-light-blue-600.text-auto select.form-control[size]:focus:hover, .bg-light-blue-A100.text-auto select.form-control[multiple]:focus, .bg-light-blue-A100.text-auto select.form-control[multiple]:focus:hover, .bg-light-blue-A100.text-auto select.form-control[size]:focus, .bg-light-blue-A100.text-auto select.form-control[size]:focus:hover, .bg-light-blue-A200.text-auto select.form-control[multiple]:focus, .bg-light-blue-A200.text-auto select.form-control[multiple]:focus:hover, .bg-light-blue-A200.text-auto select.form-control[size]:focus, .bg-light-blue-A200.text-auto select.form-control[size]:focus:hover, .bg-light-blue-A400.text-auto select.form-control[multiple]:focus, .bg-light-blue-A400.text-auto select.form-control[multiple]:focus:hover, .bg-light-blue-A400.text-auto select.form-control[size]:focus, .bg-light-blue-A400.text-auto select.form-control[size]:focus:hover, .bg-cyan-50.text-auto select.form-control[multiple]:focus, .bg-cyan-50.text-auto select.form-control[multiple]:focus:hover, .bg-cyan-50.text-auto select.form-control[size]:focus, .bg-cyan-50.text-auto select.form-control[size]:focus:hover, .bg-cyan-100.text-auto select.form-control[multiple]:focus, .bg-cyan-100.text-auto select.form-control[multiple]:focus:hover, .bg-cyan-100.text-auto select.form-control[size]:focus, .bg-cyan-100.text-auto select.form-control[size]:focus:hover, .bg-cyan-200.text-auto select.form-control[multiple]:focus, .bg-cyan-200.text-auto select.form-control[multiple]:focus:hover, .bg-cyan-200.text-auto select.form-control[size]:focus, .bg-cyan-200.text-auto select.form-control[size]:focus:hover, .bg-cyan-300.text-auto select.form-control[multiple]:focus, .bg-cyan-300.text-auto select.form-control[multiple]:focus:hover, .bg-cyan-300.text-auto select.form-control[size]:focus, .bg-cyan-300.text-auto select.form-control[size]:focus:hover, .bg-cyan-400.text-auto select.form-control[multiple]:focus, .bg-cyan-400.text-auto select.form-control[multiple]:focus:hover, .bg-cyan-400.text-auto select.form-control[size]:focus, .bg-cyan-400.text-auto select.form-control[size]:focus:hover, .bg-cyan-500.text-auto select.form-control[multiple]:focus, .bg-cyan-500.text-auto select.form-control[multiple]:focus:hover, .bg-cyan-500.text-auto select.form-control[size]:focus, .bg-cyan-500.text-auto select.form-control[size]:focus:hover, .bg-cyan.text-auto select.form-control[multiple]:focus, .bg-cyan.text-auto select.form-control[multiple]:focus:hover, .bg-cyan.text-auto select.form-control[size]:focus, .bg-cyan.text-auto select.form-control[size]:focus:hover, .bg-cyan-600.text-auto select.form-control[multiple]:focus, .bg-cyan-600.text-auto select.form-control[multiple]:focus:hover, .bg-cyan-600.text-auto select.form-control[size]:focus, .bg-cyan-600.text-auto select.form-control[size]:focus:hover, .bg-cyan-A100.text-auto select.form-control[multiple]:focus, .bg-cyan-A100.text-auto select.form-control[multiple]:focus:hover, .bg-cyan-A100.text-auto select.form-control[size]:focus, .bg-cyan-A100.text-auto select.form-control[size]:focus:hover, .bg-cyan-A200.text-auto select.form-control[multiple]:focus, .bg-cyan-A200.text-auto select.form-control[multiple]:focus:hover, .bg-cyan-A200.text-auto select.form-control[size]:focus, .bg-cyan-A200.text-auto select.form-control[size]:focus:hover, .bg-cyan-A400.text-auto select.form-control[multiple]:focus, .bg-cyan-A400.text-auto select.form-control[multiple]:focus:hover, .bg-cyan-A400.text-auto select.form-control[size]:focus, .bg-cyan-A400.text-auto select.form-control[size]:focus:hover, .bg-cyan-A700.text-auto select.form-control[multiple]:focus, .bg-cyan-A700.text-auto select.form-control[multiple]:focus:hover, .bg-cyan-A700.text-auto select.form-control[size]:focus, .bg-cyan-A700.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-light-green-50.text-auto select.form-control[multiple]:focus, .bg-light-green-50.text-auto select.form-control[multiple]:focus:hover, .bg-light-green-50.text-auto select.form-control[size]:focus, .bg-light-green-50.text-auto select.form-control[size]:focus:hover, .bg-light-green-100.text-auto select.form-control[multiple]:focus, .bg-light-green-100.text-auto select.form-control[multiple]:focus:hover, .bg-light-green-100.text-auto select.form-control[size]:focus, .bg-light-green-100.text-auto select.form-control[size]:focus:hover, .bg-light-green-200.text-auto select.form-control[multiple]:focus, .bg-light-green-200.text-auto select.form-control[multiple]:focus:hover, .bg-light-green-200.text-auto select.form-control[size]:focus, .bg-light-green-200.text-auto select.form-control[size]:focus:hover, .bg-light-green-300.text-auto select.form-control[multiple]:focus, .bg-light-green-300.text-auto select.form-control[multiple]:focus:hover, .bg-light-green-300.text-auto select.form-control[size]:focus, .bg-light-green-300.text-auto select.form-control[size]:focus:hover, .bg-light-green-400.text-auto select.form-control[multiple]:focus, .bg-light-green-400.text-auto select.form-control[multiple]:focus:hover, .bg-light-green-400.text-auto select.form-control[size]:focus, .bg-light-green-400.text-auto select.form-control[size]:focus:hover, .bg-light-green-500.text-auto select.form-control[multiple]:focus, .bg-light-green-500.text-auto select.form-control[multiple]:focus:hover, .bg-light-green-500.text-auto select.form-control[size]:focus, .bg-light-green-500.text-auto select.form-control[size]:focus:hover, .bg-light-green.text-auto select.form-control[multiple]:focus, .bg-light-green.text-auto select.form-control[multiple]:focus:hover, .bg-light-green.text-auto select.form-control[size]:focus, .bg-light-green.text-auto select.form-control[size]:focus:hover, .bg-light-green-600.text-auto select.form-control[multiple]:focus, .bg-light-green-600.text-auto select.form-control[multiple]:focus:hover, .bg-light-green-600.text-auto select.form-control[size]:focus, .bg-light-green-600.text-auto select.form-control[size]:focus:hover, .bg-light-green-A100.text-auto select.form-control[multiple]:focus, .bg-light-green-A100.text-auto select.form-control[multiple]:focus:hover, .bg-light-green-A100.text-auto select.form-control[size]:focus, .bg-light-green-A100.text-auto select.form-control[size]:focus:hover, .bg-light-green-A200.text-auto select.form-control[multiple]:focus, .bg-light-green-A200.text-auto select.form-control[multiple]:focus:hover, .bg-light-green-A200.text-auto select.form-control[size]:focus, .bg-light-green-A200.text-auto select.form-control[size]:focus:hover, .bg-light-green-A400.text-auto select.form-control[multiple]:focus, .bg-light-green-A400.text-auto select.form-control[multiple]:focus:hover, .bg-light-green-A400.text-auto select.form-control[size]:focus, .bg-light-green-A400.text-auto select.form-control[size]:focus:hover, .bg-light-green-A700.text-auto select.form-control[multiple]:focus, .bg-light-green-A700.text-auto select.form-control[multiple]:focus:hover, .bg-light-green-A700.text-auto select.form-control[size]:focus, .bg-light-green-A700.text-auto select.form-control[size]:focus:hover, .bg-lime-50.text-auto select.form-control[multiple]:focus, .bg-lime-50.text-auto select.form-control[multiple]:focus:hover, .bg-lime-50.text-auto select.form-control[size]:focus, .bg-lime-50.text-auto select.form-control[size]:focus:hover, .bg-lime-100.text-auto select.form-control[multiple]:focus, .bg-lime-100.text-auto select.form-control[multiple]:focus:hover, .bg-lime-100.text-auto select.form-control[size]:focus, .bg-lime-100.text-auto select.form-control[size]:focus:hover, .bg-lime-200.text-auto select.form-control[multiple]:focus, .bg-lime-200.text-auto select.form-control[multiple]:focus:hover, .bg-lime-200.text-auto select.form-control[size]:focus, .bg-lime-200.text-auto select.form-control[size]:focus:hover, .bg-lime-300.text-auto select.form-control[multiple]:focus, .bg-lime-300.text-auto select.form-control[multiple]:focus:hover, .bg-lime-300.text-auto select.form-control[size]:focus, .bg-lime-300.text-auto select.form-control[size]:focus:hover, .bg-lime-400.text-auto select.form-control[multiple]:focus, .bg-lime-400.text-auto select.form-control[multiple]:focus:hover, .bg-lime-400.text-auto select.form-control[size]:focus, .bg-lime-400.text-auto select.form-control[size]:focus:hover, .bg-lime-500.text-auto select.form-control[multiple]:focus, .bg-lime-500.text-auto select.form-control[multiple]:focus:hover, .bg-lime-500.text-auto select.form-control[size]:focus, .bg-lime-500.text-auto select.form-control[size]:focus:hover, .bg-lime.text-auto select.form-control[multiple]:focus, .bg-lime.text-auto select.form-control[multiple]:focus:hover, .bg-lime.text-auto select.form-control[size]:focus, .bg-lime.text-auto select.form-control[size]:focus:hover, .bg-lime-600.text-auto select.form-control[multiple]:focus, .bg-lime-600.text-auto select.form-control[multiple]:focus:hover, .bg-lime-600.text-auto select.form-control[size]:focus, .bg-lime-600.text-auto select.form-control[size]:focus:hover, .bg-lime-700.text-auto select.form-control[multiple]:focus, .bg-lime-700.text-auto select.form-control[multiple]:focus:hover, .bg-lime-700.text-auto select.form-control[size]:focus, .bg-lime-700.text-auto select.form-control[size]:focus:hover, .bg-lime-800.text-auto select.form-control[multiple]:focus, .bg-lime-800.text-auto select.form-control[multiple]:focus:hover, .bg-lime-800.text-auto select.form-control[size]:focus, .bg-lime-800.text-auto select.form-control[size]:focus:hover, .bg-lime-A100.text-auto select.form-control[multiple]:focus, .bg-lime-A100.text-auto select.form-control[multiple]:focus:hover, .bg-lime-A100.text-auto select.form-control[size]:focus, .bg-lime-A100.text-auto select.form-control[size]:focus:hover, .bg-lime-A200.text-auto select.form-control[multiple]:focus, .bg-lime-A200.text-auto select.form-control[multiple]:focus:hover, .bg-lime-A200.text-auto select.form-control[size]:focus, .bg-lime-A200.text-auto select.form-control[size]:focus:hover, .bg-lime-A400.text-auto select.form-control[multiple]:focus, .bg-lime-A400.text-auto select.form-control[multiple]:focus:hover, .bg-lime-A400.text-auto select.form-control[size]:focus, .bg-lime-A400.text-auto select.form-control[size]:focus:hover, .bg-lime-A700.text-auto select.form-control[multiple]:focus, .bg-lime-A700.text-auto select.form-control[multiple]:focus:hover, .bg-lime-A700.text-auto select.form-control[size]:focus, .bg-lime-A700.text-auto select.form-control[size]:focus:hover, .bg-yellow-50.text-auto select.form-control[multiple]:focus, .bg-yellow-50.text-auto select.form-control[multiple]:focus:hover, .bg-yellow-50.text-auto select.form-control[size]:focus, .bg-yellow-50.text-auto select.form-control[size]:focus:hover, .bg-yellow-100.text-auto select.form-control[multiple]:focus, .bg-yellow-100.text-auto select.form-control[multiple]:focus:hover, .bg-yellow-100.text-auto select.form-control[size]:focus, .bg-yellow-100.text-auto select.form-control[size]:focus:hover, .bg-yellow-200.text-auto select.form-control[multiple]:focus, .bg-yellow-200.text-auto select.form-control[multiple]:focus:hover, .bg-yellow-200.text-auto select.form-control[size]:focus, .bg-yellow-200.text-auto select.form-control[size]:focus:hover, .bg-yellow-300.text-auto select.form-control[multiple]:focus, .bg-yellow-300.text-auto select.form-control[multiple]:focus:hover, .bg-yellow-300.text-auto select.form-control[size]:focus, .bg-yellow-300.text-auto select.form-control[size]:focus:hover, .bg-yellow-400.text-auto select.form-control[multiple]:focus, .bg-yellow-400.text-auto select.form-control[multiple]:focus:hover, .bg-yellow-400.text-auto select.form-control[size]:focus, .bg-yellow-400.text-auto select.form-control[size]:focus:hover, .bg-yellow-500.text-auto select.form-control[multiple]:focus, .bg-yellow-500.text-auto select.form-control[multiple]:focus:hover, .bg-yellow-500.text-auto select.form-control[size]:focus, .bg-yellow-500.text-auto select.form-control[size]:focus:hover, .bg-yellow.text-auto select.form-control[multiple]:focus, .bg-yellow.text-auto select.form-control[multiple]:focus:hover, .bg-yellow.text-auto select.form-control[size]:focus, .bg-yellow.text-auto select.form-control[size]:focus:hover, .bg-yellow-600.text-auto select.form-control[multiple]:focus, .bg-yellow-600.text-auto select.form-control[multiple]:focus:hover, .bg-yellow-600.text-auto select.form-control[size]:focus, .bg-yellow-600.text-auto select.form-control[size]:focus:hover, .bg-yellow-700.text-auto select.form-control[multiple]:focus, .bg-yellow-700.text-auto select.form-control[multiple]:focus:hover, .bg-yellow-700.text-auto select.form-control[size]:focus, .bg-yellow-700.text-auto select.form-control[size]:focus:hover, .bg-yellow-800.text-auto select.form-control[multiple]:focus, .bg-yellow-800.text-auto select.form-control[multiple]:focus:hover, .bg-yellow-800.text-auto select.form-control[size]:focus, .bg-yellow-800.text-auto select.form-control[size]:focus:hover, .bg-yellow-900.text-auto select.form-control[multiple]:focus, .bg-yellow-900.text-auto select.form-control[multiple]:focus:hover, .bg-yellow-900.text-auto select.form-control[size]:focus, .bg-yellow-900.text-auto select.form-control[size]:focus:hover, .bg-yellow-A100.text-auto select.form-control[multiple]:focus, .bg-yellow-A100.text-auto select.form-control[multiple]:focus:hover, .bg-yellow-A100.text-auto select.form-control[size]:focus, .bg-yellow-A100.text-auto select.form-control[size]:focus:hover, .bg-yellow-A200.text-auto select.form-control[multiple]:focus, .bg-yellow-A200.text-auto select.form-control[multiple]:focus:hover, .bg-yellow-A200.text-auto select.form-control[size]:focus, .bg-yellow-A200.text-auto select.form-control[size]:focus:hover, .bg-yellow-A400.text-auto select.form-control[multiple]:focus, .bg-yellow-A400.text-auto select.form-control[multiple]:focus:hover, .bg-yellow-A400.text-auto select.form-control[size]:focus, .bg-yellow-A400.text-auto select.form-control[size]:focus:hover, .bg-yellow-A700.text-auto select.form-control[multiple]:focus, .bg-yellow-A700.text-auto select.form-control[multiple]:focus:hover, .bg-yellow-A700.text-auto select.form-control[size]:focus, .bg-yellow-A700.text-auto select.form-control[size]:focus:hover, .bg-amber-50.text-auto select.form-control[multiple]:focus, .bg-amber-50.text-auto select.form-control[multiple]:focus:hover, .bg-amber-50.text-auto select.form-control[size]:focus, .bg-amber-50.text-auto select.form-control[size]:focus:hover, .bg-amber-100.text-auto select.form-control[multiple]:focus, .bg-amber-100.text-auto select.form-control[multiple]:focus:hover, .bg-amber-100.text-auto select.form-control[size]:focus, .bg-amber-100.text-auto select.form-control[size]:focus:hover, .bg-amber-200.text-auto select.form-control[multiple]:focus, .bg-amber-200.text-auto select.form-control[multiple]:focus:hover, .bg-amber-200.text-auto select.form-control[size]:focus, .bg-amber-200.text-auto select.form-control[size]:focus:hover, .bg-amber-300.text-auto select.form-control[multiple]:focus, .bg-amber-300.text-auto select.form-control[multiple]:focus:hover, .bg-amber-300.text-auto select.form-control[size]:focus, .bg-amber-300.text-auto select.form-control[size]:focus:hover, .bg-amber-400.text-auto select.form-control[multiple]:focus, .bg-amber-400.text-auto select.form-control[multiple]:focus:hover, .bg-amber-400.text-auto select.form-control[size]:focus, .bg-amber-400.text-auto select.form-control[size]:focus:hover, .bg-amber-500.text-auto select.form-control[multiple]:focus, .bg-amber-500.text-auto select.form-control[multiple]:focus:hover, .bg-amber-500.text-auto select.form-control[size]:focus, .bg-amber-500.text-auto select.form-control[size]:focus:hover, .bg-amber.text-auto select.form-control[multiple]:focus, .bg-amber.text-auto select.form-control[multiple]:focus:hover, .bg-amber.text-auto select.form-control[size]:focus, .bg-amber.text-auto select.form-control[size]:focus:hover, .bg-amber-600.text-auto select.form-control[multiple]:focus, .bg-amber-600.text-auto select.form-control[multiple]:focus:hover, .bg-amber-600.text-auto select.form-control[size]:focus, .bg-amber-600.text-auto select.form-control[size]:focus:hover, .bg-amber-700.text-auto select.form-control[multiple]:focus, .bg-amber-700.text-auto select.form-control[multiple]:focus:hover, .bg-amber-700.text-auto select.form-control[size]:focus, .bg-amber-700.text-auto select.form-control[size]:focus:hover, .bg-amber-800.text-auto select.form-control[multiple]:focus, .bg-amber-800.text-auto select.form-control[multiple]:focus:hover, .bg-amber-800.text-auto select.form-control[size]:focus, .bg-amber-800.text-auto select.form-control[size]:focus:hover, .bg-amber-900.text-auto select.form-control[multiple]:focus, .bg-amber-900.text-auto select.form-control[multiple]:focus:hover, .bg-amber-900.text-auto select.form-control[size]:focus, .bg-amber-900.text-auto select.form-control[size]:focus:hover, .bg-amber-A100.text-auto select.form-control[multiple]:focus, .bg-amber-A100.text-auto select.form-control[multiple]:focus:hover, .bg-amber-A100.text-auto select.form-control[size]:focus, .bg-amber-A100.text-auto select.form-control[size]:focus:hover, .bg-amber-A200.text-auto select.form-control[multiple]:focus, .bg-amber-A200.text-auto select.form-control[multiple]:focus:hover, .bg-amber-A200.text-auto select.form-control[size]:focus, .bg-amber-A200.text-auto select.form-control[size]:focus:hover, .bg-amber-A400.text-auto select.form-control[multiple]:focus, .bg-amber-A400.text-auto select.form-control[multiple]:focus:hover, .bg-amber-A400.text-auto select.form-control[size]:focus, .bg-amber-A400.text-auto select.form-control[size]:focus:hover, .bg-amber-A700.text-auto select.form-control[multiple]:focus, .bg-amber-A700.text-auto select.form-control[multiple]:focus:hover, .bg-amber-A700.text-auto select.form-control[size]:focus, .bg-amber-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-deep-orange-50.text-auto select.form-control[multiple]:focus, .bg-deep-orange-50.text-auto select.form-control[multiple]:focus:hover, .bg-deep-orange-50.text-auto select.form-control[size]:focus, .bg-deep-orange-50.text-auto select.form-control[size]:focus:hover, .bg-deep-orange-100.text-auto select.form-control[multiple]:focus, .bg-deep-orange-100.text-auto select.form-control[multiple]:focus:hover, .bg-deep-orange-100.text-auto select.form-control[size]:focus, .bg-deep-orange-100.text-auto select.form-control[size]:focus:hover, .bg-deep-orange-200.text-auto select.form-control[multiple]:focus, .bg-deep-orange-200.text-auto select.form-control[multiple]:focus:hover, .bg-deep-orange-200.text-auto select.form-control[size]:focus, .bg-deep-orange-200.text-auto select.form-control[size]:focus:hover, .bg-deep-orange-300.text-auto select.form-control[multiple]:focus, .bg-deep-orange-300.text-auto select.form-control[multiple]:focus:hover, .bg-deep-orange-300.text-auto select.form-control[size]:focus, .bg-deep-orange-300.text-auto select.form-control[size]:focus:hover, .bg-deep-orange-400.text-auto select.form-control[multiple]:focus, .bg-deep-orange-400.text-auto select.form-control[multiple]:focus:hover, .bg-deep-orange-400.text-auto select.form-control[size]:focus, .bg-deep-orange-400.text-auto select.form-control[size]:focus:hover, .bg-deep-orange-A100.text-auto select.form-control[multiple]:focus, .bg-deep-orange-A100.text-auto select.form-control[multiple]:focus:hover, .bg-deep-orange-A100.text-auto select.form-control[size]:focus, .bg-deep-orange-A100.text-auto select.form-control[size]:focus:hover, .bg-deep-orange-A200.text-auto select.form-control[multiple]:focus, .bg-deep-orange-A200.text-auto select.form-control[multiple]:focus:hover, .bg-deep-orange-A200.text-auto select.form-control[size]:focus, .bg-deep-orange-A200.text-auto select.form-control[size]:focus:hover, .bg-brown-50.text-auto select.form-control[multiple]:focus, .bg-brown-50.text-auto select.form-control[multiple]:focus:hover, .bg-brown-50.text-auto select.form-control[size]:focus, .bg-brown-50.text-auto select.form-control[size]:focus:hover, .bg-brown-100.text-auto select.form-control[multiple]:focus, .bg-brown-100.text-auto select.form-control[multiple]:focus:hover, .bg-brown-100.text-auto select.form-control[size]:focus, .bg-brown-100.text-auto select.form-control[size]:focus:hover, .bg-brown-200.text-auto select.form-control[multiple]:focus, .bg-brown-200.text-auto select.form-control[multiple]:focus:hover, .bg-brown-200.text-auto select.form-control[size]:focus, .bg-brown-200.text-auto select.form-control[size]:focus:hover, .bg-brown-A100.text-auto select.form-control[multiple]:focus, .bg-brown-A100.text-auto select.form-control[multiple]:focus:hover, .bg-brown-A100.text-auto select.form-control[size]:focus, .bg-brown-A100.text-auto select.form-control[size]:focus:hover, .bg-brown-A200.text-auto select.form-control[multiple]:focus, .bg-brown-A200.text-auto select.form-control[multiple]:focus:hover, .bg-brown-A200.text-auto select.form-control[size]:focus, .bg-brown-A200.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-blue-grey-50.text-auto select.form-control[multiple]:focus, .bg-blue-grey-50.text-auto select.form-control[multiple]:focus:hover, .bg-blue-grey-50.text-auto select.form-control[size]:focus, .bg-blue-grey-50.text-auto select.form-control[size]:focus:hover, .bg-blue-grey-100.text-auto select.form-control[multiple]:focus, .bg-blue-grey-100.text-auto select.form-control[multiple]:focus:hover, .bg-blue-grey-100.text-auto select.form-control[size]:focus, .bg-blue-grey-100.text-auto select.form-control[size]:focus:hover, .bg-blue-grey-200.text-auto select.form-control[multiple]:focus, .bg-blue-grey-200.text-auto select.form-control[multiple]:focus:hover, .bg-blue-grey-200.text-auto select.form-control[size]:focus, .bg-blue-grey-200.text-auto select.form-control[size]:focus:hover, .bg-blue-grey-300.text-auto select.form-control[multiple]:focus, .bg-blue-grey-300.text-auto select.form-control[multiple]:focus:hover, .bg-blue-grey-300.text-auto select.form-control[size]:focus, .bg-blue-grey-300.text-auto select.form-control[size]:focus:hover, .bg-blue-grey-A100.text-auto select.form-control[multiple]:focus, .bg-blue-grey-A100.text-auto select.form-control[multiple]:focus:hover, .bg-blue-grey-A100.text-auto select.form-control[size]:focus, .bg-blue-grey-A100.text-auto select.form-control[size]:focus:hover, .bg-blue-grey-A200.text-auto select.form-control[multiple]:focus, .bg-blue-grey-A200.text-auto select.form-control[multiple]:focus:hover, .bg-blue-grey-A200.text-auto select.form-control[size]:focus, .bg-blue-grey-A200.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-pink-50.text-auto .form-group > label, .bg-pink-100.text-auto .form-group > label, .bg-pink-200.text-auto .form-group > label, .bg-pink-300.text-auto .form-group > label, .bg-pink-A100.text-auto .form-group > label, .bg-purple-50.text-auto .form-group > label, .bg-purple-100.text-auto .form-group > label, .bg-purple-200.text-auto .form-group > label, .bg-purple-A100.text-auto .form-group > label, .bg-deep-purple-50.text-auto .form-group > label, .bg-deep-purple-100.text-auto .form-group > label, .bg-deep-purple-200.text-auto .form-group > label, .bg-deep-purple-A100.text-auto .form-group > label, .bg-indigo-50.text-auto .form-group > label, .bg-indigo-100.text-auto .form-group > label, .bg-indigo-200.text-auto .form-group > label, .bg-indigo-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-light-blue-50.text-auto .form-group > label, .bg-light-blue-100.text-auto .form-group > label, .bg-light-blue-200.text-auto .form-group > label, .bg-light-blue-300.text-auto .form-group > label, .bg-light-blue-400.text-auto .form-group > label, .bg-light-blue-500.text-auto .form-group > label, .bg-light-blue.text-auto .form-group > label, .bg-light-blue-600.text-auto .form-group > label, .bg-light-blue-A100.text-auto .form-group > label, .bg-light-blue-A200.text-auto .form-group > label, .bg-light-blue-A400.text-auto .form-group > label, .bg-cyan-50.text-auto .form-group > label, .bg-cyan-100.text-auto .form-group > label, .bg-cyan-200.text-auto .form-group > label, .bg-cyan-300.text-auto .form-group > label, .bg-cyan-400.text-auto .form-group > label, .bg-cyan-500.text-auto .form-group > label, .bg-cyan.text-auto .form-group > label, .bg-cyan-600.text-auto .form-group > label, .bg-cyan-A100.text-auto .form-group > label, .bg-cyan-A200.text-auto .form-group > label, .bg-cyan-A400.text-auto .form-group > label, .bg-cyan-A700.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-light-green-50.text-auto .form-group > label, .bg-light-green-100.text-auto .form-group > label, .bg-light-green-200.text-auto .form-group > label, .bg-light-green-300.text-auto .form-group > label, .bg-light-green-400.text-auto .form-group > label, .bg-light-green-500.text-auto .form-group > label, .bg-light-green.text-auto .form-group > label, .bg-light-green-600.text-auto .form-group > label, .bg-light-green-A100.text-auto .form-group > label, .bg-light-green-A200.text-auto .form-group > label, .bg-light-green-A400.text-auto .form-group > label, .bg-light-green-A700.text-auto .form-group > label, .bg-lime-50.text-auto .form-group > label, .bg-lime-100.text-auto .form-group > label, .bg-lime-200.text-auto .form-group > label, .bg-lime-300.text-auto .form-group > label, .bg-lime-400.text-auto .form-group > label, .bg-lime-500.text-auto .form-group > label, .bg-lime.text-auto .form-group > label, .bg-lime-600.text-auto .form-group > label, .bg-lime-700.text-auto .form-group > label, .bg-lime-800.text-auto .form-group > label, .bg-lime-A100.text-auto .form-group > label, .bg-lime-A200.text-auto .form-group > label, .bg-lime-A400.text-auto .form-group > label, .bg-lime-A700.text-auto .form-group > label, .bg-yellow-50.text-auto .form-group > label, .bg-yellow-100.text-auto .form-group > label, .bg-yellow-200.text-auto .form-group > label, .bg-yellow-300.text-auto .form-group > label, .bg-yellow-400.text-auto .form-group > label, .bg-yellow-500.text-auto .form-group > label, .bg-yellow.text-auto .form-group > label, .bg-yellow-600.text-auto .form-group > label, .bg-yellow-700.text-auto .form-group > label, .bg-yellow-800.text-auto .form-group > label, .bg-yellow-900.text-auto .form-group > label, .bg-yellow-A100.text-auto .form-group > label, .bg-yellow-A200.text-auto .form-group > label, .bg-yellow-A400.text-auto .form-group > label, .bg-yellow-A700.text-auto .form-group > label, .bg-amber-50.text-auto .form-group > label, .bg-amber-100.text-auto .form-group > label, .bg-amber-200.text-auto .form-group > label, .bg-amber-300.text-auto .form-group > label, .bg-amber-400.text-auto .form-group > label, .bg-amber-500.text-auto .form-group > label, .bg-amber.text-auto .form-group > label, .bg-amber-600.text-auto .form-group > label, .bg-amber-700.text-auto .form-group > label, .bg-amber-800.text-auto .form-group > label, .bg-amber-900.text-auto .form-group > label, .bg-amber-A100.text-auto .form-group > label, .bg-amber-A200.text-auto .form-group > label, .bg-amber-A400.text-auto .form-group > label, .bg-amber-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-deep-orange-50.text-auto .form-group > label, .bg-deep-orange-100.text-auto .form-group > label, .bg-deep-orange-200.text-auto .form-group > label, .bg-deep-orange-300.text-auto .form-group > label, .bg-deep-orange-400.text-auto .form-group > label, .bg-deep-orange-A100.text-auto .form-group > label, .bg-deep-orange-A200.text-auto .form-group > label, .bg-brown-50.text-auto .form-group > label, .bg-brown-100.text-auto .form-group > label, .bg-brown-200.text-auto .form-group > label, .bg-brown-A100.text-auto .form-group > label, .bg-brown-A200.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-blue-grey-50.text-auto .form-group > label, .bg-blue-grey-100.text-auto .form-group > label, .bg-blue-grey-200.text-auto .form-group > label, .bg-blue-grey-300.text-auto .form-group > label, .bg-blue-grey-A100.text-auto .form-group > label, .bg-blue-grey-A200.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-pink-50.text-auto .nav .subheader, .bg-pink-100.text-auto .nav .subheader, .bg-pink-200.text-auto .nav .subheader, .bg-pink-300.text-auto .nav .subheader, .bg-pink-A100.text-auto .nav .subheader, .bg-purple-50.text-auto .nav .subheader, .bg-purple-100.text-auto .nav .subheader, .bg-purple-200.text-auto .nav .subheader, .bg-purple-A100.text-auto .nav .subheader, .bg-deep-purple-50.text-auto .nav .subheader, .bg-deep-purple-100.text-auto .nav .subheader, .bg-deep-purple-200.text-auto .nav .subheader, .bg-deep-purple-A100.text-auto .nav .subheader, .bg-indigo-50.text-auto .nav .subheader, .bg-indigo-100.text-auto .nav .subheader, .bg-indigo-200.text-auto .nav .subheader, .bg-indigo-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-light-blue-50.text-auto .nav .subheader, .bg-light-blue-100.text-auto .nav .subheader, .bg-light-blue-200.text-auto .nav .subheader, .bg-light-blue-300.text-auto .nav .subheader, .bg-light-blue-400.text-auto .nav .subheader, .bg-light-blue-500.text-auto .nav .subheader, .bg-light-blue.text-auto .nav .subheader, .bg-light-blue-600.text-auto .nav .subheader, .bg-light-blue-A100.text-auto .nav .subheader, .bg-light-blue-A200.text-auto .nav .subheader, .bg-light-blue-A400.text-auto .nav .subheader, .bg-cyan-50.text-auto .nav .subheader, .bg-cyan-100.text-auto .nav .subheader, .bg-cyan-200.text-auto .nav .subheader, .bg-cyan-300.text-auto .nav .subheader, .bg-cyan-400.text-auto .nav .subheader, .bg-cyan-500.text-auto .nav .subheader, .bg-cyan.text-auto .nav .subheader, .bg-cyan-600.text-auto .nav .subheader, .bg-cyan-A100.text-auto .nav .subheader, .bg-cyan-A200.text-auto .nav .subheader, .bg-cyan-A400.text-auto .nav .subheader, .bg-cyan-A700.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-light-green-50.text-auto .nav .subheader, .bg-light-green-100.text-auto .nav .subheader, .bg-light-green-200.text-auto .nav .subheader, .bg-light-green-300.text-auto .nav .subheader, .bg-light-green-400.text-auto .nav .subheader, .bg-light-green-500.text-auto .nav .subheader, .bg-light-green.text-auto .nav .subheader, .bg-light-green-600.text-auto .nav .subheader, .bg-light-green-A100.text-auto .nav .subheader, .bg-light-green-A200.text-auto .nav .subheader, .bg-light-green-A400.text-auto .nav .subheader, .bg-light-green-A700.text-auto .nav .subheader, .bg-lime-50.text-auto .nav .subheader, .bg-lime-100.text-auto .nav .subheader, .bg-lime-200.text-auto .nav .subheader, .bg-lime-300.text-auto .nav .subheader, .bg-lime-400.text-auto .nav .subheader, .bg-lime-500.text-auto .nav .subheader, .bg-lime.text-auto .nav .subheader, .bg-lime-600.text-auto .nav .subheader, .bg-lime-700.text-auto .nav .subheader, .bg-lime-800.text-auto .nav .subheader, .bg-lime-A100.text-auto .nav .subheader, .bg-lime-A200.text-auto .nav .subheader, .bg-lime-A400.text-auto .nav .subheader, .bg-lime-A700.text-auto .nav .subheader, .bg-yellow-50.text-auto .nav .subheader, .bg-yellow-100.text-auto .nav .subheader, .bg-yellow-200.text-auto .nav .subheader, .bg-yellow-300.text-auto .nav .subheader, .bg-yellow-400.text-auto .nav .subheader, .bg-yellow-500.text-auto .nav .subheader, .bg-yellow.text-auto .nav .subheader, .bg-yellow-600.text-auto .nav .subheader, .bg-yellow-700.text-auto .nav .subheader, .bg-yellow-800.text-auto .nav .subheader, .bg-yellow-900.text-auto .nav .subheader, .bg-yellow-A100.text-auto .nav .subheader, .bg-yellow-A200.text-auto .nav .subheader, .bg-yellow-A400.text-auto .nav .subheader, .bg-yellow-A700.text-auto .nav .subheader, .bg-amber-50.text-auto .nav .subheader, .bg-amber-100.text-auto .nav .subheader, .bg-amber-200.text-auto .nav .subheader, .bg-amber-300.text-auto .nav .subheader, .bg-amber-400.text-auto .nav .subheader, .bg-amber-500.text-auto .nav .subheader, .bg-amber.text-auto .nav .subheader, .bg-amber-600.text-auto .nav .subheader, .bg-amber-700.text-auto .nav .subheader, .bg-amber-800.text-auto .nav .subheader, .bg-amber-900.text-auto .nav .subheader, .bg-amber-A100.text-auto .nav .subheader, .bg-amber-A200.text-auto .nav .subheader, .bg-amber-A400.text-auto .nav .subheader, .bg-amber-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-deep-orange-50.text-auto .nav .subheader, .bg-deep-orange-100.text-auto .nav .subheader, .bg-deep-orange-200.text-auto .nav .subheader, .bg-deep-orange-300.text-auto .nav .subheader, .bg-deep-orange-400.text-auto .nav .subheader, .bg-deep-orange-A100.text-auto .nav .subheader, .bg-deep-orange-A200.text-auto .nav .subheader, .bg-brown-50.text-auto .nav .subheader, .bg-brown-100.text-auto .nav .subheader, .bg-brown-200.text-auto .nav .subheader, .bg-brown-A100.text-auto .nav .subheader, .bg-brown-A200.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-blue-grey-50.text-auto .nav .subheader, .bg-blue-grey-100.text-auto .nav .subheader, .bg-blue-grey-200.text-auto .nav .subheader, .bg-blue-grey-300.text-auto .nav .subheader, .bg-blue-grey-A100.text-auto .nav .subheader, .bg-blue-grey-A200.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 .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-pink-50.text-auto .nav .nav-link, .bg-pink-100.text-auto .nav .nav-link, .bg-pink-200.text-auto .nav .nav-link, .bg-pink-300.text-auto .nav .nav-link, .bg-pink-A100.text-auto .nav .nav-link, .bg-purple-50.text-auto .nav .nav-link, .bg-purple-100.text-auto .nav .nav-link, .bg-purple-200.text-auto .nav .nav-link, .bg-purple-A100.text-auto .nav .nav-link, .bg-deep-purple-50.text-auto .nav .nav-link, .bg-deep-purple-100.text-auto .nav .nav-link, .bg-deep-purple-200.text-auto .nav .nav-link, .bg-deep-purple-A100.text-auto .nav .nav-link, .bg-indigo-50.text-auto .nav .nav-link, .bg-indigo-100.text-auto .nav .nav-link, .bg-indigo-200.text-auto .nav .nav-link, .bg-indigo-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-light-blue-50.text-auto .nav .nav-link, .bg-light-blue-100.text-auto .nav .nav-link, .bg-light-blue-200.text-auto .nav .nav-link, .bg-light-blue-300.text-auto .nav .nav-link, .bg-light-blue-400.text-auto .nav .nav-link, .bg-light-blue-500.text-auto .nav .nav-link, .bg-light-blue.text-auto .nav .nav-link, .bg-light-blue-600.text-auto .nav .nav-link, .bg-light-blue-A100.text-auto .nav .nav-link, .bg-light-blue-A200.text-auto .nav .nav-link, .bg-light-blue-A400.text-auto .nav .nav-link, .bg-cyan-50.text-auto .nav .nav-link, .bg-cyan-100.text-auto .nav .nav-link, .bg-cyan-200.text-auto .nav .nav-link, .bg-cyan-300.text-auto .nav .nav-link, .bg-cyan-400.text-auto .nav .nav-link, .bg-cyan-500.text-auto .nav .nav-link, .bg-cyan.text-auto .nav .nav-link, .bg-cyan-600.text-auto .nav .nav-link, .bg-cyan-A100.text-auto .nav .nav-link, .bg-cyan-A200.text-auto .nav .nav-link, .bg-cyan-A400.text-auto .nav .nav-link, .bg-cyan-A700.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-light-green-50.text-auto .nav .nav-link, .bg-light-green-100.text-auto .nav .nav-link, .bg-light-green-200.text-auto .nav .nav-link, .bg-light-green-300.text-auto .nav .nav-link, .bg-light-green-400.text-auto .nav .nav-link, .bg-light-green-500.text-auto .nav .nav-link, .bg-light-green.text-auto .nav .nav-link, .bg-light-green-600.text-auto .nav .nav-link, .bg-light-green-A100.text-auto .nav .nav-link, .bg-light-green-A200.text-auto .nav .nav-link, .bg-light-green-A400.text-auto .nav .nav-link, .bg-light-green-A700.text-auto .nav .nav-link, .bg-lime-50.text-auto .nav .nav-link, .bg-lime-100.text-auto .nav .nav-link, .bg-lime-200.text-auto .nav .nav-link, .bg-lime-300.text-auto .nav .nav-link, .bg-lime-400.text-auto .nav .nav-link, .bg-lime-500.text-auto .nav .nav-link, .bg-lime.text-auto .nav .nav-link, .bg-lime-600.text-auto .nav .nav-link, .bg-lime-700.text-auto .nav .nav-link, .bg-lime-800.text-auto .nav .nav-link, .bg-lime-A100.text-auto .nav .nav-link, .bg-lime-A200.text-auto .nav .nav-link, .bg-lime-A400.text-auto .nav .nav-link, .bg-lime-A700.text-auto .nav .nav-link, .bg-yellow-50.text-auto .nav .nav-link, .bg-yellow-100.text-auto .nav .nav-link, .bg-yellow-200.text-auto .nav .nav-link, .bg-yellow-300.text-auto .nav .nav-link, .bg-yellow-400.text-auto .nav .nav-link, .bg-yellow-500.text-auto .nav .nav-link, .bg-yellow.text-auto .nav .nav-link, .bg-yellow-600.text-auto .nav .nav-link, .bg-yellow-700.text-auto .nav .nav-link, .bg-yellow-800.text-auto .nav .nav-link, .bg-yellow-900.text-auto .nav .nav-link, .bg-yellow-A100.text-auto .nav .nav-link, .bg-yellow-A200.text-auto .nav .nav-link, .bg-yellow-A400.text-auto .nav .nav-link, .bg-yellow-A700.text-auto .nav .nav-link, .bg-amber-50.text-auto .nav .nav-link, .bg-amber-100.text-auto .nav .nav-link, .bg-amber-200.text-auto .nav .nav-link, .bg-amber-300.text-auto .nav .nav-link, .bg-amber-400.text-auto .nav .nav-link, .bg-amber-500.text-auto .nav .nav-link, .bg-amber.text-auto .nav .nav-link, .bg-amber-600.text-auto .nav .nav-link, .bg-amber-700.text-auto .nav .nav-link, .bg-amber-800.text-auto .nav .nav-link, .bg-amber-900.text-auto .nav .nav-link, .bg-amber-A100.text-auto .nav .nav-link, .bg-amber-A200.text-auto .nav .nav-link, .bg-amber-A400.text-auto .nav .nav-link, .bg-amber-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-deep-orange-50.text-auto .nav .nav-link, .bg-deep-orange-100.text-auto .nav .nav-link, .bg-deep-orange-200.text-auto .nav .nav-link, .bg-deep-orange-300.text-auto .nav .nav-link, .bg-deep-orange-400.text-auto .nav .nav-link, .bg-deep-orange-A100.text-auto .nav .nav-link, .bg-deep-orange-A200.text-auto .nav .nav-link, .bg-brown-50.text-auto .nav .nav-link, .bg-brown-100.text-auto .nav .nav-link, .bg-brown-200.text-auto .nav .nav-link, .bg-brown-A100.text-auto .nav .nav-link, .bg-brown-A200.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-blue-grey-50.text-auto .nav .nav-link, .bg-blue-grey-100.text-auto .nav .nav-link, .bg-blue-grey-200.text-auto .nav .nav-link, .bg-blue-grey-300.text-auto .nav .nav-link, .bg-blue-grey-A100.text-auto .nav .nav-link, .bg-blue-grey-A200.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-pink-50.text-auto .nav .nav-link:hover, .bg-pink-100.text-auto .nav .nav-link:hover, .bg-pink-200.text-auto .nav .nav-link:hover, .bg-pink-300.text-auto .nav .nav-link:hover, .bg-pink-A100.text-auto .nav .nav-link:hover, .bg-purple-50.text-auto .nav .nav-link:hover, .bg-purple-100.text-auto .nav .nav-link:hover, .bg-purple-200.text-auto .nav .nav-link:hover, .bg-purple-A100.text-auto .nav .nav-link:hover, .bg-deep-purple-50.text-auto .nav .nav-link:hover, .bg-deep-purple-100.text-auto .nav .nav-link:hover, .bg-deep-purple-200.text-auto .nav .nav-link:hover, .bg-deep-purple-A100.text-auto .nav .nav-link:hover, .bg-indigo-50.text-auto .nav .nav-link:hover, .bg-indigo-100.text-auto .nav .nav-link:hover, .bg-indigo-200.text-auto .nav .nav-link:hover, .bg-indigo-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-light-blue-50.text-auto .nav .nav-link:hover, .bg-light-blue-100.text-auto .nav .nav-link:hover, .bg-light-blue-200.text-auto .nav .nav-link:hover, .bg-light-blue-300.text-auto .nav .nav-link:hover, .bg-light-blue-400.text-auto .nav .nav-link:hover, .bg-light-blue-500.text-auto .nav .nav-link:hover, .bg-light-blue.text-auto .nav .nav-link:hover, .bg-light-blue-600.text-auto .nav .nav-link:hover, .bg-light-blue-A100.text-auto .nav .nav-link:hover, .bg-light-blue-A200.text-auto .nav .nav-link:hover, .bg-light-blue-A400.text-auto .nav .nav-link:hover, .bg-cyan-50.text-auto .nav .nav-link:hover, .bg-cyan-100.text-auto .nav .nav-link:hover, .bg-cyan-200.text-auto .nav .nav-link:hover, .bg-cyan-300.text-auto .nav .nav-link:hover, .bg-cyan-400.text-auto .nav .nav-link:hover, .bg-cyan-500.text-auto .nav .nav-link:hover, .bg-cyan.text-auto .nav .nav-link:hover, .bg-cyan-600.text-auto .nav .nav-link:hover, .bg-cyan-A100.text-auto .nav .nav-link:hover, .bg-cyan-A200.text-auto .nav .nav-link:hover, .bg-cyan-A400.text-auto .nav .nav-link:hover, .bg-cyan-A700.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-light-green-50.text-auto .nav .nav-link:hover, .bg-light-green-100.text-auto .nav .nav-link:hover, .bg-light-green-200.text-auto .nav .nav-link:hover, .bg-light-green-300.text-auto .nav .nav-link:hover, .bg-light-green-400.text-auto .nav .nav-link:hover, .bg-light-green-500.text-auto .nav .nav-link:hover, .bg-light-green.text-auto .nav .nav-link:hover, .bg-light-green-600.text-auto .nav .nav-link:hover, .bg-light-green-A100.text-auto .nav .nav-link:hover, .bg-light-green-A200.text-auto .nav .nav-link:hover, .bg-light-green-A400.text-auto .nav .nav-link:hover, .bg-light-green-A700.text-auto .nav .nav-link:hover, .bg-lime-50.text-auto .nav .nav-link:hover, .bg-lime-100.text-auto .nav .nav-link:hover, .bg-lime-200.text-auto .nav .nav-link:hover, .bg-lime-300.text-auto .nav .nav-link:hover, .bg-lime-400.text-auto .nav .nav-link:hover, .bg-lime-500.text-auto .nav .nav-link:hover, .bg-lime.text-auto .nav .nav-link:hover, .bg-lime-600.text-auto .nav .nav-link:hover, .bg-lime-700.text-auto .nav .nav-link:hover, .bg-lime-800.text-auto .nav .nav-link:hover, .bg-lime-A100.text-auto .nav .nav-link:hover, .bg-lime-A200.text-auto .nav .nav-link:hover, .bg-lime-A400.text-auto .nav .nav-link:hover, .bg-lime-A700.text-auto .nav .nav-link:hover, .bg-yellow-50.text-auto .nav .nav-link:hover, .bg-yellow-100.text-auto .nav .nav-link:hover, .bg-yellow-200.text-auto .nav .nav-link:hover, .bg-yellow-300.text-auto .nav .nav-link:hover, .bg-yellow-400.text-auto .nav .nav-link:hover, .bg-yellow-500.text-auto .nav .nav-link:hover, .bg-yellow.text-auto .nav .nav-link:hover, .bg-yellow-600.text-auto .nav .nav-link:hover, .bg-yellow-700.text-auto .nav .nav-link:hover, .bg-yellow-800.text-auto .nav .nav-link:hover, .bg-yellow-900.text-auto .nav .nav-link:hover, .bg-yellow-A100.text-auto .nav .nav-link:hover, .bg-yellow-A200.text-auto .nav .nav-link:hover, .bg-yellow-A400.text-auto .nav .nav-link:hover, .bg-yellow-A700.text-auto .nav .nav-link:hover, .bg-amber-50.text-auto .nav .nav-link:hover, .bg-amber-100.text-auto .nav .nav-link:hover, .bg-amber-200.text-auto .nav .nav-link:hover, .bg-amber-300.text-auto .nav .nav-link:hover, .bg-amber-400.text-auto .nav .nav-link:hover, .bg-amber-500.text-auto .nav .nav-link:hover, .bg-amber.text-auto .nav .nav-link:hover, .bg-amber-600.text-auto .nav .nav-link:hover, .bg-amber-700.text-auto .nav .nav-link:hover, .bg-amber-800.text-auto .nav .nav-link:hover, .bg-amber-900.text-auto .nav .nav-link:hover, .bg-amber-A100.text-auto .nav .nav-link:hover, .bg-amber-A200.text-auto .nav .nav-link:hover, .bg-amber-A400.text-auto .nav .nav-link:hover, .bg-amber-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-deep-orange-50.text-auto .nav .nav-link:hover, .bg-deep-orange-100.text-auto .nav .nav-link:hover, .bg-deep-orange-200.text-auto .nav .nav-link:hover, .bg-deep-orange-300.text-auto .nav .nav-link:hover, .bg-deep-orange-400.text-auto .nav .nav-link:hover, .bg-deep-orange-A100.text-auto .nav .nav-link:hover, .bg-deep-orange-A200.text-auto .nav .nav-link:hover, .bg-brown-50.text-auto .nav .nav-link:hover, .bg-brown-100.text-auto .nav .nav-link:hover, .bg-brown-200.text-auto .nav .nav-link:hover, .bg-brown-A100.text-auto .nav .nav-link:hover, .bg-brown-A200.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-blue-grey-50.text-auto .nav .nav-link:hover, .bg-blue-grey-100.text-auto .nav .nav-link:hover, .bg-blue-grey-200.text-auto .nav .nav-link:hover, .bg-blue-grey-300.text-auto .nav .nav-link:hover, .bg-blue-grey-A100.text-auto .nav .nav-link:hover, .bg-blue-grey-A200.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-pink-50.text-auto .nav .nav-link:hover > i, .bg-pink-100.text-auto .nav .nav-link:hover > i, .bg-pink-200.text-auto .nav .nav-link:hover > i, .bg-pink-300.text-auto .nav .nav-link:hover > i, .bg-pink-A100.text-auto .nav .nav-link:hover > i, .bg-purple-50.text-auto .nav .nav-link:hover > i, .bg-purple-100.text-auto .nav .nav-link:hover > i, .bg-purple-200.text-auto .nav .nav-link:hover > i, .bg-purple-A100.text-auto .nav .nav-link:hover > i, .bg-deep-purple-50.text-auto .nav .nav-link:hover > i, .bg-deep-purple-100.text-auto .nav .nav-link:hover > i, .bg-deep-purple-200.text-auto .nav .nav-link:hover > i, .bg-deep-purple-A100.text-auto .nav .nav-link:hover > i, .bg-indigo-50.text-auto .nav .nav-link:hover > i, .bg-indigo-100.text-auto .nav .nav-link:hover > i, .bg-indigo-200.text-auto .nav .nav-link:hover > i, .bg-indigo-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-light-blue-50.text-auto .nav .nav-link:hover > i, .bg-light-blue-100.text-auto .nav .nav-link:hover > i, .bg-light-blue-200.text-auto .nav .nav-link:hover > i, .bg-light-blue-300.text-auto .nav .nav-link:hover > i, .bg-light-blue-400.text-auto .nav .nav-link:hover > i, .bg-light-blue-500.text-auto .nav .nav-link:hover > i, .bg-light-blue.text-auto .nav .nav-link:hover > i, .bg-light-blue-600.text-auto .nav .nav-link:hover > i, .bg-light-blue-A100.text-auto .nav .nav-link:hover > i, .bg-light-blue-A200.text-auto .nav .nav-link:hover > i, .bg-light-blue-A400.text-auto .nav .nav-link:hover > i, .bg-cyan-50.text-auto .nav .nav-link:hover > i, .bg-cyan-100.text-auto .nav .nav-link:hover > i, .bg-cyan-200.text-auto .nav .nav-link:hover > i, .bg-cyan-300.text-auto .nav .nav-link:hover > i, .bg-cyan-400.text-auto .nav .nav-link:hover > i, .bg-cyan-500.text-auto .nav .nav-link:hover > i, .bg-cyan.text-auto .nav .nav-link:hover > i, .bg-cyan-600.text-auto .nav .nav-link:hover > i, .bg-cyan-A100.text-auto .nav .nav-link:hover > i, .bg-cyan-A200.text-auto .nav .nav-link:hover > i, .bg-cyan-A400.text-auto .nav .nav-link:hover > i, .bg-cyan-A700.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-light-green-50.text-auto .nav .nav-link:hover > i, .bg-light-green-100.text-auto .nav .nav-link:hover > i, .bg-light-green-200.text-auto .nav .nav-link:hover > i, .bg-light-green-300.text-auto .nav .nav-link:hover > i, .bg-light-green-400.text-auto .nav .nav-link:hover > i, .bg-light-green-500.text-auto .nav .nav-link:hover > i, .bg-light-green.text-auto .nav .nav-link:hover > i, .bg-light-green-600.text-auto .nav .nav-link:hover > i, .bg-light-green-A100.text-auto .nav .nav-link:hover > i, .bg-light-green-A200.text-auto .nav .nav-link:hover > i, .bg-light-green-A400.text-auto .nav .nav-link:hover > i, .bg-light-green-A700.text-auto .nav .nav-link:hover > i, .bg-lime-50.text-auto .nav .nav-link:hover > i, .bg-lime-100.text-auto .nav .nav-link:hover > i, .bg-lime-200.text-auto .nav .nav-link:hover > i, .bg-lime-300.text-auto .nav .nav-link:hover > i, .bg-lime-400.text-auto .nav .nav-link:hover > i, .bg-lime-500.text-auto .nav .nav-link:hover > i, .bg-lime.text-auto .nav .nav-link:hover > i, .bg-lime-600.text-auto .nav .nav-link:hover > i, .bg-lime-700.text-auto .nav .nav-link:hover > i, .bg-lime-800.text-auto .nav .nav-link:hover > i, .bg-lime-A100.text-auto .nav .nav-link:hover > i, .bg-lime-A200.text-auto .nav .nav-link:hover > i, .bg-lime-A400.text-auto .nav .nav-link:hover > i, .bg-lime-A700.text-auto .nav .nav-link:hover > i, .bg-yellow-50.text-auto .nav .nav-link:hover > i, .bg-yellow-100.text-auto .nav .nav-link:hover > i, .bg-yellow-200.text-auto .nav .nav-link:hover > i, .bg-yellow-300.text-auto .nav .nav-link:hover > i, .bg-yellow-400.text-auto .nav .nav-link:hover > i, .bg-yellow-500.text-auto .nav .nav-link:hover > i, .bg-yellow.text-auto .nav .nav-link:hover > i, .bg-yellow-600.text-auto .nav .nav-link:hover > i, .bg-yellow-700.text-auto .nav .nav-link:hover > i, .bg-yellow-800.text-auto .nav .nav-link:hover > i, .bg-yellow-900.text-auto .nav .nav-link:hover > i, .bg-yellow-A100.text-auto .nav .nav-link:hover > i, .bg-yellow-A200.text-auto .nav .nav-link:hover > i, .bg-yellow-A400.text-auto .nav .nav-link:hover > i, .bg-yellow-A700.text-auto .nav .nav-link:hover > i, .bg-amber-50.text-auto .nav .nav-link:hover > i, .bg-amber-100.text-auto .nav .nav-link:hover > i, .bg-amber-200.text-auto .nav .nav-link:hover > i, .bg-amber-300.text-auto .nav .nav-link:hover > i, .bg-amber-400.text-auto .nav .nav-link:hover > i, .bg-amber-500.text-auto .nav .nav-link:hover > i, .bg-amber.text-auto .nav .nav-link:hover > i, .bg-amber-600.text-auto .nav .nav-link:hover > i, .bg-amber-700.text-auto .nav .nav-link:hover > i, .bg-amber-800.text-auto .nav .nav-link:hover > i, .bg-amber-900.text-auto .nav .nav-link:hover > i, .bg-amber-A100.text-auto .nav .nav-link:hover > i, .bg-amber-A200.text-auto .nav .nav-link:hover > i, .bg-amber-A400.text-auto .nav .nav-link:hover > i, .bg-amber-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-deep-orange-50.text-auto .nav .nav-link:hover > i, .bg-deep-orange-100.text-auto .nav .nav-link:hover > i, .bg-deep-orange-200.text-auto .nav .nav-link:hover > i, .bg-deep-orange-300.text-auto .nav .nav-link:hover > i, .bg-deep-orange-400.text-auto .nav .nav-link:hover > i, .bg-deep-orange-A100.text-auto .nav .nav-link:hover > i, .bg-deep-orange-A200.text-auto .nav .nav-link:hover > i, .bg-brown-50.text-auto .nav .nav-link:hover > i, .bg-brown-100.text-auto .nav .nav-link:hover > i, .bg-brown-200.text-auto .nav .nav-link:hover > i, .bg-brown-A100.text-auto .nav .nav-link:hover > i, .bg-brown-A200.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-blue-grey-50.text-auto .nav .nav-link:hover > i, .bg-blue-grey-100.text-auto .nav .nav-link:hover > i, .bg-blue-grey-200.text-auto .nav .nav-link:hover > i, .bg-blue-grey-300.text-auto .nav .nav-link:hover > i, .bg-blue-grey-A100.text-auto .nav .nav-link:hover > i, .bg-blue-grey-A200.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-pink-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-pink-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-pink-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-pink-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-pink-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-pink-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-pink-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-pink-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-pink-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-pink-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-pink-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-pink-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-pink-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-pink-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-pink-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-pink-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-purple-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-purple-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-purple-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-purple-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-purple-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-purple-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-purple-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-purple-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-purple-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-purple-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-purple-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-purple-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-purple-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-purple-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-purple-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-purple-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-purple-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-purple-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-purple-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-indigo-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-indigo-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-indigo-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-indigo-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-indigo-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-indigo-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-indigo-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-indigo-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-indigo-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-indigo-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-indigo-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-indigo-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-indigo-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-light-blue-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-blue-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-blue-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-blue-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-blue-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-blue-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-blue.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-blue.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-blue.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-blue-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-blue-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-blue-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-blue-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-blue-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-blue-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-cyan-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-cyan-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-cyan-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-cyan-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-cyan-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-cyan-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-cyan-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-cyan-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-cyan-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-cyan-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-cyan-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-cyan-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-cyan-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-cyan-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-cyan-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-cyan-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-cyan-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-cyan-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-cyan.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-cyan.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-cyan.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-cyan-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-cyan-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-cyan-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-cyan-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-cyan-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-cyan-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-cyan-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-cyan-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-cyan-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-cyan-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-cyan-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-cyan-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-cyan-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-cyan-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-cyan-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-cyan-A700.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-light-green-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-green-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-green-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-green-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-green-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-green-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-green-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-green-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-green-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-green-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-green-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-green-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-green-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-green-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-green-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-green-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-green-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-green-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-green.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-green.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-green.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-green-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-green-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-green-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-green-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-green-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-green-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-green-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-green-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-green-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-green-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-green-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-green-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-light-green-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-light-green-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-light-green-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-light-green-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-lime-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-lime-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-lime-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-lime-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-lime-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-lime-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-lime-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-lime-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-lime-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-lime-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-lime-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-lime-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-lime-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-lime-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-lime-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-lime-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-lime-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-lime-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-lime.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-lime.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-lime.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-lime-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-lime-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-lime-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-lime-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-lime-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-lime-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-lime-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-lime-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-lime-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-lime-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-lime-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-lime-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-lime-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-lime-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-lime-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-lime-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-lime-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-lime-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-lime-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-lime-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-lime-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-lime-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-yellow-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-yellow-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-yellow-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-yellow-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-yellow-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-yellow-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-yellow-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-yellow-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-yellow-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-yellow-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-yellow-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-yellow-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-yellow-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-yellow-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-yellow-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-yellow-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-yellow-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-yellow-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-yellow.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-yellow.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-yellow.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-yellow-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-yellow-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-yellow-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-yellow-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-yellow-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-yellow-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-yellow-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-yellow-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-yellow-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-yellow-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-yellow-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-yellow-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-yellow-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-yellow-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-yellow-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-yellow-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-yellow-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-yellow-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-yellow-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-yellow-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-yellow-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-yellow-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-yellow-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-yellow-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-yellow-A700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-amber-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-amber-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-amber-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-amber-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-amber-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-amber-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-amber-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-amber-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-amber-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-amber-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-amber-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-amber-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-amber-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-amber-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-amber-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-amber-500.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-500.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-amber-500.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-500.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-amber-500.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-500.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-amber.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-amber.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-amber.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-amber-600.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-600.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-amber-600.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-600.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-amber-600.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-600.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-amber-700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-amber-700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-amber-700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-700.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-amber-800.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-800.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-amber-800.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-800.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-amber-800.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-800.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-amber-900.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-900.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-amber-900.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-900.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-amber-900.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-900.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-amber-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-amber-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-amber-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-amber-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-amber-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-amber-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-amber-A400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-A400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-amber-A400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-A400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-amber-A400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-A400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-amber-A700.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-A700.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-amber-A700.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-A700.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-amber-A700.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-amber-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-deep-orange-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-orange-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-orange-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-orange-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-orange-400.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-400.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-400.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-400.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-400.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-400.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-orange-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-deep-orange-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-deep-orange-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-deep-orange-A200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-brown-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-brown-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-brown-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-brown-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-brown-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-brown-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-brown-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-brown-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-brown-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-brown-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-brown-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-brown-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-brown-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-brown-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-brown-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-brown-A200.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-blue-grey-50.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-50.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-50.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-50.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-50.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-50.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-grey-100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-grey-200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-200.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-grey-300.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-300.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-300.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-300.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-300.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-300.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-grey-A100.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-A100.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-A100.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-A100.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-A100.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-A100.text-auto .form-check-label input[type=radio] ~ .radio-icon:before, .bg-blue-grey-A200.text-auto .custom-checkbox input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-A200.text-auto .custom-checkbox input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-A200.text-auto .custom-radio input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-A200.text-auto .custom-radio input[type=radio] ~ .radio-icon:before,
  .bg-blue-grey-A200.text-auto .form-check-label input[type=radio] ~ .custom-control-indicator:before,
  .bg-blue-grey-A200.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-pink-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-pink-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-pink-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-pink-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-pink-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-pink-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-pink-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-purple-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-purple-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-purple-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-purple-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-purple-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-purple-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-purple-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-purple-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-purple-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-purple-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-purple-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-purple-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-indigo-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-indigo-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-indigo-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-indigo-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-indigo-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-indigo-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-light-blue-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-blue-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-blue-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-blue-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-blue-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-blue-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-blue.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-blue-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-blue-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-blue-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-blue-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-blue-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-blue-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-cyan-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-cyan-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-cyan-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-cyan-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-cyan-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-cyan-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-cyan.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-cyan-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-cyan-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-cyan-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-cyan-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-cyan-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-cyan-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-cyan-A700.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-light-green-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-green-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-green-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-green-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-green-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-green-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-green.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-green-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-green-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-green-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-green-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-light-green-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-light-green-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-light-green-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-lime-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-lime-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-lime-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-lime-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-lime-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-lime-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-lime.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-lime-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-lime-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-lime-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-lime-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-lime-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-lime-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-lime-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-lime-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-lime-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-yellow-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-yellow-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-yellow-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-yellow-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-yellow-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-yellow-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-yellow.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-yellow-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-yellow-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-yellow-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-yellow-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-yellow-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-yellow-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-yellow-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-yellow-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-yellow-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-yellow-A700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-amber-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-amber-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-amber-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-amber-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-amber-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-amber-500.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-500.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-500.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-500.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-500.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-500.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-amber.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-amber-600.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-600.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-600.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-600.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-600.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-600.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-amber-700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-700.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-amber-800.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-800.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-800.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-800.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-800.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-800.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-amber-900.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-900.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-900.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-900.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-900.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-900.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-amber-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-amber-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-amber-A400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-A400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-A400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-A400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-A400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-A400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-amber-A700.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-A700.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-A700.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-A700.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-amber-A700.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-amber-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-deep-orange-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-orange-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-orange-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-orange-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-orange-400.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-400.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-400.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-400.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-400.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-400.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-orange-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-deep-orange-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-deep-orange-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-deep-orange-A200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-brown-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-brown-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-brown-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-brown-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-brown-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-brown-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-brown-A200.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-blue-grey-50.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-50.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-50.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-50.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-50.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-50.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-grey-100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-grey-200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-200.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-grey-300.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-300.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-300.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-300.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-300.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-300.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-grey-A100.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-A100.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-A100.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-A100.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-A100.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-A100.text-auto .form-check-label input[type=checkbox] ~ .checkbox-icon:before, .bg-blue-grey-A200.text-auto .custom-checkbox input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-A200.text-auto .custom-checkbox input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-A200.text-auto .custom-radio input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-A200.text-auto .custom-radio input[type=checkbox] ~ .checkbox-icon:before,
  .bg-blue-grey-A200.text-auto .form-check-label input[type=checkbox] ~ .custom-control-indicator:before,
  .bg-blue-grey-A200.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-pink-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-pink-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-pink-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-pink-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-pink-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-pink-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-pink-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-pink-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-pink-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-pink-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-pink-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-pink-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-pink-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-pink-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-pink-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-pink-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-pink-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-pink-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-pink-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-pink-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-pink-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-pink-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-pink-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-pink-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-pink-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-pink-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-pink-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-pink-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-pink-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-pink-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-purple-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-purple-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-purple-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-purple-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-purple-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-purple-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-purple-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-purple-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-purple-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-purple-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-purple-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-purple-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-purple-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-purple-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-purple-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-purple-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-purple-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-purple-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-purple-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-purple-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-purple-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-purple-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-purple-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-purple-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-purple-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-purple-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-purple-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-purple-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-purple-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-purple-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-purple-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-purple-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-purple-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-purple-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-purple-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-purple-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-purple-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-purple-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-purple-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-purple-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-purple-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-purple-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-purple-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-purple-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-purple-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-purple-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-purple-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-purple-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-indigo-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-indigo-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-indigo-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-indigo-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-indigo-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-indigo-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-indigo-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-indigo-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-indigo-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-indigo-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-indigo-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-indigo-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-indigo-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-indigo-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-indigo-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-indigo-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-indigo-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-indigo-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-indigo-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-indigo-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-indigo-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-indigo-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-indigo-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-indigo-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-light-blue-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-blue-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-blue-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-blue-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-blue-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-blue-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-blue-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-blue-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-blue-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-blue-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-blue-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-blue-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-blue-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-blue-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-blue-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-blue-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-blue-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-blue-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-blue-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-blue-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-blue-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-blue-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-blue-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-blue-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-blue-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-blue-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-blue-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-blue-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-blue-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-blue-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-blue-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-blue-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-blue-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-blue-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-blue-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-blue-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-blue.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-blue.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-blue.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-blue.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-blue.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-blue.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-blue-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-blue-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-blue-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-blue-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-blue-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-blue-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-blue-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-blue-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-blue-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-blue-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-blue-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-blue-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-blue-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-blue-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-blue-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-blue-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-blue-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-blue-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-blue-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-blue-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-blue-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-blue-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-blue-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-blue-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-cyan-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-cyan-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-cyan-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-cyan-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-cyan-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-cyan-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-cyan-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-cyan-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-cyan-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-cyan-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-cyan-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-cyan-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-cyan-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-cyan-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-cyan-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-cyan-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-cyan-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-cyan-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-cyan-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-cyan-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-cyan-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-cyan-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-cyan-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-cyan-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-cyan-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-cyan-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-cyan-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-cyan-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-cyan-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-cyan-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-cyan-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-cyan-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-cyan-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-cyan-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-cyan-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-cyan-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-cyan.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-cyan.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-cyan.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-cyan.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-cyan.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-cyan.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-cyan-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-cyan-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-cyan-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-cyan-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-cyan-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-cyan-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-cyan-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-cyan-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-cyan-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-cyan-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-cyan-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-cyan-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-cyan-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-cyan-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-cyan-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-cyan-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-cyan-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-cyan-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-cyan-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-cyan-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-cyan-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-cyan-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-cyan-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-cyan-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-cyan-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-cyan-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-cyan-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-cyan-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-cyan-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-cyan-A700.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-light-green-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-green-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-green-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-green-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-green-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-green-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-green-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-green-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-green-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-green-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-green-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-green-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-green-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-green-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-green-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-green-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-green-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-green-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-green-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-green-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-green-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-green-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-green-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-green-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-green-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-green-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-green-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-green-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-green-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-green-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-green-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-green-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-green-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-green-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-green-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-green-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-green.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-green.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-green.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-green.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-green.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-green.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-green-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-green-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-green-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-green-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-green-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-green-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-green-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-green-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-green-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-green-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-green-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-green-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-green-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-green-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-green-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-green-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-green-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-green-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-green-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-green-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-green-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-green-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-green-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-green-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-light-green-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-light-green-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-light-green-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-light-green-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-light-green-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-light-green-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-lime-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-lime-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-lime-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-lime-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-lime-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-lime-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-lime-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-lime-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-lime-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-lime-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-lime-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-lime-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-lime-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-lime-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-lime-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-lime-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-lime-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-lime-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-lime-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-lime-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-lime-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-lime-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-lime-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-lime-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-lime-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-lime-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-lime-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-lime-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-lime-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-lime-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-lime-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-lime-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-lime-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-lime-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-lime-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-lime-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-lime.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-lime.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-lime.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-lime.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-lime.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-lime.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-lime-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-lime-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-lime-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-lime-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-lime-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-lime-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-lime-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-lime-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-lime-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-lime-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-lime-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-lime-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-lime-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-lime-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-lime-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-lime-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-lime-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-lime-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-lime-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-lime-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-lime-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-lime-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-lime-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-lime-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-lime-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-lime-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-lime-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-lime-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-lime-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-lime-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-lime-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-lime-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-lime-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-lime-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-lime-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-lime-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-lime-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-lime-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-lime-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-lime-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-lime-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-lime-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-yellow-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-yellow-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-yellow-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-yellow-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-yellow-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-yellow-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-yellow-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-yellow-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-yellow-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-yellow-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-yellow-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-yellow-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-yellow-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-yellow-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-yellow-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-yellow-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-yellow-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-yellow-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-yellow-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-yellow-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-yellow-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-yellow-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-yellow-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-yellow-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-yellow-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-yellow-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-yellow-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-yellow-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-yellow-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-yellow-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-yellow-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-yellow-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-yellow-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-yellow-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-yellow-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-yellow-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-yellow.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-yellow.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-yellow.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-yellow.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-yellow.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-yellow.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-yellow-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-yellow-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-yellow-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-yellow-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-yellow-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-yellow-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-yellow-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-yellow-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-yellow-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-yellow-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-yellow-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-yellow-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-yellow-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-yellow-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-yellow-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-yellow-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-yellow-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-yellow-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-yellow-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-yellow-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-yellow-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-yellow-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-yellow-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-yellow-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-yellow-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-yellow-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-yellow-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-yellow-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-yellow-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-yellow-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-yellow-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-yellow-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-yellow-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-yellow-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-yellow-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-yellow-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-yellow-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-yellow-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-yellow-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-yellow-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-yellow-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-yellow-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-yellow-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-yellow-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-yellow-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-yellow-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-yellow-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-yellow-A700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-amber-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-amber-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-amber-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-amber-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-amber-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-amber-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-amber-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-amber-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-amber-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-amber-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-amber-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-amber-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-amber-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-amber-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-amber-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-amber-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-amber-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-amber-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-amber-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-amber-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-amber-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-amber-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-amber-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-amber-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-amber-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-amber-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-amber-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-amber-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-amber-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-amber-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-amber-500.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-amber-500.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-amber-500.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-amber-500.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-amber-500.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-amber-500.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-amber.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-amber.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-amber.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-amber.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-amber.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-amber.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-amber-600.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-amber-600.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-amber-600.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-amber-600.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-amber-600.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-amber-600.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-amber-700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-amber-700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-amber-700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-amber-700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-amber-700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-amber-700.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-amber-800.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-amber-800.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-amber-800.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-amber-800.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-amber-800.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-amber-800.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-amber-900.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-amber-900.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-amber-900.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-amber-900.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-amber-900.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-amber-900.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-amber-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-amber-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-amber-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-amber-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-amber-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-amber-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-amber-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-amber-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-amber-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-amber-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-amber-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-amber-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-amber-A400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-amber-A400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-amber-A400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-amber-A400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-amber-A400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-amber-A400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-amber-A700.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-amber-A700.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-amber-A700.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-amber-A700.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-amber-A700.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-amber-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-deep-orange-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-orange-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-orange-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-orange-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-orange-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-orange-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-orange-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-orange-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-orange-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-orange-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-orange-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-orange-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-orange-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-orange-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-orange-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-orange-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-orange-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-orange-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-orange-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-orange-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-orange-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-orange-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-orange-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-orange-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-orange-400.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-orange-400.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-orange-400.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-orange-400.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-orange-400.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-orange-400.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-orange-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-orange-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-orange-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-orange-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-orange-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-orange-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-deep-orange-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-deep-orange-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-deep-orange-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-deep-orange-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-deep-orange-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-deep-orange-A200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-brown-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-brown-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-brown-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-brown-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-brown-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-brown-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-brown-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-brown-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-brown-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-brown-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-brown-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-brown-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-brown-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-brown-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-brown-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-brown-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-brown-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-brown-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-brown-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-brown-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-brown-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-brown-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-brown-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-brown-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-brown-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-brown-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-brown-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-brown-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-brown-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-brown-A200.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-blue-grey-50.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-blue-grey-50.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-blue-grey-50.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-grey-50.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-blue-grey-50.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-blue-grey-50.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-grey-100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-blue-grey-100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-blue-grey-100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-grey-100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-blue-grey-100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-blue-grey-100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-grey-200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-blue-grey-200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-blue-grey-200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-grey-200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-blue-grey-200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-blue-grey-200.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-grey-300.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-blue-grey-300.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-blue-grey-300.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-grey-300.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-blue-grey-300.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-blue-grey-300.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-grey-A100.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-blue-grey-A100.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-blue-grey-A100.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-grey-A100.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-blue-grey-A100.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-blue-grey-A100.text-auto input[type=checkbox][disabled] ~ .form-check-description, .bg-blue-grey-A200.text-auto input[type=checkbox]:disabled ~ .checkbox-icon,
  .bg-blue-grey-A200.text-auto input[type=checkbox]:disabled ~ .custom-control-indicator,
  .bg-blue-grey-A200.text-auto input[type=checkbox]:disabled ~ .form-check-description, .bg-blue-grey-A200.text-auto input[type=checkbox][disabled] ~ .checkbox-icon,
  .bg-blue-grey-A200.text-auto input[type=checkbox][disabled] ~ .custom-control-indicator,
  .bg-blue-grey-A200.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-pink-50.text-auto .form-check.disabled .form-check-label, .bg-pink-100.text-auto .form-check.disabled .form-check-label, .bg-pink-200.text-auto .form-check.disabled .form-check-label, .bg-pink-300.text-auto .form-check.disabled .form-check-label, .bg-pink-A100.text-auto .form-check.disabled .form-check-label, .bg-purple-50.text-auto .form-check.disabled .form-check-label, .bg-purple-100.text-auto .form-check.disabled .form-check-label, .bg-purple-200.text-auto .form-check.disabled .form-check-label, .bg-purple-A100.text-auto .form-check.disabled .form-check-label, .bg-deep-purple-50.text-auto .form-check.disabled .form-check-label, .bg-deep-purple-100.text-auto .form-check.disabled .form-check-label, .bg-deep-purple-200.text-auto .form-check.disabled .form-check-label, .bg-deep-purple-A100.text-auto .form-check.disabled .form-check-label, .bg-indigo-50.text-auto .form-check.disabled .form-check-label, .bg-indigo-100.text-auto .form-check.disabled .form-check-label, .bg-indigo-200.text-auto .form-check.disabled .form-check-label, .bg-indigo-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-light-blue-50.text-auto .form-check.disabled .form-check-label, .bg-light-blue-100.text-auto .form-check.disabled .form-check-label, .bg-light-blue-200.text-auto .form-check.disabled .form-check-label, .bg-light-blue-300.text-auto .form-check.disabled .form-check-label, .bg-light-blue-400.text-auto .form-check.disabled .form-check-label, .bg-light-blue-500.text-auto .form-check.disabled .form-check-label, .bg-light-blue.text-auto .form-check.disabled .form-check-label, .bg-light-blue-600.text-auto .form-check.disabled .form-check-label, .bg-light-blue-A100.text-auto .form-check.disabled .form-check-label, .bg-light-blue-A200.text-auto .form-check.disabled .form-check-label, .bg-light-blue-A400.text-auto .form-check.disabled .form-check-label, .bg-cyan-50.text-auto .form-check.disabled .form-check-label, .bg-cyan-100.text-auto .form-check.disabled .form-check-label, .bg-cyan-200.text-auto .form-check.disabled .form-check-label, .bg-cyan-300.text-auto .form-check.disabled .form-check-label, .bg-cyan-400.text-auto .form-check.disabled .form-check-label, .bg-cyan-500.text-auto .form-check.disabled .form-check-label, .bg-cyan.text-auto .form-check.disabled .form-check-label, .bg-cyan-600.text-auto .form-check.disabled .form-check-label, .bg-cyan-A100.text-auto .form-check.disabled .form-check-label, .bg-cyan-A200.text-auto .form-check.disabled .form-check-label, .bg-cyan-A400.text-auto .form-check.disabled .form-check-label, .bg-cyan-A700.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-light-green-50.text-auto .form-check.disabled .form-check-label, .bg-light-green-100.text-auto .form-check.disabled .form-check-label, .bg-light-green-200.text-auto .form-check.disabled .form-check-label, .bg-light-green-300.text-auto .form-check.disabled .form-check-label, .bg-light-green-400.text-auto .form-check.disabled .form-check-label, .bg-light-green-500.text-auto .form-check.disabled .form-check-label, .bg-light-green.text-auto .form-check.disabled .form-check-label, .bg-light-green-600.text-auto .form-check.disabled .form-check-label, .bg-light-green-A100.text-auto .form-check.disabled .form-check-label, .bg-light-green-A200.text-auto .form-check.disabled .form-check-label, .bg-light-green-A400.text-auto .form-check.disabled .form-check-label, .bg-light-green-A700.text-auto .form-check.disabled .form-check-label, .bg-lime-50.text-auto .form-check.disabled .form-check-label, .bg-lime-100.text-auto .form-check.disabled .form-check-label, .bg-lime-200.text-auto .form-check.disabled .form-check-label, .bg-lime-300.text-auto .form-check.disabled .form-check-label, .bg-lime-400.text-auto .form-check.disabled .form-check-label, .bg-lime-500.text-auto .form-check.disabled .form-check-label, .bg-lime.text-auto .form-check.disabled .form-check-label, .bg-lime-600.text-auto .form-check.disabled .form-check-label, .bg-lime-700.text-auto .form-check.disabled .form-check-label, .bg-lime-800.text-auto .form-check.disabled .form-check-label, .bg-lime-A100.text-auto .form-check.disabled .form-check-label, .bg-lime-A200.text-auto .form-check.disabled .form-check-label, .bg-lime-A400.text-auto .form-check.disabled .form-check-label, .bg-lime-A700.text-auto .form-check.disabled .form-check-label, .bg-yellow-50.text-auto .form-check.disabled .form-check-label, .bg-yellow-100.text-auto .form-check.disabled .form-check-label, .bg-yellow-200.text-auto .form-check.disabled .form-check-label, .bg-yellow-300.text-auto .form-check.disabled .form-check-label, .bg-yellow-400.text-auto .form-check.disabled .form-check-label, .bg-yellow-500.text-auto .form-check.disabled .form-check-label, .bg-yellow.text-auto .form-check.disabled .form-check-label, .bg-yellow-600.text-auto .form-check.disabled .form-check-label, .bg-yellow-700.text-auto .form-check.disabled .form-check-label, .bg-yellow-800.text-auto .form-check.disabled .form-check-label, .bg-yellow-900.text-auto .form-check.disabled .form-check-label, .bg-yellow-A100.text-auto .form-check.disabled .form-check-label, .bg-yellow-A200.text-auto .form-check.disabled .form-check-label, .bg-yellow-A400.text-auto .form-check.disabled .form-check-label, .bg-yellow-A700.text-auto .form-check.disabled .form-check-label, .bg-amber-50.text-auto .form-check.disabled .form-check-label, .bg-amber-100.text-auto .form-check.disabled .form-check-label, .bg-amber-200.text-auto .form-check.disabled .form-check-label, .bg-amber-300.text-auto .form-check.disabled .form-check-label, .bg-amber-400.text-auto .form-check.disabled .form-check-label, .bg-amber-500.text-auto .form-check.disabled .form-check-label, .bg-amber.text-auto .form-check.disabled .form-check-label, .bg-amber-600.text-auto .form-check.disabled .form-check-label, .bg-amber-700.text-auto .form-check.disabled .form-check-label, .bg-amber-800.text-auto .form-check.disabled .form-check-label, .bg-amber-900.text-auto .form-check.disabled .form-check-label, .bg-amber-A100.text-auto .form-check.disabled .form-check-label, .bg-amber-A200.text-auto .form-check.disabled .form-check-label, .bg-amber-A400.text-auto .form-check.disabled .form-check-label, .bg-amber-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-deep-orange-50.text-auto .form-check.disabled .form-check-label, .bg-deep-orange-100.text-auto .form-check.disabled .form-check-label, .bg-deep-orange-200.text-auto .form-check.disabled .form-check-label, .bg-deep-orange-300.text-auto .form-check.disabled .form-check-label, .bg-deep-orange-400.text-auto .form-check.disabled .form-check-label, .bg-deep-orange-A100.text-auto .form-check.disabled .form-check-label, .bg-deep-orange-A200.text-auto .form-check.disabled .form-check-label, .bg-brown-50.text-auto .form-check.disabled .form-check-label, .bg-brown-100.text-auto .form-check.disabled .form-check-label, .bg-brown-200.text-auto .form-check.disabled .form-check-label, .bg-brown-A100.text-auto .form-check.disabled .form-check-label, .bg-brown-A200.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-blue-grey-50.text-auto .form-check.disabled .form-check-label, .bg-blue-grey-100.text-auto .form-check.disabled .form-check-label, .bg-blue-grey-200.text-auto .form-check.disabled .form-check-label, .bg-blue-grey-300.text-auto .form-check.disabled .form-check-label, .bg-blue-grey-A100.text-auto .form-check.disabled .form-check-label, .bg-blue-grey-A200.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-pink-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-pink-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-pink-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-pink-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-pink-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-purple-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-purple-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-purple-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-purple-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-purple-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-purple-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-purple-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-purple-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-indigo-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-indigo-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-indigo-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-indigo-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-light-blue-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-blue-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-blue-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-blue-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-blue-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-blue-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-blue.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-blue-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-blue-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-blue-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-blue-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-cyan-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-cyan-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-cyan-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-cyan-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-cyan-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-cyan-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-cyan.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-cyan-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-cyan-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-cyan-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-cyan-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-cyan-A700.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-light-green-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-green-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-green-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-green-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-green-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-green-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-green.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-green-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-green-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-green-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-green-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-light-green-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-lime-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-lime-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-lime-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-lime-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-lime-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-lime-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-lime.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-lime-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-lime-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-lime-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-lime-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-lime-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-lime-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-lime-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-yellow-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-yellow-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-yellow-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-yellow-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-yellow-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-yellow-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-yellow.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-yellow-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-yellow-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-yellow-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-yellow-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-yellow-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-yellow-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-yellow-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-yellow-A700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-amber-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-amber-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-amber-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-amber-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-amber-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-amber-500.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-amber.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-amber-600.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-amber-700.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-amber-800.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-amber-900.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-amber-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-amber-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-amber-A400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-amber-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-deep-orange-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-orange-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-orange-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-orange-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-orange-400.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-orange-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-deep-orange-A200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-brown-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-brown-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-brown-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-brown-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-brown-A200.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-blue-grey-50.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-grey-100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-grey-200.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-grey-300.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-grey-A100.text-auto .custom-control-input:disabled ~ .custom-control-description, .bg-blue-grey-A200.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-pink-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-pink-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-pink-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-pink-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-pink-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-purple-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-purple-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-purple-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-purple-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-purple-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-purple-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-purple-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-purple-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-indigo-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-indigo-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-indigo-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-indigo-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-light-blue-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-blue-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-blue-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-blue-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-blue-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-blue-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-blue.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-blue-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-blue-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-blue-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-blue-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-cyan-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-cyan-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-cyan-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-cyan-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-cyan-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-cyan-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-cyan.text-auto #sidenav .nav-link:hover:not(.active), .bg-cyan-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-cyan-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-cyan-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-cyan-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-cyan-A700.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-light-green-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-green-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-green-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-green-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-green-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-green-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-green.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-green-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-green-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-green-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-green-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-light-green-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-lime-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-lime-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-lime-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-lime-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-lime-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-lime-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-lime.text-auto #sidenav .nav-link:hover:not(.active), .bg-lime-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-lime-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-lime-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-lime-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-lime-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-lime-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-lime-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-yellow-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-yellow-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-yellow-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-yellow-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-yellow-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-yellow-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-yellow.text-auto #sidenav .nav-link:hover:not(.active), .bg-yellow-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-yellow-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-yellow-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-yellow-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-yellow-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-yellow-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-yellow-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-yellow-A700.text-auto #sidenav .nav-link:hover:not(.active), .bg-amber-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-amber-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-amber-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-amber-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-amber-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-amber-500.text-auto #sidenav .nav-link:hover:not(.active), .bg-amber.text-auto #sidenav .nav-link:hover:not(.active), .bg-amber-600.text-auto #sidenav .nav-link:hover:not(.active), .bg-amber-700.text-auto #sidenav .nav-link:hover:not(.active), .bg-amber-800.text-auto #sidenav .nav-link:hover:not(.active), .bg-amber-900.text-auto #sidenav .nav-link:hover:not(.active), .bg-amber-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-amber-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-amber-A400.text-auto #sidenav .nav-link:hover:not(.active), .bg-amber-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-deep-orange-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-orange-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-orange-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-orange-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-orange-400.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-orange-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-deep-orange-A200.text-auto #sidenav .nav-link:hover:not(.active), .bg-brown-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-brown-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-brown-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-brown-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-brown-A200.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-blue-grey-50.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-grey-100.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-grey-200.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-grey-300.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-grey-A100.text-auto #sidenav .nav-link:hover:not(.active), .bg-blue-grey-A200.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-pink-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-pink-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-pink-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-pink-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-pink-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-purple-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-purple-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-purple-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-purple-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-purple-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-purple-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-purple-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-purple-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-indigo-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-indigo-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-indigo-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-indigo-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-light-blue-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-blue-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-blue-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-blue-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-blue-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-blue-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-blue.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-blue-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-blue-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-blue-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-blue-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-cyan-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-cyan-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-cyan-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-cyan-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-cyan-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-cyan-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-cyan.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-cyan-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-cyan-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-cyan-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-cyan-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-cyan-A700.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-light-green-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-green-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-green-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-green-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-green-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-green-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-green.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-green-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-green-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-green-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-green-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-light-green-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-lime-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-lime-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-lime-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-lime-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-lime-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-lime-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-lime.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-lime-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-lime-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-lime-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-lime-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-lime-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-lime-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-lime-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-yellow-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-yellow-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-yellow-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-yellow-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-yellow-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-yellow-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-yellow.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-yellow-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-yellow-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-yellow-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-yellow-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-yellow-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-yellow-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-yellow-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-yellow-A700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-amber-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-amber-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-amber-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-amber-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-amber-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-amber-500.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-amber.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-amber-600.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-amber-700.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-amber-800.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-amber-900.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-amber-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-amber-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-amber-A400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-amber-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-deep-orange-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-orange-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-orange-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-orange-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-orange-400.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-orange-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-deep-orange-A200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-brown-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-brown-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-brown-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-brown-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-brown-A200.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-blue-grey-50.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-grey-100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-grey-200.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-grey-300.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-grey-A100.text-auto #sidenav .nav-link:hover:not(.active) > i, .bg-blue-grey-A200.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; }

.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 > .page-header {
  height: 12rem;
  min-height: 1rem;
  align-items: flex-end;
  display: flex; }

.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: .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 .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.99px) {
        .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: .4rem;
          margin-bottom: .4rem; }
        .doc .example > .source-preview-wrapper > .preview .preview-elements > .form-control + .form-control {
          margin-top: .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: .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: .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: .8rem; }

.doc.modal-doc .example.modal-components .preview .modal {
  display: block;
  position: relative;
  padding: .8rem; }

.doc.modal-doc #gridSystemModal .row > .col,
.doc.modal-doc #gridSystemModal .row > [class^=col-] {
  padding-top: .75rem;
  padding-bottom: .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; }

/**
Apps
 */
#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: .8rem; }
    #mail .thread-list .thread .info .name .avatar {
      background: #039BE5; }
    #mail .thread-list .thread .info .name .has-attachment {
      margin-left: .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.99px) {
  #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: 20rem;
    min-height: 20rem;
    max-height: 20rem;
    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: .8rem;
        height: .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.99px) {
  #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: .6rem .7rem .8rem .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: .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: "\EA7A"; }
          #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: "\EB59"; }
          #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: "\EAAE"; }
          #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: "\EA7C"; }

#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: .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;
  background: #EEE; }
  #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: .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: .8rem 8px 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: .4rem .8rem 0 .8rem;
  padding: .2rem .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; }

/**
Pages
 */
#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%;
  height: 100vh;
  min-height: 100%;
  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 {
      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; }
    #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 .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 .8rem 0 0; }
    #login .form-wrapper .btn.google {
      background-color: #D73D32; }
    #login .form-wrapper .btn.facebook {
      background-color: #3f5c9a; }

@media (max-width: 767.99px) {
  #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 .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 .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.99px) {
  #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.99px) {
  #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.99px) {
  #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.99px) {
  #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.99px) {
  #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.99px) {
  #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.99px) {
  #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.99px) {
  #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; }

/**
Components
 */
.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; }

/**
Plugins
 */
/*
 * Table styles
 */
table.dataTable {
  width: 100% !important;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
  /*
     * Header and footer styles
     */
  /*
     * Body styles
     */ }
  table.dataTable th,
  table.dataTable td {
    vertical-align: middle; }
  table.dataTable thead th,
  table.dataTable tfoot th {
    font-weight: bold;
    padding: 2rem .8rem; }
  table.dataTable thead th,
  table.dataTable thead td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
    table.dataTable thead th:active,
    table.dataTable thead td:active {
      outline: none; }
  table.dataTable tfoot th,
  table.dataTable tfoot td {
    border-top: 1px solid rgba(0, 0, 0, 0.12); }
  table.dataTable thead th:first-child {
    padding-left: 24px; }
  table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc {
    background: none; }
    table.dataTable thead .sorting .table-header .column-title, table.dataTable thead .sorting_asc .table-header .column-title, table.dataTable thead .sorting_desc .table-header .column-title {
      cursor: pointer; }
      table.dataTable thead .sorting .table-header .column-title:after, table.dataTable thead .sorting_asc .table-header .column-title:after, table.dataTable thead .sorting_desc .table-header .column-title:after {
        position: relative;
        font-family: 'fuse-iconfont';
        font-weight: normal;
        margin-left: 10px;
        top: 2px;
        font-size: 16px; }
  table.dataTable thead .sorting .table-header .column-title:after {
    content: '\EF55'; }
  table.dataTable thead .sorting_asc .table-header .column-title:after {
    content: '\EF51'; }
  table.dataTable thead .sorting_desc .table-header .column-title:after {
    content: '\EF52'; }
  table.dataTable thead .sorting_asc:before,
  table.dataTable thead .sorting_desc:after {
    opacity: 1; }
  table.dataTable thead .sorting_asc_disabled:before,
  table.dataTable thead .sorting_desc_disabled:after {
    opacity: 0; }
  table.dataTable tbody tr {
    background-color: transparent; }
    table.dataTable tbody tr.selected {
      background-color: #B0BED9;
      color: rgba(0, 0, 0, 0.87); }
    table.dataTable tbody tr td:first-child {
      padding-left: 24px; }
  table.dataTable tbody th,
  table.dataTable tbody td {
    padding: 16px 8px; }
  table.dataTable.row-border tbody th, table.dataTable.row-border tbody td,
  table.dataTable.display tbody th,
  table.dataTable.display tbody td {
    border-top: 1px solid rgba(0, 0, 0, 0.12); }
  table.dataTable.row-border tbody tr:first-child th,
  table.dataTable.row-border tbody tr:first-child td,
  table.dataTable.display tbody tr:first-child th,
  table.dataTable.display tbody tr:first-child td {
    border-top: none; }
  table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-right: 1px solid rgba(0, 0, 0, 0.12); }
  table.dataTable.cell-border tbody tr th:first-child,
  table.dataTable.cell-border tbody tr td:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.12); }
  table.dataTable.cell-border tbody tr:first-child th,
  table.dataTable.cell-border tbody tr:first-child td {
    border-top: none; }
  table.dataTable.stripe tbody tr.odd,
  table.dataTable.display tbody tr.odd {
    background-color: rgba(0, 0, 0, 0.0235); }
    table.dataTable.stripe tbody tr.odd.selected,
    table.dataTable.display tbody tr.odd.selected {
      background-color: #acbad4; }
  table.dataTable.hover tbody tr:hover,
  table.dataTable.display tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.036); }
    table.dataTable.hover tbody tr:hover.selected,
    table.dataTable.display tbody tr:hover.selected {
      background-color: #aab7d1; }
  table.dataTable.order-column tbody tr > .sorting_1,
  table.dataTable.order-column tbody tr > .sorting_2,
  table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
  table.dataTable.display tbody tr > .sorting_2,
  table.dataTable.display tbody tr > .sorting_3 {
    background-color: rgba(0, 0, 0, 0.02); }
  table.dataTable.order-column tbody tr.selected > .sorting_1,
  table.dataTable.order-column tbody tr.selected > .sorting_2,
  table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
  table.dataTable.display tbody tr.selected > .sorting_2,
  table.dataTable.display tbody tr.selected > .sorting_3 {
    background-color: #acbad5; }
  table.dataTable.display tbody tr.odd > .sorting_1,
  table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
    background-color: rgba(0, 0, 0, 0.054); }
  table.dataTable.display tbody tr.odd > .sorting_2,
  table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
    background-color: rgba(0, 0, 0, 0.047); }
  table.dataTable.display tbody tr.odd > .sorting_3,
  table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
    background-color: rgba(0, 0, 0, 0.039); }
  table.dataTable.display tbody tr.odd.selected > .sorting_1,
  table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
    background-color: #a6b4cd; }
  table.dataTable.display tbody tr.odd.selected > .sorting_2,
  table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
    background-color: #a8b5cf; }
  table.dataTable.display tbody tr.odd.selected > .sorting_3,
  table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
    background-color: #a9b7d1; }
  table.dataTable.display tbody tr.even > .sorting_1,
  table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
    background-color: rgba(0, 0, 0, 0.02); }
  table.dataTable.display tbody tr.even > .sorting_2,
  table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
    background-color: rgba(0, 0, 0, 0.012); }
  table.dataTable.display tbody tr.even > .sorting_3,
  table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
    background-color: rgba(0, 0, 0, 0.004); }
  table.dataTable.display tbody tr.even.selected > .sorting_1,
  table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
    background-color: #acbad5; }
  table.dataTable.display tbody tr.even.selected > .sorting_2,
  table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
    background-color: #aebcd6; }
  table.dataTable.display tbody tr.even.selected > .sorting_3,
  table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
    background-color: #afbdd8; }
  table.dataTable.display tbody tr:hover > .sorting_1,
  table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
    background-color: rgba(0, 0, 0, 0.082); }
  table.dataTable.display tbody tr:hover > .sorting_2,
  table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
    background-color: rgba(0, 0, 0, 0.075); }
  table.dataTable.display tbody tr:hover > .sorting_3,
  table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
    background-color: rgba(0, 0, 0, 0.063); }
  table.dataTable.display tbody tr:hover.selected > .sorting_1,
  table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
    background-color: #a2aec7; }
  table.dataTable.display tbody tr:hover.selected > .sorting_2,
  table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
    background-color: #a3b0c9; }
  table.dataTable.display tbody tr:hover.selected > .sorting_3,
  table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
    background-color: #a5b2cb; }
  table.dataTable.no-footer {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
  table.dataTable.nowrap th, table.dataTable.nowrap td {
    white-space: nowrap; }
  table.dataTable.compact thead th,
  table.dataTable.compact thead td {
    padding: 4px 17px 4px 4px; }
  table.dataTable.compact tfoot th,
  table.dataTable.compact tfoot td {
    padding: 4px; }
  table.dataTable.compact tbody th,
  table.dataTable.compact tbody td {
    padding: 4px; }
  table.dataTable th.dt-left,
  table.dataTable td.dt-left {
    text-align: left; }
  table.dataTable th.dt-center,
  table.dataTable td.dt-center,
  table.dataTable td.dataTables_empty {
    text-align: center; }
  table.dataTable th.dt-right,
  table.dataTable td.dt-right {
    text-align: right; }
  table.dataTable th.dt-justify,
  table.dataTable td.dt-justify {
    text-align: justify; }
  table.dataTable th.dt-nowrap,
  table.dataTable td.dt-nowrap {
    white-space: nowrap; }
  table.dataTable thead th.dt-head-left,
  table.dataTable thead td.dt-head-left,
  table.dataTable tfoot th.dt-head-left,
  table.dataTable tfoot td.dt-head-left {
    text-align: left; }
  table.dataTable thead th.dt-head-center,
  table.dataTable thead td.dt-head-center,
  table.dataTable tfoot th.dt-head-center,
  table.dataTable tfoot td.dt-head-center {
    text-align: center; }
  table.dataTable thead th.dt-head-right,
  table.dataTable thead td.dt-head-right,
  table.dataTable tfoot th.dt-head-right,
  table.dataTable tfoot td.dt-head-right {
    text-align: right; }
  table.dataTable thead th.dt-head-justify,
  table.dataTable thead td.dt-head-justify,
  table.dataTable tfoot th.dt-head-justify,
  table.dataTable tfoot td.dt-head-justify {
    text-align: justify; }
  table.dataTable thead th.dt-head-nowrap,
  table.dataTable thead td.dt-head-nowrap,
  table.dataTable tfoot th.dt-head-nowrap,
  table.dataTable tfoot td.dt-head-nowrap {
    white-space: nowrap; }
  table.dataTable tbody th.dt-body-left,
  table.dataTable tbody td.dt-body-left {
    text-align: left; }
  table.dataTable tbody th.dt-body-center,
  table.dataTable tbody td.dt-body-center {
    text-align: center; }
  table.dataTable tbody th.dt-body-right,
  table.dataTable tbody td.dt-body-right {
    text-align: right; }
  table.dataTable tbody th.dt-body-justify,
  table.dataTable tbody td.dt-body-justify {
    text-align: justify; }
  table.dataTable tbody th.dt-body-nowrap,
  table.dataTable tbody td.dt-body-nowrap {
    white-space: nowrap; }

table.dataTable,
table.dataTable th,
table.dataTable td {
  box-sizing: content-box; }

/*
 * Control feature layout
 */
.dataTables_wrapper {
  position: relative;
  clear: both;
  *zoom: 1;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: hidden;
  zoom: 1; }
  .dataTables_wrapper .dataTables_scroll {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    overflow: hidden; }
    .dataTables_wrapper .dataTables_scroll .dataTables_scrollHead {
      display: flex;
      flex: 1 0 auto; }
    .dataTables_wrapper .dataTables_scroll .dataTables_scrollBody {
      -ms-overflow-style: -ms-autohiding-scrollbar;
      overflow: auto; }
  .dataTables_wrapper .dataTables_footer {
    display: flex;
    flex-direction: row;
    flex: 1 0 auto; }
    .dataTables_wrapper .dataTables_footer .dataTables_info,
    .dataTables_wrapper .dataTables_footer .dataTables_paginate {
      display: flex;
      flex: 1 0 auto;
      align-items: center; }
    .dataTables_wrapper .dataTables_footer .dataTables_info {
      justify-content: flex-start;
      text-align: left; }
    .dataTables_wrapper .dataTables_footer .dataTables_paginate {
      justify-content: flex-end; }
    @media (max-width: 767.99px) {
      .dataTables_wrapper .dataTables_footer {
        flex-direction: column;
        padding: 4px; }
        .dataTables_wrapper .dataTables_footer .dataTables_info,
        .dataTables_wrapper .dataTables_footer .dataTables_paginate {
          flex: 1 1 100%;
          justify-content: center;
          height: auto;
          line-height: 1;
          padding: 4px;
          margin: 0; } }
  .dataTables_wrapper .row {
    width: 100%;
    margin: 0; }
    .dataTables_wrapper .row [class^="col"],
    .dataTables_wrapper .row [class*=" col-"] {
      padding: 0; }
  .dataTables_wrapper .dataTables_length {
    float: left; }
    .dataTables_wrapper .dataTables_length select {
      margin: 0 1.2rem;
      border: 1px solid rgba(0, 0, 0, 0.12);
      padding: 4px 8px; }
  .dataTables_wrapper .dataTables_filter {
    float: right;
    text-align: right; }
    .dataTables_wrapper .dataTables_filter input {
      margin-left: .5em;
      border: 1px solid rgba(0, 0, 0, 0.12);
      padding: 4px 8px; }
    .dataTables_wrapper .dataTables_filter input[type=search] {
      border-radius: 3px; }
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter {
    padding: 0 .8rem;
    height: 6.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .dataTables_wrapper .dataTables_info {
    height: 6.4rem;
    line-height: 6.4rem;
    padding: 0 .8rem;
    float: left;
    font-weight: 600;
    text-align: center; }
  .dataTables_wrapper .pagination {
    box-shadow: none; }
  .dataTables_wrapper .dataTables_paginate {
    padding: 0 .8rem;
    height: 6.4rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    float: right; }
    .dataTables_wrapper .dataTables_paginate > .pagination {
      margin: 0; }
    .dataTables_wrapper .dataTables_paginate .paginate_button {
      box-sizing: border-box;
      display: inline-block;
      min-width: 1.5em;
      padding: 0.5em 1em;
      margin-left: 2px;
      text-align: center;
      text-decoration: none !important;
      cursor: pointer;
      *cursor: hand;
      color: inherit !important;
      border: 1px solid transparent;
      border-radius: 2px; }
      .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
        color: inherit !important;
        border: 1px solid #979797; }
      .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
        cursor: default;
        color: #666 !important;
        border: 1px solid transparent;
        background: transparent;
        box-shadow: none; }
      .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        color: inherit !important;
        border: 1px solid #111; }
      .dataTables_wrapper .dataTables_paginate .paginate_button:active {
        outline: none;
        box-shadow: inset 0 0 3px #111; }
    .dataTables_wrapper .dataTables_paginate .ellipsis {
      padding: 0 1em; }
  .dataTables_wrapper .dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 40px;
    margin-left: -50%;
    margin-top: -25px;
    padding-top: 20px;
    text-align: center;
    font-size: 1.2em;
    background-color: white;
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(25%, rgba(0, 0, 0, 0.9)), color-stop(75%, rgba(0, 0, 0, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 25%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 25%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0) 100%);
    background: -ms-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 25%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 25%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 25%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0) 100%); }
  .dataTables_wrapper .dataTables_scroll {
    clear: both; }
    .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
      *margin-top: -1px;
      -webkit-overflow-scrolling: touch; }
      .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
        vertical-align: middle; }
      .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
      .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
      .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
        height: 0;
        overflow: hidden;
        margin: 0 !important;
        padding: 0 !important; }
  .dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
  .dataTables_wrapper.no-footer div.dataTables_scrollHead > table,
  .dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
    border-bottom: none; }
  .dataTables_wrapper:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0; }

@media (max-width: 1199.99px) {
  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center; }
  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em; } }

@media (max-width: 767.99px) {
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center; }
  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em; } }

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

#reactBody.fuse-aside-folded:not(.fuse-aside-expanded) #aside .aside-content-wrapper,
#reactBody.fuse-aside-folded:not(.fuse-aside-expanded) #aside .aside-content-wrapper > .aside-content {
  width: 6.4rem !important;
  min-width: 6.4rem !important; }

#reactBody.fuse-aside-folded:not(.fuse-aside-expanded) #aside .aside-content-wrapper > .aside-content > .aside-toolbar {
  padding-left: 1.6rem !important; }

#reactBody.fuse-aside-folded:not(.fuse-aside-expanded) #aside #sidenav .subheader:before {
  content: '';
  display: block;
  position: absolute;
  min-width: 1.6rem;
  border-top: 2px solid rgba(0, 0, 0, 0.12); }

#reactBody.fuse-aside-folded:not(.fuse-aside-expanded) #aside #sidenav .subheader > span {
  opacity: 0;
  transition: opacity 200ms ease-out; }

#reactBody.fuse-aside-folded:not(.fuse-aside-expanded) #aside #sidenav .nav-link > span {
  opacity: 0;
  transition: opacity 200ms ease-out; }

#reactBody.fuse-aside-folded:not(.fuse-aside-expanded) #aside #sidenav .nav-item .collapse.show {
  display: none; }

#reactBody.layout-left-navigation #aside .aside-content-wrapper {
  margin-left: 0rem; }

#reactBody.layout-right-navigation #aside .aside-content-wrapper {
  margin-right: 0rem; }

#reactBody #sidenav .subheader > span {
  opacity: 1;
  transition: opacity 200ms ease 300ms; }

#reactBody #sidenav .nav-link > span {
  opacity: 1;
  transition: opacity 200ms ease 300ms; }

#reactBody.fuse-aside-folded:not(.fuse-aside-expanded) #aside {
  width: 6.4rem; }
  #reactBody.fuse-aside-folded:not(.fuse-aside-expanded) #aside .aside-content-wrapper {
    position: absolute;
    z-index: 2000; }

#reactBody.layout-left-navigation #aside .aside-content-wrapper > .aside-content {
  left: 0; }

#reactBody.layout-left-navigation #toggle-fold-aside-button {
  transform: rotate(0deg); }

#reactBody.layout-left-navigation.fuse-aside-folded #toggle-fold-aside-button {
  transform: rotate(180deg); }

#reactBody.layout-right-navigation #aside .aside-content-wrapper > .aside-content {
  right: 0; }

#reactBody.layout-right-navigation #toggle-fold-aside-button {
  transform: rotate(180deg); }

#reactBody.layout-right-navigation.fuse-aside-folded #toggle-fold-aside-button {
  transform: rotate(0deg); }

#reactBody #toggle-fold-aside-button {
  transition: transform .3s ease-in-out .1s; }

.custom-scrollbar {
  position: relative; }

.ps__scrollbar-x-rail,
.ps__scrollbar-y-rail {
  z-index: 99; }

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: "Roboto", "Helvetica Neue", 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; }
.ripple {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0); }
  .ripple:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform .5s, opacity 1s; }
  .ripple:active:before {
    transform: scale(0, 0);
    opacity: .2;
    transition: 0s; }
.ai-markdown-wrapper {
  display: inline; }
  .ai-markdown-wrapper > p {
    display: inline !important; }
.error-boundary-fallback {
  width: 100vw;
  height: 100vh;
  position: relative; }
  .error-boundary-fallback .fallback-background-image {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
    z-index: -1; }
  .error-boundary-fallback .fallback_center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
  .error-boundary-fallback .fallback-message-title, .error-boundary-fallback .fallback-message {
    color: rgba(0, 0, 0, 0.7); }
  .error-boundary-fallback .fallback-message-title {
    font-weight: 700; }
  .error-boundary-fallback .fallback-message {
    font-weight: 500; }
.dropdown-circle-btn {
  box-shadow: none;
  border: 0.5px solid #CCC; }
  .dropdown-circle-btn .no-border {
    border: none !important; }

.dropdown-circle-menu.dropleft {
  left: auto;
  right: 0 !important;
  top: 80%; }

.dropdown {
  outline: none; }

.dropdown-menu.callout {
  border-top: solid 1px #aaa; }

.dropdown-menu.callout-right {
  left: auto;
  right: 5px !important; }

.dropdown-container {
  padding: 1px !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  font-size: unset !important;
  background: transparent !important;
  outline: none !important; }
.modal-confirm {
  position: absolute !important;
  top: -10vh;
  left: 0;
  right: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%; }
  .modal-confirm .modal-content {
    width: 500px; }

.modal-header {
  background-color: #005E9E !important;
  padding: 10px 15px; }
  .modal-header > * {
    color: white; }
  .modal-header > h5,
  .modal-header > h6 {
    display: block;
    width: 100%; }
    .modal-header > h5 strong,
    .modal-header > h6 strong {
      font-weight: normal !important; }
    .modal-header > h5 span,
    .modal-header > h6 span {
      display: block; }
  .modal-header .close-modal {
    position: absolute;
    padding: 0;
    min-width: unset;
    top: 6px;
    right: 10px; }
button.fuse-ripple-ready {
  /* fixes initial animation run, without user input, on page load.
 */ }
  button.fuse-ripple-ready:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 51%;
    width: 100%;
    height: 100%;
    margin-left: -50%;
    margin-top: -50%;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    transform: scale(0); }
  button.fuse-ripple-ready:not(:active):after {
    animation: ripple 0.6s ease-out; }
  button.fuse-ripple-ready:after {
    visibility: hidden; }
  button.fuse-ripple-ready:focus:after {
    visibility: visible; }

@keyframes ripple {
  0% {
    transform: scale(0); }
  20% {
    transform: scale(1); }
  100% {
    opacity: 0;
    transform: scale(1); } }
.ai-custom-scrollbar > div:last-child {
  z-index: 10; }
  .ai-custom-scrollbar > div:last-child > div {
    background-color: #aaa !important; }
@charset "UTF-8";
/* GIAO DIỆN HIS 2019 V2 */
button:focus {
  outline: none !important; }

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

.show-desktop {
  display: block !important; }

.hide-mobile {
  display: none !important; }

@keyframes shake {
  0% {
    transform: rotate(2deg); }
  50% {
    transform: rotate(-3deg); }
  70% {
    transform: rotate(3deg); }
  100% {
    transform: rotate(0deg); } }

#toolbar .dropdown-menu {
  min-width: 220px; }

#toolbar .dropdown-cmd-search .ai-input-group {
  border-radius: 2px; }
  #toolbar .dropdown-cmd-search .ai-input-group input.form-control {
    min-height: 4rem; }

#toolbar .dropdown-cmd-search .dropdown-toggle {
  margin: 0 !important;
  padding-right: 0 !important;
  padding-left: 1px !important; }

#toolbar .dropdown-cmd-search .dropdown-toggle:before,
#toolbar .dropdown-cmd-search .dropdown-toggle:after {
  display: none; }

#toolbar .dropdown-cmd-search .dropdown-menu {
  width: 100%; }

#toolbar .no-carret:after {
  display: none;
  visibility: hidden; }

#toolbar .list-notification {
  padding-bottom: 3.2rem;
  padding-top: 2px; }
  #toolbar .list-notification .list-group-item {
    border-bottom: solid 1px #ccc; }
    #toolbar .list-notification .list-group-item:hover {
      background-color: #b8e2de; }
    #toolbar .list-notification .list-group-item .notification-title .ai-markdown-wrapper p {
      font-size: 1.4rem; }
    #toolbar .list-notification .list-group-item .ai-markdown-wrapper p {
      font-weight: normal !important; }
  #toolbar .list-notification .list-group-item:last-child {
    border-bottom: none; }
  #toolbar .list-notification .list-group-item-unseen {
    background-color: #b8e2de; }
  #toolbar .list-notification .message {
    white-space: nowrap;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden; }

#toolbar .ai-notification-button {
  line-height: 6.4rem; }
  #toolbar .ai-notification-button .notification-badge-wrapper {
    position: relative;
    height: 100%;
    margin: 0 px; }
  #toolbar .ai-notification-button .badge-pill {
    padding: 0.4rem !important;
    position: absolute;
    right: 0;
    top: 1rem;
    text-align: center;
    min-width: 20px;
    display: block; }
  #toolbar .ai-notification-button i.icon {
    line-height: 6.4rem;
    font-size: 3.2rem; }
  #toolbar .ai-notification-button .link-seeall-notification {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: 0;
    text-align: center;
    display: block;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    background: #f5f5f5;
    border-top: solid 1px #ddd;
    line-height: 32px; }
  #toolbar .ai-notification-button .link-checkall-notification {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: 0;
    display: flex;
    justify-content: space-between;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    background: #f5f5f5;
    border-top: solid 1px #ddd;
    line-height: 32px;
    padding-left: 10px;
    padding-right: 10px; }
  #toolbar .ai-notification-button .dropdown-menu.callout {
    padding: 0;
    margin: 0;
    right: 0;
    left: -90px;
    min-width: 100%; }
  #toolbar .ai-notification-button .dropdown-menu.callout:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 99px;
    border-bottom: solid 8px #fff;
    border-left: solid 8px transparent;
    border-right: solid 8px transparent;
    top: -8px; }
  #toolbar .ai-notification-button .dropdown-menu.callout::before {
    border-width: 9px;
    top: -9px;
    left: 98px;
    border-bottom-color: #999; }

#toolbar .add-customer {
  min-height: 40px;
  border-radius: 8px;
  text-transform: none;
  font-weight: 600;
  visibility: hidden; }

#toolbar .profile-name {
  font-size: 12px; }

#toolbar .dropdown-item {
  cursor: pointer; }

@media (max-width: 576px) and (max-width: 576px) {
  #toolbar .add-customer {
    min-height: unset;
    max-height: 32px;
    min-width: unset;
    padding: 0;
    width: 36px; }
  #toolbar .callout-mobile {
    right: 0;
    left: -250px !important;
    min-width: 100%; }
  #toolbar .callout:before {
    border-width: 9px;
    top: -9px;
    left: 268px !important;
    border-bottom-color: #999; }
  #toolbar .callout:after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    left: 268px !important;
    border-bottom: solid 8px #fff;
    border-left: solid 8px transparent;
    border-right: solid 8px transparent;
    top: -8px; } }

.notification-container {
  overflow: auto;
  height: 500px;
  min-width: 360px;
  position: relative; }
  .notification-container .notification-empty {
    margin: 100px 0; }
    .notification-container .notification-empty > img {
      width: 40%;
      margin: 0 auto;
      display: block; }

.section-modal-dialog {
  max-width: 600px !important;
  padding: 0; }
  .section-modal-dialog .modal-content {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: 0 5px 12px 1px #00000013;
    -moz-box-shadow: 0 5px 12px 1px #00000013;
    -webkit-box-shadow: 0 5px 12px 1px #00000013;
    -o-box-shadow: 0 5px 12px 1px #00000013;
    border: solid 1px #fcfcfc;
    padding: 20px !important;
    background: #FFFFFF;
    height: auto;
    width: 100%;
    min-height: auto !important; }
  .section-modal-dialog::before {
    content: "";
    display: none; }
  .section-modal-dialog__title {
    font-size: 24px;
    font-weight: 700;
    color: #0A2C4D;
    text-align: center;
    text-transform: uppercase; }
  .section-modal-dialog__message {
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.71;
    text-align: center;
    color: #0A2C4D;
    margin-bottom: 15px; }
  .section-modal-dialog__btn-close {
    border-radius: 21px;
    -moz-border-radius: 21px;
    -webkit-border-radius: 21px;
    -ms-border-radius: 21px;
    -o-border-radius: 21px;
    box-shadow: 0 1px 0 0 #00000028;
    -moz-box-shadow: 0 1px 0 0 #00000028;
    -webkit-box-shadow: 0 1px 0 0 #00000028;
    -o-box-shadow: 0 1px 0 0 #00000028;
    background-color: #FAA111;
    min-width: 140px;
    margin: auto;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 40px;
    padding: 0 40px; }
    .section-modal-dialog__btn-close.btn-sm {
      min-height: 40px; }
  .section-modal-dialog__btn-detail {
    border-radius: 21px;
    -moz-border-radius: 21px;
    -webkit-border-radius: 21px;
    -ms-border-radius: 21px;
    -o-border-radius: 21px;
    box-shadow: 0 1px 0 0 #00000028;
    -moz-box-shadow: 0 1px 0 0 #00000028;
    -webkit-box-shadow: 0 1px 0 0 #00000028;
    -o-box-shadow: 0 1px 0 0 #00000028;
    background-color: #0093EE;
    min-width: 140px;
    margin: auto;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 40px;
    padding: 0 40px; }
    .section-modal-dialog__btn-detail:hover {
      color: #fff; }
    .section-modal-dialog__btn-detail.btn-sm {
      min-height: 40px; }

.section-modal-footer {
  text-align: center; }

.search-header {
  border-radius: 8px;
  background-color: rgba(10, 44, 77, 0.05) !important; }
  .search-header .text-search-header {
    background-color: rgba(10, 44, 77, 0.05);
    min-width: 295px;
    opacity: 0.5; }
  .search-header button {
    background-color: rgba(10, 44, 77, 0.05);
    opacity: 0.5;
    width: 40px;
    padding: 0;
    box-shadow: unset;
    color: #212529;
    font-size: 14px; }

@media (max-width: 576px) {
  .tool-bar-user-dropdown .user-name-dropdown {
    display: none !important; }
  .search-header .text-search-header {
    max-width: 100px;
    min-width: unset; } }

.btn-customer {
  color: #f5f5f5;
  background-color: #0093ee;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: pre; }
  .btn-customer i {
    color: #f5f5f5; }
.img-icon-sile-bar {
  padding-left: 7px;
  padding-right: 13px; }
.nav-collapse {
  display: none; }

.nav-collapse.show {
  display: block; }

.aside-content-wrapper .aside-content {
  background-color: #005E9E !important; }

.aside-toolbar {
  background-color: #005E9E !important;
  box-shadow: none  !important; }
  .aside-toolbar .h6 {
    font-weight: 700;
    color: #fff !important;
    background-image: url(./fonts/NKK_Text.9749999eb3854a79278aac3b016882a7.svg);
    width: 153px;
    height: 15px;
    background-repeat: no-repeat; }

.layout #wrapper > div.main-aside-fuse-bar-close > .aside > .aside-content-wrapper > .aside-content > .aside-toolbar .logo .logo-icon {
  width: 45px !important;
  height: 45px !important;
  background: #005E9E !important; }

.layout #wrapper > div.main-aside-fuse-bar-open > .aside > .aside-content-wrapper > .aside-content > .aside-toolbar .logo .logo-icon {
  width: 45px !important;
  height: 45px !important;
  background: #005E9E !important; }

/**aside sub-header**/
#sidenav .subheader {
  line-height: 1;
  height: 3.4rem !important;
  min-height: 3.4rem !important;
  padding-top: 2px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  font-size: 1.2rem;
  text-transform: uppercase; }

#sidenav .subheader:first-child {
  margin-top: 0 !important; }

#sidenav .subheader-height {
  height: 50px !important; }

#sidenav .nav-item .nav-link > span {
  white-space: normal !important;
  margin-right: 5px; }

#sidenav .nav-item .nav-link {
  padding-left: 24px;
  padding-right: 24px;
  cursor: pointer;
  color: #FFFFFF !important; }

#sidenav .nav-item .nav-link.active {
  background-color: #FFFFFF; }

#sidenav .nav-item .nav-link.active:hover,
#sidenav .nav-item .nav-link:hover {
  color: #FFFFFF !important; }
  #sidenav .nav-item .nav-link.active:hover i,
  #sidenav .nav-item .nav-link:hover i {
    color: #FFFFFF !important; }

#sidenav ul.nav-collapse > li > .nav-link {
  padding-left: 3.6rem !important; }

#sidenav .subheader:before {
  border-top-color: rgba(255, 255, 255, 0.5) !important; }

#reactBody:not(.fuse-aside-folded) #sidenav a.nav-link {
  transition: all 0.2s;
  padding-left: 14px; }
  #reactBody:not(.fuse-aside-folded) #sidenav a.nav-link i.icon {
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    text-align: center;
    color: #fff;
    transition: all 0.2s;
    margin-right: 6px; }

.fuse-bar-backdrop.fuse-bar-backdrop-aside {
  transition: 0.5s all ease; }

#aside {
  transition: 0.3s all ease;
  z-index: 1031 !important; }

.main-aside-fuse-bar-close .fuse-bar-backdrop.fuse-bar-backdrop-aside {
  opacity: 0;
  visibility: hidden; }

.main-aside-fuse-bar-open .fuse-bar-backdrop.fuse-bar-backdrop-aside {
  opacity: 1; }

.main-aside-fuse-bar-open #aside {
  transform: translate3d(0px, 0px, 0px); }

.fuse-aside-folded:not(.fuse-aside-expanded) #sidenav .nav-item .nav-collapse.show {
  display: none !important; }

.fuse-aside-folded:not(.fuse-aside-expanded) .subheader {
  margin-top: 0 !important; }
.add-invite {
  width: 100%; }

table.add-invite tr {
  padding: 5px 0px !important; }

table.add-invite td, table.add-invite th {
  border: none !important;
  padding: 5px !important; }

table.add-invite td.button {
  display: inline-flex;
  justify-content: center; }
/*
input,select,textarea {
    border-radius: 5px !important;
}
*/
.upload-btn {
  padding: 10px;
  background-color: #555;
  color: #FFF; }

.upload-file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1; }

.radio-group-vertical {
  display: inline-flex;
  padding: 10px; }
.fullscreen-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; }

.loading-icon-pulse {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  text-shadow: 10px;
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite; }

@-webkit-keyframes pulse {
  0% {
    width: 100px;
    height: 100px;
    border-radius: 0%;
    background-color: #FFF; }
  50% {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #308bc7; }
  100% {
    width: 100px;
    height: 100px;
    border-radius: 0%;
    background-color: #FFF; } }

@keyframes pulse {
  0% {
    width: 65px;
    height: 65px;
    border-radius: 0%;
    background-color: #a3a3a3; }
  50% {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #308bc7; }
  100% {
    width: 65px;
    height: 65px;
    border-radius: 0%;
    background-color: #a3a3a3; } }
@charset "UTF-8";
.main {
  /*background-color: #FFF;*/ }

.page-container {
  /*background: #FFFFFF;*/
  width: 100%;
  height: calc(100vh - 60px);
  padding: 30px;
  overflow: auto;
  border-left: 0.5px solid rgba(0, 0, 0, 0.1); }

.main .container-fluid {
  padding: 0px; }

@media only screen and (max-width: 550px) {
  .page-container {
    padding: 20px 5px; }
  .text-right {
    /*text-align: left !important;*/ } }

.page-header-narrow {
  height: 7.6rem !important;
  min-height: 7.6rem !important;
  max-height: 7.6rem !important; }

.page-content-module-wrapper {
  width: 100%; }

.todo-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08); }

.page-module-list-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); }

.todo-item.completed {
  background: #eeeeee; }

.page-content-card {
  webkit-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);
  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 (min-width: 992px) {
  .page-content-module-wrapper {
    padding-left: 0 !important; } }

/* FLEX Begin */
.flex-col, .flex-col-auto, .flex-col-1, .flex-col-btn, .flex-col-2, .flex-col-3, .flex-col-4, .flex-col-5, .flex-col-6, .flex-col-7, .flex-col-8, .flex-col-9, .flex-col-10 {
  display: flex;
  text-align: left;
  min-width: 10%; }

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

.flex-col-1 {
  flex: 1; }

.flex-col-btn {
  justify-content: center;
  align-items: center; }

.flex-col-2 {
  flex: 2 1; }

.flex-col-3 {
  flex: 3 1; }

.flex-col-4 {
  flex: 4 1; }

.flex-col-5 {
  flex: 5 1; }

.flex-col-6 {
  flex: 6 1; }

.flex-col-7 {
  flex: 7 1; }

.flex-col-8 {
  flex: 8 1; }

.flex-col-9 {
  flex: 9 1; }

.flex-col-10 {
  flex: 10 1; }

.flex-row, .flex-row-wrap {
  display: flex;
  flex-direction: row; }

.flex-row-wrap {
  flex-wrap: wrap; }

/* FLEX End */
/* react-contextmenu Begin */
.react-contextmenu {
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  color: #373a3c;
  font-size: 16px;
  margin: 2px 0 0;
  min-width: 160px;
  outline: none;
  opacity: 0;
  padding: 5px 0;
  pointer-events: none;
  text-align: left;
  transition: opacity 250ms ease !important; }

.react-contextmenu.react-contextmenu--visible {
  opacity: 1;
  pointer-events: auto;
  z-index: 9999; }

.react-contextmenu-item {
  background: 0 0;
  border: 0;
  color: #373a3c;
  cursor: pointer;
  font-weight: 400;
  line-height: 1.5;
  padding: 3px 20px;
  text-align: inherit;
  white-space: nowrap; }

.react-contextmenu-item.react-contextmenu-item--active,
.react-contextmenu-item.react-contextmenu-item--selected {
  color: #373a3c;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  text-decoration: none; }

.react-contextmenu-item.react-contextmenu-item--disabled,
.react-contextmenu-item.react-contextmenu-item--disabled:hover {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.15);
  color: #878a8c; }

.react-contextmenu-item--divider {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  cursor: inherit;
  margin-bottom: 3px;
  padding: 2px 0; }

.react-contextmenu-item--divider:hover {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.15); }

.react-contextmenu-item.react-contextmenu-submenu {
  padding: 0; }

.react-contextmenu-item.react-contextmenu-submenu > .react-contextmenu-item:after {
  content: "\25B6";
  display: inline-block;
  position: absolute;
  right: 7px; }

.example-multiple-targets::after {
  content: attr(data-count);
  display: block; }

/* react-contextmenu End */
/*Custom DropDown  */
.rw-popup-container {
  min-width: 5% !important;
  width: 100% !important;
  margin: 0 !important;
  /* right: auto; */
  padding: 0 !important;
  left: 0 !important; }

.page-module-list-header .rw-popup-container {
  min-width: 260px !important; }

.rw-popup-transition {
  width: 100% !important;
  /* margin-bottom: 6px; */
  padding: 0 !important; }

.rw-widget {
  width: 100% !important; }

.custom-drop .ai-input-group button {
  background: none; }

.custom-drop .rw-widget-container {
  border: none; }

.custom-drop .rw-widget-input,
.custom-drop .rw-filter-input {
  box-shadow: none; }

.custom-drop .rw-widget-container.rw-state-focus,
.custom-drop .rw-state-focus > .rw-widget-container,
.custom-drop .rw-widget-container.rw-state-focus:hover,
.custom-drop .rw-state-focus > .rw-widget-container:hover {
  background: none !important;
  border: none !important;
  box-shadow: none !important; }

.custom-drop .rw-dropdown-list-input {
  max-width: 100px; }

/* End Custom DropDown  */
/* Bg date-range-picker  */
.date-range-picker {
  display: flex; }

.date-range-picker > div.input-group {
  border: solid 1px #ccc;
  border-radius: 3px;
  margin-left: 10px;
  background-color: #f7f7f7; }

.date-range-picker input {
  border-bottom: none;
  box-shadow: none !important; }

.date-range-picker .input-group-prepend {
  align-self: center;
  padding-left: 4px; }

.search-container {
  flex: 1; }

input.DateInput_input {
  max-width: 120px; }

table.ai-table-bordered thead tr {
  border-bottom: solid 2px #cccccc; }

table.ai-table-bordered tbody tr {
  border-bottom: solid 1px #cccccc; }
.notification-stack-container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  position: fixed;
  top: 7rem;
  right: 1rem;
  z-index: 1060; }
.socket-notification {
  width: 320px;
  padding: 8px 16px;
  border: 1px solid #000000;
  border-radius: 4px;
  display: flex;
  position: relative; }
  .socket-notification .title {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; }
  .socket-notification .description {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; }
  .socket-notification .close {
    position: absolute;
    top: 2px;
    right: 2px; }
  .socket-notification.socket-notification--success {
    border-color: #2e7d32;
    background-color: #edf7ed; }
    .socket-notification.socket-notification--success .icon {
      color: #2e7d32; }
    .socket-notification.socket-notification--success .title,
    .socket-notification.socket-notification--success .description {
      color: #1e4620; }
  .socket-notification.socket-notification--warning {
    border-color: #ef6c00;
    background-color: #fff4e5; }
    .socket-notification.socket-notification--warning .icon {
      color: #ef6c00; }
    .socket-notification.socket-notification--warning .title,
    .socket-notification.socket-notification--warning .description {
      color: #663c00; }
  @media (max-width: 576px) {
    .socket-notification {
      width: 100%; } }
.modal-confirm {
  position: absolute !important;
  top: -10vh;
  left: 0;
  right: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%; }
  .modal-confirm .modal-content {
    width: 500px; }

.modal-header {
  background-color: #005E9E;
  padding: 10px 15px;
  padding-right: 0px; }
  .modal-header > * {
    color: white; }
  .modal-header > h5,
  .modal-header > h6 {
    display: block;
    width: 100%; }
    .modal-header > h5 strong,
    .modal-header > h6 strong {
      font-weight: normal !important; }
    .modal-header > h5 span,
    .modal-header > h6 span {
      display: block; }
  .modal-header .close-modal {
    position: absolute;
    padding: 0;
    min-width: unset;
    top: 6px;
    right: 10px; }
  .modal-header .footer-modal-center {
    display: flex;
    justify-content: center !important;
    align-items: center; }
.fullscreen-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; }

.loading-icon-pulse {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  text-shadow: 10px;
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite; }

@-webkit-keyframes pulse {
  0% {
    width: 100px;
    height: 100px;
    border-radius: 0%;
    background-color: #FFF; }
  50% {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #308bc7; }
  100% {
    width: 100px;
    height: 100px;
    border-radius: 0%;
    background-color: #FFF; } }

@keyframes pulse {
  0% {
    width: 65px;
    height: 65px;
    border-radius: 0%;
    background-color: #a3a3a3; }
  50% {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #308bc7; }
  100% {
    width: 65px;
    height: 65px;
    border-radius: 0%;
    background-color: #a3a3a3; } }
/**
  override DateTimePicker css of react-dates
**/
.SingleDatePicker {
  border: none !important;
  flex-direction: row;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent; }

.SingleDatePickerInput {
  border: none !important;
  flex-direction: row;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent; }

.SingleDatePicker_picker {
  z-index: 2;
  background-color: transparent; }

.DateInput_input {
  padding: 0px 1rem;
  font-size: 1.5rem;
  background-color: transparent;
  min-width: auto; }

.DateInput {
  background-color: transparent;
  height: auto;
  min-width: auto; }

.DateInput_fang {
  top: 35px !important;
  z-index: 3; }

.SingleDatePicker_picker {
  top: 45px !important; }

.CalendarMonth_caption > strong {
  text-transform: capitalize; }

.DayPicker_weekHeader_li > small {
  font-weight: bold;
  font-size: 1.2rem; }

.DateRangePickerInput_clearDates_svg {
  margin-top: -3px; }

.DateRangePickerInput_clearDates_default {
  padding: 5px;
  outline: none !important; }

.SingleDatePickerInput_calendarIcon {
  box-shadow: none;
  background-color: transparent;
  padding: 0;
  margin: 0; }

.date-picker-icon {
  margin-top: -5px; }

.date-picker-icon .DateInput {
  display: none !important; }

.date-picker-icon .SingleDatePickerInput_calendarIcon {
  outline: none !important; }

.drop-up-picker .SingleDatePicker_picker {
  top: -300px !important; }

.drop-up-picker .DateInput_fang {
  top: -11px !important;
  transform: rotate(180deg); }
.text-input {
  width: 100% !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 3px !important; }
  .text-input.disabled-input {
    background-color: #eee; }

input {
  padding: 0 10px; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s; }

.text-area {
  height: auto !important;
  width: 100% !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 3px !important;
  padding: 3px 10px !important;
  box-shadow: none !important; }

.d-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }

.d-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start; }

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

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

.date-picker-input {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 3px !important; }

.date-picker-input .DateInput_input {
  width: auto !important; }

.date-picker-input .SingleDatePicker {
  justify-content: flex-start !important; }

.date-picker-input .SingleDatePicker > div {
  width: 100%; }

.date-picker-input .DateInput_input {
  max-width: 100% !important;
  width: 100% !important; }

.date-picker-input .DateInput {
  width: 100% !important; }

#profile .form-group {
  will-change: color !important; }

#radio-group-custom .form-group {
  padding-top: 0rem !important; }

/**
File input
**/
.file-input {
  border: none !important;
  background: transparent !important;
  visibility: hidden;
  position: absolute;
  width: auto;
  display: block; }

select.form-control {
  max-width: 100% !important;
  background-position: right 1rem center; }

.rw-widget-container--error {
  border: 1px solid #f44336 !important; }
.check-ip-confirm-modal {
  width: auto;
  max-width: 600px; }
  @media (max-width: 576px) {
    .check-ip-confirm-modal {
      width: 100vw;
      max-width: unset; } }
.page-header {
  height: auto !important;
  min-height: auto !important;
  max-height: auto !important; }

.page-content-wrapper {
  display: flex;
  flex-direction: row !important; }

.page-content-card-custom {
  background: #FFF;
  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); }

@media (max-width: 991px) {
  .hidden-md-down {
    display: none;
    visibility: hidden; } }
/**contact aside**/
.ai-override-avatar {
  width: 120px !important;
  height: 120px !important; }

.align-items-center {
  text-align: center; }

.nav-inline {
  display: inline-block;
  padding: 5px;
  margin: 5px;
  width: 34px;
  height: 34px;
  line-height: 24px;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%; }

aside.page-sidebar .nav-item.active > a {
  background-color: #2196F3 !important;
  color: #FFF; }

a.tag-label {
  text-decoration: none; }

ul.nav.two-levels > li > a {
  padding: 0 10px; }

ul.nav.two-levels li > ul {
  margin: 0; }

ul.nav.two-levels li > ul li {
  list-style: none; }

ul.nav.two-levels li > ul li > a {
  display: flex;
  text-decoration: none;
  padding: 10px 24px; }

ul.nav.two-levels li > ul li.active a {
  color: #fff;
  background-color: #2196F3 !important; }

.fuse-bar-backdrop {
  transition: 0.5s all ease; }

.page-sidebar.fuse-bar {
  transition: 0.3s all ease; }

.page-sidebar-card-close .fuse-bar-backdrop {
  opacity: 0;
  visibility: hidden; }

.page-sidebar-card-open .page-sidebar.fuse-bar {
  transform: translate3d(0px, 0px, 0px); }

.page-sidebar-card-open .fuse-bar-backdrop {
  opacity: 1 !important; }

.fuse-bar-open {
  display: none; }

.icon-backburger-back {
  transform: rotate(180deg);
  cursor: pointer; }
.dataTables_footer {
  display: flex;
  flex-direction: row;
  flex: 1 0 auto;
  flex-wrap: wrap; }
  .dataTables_footer .dataTables_info,
  .dataTables_footer .dataTables_paginate {
    display: flex;
    flex: 1 0 auto;
    align-items: center; }
  .dataTables_footer .dataTables_info {
    justify-content: flex-start;
    text-align: left;
    font-weight: 700;
    padding: 2rem; }
  .dataTables_footer .dataTables_paginate {
    justify-content: flex-end; }

.dataTables_paginate {
  padding: 0 .8rem;
  height: 6.4rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  float: right; }
  .dataTables_paginate > .pagination {
    margin: 0; }
  .dataTables_paginate .paginate_button {
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: 0.5em 1em;
    margin-left: 2px;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    *cursor: hand;
    color: inherit !important;
    border: 1px solid transparent;
    border-radius: 2px; }
    .dataTables_paginate .paginate_button.current, .dataTables_paginate .paginate_button.current:hover {
      color: inherit !important;
      border: 1px solid #979797; }
    .dataTables_paginate .paginate_button.disabled, .dataTables_paginate .paginate_button.disabled:hover, .dataTables_paginate .paginate_button.disabled:active {
      cursor: default;
      color: #666 !important;
      border: 1px solid transparent;
      background: transparent;
      box-shadow: none; }
    .dataTables_paginate .paginate_button:hover {
      color: inherit !important;
      border: 1px solid #111; }
    .dataTables_paginate .paginate_button:active {
      outline: none;
      box-shadow: inset 0 0 3px #111; }
  .dataTables_paginate .ellipsis {
    padding: 0 1em; }
#prioritySelect {
  margin-right: 0 !important;
  overflow: auto; }
  #prioritySelect li {
    /*min-height: auto;*/
    cursor: pointer; }
/**
  override DateTimePicker css of react-dates
**/
.SingleDatePicker {
  border: none !important;
  flex-direction: row;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent; }

.SingleDatePickerInput {
  border: none !important;
  flex-direction: row;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent; }

.SingleDatePicker_picker {
  z-index: 2;
  background-color: transparent; }

.DateInput_input {
  padding: 0px 1rem;
  font-size: 1.5rem;
  background-color: transparent;
  min-width: auto; }

.DateInput {
  background-color: transparent;
  height: auto;
  min-width: auto; }

.DateInput_fang {
  top: 35px !important;
  z-index: 3; }

.SingleDatePicker_picker {
  top: 45px !important; }

.CalendarMonth_caption > strong {
  text-transform: capitalize; }

.DayPicker_weekHeader_li > small {
  font-weight: bold;
  font-size: 1.2rem; }

.DateRangePickerInput_clearDates_svg {
  margin-top: -3px; }

.DateRangePickerInput_clearDates_default {
  padding: 5px;
  outline: none !important; }

.SingleDatePickerInput_calendarIcon {
  box-shadow: none;
  background-color: transparent;
  padding: 0;
  margin: 0; }

.date-picker-icon {
  margin-top: -5px; }

.date-picker-icon .DateInput {
  display: none !important; }

.date-picker-icon .SingleDatePickerInput_calendarIcon {
  outline: none !important; }

.drop-up-picker .SingleDatePicker_picker {
  top: -300px !important; }

.drop-up-picker .DateInput_fang {
  top: -11px !important;
  transform: rotate(180deg); }
.member-list-wrapper {
  max-height: 300px;
  overflow: auto;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  z-index: 1; }

.list-assigned-users > li:first-child {
  padding-left: 0 !important; }

.btn-assign-member {
  width: 4.1rem;
  min-width: 4.1rem;
  height: 4.1rem;
  border: solid 1px #ccc;
  border-radius: 50%;
  line-height: 4.1rem;
  padding: 0 !important;
  background: #f7f7f7;
  cursor: pointer; }
  .btn-assign-member i {
    line-height: 4.1rem; }

.btn-assign-member:hover {
  background-color: #2196F3;
  border-color: #2196F3;
  border-width: 1px; }
  .btn-assign-member:hover i {
    color: #ffffff; }

.member-list {
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); }

.member-list-item:hover {
  background: #2196F3;
  color: #FFF; }
  .member-list-item:hover i {
    color: #FFF !important; }

.member-search-form {
  padding: 0.8rem 1.6rem; }

.member-search-input {
  padding: 0.3rem 0.6rem; }
#add-task {
  font-size: 1.5em;
  padding: 5px;
  margin: 0 0 6px; }

.member-list-wrapper {
  overflow: visible !important;
  margin-left: 0 !important;
  left: 8px; }
  .member-list-wrapper .member-list {
    padding: 5px 0 0;
    max-height: 340px;
    overflow: auto; }
  .member-list-wrapper .list-group-item {
    cursor: pointer; }

.date-time-wrap {
  border-bottom: solid 1px #aaaaaa; }
  .date-time-wrap > * {
    display: inline-block;
    width: auto !important; }

#due-time,
#date {
  border: none;
  outline: none;
  color: #212529 !important;
  font-weight: normal;
  font-family: "Roboto";
  font-size: 16px; }

.todo-items .title {
  font-size: 1.5rem;
  font-weight: 500; }

.tags .tag {
  background-color: rgba(0, 0, 0, 0.08);
  color: black; }

.tags .tag .tag-color {
  width: .8rem;
  height: .8rem;
  -webkit-border-radius: 50%;
  border-radius: 50%; }

.avatar-tooltip {
  position: absolute;
  left: auto;
  top: 6rem;
  background: #adadad;
  color: #FFF;
  padding: 0px 5px;
  text-align: center;
  border-radius: 5px;
  display: none; }

.avatar-icon:hover .avatar-tooltip {
  display: block; }

.avatar.smaller {
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  line-height: 0rem;
  text-indent: 2000px; }

.avatar-icon.more {
  position: relative; }

.avatar-icon.more .avatar-plus {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 3rem;
  height: 3rem;
  line-height: 2;
  color: #FFF;
  background: rgba(0, 0, 0, 0.3);
  font-size: 2rem;
  border-radius: 50%; }

.dropdown-toggle::after {
  position: static;
  content: ' ' !important;
  opacity: 1;
  transform: none;
  transform-origin: 0 !important;
  background: rgba(0, 0, 0, 0) !important;
  border-radius: 0; }

.btn-group-status .btn {
  color: #ffffff !important; }

.btn-group-status .btn:first-child {
  min-width: 115px; }

a {
  cursor: pointer; }

/* aside tags list*/
.aside-tags-list {
  clear: both;
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0rem 2rem 1rem 2rem;
  flex-direction: row;
  flex-wrap: wrap; }

.aside-tag-item {
  padding: 5px; }

.aside-tag-item.active {
  background-color: #EEE;
  border-radius: 5px; }

.text-danger i {
  color: #F44336; }

.nav-item.active {
  color: #FFF !important; }
  .nav-item.active .text-danger {
    color: #FFF  !important; }
  .nav-item.active i {
    color: #FFF; }

.status-container {
  min-width: 160px; }

.todo-item {
  display: flex; }
  .todo-item .info {
    flex: 1;
    display: flex; }
    .todo-item .info .taskInfo {
      flex: 1; }

.assigneds {
  display: flex; }
#page-header.page-header-breadcrumb {
  height: auto !important; }

.breadcrumb {
  margin-bottom: 0 !important;
  font-weight: normal !important; }

.breadcrumb a,
.breadcrumb span {
  text-decoration: none !important; }

.breadcrumb i.icon-chevron-right {
  margin: 0 10px; }
.calendar__day .cell__axis, .calendar__week .cell__axis {
  width: 41px;
  padding: 0 4px;
  padding-left: 2.4rem;
  white-space: nowrap;
  border-right: 1px solid #ddd;
  height: 10rem; }

.calendar__view table {
  width: 100%; }
  .calendar__view table thead,
  .calendar__view table tbody {
    width: 100%; }

.calendar__day {
  color: #555; }
  .calendar__day .cell__content {
    padding: 0.8rem; }

.calendar__week .cell__day {
  padding: 0.8rem;
  border-right: 1px solid #ddd;
  width: calc((100% - 44px) / 7); }

.calendar__week .cell__content {
  padding: 0.8rem;
  border: 1px solid #ddd;
  width: calc((100% - 44px) / 7); }

.calendar__month .month__header .header__cell {
  padding: 0.8rem;
  border: none;
  font-weight: 500;
  color: #555; }

.calendar__month .month__body .body__cell {
  height: 115px;
  width: calc(100% / 7);
  border-width: 1px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: end;
  vertical-align: top;
  padding: 8px;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none; }
  .calendar__month .month__body .body__cell:first-child {
    border-left: 1px solid #ddd; }
  .calendar__month .month__body .body__cell.selected {
    background-color: #4caf50 !important;
    color: #fff; }
  .calendar__month .month__body .body__cell:focus {
    outline: none; }

.calendar__month .month__body .day__future, .calendar__month .month__body .day__past {
  opacity: 0.7; }

.calendar__month .month__body .week__number {
  background: #f1f1f1;
  text-align: center !important;
  vertical-align: middle !important; }

.day_disabled {
  background-color: rgba(213, 213, 213, 0.5); }

.size-sm {
  height: auto !important; }

/** Work shift calendar **/
#absense-dates .datepicker,
#absense-dates .datepicker table.table-condensed {
  width: 100%; }

#absense-dates .datepicker table.table-condensed td.day {
  min-height: 30px;
  position: relative;
  line-height: 30px; }

.workshift-picker {
  border: solid 1px #cccccc;
  border-radius: 4px;
  padding: 0;
  background: #fff;
  position: absolute;
  z-index: 10000;
  min-width: 200px;
  text-align: left;
  top: 40px;
  -webkit-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);
  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);
  text-shadow: none; }

.workshift-picker > ul {
  margin: 0;
  padding: 0; }

.workshift-picker > ul a.workshift {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color: #333333;
  border-bottom: solid 1px #f3f3f3 !important; }

.workshift-picker > ul li:last-child a.workshift {
  border-bottom: none !important; }

.workshift-picker > ul a.choose,
.workshift-picker > ul a:hover {
  background: #2196f3;
  color: #fff !important; }

.bs-popover-bottom .arrow {
  left: 180px !important; }
/**
  override DateTimePicker css of react-dates
**/
.DateRangePicker {
  margin: 1px; }

.DateRangePickerInput,
.DateInput,
.DateInput_input {
  border-radius: 5px !important; }

.DateRangePickerInput {
  height: 35px; }

.DateInput,
.DateInput_input {
  height: 33px;
  font-size: 1.5rem;
  width: auto; }

.DateInput_fang {
  top: 35px !important; }

.DateRangePicker_picker {
  top: 46px !important; }

.CalendarMonth_caption > strong {
  text-transform: capitalize; }

.DayPicker_weekHeader_li > small {
  font-weight: bold;
  font-size: 1.2rem; }

.DateRangePickerInput_clearDates_svg {
  margin-top: -3px; }

.DateRangePickerInput_clearDates_default {
  padding: 5px;
  outline: none !important; }

.DayPickerNavigation_button__horizontal,
.DateRangePickerInput_clearDates_default {
  box-shadow: none; }

.DateInput_input__readOnly {
  cursor: pointer; }
.custom-single-date-picker .SingleDatePicker {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  height: 30px;
  border-radius: 3px;
  background-color: white;
  width: 150px; }
  .custom-single-date-picker .SingleDatePicker div {
    padding-right: 10px; }
  .custom-single-date-picker .SingleDatePicker .SingleDatePickerInput {
    width: 100%; }
    .custom-single-date-picker .SingleDatePicker .SingleDatePickerInput .DateInput {
      position: relative !important;
      width: 100%; }
    .custom-single-date-picker .SingleDatePicker .SingleDatePickerInput input.DateInput_input {
      max-width: unset;
      padding-left: 10px;
      width: 100%; }

.custom-single-date-picker .rw-widget-input.rw-widget-picker.rw-widget-container {
  height: 30px; }
.absence-modal table.cus-table-border {
  width: 100%; }
.text-input {
  height: auto !important;
  width: 100% !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 3px !important;
  padding: 3px 5px !important;
  box-shadow: none !important; }

.d-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }

.d-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start; }

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

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

.date-picker-input {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 3px !important; }

.date-picker-input .DateInput_input {
  width: auto !important; }

.date-picker-input .SingleDatePicker {
  justify-content: flex-start !important; }

.date-picker-input .SingleDatePicker > div {
  width: 100%; }

.date-picker-input .DateInput_input {
  max-width: 100% !important;
  width: 100% !important; }

.date-picker-input .DateInput {
  width: 100% !important; }

#profile .form-group {
  will-change: color !important; }

#radio-group-custom .form-group {
  padding-top: 0rem !important; }

/**
File input
**/
.file-input {
  border: none !important;
  background: transparent !important;
  visibility: hidden;
  position: absolute;
  width: auto;
  display: block; }
.ai-anim {
  -webkit-transition: all 0.2s linear !important;
  -moz-transition: all 0.2s linear !important;
  -o-transition: all 0.2s linear !important;
  transition: all 0.2s linear !important; }

.ai-fadein > * {
  -webkit-animation: fadein 0.4s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 0.4s;
  /* Firefox < 16 */
  -ms-animation: fadein 0.4s;
  /* Internet Explorer */
  -o-animation: fadein 0.4s;
  /* Opera < 12.1 */
  animation: fadein 0.4s; }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.not-allow-select {
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Likely future */ }

.absence-list .list-group .list-group-item > .list-item-content {
  display: flex;
  flex-direction: row;
  flex: 1; }

.absence-from-date .SingleDatePicker_picker {
  z-index: 3; }

.overflow-hidden {
  overflow: hidden; }

.displayAbsences .badge {
  margin: 0 5px 5px 0;
  float: left;
  padding: 5px 5px 0px 5px; }

.displayAbsences:hover {
  background-color: var(--light); }

.displayAbsences:last-child .badge {
  margin-bottom: 0; }

.d-pre-line {
  white-space: pre-line; }

.d-badge-pre-line {
  white-space: pre-line;
  line-height: 1.5rem;
  margin-bottom: 0.5rem; }

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

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

.badge-absence {
  background-color: #ececec;
  color: #000; }

.absence-detail {
  overflow: auto;
  max-height: 17rem; }

@media screen and (max-width: 576px) {
  .displayAbsences-mobile {
    margin-bottom: 2rem; }
  .displayAbsences-mobile .title-item {
    width: 35%;
    font-weight: bold; }
  .displayAbsences-mobile .value-item {
    width: 65%; } }

@media (min-width: 992px) {
  .modal-dialog.modal-lg {
    max-width: 900px; } }

@media (min-width: 1200px) {
  .modal-dialog.modal-lg {
    max-width: 1200px; } }
.page-content-card .nav-tabs {
  padding: 0 2.4rem;
  background-color: #FFFFFF;
  -webkit-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);
  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); }

.nav-item .nav-link {
  padding-left: 30px;
  padding-right: 30px; }

.avatar-lg {
  width: 60px;
  height: 60px;
  text-indent: 2000px; }

.nav-tabs .nav-link.active:not(.dropdown-toggle):after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px !important;
  background-color: #3C4252; }

.font-size-3 {
  font-size: 2em; }

.overflow-hidden {
  overflow: hidden; }

.displayAbsences:hover {
  background-color: var(--light); }

.displayAbsences:last-child .badge {
  margin-bottom: 0; }

.d-pre-line {
  white-space: pre-line; }

.d-badge-pre-line {
  white-space: pre-line;
  line-height: 1.5rem;
  margin-bottom: 0.5rem; }

.displayAbsences:last-child .badge {
  margin-bottom: 0; }

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

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

.badge-absence {
  background-color: #ececec;
  color: #000; }

.absence-detail {
  overflow: auto;
  max-height: 17rem; }

@media screen and (min-width: 1200px) {
  .stt {
    max-width: 6%;
    flex: 0 0 6%; }
  .fullname {
    flex: 0 0 19%;
    max-width: 19%; }
  .pt-absence-date {
    padding-top: 0.6rem; } }

@media screen and (max-width: 576px) {
  .displayAbsences-mobile {
    margin-bottom: 2rem; }
  .displayAbsences-mobile .title-item {
    width: 35%;
    font-weight: bold; }
  .displayAbsences-mobile .value-item {
    width: 65%; } }
.page-content-card .nav-tabs {
  padding: 0 2.4rem;
  background-color: #ffffff;
  -webkit-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);
  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); }

.nav-item .nav-link {
  padding-left: 30px;
  padding-right: 30px; }

.avatar-lg {
  width: 60px;
  height: 60px;
  text-indent: 2000px; }

.nav-tabs .nav-link.active:not(.dropdown-toggle):after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px !important;
  background-color: #3c4252; }

.overflow-hidden {
  overflow: hidden; }

.navbar-absence .SearchText-absenceManagerHR {
  height: 32px !important; }

.navbar-absence .absenceManagerHR-from-date .SingleDatePicker {
  width: 100%;
  height: 32px; }

.navbar-absence .absenceManagerHR-from-date .SingleDatePicker > div:first-child {
  width: 100%; }

.displayAbsences:hover {
  background-color: var(--light); }

.displayAbsences:last-child .badge {
  margin-bottom: 0; }

.d-pre-line {
  white-space: pre-line; }

.d-badge-pre-line {
  white-space: pre-line;
  line-height: 1.5rem;
  margin-bottom: 0.5rem; }

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

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

.text-none {
  text-transform: none; }

.badge-absence {
  background-color: #ececec;
  color: #000; }

.absence-detail {
  overflow: auto;
  max-height: 17rem; }

@media screen and (min-width: 1200px) {
  .stt {
    max-width: 6%;
    flex: 0 0 6%; }
  .fullnameHr {
    flex: 0 0 13%;
    max-width: 13%; }
  .action-absenceManagerHR {
    max-width: 12%; }
  .pt-absence-date {
    padding-top: 0.6rem; } }

@media screen and (max-width: 576px) {
  .displayAbsences-mobile {
    margin-bottom: 2rem; }
  .displayAbsences-mobile .title-item {
    width: 35%;
    font-weight: bold; }
  .displayAbsences-mobile .value-item {
    width: 65%; } }
.page-content-card .nav-tabs {
  padding: 0 2.4rem;
  background-color: #ffffff;
  -webkit-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);
  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); }

.nav-item .nav-link {
  padding-left: 30px;
  padding-right: 30px; }

.avatar-lg {
  width: 60px;
  height: 60px;
  text-indent: 2000px; }

.nav-tabs .nav-link.active:not(.dropdown-toggle):after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px !important;
  background-color: #3c4252; }

.overflow-hidden {
  overflow: hidden; }

.navbar-absence .SearchText-absenceManagerHR {
  height: 32px !important; }

.navbar-absence .absenceManagerHR-from-date .SingleDatePicker {
  width: 100%;
  height: 32px; }

.navbar-absence .absenceManagerHR-from-date .SingleDatePicker > div:first-child {
  width: 100%; }

.displayAbsences:hover {
  background-color: var(--light); }

.displayAbsences:last-child .badge {
  margin-bottom: 0; }

.d-pre-line {
  white-space: pre-line; }

.d-badge-pre-line {
  white-space: pre-line;
  line-height: 1.5rem;
  margin-bottom: 0.5rem; }

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

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

.text-none {
  text-transform: none; }

.badge-absence {
  background-color: #ececec;
  color: #000; }

.absence-detail {
  overflow: auto;
  max-height: 17rem; }

@media screen and (min-width: 1200px) {
  .stt {
    max-width: 6%;
    flex: 0 0 6%; }
  .fullname {
    flex: 0 0 19%;
    max-width: 19%; }
  .pt-absence-date {
    padding-top: 0.6rem; } }

@media screen and (max-width: 576px) {
  .displayAbsences-mobile {
    margin-bottom: 2rem; }
  .displayAbsences-mobile .title-item {
    width: 35%;
    font-weight: bold; }
  .displayAbsences-mobile .value-item {
    width: 65%; } }
#add-task {
  font-size: 1.5em;
  padding: 5px;
  margin: 0 0 6px; }

.card-table {
  padding: 15px;
  background-color: #fff;
  border-radius: 8px; }

.member-list-wrapper {
  overflow: visible !important;
  margin-left: 0 !important;
  left: 8px; }
  .member-list-wrapper .member-list {
    padding: 5px 0 0;
    max-height: 340px;
    overflow: auto; }
  .member-list-wrapper .list-group-item {
    cursor: pointer; }

.date-time-wrap {
  border-bottom: solid 1px #aaaaaa; }
  .date-time-wrap > * {
    display: inline-block;
    width: auto !important; }

#due-time,
#date {
  border: none;
  outline: none;
  color: #212529 !important;
  font-weight: normal;
  font-family: "Roboto";
  font-size: 16px; }

.todo-items .title {
  font-size: 1.5rem;
  font-weight: 500; }

.tags .tag {
  background-color: rgba(0, 0, 0, 0.08);
  color: black; }

.tags .tag .tag-color {
  width: .8rem;
  height: .8rem;
  -webkit-border-radius: 50%;
  border-radius: 50%; }

.avatar-tooltip {
  position: absolute;
  left: auto;
  top: 6rem;
  background: #adadad;
  color: #FFF;
  padding: 0px 5px;
  text-align: center;
  border-radius: 5px;
  display: none; }

.avatar-icon:hover .avatar-tooltip {
  display: block; }

/* Material style */
button {
  border: none;
  cursor: pointer;
  color: white;
  padding: 15px 40px;
  border-radius: 2px;
  font-size: 22px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  background: #2196F3; }

/* Ripple magic */
button {
  position: relative;
  overflow: hidden; }

button:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%; }

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1; }
  20% {
    transform: scale(25, 25);
    opacity: 1; }
  100% {
    opacity: 0;
    transform: scale(40, 40); } }

button:focus:not(:active)::after {
  animation: ripple 1s ease-out; }

.time-sheet table tr th,
.time-sheet table tr td {
  padding: 10px;
  border: 1px solid #E9ECEF; }
.week-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-content: center; }

.week-col {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 10%;
  margin: 1px; }

.week-col p {
  word-wrap: break-word;
  white-space: pre-wrap; }

.week-filter-col {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: top;
  align-items: center;
  min-width: 10%;
  margin: 1px; }

.page-content-card .nav-tabs {
  padding: 0 2.4rem;
  background-color: #FFFFFF;
  -webkit-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);
  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); }

.nav-item .nav-link {
  padding-left: 30px;
  padding-right: 30px; }

.avatar-lg {
  width: 60px;
  height: 60px; }

.search-list > li {
  cursor: pointer; }

.week-schedule td {
  border: 1px solid rgba(0, 0, 0, 0.1); }

.schedule-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 0.2rem;
  max-width: 10rem;
  background-color: #eee;
  text-shadow: #000;
  font-size: unset;
  box-shadow: none;
  border: none;
  outline: none !important; }

.schedule-card :hover {
  opacity: 0.8; }

.schedule-card :active {
  opacity: 0.3; }

.table-borderless > tbody > tr > td,
.table-borderless > tbody > tr > th,
.table-borderless > tfoot > tr > td,
.table-borderless > tfoot > tr > th,
.table-borderless > thead > tr > td,
.table-borderless > thead > tr > th {
  border: none; }

#new-work-schedule table {
  margin: 0; }
  #new-work-schedule table .DateRangePickerInput_1 {
    width: 100%; }

#new-work-schedule table td:not(:first-child) {
  border-left: 1px solid #eee; }

/*
  Move from add new work schedule
*/
.page-content-card .nav-tabs {
  padding: 0 2.4rem;
  background-color: #FFFFFF;
  -webkit-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);
  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); }

.nav-item .nav-link {
  padding-left: 30px;
  padding-right: 30px; }

.avatar-lg {
  width: 60px;
  height: 60px; }

.search-list > li {
  cursor: pointer; }

.week-schedule td {
  border: 1px solid rgba(0, 0, 0, 0.2) !important; }

.schedule-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 0.2rem;
  max-width: 10rem;
  background-color: #eee;
  text-shadow: #000; }

.thead-header th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  white-space: nowrap; }

.thead th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important; }

.tbody-height td {
  height: 60px; }

#new-work-schedule .table {
  width: 99.9%; }

#new-work-schedule .table-bordered th {
  border: 1px solid #e9ecef !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important; }

.dropdown-circle-btn {
  box-shadow: none;
  border: 0.5px solid #CCC; }

.dropdown-circle-btn.no-border {
  border: none !important; }

.dropleft {
  left: auto;
  right: 80%;
  top: 80%; }

.dropdown {
  outline: none; }

.droplist.dropup {
  top: -230px; }

.droplist.dropup.callout::before,
.droplist.dropup.callout::after {
  top: 249px;
  transform: rotate(180deg); }

.dropdown-fit-parent {
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex; }

.dropdown-fit-parent .dropdown-menu {
  top: 70px; }

.schedule-search-bar {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 'none'; }

.schedule-table td {
  border: 1px solid rgba(0, 0, 0, 0.1); }

.schedule-table td:not(:first-child):hover {
  opacity: 0.8;
  background-color: #ddd; }

.staff-chip > span {
  font-size: 1.4rem !important; }

.staff-chip > img.avatar {
  height: 4rem !important;
  width: 4rem !important;
  min-width: 4rem !important;
  text-indent: 4rem;
  overflow: hidden;
  border: solid 1px #e0e0e0; }

.staff-chip.active {
  background-color: #00a1ff; }
  .staff-chip.active > img.avatar {
    border-color: #00a1ff; }
  .staff-chip.active span {
    color: white; }

.input-group-append {
  margin-left: 1px; }

.dropdownlist-custom .rw-dropdown-list .rw-widget {
  border: none;
  clear: both; }

.dropdownlist-custom .rw-widget-input.rw-widget-picker.rw-widget-container {
  border: none !important;
  box-shadow: none; }

.dropdownlist-custom .rw-select button .rw-btn .rw-button-select {
  background: transparent !important; }

.dropdownlist-custom .rw-state-focus > .rw-widget-container:hover {
  outline: none;
  box-shadow: none; }

.dropdownlist-custom .rw-list {
  overflow-x: hidden; }

.MuiListItemSecondaryAction-root {
  position: static !important;
  transform: translateY(0%) !important; }
.month__body {
  border-top: 1px solid #ddd;
  background: #ffffff; }

.workshift-item {
  display: inline-block; }
  .workshift-item span.workshift-time {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: solid 1px rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.6); }
.search-filter select.form-control {
  width: 50%;
  text-overflow: ellipsis;
  background-position: right 0rem center; }

.custom-hrm .ai-input-group {
  border: solid 1px rgba(0, 0, 0, 0.1) !important;
  border-radius: 5px !important; }
.tags {
  display: flex; }

.tag.badge {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0; }

.tag > div {
  padding: 5px; }

.tag .edit-btn {
  margin-left: 10px;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 10px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  text-decoration: none; }

.tag .edit-btn:hover {
  background-color: #2196f3;
  color: #fff; }

.tag .edit-btn:hover i {
  color: #fff; }

aside.page-sidebar .nav-item.active > a {
  background-color: #2196F3 !important;
  color: #FFF; }

a.tag-label {
  text-decoration: none; }

ul.nav.two-levels > li > a {
  padding: 0 10px;
  height: auto;
  min-height: 4.8rem; }

ul.nav.two-levels li > ul {
  margin: 0; }

ul.nav.two-levels li > ul li {
  list-style: none; }

ul.nav.two-levels li > ul li > a {
  display: flex;
  text-decoration: none;
  padding: 10px 24px; }

ul.nav.two-levels li > ul li.active a {
  color: #fff;
  background-color: #2196F3 !important; }

.trm-date-picker .DateInput,
.trm-date-picker .DateInput_input {
  min-width: 230px;
  max-width: 230px !important; }

.time-recorder-manager-filter select {
  padding-right: 25px !important; }
.btn-icon.disabled,
.btn-icon:disabled {
  opacity: 0.3;
  background: transparent !important; }

.month-selector .btn-icon {
  padding: 0.1rem; }
.select-box {
  width: 100%; }

.select-box > select {
  border: 1px solid #eee !important;
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  background-color: transparent; }
.tag-label > .time-recorder {
  width: 50px;
  border: none; }

.time-recorder-item .cancel-btn:hover {
  background-color: var(--danger); }
.view-time-keeper-changing-modal table.tbl-borderd {
  border: 1px solid lightgray; }
  .view-time-keeper-changing-modal table.tbl-borderd tbody tr td, .view-time-keeper-changing-modal table.tbl-borderd tbody tr th, .view-time-keeper-changing-modal table.tbl-borderd thead tr td, .view-time-keeper-changing-modal table.tbl-borderd thead tr th {
    border: 1px solid lightgray; }
.add-time-keeper-modal .time-card {
  cursor: pointer; }
  .add-time-keeper-modal .time-card:hover {
    background-color: var(--secondary);
    color: white; }

.add-time-keeper-modal .time-input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 3px 5px; }
.tags {
  display: flex; }

.tag.badge {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0; }

.tag > div {
  padding: 5px; }

.tag .edit-btn {
  margin-left: 10px;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 10px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  text-decoration: none; }

.tag .edit-btn:hover {
  background-color: #2196f3;
  color: #fff; }

.tag .edit-btn:hover i {
  color: #fff; }

aside.page-sidebar .nav-item.active > a {
  background-color: #2196F3 !important;
  color: #FFF; }

a.tag-label {
  text-decoration: none; }

ul.nav.two-levels > li > a {
  padding: 0 10px;
  height: auto;
  min-height: 4.8rem; }

ul.nav.two-levels li > ul {
  margin: 0; }

ul.nav.two-levels li > ul li {
  list-style: none; }

ul.nav.two-levels li > ul li > a {
  display: flex;
  text-decoration: none;
  padding: 10px 24px; }

ul.nav.two-levels li > ul li.active a {
  color: #fff;
  background-color: #2196F3 !important; }

.trm-date-picker .DateInput,
.trm-date-picker .DateInput_input {
  min-width: 230px;
  max-width: 230px !important; }

.time-recorder-manager-filter select {
  padding-right: 25px !important; }

.time-recorder-manager .action-bar input[type="text"] {
  background-color: white;
  height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(0, 0, 0, 0.1) !important; }

.time-recorder-manager .action-bar .btn-custom {
  font-size: unset;
  border: 1px solid var(--secondary);
  background-color: white;
  padding: 5px 10px;
  color: var(--secondary);
  border-radius: 3px;
  box-shadow: none; }
  .time-recorder-manager .action-bar .btn-custom:hover {
    background-color: var(--secondary);
    color: white; }
.edit-time-keeper-modal .time-card {
  cursor: pointer; }
  .edit-time-keeper-modal .time-card:hover {
    background-color: var(--secondary);
    color: white; }

.edit-time-keeper-modal .time-input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 3px 5px; }
.tags {
  display: flex; }

.tag.badge {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0; }

.tag > div {
  padding: 5px; }

.tag .edit-btn {
  margin-left: 10px;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 10px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  text-decoration: none; }

.tag .edit-btn:hover {
  background-color: #2196f3;
  color: #fff; }

.tag .edit-btn:hover i {
  color: #fff; }

aside.page-sidebar .nav-item.active > a {
  background-color: #2196F3 !important;
  color: #FFF; }

a.tag-label {
  text-decoration: none; }

ul.nav.two-levels > li > a {
  padding: 0 10px;
  height: auto;
  min-height: 4.8rem; }

ul.nav.two-levels li > ul {
  margin: 0; }

ul.nav.two-levels li > ul li {
  list-style: none; }

ul.nav.two-levels li > ul li > a {
  display: flex;
  text-decoration: none;
  padding: 10px 24px; }

ul.nav.two-levels li > ul li.active a {
  color: #fff;
  background-color: #2196F3 !important; }

.trm-date-picker .DateInput,
.trm-date-picker .DateInput_input {
  min-width: 230px;
  max-width: 230px !important; }

.time-recorder-manager-filter select {
  padding-right: 25px !important; }

.time-recorder-manager .action-bar .custom-single-date-picker .SingleDatePicker {
  height: 32px; }

.time-recorder-manager .action-bar .SingleDatePickerInput input[type="text"] {
  background-color: initial;
  height: 32px;
  padding: 0 10px;
  border: none !important; }

.time-recorder-manager .action-bar input[type="text"] {
  background-color: white;
  height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(0, 0, 0, 0.1) !important; }

.time-recorder-manager .action-bar .btn-custom {
  font-size: unset;
  border: 1px solid var(--secondary);
  background-color: white;
  padding: 5px 10px;
  color: var(--secondary);
  border-radius: 3px;
  box-shadow: none; }
  .time-recorder-manager .action-bar .btn-custom:hover {
    background-color: var(--secondary);
    color: white; }
.date-range-picker {
  display: flex; }

.date-range-picker > div.input-group {
  border: solid 1px #ccc;
  border-radius: 3px;
  margin-left: 10px;
  background-color: #f7f7f7; }

.date-range-picker input {
  border-bottom: none;
  box-shadow: none !important; }

.date-range-picker .input-group-prepend {
  align-self: center;
  padding-left: 4px; }

.search-container {
  flex: 1; }

input.DateInput_input {
  max-width: 120px; }
.box-text-certificates {
  width: 10px;
  height: 10px;
  background-color: #f7941d; }

.box-text-certificates-2 {
  width: 10px;
  height: 10px;
  background-color: #4caf50; }

.box-text-certificates-3 {
  width: 10px;
  height: 10px;
  background-color: #795548; }

.number-rating {
  width: 60px;
  height: 60px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  line-height: 60px;
  border: 1px solid #f7941d;
  border-radius: 50%;
  /* left: 350px; */
  /* top: 176px; */
  text-align: center;
  color: #f7941d; }

.navbar-humanResource .rw-widget-input.rw-widget-picker.rw-widget-container {
  height: 32px !important; }

.navbar-humanResource-quit .DateRangePickerInput {
  width: 265px !important;
  height: 32px; }
  .navbar-humanResource-quit .DateRangePickerInput input.DateInput_input {
    max-width: 105px; }

.navbar-humanResource-quit .col-lg-2 {
  max-width: 12%; }

.text-none {
  text-transform: none; }

.status-bar {
  min-width: 12rem; }

.btn-search-medium {
  height: 2.9rem;
  line-height: 2.6rem; }

.nav-bar-humanResource {
  height: 32px !important; }

.nav-bar-humanResource {
  height: 32px !important; }

.btn-secondary.focus, .btn-secondary:focus {
  color: #fff;
  background-color: #2196f3;
  border-color: #2196f3; }

@media screen and (min-width: 1200px) {
  .padding-right-navbar {
    padding-right: 0; }
  .btn-export-nabar {
    text-align: left; } }

@media screen and (min-width: 1440px) {
  .btn-export-nabar {
    text-align: right;
    padding-right: 15px; } }

@media screen and (max-width: 768px) {
  .btn-export-nabar {
    text-align: right; }
  .group-btn {
    padding-right: 0px; }
    .group-btn .btn-create-uer {
      margin-bottom: 7px; }
    .group-btn .btn-search {
      margin-bottom: 7px; }
    .group-btn .btn-block {
      margin-bottom: 7px; }
    .group-btn .btn-export {
      margin-bottom: 7px; }
  .navbar-humanResource-quit .DateRangePickerInput {
    width: 265px !important;
    height: 32px; }
    .navbar-humanResource-quit .DateRangePickerInput input.DateInput_input {
      max-width: 105px; }
  .navbar-humanResource-quit .col-lg-2 {
    max-width: 100%; } }

@media screen and (max-width: 576px) {
  .btn-export-nabar {
    text-align: right; }
  .ai-hr-manager .dataTables_paginate .paginate_button {
    padding: .5em 0.6em; } }

.modal-create-staff .form-check.form-check-inline {
  margin-top: 0px; }

.modal-create-staff .react-date-picker .react-date-picker__wrapper {
  border: 1px solid rgba(0, 0, 0, 0.1) !important; }
  .modal-create-staff .react-date-picker .react-date-picker__wrapper .react-date-picker__button {
    padding-top: 6px;
    padding-bottom: 6px; }

.modal-create-staff .staff-info__field > label {
  margin: 0; }

.modal-create-staff .staff-info .radio-group-custom > label {
  display: inline-flex; }

.modal-create-staff .staff-info .password {
  position: relative; }
  .modal-create-staff .staff-info .password__input input {
    padding-right: 30px !important; }
  .modal-create-staff .staff-info .password__action {
    position: absolute;
    top: 28px;
    right: 20px;
    cursor: pointer; }
.expertiseLevel label {
  font-size: 1.2em; }

.expertiseLevel .expertiseLevelCheckbox {
  width: 15px;
  height: 15px;
  margin-right: 5px; }

.doctor-code-list .custom-single-date-picker .SingleDatePicker {
  width: 100%;
  justify-content: space-between; }

.doctor-code-list .custom-single-date-picker .SingleDatePicker > :first-child {
  width: 100%; }

.calendar-filter-doctor .SingleDatePicker_picker {
  top: 45px !important; }

.text-none {
  text-transform: none; }

.status-bar {
  min-width: 12rem; }

.btn-search-medium {
  height: 2.9rem;
  line-height: 2.6rem; }

.btn-secondary.focus,
.btn-secondary:focus {
  color: #fff;
  background-color: #2196f3;
  border-color: #2196f3; }

.page-content {
  overflow-x: scroll; }

@media screen and (min-width: 1200px) {
  .padding-right-navbar {
    padding-right: 0; }
  .btn-export-nabar {
    text-align: left;
    padding-left: 15px; } }

@media screen and (min-width: 1440px) {
  .btn-export-nabar {
    text-align: right;
    padding-right: 15px;
    padding-left: 15px; } }

@media screen and (max-width: 768px) {
  .btn-export-nabar {
    text-align: right; }
    .btn-export-nabar .btn-search-medium {
      width: 100%; } }

@media screen and (max-width: 576px) {
  .btn-export-nabar {
    text-align: right; }
    .btn-export-nabar .btn-search-medium {
      width: 100%; }
  .ai-hr-manager .dataTables_paginate .paginate_button {
    padding: 0.5em 0.6em; } }
@media screen and (max-width: 768px) {
  .nav-bar-import-doctor-code .btn-export-nabar {
    text-align: right;
    padding-left: 15px; }
  .nav-bar-import-doctor-code .btn-search-medium {
    width: 100%; } }

@media screen and (max-width: 576px) {
  .nav-bar-import-doctor-code .btn-export-nabar {
    text-align: right;
    padding-left: 15px; }
  .nav-bar-import-doctor-code .custom-single-date-picker {
    width: 100%; }
    .nav-bar-import-doctor-code .custom-single-date-picker .SingleDatePicker_1 {
      width: 100%; }
  .nav-bar-import-doctor-code .btn-search-medium {
    width: 100%; }
  .custom-single-date-picker {
    width: 100%; }
    .custom-single-date-picker .SingleDatePicker_1 {
      width: 100%; }
  .nav-bar-import-doctor-code .ai-hr-manager .dataTables_paginate .paginate_button {
    padding: 0.5em 0.6em; } }
.custom-table {
  width: 100%;
  font-size: 1rem;
  border: none !important; }

.custom-table-header td {
  border: none !important; }

.custom-table tr {
  box-sizing: content-box; }

.custom-table tbody tr:hover {
  background-color: #f5f5f5; }

.custom-table th {
  height: 30px;
  border: none;
  text-align: start;
  color: #555;
  cursor: pointer; }

.custom-table th.sort:hover {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); }

.custom-table-container {
  margin-top: 15px;
  width: 100%; }

div.pagination-container {
  margin: 15px 0; }

.pagination li a {
  color: #316ac5; }

.actions-bar {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between; }

.page-link,
.pagination li a {
  border: none; }

.table-header {
  display: inline-flex;
  justify-content: space-between;
  width: 100%; }

/*
.search-input input[type="text"]{
    width:100%;
    border: none;
    border-radius: 0px !important;
    border-bottom: 1px solid rgba(0,0,0,0.3);
}


.search-input button{
    background: transparent;
    color: #000;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    border-radius: 0px;
    margin: 0;
}
*/
.table-header .filters {
  display: inline-flex;
  justify-content: flex-end;
  width: 100%; }

.filter-input select {
  /*border: none !important;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0px;
    margin: 0px;
    border-bottom: 1px solid rgba(0,0,0,0.3) !important;
    border-radius: 0px !important;*/ }

.filter-input select:hover {
  /*font-weight: 700;*/ }

.sort-icons {
  margin: 5px;
  display: inline-flex;
  flex-direction: column; }

.sort-icons i {
  height: 1px;
  color: #ccc;
  font-size: 1.8rem; }
.smt__content {
  transition: all 0.3s;
  line-height: var(--smt-line-height);
  max-height: var(--smt-max-height); }
  .smt__content--limit {
    overflow: hidden; }

.smt__toggle {
  all: unset;
  color: #2196f3; }
  .smt__toggle:focus {
    outline: 1px dashed #2196f3 !important; }
.react-date-picker button[type="button"] {
  border-radius: unset;
  font-size: unset;
  box-shadow: unset; }

.react-date-picker .react-date-picker__calendar .react-calendar__navigation button[type="button"] {
  padding: unset;
  color: unset; }

.react-date-picker .react-date-picker__calendar .react-calendar__month-view__days__day {
  color: #000; }

.react-date-picker .react-date-picker__calendar .react-calendar__month-view__days__day.react-calendar__month-view__days__day--neighboringMonth {
  color: #757575; }

.react-date-picker .react-date-picker__calendar .react-calendar__century-view__decades__decade,
.react-date-picker .react-date-picker__calendar .react-calendar__decade-view__years__year,
.react-date-picker .react-date-picker__calendar .react-calendar__year-view__months__month {
  color: #000; }

.react-date-picker .react-date-picker__calendar .react-calendar__tile--hasActive,
.react-date-picker .react-date-picker__calendar .react-calendar__tile--active {
  color: #fff; }

.react-date-picker .react-date-picker__calendar .react-calendar__navigation__label__labelText,
.react-date-picker .react-date-picker__calendar .react-calendar__year-view__months__month {
  text-transform: capitalize; }
.modal-reset-password .password__input .text-input {
  padding-right: 60px !important; }

.modal-reset-password .password__action {
  position: absolute;
  right: 8px;
  top: 30px; }
.InterviewSchedule-filter .search-filter {
  background-color: #fff;
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px;
  width: 100%;
  height: 33px; }

.InterviewSchedule-filter .col-lg-4 {
  max-width: 31.33333% !important; }

.InterviewSchedule-filter .position-center {
  margin-top: 2rem; }

.InterviewSchedule-filter .btn-search {
  height: 32px; }

.InterviewSchedule-filter .number-rating {
  width: 68px;
  height: 68px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 66px;
  border: 1px solid #f7941d;
  border-radius: 50%;
  /* left: 350px; */
  /* top: 176px; */
  text-align: center;
  color: #f7941d; }

.InterviewSchedule-filter .date-total {
  gap: 24px;
  flex-direction: row;
  align-items: center; }

.InterviewSchedule-filter .class-row-filter {
  flex-direction: row;
  justify-content: flex-start;
  gap: 16px; }

.InterviewSchedule-filter .colum-filter {
  width: 18%;
  min-width: 100px; }

.InterviewSchedule-filter .interviewType-filter {
  width: 140px !important; }

.Recruitment-offer .table-SpecializationCode {
  border-radius: 4px;
  overflow: hidden; }

.Recruitment-offer .table-SpecializationCode thead {
  color: white;
  background-color: #005e9e;
  border-radius: 4px; }

.Recruitment-offer .table-SpecializationCode thead th {
  padding: 1rem 1rem !important;
  vertical-align: baseline; }

@media (max-width: 576px) {
  .InterviewSchedule-filter .col-lg-4 {
    max-width: 100% !important; }
  .InterviewSchedule-filter .class-row-filter {
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px; }
  .InterviewSchedule-filter .colum-filter {
    width: 100%;
    min-width: 100px; }
  .InterviewSchedule-filter .interviewType-filter {
    width: 100% !important; }
  .InterviewSchedule-filter .combo-control {
    padding-left: 22px;
    padding-right: 22px; }
  .InterviewSchedule-filter .btn-search {
    width: 100%;
    margin-bottom: 25px; } }
/*
.search-btn{
    margin:0 5px;
    border-radius:5px;
}
*/
.search {
  border: 1px solid #CCC !important;
  border-radius: 5px;
  display: inline-flex; }

.search-input {
  border: none;
  padding: 5px;
  margin: 1px;
  min-width: 150px; }

.search-btn {
  border-left: 1px solid #CCC !important;
  min-height: 30px;
  min-width: 50px;
  margin: 0;
  padding: 5px;
  cursor: pointer;
  outline: none;
  border-radius: 0px 5px 5px 0px; }
.filter {
  min-width: 150px;
  border: 1px solid #CCC;
  height: 35px;
  margin: 1px;
  background: transparent;
  outline: none;
  border-radius: 1px; }
.modal-create-staff {
  width: 555px; }
  .modal-create-staff .form-check.form-check-inline {
    margin-top: 0px; }
  .modal-create-staff .react-date-picker .react-date-picker__wrapper {
    border: 1px solid rgba(0, 0, 0, 0.1) !important; }
    .modal-create-staff .react-date-picker .react-date-picker__wrapper .react-date-picker__button {
      padding-top: 6px;
      padding-bottom: 6px; }
  .modal-create-staff .staff-info .text-input {
    width: 100% !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 3px !important;
    padding: 0px !important; }
  .modal-create-staff .staff-info__field > label {
    margin: 0; }
  .modal-create-staff .staff-info__field input {
    height: 33px; }
  .modal-create-staff .staff-info .radio-group-custom > label {
    display: inline-flex; }
  .modal-create-staff .staff-info .password {
    position: relative; }
    .modal-create-staff .staff-info .password__input input {
      padding-right: 30px !important; }
    .modal-create-staff .staff-info .password__action {
      position: absolute;
      top: 28px;
      right: 20px;
      cursor: pointer; }

@media (max-width: 576px) {
  .modal-create-staff {
    width: 87%; } }
.CancelInterview textarea {
  padding: 10px !important;
  margin-bottom: 7px; }
.ModalDetailSchedules-doctor .modal-content {
  width: 712px !important;
  max-width: 100% !important;
  margin: auto; }

.ModalDetailSchedules-doctor .col-2 {
  border-right: #ccc 1px solid; }

.ModalDetailSchedules-doctor .time-line {
  position: relative;
  width: 272px !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 3px !important; }
  .ModalDetailSchedules-doctor .time-line .branch-item {
    width: 140px; }
    .ModalDetailSchedules-doctor .time-line .branch-item .text-input {
      min-width: 130px;
      border-bottom: medium;
      border-top: hidden;
      border-left: hidden; }
  .ModalDetailSchedules-doctor .time-line .react-time-input {
    width: 60px; }
    .ModalDetailSchedules-doctor .time-line .react-time-input .time-recorder {
      width: 100%; }
  .ModalDetailSchedules-doctor .time-line .icon-remove-item {
    position: absolute;
    top: -9px;
    right: -9px; }

@media screen and (max-width: 768px) {
  .ModalDetailSchedules-doctor .modal-content {
    width: 500px;
    max-width: 100% !important;
    margin: auto; } }
.schedule-table {
  width: 100%;
  border-collapse: collapse; }
  .schedule-table th, .schedule-table td {
    border: 1px solid;
    padding: 2px;
    text-align: center;
    vertical-align: middle; }
  .schedule-table th {
    color: black; }
  .schedule-table td {
    min-width: 50px; }
    .schedule-table td:first-child {
      font-weight: bold; }
.ModalDetailSchedules .modal-content {
  width: 712px !important;
  max-width: 100% !important;
  margin: auto; }

.ModalDetailSchedules .col-2 {
  border-right: #ccc 1px solid; }

.ModalDetailSchedules .time-line {
  position: relative;
  width: 272px !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 3px !important; }
  .ModalDetailSchedules .time-line .branch-item {
    width: 140px; }
    .ModalDetailSchedules .time-line .branch-item .text-input {
      min-width: 130px;
      border-bottom: medium;
      border-top: hidden;
      border-left: hidden; }
  .ModalDetailSchedules .time-line .react-time-input {
    width: 60px; }
    .ModalDetailSchedules .time-line .react-time-input .time-recorder {
      width: 100%; }
  .ModalDetailSchedules .time-line .icon-remove-item {
    position: absolute;
    top: -9px;
    right: -9px; }

@media screen and (max-width: 768px) {
  .ModalDetailSchedules .modal-content {
    width: 500px;
    max-width: 100% !important;
    margin: auto; } }
.page-content-wrapper-salary-report {
  background-color: #cfd8dc; }

.modal-md.modal-md-set800 .modal-content {
  width: 800px; }

.table.custom-table-bordered {
  border: 1px solid #eee; }

.table.custom-table-bordered th, .table.custom-table-bordered td {
  border: 1px solid #eee; }

.form-control.border-select.branch-select {
  min-height: 33px;
  min-width: 224px; }

.card-header {
  background-color: #E4E4E4; }

.header-table {
  background-color: #E4E4E4; }

#card-footer {
  background-color: white;
  border-top: 0px solid rgba(0, 0, 0, 0.125); }

.Search-SalaryReportNurse .form-control {
  border-radius: 4px; }

.Search-SalaryReportNurse .search-filter {
  height: 34px !important; }

.Search-SalaryReportNurse .input-group-append .btn {
  height: 30px;
  align-items: center;
  display: flex; }

.form-multiselect .rw-multiselect-taglist {
  display: contents; }

.form-multiselect .rw-multiselect {
  text-align: left; }

.rw-widget-input.rw-widget-picker.rw-widget-container {
  height: 34px !important; }

.modal-salary-report-nurse .modal-header {
  background-color: #ffffff;
  border-bottom: 1px solid #DBDBDB; }

.modal-salary-report-nurse .modal-header > * {
  color: #000000;
  font-weight: 700;
  font-size: 16px; }

.modal-salary-report-nurse .icon-close {
  color: #7B7B7B !important; }

.modal-salary-report-nurse .modal-body {
  padding: 0; }

.salary-report-nurse .header-table {
  background: #F8F8F8; }

@media screen and (max-width: 768px) {
  .page-content-card {
    overflow-x: scroll; } }

@media screen and (max-width: 576px) {
  .page-content-card {
    overflow-x: scroll; } }
.page-content-wrapper-salary-report {
  background-color: #cfd8dc; }

.modal-md.modal-md-set800 .modal-content {
  width: 800px; }

.table.custom-table-bordered {
  border: 1px solid #eee; }

.table.custom-table-bordered th,
.table.custom-table-bordered td {
  border: 1px solid #eee; }

.form-control.border-select.branch-select {
  min-height: 33px;
  min-width: 224px; }

.card-header {
  background-color: #e4e4e4;
  min-height: 60px;
  padding-bottom: 0px; }

.header-table {
  background-color: #e4e4e4;
  padding: 10px; }

.body-table-customer div {
  display: flex;
  justify-content: center; }

#card-footer {
  background-color: white;
  border-top: 0px solid rgba(0, 0, 0, 0.125); }

.Search-SalaryReportNurse .form-control {
  border-radius: 4px; }

@media screen and (max-width: 768px) {
  .page-content-card {
    overflow-x: scroll; }
  .header-table {
    display: none; }
  .body-table-customer {
    border-top: 1px solid rgba(0, 0, 0, 0.125); }
    .body-table-customer div {
      display: flex;
      justify-content: start; } }

@media screen and (max-width: 576px) {
  .page-content-card {
    overflow-x: scroll; }
  .header-table {
    display: none; }
  .body-table-customer {
    border-top: 1px solid rgba(0, 0, 0, 0.125); }
    .body-table-customer div {
      display: flex;
      justify-content: start; } }
.page-content-wrapper-salary-report {
  background-color: #cfd8dc; }

.modal-md.modal-md-set800 .modal-content {
  width: 800px; }

.table.custom-table-bordered {
  border: 1px solid #eee; }

.table.custom-table-bordered th, .table.custom-table-bordered td {
  border: 1px solid #eee; }

.form-control.border-select.branch-select {
  min-height: 33px;
  min-width: 224px; }

.Search-SalaryReportNurse .search-filter {
  height: 30px;
  border: #ccc 1px solid;
  border-radius: 4px; }

.Search-SalaryReportNurse .input-group-append button {
  height: 33px; }
.page-content-wrapper-salary-report {
  background-color: #cfd8dc; }

.modal-md.modal-md-set800 .modal-content {
  width: 800px; }

.table.custom-table-bordered {
  border: 1px solid #eee; }

.table.custom-table-bordered th, .table.custom-table-bordered td {
  border: 1px solid #eee; }

.header-input-search {
  height: 35px;
  border-radius: 4px;
  border: 1px solid #dbdbdb;
  line-height: 42px; }

.incom-doctor .btn-search {
  height: 33px;
  line-height: 3px; }

.incom-doctor .card-header {
  background: #005E9E;
  color: white; }

.incom-doctor .header-table {
  background: #005E9E; }

@media (max-width: 576px) {
  .incom-doctor .DateRangePicker_1 {
    width: 100%; }
    .incom-doctor .DateRangePicker_1 .DateRangePickerInput__withBorder {
      width: 100%; }
  .incom-doctor .header-input-search {
    width: 100%;
    margin-left: 0px !important;
    margin-right: 0px !important; }
  .incom-doctor .btn-search {
    width: 100%; } }
/**
  Profile
**/
.page-content-module-wrapper.profile {
  padding: 2rem !important; }

#profile .page-header {
  min-height: 15rem !important;
  height: 15rem !important;
  /* background: url('/assets/images/backgrounds/profilebg.png') no-repeat !important; */
  background-size: cover !important;
  background-position: center !important; }

#profile .form-control {
  margin: 0 !important;
  padding: 5px !important;
  border-bottom: none !important;
  box-shadow: none !important;
  border-radius: 3px !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  height: auto !important; }

#profile .form-group {
  margin-bottom: 0;
  will-change: color; }

#profile .form-control.no-border {
  border: none !important; }

.profile-img-wrapper {
  position: absolute;
  bottom: -3rem;
  z-index: 1;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5); }

.profile-image {
  border: 0.4rem solid #fff !important;
  border-radius: 0 !important; }

.profile-title {
  margin-left: 12rem;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3); }

.editable-inline {
  cursor: pointer;
  display: inline-flex; }

.editable-inline > i {
  display: none; }

.editable-inline:hover > i {
  display: block; }

#new-wpf-form .form-group {
  margin-bottom: 0;
  will-change: color; }

select.form-control {
  max-width: 100% !important;
  background-position: right 1rem center; }

.form-check {
  margin-top: 1.1rem; }

.dependence-info .card-footer {
  background: none !important; }

/**
Table css
**/
#personal-form .table-bordered th,
#personal-form .table-bordered td {
  border: 1px solid #e9ecef; }

#personal-form .table th,
#personal-form .table td {
  padding: 0.9rem 1.1rem;
  vertical-align: middle; }

/**
Table css
**/
.form-check {
  margin-top: 1.1rem; }

/**
Table css
**/
#staffInfo .text-secondary .icon {
  color: #2196f3 !important; }

#staffInfo .text-danger .icon {
  color: #f44336 !important; }

#staffInfo .text-success .icon {
  color: #4caf50 !important; }

#staffInfo .text-field-custom .w-60 {
  width: 60%; }

#staffInfo .text-field-custom .w-40 {
  border: none !important;
  width: 40%; }

#staffInfo .text-field-custom .w-50 {
  width: 50%; }

#staffInfo .text-field-custom .w-25 {
  width: 20%; }

#staffInfo .text-field-custom .w-50-n-noborder {
  border: none !important;
  width: 50%; }

#list-custom .btn {
  padding: 0 0.2rem !important;
  font-size: 1.1rem !important;
  min-width: 7.5rem !important;
  height: 3rem !important;
  line-height: 3rem !important;
  letter-spacing: 0.04em;
  border: none !important;
  color: #fff !important; }

#list-custom .icon {
  color: #fff !important; }

.general-info {
  z-index: 1; }
  .general-info .table-bordered th {
    border: 1px solid #e9ecef !important; }
  .general-info .table th {
    font-weight: 100 !important; }
  .general-info .table th,
  .general-info .table td {
    padding: 0.5rem 0.6rem !important;
    vertical-align: middle;
    border: 1px solid #e9ecef !important; }
  .general-info #customers {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%; }
  .general-info #customers td,
  .general-info #customers th {
    border: 1px solid #ddd;
    padding: 8px; }
  .general-info #customers tr:nth-child(even) {
    background-color: #f2f2f2; }
  .general-info #customers tr:hover {
    background-color: #ddd; }
  .general-info #customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #4caf50;
    color: white; }
  @media screen and (min-width: 768px) {
    .general-info .bordered-right {
      border-right: solid 1px #e4e4e4; } }

#modalFg .form-group {
  padding-top: 0.5rem !important;
  margin-bottom: 0.5rem !important; }

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

.profile-box.card .card-header h5 {
  font-weight: bold;
  font-size: 1.2em;
  text-shadow: 0 1px #fff;
  color: #636363; }

.profile-box.card .card-body h5.title.text-muted {
  font-size: 1.2em; }

.profile-box.card .card-body .profile-image.avatar.huge {
  min-width: 15rem;
  min-height: 15rem;
  width: 15rem;
  height: 15rem;
  border-radius: 100% !important;
  overflow: hidden;
  border: solid 2px #f44336 !important; }

.profile-box.card .dropdown-menu .sub-header {
  background-color: #f8f8f8;
  border-top: solid 1px #eeeeee;
  border-bottom: solid 1px #eeeeee; }

.profile-box.card .disable-div {
  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; }

.no-shadow {
  box-shadow: none !important; }

.form-control.rw-multiselect {
  border-bottom: none;
  box-shadow: none; }
  .form-control.rw-multiselect .rw-widget-input {
    box-shadow: none; }
  .form-control.rw-multiselect .rw-widget-container {
    border: 1px solid rgba(0, 0, 0, 0.1); }

/**
  Decision style
  */
.add-service .d-flex {
  padding-top: 0px;
  padding-bottom: 10px;
  margin: 0; }
  .add-service .d-flex label {
    color: inherit; }

.rw-input {
  text-align: left; }

.rw-list-option {
  text-align: left; }

.page-header-wide {
  height: 9rem !important; }
  .page-header-wide > div.d-flex {
    line-height: 6rem; }

.decision-statistic-wrapper {
  position: absolute;
  right: 4rem;
  top: 1rem; }

.dropdownlist .rw-widget-container {
  height: 32px; }

.dropdownlist .rw-dropdown-list-input {
  padding: 3px 5px 3px 10px;
  font-size: 1.4rem; }

.dropdownlist .rw-list-option {
  font-size: 1.4rem; }

.w-100 > .SingleDatePicker {
  border: 1px solid #ccc !important;
  height: 30px;
  border-radius: 3px;
  background-color: white; }
  .w-100 > .SingleDatePicker .SingleDatePickerInput {
    width: 100%; }
    .w-100 > .SingleDatePicker .SingleDatePickerInput .DateInput {
      position: absolute;
      width: 100%; }
    .w-100 > .SingleDatePicker .SingleDatePickerInput input.DateInput_input {
      max-width: unset;
      padding-left: 10px; }

.date-input {
  margin-top: 15px; }

.displayWorkProfiles {
  position: relative; }

.displayWorkProfiles .dropdown {
  position: absolute;
  right: 0;
  bottom: 5px; }

.form-group .text-danger,
.form-check .text-danger {
  font-size: 1.4rem; }

.rw-widget-input.rw-widget-picker.rw-widget-container {
  height: 30px; }

.override-form-style .rw-widget-input,
.override-form-style .rw-filter-input,
.override-form-style textarea,
.override-form-style select.border-select {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 3px !important;
  box-shadow: none;
  height: 34px !important; }

.override-form-style input,
.override-form-style textarea {
  padding-left: 15px !important;
  font-size: 14px;
  color: black;
  height: 34px !important; }

.override-form-style .btn,
.override-form-style .DateRangePickerInput {
  height: 34px;
  line-height: 17px;
  align-items: center !important;
  align-content: center !important; }

.override-form-style .DateInput,
.override-form-style .DateInput_input {
  width: 100px; }

.decision-table td {
  border-bottom: 1px solid #f1f1f1; }

.decision-table tbody tr:hover {
  background-color: #fafafa; }

#new-wpf-form .text-area .form-control {
  height: unset !important; }

.z-index-1050 {
  z-index: 1050; }

.z-index-1060 {
  z-index: 1060; }

.z-index-1070 {
  z-index: 1070; }

.z-index-1080 {
  z-index: 1080; }

.profile-box.card {
  width: 100%; }

.button-edit-profile {
  position: absolute;
  right: 0; }

.fieldSetBorder {
  margin-inline-start: 2px;
  margin-inline-end: 2px;
  padding-block-start: 0.35em;
  padding-inline-start: 0.75em;
  padding-inline-end: 0.75em;
  padding-block-end: 0.625em;
  min-inline-size: min-content;
  border-width: 2px;
  border-style: groove;
  border-color: #ddd;
  border-image: initial; }

.fieldSetLegend {
  display: block;
  padding-inline-start: 2px;
  padding-inline-end: 2px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  width: auto;
  font-weight: 600; }

.border-bottom-card-title {
  border-bottom: 1px solid #ddd;
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1em; }

.border-card {
  border: 1px solid #ddd !important; }

.displayWorkProfiles {
  cursor: pointer; }
  .displayWorkProfiles:hover {
    background-color: var(--light); }

.contract-annex-table {
  border: 1px solid #e9ecef; }
  .contract-annex-table thead tr th {
    border-bottom: 1px solid #e9ecef; }
  .contract-annex-table tr td,
  .contract-annex-table tr th {
    padding: 10px; }
    .contract-annex-table tr td:not(:last-child),
    .contract-annex-table tr th:not(:last-child) {
      border-right: 1px solid #e9ecef; }
  .contract-annex-table tr:not(:last-child) td,
  .contract-annex-table tr:not(:last-child) th {
    border-bottom: 1px solid #e9ecef; }
  .contract-annex-table .action-link {
    cursor: pointer; }

.annual-leave-modal select {
  margin-left: 1.5rem !important; }

.add-StaffAnnualLeaveTransactionModal .modal-body {
  padding: 0; }

.withdraw-annual-leave {
  color: #f44336; }

.withdraw-annual-leave::before {
  content: "-"; }

.annual-leave .name-annual-leave {
  width: 125px;
  font-weight: 600 !important; }

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

.custome-tabs .nav-item .nav-link {
  padding: 0 12px; }
.add-staff-indentity-paper-modal .identity-row:hover {
  background-color: rgba(211, 211, 211, 0.15); }

.add-staff-indentity-paper-modal .identity-row label {
  width: 100%;
  text-align: left; }

.add-staff-indentity-paper-modal .identity-row .SingleDatePicker {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  height: 30px;
  border-radius: 3px;
  background-color: white; }
  .add-staff-indentity-paper-modal .identity-row .SingleDatePicker .SingleDatePickerInput {
    width: 100%; }
    .add-staff-indentity-paper-modal .identity-row .SingleDatePicker .SingleDatePickerInput .DateInput {
      position: absolute;
      width: 100%; }
    .add-staff-indentity-paper-modal .identity-row .SingleDatePicker .SingleDatePickerInput input.DateInput_input {
      max-width: unset;
      padding-left: 10px; }

.add-staff-indentity-paper-modal .identity-row .rw-widget-input.rw-widget-picker.rw-widget-container {
  height: 30px; }
.modal-change-password .password__input .text-input {
  padding-right: 40px !important; }

.modal-change-password .password__action {
  position: absolute;
  right: 8px;
  top: 30px; }
.profile-certificate-form .filde-input {
  height: 32px !important; }

.profile-certificate-form .form-check.form-check-inline {
  margin-top: 0px; }
  .profile-certificate-form .form-check.form-check-inline .form-check-description {
    font-size: 14px; }

.profile-certificate-form td {
  vertical-align: baseline; }

.profile-certificate-form .table-scheduleRegister th {
  max-width: 145px !important; }

.profile-certificate-form .time-line {
  position: relative;
  width: 300px  !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 3px !important; }
  .profile-certificate-form .time-line .branch-item .rw-widget-input {
    min-width: 140px;
    border-bottom: medium;
    border-top: hidden;
    border-left: hidden; }
  .profile-certificate-form .time-line .react-time-input {
    width: 60px; }
    .profile-certificate-form .time-line .react-time-input .time-recorder {
      width: 100%; }
  .profile-certificate-form .time-line .icon-remove-item {
    position: absolute;
    top: -9px;
    right: -9px; }

.certificate-info .col-3 {
  border-right: #ccc 1px solid; }

@media (max-width: 576px) {
  .certificate-info {
    max-width: 100% !important; }
  .profile-certificate-form .table-scheduleRegister th {
    min-width: 145px !important; } }
.react-calendar button[type="button"] {
  border-radius: unset;
  font-size: unset;
  box-shadow: unset; }

.react-calendar .react-calendar__navigation button[type="button"] {
  padding: unset;
  color: unset; }

.react-calendar .react-calendar__month-view__days__day:not(:disabled) {
  color: #000000; }

.react-calendar .react-calendar__month-view__days__day.react-calendar__month-view__days__day--neighboringMonth {
  color: #757575; }

.react-calendar .react-calendar__month-view__days__day.react-calendar__month-view__days__day--weekend {
  color: #d10000; }

.react-calendar .react-calendar__month-view__days__day.react-calendar__tile--active,
.react-calendar .react-calendar__month-view__days__day.react-calendar__tile--hasActive {
  color: #ffffff; }

.react-calendar .react-calendar__century-view__decades__decade:not(:disabled),
.react-calendar .react-calendar__decade-view__years__year:not(:disabled),
.react-calendar .react-calendar__year-view__months__month:not(:disabled) {
  color: #000000; }

.react-calendar .react-calendar__tile:disabled {
  background-color: #f0f0f0;
  color: #757575;
  pointer-events: none; }

.react-calendar .react-calendar__navigation__label__labelText,
.react-calendar .react-calendar__year-view__months__month {
  text-transform: capitalize; }
.form-control-v2_date {
  width: 100%; }
  .form-control-v2_date .date_container {
    display: flex;
    width: 100%;
    position: relative;
    padding: 6px 12px;
    border: 1px solid #7f7f7f;
    border-radius: 4px;
    background-color: white; }
    .form-control-v2_date .date_container:focus-within {
      border-color: #005f9e;
      box-shadow: 0 0 8px rgba(0, 95, 158, 0.6); }
    .form-control-v2_date .date_container input {
      width: 100%;
      padding: 0px !important;
      border: none;
      cursor: pointer; }
      .form-control-v2_date .date_container input:focus {
        outline: none; }
      .form-control-v2_date .date_container input:not(:placeholder-shown) ~ label {
        top: 0px;
        font-size: 12px; }
      .form-control-v2_date .date_container input::placeholder {
        color: transparent; }
    .form-control-v2_date .date_container label {
      margin-bottom: 0px;
      position: absolute;
      top: 50%;
      left: 12px;
      background-color: white;
      transform: translateY(-50%);
      transition: 0.2s ease all; }
    .form-control-v2_date .date_container .react-calendar {
      position: absolute;
      top: 35px;
      left: -1px;
      min-width: 300px;
      z-index: 1; }
    .form-control-v2_date .date_container--open {
      border-color: #005f9e;
      box-shadow: 0 0 8px rgba(0, 95, 158, 0.6); }
      .form-control-v2_date .date_container--open label {
        top: 0px;
        font-size: 12px; }
    .form-control-v2_date .date_container--disabled {
      background-color: #eee;
      cursor: not-allowed; }
      .form-control-v2_date .date_container--disabled input {
        background-color: #eee !important;
        cursor: not-allowed; }
      .form-control-v2_date .date_container--disabled label {
        background-color: #eee;
        cursor: not-allowed; }
.general-custom-list .card-header {
  background: #fff !important;
  border: none; }
#reward-discipline-form .w-100 .SingleDatePicker {
  height: 33px !important; }

#reward-discipline-form label {
  color: #000000; }

#reward-discipline-form .min-w-110 {
  min-width: 110px; }

#reward-discipline-form .w-400 {
  width: 400px; }

#reward-discipline-form .DateInput_input.DateInput_input_1 {
  font-size: 14px; }

#reward-discipline-form .table th {
  white-space: pre; }

#reward-discipline-form .table td {
  vertical-align: baseline; }

.reward-green-text {
  color: #00A141; }

.discipline-red-text {
  color: #C62828; }

.RewardDisciplineByStaffId .type-1 {
  border-radius: 4px;
  border: 1px solid #00A141;
  color: #00A141;
  padding: 2px 12px;
  display: inline-block; }

.RewardDisciplineByStaffId .type-2 {
  border-radius: 4px;
  border: 1px solid #C62828;
  color: #C62828;
  padding: 2px 12px;
  display: inline-block; }

.rd-item-label {
  color: #7B7B7B;
  font-weight: 500;
  width: 100%;
  position: relative; }

.RewardDisciplineByStaffId p .item-1 {
  color: #7B7B7B;
  font-weight: 500; }

.RewardDisciplineByStaffId p .item-2,
.RewardDisciplineByStaffId p span {
  color: #000000;
  font-weight: 400; }

.RewardDisciplineByStaffId p .item-1,
.RewardDisciplineByStaffId p .item-2 {
  float: left; }

.rd-item-id-1 {
  display: flex; }

.rd-item-id-1 .item-1 {
  white-space: pre; }

.rd-more {
  color: #0093EE; }

.profile-box .icon-plus.mr-2 {
  color: #0093EE;
  font-weight: 600; }

.reward-discipline-detail .table-bordered td,
.reward-discipline-detail .table-bordered th,
#reward-discipline-form .table-bordered td,
#reward-discipline-form .table-bordered th {
  border: 1px solid #ddd !important; }

.rd-created-by {
  color: #7B7B7B;
  text-align: center; }

.rd-item .item-3 {
  font-weight: 500;
  color: #7B7B7B; }

.rd-item-id-2 {
  color: #7B7B7B; }

#Reward-Discipline-List .min-w-110 {
  min-width: 110px; }

#Reward-Discipline-List .min-w-200 {
  min-width: 200px; }

#Reward-Discipline-List .min-w-300 {
  min-width: 300px; }

#Reward-Discipline-List .w-300 {
  width: 300px; }

#Reward-Discipline-List .w-500 {
  width: 500px; }

#Reward-Discipline-List .none-break {
  white-space: pre; }

#Reward-Discipline-List .filter .filter-item {
  margin-left: 16px;
  margin-top: 16px;
  max-height: 34px; }
  #Reward-Discipline-List .filter .filter-item .btn.btn-outline-secondary {
    max-height: 32px; }
  #Reward-Discipline-List .filter .filter-item label {
    margin-right: 16px;
    margin-bottom: 0; }
  #Reward-Discipline-List .filter .filter-item .DateRangePicker {
    flex-grow: 1; }
    #Reward-Discipline-List .filter .filter-item .DateRangePicker .DateRangePickerInput {
      width: 100%;
      height: 34px; }
      #Reward-Discipline-List .filter .filter-item .DateRangePicker .DateRangePickerInput .DateInput.DateInput_1 input {
        height: 32px; }

#Reward-Discipline-List .table th {
  white-space: pre; }

#Reward-Discipline-List .table td {
  vertical-align: baseline; }
.add-staff-indentity-paper-modal .identity-row:hover {
  background-color: rgba(211, 211, 211, 0.15); }

.add-staff-indentity-paper-modal .identity-row label {
  width: 100%;
  text-align: left; }

.add-staff-indentity-paper-modal .identity-row .SingleDatePicker {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  height: 30px;
  border-radius: 3px;
  background-color: white; }
  .add-staff-indentity-paper-modal .identity-row .SingleDatePicker .SingleDatePickerInput {
    width: 100%; }
    .add-staff-indentity-paper-modal .identity-row .SingleDatePicker .SingleDatePickerInput .DateInput {
      position: absolute;
      width: 100%; }
    .add-staff-indentity-paper-modal .identity-row .SingleDatePicker .SingleDatePickerInput input.DateInput_input {
      max-width: unset;
      padding-left: 10px; }

.add-staff-indentity-paper-modal .identity-row .rw-widget-input.rw-widget-picker.rw-widget-container {
  height: 30px; }
.add-staff-indentity-paper-modal .annex-box {
  border: 1px solid lightgray; }

.add-staff-indentity-paper-modal fieldset {
  border: 1px solid lightgray !important; }
  .add-staff-indentity-paper-modal fieldset legend {
    display: inline-block;
    width: unset;
    margin-left: 15px;
    padding: 10px 5px; }

.add-staff-indentity-paper-modal .cus-radio-btn {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  cursor: pointer; }
  .add-staff-indentity-paper-modal .cus-radio-btn input {
    position: relative;
    top: 2px; }
/**
* Location Search Input
**/
.location-search {
  position: relative;
  display: inline-block;
  /**
  * Location search dropdown
  **/ }
  .location-search .autocomplete-dropdown-container {
    position: absolute;
    background: white;
    z-index: 999;
    border-radius: 4px;
    border: 1px solid lightgray !important;
    right: 0;
    left: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    margin: 10px !important;
    cursor: pointer; }
  .location-search .autocomplete-dropdown-container::before,
  .location-search .autocomplete-dropdown-container::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 100%;
    width: 0;
    height: 0; }
  .location-search .autocomplete-dropdown-container::before {
    left: 19px;
    border: 11px solid transparent;
    border-bottom-color: lightgray; }
  .location-search .autocomplete-dropdown-container::after {
    left: 20px;
    border: 10px solid transparent;
    border-bottom-color: #fff; }
.signature .signatureCanvas {
  border: 1px solid black; }

.pin-id-profile {
  background-color: white;
  border-radius: 4px;
  width: 450px;
  margin: auto; }
  .pin-id-profile div {
    display: flex;
    align-items: center;
    justify-content: center; }
    .pin-id-profile div .inputStyle {
      width: 5rem !important;
      padding: 15px;
      height: 5rem;
      margin: 0 1rem;
      font-size: 3.5rem;
      border-radius: 4px;
      border: 1px solid rgba(0, 0, 0, 0.3); }
button.fuse-ripple-ready {
  /* fixes initial animation run, without user input, on page load.
 */ }
  button.fuse-ripple-ready:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 51%;
    width: 100%;
    height: 100%;
    margin-left: -50%;
    margin-top: -50%;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    transform: scale(0); }
  button.fuse-ripple-ready:not(:active):after {
    animation: ripple 0.6s ease-out; }
  button.fuse-ripple-ready:after {
    visibility: hidden; }
  button.fuse-ripple-ready:focus:after {
    visibility: visible; }
  button.fuse-ripple-ready .disable {
    opacity: 0.5; }

@keyframes ripple {
  0% {
    transform: scale(0); }
  20% {
    transform: scale(1); }
  100% {
    opacity: 0;
    transform: scale(1); } }
/**
  Profile
**/
.pin-id-profile {
  background-color: white;
  border-radius: 4px;
  width: 450px;
  margin: auto; }
  .pin-id-profile div {
    display: flex;
    align-items: center;
    justify-content: center; }
    .pin-id-profile div .inputStyle {
      width: 5rem !important;
      padding: 15px;
      height: 5rem;
      margin: 0 1rem;
      font-size: 3.5rem;
      border-radius: 4px;
      border: 1px solid rgba(0, 0, 0, 0.3); }

.page-content-module-wrapper.profile {
  padding: 2rem !important; }

.signature img {
  border: 1px solid;
  padding: 6px;
  width: 50%; }

#profile .page-header {
  min-height: 15rem !important;
  height: 15rem !important;
  /* background: url('/assets/images/backgrounds/profilebg.png') no-repeat !important; */
  background-size: cover !important;
  background-position: center !important; }

#profile .form-control {
  margin: 0 !important;
  padding: 5px !important;
  border-bottom: none !important;
  box-shadow: none !important;
  border-radius: 3px !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  height: auto !important; }

#profile .form-control:disabled,
#profile .form-control[readonly] {
  opacity: 0.4; }

#profile .form-group {
  margin-bottom: 0;
  will-change: color; }

#profile .form-control.no-border {
  border: none !important; }

.profile-img-wrapper {
  position: absolute;
  bottom: -3rem;
  z-index: 1;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5); }

.profile-image {
  border: 0.4rem solid #fff !important;
  border-radius: 0 !important; }

.profile-title {
  margin-left: 12rem;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3); }

.editable-inline {
  cursor: pointer;
  display: inline-flex; }

.editable-inline > i {
  display: none; }

.editable-inline:hover > i {
  display: block; }

#new-wpf-form .form-group {
  margin-bottom: 0;
  will-change: color; }

select.form-control {
  max-width: 100% !important;
  background-position: right 1rem center; }

.form-check {
  margin-top: 1.1rem; }

.dependence-info .card-footer {
  background: none !important; }

/**
Table css
**/
#personal-form .table-bordered th,
#personal-form .table-bordered td {
  border: 1px solid #e9ecef; }

#personal-form .table th,
#personal-form .table td {
  padding: 0.9rem 1.1rem;
  vertical-align: middle; }

/**
Table css
**/
.form-check {
  margin-top: 1.1rem; }

/**
Table css
**/
#staffInfo .text-secondary .icon {
  color: #2196f3 !important; }

#staffInfo .text-danger .icon {
  color: #f44336 !important; }

#staffInfo .text-success .icon {
  color: #4caf50 !important; }

#staffInfo .text-field-custom .w-60 {
  width: 60%; }

#staffInfo .text-field-custom .w-40 {
  border: none !important;
  width: 40%; }

#staffInfo .text-field-custom .w-50 {
  width: 50%; }

#staffInfo .text-field-custom .w-25 {
  width: 20%; }

#staffInfo .text-field-custom .w-50-n-noborder {
  border: none !important;
  width: 50%; }

#list-custom .btn {
  padding: 0 0.2rem !important;
  font-size: 1.1rem !important;
  min-width: 7.5rem !important;
  height: 3rem !important;
  line-height: 3rem !important;
  letter-spacing: 0.04em;
  border: none !important;
  color: #fff !important; }

#list-custom .icon {
  color: #fff !important; }

.general-info {
  z-index: 1; }
  .general-info .table-bordered th {
    border: 1px solid #e9ecef !important; }
  .general-info .table th {
    font-weight: 100 !important; }
  .general-info .table th,
  .general-info .table td {
    padding: 0.5rem 0.6rem !important;
    vertical-align: middle;
    border: 1px solid #e9ecef !important; }
  .general-info #customers {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%; }
  .general-info #customers td,
  .general-info #customers th {
    border: 1px solid #ddd;
    padding: 8px; }
  .general-info #customers tr:nth-child(even) {
    background-color: #f2f2f2; }
  .general-info #customers tr:hover {
    background-color: #ddd; }
  .general-info #customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #4caf50;
    color: white; }
  @media screen and (min-width: 768px) {
    .general-info .bordered-right {
      border-right: solid 1px #e4e4e4; } }
  .general-info input {
    max-height: 32px; }

#modalFg .form-group {
  padding-top: 0.5rem !important;
  margin-bottom: 0.5rem !important; }

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

.profile-box.card .card-header h5 {
  font-weight: bold;
  font-size: 1.2em;
  text-shadow: 0 1px #fff;
  color: #636363; }

.profile-box.card .card-body h5.title.text-muted {
  font-size: 1.2em; }

.profile-box.card .card-body .profile-image.avatar.huge {
  min-width: 15rem;
  min-height: 15rem;
  width: 15rem;
  height: 15rem;
  border-radius: 100% !important;
  overflow: hidden;
  border: solid 2px #f44336 !important;
  text-indent: 2000px; }

.profile-box.card .dropdown-menu .sub-header {
  background-color: #f8f8f8;
  border-top: solid 1px #eeeeee;
  border-bottom: solid 1px #eeeeee; }

.no-shadow {
  box-shadow: none !important; }

.z-index-1070 {
  z-index: 1070; }

.z-index-1080 {
  z-index: 1080; }

.profile-box.card {
  width: 100%; }

.hr-profile-assessment .overflow-x-auto {
  overflow-x: auto !important; }

.hr-profile-assessment .overflow-y-hidden {
  overflow-y: hidden !important; }
.hr-profile-self-assessment .table th,
.hr-profile-self-assessment .table td {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 8px; }

.hr-profile-self-assessment .table th {
  text-align: center;
  vertical-align: middle; }

.hr-profile-self-assessment .mobile .assessment-month .assessment-item + .assessment-item {
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid; }

.hr-profile-self-assessment .mobile .assessment-month + .assessment-month {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid; }

.hr-profile-self-assessment .pre-line {
  white-space: pre-line; }

.hr-profile-self-assessment-modal .w-80 {
  width: 80px; }
.hr-profile-manager-assessment .table th,
.hr-profile-manager-assessment .table td {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 8px; }

.hr-profile-manager-assessment .table th {
  text-align: center;
  vertical-align: middle; }

.hr-profile-manager-assessment .mobile .assessment-month .assessment-item + .assessment-item {
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid; }

.hr-profile-manager-assessment .mobile .assessment-month + .assessment-month {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid; }

.hr-profile-manager-assessment .pre-line {
  white-space: pre-line; }

.hr-profile-manager-assessment-modal .w-80 {
  width: 80px; }
.personal-profile-salary .overflow-x-auto {
  overflow-x: auto !important; }

.personal-profile-salary .overflow-y-hidden {
  overflow-y: hidden !important; }

.personal-profile-salary .limit-width {
  width: 100px; }

.personal-profile-salary .tax-table {
  width: 40vw; }
  @media (max-width: 576px) {
    .personal-profile-salary .tax-table {
      width: 100vw; } }

.personal-profile-salary .salary-table {
  width: 35vw; }
  .personal-profile-salary .salary-table td {
    border: 1px solid;
    padding: 1px 4px; }
  .personal-profile-salary .salary-table tbody td {
    font-size: 11px; }
  @media (max-width: 576px) {
    .personal-profile-salary .salary-table {
      width: 80vw; }
      .personal-profile-salary .salary-table tbody td {
        font-size: 10px; } }
  .personal-profile-salary .salary-table .header {
    font-size: 24px; }
  .personal-profile-salary .salary-table .sub-header {
    font-size: 18px; }
  .personal-profile-salary .salary-table .background-solid-yellow {
    background-color: #FFD400; }
  .personal-profile-salary .salary-table .background-light-yellow {
    background-color: #FBEC5D; }
  .personal-profile-salary .salary-table .background-light-orange {
    background-color: #FFBF61; }
.date-range-picker {
  display: flex; }

.date-range-picker > div.input-group {
  border: solid 1px #ccc;
  border-radius: 3px;
  margin-left: 10px;
  background-color: #f7f7f7; }

.date-range-picker input {
  border-bottom: none;
  box-shadow: none !important; }

.date-range-picker .input-group-prepend {
  align-self: center;
  padding-left: 4px; }

.search-container {
  flex: 1; }

input.DateInput_input {
  max-width: 120px; }

.header-class tr {
  background-color: 'aquamarine';
  text-align: center;
  font-weight: 'bold'; }

.organization-wrapper .card-header h5 {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2em;
  text-shadow: 0 1px #fff;
  color: #636363;
  white-space: nowrap;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden; }

.organization-wrapper .list-group.list-group-links .list-group-item {
  border-bottom: solid 1px #f5f5f5; }
  .organization-wrapper .list-group.list-group-links .list-group-item .badge-pill {
    padding-left: 0.5em;
    padding-right: 0.5em; }

.organization-wrapper .list-group.list-group-links a.list-group-item:hover {
  background-color: #f8f9fa; }
.page-content-card .nav-tabs {
  padding: 0 2.4rem;
  background-color: #FFFFFF;
  -webkit-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);
  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); }

.nav-item .nav-link {
  padding-left: 30px;
  padding-right: 30px; }

.avatar-lg {
  width: 60px;
  height: 60px;
  text-indent: 2000px; }

.nav-tabs .nav-link.active:not(.dropdown-toggle):after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px !important;
  background-color: #3C4252; }
.tag {
  background-color: #f4f4f4;
  border: 1px solid #e9e9e9;
  border-radius: 2px;
  display: inline-block;
  font-size: 12px;
  padding-left: 2px; }

.tag:focus-within {
  background-color: #e9e9e9;
  border-color: #a0a0a0; }

.tag-remove {
  color: #a0a0a0;
  font-size: 12px;
  line-height: 100%;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0 5px;
  box-shadow: none; }

.tag-remove.disabled,
.tag-remove.readOnly {
  cursor: not-allowed; }

.tag-remove:focus {
  color: #3c3c3c; }

.node > label {
  cursor: pointer;
  margin-left: 2px; }

.tag-list {
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
  padding-right: 20px; }

.tag-item {
  display: inline-block;
  margin: 1px 4px; }

.tag-item .search {
  border: none;
  outline: none; }

.tag-item:last-child {
  margin-right: 4px; }

.node {
  list-style: none;
  white-space: nowrap;
  padding: 4px; }

.node.leaf.collapsed {
  display: none; }

.node.disabled > * {
  color: gray;
  cursor: not-allowed; }

.node.match-in-children.hide .node-label {
  opacity: 0.5; }

.node.focused {
  background-color: #f4f4f4; }

.toggle {
  white-space: pre;
  margin-right: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  font-style: normal; }

.toggle:after {
  content: " "; }

.toggle.collapsed:after {
  content: "+"; }

.toggle.expanded:after {
  content: "-"; }

.searchModeOn .toggle {
  display: none; }

.checkbox-item,
.radio-item {
  vertical-align: middle;
  margin: 0 4px 0 0; }

.checkbox-item.simple-select,
.radio-item.simple-select {
  display: none; }

.hide:not(.match-in-children) {
  display: none; }

.react-dropdown-tree-select .dropdown {
  position: relative;
  display: table;
  width: 100%; }

.react-dropdown-tree-select .dropdown .dropdown-trigger {
  padding: 2px;
  line-height: 20px;
  max-height: 200px;
  display: inline-block;
  overflow: auto;
  border: 1px solid #b9b9b9;
  border-radius: 5px;
  font-size: 14px;
  width: 100%; }

.react-dropdown-tree-select .dropdown .dropdown-trigger.arrow {
  cursor: pointer; }

.react-dropdown-tree-select .dropdown .dropdown-trigger.arrow.bottom:after {
  content: "";
  position: absolute;
  top: 12px;
  right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #666 transparent transparent transparent; }

.react-dropdown-tree-select .dropdown .dropdown-trigger.arrow.top:after {
  transform: rotate(180 degre); }

.react-dropdown-tree-select .dropdown .dropdown-trigger.arrow.disabled {
  cursor: not-allowed; }

.react-dropdown-tree-select
.dropdown
.dropdown-trigger.arrow.disabled.bottom:after {
  color: #b9b9b9; }

.react-dropdown-tree-select .dropdown .dropdown-content {
  position: absolute;
  padding: 4px;
  z-index: 1;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid #ccc;
  font-size: 14px;
  max-height: 500px;
  overflow: auto;
  border: 1px solid #ccc;
  font-size: 14px; }

.react-dropdown-tree-select .dropdown .dropdown-content .search {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none; }

.react-dropdown-tree-select .dropdown .dropdown-content ul {
  margin: 0;
  padding: 0; }
.org-form-c58e2b30-2fd2-46e1-87fe-5c8f6ec0bbd4 .tag-item .search {
  padding: 3px 2px; }

.org-form-c58e2b30-2fd2-46e1-87fe-5c8f6ec0bbd4 .tag-item .tag {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 2px;
  margin-bottom: 2px; }

.org-form-c58e2b30-2fd2-46e1-87fe-5c8f6ec0bbd4 .tag-item:nth-child(2) {
  display: none; }

.org-form-c58e2b30-2fd2-46e1-87fe-5c8f6ec0bbd4 .react-dropdown-tree-select .dropdown .dropdown-trigger.arrow.bottom:after {
  top: 15px; }
.date-range-picker {
  display: flex; }

.date-range-picker > div.input-group {
  border: solid 1px #ccc;
  border-radius: 3px;
  margin-left: 10px;
  background-color: #f7f7f7; }

.date-range-picker input {
  border-bottom: none;
  box-shadow: none !important; }

.date-range-picker .input-group-prepend {
  align-self: center;
  padding-left: 4px; }

.search-container {
  flex: 1; }

input.DateInput_input {
  max-width: 120px; }

.header-class tr {
  background-color: "aquamarine";
  text-align: center;
  font-weight: "bold"; }

.organization-wrapper .card-header h5 {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2em;
  text-shadow: 0 1px #fff;
  color: #636363;
  white-space: nowrap;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden; }

.organization-wrapper .list-group.list-group-links .list-group-item {
  border-bottom: solid 1px #f5f5f5; }
  .organization-wrapper .list-group.list-group-links .list-group-item .badge-pill {
    padding-left: 0.5em;
    padding-right: 0.5em; }

.organization-wrapper .list-group.list-group-links a.list-group-item:hover {
  background-color: #f8f9fa; }

@media (min-width: 1800px) {
  .organization-wrapper .col-left {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .organization-wrapper .col-right {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; } }

[class^="oci-"],
[class*=" oci-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "fuse-iconfont" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.orgchart .oc-node .bottomEdge.oci-chevron-up::before {
  content: "\ED91";
  bottom: 1rem;
  color: #f22112; }

.orgchart .oc-node .bottomEdge.oci-chevron-down::before {
  content: "\EE6B";
  bottom: 1rem;
  color: #0c83e2; }

.orgchart .oc-node .verticalEdge::before {
  left: calc(50% - 1.2rem); }

.orgchart .oc-node .oc-edge.topEdge, .orgchart .oc-node .oc-edge.rightEdge, .orgchart .oc-node .oc-edge.leftEdge {
  display: none; }

.index-1070-im {
  z-index: 1070 !important; }

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

.myChart .oci-chevron-up::before,
.myChart .oci-chevron-down::before {
  width: 1rem;
  height: 1rem; }

.myChart .oci-chevron-up::before {
  border: none;
  transform: none; }

.myChart .oci-chevron-down::before {
  border: none;
  transform: none; }

.myChart .oci-chevron-left::before,
.myChart .oci-chevron-right::before,
.myChart .topEdge.oci-chevron-down::before {
  content: none; }

.myChart .oc-node .box-org-chart .oc-edge {
  display: none; }

.org-section .org-ttl {
  background-color: #2187d9;
  color: #fff;
  padding: 10px; }

.org-section .org-search {
  padding: 5px;
  background-color: #fff; }
  .org-section .org-search input {
    width: 100%;
    padding: 8px;
    border: 1px solid #eee; }

.set-height {
  max-height: 73vh;
  overflow: auto;
  padding-right: 1px; }
  .set-height::-webkit-scrollbar {
    width: 0px;
    background-color: #eeeeee; }
  .set-height::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5; }
  .set-height::-webkit-scrollbar-thumb {
    background-color: #aeafaf;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, rgba(255, 255, 255, 0.2)), color-stop(0.5, transparent), to(transparent)); }

.HROrgChart .orgChart {
  padding-left: 5px;
  background-color: #fff;
  max-height: calc(80vh - 190px);
  overflow: auto;
  padding-right: 1px;
  background-color: #fff; }
  .HROrgChart .orgChart::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #eeeeee; }
  .HROrgChart .orgChart::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5; }
  .HROrgChart .orgChart::-webkit-scrollbar-thumb {
    background-color: #aeafaf;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, rgba(255, 255, 255, 0.2)), color-stop(0.5, transparent), to(transparent)); }
  .HROrgChart .orgChart .icon-minus-box-outline,
  .HROrgChart .orgChart .icon-plus {
    font-size: 1.1em;
    position: relative;
    color: #b4b9bf;
    z-index: 999; }
  .HROrgChart .orgChart .nodeLine__2 {
    position: relative; }
    .HROrgChart .orgChart .nodeLine__2::before {
      content: "";
      position: absolute;
      top: 20px;
      left: 6px;
      height: calc(100% - 30px);
      border-left: 1px solid #b4b9bf;
      z-index: 0; }
  .HROrgChart .orgChart .nodeNoMember {
    display: none; }
  .HROrgChart .orgChart .inboxLine__2 {
    position: relative; }
    .HROrgChart .orgChart .inboxLine__2::after {
      content: "";
      position: absolute;
      top: 0;
      left: 7px;
      height: 100%;
      border-left: 1px solid #b4b9bf;
      z-index: 0; }
  .HROrgChart .orgChart .nodeNoMember {
    display: none; }
  .HROrgChart .orgChart .nodePrimary {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0; }
    .HROrgChart .orgChart .nodePrimary input {
      width: 15px;
      position: relative; }
      .HROrgChart .orgChart .nodePrimary input::before {
        content: "";
        position: absolute;
        border-bottom: 1px solid #b4b9bf;
        top: 55%;
        width: 70%;
        right: 18px; }
    .HROrgChart .orgChart .nodePrimary label {
      margin-bottom: 0; }
    .HROrgChart .orgChart .nodePrimary.nodeLast {
      margin-left: 30px; }
  .HROrgChart .orgChart .nodePrimary__Space {
    margin-left: 28px;
    white-space: nowrap; }

@media screen and (max-width: 992px) {
  .HROrgChart .ShowMemberOrgChart {
    max-height: 100%; } }

.ShowMemberOrgChart {
  max-height: calc(80vh - 100px);
  overflow: auto;
  padding-right: 1px;
  background-color: #fff; }
  .ShowMemberOrgChart::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #eeeeee; }
  .ShowMemberOrgChart::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5; }
  .ShowMemberOrgChart::-webkit-scrollbar-thumb {
    background-color: #aeafaf;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, rgba(255, 255, 255, 0.2)), color-stop(0.5, transparent), to(transparent)); }
  .ShowMemberOrgChart table td:nth-of-type(2) {
    width: 22%; }
  .ShowMemberOrgChart table td:nth-of-type(3) {
    width: 18%; }
  .ShowMemberOrgChart table td:nth-of-type(4) {
    width: 25%; }
  .ShowMemberOrgChart table td:nth-of-type(5) {
    width: 30%; }
  .ShowMemberOrgChart .indicatePIC {
    font-weight: 700; }
.block-with-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical; }
  .block-with-text .two-line {
    -webkit-line-clamp: 2; }

.nav-tabs-horizontal-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch; }

.dashboard-sec01 {
  display: flex;
  margin-bottom: 20px; }
  .dashboard-sec01 .internal-noti-slider {
    width: 50%;
    padding-right: 15px; }
    .dashboard-sec01 .internal-noti-slider .internal-noti-slider-inner {
      width: 100%;
      max-width: 670px;
      margin: 0 auto; }
      .dashboard-sec01 .internal-noti-slider .internal-noti-slider-inner .internal-noti-slider-link {
        display: block;
        height: 270px;
        width: 100%;
        overflow: hidden; }
        .dashboard-sec01 .internal-noti-slider .internal-noti-slider-inner .internal-noti-slider-link img {
          width: 100%; }
      .dashboard-sec01 .internal-noti-slider .internal-noti-slider-inner .slick-dots {
        bottom: 20px; }
        .dashboard-sec01 .internal-noti-slider .internal-noti-slider-inner .slick-dots li {
          width: 10px;
          height: 10px;
          margin: 2px 3px; }
          .dashboard-sec01 .internal-noti-slider .internal-noti-slider-inner .slick-dots li button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #dfdede; }
          .dashboard-sec01 .internal-noti-slider .internal-noti-slider-inner .slick-dots li.slick-active button {
            background-color: #888888; }
  .dashboard-sec01 .block-score {
    display: none; }
  .dashboard-sec01 .time-keeping-sec {
    width: 50%;
    padding-left: 15px; }

.dashboard-box {
  width: 100%;
  background-color: #eceff7;
  border-radius: 3px; }
  .dashboard-box .dashboard-header {
    background-color: #2476af;
    color: #fff;
    font-size: 16px;
    border-radius: 3px;
    padding: 8px 15px; }

.dashboard-sec02 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px; }
  .dashboard-sec02 .dashboard-2col {
    width: calc(50% - 15px); }
    .dashboard-sec02 .dashboard-2col .dashboard-box {
      height: 100%; }
      .dashboard-sec02 .dashboard-2col .dashboard-box .dashboard-header {
        display: flex;
        justify-content: space-between;
        align-items: center; }
        .dashboard-sec02 .dashboard-2col .dashboard-box .dashboard-header .btn-dashboard-header {
          color: #fff;
          font-size: 13px;
          font-weight: 300;
          background-color: #e69219;
          border-radius: 3px;
          box-shadow: none;
          padding: 3px 10px;
          height: auto;
          line-height: 1.6em; }

.data-timekeeper .checkin {
  font-weight: bold;
  color: #36ca27; }

.data-timekeeper .checkout {
  font-weight: bold;
  color: #db1414; }

.data-timekeeper .text-start {
  text-align: start; }

.dashboard-internal-notification .dashboard-internal-notification-ctn .dashboard-internal-notification-item {
  padding: 5px 10px;
  border-left: 3px solid #f97e3b;
  margin: 10px 0; }
  .dashboard-internal-notification .dashboard-internal-notification-ctn .dashboard-internal-notification-item .dashboard-internal-notification-ttl {
    display: flex;
    align-items: flex-end; }
    .dashboard-internal-notification .dashboard-internal-notification-ctn .dashboard-internal-notification-item .dashboard-internal-notification-ttl span:nth-child(1) {
      color: #343434;
      font-size: 18px;
      font-weight: 500;
      flex: 1;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .dashboard-internal-notification .dashboard-internal-notification-ctn .dashboard-internal-notification-item .dashboard-internal-notification-ttl span:nth-child(2) {
      color: #8f8f8f;
      font-size: 14px;
      padding-bottom: 1px; }
  .dashboard-internal-notification .dashboard-internal-notification-ctn .dashboard-internal-notification-item .dashboard-internal-notification-sumary {
    color: #343434;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }

.dashboard-internal-email .dashboard-internal-email-ctn .dashboard-internal-email-item {
  padding: 5px 10px;
  margin: 10px 0;
  border-bottom: 1px dashed #c1bebe;
  display: flex;
  justify-content: space-between; }
  .dashboard-internal-email .dashboard-internal-email-ctn .dashboard-internal-email-item .avatar {
    width: 40px;
    background-color: transparent; }
  .dashboard-internal-email .dashboard-internal-email-ctn .dashboard-internal-email-item .dashboard-internal-email-item-inner {
    width: calc(100% - 50px); }
    .dashboard-internal-email .dashboard-internal-email-ctn .dashboard-internal-email-item .dashboard-internal-email-item-inner .dashboard-internal-email-ttl {
      display: flex;
      align-items: flex-end; }
      .dashboard-internal-email .dashboard-internal-email-ctn .dashboard-internal-email-item .dashboard-internal-email-item-inner .dashboard-internal-email-ttl span:nth-child(1) {
        color: #343434;
        font-size: 18px;
        font-weight: 500;
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
      .dashboard-internal-email .dashboard-internal-email-ctn .dashboard-internal-email-item .dashboard-internal-email-item-inner .dashboard-internal-email-ttl span:nth-child(2) {
        color: #8f8f8f;
        font-size: 14px;
        padding-bottom: 1px; }
    .dashboard-internal-email .dashboard-internal-email-ctn .dashboard-internal-email-item .dashboard-internal-email-item-inner .dashboard-internal-email-sumary {
      color: #343434;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }

.cursor-pointer {
  cursor: pointer; }

.btn-dashboard-viewmore {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  background-color: #2476af;
  border-radius: 3px;
  box-shadow: none;
  padding: 3px 10px;
  height: auto;
  line-height: 1.6em; }
  .btn-dashboard-viewmore:hover {
    color: #fff;
    opacity: 0.8; }

.home-new-icon {
  width: 35px;
  margin-right: 5px;
  margin-bottom: 3px; }

.score-card-item {
  padding: 10px 10px 5px; }
  .score-card-item + .score-card-item {
    border-top: 1px solid #ddd; }
  .score-card-item .score-card-item-ttl {
    display: flex;
    align-items: center; }
    .score-card-item .score-card-item-ttl .dashboard-scorecard-time {
      color: #8f8f8f;
      font-size: 14px;
      font-weight: 500; }
    .score-card-item .score-card-item-ttl .dashboard-scorecard-score {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 0;
      margin-right: 20px; }
      .score-card-item .score-card-item-ttl .dashboard-scorecard-score dt {
        background-color: #d6162c;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px; }
        .score-card-item .score-card-item-ttl .dashboard-scorecard-score dt i {
          color: #fff; }
      .score-card-item .score-card-item-ttl .dashboard-scorecard-score dd {
        margin-bottom: 0;
        font-weight: 500; }
  .score-card-item .score-card-item-des {
    display: flex;
    flex-wrap: wrap;
    margin: 5px 0; }
    .score-card-item .score-card-item-des dl {
      display: flex;
      align-items: center;
      margin-right: 20px; }
      .score-card-item .score-card-item-des dl dt {
        background-color: #2196f3;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px; }
        .score-card-item .score-card-item-des dl dt i {
          color: #fff; }
      .score-card-item .score-card-item-des dl dd {
        margin-bottom: 0;
        font-weight: 500; }
    .score-card-item .score-card-item-des .dashboard-scorecard-time {
      color: #8f8f8f;
      font-size: 14px;
      font-weight: 500;
      align-self: center;
      margin-bottom: 1rem; }

.btn-sp,
.layout-sp-flex {
  display: none !important; }

.mobile-info {
  display: none; }

@media (max-width: 640px) {
  .dashboard-sec01 {
    flex-wrap: wrap; }
    .dashboard-sec01 .internal-noti-slider {
      width: 100%;
      padding-right: 0px;
      margin-right: 0;
      margin-bottom: 20px; }
      .dashboard-sec01 .internal-noti-slider .internal-noti-slider-link {
        height: 37vw !important; }
    .dashboard-sec01 .block-score {
      display: block;
      width: 100%; }
    .dashboard-sec01 .time-keeping-sec {
      width: 100%;
      padding-left: 0px; }
  .dashboard-sec02 {
    flex-wrap: wrap; }
    .dashboard-sec02 .dashboard-2col {
      width: 100%;
      margin-bottom: 20px; }
      .dashboard-sec02 .dashboard-2col.dashboard-noti-order {
        order: -1; }
  .btn-pc,
  .layout-pc-flex {
    display: none !important; }
  .btn-sp,
  .layout-sp {
    display: inline-block !important; }
  .mobile-info {
    display: block !important; }
  .layout-sp-flex {
    display: flex !important; } }
.daily-report-table th, .daily-report-table tr, .daily-report-table td {
  padding: 5px; }

.daily-report-table .number-value, .daily-report-table .percent-value {
  font-size: 1rem; }

@media (min-width: 1400px) {
  .daily-report-table .number-value, .daily-report-table .percent-value {
    font-size: 1.4rem; } }

.daily-report-table tr.number-value-title th {
  padding-left: 10px;
  padding-right: 10px; }

.overview-report .title {
  font-size: 8rem; }
  .overview-report .title.title-lg {
    font-size: 10rem; }
  .overview-report .title > span {
    font-size: 3.2rem !important; }

.overview-report .sub-title {
  font-weight: 500;
  font-size: 1.6rem !important; }

.overview-report .card-bg-primary {
  border-color: #187da0;
  background-color: #20a8d8 !important;
  border-radius: 4px; }

.overview-report .card-bg-warning {
  border-color: #c69500;
  background-color: #ffc107 !important;
  border-radius: 4px; }

.overview-report .card-bg-danger {
  border-color: #f5302e;
  background-color: #f86c6b !important;
  border-radius: 4px; }

.overview-report .sub-title {
  font-weight: 500; }

.overview-report .card-bg-primary {
  border-color: #187da0;
  background-color: #20a8d8 !important;
  border-radius: 4px; }

.overview-report .card-bg-warning {
  border-color: #c69500;
  background-color: #ffc107 !important;
  border-radius: 4px; }

.overview-report .card-bg-danger {
  border-color: #f5302e;
  background-color: #f86c6b !important;
  border-radius: 4px; }

.overview-report .card-bg-success {
  border-color: green;
  background-color: green !important;
  border-radius: 4px; }

.overview-report .card-bg-purple {
  border-color: #662dba;
  background-color: #662dba !important;
  border-radius: 4px; }

.overview-report .card-bg-orange {
  border-color: #f8831e;
  background-color: #f8831e !important;
  border-radius: 4px; }

.overview-report .card-bg-green {
  border-color: #009231;
  background-color: #009231 !important;
  border-radius: 4px; }

.overview-report .content-h-70 {
  height: 10rem !important; }

.overview-report .content-h-100 {
  height: 12rem !important; }

.overview-report .content-h-212 {
  height: 26rem !important; }

.LaboFactory .rw-dropdown-list-input {
  padding: 6px .857em; }

.half-display-report input.DateInput_input {
  max-width: 100px; }

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 551px; } }

.appointment-ops-report input.DateInput_input {
  max-width: 100px; }

.health-records-report input.DateInput_input {
  max-width: 100px; }
.chooseCampaign-box {
  padding: 15px;
  border-bottom: 1px solid #d8d9d9;
  text-align: left; }
  .chooseCampaign-box .chooseCampaign-box-ttl {
    color: #3e3e3e;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px; }
  .chooseCampaign-box .chooseCampaign-box-des {
    margin-bottom: 5px; }
    .chooseCampaign-box .chooseCampaign-box-des dl {
      display: flex;
      margin-bottom: 3px; }
      .chooseCampaign-box .chooseCampaign-box-des dl dd {
        margin-bottom: 0;
        margin-left: 5px; }
.WelcomeModal-content img {
  width: 100% !important;
  height: auto; }

.WelcomeModal {
  top: 20%; }
  .WelcomeModal .modal-header {
    padding: 0; }
    .WelcomeModal .modal-header .modal-title strong {
      display: none; }
    .WelcomeModal .modal-header .icon-close {
      font-size: 30px;
      line-height: 30px;
      color: #3e3e3e !important; }
    .WelcomeModal .modal-header .close-modal {
      top: -13px;
      right: -13px;
      background: #fff;
      border-radius: 15px;
      height: 30px;
      width: 30px; }
  .WelcomeModal .modal-body {
    padding: 0; }
  .WelcomeModal .modal-content {
    border-radius: 60px 0 60px 60px; }

@media (min-width: 576px) {
  .WelcomeModal {
    max-width: 592px; }
    .WelcomeModal .close-modal {
      top: -13px;
      right: -10px;
      border-radius: 12px;
      height: 24px;
      width: 24px; } }
#customer-debt-report table.total {
  width: 360px; }
  #customer-debt-report table.total tr td {
    padding: 8px 6px;
    border: 1px solid #E9ECEF; }

#customer-debt-report table.detail {
  border: 1px solid #E9ECEF; }
#receivables-debt-report table.total {
  width: 360px; }
  #receivables-debt-report table.total tr td {
    padding: 8px 6px;
    border: 1px solid #E9ECEF; }

#receivables-debt-report table.detail {
  border: 1px solid #E9ECEF; }
#customer-debt-report table.total {
  width: 360px; }
  #customer-debt-report table.total tr td {
    padding: 8px 6px;
    border: 1px solid #E9ECEF; }

#customer-debt-report table.detail {
  border: 1px solid #E9ECEF; }
#survey-report .SingleDatePicker {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 3px;
  justify-content: unset; }

#survey-report .has-border {
  border: 1px solid rgba(0, 0, 0, 0.2) !important; }
#material-report .SingleDatePicker {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 3px;
  justify-content: unset; }

#material-report .has-border {
  border: 1px solid rgba(0, 0, 0, 0.2) !important; }

#material-report .table-bordered {
  border: 1px solid #dee2e6; }

#material-report .table-bordered th, #material-report .table-bordered td {
  border: 1px solid #dee2e6; }
#branch-target-report .SingleDatePicker {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 3px;
  justify-content: unset; }

#branch-target-report .has-border {
  border: 1px solid rgba(0, 0, 0, 0.2) !important; }

#branch-target-report table.table-bordered {
  border: 1px solid rgba(0, 0, 0, 0.2) !important; }

#branch-target-report table.table-bordered tr th:not(:last-child),
#branch-target-report table.table-bordered tr td:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.2) !important; }

#branch-target-report table.table-bordered tr:not(:last-child) th,
#branch-target-report table.table-bordered tr:not(:last-child) td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important; }

#branch-target-report label {
  margin-bottom: 0px; }
#branch-target-report .SingleDatePicker {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 3px;
  justify-content: unset; }

#branch-target-report .has-border {
  border: 1px solid rgba(0, 0, 0, 0.2) !important; }

#branch-target-report table.table-bordered {
  border: 1px solid rgba(0, 0, 0, 0.2) !important; }

#branch-target-report table.table-bordered tr th:not(:last-child),
#branch-target-report table.table-bordered tr td:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.2) !important; }

#branch-target-report table.table-bordered tr:not(:last-child) th,
#branch-target-report table.table-bordered tr:not(:last-child) td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important; }

#branch-target-report label {
  margin-bottom: 0px; }
#branch-target-report .SingleDatePicker {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 3px;
  justify-content: unset; }

#branch-target-report .has-border {
  border: 1px solid rgba(0, 0, 0, 0.2) !important; }

#branch-target-report table.table-bordered {
  border: 1px solid rgba(0, 0, 0, 0.2) !important; }

#branch-target-report table.table-bordered tr th:not(:last-child),
#branch-target-report table.table-bordered tr td:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.2) !important; }

#branch-target-report table.table-bordered tr:not(:last-child) th,
#branch-target-report table.table-bordered tr:not(:last-child) td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important; }

#branch-target-report label {
  margin-bottom: 0px; }
#salary .title {
  color: rgba(0, 0, 0, 0.54);
  padding: 6px;
  font-size: 1.4rem;
  font-weight: 500;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #f5f7f9; }

#salary .month-salary {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  #salary .month-salary-title strong {
    font-size: 2rem;
    color: #3297d3; }

#salary .month-selector {
  width: auto !important; }

#salary .salary-row {
  width: 100%; }
  #salary .salary-row:hover {
    background-color: #e5effa; }
  #salary .salary-row td {
    padding: 12px; }
  #salary .salary-row .muted {
    opacity: 0.6; }
.work-profile-block .custom-single-date-picker .SingleDatePicker_1 {
  width: 100%;
  height: 33px; }

.work-profile-block .custom-single-date-picker .SingleDatePicker > :first-child {
  padding-right: 10px;
  width: 100%; }
.work-contract-annex-modal-3331965a-23ae-42ce-97cf-e8168a80ba22 .annex-box {
  border: 1px solid lightgray; }

.work-contract-annex-modal-3331965a-23ae-42ce-97cf-e8168a80ba22 .modal-content {
  width: 600px; }

.work-contract-annex-modal-3331965a-23ae-42ce-97cf-e8168a80ba22 fieldset {
  border: 1px solid lightgray !important; }
  .work-contract-annex-modal-3331965a-23ae-42ce-97cf-e8168a80ba22 fieldset legend {
    display: inline-block;
    width: unset;
    margin-left: 15px;
    padding: 10px 5px; }

.work-contract-annex-modal-3331965a-23ae-42ce-97cf-e8168a80ba22 .cus-radio-btn {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  cursor: pointer; }
  .work-contract-annex-modal-3331965a-23ae-42ce-97cf-e8168a80ba22 .cus-radio-btn input {
    position: relative;
    top: 2px; }

.work-contract-annex-modal-3331965a-23ae-42ce-97cf-e8168a80ba22 input.text-input {
  padding: 5.5px 5px !important;
  height: 29px !important; }

.work-contract-annex-modal-3331965a-23ae-42ce-97cf-e8168a80ba22 .custom-single-date-picker .SingleDatePicker_1 {
  width: 100%; }

@media (max-width: 640px) {
  .work-contract-annex-modal-3331965a-23ae-42ce-97cf-e8168a80ba22 .modal-content {
    width: 100%; } }
.add-staff-indentity-paper-modal .annex-box {
  border: 1px solid lightgray; }

.add-staff-indentity-paper-modal fieldset {
  border: 1px solid lightgray !important; }
  .add-staff-indentity-paper-modal fieldset legend {
    display: inline-block;
    width: unset;
    margin-left: 15px;
    padding: 10px 5px; }

.add-staff-indentity-paper-modal .cus-radio-btn {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  cursor: pointer; }
  .add-staff-indentity-paper-modal .cus-radio-btn input {
    position: relative;
    top: 2px; }
.add-notification-form .SingleDatePicker {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 5px;
  justify-content: unset; }

.add-notification-form .form-control, .add-notification-form .form-control:hover {
  box-shadow: none; }

.add-notification-form .form-control {
  height: unset; }

.add-notification-form #multichecbox .property-panel-content {
  overflow: initial; }

.add-notification-form #multichecbox .col-lg-9 {
  min-height: 250px; }

.add-notification-form #multichecbox #multigroup {
  margin: 0 auto;
  width: 300px !important;
  padding-top: 15px; }

.add-notification-form #multiselection .property-panel-content {
  width: 300px; }

.add-notification-form #multichecbox .property-section {
  left: 0px; }

.modal-md {
  max-width: unset; }
  .modal-md .modal-content {
    width: 600px;
    max-width: 90%;
    margin: auto; }
.edit-notification-form .SingleDatePicker {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 5px;
  justify-content: unset; }

.edit-notification-form .form-control, .edit-notification-form .form-control:hover {
  box-shadow: none; }

.edit-notification-form .form-control {
  height: unset; }

.modal-md {
  max-width: unset; }
  .modal-md .modal-content {
    width: 600px;
    max-width: 90%;
    margin: auto; }
.OrgList-display .arround {
  margin: 0 3px 3px;
  background-color: #ccc;
  padding: 5px;
  border-radius: 2px;
  display: inline-block; }
  .OrgList-display .arround .side {
    padding: 5px; }

.dzu-submitButtonContainer {
  display: none; }

.count-circle {
  margin-left: 5px;
  font-size: 12px;
  min-width: 18px;
  height: 18px;
  padding: 3px;
  color: #fff;
  border-radius: 50%;
  background-color: #d6121c;
  display: flex;
  align-items: center;
  justify-content: center; }
.add-notification-form .SingleDatePicker {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 5px;
  justify-content: unset;
  width: fit-content; }
  .add-notification-form .SingleDatePicker .SingleDatePickerInput_calendarIcon {
    padding-right: 10px; }

.add-notification-form .form-control,
.add-notification-form .form-control:hover {
  box-shadow: none; }

.add-notification-form .form-control {
  height: unset; }

.add-notification-form #multichecbox .property-panel-content {
  overflow: initial; }

.add-notification-form #multichecbox .col-lg-9 {
  min-height: 250px; }

.add-notification-form #multichecbox #multigroup {
  margin: 0 auto;
  width: 300px !important;
  padding-top: 15px; }

.add-notification-form #multiselection .property-panel-content {
  width: 300px; }

.add-notification-form #multichecbox .property-section {
  left: 0px; }

.modal-md {
  max-width: unset; }
  .modal-md .modal-content {
    width: 600px;
    max-width: 90%;
    margin: auto; }
.edit-notification-form .SingleDatePicker {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 5px;
  justify-content: unset;
  width: fit-content; }
  .edit-notification-form .SingleDatePicker .SingleDatePickerInput_calendarIcon {
    padding-right: 10px; }

.edit-notification-form .form-control,
.edit-notification-form .form-control:hover {
  box-shadow: none; }

.edit-notification-form .form-control {
  height: unset; }

.edit-notification-form #multichecbox .property-panel-content {
  overflow: initial; }

.edit-notification-form #multichecbox .col-lg-9 {
  min-height: 250px; }

.edit-notification-form #multichecbox #multigroup {
  margin: 0 auto;
  width: 300px !important;
  padding-top: 15px; }

.edit-notification-form #multiselection .property-panel-content {
  width: 300px; }

.edit-notification-form #multichecbox .property-section {
  left: 0px; }

.modal-md {
  max-width: unset; }
  .modal-md .modal-content {
    width: 600px;
    max-width: 90%;
    margin: auto; }
.add-notification-form .SingleDatePicker {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 5px;
  justify-content: unset; }

.add-notification-form .form-control, .add-notification-form .form-control:hover {
  box-shadow: none; }

.add-notification-form .form-control {
  height: unset; }

.add-notification-form #multichecbox .property-panel-content {
  overflow: initial; }

.add-notification-form #multichecbox .col-lg-9 {
  min-height: 250px; }

.add-notification-form #multichecbox #multigroup {
  margin: 0 auto;
  width: 300px !important;
  padding-top: 15px; }

.add-notification-form #multiselection .property-panel-content {
  width: 300px; }

.add-notification-form #multichecbox .property-section {
  left: 0px; }

.modal-md {
  max-width: unset; }
  .modal-md .modal-content {
    width: 600px;
    max-width: 90%;
    margin: auto; }
.notification-detail {
  justify-content: space-between;
  flex-direction: row; }
  .notification-detail .notification-detail-left {
    width: calc(100% - 410px); }
    .notification-detail .notification-detail-left .content {
      overflow-x: auto;
      overflow-y: hidden; }
      .notification-detail .notification-detail-left .content img {
        max-width: 100%; }
    .notification-detail .notification-detail-left .statistisch {
      margin: 30px 0 10px;
      display: flex; }
      .notification-detail .notification-detail-left .statistisch dt i {
        color: #515aaa; }
      .notification-detail .notification-detail-left .statistisch dd {
        margin: 0 25px 0 5px;
        color: #6d6d6d; }
    .notification-detail .notification-detail-left .btn-notification-like {
      background-color: #d0d0d0;
      box-shadow: none;
      color: #6d6d6d;
      border-radius: 5px;
      padding: 5px 15px;
      height: auto;
      line-height: 1.6em; }
    .notification-detail .notification-detail-left .comment {
      margin-top: 15px;
      background-color: #fafafa;
      padding: 15px 10px;
      width: 100%;
      max-width: 600px; }
      .notification-detail .notification-detail-left .comment .write-comment {
        position: relative; }
        .notification-detail .notification-detail-left .comment .write-comment .main-comment-textarea {
          border: 1px solid #eaeaea;
          border-radius: 5px;
          resize: none;
          padding-right: 35px !important; }
        .notification-detail .notification-detail-left .comment .write-comment .send-comment {
          position: absolute;
          top: 10px;
          right: 10px;
          background-color: transparent;
          box-shadow: none;
          padding: 0;
          border: none;
          line-height: 1em; }
          .notification-detail .notification-detail-left .comment .write-comment .send-comment i {
            color: #088dcd; }
      .notification-detail .notification-detail-left .comment .show-comment {
        margin-top: 20px; }
        .notification-detail .notification-detail-left .comment .show-comment .reply-comment {
          padding-left: 25px; }
        .notification-detail .notification-detail-left .comment .show-comment .comment-sec {
          display: flex;
          justify-content: space-between;
          margin-bottom: 10px; }
          .notification-detail .notification-detail-left .comment .show-comment .comment-sec .avatar {
            width: 35px;
            min-width: 35px;
            height: 35px;
            line-height: 35px;
            background-color: #eee; }
          .notification-detail .notification-detail-left .comment .show-comment .comment-sec .comment-box {
            width: calc(100% - 45px);
            background-color: #ffffff;
            border-radius: 5px;
            padding: 5px 10px; }
            .notification-detail .notification-detail-left .comment .show-comment .comment-sec .comment-box .user-comment {
              color: #3e3f5e;
              font-weight: 500;
              margin-bottom: 5px; }
              .notification-detail .notification-detail-left .comment .show-comment .comment-sec .comment-box .user-comment .comment-time {
                margin-left: 10px;
                color: #9494a0;
                font-size: 13px; }
            .notification-detail .notification-detail-left .comment .show-comment .comment-sec .comment-box .write-comment-reply {
              position: relative; }
              .notification-detail .notification-detail-left .comment .show-comment .comment-sec .comment-box .write-comment-reply .reply-comment-textarea {
                border: 1px solid #eaeaea;
                border-radius: 5px;
                resize: none;
                padding-right: 35px !important; }
              .notification-detail .notification-detail-left .comment .show-comment .comment-sec .comment-box .write-comment-reply .send-comment {
                position: absolute;
                top: 7px;
                right: 10px;
                background-color: transparent;
                box-shadow: none;
                padding: 0;
                border: none;
                line-height: 1em; }
                .notification-detail .notification-detail-left .comment .show-comment .comment-sec .comment-box .write-comment-reply .send-comment i {
                  color: #088dcd; }
  .notification-detail .notification-detail-right {
    width: 350px; }
    .notification-detail .notification-detail-right .notification-box {
      width: 100%;
      background-color: #eceff7;
      border-radius: 3px; }
      .notification-detail .notification-detail-right .notification-box .notification-box-top {
        background-color: #5e7ecb;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        border-radius: 3px;
        padding: 8px 15px; }
      .notification-detail .notification-detail-right .notification-box .notification-box-bottom .notification-box-item {
        padding: 5px 10px;
        border-left: 3px solid #f97e3b;
        margin: 10px 0; }
        .notification-detail .notification-detail-right .notification-box .notification-box-bottom .notification-box-item .notification-box-ttl {
          display: flex;
          align-items: flex-end; }
          .notification-detail .notification-detail-right .notification-box .notification-box-bottom .notification-box-item .notification-box-ttl span:nth-child(1) {
            color: #343434;
            font-size: 18px;
            font-weight: 500;
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis; }
          .notification-detail .notification-detail-right .notification-box .notification-box-bottom .notification-box-item .notification-box-ttl span:nth-child(2) {
            color: #8f8f8f;
            font-size: 14px;
            padding-bottom: 1px; }
        .notification-detail .notification-detail-right .notification-box .notification-box-bottom .notification-box-item .notification-box-sumary {
          color: #343434;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; }
      .notification-detail .notification-detail-right .notification-box .notification-box-bottom .btn-notification-viewmore {
        color: #fff;
        font-size: 13px;
        font-weight: 300;
        background-color: #264faf;
        border-radius: 3px;
        box-shadow: none;
        padding: 3px 10px;
        height: auto;
        line-height: 1.6em; }
        .notification-detail .notification-detail-right .notification-box .notification-box-bottom .btn-notification-viewmore:hover {
          color: #fff;
          opacity: 0.8; }

@media (max-width: 640px) {
  .notification-detail {
    flex-wrap: wrap; }
    .notification-detail .notification-detail-left {
      width: 100%;
      margin-bottom: 20px; }
    .notification-detail .notification-detail-right {
      width: 100%; } }
.service-quality .vertical-middle {
  vertical-align: middle; }

.service-quality .table thead tr th {
  background-color: #005f9e;
  color: white; }

.service-quality .table thead tr:first-child th:first-child {
  border-top-left-radius: 4px; }

.service-quality .table thead tr:first-child th:last-child {
  border-top-right-radius: 4px; }

.service-quality .table thead tr th,
.service-quality .table thead tr td,
.service-quality .table tbody tr th,
.service-quality .table tbody tr td {
  border: 1px solid #e9ecef;
  padding: 8px; }

.service-quality .max-width {
  max-width: 200px; }
.scorecard-category {
  color: #c52424;
  font-size: 18px;
  font-weight: 500; }

.score-criterion-box {
  padding: 15px 0;
  border-bottom: 1px solid #d1d2d3; }
  .score-criterion-box .score-criterion-name {
    font-weight: 500;
    margin-bottom: 3px;
    font-size: 16px; }
  .score-criterion-box .score-criterion-des {
    white-space: pre-wrap;
    padding-left: 10px;
    margin-bottom: 5px; }
  .score-criterion-box .score-criterion-action {
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
    .score-criterion-box .score-criterion-action .score-criterion-s {
      color: #3587c8;
      margin-right: 20px;
      margin-bottom: 0;
      margin-top: 7px; }
    .score-criterion-box .score-criterion-action .score-criterion-c {
      display: flex; }
      .score-criterion-box .score-criterion-action .score-criterion-c .form-check {
        background-color: #dfdfdf;
        border-radius: 3px;
        padding: 5px 10px; }
        .score-criterion-box .score-criterion-action .score-criterion-c .form-check .form-check-label {
          position: relative; }
          .score-criterion-box .score-criterion-action .score-criterion-c .form-check .form-check-label input[type="checkbox"]:checked ~ .checkbox-icon {
            color: #3587c8; }

.chooseBranch {
  background: #dde0e2;
  border-radius: 3px;
  padding: 10px 15px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 425px; }
  .chooseBranch .chooseBranch-sml {
    font-size: 12px;
    color: #6c6a6a;
    font-weight: 400;
    margin-bottom: 5px; }
  .chooseBranch .chooseBranch-lagre {
    font-size: 18px;
    color: #2e2d2d; }
    .chooseBranch .chooseBranch-lagre .rw-widget-container {
      background-color: transparent;
      border: none;
      box-shadow: none; }
      .chooseBranch .chooseBranch-lagre .rw-widget-container .rw-input {
        padding-left: 0;
        padding-right: 0; }

.scorecard-action-footer {
  background-color: #1e1e1e;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; }
  .scorecard-action-footer .scorecard-action-footer-info {
    color: #fff;
    margin-right: 20px; }
    .scorecard-action-footer .scorecard-action-footer-info .scorecard-action-footer-info-t {
      padding-top: 5px; }
    .scorecard-action-footer .scorecard-action-footer-info .scorecard-action-footer-info-b {
      padding-bottom: 5px;
      border-bottom: 1px solid #00a651; }
      .scorecard-action-footer .scorecard-action-footer-info .scorecard-action-footer-info-b span {
        margin-left: 5px;
        font-size: 18px;
        font-weight: 600; }
.preview-upload-image .card-body div {
  min-height: 80px; }

.score-card-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #aeabab; }
  .score-card-image i {
    margin-bottom: 5px;
    color: #a2a3a2; }

.notPass-text {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  resize: none;
  overflow-x: auto; }

.notPass-ttl {
  font-weight: 500;
  font-size: 15px; }
  .notPass-ttl span {
    color: #b6b5b5;
    font-weight: 400; }

.notPass-criterion-name {
  font-weight: 500; }

.notPass-criterion-desc {
  white-space: pre-wrap; }

.four-images-box > div {
  width: calc(25% - 6px);
  margin: 0 3px; }

.five-images-box > div {
  width: calc(20% - 6px);
  margin: 0 3px; }
.react-fancybox .thumbnail {
  max-width: 250px; }
  .react-fancybox .thumbnail img {
    width: 100%;
    max-width: 250px;
    cursor: pointer; }

.scoreCardDetailMedia {
  display: flex;
  flex-wrap: wrap; }
  .scoreCardDetailMedia .scoreCardDetailMedia-image {
    width: 100px;
    height: 80px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 5px;
    margin-bottom: 5px; }
  .scoreCardDetailMedia .image-sc {
    width: 100px;
    height: 80px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 5px;
    margin-bottom: 5px; }
    .scoreCardDetailMedia .image-sc img {
      max-width: 100%;
      max-height: 100%; }

@media (max-width: 768px) {
  .react-fancybox .box .image-box {
    max-width: 90vw; }
    .react-fancybox .box .image-box img {
      max-width: 100%; } }
.preview-upload-image .card-body div {
  min-height: 80px; }

.score-card-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #aeabab; }
  .score-card-image i {
    margin-bottom: 5px;
    color: #a2a3a2; }

.notPass-text {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  resize: none;
  overflow-x: auto; }

.notPass-ttl {
  font-weight: 500;
  font-size: 15px; }
  .notPass-ttl span {
    color: #b6b5b5;
    font-weight: 400; }

.notPass-criterion-name {
  font-weight: 500; }

.notPass-criterion-desc {
  white-space: pre-wrap; }

.four-images-box > div {
  width: calc(25% - 6px);
  margin: 0 3px; }

.five-images-box > div {
  width: calc(20% - 6px);
  margin: 0 3px; }

.custom-single-checkbox {
  display: flex;
  align-items: center;
  padding: 5px 12px;
  background-color: #6ab6f2;
  border-radius: 3px; }
  .custom-single-checkbox label {
    margin-bottom: 0;
    color: #fff;
    padding-left: 8px;
    cursor: pointer; }
.OrgChartModal .orgChartSearch {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05); }
  .OrgChartModal .orgChartSearch input {
    width: 100%; }
.addNewEmail {
  background-color: white;
  width: 100%; }
  .addNewEmail .modal-content {
    width: 1400px;
    max-width: 90%;
    margin: auto; }
  .addNewEmail .navNewEmail ul {
    list-style: none;
    padding-left: 37px;
    margin-top: 10px; }
    .addNewEmail .navNewEmail ul li {
      display: inline-block;
      line-height: 1.1;
      margin-right: 20px;
      padding: 3px 5px;
      color: #116cd6;
      cursor: pointer;
      opacity: 0.8; }
      .addNewEmail .navNewEmail ul li:hover {
        opacity: 1; }
      .addNewEmail .navNewEmail ul li button {
        background-color: transparent;
        border: none;
        padding: 0;
        color: #116cd6;
        font-size: 1.2em;
        box-shadow: none;
        font-weight: 400; }
    .addNewEmail .navNewEmail ul i {
      font-size: 1.2em;
      padding-right: 5px;
      color: #116cd6; }
    .addNewEmail .navNewEmail ul span {
      font-size: 1em; }
  .addNewEmail .subject-email {
    margin-left: 20px; }
  .addNewEmail .emailSubject {
    width: 100%; }
    .addNewEmail .emailSubject input {
      width: 100%; }
  .addNewEmail .emailSubject__content {
    display: flex;
    margin-bottom: 5px; }
    .addNewEmail .emailSubject__content p {
      font-size: 0.9em;
      width: 95px;
      margin-bottom: 0;
      line-height: 25px;
      text-align: left;
      font-weight: 500;
      margin-left: 10px; }
      .addNewEmail .emailSubject__content p span {
        width: 25px;
        display: inline-block; }
      .addNewEmail .emailSubject__content p i {
        padding: 3px;
        color: #0075ff;
        opacity: 0.7; }
    .addNewEmail .emailSubject__content .typeSearchActive {
      font-weight: 500;
      background-color: #dde6f1; }
  .addNewEmail .wrapOrgChart {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 99;
    margin-left: -100px; }
  .addNewEmail .orgChartSearch {
    background-color: white;
    box-shadow: 0px 5px 14px -6px #747373;
    padding: 10px 20px;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 99;
    min-width: 400px; }
    .addNewEmail .orgChartSearch .icon-minus-box-outline,
    .addNewEmail .orgChartSearch .icon-plus {
      font-size: 1.1em;
      position: relative;
      color: #b4b9bf;
      z-index: 999; }
    .addNewEmail .orgChartSearch .icon-flickr-after {
      font-size: 1.1em;
      position: relative;
      opacity: 0.8;
      color: #b4b9bf; }
      .addNewEmail .orgChartSearch .icon-flickr-after::after {
        content: "";
        position: absolute;
        border-left: 1px solid #b4b9bf;
        top: -5px;
        height: 60%;
        left: 10px; }
    .addNewEmail .orgChartSearch .positionOrgChart {
      overflow-y: scroll;
      max-height: 350px;
      padding-right: 5px; }
      .addNewEmail .orgChartSearch .positionOrgChart::-webkit-scrollbar {
        width: 5px;
        height: 5px; }
      .addNewEmail .orgChartSearch .positionOrgChart::-webkit-scrollbar-track {
        border-radius: 10px; }
      .addNewEmail .orgChartSearch .positionOrgChart::-webkit-scrollbar-thumb {
        background: #cecbcb;
        border-radius: 20px; }
    .addNewEmail .orgChartSearch .orgChartSearchHeader {
      margin-top: 5px; }
      .addNewEmail .orgChartSearch .orgChartSearchHeader i {
        position: absolute;
        top: 7px;
        right: 5px;
        background-color: red;
        border-radius: 50%;
        color: white; }
    .addNewEmail .orgChartSearch .orgChartSearchNav {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px; }
      .addNewEmail .orgChartSearch .orgChartSearchNav input {
        width: 18px;
        margin-right: 2px; }
      .addNewEmail .orgChartSearch .orgChartSearchNav label {
        margin-bottom: 0; }
      .addNewEmail .orgChartSearch .orgChartSearchNav .navActive {
        border-bottom: solid 2px #0075ff; }
      .addNewEmail .orgChartSearch .orgChartSearchNav div {
        cursor: pointer; }
      .addNewEmail .orgChartSearch .orgChartSearchNav .showOrgChartStaff {
        margin-right: 10px;
        margin-left: auto; }
    .addNewEmail .orgChartSearch .orgChartHeaderSearch {
      position: relative; }
      .addNewEmail .orgChartSearch .orgChartHeaderSearch input {
        padding: 5px 10px;
        border: solid 1px #0075ff;
        outline: none; }
      .addNewEmail .orgChartSearch .orgChartHeaderSearch i {
        position: absolute;
        top: 7px;
        right: 5px;
        background-color: red;
        border-radius: 50%;
        color: white; }
    .addNewEmail .orgChartSearch .groupInternalEmail input {
      width: 18px;
      margin-right: 3px; }
    .addNewEmail .orgChartSearch .totalPerson,
    .addNewEmail .orgChartSearch .BoardDirectors__layout {
      display: flex;
      align-items: center; }
      .addNewEmail .orgChartSearch .totalPerson input,
      .addNewEmail .orgChartSearch .BoardDirectors__layout input {
        width: 18px;
        position: relative; }
        .addNewEmail .orgChartSearch .totalPerson input::before,
        .addNewEmail .orgChartSearch .BoardDirectors__layout input::before {
          content: "";
          position: absolute;
          border-bottom: 1px solid #b4b9bf;
          top: 60%;
          width: 100%;
          right: 18px; }
      .addNewEmail .orgChartSearch .totalPerson label,
      .addNewEmail .orgChartSearch .BoardDirectors__layout label {
        margin-bottom: 0; }
    .addNewEmail .orgChartSearch .nodeLine {
      position: relative; }
      .addNewEmail .orgChartSearch .nodeLine::before {
        content: "";
        position: absolute;
        top: 20px;
        left: 7px;
        height: calc(100% - 30px);
        border-left: 1px solid #b4b9bf;
        z-index: 0; }
    .addNewEmail .orgChartSearch .nodeLine__2 {
      position: relative; }
      .addNewEmail .orgChartSearch .nodeLine__2::before {
        content: "";
        position: absolute;
        top: 20px;
        left: 40px;
        height: calc(100% - 30px);
        border-left: 1px solid #b4b9bf;
        z-index: 0; }
    .addNewEmail .orgChartSearch .inboxLine__2 {
      position: relative; }
      .addNewEmail .orgChartSearch .inboxLine__2::after {
        content: "";
        position: absolute;
        top: 0;
        left: 7px;
        height: 100%;
        border-left: 1px solid #b4b9bf;
        z-index: 0; }
    .addNewEmail .orgChartSearch .inboxLine {
      position: relative; }
      .addNewEmail .orgChartSearch .inboxLine::after {
        content: "";
        position: absolute;
        top: 14px;
        left: 8px;
        height: 75%;
        border-left: 1px solid #b4b9bf; }
    .addNewEmail .orgChartSearch .nodeNoMember {
      display: none; }
    .addNewEmail .orgChartSearch .nodePrimary {
      margin-left: 33px;
      display: flex;
      align-items: center;
      position: relative; }
      .addNewEmail .orgChartSearch .nodePrimary input {
        width: 18px;
        position: relative; }
        .addNewEmail .orgChartSearch .nodePrimary input::before {
          content: "";
          position: absolute;
          border-bottom: 1px solid #b4b9bf;
          top: 60%;
          width: 100%;
          right: 18px; }
      .addNewEmail .orgChartSearch .nodePrimary label {
        margin-bottom: 0; }
      .addNewEmail .orgChartSearch .nodePrimary.nodeLast {
        margin-left: 30px; }
    .addNewEmail .orgChartSearch .spaceAdjust {
      margin-left: 30px; }
    .addNewEmail .orgChartSearch .nodePrimary__Space {
      margin-left: 33px; }
  .addNewEmail .addNewEmail-header {
    margin-bottom: 20px; }
  .addNewEmail .newEmailContent .ckeditor {
    height: 350px; }
    .addNewEmail .newEmailContent .ckeditor .cke_contents {
      height: 300px !important; }
  .addNewEmail .toReceive {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: inline-block; }
    .addNewEmail .toReceive .receiver-container {
      max-height: 200px;
      overflow: auto; }
      .addNewEmail .toReceive .receiver-container .receiver-style {
        display: inline-block;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 50px;
        padding: 0 5px;
        font-size: 0.9em;
        margin: 0 2px 2px 2px; }
        .addNewEmail .toReceive .receiver-container .receiver-style:hover {
          background-color: rgba(0, 0, 0, 0.1); }
        .addNewEmail .toReceive .receiver-container .receiver-style i {
          font-size: 1.2em;
          margin-left: 3px;
          cursor: pointer; }
  .addNewEmail .receiver {
    display: inline-block;
    position: relative;
    width: 100%; }
    .addNewEmail .receiver .icon-close {
      position: absolute;
      top: 0;
      right: 30px;
      cursor: pointer;
      opacity: 0.5; }
      .addNewEmail .receiver .icon-close:hover {
        opacity: 0.8; }
    .addNewEmail .receiver .listSearchEmail {
      position: absolute;
      top: 100%;
      left: 0;
      list-style: none;
      padding-left: 0;
      background-color: #f8f8f8;
      z-index: 10;
      max-width: 400px;
      max-height: 400px;
      overflow-y: auto; }
      .addNewEmail .receiver .listSearchEmail li {
        padding: 8px;
        border-bottom: 1px dashed #eee;
        cursor: pointer; }
        .addNewEmail .receiver .listSearchEmail li:hover {
          background-color: rgba(0, 0, 0, 0.05); }
        .addNewEmail .receiver .listSearchEmail li .wrap-mailAdress {
          display: flex;
          width: 100%;
          align-items: center; }
          .addNewEmail .receiver .listSearchEmail li .wrap-mailAdress span:nth-child(1) {
            color: #343434;
            flex: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            max-height: 45px; }
          .addNewEmail .receiver .listSearchEmail li .wrap-mailAdress span:nth-child(2) {
            color: #8f8f8f;
            font-size: 13px;
            padding-bottom: 1px;
            text-transform: uppercase;
            width: 80px;
            text-align: right; }
  .addNewEmail .attachmentStyle label {
    cursor: pointer; }
  .addNewEmail .attachmentStyle input[type="file"] {
    display: none; }
  .addNewEmail .showAttachedFile {
    display: flex;
    font-size: 1.2em;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    padding: 0 5px;
    font-size: 0.9em;
    margin: 0 2px 2px 2px; }
    .addNewEmail .showAttachedFile:hover {
      background-color: rgba(0, 0, 0, 0.1); }
    .addNewEmail .showAttachedFile i {
      font-size: 1.2em;
      margin: 0 3px;
      cursor: pointer;
      height: auto;
      line-height: initial;
      padding: 2px; }
  .addNewEmail .priorityEmail {
    cursor: pointer; }
    .addNewEmail .priorityEmail label {
      margin-left: 5px; }
    .addNewEmail .priorityEmail input {
      outline: none; }
  .addNewEmail .contentEmailReply {
    margin-left: 10px;
    padding-left: 15px; }
    .addNewEmail .contentEmailReply .contentEmailReplyHeaderItem span:first-of-type {
      font-weight: 500; }
    .addNewEmail .contentEmailReply .contentEmailReplyHeaderItem span:last-of-type {
      padding-left: 5px; }
    .addNewEmail .contentEmailReply .contentEmailReplyContent {
      padding: 20px 0;
      width: 100%; }
  @media screen and (max-width: 572px) {
    .addNewEmail .navNewEmail ul li {
      margin-right: 5px; }
    .addNewEmail ul {
      padding-left: 15px !important; }
      .addNewEmail ul li span {
        display: none; }
      .addNewEmail ul li.priorityEmail span {
        display: inline-block; }
    .addNewEmail .emailSubject__content p {
      width: 115px; }
    .addNewEmail .orgChartSearch {
      left: -70px;
      min-width: calc(100vw - 10px);
      font-size: 12px; }
      .addNewEmail .orgChartSearch .icon-flickr-after::after {
        height: 40%;
        left: 9px; }
      .addNewEmail .orgChartSearch label {
        width: 120%; }
      .addNewEmail .orgChartSearch i {
        width: 10px; }
      .addNewEmail .orgChartSearch .nodePrimary {
        margin-left: 20px;
        width: 180%; }
        .addNewEmail .orgChartSearch .nodePrimary input {
          width: 14px;
          position: relative; }
          .addNewEmail .orgChartSearch .nodePrimary input::before {
            content: "";
            position: absolute;
            border-bottom: 1px solid #b4b9bf;
            top: 60%;
            width: 30%;
            right: 15px; }
        .addNewEmail .orgChartSearch .nodePrimary.nodeLast {
          margin-left: 17px; }
      .addNewEmail .orgChartSearch .nodePrimary__Space {
        margin-left: 20px; }
      .addNewEmail .orgChartSearch .totalPerson,
      .addNewEmail .orgChartSearch .BoardDirectors__layout {
        display: flex;
        align-items: center; }
        .addNewEmail .orgChartSearch .totalPerson input,
        .addNewEmail .orgChartSearch .BoardDirectors__layout input {
          width: 18px;
          position: relative; }
          .addNewEmail .orgChartSearch .totalPerson input::before,
          .addNewEmail .orgChartSearch .BoardDirectors__layout input::before {
            content: "";
            position: absolute;
            border-bottom: 1px solid #b4b9bf;
            top: 60%;
            width: 30%;
            right: 16px; }
        .addNewEmail .orgChartSearch .totalPerson label,
        .addNewEmail .orgChartSearch .BoardDirectors__layout label {
          margin-bottom: 0; }
        .addNewEmail .orgChartSearch .totalPerson .nodeLine__2,
        .addNewEmail .orgChartSearch .BoardDirectors__layout .nodeLine__2 {
          position: relative; }
          .addNewEmail .orgChartSearch .totalPerson .nodeLine__2::before,
          .addNewEmail .orgChartSearch .BoardDirectors__layout .nodeLine__2::before {
            content: "";
            position: absolute;
            top: 20px;
            left: 40px;
            height: calc(100% - 30px);
            border-left: 1px solid #b4b9bf;
            z-index: 0; }
      .addNewEmail .orgChartSearch .nodeLine__2 {
        position: relative; }
        .addNewEmail .orgChartSearch .nodeLine__2::before {
          left: 26px; } }
@media screen and (max-width: 572px) {
  .activeShow {
    display: none; }
  .internalEmailNavToggle {
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 9; } }
.internalEmailNav .menu-bar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 140px); }

.internalEmailNav .menu-bar .menu-items {
  padding: 0;
  margin-bottom: 0;
  height: auto;
  list-style-type: none; }

.internalEmailNav .mail-sidebar {
  padding: 0; }

.internalEmailNav .menu-items li {
  padding: 5px 20px;
  width: 100%;
  transition: 0.4s;
  cursor: pointer;
  opacity: 0.7; }
  .internalEmailNav .menu-items li i {
    color: #116cd6;
    opacity: 0.8; }
  .internalEmailNav .menu-items li:hover {
    background: rgba(240, 244, 249, 0.8);
    opacity: 1; }

.internalEmailNav .menu-items .active {
  background: #e6e9ed;
  border-radius: 4px; }

.internalEmailNav .menu-items.last-setting {
  margin-bottom: 50px; }

.internalEmailNav .dropdown {
  overflow: "hidden"; }
  .internalEmailNav .dropdown .dropdown-menu {
    margin-left: 20px;
    z-index: 999; }

@media screen and (max-width: 572px) {
  .internalEmailNav .showNav {
    display: none;
    border-right: none !important; }
  .internalEmailNav .icon-menu {
    margin-left: 25px;
    line-height: 2;
    background-color: #fff; } }
.contactGroup {
  height: calc(100vh - 150px);
  padding: 0;
  overflow: hidden scroll; }
  .contactGroup::-webkit-scrollbar {
    display: none; }
  .contactGroup .mail-list-header {
    display: flex; }
    .contactGroup .mail-list-header input {
      height: 36px;
      width: 100%;
      border: 1px solid #dee2e6;
      border-radius: 8px;
      padding-left: 10px;
      outline: none; }
    .contactGroup .mail-list-header button {
      font-size: 1em;
      font-weight: 700;
      padding: 0;
      line-height: 3;
      border-radius: 5px;
      box-shadow: none; }
  .contactGroup .list-group-content {
    max-height: calc(100vh - 250px);
    min-height: calc(100vh - 250px);
    overflow: hidden scroll; }
    .contactGroup .list-group-content::-webkit-scrollbar {
      display: none; }
    .contactGroup .list-group-content .list-group li {
      cursor: pointer;
      border-bottom: 1px dashed #eee; }
    .contactGroup .list-group-content .list-group .list-group-item.active {
      background-color: #116cd6;
      color: white; }
      .contactGroup .list-group-content .list-group .list-group-item.active:hover {
        background-color: #116cd6;
        color: white; }

@media screen and (max-width: 572px) {
  .contactGroup {
    border-right: none !important; }
    .contactGroup .mail-list .content {
      width: calc(100vw - 80px); }
    .contactGroup .mail-list-header {
      justify-content: flex-end;
      margin-top: 35px;
      padding: 5px 0; }
      .contactGroup .mail-list-header .icon-menu {
        display: inline-block; } }
.wrapNewGroupModal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  margin-left: -400px;
  margin-top: -100px; }

.addNewGroupModal label {
  width: 120px; }

.addNewGroupModal input[name="memberName"],
.addNewGroupModal input[name="groupName"] {
  width: 100%;
  height: 36px;
  border: 1px solid #dee2e6;
  border-radius: 3px;
  padding-left: 10px;
  outline: none;
  position: relative; }

.addNewGroupModal .search-staff {
  width: 100%;
  position: relative;
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.2); }
  .addNewGroupModal .search-staff .search-staff__input {
    position: relative;
    width: 100%;
    display: inline-block; }
    .addNewGroupModal .search-staff .search-staff__input input {
      border: none; }
  .addNewGroupModal .search-staff .search-float {
    position: absolute;
    left: 0;
    background-color: #fff;
    top: 100%;
    border: 1px solid #eee; }
    .addNewGroupModal .search-staff .search-float .search-float-item {
      padding: 10px;
      border-bottom: 1px dashed #eee;
      cursor: pointer; }

.addNewGroupModal .showMemberList {
  display: flex;
  flex-wrap: wrap; }
  .addNewGroupModal .showMemberList .showMemberList-item {
    padding: 3px 5px;
    background-color: #eee;
    border-radius: 8px;
    font-size: 14px;
    margin-right: 5px; }

.addNewGroupModal .orgChart {
  position: absolute;
  top: 50px;
  left: 0;
  padding-left: 5px;
  background-color: #fff;
  border: 1px solid #d1c2c2;
  width: 100%; }
  .addNewGroupModal .orgChart .orgChartBody {
    max-height: calc(75vh - 200px);
    overflow: auto;
    padding-right: 1px;
    background-color: #fff;
    width: 100%; }
    .addNewGroupModal .orgChart .orgChartBody::-webkit-scrollbar {
      width: 5px;
      height: 5px;
      background-color: #eeeeee; }
    .addNewGroupModal .orgChart .orgChartBody::-webkit-scrollbar-track {
      -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
      background-color: #f5f5f5; }
    .addNewGroupModal .orgChart .orgChartBody::-webkit-scrollbar-thumb {
      background-color: #aeafaf;
      background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, rgba(255, 255, 255, 0.2)), color-stop(0.5, transparent), to(transparent)); }
  .addNewGroupModal .orgChart .icon-minus-box-outline,
  .addNewGroupModal .orgChart .icon-plus {
    font-size: 1.1em;
    position: relative;
    color: #b4b9bf;
    z-index: 999; }
  .addNewGroupModal .orgChart .icon-close {
    position: absolute;
    top: 2px;
    right: 5px;
    background-color: red;
    border-radius: 50%;
    color: white; }
  .addNewGroupModal .orgChart .icon-flickr-after {
    font-size: 1.1em;
    position: relative;
    opacity: 0.8;
    color: #b4b9bf; }
    .addNewGroupModal .orgChart .icon-flickr-after::after {
      content: "";
      position: absolute;
      border-left: 1px solid #b4b9bf;
      top: -5px;
      height: 60%;
      left: 10px; }
  .addNewGroupModal .orgChart .nodeLine__2 {
    position: relative; }
    .addNewGroupModal .orgChart .nodeLine__2::before {
      content: "";
      position: absolute;
      top: 20px;
      left: 6px;
      height: calc(100% - 30px);
      border-left: 1px solid #b4b9bf;
      z-index: 0; }
  .addNewGroupModal .orgChart .nodeNoMember {
    display: none; }
  .addNewGroupModal .orgChart .inboxLine__2 {
    position: relative; }
    .addNewGroupModal .orgChart .inboxLine__2::after {
      content: "";
      position: absolute;
      top: 0;
      left: 7px;
      height: 100%;
      border-left: 1px solid #b4b9bf;
      z-index: 0; }
  .addNewGroupModal .orgChart .nodeNoMember {
    display: none; }
  .addNewGroupModal .orgChart .nodePrimary {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0; }
    .addNewGroupModal .orgChart .nodePrimary input {
      width: 15px;
      height: auto;
      position: relative;
      margin: 0;
      align-self: center; }
      .addNewGroupModal .orgChart .nodePrimary input::before {
        content: "";
        position: absolute;
        border-bottom: 1px solid #b4b9bf;
        top: 55%;
        width: 60%;
        right: 18px; }
    .addNewGroupModal .orgChart .nodePrimary label {
      margin-bottom: 0;
      width: 100%;
      display: flex; }
    .addNewGroupModal .orgChart .nodePrimary.nodeLast {
      margin-left: 24px;
      width: 120%; }
  .addNewGroupModal .orgChart .nodePrimary__Space {
    margin-left: 28px;
    white-space: nowrap; }
  .addNewGroupModal .orgChart .orgChartHeaderSearch {
    position: relative;
    margin-top: 20px; }
    .addNewGroupModal .orgChart .orgChartHeaderSearch input {
      padding: 5px 10px;
      border: solid 1px #0075ff;
      outline: none; }
    .addNewGroupModal .orgChart .orgChartHeaderSearch i {
      position: absolute;
      top: 7px;
      right: 5px;
      background-color: red;
      border-radius: 50%;
      color: white; }

.addNewGroupModal .showMemberList {
  max-height: 100px;
  overflow-y: scroll; }
  .addNewGroupModal .showMemberList::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #eeeeee; }
  .addNewGroupModal .showMemberList::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5; }
  .addNewGroupModal .showMemberList::-webkit-scrollbar-thumb {
    background-color: #aeafaf;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, rgba(255, 255, 255, 0.2)), color-stop(0.5, transparent), to(transparent)); }

.addNewMemberGroupModal .orgChart .orgChartBody {
  max-height: calc(75vh - 150px); }

.reviewEmailAdmin .titleEmail {
  display: flex;
  justify-content: space-between; }

.reviewEmailAdmin .sender-content--review .sender-email span:first-of-type {
  font-weight: 500;
  text-decoration: underline; }

.reviewEmailAdmin .sender-content--review .sender-email span:last-of-type {
  padding-left: 5px; }

.reviewEmailAdmin .message-content h5 {
  font-size: 1em;
  font-weight: 500;
  text-decoration: underline; }

.reviewEmailAdmin .message-content img {
  max-width: 100%;
  height: auto !important; }

@media screen and (max-width: 765px) {
  .internalEmailGroupModal {
    padding: 0; }
    .internalEmailGroupModal .modal-content {
      max-width: 100%; } }

@media screen and (max-width: 572px) {
  .addNewGroupModal input[name="memberName"],
  .addNewGroupModal input[name="groupName"] {
    height: 30px; }
  .addNewGroupModal .showMemberList-item {
    font-size: 12px !important; }
  .addNewGroupModal .orgChart {
    top: 35px;
    font-size: 12px; }
    .addNewGroupModal .orgChart .icon-flickr-after::after {
      height: 40%;
      left: 9px; }
    .addNewGroupModal .orgChart i {
      width: 15px; }
    .addNewGroupModal .orgChart .nodePrimary {
      width: 180%; }
      .addNewGroupModal .orgChart .nodePrimary label {
        width: 180%; }
      .addNewGroupModal .orgChart .nodePrimary input {
        width: 14px;
        position: relative; }
        .addNewGroupModal .orgChart .nodePrimary input::before {
          content: "";
          position: absolute;
          border-bottom: 1px solid #b4b9bf;
          top: 50%;
          width: 30%;
          right: 16px; }
      .addNewGroupModal .orgChart .nodePrimary.nodeLast {
        margin-left: 17px; }
    .addNewGroupModal .orgChart .nodePrimary__Space {
      margin-left: 20px; }
    .addNewGroupModal .orgChart .nodeLine__2 {
      position: relative; }
      .addNewGroupModal .orgChart .nodeLine__2::before {
        left: 7px; }
  .addNewGroupModal .orgChart .orgChartBody {
    max-height: calc(75vh - 210px); }
  .addNewMemberGroupModal .orgChart .orgChartBody {
    max-height: calc(75vh - 150px); } }
.contactDetails {
  height: calc(100vh - 150px);
  overflow: none scroll;
  background-color: white; }
  .contactDetails .contactDetails-header {
    display: flex; }
    .contactDetails .contactDetails-header input {
      height: 36px;
      width: 100%;
      border: 1px solid #dee2e6;
      border-radius: 8px;
      padding-left: 10px;
      outline: none;
      margin-right: 10px; }
    .contactDetails .contactDetails-header button {
      font-size: 1em;
      font-weight: 700;
      padding: 0;
      line-height: 3;
      border-radius: 5px;
      box-shadow: none; }
  .contactDetails .contactDetails-content h5 {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: 500; }
  .contactDetails .contactDetails-content ul p {
    margin-right: 50px; }
  .contactDetails .contactDetails-content ul i {
    color: red;
    cursor: pointer; }
  .contactDetails .contactDetails-content .contactDetails-backIcon {
    display: none;
    position: absolute;
    top: 10px;
    right: 15px; }
    .contactDetails .contactDetails-content .contactDetails-backIcon i {
      color: #116cd6;
      opacity: 0.7; }

@media screen and (max-width: 572px) {
  .contactDetails .titleEmail h5 {
    font-size: 1.5em !important;
    margin-top: 30px; }
  .contactDetails .contactDetails-header {
    display: flex;
    margin-top: 40px; }
  .contactDetails .contactDetails-content {
    padding: 0; }
    .contactDetails .contactDetails-content h5 {
      margin-top: 10px; }
    .contactDetails .contactDetails-content ul li {
      flex-wrap: nowrap;
      align-items: start; }
      .contactDetails .contactDetails-content ul li p {
        margin: 0; }
      .contactDetails .contactDetails-content ul li .icon {
        margin: 0; }
    .contactDetails .contactDetails-content .contactDetails-backIcon {
      display: block; } }
@media screen and (max-width: 572px) {
  .activeShow {
    display: none; }
  .internalEmailNavToggle {
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 9; } }
.InternalEmailSignature {
  margin-top: 20px;
  margin-left: 20px; }
  .InternalEmailSignature h5 {
    font-size: 1.5em;
    font-weight: 500; }

@media screen and (max-width: 572px) {
  .InternalEmailSignature {
    text-align: right;
    margin-top: 40px;
    margin-left: 0px; }
    .InternalEmailSignature h5 {
      text-align: center; } }
@media screen and (max-width: 572px) {
  .activeShow {
    display: none; }
  .internalEmailNavToggle {
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 9; } }
.internalEmailDetail {
  padding: 0 20px; }
  .internalEmailDetail .titleEmail {
    padding: 10px 0; }
    .internalEmailDetail .titleEmail h5 {
      font-size: 2em;
      font-weight: 700; }
  .internalEmailDetail .action-email-receive {
    display: flex; }
  .internalEmailDetail .sender-content {
    margin-left: -37px;
    margin-bottom: 10px;
    width: 100%; }
    .internalEmailDetail .sender-content .details {
      width: 100%; }
      .internalEmailDetail .sender-content .details .sender-email {
        display: flex;
        justify-content: space-between;
        width: 100%; }
        .internalEmailDetail .sender-content .details .sender-email span:nth-child(1) {
          flex: 1;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; }
      .internalEmailDetail .sender-content .details p {
        margin-bottom: 0; }
  .internalEmailDetail .message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px; }
    .internalEmailDetail .message-header .sender-avatar {
      display: flex;
      align-items: flex-start; }
      .internalEmailDetail .message-header .sender-avatar img {
        width: 30px;
        height: 30px; }
    .internalEmailDetail .message-header .action-group i {
      cursor: pointer;
      font-size: 2em;
      margin-right: 15px;
      opacity: 0.7;
      color: #116cd6; }
      .internalEmailDetail .message-header .action-group i:hover {
        opacity: 1; }
    .internalEmailDetail .message-header .action-group .icon-keyboard-backspace {
      display: none; }
  .internalEmailDetail .message-content {
    margin-bottom: 30px; }
    .internalEmailDetail .message-content img {
      max-width: 100%;
      height: auto !important; }
    .internalEmailDetail .message-content table {
      width: 100% !important; }
  .internalEmailDetail .button-respond button {
    outline: none;
    transition: all 0.4; }
    .internalEmailDetail .button-respond button:hover {
      background-color: #00ffff26; }
  .internalEmailDetail .email-attachedFile {
    margin-bottom: 15px; }
    .internalEmailDetail .email-attachedFile .showAttachedFile {
      display: flex;
      font-size: 1.2em;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 50px;
      padding: 0 5px;
      font-size: 0.9em;
      margin: 0 2px 2px 2px;
      cursor: pointer; }
      .internalEmailDetail .email-attachedFile .showAttachedFile:hover {
        background-color: rgba(0, 0, 0, 0.1); }
      .internalEmailDetail .email-attachedFile .showAttachedFile i {
        font-size: 1.2em;
        margin: 0 3px;
        cursor: pointer;
        height: auto;
        line-height: initial;
        padding: 2px; }

@media screen and (max-width: 767.9px) {
  .message-header .action-group {
    margin-right: 10px; }
    .message-header .action-group i {
      font-size: 1.5em;
      margin-right: 15px; } }

@media screen and (max-width: 572px) {
  .internalEmailDetail .titleEmail h5 {
    font-size: 1.5em !important;
    margin-top: 30px; }
  .internalEmailDetail .message-header {
    flex-direction: column-reverse;
    margin-left: 15px; }
  .internalEmailDetail .action-group {
    position: absolute;
    top: 10px;
    right: 0; }
    .internalEmailDetail .action-group .icon-keyboard-backspace {
      display: inline-block !important; }
  .internalEmailDetail .internalEmailDetail {
    padding: 0 10px !important; } }
.internalEmailSummary {
  /* Mail List Container */ }
  .internalEmailSummary .row {
    margin: 0; }
  .internalEmailSummary .mail-list-header {
    display: flex; }
    .internalEmailSummary .mail-list-header input {
      height: 36px;
      width: calc(100% - 90px);
      border: 1px solid #dee2e6;
      border-radius: 8px;
      padding-left: 10px;
      outline: none; }
    .internalEmailSummary .mail-list-header button {
      font-size: 1em;
      font-weight: 700;
      padding: 0;
      line-height: 3;
      border-radius: 5px;
      box-shadow: none; }
    .internalEmailSummary .mail-list-header .refreshEmail {
      position: relative; }
      .internalEmailSummary .mail-list-header .refreshEmail button {
        padding: 0 10px;
        height: 36px;
        opacity: 0.7;
        transition: all 0.2; }
        .internalEmailSummary .mail-list-header .refreshEmail button i {
          color: white; }
        .internalEmailSummary .mail-list-header .refreshEmail button:hover {
          opacity: 1; }
      .internalEmailSummary .mail-list-header .refreshEmail span {
        background-color: #f00;
        color: #fff;
        font-weight: 600;
        position: absolute;
        top: -10px;
        right: 0px;
        z-index: 9;
        min-width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 0;
        font-size: 12px; }
  .internalEmailSummary .mail-list-content {
    max-height: calc(100vh - 250px);
    min-height: calc(100vh - 250px);
    overflow: hidden scroll; }
    .internalEmailSummary .mail-list-content::-webkit-scrollbar {
      display: none; }
    .internalEmailSummary .mail-list-content .mail-list {
      border-bottom: 1px solid #e9e9e9;
      padding: 10px 15px;
      width: 100%;
      position: relative;
      cursor: pointer;
      transition: all 0.2s; }
      .internalEmailSummary .mail-list-content .mail-list.active {
        background-color: #116cd6;
        color: white; }
        .internalEmailSummary .mail-list-content .mail-list.active:hover {
          background-color: #116cd6;
          color: white; }
      .internalEmailSummary .mail-list-content .mail-list.noneRead {
        background-color: #f9f3f3;
        font-weight: 500; }
      .internalEmailSummary .mail-list-content .mail-list:hover {
        background-color: #f9f3f3; }
        .internalEmailSummary .mail-list-content .mail-list:hover .mail-list-action {
          visibility: visible; }
        .internalEmailSummary .mail-list-content .mail-list:hover .mail-list-reply {
          visibility: hidden; }
      .internalEmailSummary .mail-list-content .mail-list .content {
        width: calc(100% - 20px); }
        .internalEmailSummary .mail-list-content .mail-list .content p:first-of-type {
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap; }
        .internalEmailSummary .mail-list-content .mail-list .content p {
          margin-bottom: 0; }
      .internalEmailSummary .mail-list-content .mail-list .sender-name {
        width: 100%;
        font-size: 1.2rem;
        display: flex; }
        .internalEmailSummary .mail-list-content .mail-list .sender-name span:nth-child(1) {
          flex: 1;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          max-width: calc(100% - 94px); }
      .internalEmailSummary .mail-list-content .mail-list .message_text {
        margin: 0;
        width: 100%;
        max-width: 80%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
      .internalEmailSummary .mail-list-content .mail-list .sender-avatar {
        display: flex;
        align-items: flex-start; }
        .internalEmailSummary .mail-list-content .mail-list .sender-avatar img {
          width: 30px; }
      .internalEmailSummary .mail-list-content .mail-list .sender-date {
        font-size: 0.9em; }
      .internalEmailSummary .mail-list-content .mail-list .mail-list-action {
        position: absolute;
        left: 1px;
        top: 4px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        visibility: hidden; }
        .internalEmailSummary .mail-list-content .mail-list .mail-list-action i {
          font-size: 1em; }
      .internalEmailSummary .mail-list-content .mail-list .mail-list-reply {
        position: absolute;
        left: 1px;
        top: 4px; }
        .internalEmailSummary .mail-list-content .mail-list .mail-list-reply i {
          font-size: 1em; }
      .internalEmailSummary .mail-list-content .mail-list .priorityIcon {
        position: absolute;
        right: 28px;
        top: 23px; }
        .internalEmailSummary .mail-list-content .mail-list .priorityIcon i {
          font-size: 1em; }
  .internalEmailSummary .mail-list:last-child {
    border-bottom: none; }
  .internalEmailSummary .SummaryPagination {
    width: 100%;
    text-align: center; }

@media screen and (max-width: 572px) {
  .internalEmailSummary .mail-list .content {
    width: calc(100vw - 80px); }
  .internalEmailSummary .mail-list-header {
    justify-content: flex-end;
    padding: 5px 0; }
    .internalEmailSummary .mail-list-header .icon-menu {
      display: inline-block; }
    .internalEmailSummary .mail-list-header input {
      display: none; }
  .internalEmailSummary .mail-list-container {
    border-right: none !important; } }
@media screen and (max-width: 572px) {
  .activeShow {
    display: none; }
  .internalEmailNavToggle {
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 9; } }
.internalEmailDetail {
  padding: 0 20px; }
  .internalEmailDetail .titleEmail {
    padding: 10px 0; }
    .internalEmailDetail .titleEmail h5 {
      font-size: 2em;
      font-weight: 700; }
  .internalEmailDetail .action-email-receive {
    display: flex; }
  .internalEmailDetail .sender-content {
    margin-left: -37px;
    margin-bottom: 10px;
    width: 100%; }
    .internalEmailDetail .sender-content .details {
      width: 100%; }
      .internalEmailDetail .sender-content .details .sender-email {
        display: flex;
        justify-content: space-between;
        width: 100%; }
        .internalEmailDetail .sender-content .details .sender-email span:nth-child(1) {
          flex: 1;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; }
      .internalEmailDetail .sender-content .details p {
        margin-bottom: 0; }
  .internalEmailDetail .message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px; }
    .internalEmailDetail .message-header .sender-avatar {
      display: flex;
      align-items: flex-start; }
      .internalEmailDetail .message-header .sender-avatar img {
        width: 30px;
        height: 30px; }
    .internalEmailDetail .message-header .action-group i {
      cursor: pointer;
      font-size: 2em;
      margin-right: 15px;
      opacity: 0.7;
      color: #116cd6; }
      .internalEmailDetail .message-header .action-group i:hover {
        opacity: 1; }
    .internalEmailDetail .message-header .action-group .icon-keyboard-backspace {
      display: none; }
  .internalEmailDetail .message-content {
    margin-bottom: 30px; }
    .internalEmailDetail .message-content img {
      max-width: 100%;
      height: auto !important; }
    .internalEmailDetail .message-content table {
      width: 100% !important; }
  .internalEmailDetail .button-respond button {
    outline: none;
    transition: all 0.4; }
    .internalEmailDetail .button-respond button:hover {
      background-color: #00ffff26; }
  .internalEmailDetail .email-attachedFile {
    margin-bottom: 15px; }
    .internalEmailDetail .email-attachedFile .showAttachedFile {
      display: flex;
      font-size: 1.2em;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 50px;
      padding: 0 5px;
      font-size: 0.9em;
      margin: 0 2px 2px 2px;
      cursor: pointer; }
      .internalEmailDetail .email-attachedFile .showAttachedFile:hover {
        background-color: rgba(0, 0, 0, 0.1); }
      .internalEmailDetail .email-attachedFile .showAttachedFile i {
        font-size: 1.2em;
        margin: 0 3px;
        cursor: pointer;
        height: auto;
        line-height: initial;
        padding: 2px; }

@media screen and (max-width: 767.9px) {
  .message-header .action-group {
    margin-right: 10px; }
    .message-header .action-group i {
      font-size: 1.5em;
      margin-right: 15px; } }

@media screen and (max-width: 572px) {
  .internalEmailDetail .titleEmail h5 {
    font-size: 1.5em !important;
    margin-top: 30px; }
  .internalEmailDetail .message-header {
    flex-direction: column-reverse;
    margin-left: 15px; }
  .internalEmailDetail .action-group {
    position: absolute;
    top: 10px;
    right: 0; }
    .internalEmailDetail .action-group .icon-keyboard-backspace {
      display: inline-block !important; }
  .internalEmailDetail .internalEmailDetail {
    padding: 0 10px !important; } }
.internalEmailSummary {
  /* Mail List Container */ }
  .internalEmailSummary .row {
    margin: 0; }
  .internalEmailSummary .mail-list-header {
    display: flex; }
    .internalEmailSummary .mail-list-header input {
      height: 36px;
      width: calc(100% - 90px);
      border: 1px solid #dee2e6;
      border-radius: 8px;
      padding-left: 10px;
      outline: none; }
    .internalEmailSummary .mail-list-header button {
      font-size: 1em;
      font-weight: 700;
      padding: 0;
      line-height: 3;
      border-radius: 5px;
      box-shadow: none; }
    .internalEmailSummary .mail-list-header .refreshEmail button {
      padding: 0 10px;
      height: 36px;
      opacity: 0.7;
      transition: all 0.2; }
      .internalEmailSummary .mail-list-header .refreshEmail button i {
        color: white; }
      .internalEmailSummary .mail-list-header .refreshEmail button:hover {
        opacity: 1; }
  .internalEmailSummary .mail-list-content {
    max-height: calc(100vh - 250px);
    min-height: calc(100vh - 250px);
    overflow: hidden scroll; }
    .internalEmailSummary .mail-list-content::-webkit-scrollbar {
      display: none; }
    .internalEmailSummary .mail-list-content .mail-list {
      border-bottom: 1px solid #e9e9e9;
      padding: 10px 15px;
      width: 100%;
      position: relative;
      cursor: pointer;
      transition: all 0.2s; }
      .internalEmailSummary .mail-list-content .mail-list.active {
        background-color: #116cd6;
        color: white; }
        .internalEmailSummary .mail-list-content .mail-list.active:hover {
          background-color: #116cd6;
          color: white; }
      .internalEmailSummary .mail-list-content .mail-list.noneRead {
        background-color: #f9f3f3;
        font-weight: 500; }
      .internalEmailSummary .mail-list-content .mail-list:hover {
        background-color: #f9f3f3; }
        .internalEmailSummary .mail-list-content .mail-list:hover .mail-list-action {
          visibility: visible; }
        .internalEmailSummary .mail-list-content .mail-list:hover .mail-list-reply {
          visibility: hidden; }
      .internalEmailSummary .mail-list-content .mail-list .content {
        width: calc(100% - 20px); }
        .internalEmailSummary .mail-list-content .mail-list .content p:first-of-type {
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap; }
        .internalEmailSummary .mail-list-content .mail-list .content p {
          margin-bottom: 0; }
      .internalEmailSummary .mail-list-content .mail-list .sender-name {
        width: 100%;
        font-size: 1.2rem;
        display: flex; }
        .internalEmailSummary .mail-list-content .mail-list .sender-name span:nth-child(1) {
          flex: 1;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          max-width: calc(100% - 94px); }
      .internalEmailSummary .mail-list-content .mail-list .message_text {
        margin: 0;
        width: 100%;
        max-width: 80%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
      .internalEmailSummary .mail-list-content .mail-list .sender-avatar {
        display: flex;
        align-items: flex-start; }
        .internalEmailSummary .mail-list-content .mail-list .sender-avatar img {
          width: 30px; }
      .internalEmailSummary .mail-list-content .mail-list .sender-date {
        font-size: 0.9em; }
      .internalEmailSummary .mail-list-content .mail-list .mail-list-action {
        position: absolute;
        left: 1px;
        top: 4px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        visibility: hidden; }
        .internalEmailSummary .mail-list-content .mail-list .mail-list-action i {
          font-size: 1em; }
      .internalEmailSummary .mail-list-content .mail-list .mail-list-reply {
        position: absolute;
        left: 1px;
        top: 4px; }
        .internalEmailSummary .mail-list-content .mail-list .mail-list-reply i {
          font-size: 1em; }
      .internalEmailSummary .mail-list-content .mail-list .priorityIcon {
        position: absolute;
        right: 28px;
        top: 23px; }
        .internalEmailSummary .mail-list-content .mail-list .priorityIcon i {
          font-size: 1em; }
  .internalEmailSummary .mail-list:last-child {
    border-bottom: none; }
  .internalEmailSummary .SummaryPagination {
    width: 100%;
    text-align: center; }

@media screen and (max-width: 572px) {
  .internalEmailSummary .mail-list .content {
    width: calc(100vw - 80px); }
  .internalEmailSummary .mail-list-header {
    justify-content: flex-end;
    padding: 5px 0; }
    .internalEmailSummary .mail-list-header .icon-menu {
      display: inline-block; }
    .internalEmailSummary .mail-list-header input {
      display: none; }
  .internalEmailSummary .mail-list-container {
    border-right: none !important; } }
@media screen and (max-width: 572px) {
  .activeShow {
    display: none; }
  .internalEmailNavToggle {
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 9; } }
.internalEmailDetail {
  padding: 0 20px; }
  .internalEmailDetail .titleEmail {
    padding: 10px 0; }
    .internalEmailDetail .titleEmail h5 {
      font-size: 2em;
      font-weight: 700; }
  .internalEmailDetail .action-email-receive {
    display: flex; }
  .internalEmailDetail .sender-content {
    margin-left: -37px;
    margin-bottom: 10px;
    width: 100%; }
    .internalEmailDetail .sender-content .details {
      width: 100%; }
      .internalEmailDetail .sender-content .details .sender-email {
        display: flex;
        justify-content: space-between;
        width: 100%; }
        .internalEmailDetail .sender-content .details .sender-email span:nth-child(1) {
          flex: 1;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; }
      .internalEmailDetail .sender-content .details p {
        margin-bottom: 0; }
  .internalEmailDetail .message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px; }
    .internalEmailDetail .message-header .sender-avatar {
      display: flex;
      align-items: flex-start; }
      .internalEmailDetail .message-header .sender-avatar img {
        width: 30px;
        height: 30px; }
    .internalEmailDetail .message-header .action-group i {
      cursor: pointer;
      font-size: 2em;
      margin-right: 15px;
      opacity: 0.7;
      color: #116cd6; }
      .internalEmailDetail .message-header .action-group i:hover {
        opacity: 1; }
    .internalEmailDetail .message-header .action-group .icon-keyboard-backspace {
      display: none; }
  .internalEmailDetail .message-content {
    margin-bottom: 30px; }
    .internalEmailDetail .message-content img {
      max-width: 100%;
      height: auto !important; }
    .internalEmailDetail .message-content table {
      width: 100% !important; }
  .internalEmailDetail .button-respond button {
    outline: none;
    transition: all 0.4; }
    .internalEmailDetail .button-respond button:hover {
      background-color: #00ffff26; }
  .internalEmailDetail .email-attachedFile {
    margin-bottom: 15px; }
    .internalEmailDetail .email-attachedFile .showAttachedFile {
      display: flex;
      font-size: 1.2em;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 50px;
      padding: 0 5px;
      font-size: 0.9em;
      margin: 0 2px 2px 2px;
      cursor: pointer; }
      .internalEmailDetail .email-attachedFile .showAttachedFile:hover {
        background-color: rgba(0, 0, 0, 0.1); }
      .internalEmailDetail .email-attachedFile .showAttachedFile i {
        font-size: 1.2em;
        margin: 0 3px;
        cursor: pointer;
        height: auto;
        line-height: initial;
        padding: 2px; }

@media screen and (max-width: 767.9px) {
  .message-header .action-group {
    margin-right: 10px; }
    .message-header .action-group i {
      font-size: 1.5em;
      margin-right: 15px; } }

@media screen and (max-width: 572px) {
  .internalEmailDetail .titleEmail h5 {
    font-size: 1.5em !important;
    margin-top: 30px; }
  .internalEmailDetail .message-header {
    flex-direction: column-reverse;
    margin-left: 15px; }
  .internalEmailDetail .action-group {
    position: absolute;
    top: 10px;
    right: 0; }
    .internalEmailDetail .action-group .icon-keyboard-backspace {
      display: inline-block !important; }
  .internalEmailDetail .internalEmailDetail {
    padding: 0 10px !important; } }
.internalEmailSummary {
  /* Mail List Container */ }
  .internalEmailSummary .row {
    margin: 0; }
  .internalEmailSummary .mail-list-header {
    display: flex; }
    .internalEmailSummary .mail-list-header input {
      height: 36px;
      width: calc(100% - 90px);
      border: 1px solid #dee2e6;
      border-radius: 8px;
      padding-left: 10px;
      outline: none; }
    .internalEmailSummary .mail-list-header button {
      font-size: 1em;
      font-weight: 700;
      padding: 0;
      line-height: 3;
      border-radius: 5px;
      box-shadow: none; }
  .internalEmailSummary .mail-list-content {
    max-height: calc(100vh - 250px);
    min-height: calc(100vh - 250px);
    overflow: hidden scroll; }
    .internalEmailSummary .mail-list-content::-webkit-scrollbar {
      display: none; }
    .internalEmailSummary .mail-list-content .mail-list {
      border-bottom: 1px solid #e9e9e9;
      padding: 10px 15px;
      width: 100%;
      position: relative;
      cursor: pointer;
      transition: all 0.2s; }
      .internalEmailSummary .mail-list-content .mail-list.active {
        background-color: #116cd6;
        color: white; }
        .internalEmailSummary .mail-list-content .mail-list.active:hover {
          background-color: #116cd6;
          color: white; }
      .internalEmailSummary .mail-list-content .mail-list.noneRead {
        background-color: #f9f3f3;
        font-weight: 500; }
      .internalEmailSummary .mail-list-content .mail-list:hover {
        background-color: #f9f3f3; }
        .internalEmailSummary .mail-list-content .mail-list:hover .mail-list-action {
          visibility: visible; }
        .internalEmailSummary .mail-list-content .mail-list:hover .mail-list-reply {
          visibility: hidden; }
      .internalEmailSummary .mail-list-content .mail-list .content {
        width: calc(100% - 20px); }
        .internalEmailSummary .mail-list-content .mail-list .content p:first-of-type {
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap; }
        .internalEmailSummary .mail-list-content .mail-list .content p {
          margin-bottom: 0; }
      .internalEmailSummary .mail-list-content .mail-list .sender-name {
        width: 100%;
        font-size: 1.2rem;
        display: flex; }
        .internalEmailSummary .mail-list-content .mail-list .sender-name span:nth-child(1) {
          flex: 1;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          max-width: calc(100% - 94px); }
      .internalEmailSummary .mail-list-content .mail-list .message_text {
        margin: 0;
        width: 100%;
        max-width: 80%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
      .internalEmailSummary .mail-list-content .mail-list .sender-avatar {
        display: flex;
        align-items: flex-start; }
        .internalEmailSummary .mail-list-content .mail-list .sender-avatar img {
          width: 30px; }
      .internalEmailSummary .mail-list-content .mail-list .sender-date {
        font-size: 0.9em; }
      .internalEmailSummary .mail-list-content .mail-list .mail-list-action {
        position: absolute;
        left: 1px;
        top: 4px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        visibility: hidden; }
        .internalEmailSummary .mail-list-content .mail-list .mail-list-action i {
          font-size: 1em; }
      .internalEmailSummary .mail-list-content .mail-list .mail-list-reply {
        position: absolute;
        left: 1px;
        top: 4px; }
        .internalEmailSummary .mail-list-content .mail-list .mail-list-reply i {
          font-size: 1em; }
  .internalEmailSummary .mail-list:last-child {
    border-bottom: none; }
  .internalEmailSummary .SummaryPagination {
    width: 100%;
    text-align: center; }

@media screen and (max-width: 572px) {
  .internalEmailSummary .mail-list .content {
    width: calc(100vw - 80px); }
  .internalEmailSummary .mail-list-header {
    justify-content: flex-end;
    padding: 5px 0; }
    .internalEmailSummary .mail-list-header .icon-menu {
      display: inline-block; }
    .internalEmailSummary .mail-list-header input {
      display: none; }
  .internalEmailSummary .mail-list-container {
    border-right: none !important; } }
@media screen and (max-width: 572px) {
  .activeShow {
    display: none; }
  .internalEmailNavToggle {
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 9; } }
.internalEmailDetail {
  padding: 0 20px; }
  .internalEmailDetail .titleEmail {
    padding: 10px 0; }
    .internalEmailDetail .titleEmail h5 {
      font-size: 2em;
      font-weight: 700; }
  .internalEmailDetail .action-email-receive {
    display: flex; }
  .internalEmailDetail .sender-content {
    margin-left: -37px;
    margin-bottom: 10px;
    width: 100%; }
    .internalEmailDetail .sender-content .details {
      width: 100%; }
      .internalEmailDetail .sender-content .details .sender-email {
        display: flex;
        justify-content: space-between;
        width: 100%; }
        .internalEmailDetail .sender-content .details .sender-email span:nth-child(1) {
          flex: 1;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; }
      .internalEmailDetail .sender-content .details p {
        margin-bottom: 0; }
  .internalEmailDetail .message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px; }
    .internalEmailDetail .message-header .sender-avatar {
      display: flex;
      align-items: flex-start; }
      .internalEmailDetail .message-header .sender-avatar img {
        width: 30px;
        height: 30px; }
    .internalEmailDetail .message-header .action-group i {
      cursor: pointer;
      font-size: 2em;
      margin-right: 15px;
      opacity: 0.7;
      color: #116cd6; }
      .internalEmailDetail .message-header .action-group i:hover {
        opacity: 1; }
    .internalEmailDetail .message-header .action-group .icon-keyboard-backspace {
      display: none; }
  .internalEmailDetail .message-content {
    margin-bottom: 30px; }
    .internalEmailDetail .message-content img {
      max-width: 100%;
      height: auto !important; }
    .internalEmailDetail .message-content table {
      width: 100% !important; }
  .internalEmailDetail .button-respond button {
    outline: none;
    transition: all 0.4; }
    .internalEmailDetail .button-respond button:hover {
      background-color: #00ffff26; }
  .internalEmailDetail .email-attachedFile {
    margin-bottom: 15px; }
    .internalEmailDetail .email-attachedFile .showAttachedFile {
      display: flex;
      font-size: 1.2em;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 50px;
      padding: 0 5px;
      font-size: 0.9em;
      margin: 0 2px 2px 2px;
      cursor: pointer; }
      .internalEmailDetail .email-attachedFile .showAttachedFile:hover {
        background-color: rgba(0, 0, 0, 0.1); }
      .internalEmailDetail .email-attachedFile .showAttachedFile i {
        font-size: 1.2em;
        margin: 0 3px;
        cursor: pointer;
        height: auto;
        line-height: initial;
        padding: 2px; }

@media screen and (max-width: 767.9px) {
  .message-header .action-group {
    margin-right: 10px; }
    .message-header .action-group i {
      font-size: 1.5em;
      margin-right: 15px; } }

@media screen and (max-width: 572px) {
  .internalEmailDetail .titleEmail h5 {
    font-size: 1.5em !important;
    margin-top: 30px; }
  .internalEmailDetail .message-header {
    flex-direction: column-reverse;
    margin-left: 15px; }
  .internalEmailDetail .action-group {
    position: absolute;
    top: 10px;
    right: 0; }
    .internalEmailDetail .action-group .icon-keyboard-backspace {
      display: inline-block !important; }
  .internalEmailDetail .internalEmailDetail {
    padding: 0 10px !important; } }
.internalEmailSummary {
  /* Mail List Container */ }
  .internalEmailSummary .row {
    margin: 0; }
  .internalEmailSummary .mail-list-header {
    display: flex; }
    .internalEmailSummary .mail-list-header input {
      height: 36px;
      width: calc(100% - 90px);
      border: 1px solid #dee2e6;
      border-radius: 8px;
      padding-left: 10px;
      outline: none; }
    .internalEmailSummary .mail-list-header button {
      font-size: 1em;
      font-weight: 700;
      padding: 0;
      line-height: 3;
      border-radius: 5px;
      box-shadow: none; }
    .internalEmailSummary .mail-list-header .refreshEmail button {
      padding: 0 10px;
      height: 36px;
      opacity: 0.7;
      transition: all 0.2; }
      .internalEmailSummary .mail-list-header .refreshEmail button i {
        color: white; }
      .internalEmailSummary .mail-list-header .refreshEmail button:hover {
        opacity: 1; }
  .internalEmailSummary .mail-list-content {
    max-height: calc(100vh - 250px);
    min-height: calc(100vh - 250px);
    overflow: hidden scroll; }
    .internalEmailSummary .mail-list-content::-webkit-scrollbar {
      display: none; }
    .internalEmailSummary .mail-list-content .mail-list {
      border-bottom: 1px solid #e9e9e9;
      padding: 10px 15px;
      width: 100%;
      position: relative;
      cursor: pointer;
      transition: all 0.2s; }
      .internalEmailSummary .mail-list-content .mail-list.active {
        background-color: #116cd6;
        color: white; }
        .internalEmailSummary .mail-list-content .mail-list.active:hover {
          background-color: #116cd6;
          color: white; }
      .internalEmailSummary .mail-list-content .mail-list.noneRead {
        background-color: #f9f3f3;
        font-weight: 500; }
      .internalEmailSummary .mail-list-content .mail-list:hover {
        background-color: #f9f3f3; }
        .internalEmailSummary .mail-list-content .mail-list:hover .mail-list-action {
          visibility: visible; }
        .internalEmailSummary .mail-list-content .mail-list:hover .mail-list-reply {
          visibility: hidden; }
      .internalEmailSummary .mail-list-content .mail-list .content {
        width: calc(100% - 20px); }
        .internalEmailSummary .mail-list-content .mail-list .content p:first-of-type {
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap; }
        .internalEmailSummary .mail-list-content .mail-list .content p {
          margin-bottom: 0; }
      .internalEmailSummary .mail-list-content .mail-list .sender-name {
        width: 100%;
        font-size: 1.2rem;
        display: flex; }
        .internalEmailSummary .mail-list-content .mail-list .sender-name span:nth-child(1) {
          flex: 1;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          max-width: calc(100% - 94px); }
      .internalEmailSummary .mail-list-content .mail-list .message_text {
        margin: 0;
        width: 100%;
        max-width: 80%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
      .internalEmailSummary .mail-list-content .mail-list .sender-avatar {
        display: flex;
        align-items: flex-start; }
        .internalEmailSummary .mail-list-content .mail-list .sender-avatar img {
          width: 30px; }
      .internalEmailSummary .mail-list-content .mail-list .sender-date {
        font-size: 0.9em; }
      .internalEmailSummary .mail-list-content .mail-list .mail-list-action {
        position: absolute;
        left: 1px;
        top: 4px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        visibility: hidden; }
        .internalEmailSummary .mail-list-content .mail-list .mail-list-action i {
          font-size: 1em; }
      .internalEmailSummary .mail-list-content .mail-list .mail-list-reply {
        position: absolute;
        left: 1px;
        top: 4px; }
        .internalEmailSummary .mail-list-content .mail-list .mail-list-reply i {
          font-size: 1em; }
      .internalEmailSummary .mail-list-content .mail-list .priorityIcon {
        position: absolute;
        right: 28px;
        top: 23px; }
        .internalEmailSummary .mail-list-content .mail-list .priorityIcon i {
          font-size: 1em; }
  .internalEmailSummary .mail-list:last-child {
    border-bottom: none; }
  .internalEmailSummary .SummaryPagination {
    width: 100%;
    text-align: center; }

@media screen and (max-width: 572px) {
  .internalEmailSummary .mail-list .content {
    width: calc(100vw - 80px); }
  .internalEmailSummary .mail-list-header {
    justify-content: flex-end;
    padding: 5px 0; }
    .internalEmailSummary .mail-list-header .icon-menu {
      display: inline-block; }
    .internalEmailSummary .mail-list-header input {
      display: none; }
  .internalEmailSummary .mail-list-container {
    border-right: none !important; } }
.rowDetailEmail .rowDetailEmail-content {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.searchInternalEmail .searchText {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-right: 5px;
  height: 36px;
  padding-left: 5px;
  width: 250px; }

.searchInternalEmail button {
  box-shadow: none;
  margin-left: 5px;
  border-radius: 5px; }
.d-flex, .welcome-page .section-list, .welcome-page .section-list .section-list-item__icon {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important; }

.welcome-page {
  padding: 50px 15px;
  background: #fff;
  height: 100vh; }
  .welcome-page .container {
    max-width: 768px; }
  .welcome-page .section-list {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px; }
    .welcome-page .section-list::after {
      content: '';
      display: inline-block; }
    .welcome-page .section-list .section-list-item {
      width: 20%; }
      .welcome-page .section-list .section-list-item__icon {
        margin-bottom: 30px; }
        .welcome-page .section-list .section-list-item__icon img {
          max-width: 50px;
          height: auto;
          margin: auto; }
        .welcome-page .section-list .section-list-item__icon .hover {
          cursor: pointer; }
      .welcome-page .section-list .section-list-item__title {
        text-align: center;
        color: #4a4a4a;
        font-weight: 600;
        font-size: 14px; }
    .welcome-page .section-list a,
    .welcome-page .section-list a:hover {
      text-decoration: none; }

.layout #wrapper > div > .aside > .aside-content-wrapper > .aside-content > .aside-toolbar .logo .logo-icon {
  background: #fff !important;
  width: 54px;
  height: 54px !important;
  border-radius: 50%;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  justify-items: center; }

.layout #wrapper .main-aside-fuse-bar-close .logo-icon {
  width: 45px !important;
  height: 45px !important;
  padding: 5px; }

.layout #wrapper > div.main-aside-fuse-bar-close > .aside > .aside-content-wrapper > .aside-content > .aside-toolbar .logo .logo-icon {
  width: 55px !important;
  height: 45px !important; }

ul#sidenav li.Home > a {
  display: none; }

#sidenav li.Home ul.nav-collapse > li > .nav-link {
  padding-left: 15px !important; }

#reactBody.fuse-aside-folded:not(.fuse-aside-expanded) ul#sidenav > li.Home ul.nav-collapse.show {
  display: block !important; }

#reactBody.fuse-aside-folded:not(.fuse-aside-expanded) ul#sidenav > li.Home ul.nav-collapse a.nav-link {
  padding-left: 25px !important;
  padding-top: 15px; }
.exportexcel {
  background-color: #087132;
  margin: 0 0 0 8px; }

.recalculator {
  background-color: #F7941D;
  margin: 0 8px; }

.confirm {
  background-color: #00A141;
  margin: 0 8px; }

.nav-tabs {
  border-bottom: 1px solid #DDD; }

.xem-act .icon,
.staff-act button .icon {
  color: #fff; }

.staff-act button {
  border-radius: 4px;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px; }

.find-act {
  background-color: #0c83e2;
  border-radius: 4px;
  color: #fff !important;
  padding: 5px 10px;
  font-size: 14px; }

.xem-act {
  background-color: #0c83e2;
  border-radius: 4px;
  color: #fff !important;
  padding: 3px 10px;
  font-size: 14px; }

.item-act span.text-left {
  display: block;
  color: #fff !important; }

.item {
  margin-bottom: 15px; }

.confirm-status {
  color: #00A141; }

.non-confirm-status {
  color: #DD2025; }

.staff-item a {
  color: #0093EE;
  text-decoration: underline;
  cursor: pointer; }

.rai-spinner {
  width: 1.3em;
  height: 1.3em; }

.confirm,
.exportexcel,
.recalculator {
  display: flex;
  text-transform: none !important;
  justify-content: center;
  align-items: center; }

.search-filter {
  min-width: 100%;
  width: 100%; }

.icon-button {
  color: #0093EE; }

.icon-button :hover {
  color: white; }

.icon-button-pdf {
  color: #4CAF50; }

.icon-button-pdf :hover {
  color: white; }
.table-basic {
  width: 887px;
  padding-bottom: 20px; }
  .table-basic .table-header {
    display: flex;
    width: 50%; }
  .table-basic .table-td-left {
    width: 60%; }
  .table-basic .table-td-right {
    width: 40%; }
  .table-basic .table-td {
    border-collapse: collapse;
    border: 1px solid #909090;
    font-family: "Times New Roman";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-top: 10px; }
  .table-basic .title-table {
    font-family: "Times New Roman";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #dd2025;
    text-align: center;
    border: 1px solid #909090;
    padding-top: 4px;
    padding-bottom: 4px; }

@media screen and (max-width: 576px) {
  .table .table-header {
    display: flex;
    width: 100%; }
    .table .table-header .table-header-item {
      width: 50% !important; }
  .table-basic {
    width: auto; } }
.page-content-wrapper-salary-report {
  background-color: #cfd8dc; }

.modal-md.modal-md-set800 .modal-content {
  width: 800px; }

.table.custom-table-bordered {
  border: 1px solid #eee; }

.table.custom-table-bordered th, .table.custom-table-bordered td {
  border: 1px solid #eee; }

.form-control.border-select.branch-select {
  min-height: 33px;
  min-width: 224px; }

.Search-SalaryReportNurse .search-filter {
  height: 30px;
  border: #ccc 1px solid;
  border-radius: 4px; }

.Search-SalaryReportNurse .input-group-append button {
  height: 33px; }
.page-content-wrapper-salary-report {
  background-color: #cfd8dc; }

.modal-md.modal-md-set800 .modal-content {
  width: 800px; }

.table.custom-table-bordered {
  border: 1px solid #eee; }

.table.custom-table-bordered th, .table.custom-table-bordered td {
  border: 1px solid #eee; }

.form-control.border-select.branch-select {
  min-height: 33px;
  min-width: 224px; }

.card-header {
  background-color: #E4E4E4; }

.header-table {
  background-color: #E4E4E4; }

#card-footer {
  background-color: white;
  border-top: 0px solid rgba(0, 0, 0, 0.125); }

.Search-SalaryReportNurse .form-control {
  border-radius: 4px; }

.Search-SalaryReportNurse .search-filter {
  height: 34px !important; }

.Search-SalaryReportNurse .input-group-append .btn {
  height: 30px;
  align-items: center;
  display: flex; }

.form-multiselect .rw-multiselect-taglist {
  display: contents; }

.form-multiselect .rw-multiselect {
  text-align: left; }

.rw-widget-input.rw-widget-picker.rw-widget-container {
  height: 34px !important; }

.modal-salary-report-nurse .modal-header {
  background-color: #ffffff;
  border-bottom: 1px solid #DBDBDB; }

.modal-salary-report-nurse .modal-header > * {
  color: #000000;
  font-weight: 700;
  font-size: 16px; }

.modal-salary-report-nurse .icon-close {
  color: #7B7B7B !important; }

.modal-salary-report-nurse .modal-body {
  padding: 0; }

.salary-report-nurse .header-table {
  background: #F8F8F8; }

@media screen and (max-width: 768px) {
  .page-content-card {
    overflow-x: scroll; } }

@media screen and (max-width: 576px) {
  .page-content-card {
    overflow-x: scroll; } }
.page-content-wrapper-salary-report {
  background-color: #cfd8dc; }

.modal-md.modal-md-set800 .modal-content {
  width: 800px; }

.table.custom-table-bordered {
  border: 1px solid #eee; }

.table.custom-table-bordered th,
.table.custom-table-bordered td {
  border: 1px solid #eee; }

.form-control.border-select.branch-select {
  min-height: 33px;
  min-width: 224px; }

.card-header {
  background-color: #e4e4e4;
  min-height: 60px;
  padding-bottom: 0px; }

.header-table {
  background-color: #e4e4e4;
  padding: 10px; }

.body-table-customer div {
  display: flex;
  justify-content: center; }

#card-footer {
  background-color: white;
  border-top: 0px solid rgba(0, 0, 0, 0.125); }

.Search-SalaryReportNurse .form-control {
  border-radius: 4px; }

@media screen and (max-width: 768px) {
  .page-content-card {
    overflow-x: scroll; }
  .header-table {
    display: none; }
  .body-table-customer {
    border-top: 1px solid rgba(0, 0, 0, 0.125); }
    .body-table-customer div {
      display: flex;
      justify-content: start; } }

@media screen and (max-width: 576px) {
  .page-content-card {
    overflow-x: scroll; }
  .header-table {
    display: none; }
  .body-table-customer {
    border-top: 1px solid rgba(0, 0, 0, 0.125); }
    .body-table-customer div {
      display: flex;
      justify-content: start; } }
.page-content-wrapper-salary-report {
  background-color: #cfd8dc; }

.modal-md.modal-md-set800 .modal-content {
  width: 800px; }

.table.custom-table-bordered {
  border: 1px solid #eee; }

.table.custom-table-bordered th, .table.custom-table-bordered td {
  border: 1px solid #eee; }

.header-input-search-payroll-income {
  height: 35px;
  border-radius: 4px;
  border: 1px solid #dbdbdb;
  line-height: 42px;
  width: 300px; }

.incom-doctor .btn-search {
  height: 33px;
  line-height: 3px; }

.incom-doctor .card-header {
  background: #005E9E;
  color: white; }

.incom-doctor .header-table {
  background: #005E9E; }

@media (max-width: 576px) {
  .incom-doctor .DateRangePicker_1 {
    width: 100%; }
    .incom-doctor .DateRangePicker_1 .DateRangePickerInput__withBorder {
      width: 100%; }
  .incom-doctor .header-input-search-payroll-income {
    width: 100% !important;
    margin-left: 0px !important;
    margin-right: 0px !important; }
  .incom-doctor .btn-search {
    width: 100%; } }
.timekeeper-editor-request-modal .time-card {
  cursor: pointer; }
  .timekeeper-editor-request-modal .time-card:hover {
    background-color: var(--secondary);
    color: white; }

.timekeeper-editor-request-modal .time-input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 3px 5px;
  border-radius: 5px;
  width: 100%;
  height: 30px;
  font-size: 15px; }

.timekeeper-editor-request-modal .font-size-13 {
  font-size: 13px; }

.timekeeper-editor-request-modal .z-index-1 {
  z-index: 1; }

.timekeeper-editor-request-modal .z-index-2 {
  z-index: 2; }

.timekeeper-editor-request-modal .z-index-1060 {
  z-index: 1060; }

.timekeeper-editor-request-modal .z-index-1070 {
  z-index: 1070; }

.timekeeper-editor-request-modal .z-index-1080 {
  z-index: 1080; }
.customer-care-content {
  padding: 15px;
  background-color: #edeff0; }
  .customer-care-content .card-table {
    padding: 15px;
    background-color: #fff;
    border-radius: 8px; }
.customer-care-content {
  padding: 15px;
  background-color: #edeff0; }
  .customer-care-content .card-table {
    padding: 15px;
    background-color: #fff;
    border-radius: 8px; }
/**
  Policy
**/
.policy-link {
  font-weight: 500;
  color: #007bff !important; }

.policy-detail .table {
  margin-bottom: 10px; }
  .policy-detail .table td, .policy-detail .table th {
    border: 1px solid #1f1f1f; }
.manager-modal-update-timekeep .form-control:disabled {
  background-color: #e9ecef !important; }

.manager-modal-update-timekeep .field + .field {
  margin-top: 8px; }

.manager-modal-update-timekeep .time-input {
  padding: 3px 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 25px;
  border-radius: 3px;
  width: 100%; }
.manager-timekeep-approval .SingleDatePicker,
.manager-timekeep-approval .text-input,
.manager-timekeep-approval .btn {
  height: 34px !important; }

.manager-timekeep-approval .header .filter-label {
  width: 85px; }

.manager-timekeep-approval .header .filter-status-item {
  background-color: white;
  color: black;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #b3b3b3;
  font-weight: 700; }
  .manager-timekeep-approval .header .filter-status-item + .filter-status-item {
    margin-left: 12px; }
  .manager-timekeep-approval .header .filter-status-item.active {
    border-color: #2196f3;
    color: #2196f3; }

@media (max-width: 576px) {
  .manager-timekeep-approval .header .filter-field + .filter-field {
    margin-top: 8px; }
  .manager-timekeep-approval .header .btn {
    width: 100%; } }

.manager-timekeep-approval .list.card-body {
  padding: unset; }

.manager-timekeep-approval .list .keep-all {
  white-space: nowrap; }

.manager-timekeep-approval .list .icon-hover {
  border-radius: 100%;
  padding: 4px; }
  .manager-timekeep-approval .list .icon-hover:hover {
    background-color: #e4e4e4; }

.manager-timekeep-approval .list-mobile .card + .card {
  margin-top: 2px; }

.manager-timekeep-approval .list-mobile .buttons .icon + .icon {
  margin-left: 16px; }

.manager-timekeep-approval .warning {
  width: 85px;
  padding: 8px;
  border-radius: 4px;
  color: #ffffff;
  white-space: nowrap;
  margin: 0;
  line-height: 1.15; }
  .manager-timekeep-approval .warning--approved {
    background-color: #12cc00; }
  .manager-timekeep-approval .warning--rejected {
    background-color: #d1360f; }
  .manager-timekeep-approval .warning--pending {
    background-color: #ffea00;
    color: #333333; }
.page-content-card .nav-tabs {
  padding: 0 2.4rem;
  background-color: #FFFFFF;
  -webkit-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);
  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); }

.ManageReceipts .col-lg-2 {
  max-width: 15%; }

.nav-item .nav-link {
  padding-left: 30px;
  padding-right: 30px; }

.avatar-lg {
  width: 60px;
  height: 60px;
  text-indent: 2000px; }

.nav-tabs .nav-link.active:not(.dropdown-toggle):after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px !important;
  background-color: #3C4252; }

.font-size-3 {
  font-size: 2em; }

.overflow-hidden {
  overflow: hidden; }

.displayAbsences:hover {
  background-color: var(--light); }

.displayAbsences:last-child .badge {
  margin-bottom: 0; }

.d-pre-line {
  white-space: pre-line; }

.d-badge-pre-line {
  white-space: pre-line;
  line-height: 1.5rem;
  margin-bottom: 0.5rem; }

.displayAbsences:last-child .badge {
  margin-bottom: 0; }

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

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

.badge-absence {
  background-color: #ececec;
  color: #000; }

.absence-detail {
  overflow: auto;
  max-height: 17rem; }

@media screen and (min-width: 1200px) {
  .stt {
    max-width: 6%;
    flex: 0 0 6%; }
  .fullname {
    flex: 0 0 19%;
    max-width: 19%; }
  .pt-absence-date {
    padding-top: 0.6rem; } }

@media screen and (max-width: 576px) {
  .displayAbsences-mobile {
    margin-bottom: 2rem; }
  .displayAbsences-mobile .title-item {
    width: 35%;
    font-weight: bold; }
  .displayAbsences-mobile .value-item {
    width: 65%; } }
.staff-list-timekeep .SingleDatePicker,
.staff-list-timekeep .text-input,
.staff-list-timekeep .btn {
  height: 34px !important; }

.staff-list-timekeep .header .filter-label {
  width: 85px; }

@media (max-width: 576px) {
  .staff-list-timekeep .header .filter-field + .filter-field {
    margin-top: 8px; }
  .staff-list-timekeep .header .btn {
    width: 100%; } }

.staff-list-timekeep .list.card-body {
  padding: unset; }

.staff-list-timekeep .list .keep-all {
  white-space: nowrap; }

.staff-list-timekeep .list-mobile .card + .card {
  margin-top: 2px; }

.staff-list-timekeep .list-mobile .underline {
  text-decoration: underline; }

.staff-list-timekeep .warning {
  width: 85px;
  padding: 8px;
  border-radius: 4px;
  color: #ffffff;
  white-space: nowrap;
  margin: 0;
  line-height: 1.15; }
  .staff-list-timekeep .warning--approved {
    background-color: #12cc00; }
  .staff-list-timekeep .warning--rejected {
    background-color: #d1360f; }
  .staff-list-timekeep .warning--pending {
    background-color: #ffea00;
    color: #333333; }
.staff-timekeep .btn-check-in {
  background-color: white;
  color: black; }
  .staff-timekeep .btn-check-in .icon {
    color: inherit; }
.staff-modal-create-timekeep-request .form-control:disabled {
  background-color: #e9ecef !important; }

.staff-modal-create-timekeep-request .field + .field {
  margin-top: 8px; }

.staff-modal-create-timekeep-request .time-input {
  padding: 3px 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 25px;
  border-radius: 3px;
  width: 100%; }
.staff-timekeep-request .SingleDatePicker,
.staff-timekeep-request .text-input,
.staff-timekeep-request .btn {
  height: 34px !important; }

.staff-timekeep-request .header .filter-label {
  width: 85px; }

@media (max-width: 576px) {
  .staff-timekeep-request .header .filter-field + .filter-field {
    margin-top: 8px; }
  .staff-timekeep-request .header .btn {
    width: 100%; } }

.staff-timekeep-request .list.card-body {
  padding: unset; }

.staff-timekeep-request .list .keep-all {
  white-space: nowrap; }

.staff-timekeep-request .list-mobile .card + .card {
  margin-top: 2px; }

.staff-timekeep-request .list-mobile .underline {
  text-decoration: underline; }

.staff-timekeep-request .warning {
  width: 85px;
  padding: 8px;
  border-radius: 4px;
  color: #ffffff;
  white-space: nowrap;
  margin: 0;
  line-height: 1.15; }
  .staff-timekeep-request .warning--approved {
    background-color: #12cc00; }
  .staff-timekeep-request .warning--rejected {
    background-color: #d1360f; }
  .staff-timekeep-request .warning--pending {
    background-color: #ffea00;
    color: #333333; }
.activity-tracking .SingleDatePicker,
.activity-tracking .text-input,
.activity-tracking .btn {
  height: 34px !important; }

.activity-tracking .show-more-less-clickable {
  color: #2196F3; }

.activity-tracking .active-tracking-header .col-md-4 {
  max-width: 19%; }

@media (max-width: 576px) {
  .activity-tracking .active-tracking-header .col-md-4 {
    max-width: 100%; } }

@media (max-width: 768px) {
  .activity-tracking .active-tracking-header .col-md-4 {
    max-width: 100%; } }

.activity-tracking .header .custom-single-date-picker .SingleDatePicker div {
  padding-right: 7px; }

.activity-tracking .header .filter-label {
  width: 85px; }

@media (max-width: 576px) {
  .activity-tracking .header .col-xl-2 {
    max-width: 100%; }
  .activity-tracking .header .filter-field + .filter-field {
    margin-top: 8px; }
  .activity-tracking .header .btn {
    width: 100%; } }

.activity-tracking .list.card-body {
  padding: unset; }

.activity-tracking .list-mobile .card + .card {
  margin-top: 2px; }

.activity-tracking .list-mobile .underline {
  text-decoration: underline; }
/**
  Policy
**/
.policy-link {
  font-weight: 500;
  color: #007bff !important; }

.policy-detail .table {
  margin-bottom: 10px; }
  .policy-detail .table td, .policy-detail .table th {
    border: 1px solid #1f1f1f; }

.input-file-policy {
  overflow: hidden; }
  .input-file-policy .input-file-policy-item {
    overflow: hidden;
    width: 80%;
    border: 1px solid #ced4da;
    height: 35px;
    line-height: 35px;
    border-radius: 4px;
    /* padding: 3px; */
    padding-left: 4px; }

@media (max-width: 576px) {
  .input-file-policy {
    overflow: hidden; }
    .input-file-policy .input-file-policy-item {
      overflow: hidden;
      width: 100%;
      border: 1px solid #ced4da;
      height: 35px;
      line-height: 35px;
      border-radius: 4px;
      /* padding: 3px; */
      padding-left: 4px;
      margin-bottom: 4px; } }
.customer-rating .customer-care-content {
  padding: 15px;
  background-color: #edeff0; }

.input-search-folder {
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid; }

.list-folder-file .list-group {
  border: 1px solid #DDD;
  padding: 0; }
  .list-folder-file .list-group li {
    border-bottom: 1px solid #DDD;
    padding: 16px; }

.QualityCriteria .search-filter {
  background-color: #fff;
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px;
  height: 33px;
  width: 100%; }

.QualityCriteria .btn-search {
  height: 33px; }

.QualityCriteria .row-filter {
  margin: 0;
  gap: 12px;
  justify-content: flex-end; }
  .QualityCriteria .row-filter .btn-upload {
    width: 100%; }
  .QualityCriteria .row-filter .div-input-search {
    width: 100%;
    max-width: 400px; }
    .QualityCriteria .row-filter .div-input-search input {
      height: 37px; }
  .QualityCriteria .row-filter .div-btn-filter a,
  .QualityCriteria .row-filter .div-btn-upload {
    height: 36px !important; }
  .QualityCriteria .row-filter .div-btn-filter-ones a {
    height: 36px !important; }

.input-search-folder {
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid; }

.no-data-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  padding: 15px;
  background-color: #edeff0; }

.rstm-toggle-icon {
  display: inline-block; }
  .rstm-toggle-icon-symbol {
    width: 2rem;
    height: 2rem;
    text-align: center;
    line-height: 2rem; }

.rstm-tree-item-group {
  list-style-type: none;
  padding-left: 0px;
  border-top: 1px solid #ccc;
  text-align: left;
  width: 100%; }

.rstm-tree-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  color: #333;
  background: none;
  border-bottom: 1px solid #ccc;
  box-shadow: none;
  z-index: unset;
  position: relative; }
  .rstm-tree-item--active {
    color: white;
    background: #179ed3;
    border-bottom: none; }
  .rstm-tree-item--focused {
    box-shadow: 0 0 5px 0 #222;
    z-index: 999; }

.rstm-search {
  padding: 1rem 1.5rem;
  border: none;
  width: 100%; }

.customerating.modal-create-customer-care-communication .modal-content .modal-body {
  padding: 10px; }

.form-group select {
  height: 100% !important;
  box-shadow: none !important;
  border: solid 1px rgba(0, 0, 0, 0.1) !important;
  border-radius: 3px !important;
  padding: 3px 5px !important; }

.text-feedback {
  color: #909090;
  margin-right: 5px; }

.text-customer-feedback {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: #909090; }

.input-customer-feedback {
  background-clip: padding-box;
  border-radius: 8px !important;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  border: 1px solid rgba(10, 44, 77, 0.15) !important;
  font-family: inherit;
  height: 32px !important;
  box-shadow: none;
  padding: 0 12px; }

.text-area {
  border-radius: 8px !important;
  border: solid 1px rgba(10, 44, 77, 0.15) !important; }

@media (max-width: 767px) {
  .QualityCriteria .btn-search {
    width: 100%; }
  .QualityCriteria .div-btn-filter,
  .QualityCriteria .div-btn-upload {
    width: 48%; }
  .QualityCriteria .div-btn-filter-ones {
    width: 100%; }
  .QualityCriteria .row-filter {
    justify-content: center; } }
.customer-rating .customer-care-content {
  padding: 15px;
  background-color: #edeff0; }

.input-search-folder {
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid; }

.list-folder-file .list-group {
  border: 1px solid #DDD;
  padding: 0; }
  .list-folder-file .list-group li {
    border-bottom: 1px solid #DDD;
    padding: 16px; }

.QualityCriteria .search-filter {
  background-color: #fff;
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px;
  height: 33px;
  width: 100%; }

.QualityCriteria .btn-search {
  height: 33px; }

.QualityCriteria .row-filter {
  margin: 0;
  gap: 12px;
  justify-content: flex-end; }
  .QualityCriteria .row-filter .btn-upload {
    width: 100%; }
  .QualityCriteria .row-filter .div-input-search {
    width: 100%;
    max-width: 400px; }
    .QualityCriteria .row-filter .div-input-search input {
      height: 37px; }
  .QualityCriteria .row-filter .div-btn-filter a,
  .QualityCriteria .row-filter .div-btn-upload {
    height: 36px !important; }
  .QualityCriteria .row-filter .div-btn-filter-ones a {
    height: 36px !important; }

.input-search-folder {
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid; }

.no-data-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  padding: 15px;
  background-color: #edeff0; }

.rstm-toggle-icon {
  display: inline-block; }
  .rstm-toggle-icon-symbol {
    width: 2rem;
    height: 2rem;
    text-align: center;
    line-height: 2rem; }

.rstm-tree-item-group {
  list-style-type: none;
  padding-left: 0px;
  border-top: 1px solid #ccc;
  text-align: left;
  width: 100%; }

.rstm-tree-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  color: #333;
  background: none;
  border-bottom: 1px solid #ccc;
  box-shadow: none;
  z-index: unset;
  position: relative; }
  .rstm-tree-item--active {
    color: white;
    background: #179ed3;
    border-bottom: none; }
  .rstm-tree-item--focused {
    box-shadow: 0 0 5px 0 #222;
    z-index: 999; }

.rstm-search {
  padding: 1rem 1.5rem;
  border: none;
  width: 100%; }

.customerating.modal-create-customer-care-communication .modal-content .modal-body {
  padding: 10px; }

.form-group select {
  height: 100% !important;
  box-shadow: none !important;
  border: solid 1px rgba(0, 0, 0, 0.1) !important;
  border-radius: 3px !important;
  padding: 3px 5px !important; }

.text-feedback {
  color: #909090;
  margin-right: 5px; }

.text-customer-feedback {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: #909090; }

.input-customer-feedback {
  background-clip: padding-box;
  border-radius: 8px !important;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  border: 1px solid rgba(10, 44, 77, 0.15) !important;
  font-family: inherit;
  height: 32px !important;
  box-shadow: none;
  padding: 0 12px; }

.text-area {
  border-radius: 8px !important;
  border: solid 1px rgba(10, 44, 77, 0.15) !important; }

@media (max-width: 767px) {
  .QualityCriteria .btn-search {
    width: 100%; }
  .QualityCriteria .div-btn-filter,
  .QualityCriteria .div-btn-upload {
    width: 48%; }
  .QualityCriteria .div-btn-filter-ones {
    width: 100%; }
  .QualityCriteria .row-filter {
    justify-content: center; } }
.import-bonus .import-bonus-header .col-md-3 {
  max-width: 20%; }
.import-bonus .import-bonus-header .col-md-3 {
  max-width: 20%; }

.btn-template {
  font-size: 10pt; }
.hr-device-management .text-padding {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  border: 1px solid #cccccc !important; }

.hr-device-management .table.table-hover thead tr:hover th {
  background-color: initial; }

.hr-device-management .table-hover tbody tr:hover td {
  background-color: rgba(0, 0, 0, 0.05); }

.hr-device-management .pre-line {
  white-space: pre-line; }

.hr-device-management .mobile {
  margin-left: -15px;
  margin-right: -15px; }
  .hr-device-management .mobile .block {
    padding: 8px 16px; }
  .hr-device-management .mobile .block + .block {
    margin-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.5); }

.deviceManagement-filter .input-search {
  height: 34px !important; }

.modal-history-list-device {
  max-width: 900px !important; }
  .modal-history-list-device .table-hover tbody tr:hover td {
    background-color: rgba(0, 0, 0, 0.05); }

.hr-device-management-modal .text-padding {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  padding-left: 8px !important;
  border: 1px solid #cccccc !important; }

.hr-device-management-modal .react-date-picker {
  max-width: 100px; }
  .hr-device-management-modal .react-date-picker .react-date-picker__wrapper {
    border-color: #ccc;
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 8px;
    border-radius: 4px; }
.modal-detail-list .search-filter {
  background-color: #fff;
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px;
  width: 100%;
  height: 33px; }

@media (max-width: 576px) {
  .CheckInListRegisterEvent .modal-content {
    width: 600px;
    max-width: 100%;
    margin: auto; }
  .CheckInListRegisterEvent .btn-CheckInListRegisterEvent {
    font-size: 9px; }
  .CheckInListRegisterEvent input {
    width: 100% !important; }
  .CheckInListRegisterEvent .btn-search {
    width: 100%; } }
.CreateEvent .own-datetime_date .time {
  width: 100% !important; }

.CreateEvent .datetime {
  width: 100%; }

.CreateEvent .date {
  max-width: 81px; }
  .CreateEvent .date input {
    line-height: 19px !important; }

.CreateEvent .custom-single-date-picker .SingleDatePicker_1 {
  width: 100%;
  height: 33px; }

.CreateEvent .custom-single-date-picker .SingleDatePicker > :first-child {
  padding-right: 10px;
  width: 100%; }

.CreateEvent .input-group-append input {
  height: 26px; }

.CreateEvent .time-body {
  width: 100%;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px !important;
  height: 33px; }
  .CreateEvent .time-body .time-input {
    width: 100%;
    line-height: 27px;
    /* overflow: hidden; */
    /* padding: 1px; */
    margin-top: 2px; }
  .CreateEvent .time-body .event-clock-icon {
    position: absolute;
    right: 23px;
    top: 27px; }
.JoinEvent .text-input {
  background-color: #eee; }

.JoinEvent .own-datetime_date {
  background-color: #eee; }
  .JoinEvent .own-datetime_date .time {
    width: 100% !important; }

.JoinEvent .datetime {
  width: 100%; }

.JoinEvent .date {
  max-width: 81px; }
  .JoinEvent .date input {
    line-height: 19px !important; }

.JoinEvent .custom-single-date-picker .SingleDatePicker_1 {
  width: 100%;
  height: 33px; }

.JoinEvent .custom-single-date-picker .SingleDatePicker > :first-child {
  padding-right: 10px;
  width: 100%; }

.JoinEvent .input-group-append input {
  height: 26px; }

.JoinEvent .time-body {
  width: 100%;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px !important;
  height: 33px; }
  .JoinEvent .time-body .time-input {
    width: 100%;
    line-height: 27px;
    /* overflow: hidden; */
    /* padding: 1px; */
    margin-top: 2px; }
  .JoinEvent .time-body .event-clock-icon {
    position: absolute;
    right: 23px;
    top: 27px; }

.JoinEvent .show-more-less-clickable {
  color: #2196F3; }
.smt__content {
  transition: all 0.3s;
  line-height: var(--smt-line-height);
  max-height: var(--smt-max-height); }
  .smt__content--limit {
    overflow: hidden; }

.smt__toggle {
  all: unset;
  color: #2196f3; }
  .smt__toggle:focus {
    outline: 1px dashed #2196f3 !important; }
.list-event-calender .body__cell {
  max-width: 155px; }

.list-event-calender .box-text-la-bo-v3 {
  width: 10px;
  height: 10px;
  background-color: #28A745; }

.list-event-calender .box-text-la-bo-v3-2 {
  width: 10px;
  height: 10px;
  background-color: #007BFF; }

.list-event-calender .item-on-calender {
  position: relative; }
  .list-event-calender .item-on-calender .count {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: red;
    width: fit-content !important;
    height: auto !important;
    padding: 3px;
    border-radius: 50%; }

.list-event-calender .smt .smt__toggle {
  padding-right: 7px; }

.list-event-calender .smt__toggle {
  all: unset;
  color: #2196f3;
  text-decoration: underline;
  cursor: pointer; }
  .list-event-calender .smt__toggle:focus {
    outline: 0px dashed #2196f3 !important; }

.style-modal-list-event-calender {
  max-height: 300px;
  overflow: auto; }
  .style-modal-list-event-calender .show-more-less-clickable {
    color: #2196F3; }
.ManageTrainingAndEvent-filter .DateRangePickerInput {
  width: 295px !important;
  height: 33px; }

.ManageTrainingAndEvent-filter .search-filter {
  background-color: #fff;
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px;
  width: 100%;
  height: 33px; }

.ManageTrainingAndEvent-filter .col-lg-4 {
  max-width: 31.33333% !important; }

.ManageTrainingAndEvent-filter .btn-search {
  height: 32px; }

.ManageTrainingAndEvent-filter .number-rating {
  width: 68px;
  height: 68px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 66px;
  border: 1px solid #f7941d;
  border-radius: 50%;
  /* left: 350px; */
  /* top: 176px; */
  text-align: center;
  color: #f7941d; }

.ManageTrainingAndEvent-filter .date-total {
  gap: 24px;
  flex-direction: row;
  align-items: center; }

.ManageTrainingAndEvent-filter .class-row-filter {
  flex-direction: row;
  justify-content: flex-start;
  gap: 16px; }

.ManageTrainingAndEvent-filter .colum-filter {
  width: 18%;
  min-width: 100px; }

.ManageTrainingAndEvent-filter .interviewType-filter {
  width: 140px !important; }

.Recruitment-offer .table-SpecializationCode {
  border-radius: 4px;
  overflow: hidden; }

.Recruitment-offer .table-SpecializationCode thead {
  color: white;
  background-color: #005e9e;
  border-radius: 4px; }

.Recruitment-offer .table-SpecializationCode thead th {
  padding: 1rem 1rem !important;
  vertical-align: baseline; }

.Recruitment-offer .show-more-less-clickable {
  color: #2196F3; }

.own-datetime_date {
  border: #ccc 1px solid !important;
  border: 1px solid #7f7f7f;
  border-radius: 4px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 7px 12px !important; }
  @media (max-width: 576px) {
    .own-datetime_date {
      margin-top: 8px; } }
  .own-datetime_date .datetime input {
    width: 100%;
    padding: 0 !important;
    line-height: 20px; }
  .own-datetime_date .datetime .date,
  .own-datetime_date .datetime .time {
    margin-top: -7px;
    margin-bottom: -7px;
    display: flex; }
  .own-datetime_date .datetime .time {
    width: 90px; }
  .own-datetime_date img {
    width: 20px;
    height: 20px; }
  .own-datetime_date + .react-calendar {
    position: absolute;
    top: 36px;
    min-width: 300px;
    z-index: 1; }

@media (max-width: 576px) {
  .ManageTrainingAndEvent-filter .col-lg-4 {
    max-width: 100% !important; }
  .ManageTrainingAndEvent-filter .class-row-filter {
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px; }
  .ManageTrainingAndEvent-filter .colum-filter {
    width: 100%;
    min-width: 100px; }
  .ManageTrainingAndEvent-filter .interviewType-filter {
    width: 100% !important; }
  .ManageTrainingAndEvent-filter .combo-control {
    padding-left: 22px;
    padding-right: 22px; }
  .ManageTrainingAndEvent-filter .btn-search {
    width: 100%;
    margin-bottom: 25px; } }
.CreateEvent .custom-single-date-picker .SingleDatePicker_1 {
  width: 100%;
  height: 33px; }

.CreateEvent .custom-single-date-picker .SingleDatePicker > :first-child {
  padding-right: 10px;
  width: 100%; }

.CreateEvent .input-group-append input {
  height: 26px; }

.CreateEvent .time-body {
  width: 100%;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px !important;
  height: 33px; }
  .CreateEvent .time-body .time-input {
    width: 100%;
    line-height: 27px;
    /* overflow: hidden; */
    /* padding: 1px; */
    margin-top: 2px; }
  .CreateEvent .time-body .event-clock-icon {
    position: absolute;
    right: 23px;
    top: 27px; }
.CreateEvent .custom-single-date-picker .SingleDatePicker_1 {
  width: 100%;
  height: 33px; }

.CreateEvent .custom-single-date-picker .SingleDatePicker > :first-child {
  padding-right: 10px;
  width: 100%; }

.CreateEvent .input-group-append input {
  height: 26px; }
.ManageTrainingAndEvent-filter .DateRangePickerInput {
  width: 295px !important;
  height: 33px; }

.ManageTrainingAndEvent-filter .search-filter {
  background-color: #fff;
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px;
  width: 100%;
  height: 33px; }

.ManageTrainingAndEvent-filter .col-lg-4 {
  max-width: 31.33333% !important; }

.ManageTrainingAndEvent-filter .btn-search {
  height: 32px; }

.ManageTrainingAndEvent-filter .number-rating {
  width: 68px;
  height: 68px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 66px;
  border: 1px solid #f7941d;
  border-radius: 50%;
  /* left: 350px; */
  /* top: 176px; */
  text-align: center;
  color: #f7941d; }

.ManageTrainingAndEvent-filter .date-total {
  gap: 24px;
  flex-direction: row;
  align-items: center; }

.ManageTrainingAndEvent-filter .class-row-filter {
  flex-direction: row;
  justify-content: flex-start;
  gap: 16px; }

.ManageTrainingAndEvent-filter .colum-filter {
  width: 18%;
  min-width: 100px; }

.ManageTrainingAndEvent-filter .interviewType-filter {
  width: 140px !important; }

.Recruitment-offer .table-SpecializationCode {
  border-radius: 4px;
  overflow: hidden; }

.Recruitment-offer .table-SpecializationCode thead {
  color: white;
  background-color: #005e9e;
  border-radius: 4px; }

.Recruitment-offer .table-SpecializationCode thead th {
  padding: 1rem 1rem !important;
  vertical-align: baseline; }

.Recruitment-offer .show-more-less-clickable {
  color: #2196F3; }

.own-datetime_date {
  border: #ccc 1px solid !important;
  border: 1px solid #7f7f7f;
  border-radius: 4px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 7px 12px !important; }
  @media (max-width: 576px) {
    .own-datetime_date {
      margin-top: 8px; } }
  .own-datetime_date .datetime input {
    width: 100%;
    padding: 0 !important;
    line-height: 20px; }
  .own-datetime_date .datetime .date,
  .own-datetime_date .datetime .time {
    margin-top: -7px;
    margin-bottom: -7px;
    display: flex; }
  .own-datetime_date .datetime .time {
    width: 90px; }
  .own-datetime_date img {
    width: 20px;
    height: 20px; }
  .own-datetime_date + .react-calendar {
    position: absolute;
    top: 36px;
    min-width: 300px;
    z-index: 1; }

@media (max-width: 576px) {
  .ManageTrainingAndEvent-filter .col-lg-4 {
    max-width: 100% !important; }
  .ManageTrainingAndEvent-filter .class-row-filter {
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px; }
  .ManageTrainingAndEvent-filter .colum-filter {
    width: 100%;
    min-width: 100px; }
  .ManageTrainingAndEvent-filter .interviewType-filter {
    width: 100% !important; }
  .ManageTrainingAndEvent-filter .combo-control {
    padding-left: 22px;
    padding-right: 22px; }
  .ManageTrainingAndEvent-filter .btn-search {
    width: 100%;
    margin-bottom: 25px; } }
.CreateEvent .custom-single-date-picker .SingleDatePicker_1 {
  width: 100%;
  height: 33px; }

.CreateEvent .custom-single-date-picker .SingleDatePicker > :first-child {
  padding-right: 10px;
  width: 100%; }

.CreateEvent .input-group-append input {
  height: 26px; }

.CreateEvent .time-body {
  width: 100%;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px !important;
  height: 33px; }
  .CreateEvent .time-body .time-input {
    width: 100%;
    line-height: 27px;
    /* overflow: hidden; */
    /* padding: 1px; */
    margin-top: 2px; }
  .CreateEvent .time-body .event-clock-icon {
    position: absolute;
    right: 23px;
    top: 27px; }
.CreateEvent .custom-single-date-picker .SingleDatePicker_1 {
  width: 100%;
  height: 33px; }

.CreateEvent .custom-single-date-picker .SingleDatePicker > :first-child {
  padding-right: 10px;
  width: 100%; }

.CreateEvent .input-group-append input {
  height: 26px; }
.modal-detail-list .search-filter {
  background-color: #fff;
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px;
  width: 100%;
  height: 33px; }

@media (max-width: 576px) {
  .CheckInListRegisterEvent .modal-content {
    width: 600px;
    max-width: 100%;
    margin: auto; }
  .CheckInListRegisterEvent .btn-CheckInListRegisterEvent {
    font-size: 9px; }
  .CheckInListRegisterEvent input {
    width: 100% !important; }
  .CheckInListRegisterEvent .btn-search {
    width: 100%; } }
.ManageTrainingAndEvent-filter .DateRangePickerInput {
  width: 295px !important;
  height: 33px; }

.ManageTrainingAndEvent-filter .search-filter {
  background-color: #fff;
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px;
  width: 100%;
  height: 33px; }

.ManageTrainingAndEvent-filter .col-lg-4 {
  max-width: 31.33333% !important; }

.ManageTrainingAndEvent-filter .btn-search {
  height: 32px; }

.ManageTrainingAndEvent-filter .number-rating {
  width: 68px;
  height: 68px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 66px;
  border: 1px solid #f7941d;
  border-radius: 50%;
  /* left: 350px; */
  /* top: 176px; */
  text-align: center;
  color: #f7941d; }

.ManageTrainingAndEvent-filter .date-total {
  gap: 24px;
  flex-direction: row;
  align-items: center; }

.ManageTrainingAndEvent-filter .class-row-filter {
  flex-direction: row;
  justify-content: flex-start;
  gap: 16px; }

.ManageTrainingAndEvent-filter .colum-filter {
  width: 18%;
  min-width: 100px; }

.ManageTrainingAndEvent-filter .interviewType-filter {
  width: 140px !important; }

.Recruitment-offer .table-SpecializationCode {
  border-radius: 4px;
  overflow: hidden; }

.Recruitment-offer .table-SpecializationCode thead {
  color: white;
  background-color: #005e9e;
  border-radius: 4px; }

.Recruitment-offer .table-SpecializationCode thead th {
  padding: 1rem 1rem !important;
  vertical-align: baseline; }

.Recruitment-offer .show-more-less-clickable {
  color: #2196F3; }

.own-datetime_date {
  border: #ccc 1px solid !important;
  border: 1px solid #7f7f7f;
  border-radius: 4px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 7px 12px !important; }
  @media (max-width: 576px) {
    .own-datetime_date {
      margin-top: 8px; } }
  .own-datetime_date .datetime input {
    width: 100%;
    padding: 0 !important;
    line-height: 20px; }
  .own-datetime_date .datetime .date,
  .own-datetime_date .datetime .time {
    margin-top: -7px;
    margin-bottom: -7px;
    display: flex; }
  .own-datetime_date .datetime .time {
    width: 90px; }
  .own-datetime_date img {
    width: 20px;
    height: 20px; }
  .own-datetime_date + .react-calendar {
    position: absolute;
    top: 36px;
    min-width: 300px;
    z-index: 1; }

@media (max-width: 576px) {
  .ManageTrainingAndEvent-filter .col-lg-4 {
    max-width: 100% !important; }
  .ManageTrainingAndEvent-filter .class-row-filter {
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px; }
  .ManageTrainingAndEvent-filter .colum-filter {
    width: 100%;
    min-width: 100px; }
  .ManageTrainingAndEvent-filter .interviewType-filter {
    width: 100% !important; }
  .ManageTrainingAndEvent-filter .combo-control {
    padding-left: 22px;
    padding-right: 22px; }
  .ManageTrainingAndEvent-filter .btn-search {
    width: 100%;
    margin-bottom: 25px; } }
.CreateEvent .custom-single-date-picker .SingleDatePicker_1 {
  width: 100%;
  height: 33px; }

.CreateEvent .custom-single-date-picker .SingleDatePicker > :first-child {
  padding-right: 10px;
  width: 100%; }

.CreateEvent .input-group-append input {
  height: 26px; }

.CreateEvent .time-body {
  width: 100%;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px !important;
  height: 33px; }
  .CreateEvent .time-body .time-input {
    width: 100%;
    line-height: 27px;
    /* overflow: hidden; */
    /* padding: 1px; */
    margin-top: 2px; }
  .CreateEvent .time-body .event-clock-icon {
    position: absolute;
    right: 23px;
    top: 27px; }
.modal-detail-list .search-filter {
  background-color: #fff;
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px;
  width: 100%;
  height: 33px; }

@media (max-width: 576px) {
  .CheckInListRegisterEvent .modal-content {
    width: 600px;
    max-width: 100%;
    margin: auto; }
  .CheckInListRegisterEvent .btn-CheckInListRegisterEvent {
    font-size: 9px; }
  .CheckInListRegisterEvent input {
    width: 100% !important; }
  .CheckInListRegisterEvent .btn-search {
    width: 100%; } }
.contract-management .keywork-input .text-input {
  height: 34px !important; }

.contract-management .table th,
.contract-management .table td {
  border: 1px solid rgba(0, 0, 0, 0.12); }

.contract-management .table.table-hover thead tr:hover th {
  background-color: unset; }

.contract-management .table-hover tbody tr:hover td {
  background-color: rgba(0, 0, 0, 0.05); }

.contract-management .mobile-list .card + .card {
  margin-top: 2rem; }

.contract-management .unstyled-button {
  all: unset;
  cursor: pointer;
  padding: 2px;
  border-radius: 50%; }
  .contract-management .unstyled-button:hover {
    background-color: #eee; }

@media (min-width: 1366px) {
  .contract-management .col-xxl {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 1rem; } }

@media (min-width: 1920px) {
  .contract-management .col-xxl {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    margin-top: unset; } }

.contract-management-modal .field-input .text-input {
  height: 34px !important; }

.contract-management-modal .field-input.number-input .text-input input {
  outline: none; }

.contract-management-modal .text-area {
  height: 34px !important; }

.contract-management-modal .rw-widget-input {
  box-shadow: unset; }

.contract-management-modal .rw-widget-container,
.contract-management-modal .date_container {
  border-color: rgba(0, 0, 0, 0.1); }

.contract-management-modal .terminated-message {
  background-color: #eee;
  border-radius: 8px; }
.ReportQLPK-filter .DateRangePickerInput {
  width: 295px !important;
  height: 33px; }

.ReportQLPK-filter .search-filter {
  background-color: #fff;
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px;
  width: 100%;
  height: 33px; }

.ReportQLPK-filter .col-lg-4 {
  max-width: 31.33333% !important; }

.ReportQLPK-filter .btn-search {
  height: 32px; }

.ReportQLPK-filter .number-rating {
  width: 68px;
  height: 68px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 66px;
  border: 1px solid #f7941d;
  border-radius: 50%;
  /* left: 350px; */
  /* top: 176px; */
  text-align: center;
  color: #f7941d; }

.ReportQLPK-filter .date-total {
  gap: 24px;
  flex-direction: row;
  align-items: center; }

.ReportQLPK-filter .class-row-filter {
  flex-direction: row;
  justify-content: flex-end;
  gap: 16px; }

.ReportQLPK-filter .colum-filter {
  width: 18%;
  min-width: 100px; }

.ReportQLPK-filter .interviewType-filter {
  width: 140px !important; }

.Recruitment-offer .table-SpecializationCode {
  border-radius: 4px;
  overflow: hidden; }

.Recruitment-offer .table-SpecializationCode thead {
  color: white;
  background-color: #005e9e;
  border-radius: 4px; }

.Recruitment-offer .table-SpecializationCode thead th {
  padding: 1rem 1rem !important;
  vertical-align: baseline; }

.Recruitment-offer .show-more-less-clickable {
  color: #2196F3; }

.own-datetime_date {
  border: #ccc 1px solid !important;
  border: 1px solid #7f7f7f;
  border-radius: 4px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 7px 12px !important; }
  @media (max-width: 576px) {
    .own-datetime_date {
      margin-top: 8px; } }
  .own-datetime_date .datetime input {
    width: 100%;
    padding: 0 !important;
    line-height: 20px; }
  .own-datetime_date .datetime .date,
  .own-datetime_date .datetime .time {
    margin-top: -7px;
    margin-bottom: -7px;
    display: flex; }
  .own-datetime_date .datetime .time {
    width: 90px; }
  .own-datetime_date img {
    width: 20px;
    height: 20px; }
  .own-datetime_date + .react-calendar {
    position: absolute;
    top: 36px;
    min-width: 300px;
    z-index: 1; }

@media (max-width: 576px) {
  .ReportQLPK-filter .col-lg-4 {
    max-width: 100% !important; }
  .ReportQLPK-filter .class-row-filter {
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px; }
  .ReportQLPK-filter .colum-filter {
    width: 100%;
    min-width: 100px; }
  .ReportQLPK-filter .interviewType-filter {
    width: 100% !important; }
  .ReportQLPK-filter .combo-control {
    padding-left: 22px;
    padding-right: 22px; }
  .ReportQLPK-filter .btn-search {
    width: 100%;
    margin-bottom: 25px; } }
.modal-detail-list .search-filter {
  background-color: #fff;
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px;
  width: 100%;
  height: 33px; }

@media (max-width: 576px) {
  .CheckInListRegisterEvent .modal-content {
    width: 600px;
    max-width: 100%;
    margin: auto; }
  .CheckInListRegisterEvent .btn-CheckInListRegisterEvent {
    font-size: 9px; }
  .CheckInListRegisterEvent input {
    width: 100% !important; }
  .CheckInListRegisterEvent .btn-search {
    width: 100%; } }
.ReportQLPK-filter .DateRangePickerInput {
  width: 295px !important;
  height: 33px; }

.ReportQLPK-filter .search-filter {
  background-color: #fff;
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px;
  width: 100%;
  height: 33px; }

.ReportQLPK-filter .col-lg-4 {
  max-width: 31.33333% !important; }

.ReportQLPK-filter .btn-search {
  height: 32px; }

.ReportQLPK-filter .number-rating {
  width: 68px;
  height: 68px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 66px;
  border: 1px solid #f7941d;
  border-radius: 50%;
  /* left: 350px; */
  /* top: 176px; */
  text-align: center;
  color: #f7941d; }

.ReportQLPK-filter .date-total {
  gap: 24px;
  flex-direction: row;
  align-items: center; }

.ReportQLPK-filter .class-row-filter {
  flex-direction: row;
  justify-content: flex-end;
  gap: 16px; }

.ReportQLPK-filter .colum-filter {
  width: 18%;
  min-width: 100px; }

.ReportQLPK-filter .interviewType-filter {
  width: 140px !important; }

.Recruitment-offer .table-SpecializationCode {
  border-radius: 4px;
  overflow: hidden; }

.Recruitment-offer .table-SpecializationCode thead {
  color: white;
  background-color: #005e9e;
  border-radius: 4px; }

.Recruitment-offer .table-SpecializationCode thead th {
  padding: 1rem 1rem !important;
  vertical-align: baseline; }

.Recruitment-offer .show-more-less-clickable {
  color: #2196F3; }

.own-datetime_date {
  border: #ccc 1px solid !important;
  border: 1px solid #7f7f7f;
  border-radius: 4px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 7px 12px !important; }
  @media (max-width: 576px) {
    .own-datetime_date {
      margin-top: 8px; } }
  .own-datetime_date .datetime input {
    width: 100%;
    padding: 0 !important;
    line-height: 20px; }
  .own-datetime_date .datetime .date,
  .own-datetime_date .datetime .time {
    margin-top: -7px;
    margin-bottom: -7px;
    display: flex; }
  .own-datetime_date .datetime .time {
    width: 90px; }
  .own-datetime_date img {
    width: 20px;
    height: 20px; }
  .own-datetime_date + .react-calendar {
    position: absolute;
    top: 36px;
    min-width: 300px;
    z-index: 1; }

@media (max-width: 576px) {
  .ReportQLPK-filter .col-lg-4 {
    max-width: 100% !important; }
  .ReportQLPK-filter .class-row-filter {
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px; }
  .ReportQLPK-filter .colum-filter {
    width: 100%;
    min-width: 100px; }
  .ReportQLPK-filter .interviewType-filter {
    width: 100% !important; }
  .ReportQLPK-filter .combo-control {
    padding-left: 22px;
    padding-right: 22px; }
  .ReportQLPK-filter .btn-search {
    width: 100%;
    margin-bottom: 25px; } }
.modal-detail-list .search-filter {
  background-color: #fff;
  border-color: #e6e6e6;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 4px;
  width: 100%;
  height: 33px; }

@media (max-width: 576px) {
  .CheckInListRegisterEvent .modal-content {
    width: 600px;
    max-width: 100%;
    margin: auto; }
  .CheckInListRegisterEvent .btn-CheckInListRegisterEvent {
    font-size: 9px; }
  .CheckInListRegisterEvent input {
    width: 100% !important; }
  .CheckInListRegisterEvent .btn-search {
    width: 100%; } }
.outside-access-report .card .card-header {
  min-height: unset; }
