input.ng-invalid, select.ng-invalid {
  border-color: red;
  border-width: 1px;
}

body {
  font-family: sans-serif;
  background-color: #ffffff;
}

.wrapper {
  padding: 20px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  /* box-shadow: 0px 0px 25px #fbfbfb; */
}

.btn:disabled {
  cursor: not-allowed;
  pointer-events: all;
}

.mono {
  font-family: Inconsolata, monospace;
  font-size: 1.25em;
  text-transform: uppercase;
}

.fieldnote {
  font-size: 0.70rem;
  font-style: italic;
}

.section-bar {
  background-color: rgb(215, 210, 203);
  padding: 5px;
  text-align: center;
}

input::placeholder {
  opacity: 0.50 !important;
  font-style: italic;
}

.dashed-wrapper {
  border: 1px #d7d2cb dashed;
  border-radius: 4px;
  background-color: #fbfbfa;
}

.error-text {
  color: red;
}

.please-wait-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  background: (255,255,255,0.3);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.please-wait-box {
  background-color: #4d4d4d;
  color: white;
  padding: 8px 25px;
  border-radius: 5px;
}