a {
  color: #8b161c!important;
}

h1, h2, h3, h4, h5, h6 {
    color: #8b161c!important;
}

input:invalid {
    outline: none !important;
}

.mantine-Select-dropdown {
    z-index: 10000 !important;
}

.stacked-name * {
    color: #868e96;
    font-size: x-small;
    margin: 0
}

._dash-loading {
  margin: auto;
  color: transparent;
  width: 0;
  height: 0;
  text-align: center;
}

._dash-loading::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  color: #e8e8e8;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 2s linear infinite;
  margin-top: 50vh;
}

@keyframes spinner-border {
  100% {
    transform: rotate(360deg);
  }
}