@import url("/www_utils/css/font.css");
table.paddingNormal > thead > tr > th, table.paddingNormal > thead > tr > td {
  padding: 0.48rem 0.6rem;
}
table.paddingNormal > thead > tr:nth-child(2) > th {
  padding: 0 0.6rem 0.2em 0.6rem;
}
table.paddingNormal > tbody > tr > td {
  background: inherit;
}
table.paddingNormal > tbody > tr > th,
table.paddingNormal > tbody > tr > td {
  padding: 0.4rem 0.6rem;
}
table.paddingNormal > tfoot > tr > th,
table.paddingNormal > tfoot > tr > td {
  padding: 0.48rem 0.6rem;
}
table.paddingTight > thead > tr > th, table.paddingTight > thead > tr > td {
  padding: 0.12rem 0.3rem;
}
table.paddingTight > thead > tr:nth-child(2) > th {
  padding: 0 0.3rem 0.2em 0.3rem;
}
table.paddingTight > tbody > tr > td {
  background: inherit;
}
table.paddingTight > tbody > tr > th,
table.paddingTight > tbody > tr > td {
  padding: 0.1rem 0.3rem;
}
table.paddingTight > tfoot > tr > th,
table.paddingTight > tfoot > tr > td {
  padding: 0.12rem 0.3rem;
}
table.paddingMedium > thead > tr > th, table.paddingMedium > thead > tr > td {
  padding: 0.24rem 0.4rem;
}
table.paddingMedium > thead > tr:nth-child(2) > th {
  padding: 0 0.4rem 0.2em 0.4rem;
}
table.paddingMedium > tbody > tr > td {
  background: inherit;
}
table.paddingMedium > tbody > tr > th,
table.paddingMedium > tbody > tr > td {
  padding: 0.2rem 0.4rem;
}
table.paddingMedium > tfoot > tr > th,
table.paddingMedium > tfoot > tr > td {
  padding: 0.24rem 0.4rem;
}
table.paddingLoose > thead > tr > th, table.paddingLoose > thead > tr > td {
  padding: 0.48rem 0.8rem;
}
table.paddingLoose > thead > tr:nth-child(2) > th {
  padding: 0 0.8rem 0.2em 0.8rem;
}
table.paddingLoose > tbody > tr > td {
  background: inherit;
}
table.paddingLoose > tbody > tr > th,
table.paddingLoose > tbody > tr > td {
  padding: 0.4rem 0.8rem;
}
table.paddingLoose > tfoot > tr > th,
table.paddingLoose > tfoot > tr > td {
  padding: 0.48rem 0.8rem;
}

.font-small * {
  font-size: 9.5pt;
}

.font-tiny * {
  font-size: 8.5pt;
}

.font-normal * {
  font-size: 16px;
}

.font-medium * {
  font-size: 18px;
}

.font-large * {
  font-size: 22px;
}

.log-debug {
  color: #868686;
}

.log-info {
  color: #5b83a9;
}

.log-notice {
  color: #a072c6;
}

.log-warning {
  color: #fb8d10;
}

.log-error {
  color: #ff6b6b;
  font-weight: 600;
}

.log-critical {
  color: #fb8d10;
  background: #ffd9f2;
  border-left: 4px solid #ff01a8;
  padding-left: 5pt;
}

.log-alert {
  color: #c33f1c;
  background: #ffffff;
  font-size: 10.5pt;
  border: 2px solid #fb4110;
  padding: 5pt;
  margin: 5pt 0;
}

.log-emergency {
  color: #fb4110;
  background: #fff5f5;
  font-size: 10.5pt;
  border: 2px solid #fb4110;
  padding: 10pt;
  margin: 5pt 0;
}

.lightTheme {
  --font-color: #404040;
  --font-color-subdued: #a6a9a9;
}

.bottom_menu_tab,
.menu_tab {
  background: #f0fcff;
  border: 0;
  box-shadow: 0 0 0 1px #adc1d0;
  clear: both;
  display: inline-flex;
  margin: 0 0 10px 0;
  padding: 0 10px;
}

code {
  font-family: Consolas, "Courier New", Courier, monospace;
  padding: 0 2pt;
}

/**
Basic data table, provides no borders, no shading, no padding.
These need to be specified explicitly by adding one of dataTable- utility classes
 */
table.panel,
table.dataTable {
  --data-table--label-min-width: 0;
  --data-table--label-width: auto;
  --data-table--label-max-width: unset;
  --data-table--thead-divider-width: 0;
  --data-table--tbody-divider-width: 0;
  --data-table--tfoot-divider-width: 0;
  --data-table--border-width: 0;
  color: var(--colorTable);
  background-color: transparent;
  border: 0;
  border-collapse: collapse;
  box-shadow: 0 0 0 var(--data-table--border-width) var(--colorBorder);
  position: relative;
}
table.panel caption,
table.dataTable caption {
  color: var(--colorHeading);
  background-color: var(--colorHeadingBackground);
  border: var(--data-table--border-width) solid var(--colorBorder);
  border-bottom: 0;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}
table.panel caption > span,
table.dataTable caption > span {
  display: block;
  padding: 10px;
}
table.panel > thead th,
table.dataTable > thead th {
  color: var(--colorHeading);
  font-weight: bold;
  text-align: left;
}
table.panel > thead td,
table.dataTable > thead td {
  color: var(--colorTable);
}
table.panel > thead tr > :not(:first-child),
table.dataTable > thead tr > :not(:first-child) {
  border-left: var(--data-table--thead-divider-width) solid var(--colorBorderAlt);
}
table.panel > tbody > tr,
table.dataTable > tbody > tr {
  background-color: inherit;
}
table.panel > tbody > tr > th,
table.dataTable > tbody > tr > th {
  color: var(--colorHeading);
  min-width: var(--data-table--label-min-width);
  max-width: var(--data-table--label-max-width);
  width: var(--data-table--label-width);
  font-weight: 600;
  text-align: right;
  vertical-align: top;
  white-space: nowrap;
  text-overflow: ellipsis;
}
table.panel > tbody > tr > th.divider,
table.dataTable > tbody > tr > th.divider {
  background-color: #fff;
  border-top: var(--borderWidth) solid var(--colorBorder);
  padding-bottom: 20px;
  padding-top: 20px;
}
table.panel > tbody > tr > td,
table.dataTable > tbody > tr > td {
  color: var(--colorTable);
  font-weight: normal;
  word-break: break-word;
}
table.panel > tbody > tr > :not(:first-child),
table.dataTable > tbody > tr > :not(:first-child) {
  border-left: var(--data-table--tbody-divider-width) solid var(--colorBorderAlt);
}
table.panel tfoot tr,
table.dataTable tfoot tr {
  background-color: var(--colorHeadingBackground);
}
table.panel tfoot tr > :not(:first-child),
table.dataTable tfoot tr > :not(:first-child) {
  border-left: var(--data-table--tfoot-divider-width) solid var(--colorBorderAlt);
}
table.panel tfoot th,
table.dataTable tfoot th {
  color: var(--colorHeading);
  font-weight: bold;
}
table.panel tfoot td,
table.dataTable tfoot td {
  color: var(--colorTable);
  font-weight: bold;
}

.dataTable.dataTable-paddingSmall > thead > tr > td,
.dataTable.dataTable-paddingSmall > thead > tr > th, .dataTable.dataTable-paddingSmall > tbody > tr > td,
.dataTable.dataTable-paddingSmall > tbody > tr > th, .dataTable.dataTable-paddingSmall > tfoot > tr > td,
.dataTable.dataTable-paddingSmall > tfoot > tr > th,
.dataTable.dataTable-paddingTight > thead > tr > td,
.dataTable.dataTable-paddingTight > thead > tr > th,
.dataTable.dataTable-paddingTight > tbody > tr > td,
.dataTable.dataTable-paddingTight > tbody > tr > th,
.dataTable.dataTable-paddingTight > tfoot > tr > td,
.dataTable.dataTable-paddingTight > tfoot > tr > th {
  padding: 0.1rem 0.3rem;
}
.dataTable.dataTable-paddingSmall > tbody > tr > th,
.dataTable.dataTable-paddingTight > tbody > tr > th {
  vertical-align: middle;
}

.dataTable.dataTable-paddingMedium > thead > tr > td,
.dataTable.dataTable-paddingMedium > thead > tr > th, .dataTable.dataTable-paddingMedium > tfoot > tr > td,
.dataTable.dataTable-paddingMedium > tfoot > tr > th,
.dataTable.dataTable-paddingNormal > thead > tr > td,
.dataTable.dataTable-paddingNormal > thead > tr > th,
.dataTable.dataTable-paddingNormal > tfoot > tr > td,
.dataTable.dataTable-paddingNormal > tfoot > tr > th {
  padding: 0.6rem 0.6rem;
}
.dataTable.dataTable-paddingMedium > tbody > tr > td,
.dataTable.dataTable-paddingMedium > tbody > tr > th,
.dataTable.dataTable-paddingNormal > tbody > tr > td,
.dataTable.dataTable-paddingNormal > tbody > tr > th {
  padding: 0.2rem 0.6rem;
}

.dataTable.dataTable-paddingLarge > thead > tr > td,
.dataTable.dataTable-paddingLarge > thead > tr > th, .dataTable.dataTable-paddingLarge > tfoot > tr > td,
.dataTable.dataTable-paddingLarge > tfoot > tr > th,
.dataTable.dataTable-paddingAmple > thead > tr > td,
.dataTable.dataTable-paddingAmple > thead > tr > th,
.dataTable.dataTable-paddingAmple > tfoot > tr > td,
.dataTable.dataTable-paddingAmple > tfoot > tr > th {
  padding: 0.6rem 0.6rem;
}
.dataTable.dataTable-paddingLarge > tbody > tr > td,
.dataTable.dataTable-paddingLarge > tbody > tr > th,
.dataTable.dataTable-paddingAmple > tbody > tr > td,
.dataTable.dataTable-paddingAmple > tbody > tr > th {
  padding: 0.4rem 0.8rem;
}

.dataTable.dataTable-striped {
  --colorHeading: #586f7b;
  --colorHeadingBackground: #DFE6EC;
  --colorHeadingBackgroundAlt: #d6dee5;
  --colorTable: #404040;
  --colorTableBackground: #fcfcfc;
  --colorTableBackgroundAlt: #f7f7f7;
  --colorBorder: #bec8d0;
  --colorBorderAlt: #d3d9df;
  background-color: var(--colorTableBackground);
  --data-table--label-min-width: 200px;
  --data-table--label-max-width: 350px;
  --data-table--border-width: 2px;
}
.dataTable.dataTable-striped > thead > tr {
  background-color: var(--colorHeadingBackground);
}
.dataTable.dataTable-striped > tbody > tr:nth-child(2n+1) {
  background-color: var(--colorTableBackgroundAlt);
}
.dataTable.dataTable-striped > tbody > tr:nth-child(2n+1) > th {
  background-color: var(--colorHeadingBackgroundAlt);
}
.dataTable.dataTable-striped > tbody > tr > th {
  background-color: var(--colorHeadingBackground);
}

table.data {
  border: none;
  margin: 0;
}
table.data > tbody > tr th {
  padding: 1pt 5pt 1pt 0;
  text-align: right;
}
table.data > tbody > tr td {
  padding: 1pt 5pt;
  text-align: left;
}

.gridForm {
  --colorHeading: #80805d;
  --colorHeadingBackground: #fafaf9;
  --colorHeadingBackgroundAlt: #f3f3f1;
  --colorTable: #404040;
  --colorTableBackground: #ffffff;
  --colorTableBackgroundAlt: #fafafa;
  --colorBorder: #dbdbdb;
  --colorBorderAlt: #ededed;
}

table.panel {
  --colorHeading: #785858;
  --colorHeadingBackground: #e0e0e0;
  --colorHeadingBackgroundAlt: #d8d8d8;
  --colorTable: #404040;
  --colorTableBackground: #ffffff;
  --colorTableBackgroundAlt: #fafafa;
  --colorBorder: #c1c1c1;
  --colorBorderAlt: lightgray;
  --borderWidth: 0;
}

table.clear {
  background-color: transparent;
  border: 0;
  border-collapse: collapse;
}
table.clear > thead,
table.clear > tfoot {
  background-color: transparent;
}
table.clear > thead > tr,
table.clear > thead > tr > th,
table.clear > thead > tr > td,
table.clear > tfoot > tr,
table.clear > tfoot > tr > th,
table.clear > tfoot > tr > td {
  background-color: transparent;
  border: 0;
}
table.clear > tbody {
  background-color: transparent;
}
table.clear > tbody > tr {
  background-color: transparent;
}
table.clear > tbody > tr > th {
  background: transparent;
  border: 0;
  color: var(--font-color-subdued);
  font-weight: 600;
}
table.clear > tbody > tr > td {
  background: transparent;
  border: 0;
  color: var(--font-color);
  font-weight: normal;
}

.TabPanel_container a {
  border-color: #b5c5cf;
}

h1 {
  color: #902030;
  font-size: 26.55pt;
  font-weight: 500;
  margin: 21.6pt 0;
  text-shadow: 1px 1px 1px #c0c0c0;
  position: relative;
}

h2 {
  color: #454645;
  font-size: 23.1pt;
  font-weight: 500;
  margin: 21.6pt 0;
  font-size: 32px;
  font-weight: 600;
  position: relative;
}

h3 {
  color: #e17040;
  font-size: 19.65pt;
  font-weight: 500;
  margin: 21.6pt 0;
  position: relative;
}

h4 {
  color: #7b89b1;
  font-size: 16.2pt;
  font-weight: 500;
  margin: 21.6pt 0;
  position: relative;
}

h5 {
  color: #c03060;
  font-size: 12.75pt;
  font-weight: 500;
  margin: 21.6pt 0;
  letter-spacing: 1px;
  position: relative;
}

h6 {
  color: #902030;
  font-size: 9.3pt;
  font-weight: 500;
  margin: 21.6pt 0;
  letter-spacing: 1px;
  position: relative;
}

hr {
  background: #a0a090;
  font-size: 1px;
  height: 1px;
  line-height: 1px;
  margin: 5px 0;
  width: 100%;
}

div.error {
  background-color: #ff5720;
  background-repeat: no-repeat;
  border: none;
  border-radius: 8pt;
  box-sizing: border-box;
  color: #fffff0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin: 20pt auto;
  min-height: 50pt;
  max-width: 80vw;
  padding: 15pt 20pt 15pt 95px;
  position: relative;
  text-align: left;
}
div.error.borderless {
  border: none;
  box-shadow: none;
  background: inherit;
}
div.error::before {
  color: white;
  content: "\f06a";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-size: 48px;
  left: 21px;
  position: absolute;
  animation: heartbeat 2s ease-in-out infinite both;
}
div.error h4 {
  margin-top: 10pt;
  font-size: 13pt;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8784313725);
}
div.error h3 {
  color: rgba(0, 0, 0, 0.8784313725);
}
div.error pre {
  color: rgba(0, 0, 0, 0.8156862745);
}
div.error p, div.error ul, div.error ol, div.error li {
  color: inherit;
  font-size: 11.5pt;
}
div.error p {
  font-weight: 600;
  margin: 12pt 0 5pt 0;
}
div.error p.comment {
  color: rgba(255, 255, 240, 0.75);
  font-weight: 400;
  font-size: 0.75rem;
  margin: 0;
}
div.error.text {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  padding: 0 0 0 65px;
  margin: 5px 0;
  min-height: unset;
}
div.error.text::before {
  font-size: 32px;
  left: 12px;
}
div.warning {
  background-color: #ff9b00;
  background-repeat: no-repeat;
  border: none;
  border-radius: 8pt;
  box-sizing: border-box;
  color: #fffff0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin: 20pt auto;
  min-height: 50pt;
  max-width: 80vw;
  padding: 15pt 20pt 15pt 95px;
  position: relative;
  text-align: left;
}
div.warning.borderless {
  border: none;
  box-shadow: none;
  background: inherit;
}
div.warning::before {
  color: white;
  content: "\f071";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-size: 48px;
  left: 21px;
  position: absolute;
  animation: heartbeat 2s ease-in-out infinite both;
}
div.warning h4 {
  margin-top: 10pt;
  font-size: 13pt;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8784313725);
}
div.warning h3 {
  color: rgba(0, 0, 0, 0.8784313725);
}
div.warning pre {
  color: rgba(0, 0, 0, 0.8156862745);
}
div.warning p, div.warning ul, div.warning ol, div.warning li {
  color: inherit;
  font-size: 11.5pt;
}
div.warning p {
  font-weight: 600;
  margin: 12pt 0 5pt 0;
}
div.warning p.comment {
  color: rgba(255, 255, 240, 0.75);
  font-weight: 400;
  font-size: 0.75rem;
  margin: 0;
}
div.warning.text {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  padding: 0 0 0 65px;
  margin: 5px 0;
  min-height: unset;
}
div.warning.text::before {
  font-size: 32px;
  left: 12px;
}
div.info {
  background-color: #45a8ff;
  background-repeat: no-repeat;
  border: none;
  border-radius: 8pt;
  box-sizing: border-box;
  color: #fffff0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin: 20pt auto;
  min-height: 50pt;
  max-width: 80vw;
  padding: 15pt 20pt 15pt 95px;
  position: relative;
  text-align: left;
}
div.info.borderless {
  border: none;
  box-shadow: none;
  background: inherit;
}
div.info::before {
  color: white;
  content: "\f05a";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-size: 48px;
  left: 21px;
  position: absolute;
  animation: heartbeat 2s ease-in-out infinite both;
}
div.info h4 {
  margin-top: 10pt;
  font-size: 13pt;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8784313725);
}
div.info h3 {
  color: rgba(0, 0, 0, 0.8784313725);
}
div.info pre {
  color: rgba(0, 0, 0, 0.8156862745);
}
div.info p, div.info ul, div.info ol, div.info li {
  color: inherit;
  font-size: 11.5pt;
}
div.info p {
  font-weight: 600;
  margin: 12pt 0 5pt 0;
}
div.info p.comment {
  color: rgba(255, 255, 240, 0.75);
  font-weight: 400;
  font-size: 0.75rem;
  margin: 0;
}
div.info.text {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  padding: 0 0 0 65px;
  margin: 5px 0;
  min-height: unset;
}
div.info.text::before {
  font-size: 32px;
  left: 12px;
}
div.success {
  background-color: #7bcb4a;
  background-repeat: no-repeat;
  border: none;
  border-radius: 8pt;
  box-sizing: border-box;
  color: #fffff0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin: 20pt auto;
  min-height: 50pt;
  max-width: 80vw;
  padding: 15pt 20pt 15pt 95px;
  position: relative;
  text-align: left;
}
div.success.borderless {
  border: none;
  box-shadow: none;
  background: inherit;
}
div.success::before {
  color: white;
  content: "\f058";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-size: 48px;
  left: 21px;
  position: absolute;
  animation: heartbeat 2s ease-in-out infinite both;
}
div.success h4 {
  margin-top: 10pt;
  font-size: 13pt;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8784313725);
}
div.success h3 {
  color: rgba(0, 0, 0, 0.8784313725);
}
div.success pre {
  color: rgba(0, 0, 0, 0.8156862745);
}
div.success p, div.success ul, div.success ol, div.success li {
  color: inherit;
  font-size: 11.5pt;
}
div.success p {
  font-weight: 600;
  margin: 12pt 0 5pt 0;
}
div.success p.comment {
  color: rgba(255, 255, 240, 0.75);
  font-weight: 400;
  font-size: 0.75rem;
  margin: 0;
}
div.success.text {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  padding: 0 0 0 65px;
  margin: 5px 0;
  min-height: unset;
}
div.success.text::before {
  font-size: 32px;
  left: 12px;
}
div.note {
  background-color: #fff0b2;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 9px;
  clear: both;
  color: #404040;
  padding: 6px;
  text-align: left;
  font-size: 9.5pt;
}
div.note > p {
  color: inherit;
  margin: 3px 0;
}
div.note > p.comment {
  color: #666666;
}
div.box {
  background-color: #ffffff;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 9px;
  clear: both;
  color: #404040;
  padding: 6px;
  text-align: left;
  font-size: 9.5pt;
}
div.box > p {
  color: inherit;
  margin: 3px 0;
}
div.box > p.comment {
  color: #666666;
}
div.menu {
  margin: 10px 0;
  position: relative;
  width: auto;
}
div.menu a:link, div.menu a:visited, div.menu a:active {
  background: none;
  border: 0;
  color: #7f2a06;
  display: inline-block;
  font-weight: bold;
  margin: 0;
  outline: 0;
  padding: 8px 12px;
  text-decoration: none;
}
div.menu a:hover {
  background-color: #c95422;
  border: 0;
  color: #ffffff;
  outline: 0;
}
div.menu a .admin:link, div.menu a .admin:visited, div.menu a .admin:active {
  background: none;
  border: 0;
  color: #7f2a06;
  display: inline-block;
  font-weight: bold;
  margin: 0;
  outline: 0;
  padding: 8px 12px;
  text-decoration: none;
}
div.menu a .admin:hover {
  background-color: #c95422;
  border: 0;
  color: #ffef00;
  outline: 0;
}
div.menu .disabled {
  color: #909090;
  font-weight: bold;
  padding: 1px 8px 2px;
}
div.verticalMenu {
  font-weight: normal;
  text-align: left;
}
div.verticalMenu ul {
  list-style: none;
  padding: 0;
}
div.verticalMenu li {
  padding: 0;
}
div.verticalMenu li.group-header {
  color: #a56f6f;
}
div.verticalMenu li.group-header::before, div.verticalMenu li.group-header::after {
  border-color: #707070;
}
div.verticalMenu li.separator {
  border-bottom: 1px solid #a09090;
  height: 2px;
  margin: 5px 0;
  padding: 0;
}
div.verticalMenu li.disabled, div.verticalMenu li.disabled * {
  color: #b0b0b0;
  font-weight: bold;
  padding: 2px 12px 2px 18px;
}
div.verticalMenu img,
div.verticalMenu i {
  font-size: 20px;
  margin-right: 10px;
  text-align: center;
  width: 1.25em;
}
div.verticalMenu a {
  align-items: center;
  border: 0;
  color: #17b;
  cursor: pointer;
  display: flex;
  font-weight: normal;
  margin: 1px 0;
  padding: 4px 10px;
}
div.verticalMenu a:link, div.verticalMenu a:visited, div.verticalMenu a:active {
  border: 0;
  color: #17b;
  padding: 4px 10px;
  text-decoration: none;
}
div.verticalMenu a:hover {
  background-color: #e0f0ff;
  border: 0;
  border-radius: 3px;
  color: #40404f;
  padding: 4px 10px;
  text-decoration: none;
}

p.error {
  position: relative;
  padding-left: 8px;
  border-left: 8px solid #ff5720;
  color: #ff5720;
}
p.warning {
  position: relative;
  padding-left: 8px;
  border-left: 8px solid #f06b20;
  color: #f06b20;
}

html .SumoSelect > .optWrapper {
  border-color: var(--color-border-light);
}
html .SumoSelect > .optWrapper label {
  color: #261e1e;
}
html .SumoSelect > .optWrapper .placeholder {
  color: #aaaaaa;
  font-style: italic;
}
html .SumoSelect > .optWrapper .placeholder label {
  color: #aaaaaa;
}
html .SumoSelect > .optWrapper > .MultiControls {
  background-color: white;
  border: none;
}
html .SumoSelect > .optWrapper > .MultiControls > p:hover {
  color: var(--color-main-bg-light);
}
html .SumoSelect > .optWrapper.multiple > .MultiControls > p.btnOk {
  font-weight: bold;
  border-right: none;
  color: white;
}
html .SumoSelect > .optWrapper.multiple > .MultiControls > p.btnCancel {
  background: #b65151;
  color: white;
}
html .SumoSelect .select-all {
  background-color: #eafbfe;
  border-color: var(--color-border);
  display: flex;
}
html .SumoSelect .select-all i::after {
  color: steelblue !important;
  opacity: 0.3;
}
html .SumoSelect .select-all label {
  font-style: oblique;
  color: steelBlue;
}
html .SumoSelect .placeholder {
  color: #aaaaaa;
  font-style: italic;
}
html .SumoSelect .placeholder label {
  color: #aaaaaa;
}
html .SumoSelect .report-heading .SumoSelect > .CaptionCont {
  background: rgba(255, 255, 255, 0.4392156863);
  color: var(--color-main-accent);
}
html .SumoSelect > .CaptionCont.specificValue {
  color: var(--color-input-accent);
}
html .disabled {
  filter: grayscale(1);
}

/*# sourceMappingURL=styles.css.map */
