.text-primary-gradient {
  background: linear-gradient(to bottom right, #0011cc, #808aff);
  background-color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-primary-gradient-light {
  background: linear-gradient(to bottom right, rgba(0, 17, 204, 0.8), rgba(128, 138, 255, 0.8));
  background-color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-secondary-gradient {
  background: linear-gradient(to bottom right, #05cc00, #83ff80);
  background-color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-secondary-gradient-light {
  background: linear-gradient(to bottom right, rgba(5, 204, 0, 0.8), rgba(131, 255, 128, 0.8));
  background-color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-tertiary-gradient {
  background: linear-gradient(to bottom right, #ee3e0d, #fbc2b3);
  background-color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-tertiary-gradient-light {
  background: linear-gradient(to bottom right, rgba(238, 62, 13, 0.8), rgba(251, 194, 179, 0.8));
  background-color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-primary-gradient {
  background: linear-gradient(to bottom right, #0011cc, #808aff);
  border: none !important;
}
.bg-secondary-gradient {
  background: linear-gradient(to bottom right, #05cc00, #83ff80);
  border: none !important;
}
.bg-tertiary-gradient {
  background: linear-gradient(to bottom right, #ee3e0d, #fbc2b3);
  border: none !important;
}
.bg-primary-secondary-gradient {
  background: linear-gradient(to bottom right, rgba(0, 21, 255, 0.7), rgba(6, 255, 0, 0.7));
  border: none !important;
}
.btn.bg-primary-gradient:disabled,
.btn.bg-primary-gradient.disabled {
  color: #d8d8d8 !important;
  background: linear-gradient(to bottom right, #5f69da, #acb2f8) !important;
  opacity: 1;
}
.btn.bg-secondary-gradient:disabled,
.btn.bg-secondary-gradient.disabled {
  color: #d8d8d8 !important;
  background: linear-gradient(to bottom right, #62da5f, #aef8ac) !important;
  opacity: 1;
}
.btn.bg-tertiary-gradient:disabled,
.btn.bg-tertiary-gradient.disabled {
  color: #d8d8d8 !important;
  background: linear-gradient(to bottom right, #ee8467, #f6d4ca) !important;
  opacity: 1;
}
.bg-primary-faded {
  background-color: #d9dcff;
}
.bg-secondary-faded {
  background-color: #daffd9;
}
.bg-tertiary-faded {
  background-color: #fde7e1;
}
.bg-info-faded {
  background-color: #dfe2e5;
}
.bg-green,
.badge-green {
  background-color: #009600 !important;
}
.border-green {
  border-color: #009600 !important;
}
.text-green {
  color: #009600 !important;
}
.btn-green {
  background-color: #009600;
  border-color: #009600;
}
.btn-green:not(:disabled):not(.disabled):hover,
.btn-green:not(:disabled):not(.disabled):active,
.btn-green:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #006300;
  border-color: #006300;
}
.btn-green.disabled,
.btn-green:disabled {
  background-color: #80cb80;
  border-color: #80cb80;
  opacity: inherit;
}
.btn-outline-green {
  color: #009600;
  border-color: #009600;
}
.btn-outline-green:not(:disabled):not(.disabled):hover,
.btn-outline-green:not(:disabled):not(.disabled):active,
.btn-outline-green:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #009600;
  border-color: #009600;
}
.btn-outline-green.disabled,
.btn-outline-green:disabled {
  color: #80cb80;
  border-color: #80cb80;
  opacity: inherit;
}
.alert-green {
  color: #000000;
  background-color: #b3e0b3;
  border-color: #99d599;
}
.list-group-item-green {
  color: #002d00;
  background-color: #b3e0b3;
}
.list-group-item-green.list-group-item-action:hover,
.list-group-item-green.list-group-item-action:focus {
  color: #002d00;
  background-color: #66c066;
}
.list-group-item-green.list-group-item-action.active {
  color: #fff;
  background-color: #007100;
  border-color: #007100;
}
.custom-control-input:checked ~ .custom-control-label-green::before {
  border-color: #8cd08c;
  background-color: #009600;
}
.bg-red,
.badge-red {
  background-color: red !important;
}
.border-red {
  border-color: red !important;
}
.text-red {
  color: red !important;
}
.btn-red {
  background-color: red;
  border-color: red;
}
.btn-red:not(:disabled):not(.disabled):hover,
.btn-red:not(:disabled):not(.disabled):active,
.btn-red:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #cc0000;
  border-color: #cc0000;
}
.btn-red.disabled,
.btn-red:disabled {
  background-color: #ff8080;
  border-color: #ff8080;
  opacity: inherit;
}
.btn-outline-red {
  color: red;
  border-color: red;
}
.btn-outline-red:not(:disabled):not(.disabled):hover,
.btn-outline-red:not(:disabled):not(.disabled):active,
.btn-outline-red:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: red;
  border-color: red;
}
.btn-outline-red.disabled,
.btn-outline-red:disabled {
  color: #ff8080;
  border-color: #ff8080;
  opacity: inherit;
}
.alert-red {
  color: #660000;
  background-color: #ffb3b3;
  border-color: #ff9999;
}
.list-group-item-red {
  color: #4d0000;
  background-color: #ffb3b3;
}
.list-group-item-red.list-group-item-action:hover,
.list-group-item-red.list-group-item-action:focus {
  color: #4d0000;
  background-color: #ff6666;
}
.list-group-item-red.list-group-item-action.active {
  color: #fff;
  background-color: #bf0000;
  border-color: #bf0000;
}
.custom-control-input:checked ~ .custom-control-label-red::before {
  border-color: #ff8c8c;
  background-color: red;
}
.bg-primary,
.badge-primary {
  background-color: #0015ff !important;
}
.border-primary {
  border-color: #0015ff !important;
}
.text-primary {
  color: #0015ff !important;
}
.btn-primary {
  background-color: #0015ff;
  border-color: #0015ff;
}
.btn-primary:not(:disabled):not(.disabled):hover,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #0011cc;
  border-color: #0011cc;
}
.btn-primary.disabled,
.btn-primary:disabled {
  background-color: #808aff;
  border-color: #808aff;
  opacity: inherit;
}
.btn-outline-primary {
  color: #0015ff;
  border-color: #0015ff;
}
.btn-outline-primary:not(:disabled):not(.disabled):hover,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #0015ff;
  border-color: #0015ff;
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #808aff;
  border-color: #808aff;
  opacity: inherit;
}
.alert-primary {
  color: #000866;
  background-color: #b3b9ff;
  border-color: #99a1ff;
}
.list-group-item-primary {
  color: #00064d;
  background-color: #b3b9ff;
}
.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #00064d;
  background-color: #6673ff;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #0010bf;
  border-color: #0010bf;
}
.custom-control-input:checked ~ .custom-control-label-primary::before {
  border-color: #8c96ff;
  background-color: #0015ff;
}
.bg-secondary,
.badge-secondary {
  background-color: #06ff00 !important;
}
.border-secondary {
  border-color: #06ff00 !important;
}
.text-secondary {
  color: #06ff00 !important;
}
.btn-secondary {
  background-color: #06ff00;
  border-color: #06ff00;
}
.btn-secondary:not(:disabled):not(.disabled):hover,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #05cc00;
  border-color: #05cc00;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  background-color: #83ff80;
  border-color: #83ff80;
  opacity: inherit;
}
.btn-outline-secondary {
  color: #06ff00;
  border-color: #06ff00;
}
.btn-outline-secondary:not(:disabled):not(.disabled):hover,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #06ff00;
  border-color: #06ff00;
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #83ff80;
  border-color: #83ff80;
  opacity: inherit;
}
.alert-secondary {
  color: #026600;
  background-color: #b4ffb3;
  border-color: #9bff99;
}
.list-group-item-secondary {
  color: #024d00;
  background-color: #b4ffb3;
}
.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #024d00;
  background-color: #6aff66;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #05bf00;
  border-color: #05bf00;
}
.custom-control-input:checked ~ .custom-control-label-secondary::before {
  border-color: #8fff8c;
  background-color: #06ff00;
}
.bg-tertiary,
.badge-tertiary {
  background-color: #f4623a !important;
}
.border-tertiary {
  border-color: #f4623a !important;
}
.text-tertiary {
  color: #f4623a !important;
}
.btn-tertiary {
  background-color: #f4623a;
  border-color: #f4623a;
}
.btn-tertiary:not(:disabled):not(.disabled):hover,
.btn-tertiary:not(:disabled):not(.disabled):active,
.btn-tertiary:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #ee3e0d;
  border-color: #ee3e0d;
}
.btn-tertiary.disabled,
.btn-tertiary:disabled {
  background-color: #fab19d;
  border-color: #fab19d;
  opacity: inherit;
}
.btn-outline-tertiary {
  color: #f4623a;
  border-color: #f4623a;
}
.btn-outline-tertiary:not(:disabled):not(.disabled):hover,
.btn-outline-tertiary:not(:disabled):not(.disabled):active,
.btn-outline-tertiary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #f4623a;
  border-color: #f4623a;
}
.btn-outline-tertiary.disabled,
.btn-outline-tertiary:disabled {
  color: #fab19d;
  border-color: #fab19d;
  opacity: inherit;
}
.alert-tertiary {
  color: #8d2508;
  background-color: #fcd0c4;
  border-color: #fbc0b0;
}
.list-group-item-tertiary {
  color: #491d11;
  background-color: #fcd0c4;
}
.list-group-item-tertiary.list-group-item-action:hover,
.list-group-item-tertiary.list-group-item-action:focus {
  color: #491d11;
  background-color: #f8a189;
}
.list-group-item-tertiary.list-group-item-action.active {
  color: #fff;
  background-color: #b74a2c;
  border-color: #b74a2c;
}
.custom-control-input:checked ~ .custom-control-label-tertiary::before {
  border-color: #fab8a6;
  background-color: #f4623a;
}
.bg-info,
.badge-info {
  background-color: #283c50 !important;
}
.border-info {
  border-color: #283c50 !important;
}
.text-info {
  color: #283c50 !important;
}
.btn-info {
  background-color: #283c50;
  border-color: #283c50;
}
.btn-info:not(:disabled):not(.disabled):hover,
.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #17222e;
  border-color: #17222e;
}
.btn-info.disabled,
.btn-info:disabled {
  background-color: #949ea8;
  border-color: #949ea8;
  opacity: inherit;
}
.btn-outline-info {
  color: #283c50;
  border-color: #283c50;
}
.btn-outline-info:not(:disabled):not(.disabled):hover,
.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #283c50;
  border-color: #283c50;
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #949ea8;
  border-color: #949ea8;
  opacity: inherit;
}
.alert-info {
  color: #000000;
  background-color: #bfc5cb;
  border-color: #a9b1b9;
}
.list-group-item-info {
  color: #0c1218;
  background-color: #bfc5cb;
}
.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #0c1218;
  background-color: #7e8a96;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #1e2d3c;
  border-color: #1e2d3c;
}
.custom-control-input:checked ~ .custom-control-label-info::before {
  border-color: #9ea7b0;
  background-color: #283c50;
}
.bg-success,
.badge-success {
  background-color: #009600 !important;
}
.border-success {
  border-color: #009600 !important;
}
.text-success {
  color: #009600 !important;
}
.btn-success {
  background-color: #009600;
  border-color: #009600;
}
.btn-success:not(:disabled):not(.disabled):hover,
.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #006300;
  border-color: #006300;
}
.btn-success.disabled,
.btn-success:disabled {
  background-color: #80cb80;
  border-color: #80cb80;
  opacity: inherit;
}
.btn-outline-success {
  color: #009600;
  border-color: #009600;
}
.btn-outline-success:not(:disabled):not(.disabled):hover,
.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #009600;
  border-color: #009600;
}
.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #80cb80;
  border-color: #80cb80;
  opacity: inherit;
}
.alert-success {
  color: #000000;
  background-color: #b3e0b3;
  border-color: #99d599;
}
.list-group-item-success {
  color: #002d00;
  background-color: #b3e0b3;
}
.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #002d00;
  background-color: #66c066;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #007100;
  border-color: #007100;
}
.custom-control-input:checked ~ .custom-control-label-success::before {
  border-color: #8cd08c;
  background-color: #009600;
}
.bg-warning,
.badge-warning {
  background-color: #ffc107 !important;
}
.border-warning {
  border-color: #ffc107 !important;
}
.text-warning {
  color: #ffc107 !important;
}
.btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):hover,
.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #d39e00;
  border-color: #d39e00;
}
.btn-warning.disabled,
.btn-warning:disabled {
  background-color: #ffe083;
  border-color: #ffe083;
  opacity: inherit;
}
.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):hover,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffe083;
  border-color: #ffe083;
  opacity: inherit;
}
.alert-warning {
  color: #6d5200;
  background-color: #ffecb5;
  border-color: #ffe69c;
}
.list-group-item-warning {
  color: #4d3a02;
  background-color: #ffecb5;
}
.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #4d3a02;
  background-color: #ffda6a;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #bf9105;
  border-color: #bf9105;
}
.custom-control-input:checked ~ .custom-control-label-warning::before {
  border-color: #ffe38f;
  background-color: #ffc107;
}
.bg-danger,
.badge-danger {
  background-color: red !important;
}
.border-danger {
  border-color: red !important;
}
.text-danger {
  color: red !important;
}
.btn-danger {
  background-color: red;
  border-color: red;
}
.btn-danger:not(:disabled):not(.disabled):hover,
.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #cc0000;
  border-color: #cc0000;
}
.btn-danger.disabled,
.btn-danger:disabled {
  background-color: #ff8080;
  border-color: #ff8080;
  opacity: inherit;
}
.btn-outline-danger {
  color: red;
  border-color: red;
}
.btn-outline-danger:not(:disabled):not(.disabled):hover,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: red;
  border-color: red;
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #ff8080;
  border-color: #ff8080;
  opacity: inherit;
}
.alert-danger {
  color: #660000;
  background-color: #ffb3b3;
  border-color: #ff9999;
}
.list-group-item-danger {
  color: #4d0000;
  background-color: #ffb3b3;
}
.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #4d0000;
  background-color: #ff6666;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #bf0000;
  border-color: #bf0000;
}
.custom-control-input:checked ~ .custom-control-label-danger::before {
  border-color: #ff8c8c;
  background-color: red;
}
.bg-light,
.badge-light {
  background-color: #eeeeee !important;
}
.border-light {
  border-color: #eeeeee !important;
}
.text-light {
  color: #eeeeee !important;
}
.btn-light {
  background-color: #eeeeee;
  border-color: #eeeeee;
}
.btn-light:not(:disabled):not(.disabled):hover,
.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #d5d5d5;
  border-color: #d5d5d5;
}
.btn-light.disabled,
.btn-light:disabled {
  background-color: #f7f7f7;
  border-color: #f7f7f7;
  opacity: inherit;
}
.btn-outline-light {
  color: #eeeeee;
  border-color: #eeeeee;
}
.btn-outline-light:not(:disabled):not(.disabled):hover,
.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #eeeeee;
  border-color: #eeeeee;
}
.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f7f7f7;
  border-color: #f7f7f7;
  opacity: inherit;
}
.alert-light {
  color: #a2a2a2;
  background-color: #fafafa;
  border-color: #f8f8f8;
}
.list-group-item-light {
  color: #474747;
  background-color: #fafafa;
}
.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #474747;
  background-color: #f5f5f5;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #b3b3b3;
  border-color: #b3b3b3;
}
.custom-control-input:checked ~ .custom-control-label-light::before {
  border-color: #f7f7f7;
  background-color: #eeeeee;
}
.bg-dark,
.badge-dark {
  background-color: #343a40 !important;
}
.border-dark {
  border-color: #343a40 !important;
}
.text-dark {
  color: #343a40 !important;
}
.btn-dark {
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):hover,
.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #1d2124;
  border-color: #1d2124;
}
.btn-dark.disabled,
.btn-dark:disabled {
  background-color: #9a9da0;
  border-color: #9a9da0;
  opacity: inherit;
}
.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):hover,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #9a9da0;
  border-color: #9a9da0;
  opacity: inherit;
}
.alert-dark {
  color: #000000;
  background-color: #c2c4c6;
  border-color: #aeb0b3;
}
.list-group-item-dark {
  color: #101113;
  background-color: #c2c4c6;
}
.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #101113;
  background-color: #85898c;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #272c30;
  border-color: #272c30;
}
.custom-control-input:checked ~ .custom-control-label-dark::before {
  border-color: #a4a6a9;
  background-color: #343a40;
}
.bg-primary_light,
.badge-primary_light {
  background-color: #808aff !important;
}
.border-primary_light {
  border-color: #808aff !important;
}
.text-primary_light {
  color: #808aff !important;
}
.btn-primary_light {
  background-color: #808aff;
  border-color: #808aff;
}
.btn-primary_light:not(:disabled):not(.disabled):hover,
.btn-primary_light:not(:disabled):not(.disabled):active,
.btn-primary_light:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #4d5bff;
  border-color: #4d5bff;
}
.btn-primary_light.disabled,
.btn-primary_light:disabled {
  background-color: #bfc5ff;
  border-color: #bfc5ff;
  opacity: inherit;
}
.btn-outline-primary_light {
  color: #808aff;
  border-color: #808aff;
}
.btn-outline-primary_light:not(:disabled):not(.disabled):hover,
.btn-outline-primary_light:not(:disabled):not(.disabled):active,
.btn-outline-primary_light:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #808aff;
  border-color: #808aff;
}
.btn-outline-primary_light.disabled,
.btn-outline-primary_light:disabled {
  color: #bfc5ff;
  border-color: #bfc5ff;
  opacity: inherit;
}
.alert-primary_light {
  color: #0013e6;
  background-color: #d9dcff;
  border-color: #ccd0ff;
}
.list-group-item-primary_light {
  color: #26294d;
  background-color: #d9dcff;
}
.list-group-item-primary_light.list-group-item-action:hover,
.list-group-item-primary_light.list-group-item-action:focus {
  color: #26294d;
  background-color: #b3b9ff;
}
.list-group-item-primary_light.list-group-item-action.active {
  color: #fff;
  background-color: #6067bf;
  border-color: #6067bf;
}
.custom-control-input:checked ~ .custom-control-label-primary_light::before {
  border-color: #c6caff;
  background-color: #808aff;
}
.bg-primary_dark,
.badge-primary_dark {
  background-color: #0011cc !important;
}
.border-primary_dark {
  border-color: #0011cc !important;
}
.text-primary_dark {
  color: #0011cc !important;
}
.btn-primary_dark {
  background-color: #0011cc;
  border-color: #0011cc;
}
.btn-primary_dark:not(:disabled):not(.disabled):hover,
.btn-primary_dark:not(:disabled):not(.disabled):active,
.btn-primary_dark:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #000d99;
  border-color: #000d99;
}
.btn-primary_dark.disabled,
.btn-primary_dark:disabled {
  background-color: #8088e6;
  border-color: #8088e6;
  opacity: inherit;
}
.btn-outline-primary_dark {
  color: #0011cc;
  border-color: #0011cc;
}
.btn-outline-primary_dark:not(:disabled):not(.disabled):hover,
.btn-outline-primary_dark:not(:disabled):not(.disabled):active,
.btn-outline-primary_dark:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #0011cc;
  border-color: #0011cc;
}
.btn-outline-primary_dark.disabled,
.btn-outline-primary_dark:disabled {
  color: #8088e6;
  border-color: #8088e6;
  opacity: inherit;
}
.alert-primary_dark {
  color: #000433;
  background-color: #b3b8f0;
  border-color: #99a0eb;
}
.list-group-item-primary_dark {
  color: #00053d;
  background-color: #b3b8f0;
}
.list-group-item-primary_dark.list-group-item-action:hover,
.list-group-item-primary_dark.list-group-item-action:focus {
  color: #00053d;
  background-color: #6670e0;
}
.list-group-item-primary_dark.list-group-item-action.active {
  color: #fff;
  background-color: #000d99;
  border-color: #000d99;
}
.custom-control-input:checked ~ .custom-control-label-primary_dark::before {
  border-color: #8c94e8;
  background-color: #0011cc;
}
.bg-secondary_light,
.badge-secondary_light {
  background-color: #83ff80 !important;
}
.border-secondary_light {
  border-color: #83ff80 !important;
}
.text-secondary_light {
  color: #83ff80 !important;
}
.btn-secondary_light {
  background-color: #83ff80;
  border-color: #83ff80;
}
.btn-secondary_light:not(:disabled):not(.disabled):hover,
.btn-secondary_light:not(:disabled):not(.disabled):active,
.btn-secondary_light:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #51ff4d;
  border-color: #51ff4d;
}
.btn-secondary_light.disabled,
.btn-secondary_light:disabled {
  background-color: #c1ffbf;
  border-color: #c1ffbf;
  opacity: inherit;
}
.btn-outline-secondary_light {
  color: #83ff80;
  border-color: #83ff80;
}
.btn-outline-secondary_light:not(:disabled):not(.disabled):hover,
.btn-outline-secondary_light:not(:disabled):not(.disabled):active,
.btn-outline-secondary_light:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #83ff80;
  border-color: #83ff80;
}
.btn-outline-secondary_light.disabled,
.btn-outline-secondary_light:disabled {
  color: #c1ffbf;
  border-color: #c1ffbf;
  opacity: inherit;
}
.alert-secondary_light {
  color: #05e600;
  background-color: #daffd9;
  border-color: #cdffcc;
}
.list-group-item-secondary_light {
  color: #274d26;
  background-color: #daffd9;
}
.list-group-item-secondary_light.list-group-item-action:hover,
.list-group-item-secondary_light.list-group-item-action:focus {
  color: #274d26;
  background-color: #b4ffb3;
}
.list-group-item-secondary_light.list-group-item-action.active {
  color: #fff;
  background-color: #62bf60;
  border-color: #62bf60;
}
.custom-control-input:checked ~ .custom-control-label-secondary_light::before {
  border-color: #c7ffc6;
  background-color: #83ff80;
}
.bg-secondary_dark,
.badge-secondary_dark {
  background-color: #05cc00 !important;
}
.border-secondary_dark {
  border-color: #05cc00 !important;
}
.text-secondary_dark {
  color: #05cc00 !important;
}
.btn-secondary_dark {
  background-color: #05cc00;
  border-color: #05cc00;
}
.btn-secondary_dark:not(:disabled):not(.disabled):hover,
.btn-secondary_dark:not(:disabled):not(.disabled):active,
.btn-secondary_dark:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #049900;
  border-color: #049900;
}
.btn-secondary_dark.disabled,
.btn-secondary_dark:disabled {
  background-color: #82e680;
  border-color: #82e680;
  opacity: inherit;
}
.btn-outline-secondary_dark {
  color: #05cc00;
  border-color: #05cc00;
}
.btn-outline-secondary_dark:not(:disabled):not(.disabled):hover,
.btn-outline-secondary_dark:not(:disabled):not(.disabled):active,
.btn-outline-secondary_dark:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #05cc00;
  border-color: #05cc00;
}
.btn-outline-secondary_dark.disabled,
.btn-outline-secondary_dark:disabled {
  color: #82e680;
  border-color: #82e680;
  opacity: inherit;
}
.alert-secondary_dark {
  color: #013300;
  background-color: #b4f0b3;
  border-color: #9beb99;
}
.list-group-item-secondary_dark {
  color: #013d00;
  background-color: #b4f0b3;
}
.list-group-item-secondary_dark.list-group-item-action:hover,
.list-group-item-secondary_dark.list-group-item-action:focus {
  color: #013d00;
  background-color: #69e066;
}
.list-group-item-secondary_dark.list-group-item-action.active {
  color: #fff;
  background-color: #049900;
  border-color: #049900;
}
.custom-control-input:checked ~ .custom-control-label-secondary_dark::before {
  border-color: #8ee88c;
  background-color: #05cc00;
}
.bg-tertiary_light,
.badge-tertiary_light {
  background-color: #fbc2b3 !important;
}
.border-tertiary_light {
  border-color: #fbc2b3 !important;
}
.text-tertiary_light {
  color: #fbc2b3 !important;
}
.btn-tertiary_light {
  background-color: #fbc2b3;
  border-color: #fbc2b3;
}
.btn-tertiary_light:not(:disabled):not(.disabled):hover,
.btn-tertiary_light:not(:disabled):not(.disabled):active,
.btn-tertiary_light:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #f89c82;
  border-color: #f89c82;
}
.btn-tertiary_light.disabled,
.btn-tertiary_light:disabled {
  background-color: #fde1d9;
  border-color: #fde1d9;
  opacity: inherit;
}
.btn-outline-tertiary_light {
  color: #fbc2b3;
  border-color: #fbc2b3;
}
.btn-outline-tertiary_light:not(:disabled):not(.disabled):hover,
.btn-outline-tertiary_light:not(:disabled):not(.disabled):active,
.btn-outline-tertiary_light:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #fbc2b3;
  border-color: #fbc2b3;
}
.btn-outline-tertiary_light.disabled,
.btn-outline-tertiary_light:disabled {
  color: #fde1d9;
  border-color: #fde1d9;
  opacity: inherit;
}
.alert-tertiary_light {
  color: #f34f22;
  background-color: #feede8;
  border-color: #fde7e1;
}
.list-group-item-tertiary_light {
  color: #4b3a36;
  background-color: #feede8;
}
.list-group-item-tertiary_light.list-group-item-action:hover,
.list-group-item-tertiary_light.list-group-item-action:focus {
  color: #4b3a36;
  background-color: #fcdbd1;
}
.list-group-item-tertiary_light.list-group-item-action.active {
  color: #fff;
  background-color: #bc9286;
  border-color: #bc9286;
}
.custom-control-input:checked ~ .custom-control-label-tertiary_light::before {
  border-color: #fde4dd;
  background-color: #fbc2b3;
}
.bg-tertiary_dark,
.badge-tertiary_dark {
  background-color: #ee3e0d !important;
}
.border-tertiary_dark {
  border-color: #ee3e0d !important;
}
.text-tertiary_dark {
  color: #ee3e0d !important;
}
.btn-tertiary_dark {
  background-color: #ee3e0d;
  border-color: #ee3e0d;
}
.btn-tertiary_dark:not(:disabled):not(.disabled):hover,
.btn-tertiary_dark:not(:disabled):not(.disabled):active,
.btn-tertiary_dark:not(:disabled):not(.disabled).active {
  background: none;
  background-color: #bd310b;
  border-color: #bd310b;
}
.btn-tertiary_dark.disabled,
.btn-tertiary_dark:disabled {
  background-color: #f69e86;
  border-color: #f69e86;
  opacity: inherit;
}
.btn-outline-tertiary_dark {
  color: #ee3e0d;
  border-color: #ee3e0d;
}
.btn-outline-tertiary_dark:not(:disabled):not(.disabled):hover,
.btn-outline-tertiary_dark:not(:disabled):not(.disabled):active,
.btn-outline-tertiary_dark:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #ee3e0d;
  border-color: #ee3e0d;
}
.btn-outline-tertiary_dark.disabled,
.btn-outline-tertiary_dark:disabled {
  color: #f69e86;
  border-color: #f69e86;
  opacity: inherit;
}
.alert-tertiary_dark {
  color: #5d1805;
  background-color: #fac5b6;
  border-color: #f8b29e;
}
.list-group-item-tertiary_dark {
  color: #471204;
  background-color: #fac5b6;
}
.list-group-item-tertiary_dark.list-group-item-action:hover,
.list-group-item-tertiary_dark.list-group-item-action:focus {
  color: #471204;
  background-color: #f58b6e;
}
.list-group-item-tertiary_dark.list-group-item-action.active {
  color: #fff;
  background-color: #b22e0a;
  border-color: #b22e0a;
}
.custom-control-input:checked ~ .custom-control-label-tertiary_dark::before {
  border-color: #f7a892;
  background-color: #ee3e0d;
}
a {
  color: #0015ff;
}
a:hover {
  color: #0011cc;
}
:focus,
.focus {
  outline: none !important;
  box-shadow: none !important;
}
.btn.disabled,
.btn:disabled {
  color: #b1b1b1 !important;
  background-color: transparent;
  opacity: inherit;
}
.list-group-item.active {
  background-color: #0015ff;
  border-color: #0015ff;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #dcdcdc;
}
select {
  cursor: pointer;
}
.table .thead-light th {
  color: #212529;
  background-color: #cfcfcf;
  border-color: #cfcfcf;
}
.btn-transparent {
  background-color: transparent;
  border: transparent;
}
.text-transparent {
  color: transparent;
}
.border-transparent {
  border-color: transparent !important;
}
.btn-none {
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
  vertical-align: inherit;
  color: inherit;
  background-color: transparent;
  padding: 0;
  box-shadow: none !important;
  border: 0;
}
.btn-group-toggle .btn-none.active,
.btn-group-toggle .btn-none:active {
  background: linear-gradient(to bottom right, #0011cc, #808aff);
  border: none !important;
  color: white;
}
.btn-inline {
  border-radius: 0;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 1.1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: inline-flex;
  align-items: center;
}
.btn-inline:focus,
.btn-inline.focus,
.btn-none:focus,
.btn-none.focus {
  box-shadow: none !important;
}
.btn-input-group {
  color: #495057;
  border: 1px solid #ced4da;
  background-color: #e9ecef;
}
.btn-input-group:hover,
.input-group .btn-group-toggle .btn:hover {
  color: #495057;
  background-color: #ced4da !important;
}
.input-group .btn-group-toggle {
  margin-left: 0;
  flex: 1 1 auto;
}
.input-group .btn-group-toggle label {
  flex: 1 1 auto;
}
.input-group .btn-group-toggle .btn {
  border: 1px solid #ced4da;
  color: #495057;
}
.input-group .btn-group-toggle .btn.active,
.input-group .btn-group-toggle .btn:active {
  color: #495057;
  background-color: #e9ecef;
}
.shine-primary,
.shine-primary:focus {
  box-shadow: 0 0 7px 0 #0015ff !important;
}
.shine-secondary,
.shine-secondary:focus {
  box-shadow: 0 0 7px 0 #06ff00 !important;
}
.shine-tertiary,
.shine-tertiary:focus {
  box-shadow: 0 0 7px 0 #f4623a !important;
}
.fixed-width {
  width: 191px;
}
.fixed-small-width {
  width: 140px;
}
.fixed-large-width {
  width: 250px;
}
.variable-width {
  width: inherit;
}
@media (min-width: 576px) {
  .fixed-width-sm {
    width: 191px;
  }
  .fixed-small-width-sm {
    width: 140px;
  }
  .fixed-large-width-sm {
    width: 250px;
  }
  .variable-width-sm {
    width: inherit;
  }
}
@media (min-width: 768px) {
  .fixed-width-md {
    width: 191px;
  }
  .fixed-small-width-md {
    width: 140px;
  }
  .fixed-large-width-md {
    width: 250px;
  }
  .variable-width-md {
    width: inherit;
  }
}
@media (min-width: 992px) {
  .fixed-width-lg {
    width: 191px;
  }
  .fixed-small-width-lg {
    width: 140px;
  }
  .fixed-large-width-lg {
    width: 250px;
  }
  .variable-width-lg {
    width: inherit;
  }
}
@media (min-width: 1200px) {
  .fixed-width-xl {
    width: 191px;
  }
  .fixed-small-width-xl {
    width: 140px;
  }
  .fixed-large-width-xl {
    width: 250px;
  }
  .variable-width-xl {
    width: inherit;
  }
}
.top-0 {
  top: 0;
}
.bottom-0 {
  bottom: 0;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}
.badge.font-size-inherit {
  padding: 0.6em 0.8em;
}
.badge-combined {
  display: flex;
  padding: 0 !important;
}
.badge-combined.font-size-inherit > * {
  padding: 0.6em 0.8em !important;
}
.badge-combined > * {
  padding: 0.25em 0.4em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.badge-combined.badge-pill {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}
.badge-combined.badge-pill > * {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}
.badge-combined > *:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.badge-combined > *:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label {
  color: #0015ff;
  font-weight: 700;
}
.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important;
}
.border-white-50 {
  border-color: rgba(255, 255, 255, 0.5) !important;
}
.border-white-75 {
  border-color: rgba(255, 255, 255, 0.75) !important;
}
.border-top-not-first:not(:first-child) {
  border-top: 1px solid #dee2e6;
}
.border-bottom-not-last:not(:last-child) {
  border-bottom: 1px solid #dee2e6;
}
@media (max-width: 575px) {
  .input-group-vertical-under-sm .input-group-prepend {
    margin-right: 0;
    margin-bottom: -1px;
  }
  .input-group-vertical-under-sm .input-group-append,
  .input-group-append.btn-group-toggle.toggle-options .btn {
    margin-left: 0;
    margin-top: -1px;
  }
  .input-group-append.btn-group-toggle.toggle-options .btn:first-child {
    margin-top: 1px;
  }
  .input-group-vertical-under-sm > *:not(.invalid-feedback):not(.valid-feedback):not(.input-slider),
  .input-group-vertical-under-sm > .input-group-prepend > .btn,
  .input-group-vertical-under-sm > .input-group-append > .btn {
    width: 100%;
    display: block;
  }
  .input-group-vertical-under-sm > .input-slider {
    height: 40px;
  }
  .input-group-vertical-under-sm > .form-control + .form-control:not(:first-child),
  .input-group-vertical-under-sm > .form-control + .custom-select:not(:first-child) {
    margin-left: 0;
    margin-top: -1px;
  }
  .input-group-vertical-under-sm > .input-group-prepend > .btn,
  .input-group-vertical-under-sm > .input-group-prepend > .input-group-text,
  .input-group-vertical-under-sm > .form-control,
  .input-group-vertical-under-sm > .custom-select,
  .input-group-vertical-under-sm > .input-group-append > .btn,
  .input-group-vertical-under-sm > .input-group-append > .input-group-text {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}
@media (max-width: 767px) {
  .input-group-vertical-under-md .input-group-prepend {
    margin-right: 0;
    margin-bottom: -1px;
  }
  .input-group-vertical-under-md .input-group-append {
    margin-left: 0;
    margin-top: -1px;
  }
  .input-group-vertical-under-md > *:not(.invalid-feedback):not(.valid-feedback):not(.input-slider),
  .input-group-vertical-under-md > .input-group-prepend > .btn,
  .input-group-vertical-under-md > .input-group-append > .btn {
    width: 100%;
    display: block;
  }
  .input-group-vertical-under-sm > .input-slider {
    height: 40px;
  }
  .input-group-vertical-under-md > .form-control + .form-control:not(:first-child),
  .input-group-vertical-under-md > .form-control + .custom-select:not(:first-child) {
    margin-left: 0;
    margin-top: -1px;
  }
  .input-group-vertical-under-md > .input-group-prepend > .btn,
  .input-group-vertical-under-md > .input-group-prepend > .input-group-text,
  .input-group-vertical-under-md > .form-control,
  .input-group-vertical-under-md > .custom-select,
  .input-group-vertical-under-md > .input-group-append > .btn,
  .input-group-vertical-under-md > .input-group-append > .input-group-text {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}
@media (max-width: 991px) {
  .input-group-vertical-under-lg .input-group-prepend {
    margin-right: 0;
    margin-bottom: -1px;
  }
  .input-group-vertical-under-lg .input-group-append {
    margin-left: 0;
    margin-top: -1px;
  }
  .input-group-vertical-under-lg > *:not(.invalid-feedback):not(.valid-feedback):not(.input-slider),
  .input-group-vertical-under-lg > .input-group-prepend > .btn,
  .input-group-vertical-under-lg > .input-group-append > .btn {
    width: 100%;
    display: block;
  }
  .input-group-vertical-under-sm > .input-slider {
    height: 40px;
  }
  .input-group-vertical-under-lg > .form-control + .form-control:not(:first-child),
  .input-group-vertical-under-lg > .form-control + .custom-select:not(:first-child) {
    margin-left: 0;
    margin-top: -1px;
  }
  .input-group-vertical-under-lg > .input-group-prepend > .btn,
  .input-group-vertical-under-lg > .input-group-prepend > .input-group-text,
  .input-group-vertical-under-lg > .form-control,
  .input-group-vertical-under-lg .custom-select,
  .input-group-vertical-under-lg > .input-group-append > .btn,
  .input-group-vertical-under-lg > .input-group-append > .input-group-text {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}
@media (max-width: 1199px) {
  .input-group-vertical-under-xl .input-group-prepend {
    margin-right: 0;
    margin-bottom: -1px;
  }
  .input-group-vertical-under-xl .input-group-append {
    margin-left: 0;
    margin-top: -1px;
  }
  .input-group-vertical-under-xl > *:not(.invalid-feedback):not(.valid-feedback):not(.input-slider),
  .input-group-vertical-under-xl > .input-group-prepend > .btn,
  .input-group-vertical-under-xl > .input-group-append > .btn {
    width: 100%;
    display: block;
  }
  .input-group-vertical-under-sm > .input-slider {
    height: 40px;
  }
  .input-group-vertical-under-xl > .form-control + .form-control:not(:first-child),
  .input-group-vertical-under-xl > .form-control + .custom-select:not(:first-child) {
    margin-left: 0;
    margin-top: -1px;
  }
  .input-group-vertical-under-xl > .input-group-prepend > .btn,
  .input-group-vertical-under-xl > .input-group-prepend > .input-group-text,
  .input-group-vertical-under-xl > .form-control,
  .input-group-vertical-under-xl .custom-select,
  .input-group-vertical-under-xl > .input-group-append > .btn,
  .input-group-vertical-under-xl > .input-group-append > .input-group-text {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}
.input-group-vertical .input-group-prepend {
  margin-right: 0;
  margin-bottom: -1px;
}
.input-group-vertical .input-group-append {
  margin-left: 0;
  margin-top: -1px;
}
.input-group-vertical > *:not(.invalid-feedback):not(.valid-feedback):not(.input-slider),
.input-group-vertical > .input-group-prepend > .btn,
.input-group-vertical > .input-group-append > .btn {
  width: 100%;
  display: block;
}
.input-group-vertical-under-sm > .input-slider {
  height: 40px;
}
.input-group-vertical > .form-control + .form-control:not(:first-child),
.input-group-vertical > .form-control + .custom-select:not(:first-child) {
  margin-left: 0;
  margin-top: -1px;
}
.input-group-vertical > .input-group-prepend > .btn,
.input-group-vertical > .input-group-prepend > .input-group-text,
.input-group-vertical > .form-control,
.input-group-vertical .custom-select,
.input-group-vertical > .input-group-append > .btn,
.input-group-vertical > .input-group-append > .input-group-text {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.w-max-100 {
  max-width: 100%;
}
.w-max-50 {
  max-width: 50%;
}
.h-max-100 {
  max-height: 100%;
}
.h-max-50 {
  max-height: 50%;
}
.rounded-max,
.rounded-left-max {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.rounded-max,
.rounded-right-max {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.big {
  font-size: 110%;
}
/*# sourceMappingURL=styles.css.map */