.fabric-text-color-mark {
  color: var(--custom-palette-color, inherit);
}
table th {
  background-color: #f0f1f2;
  text-align: left;
}

span.date-node {
  background: var(--ds-background-neutral, rgba(9, 30, 66, 0.08));
  border-radius: var(--ds-border-radius-100, 3px);
  color: var(--ds-text, #172B4D);
  padding: var(--ds-space-025, 2px) var(--ds-space-050, 4px);
  margin: 0px 1px;
  transition: background 0.3s;
}

.cc-1tbex3z {
  background-color: var(--ds--code--bg-color, var(--ds-background-neutral, #091e420f));
  border-radius: var(--ds-border-radius, 3px);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: var(--ds-text, #172b4d);
  font: var(--ds-font-code, normal 400 .875em / 1 ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace);
  line-height: inherit;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  border-style: none;
  padding: 2px .5ch;
  display: inline;
  overflow: auto;
}

.bvhSud {
    padding-bottom: 0px;
    padding-top: 10px;
  }
  
.sel {
  display: inline-block;
  padding: 5.5px 10px;
  background-color: transparent;
  position: relative;
  cursor: pointer;
}

.sel::before {
  position: absolute;
  content: '\f063';
  font-family: 'FontAwesome';
  color: #333333;
  right: 20px;
  top: calc(50% - 0.5em);
}

.sel.active::before {
  transform: rotateX(-180deg);
}

.sel__placeholder {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 0.929em;
  text-transform: none;
  color: #838e95;
  padding: 0.2em 0.5em;
  text-align: left;
  pointer-events: none;
  user-select: none;
  visibility: visible;
}

.sel.active .sel__placeholder {
  visibility: hidden;
}

.sel__placeholder::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.2em 0.5em;
  content: attr(data-placeholder);
  visibility: hidden;
}

.sel.active .sel__placeholder::before {
  visibility: visible;
}

.sel__box {
  position: absolute;
  top: calc(100% + 4px);
  left: -4px;
  display: none;
  list-style-type: none;
  text-align: left;
  font-size: 1em;
  background-color: #FFF;
  width: calc(100% + 8px);
  box-sizing: border-box;
}

.sel.active .sel__box {
  display: block;
  animation: fadeInUp 500ms;
}

.sel__box__options {
  display: list-item;
  font-family: Montserrat, sans-serif;
  font-size: 0.929em;
  color: #838e95;
  padding: 0.5em 1em;
  user-select: none;
}

.sel__box__options::after {
  content: '\f00c';
  font-family: 'FontAwesome';
  font-size: 0.5em;
  margin-left: 5px;
  display: none;
}

.sel__box__options.selected::after {
  display: inline;
}

.sel__box__options:hover {
  background-color: #ebedef;
}

/* ----- Select Box Black Panther ----- */
.sel {
  border-bottom: 4px solid rgba(0, 0, 0, 0.3);
}

.sel--black-panther {
  z-index: 3;
}

/* ----- Select Box Superman ----- */
.sel--superman {
/*   display: none; */
  z-index: 2;
}

/* ===== Keyframes ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}