body {
  margin: 0;
}

ul {
  margin: 0 0;
  padding: 0 0 0 8px;
  list-style-type: none;
}

a {
  text-decoration: none;
}

textarea {
  line-height: 1.4 !important;
}

:root {
  --primary: #673ab7;
  --light-grey: #f5f5f5;
  --text-grey: #b3b3b3;
  --gradient-light-grey: linear-gradient(45deg, var(--light-grey), #fafafa);
  --gradient-light-blue: linear-gradient(45deg, #f5f5ff, #e6e5ff);
  --z-app-top: 150;
  --z-top: 100;
  --z-middle: 50;
  --z-low: 10;
  --z-base: 0;
  --z-below: -10;
}

.allCap {
  text-transform: uppercase;
}

.b {
  font-weight: bold;
}

.b500 {
  font-weight: 500;
}

.i {
  font-style: italic;
}

.u {
  text-decoration: underline;
}

.no-u {
  text-decoration: none;
}

.cap {
  text-transform: capitalize;
}

.upp {
  text-transform: uppercase;
}

.pre {
  white-space: pre-wrap;
}

.smaller {
  font-size: 0.85em;
}

.xsmall {
  font-size: 0.75em;
}

.larger {
  font-size: 1.4em;
}

.pointer {
  cursor: pointer;
}

.ellipses {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.c {
  text-align: center;
}

.r {
  text-align: right;
}

.block {
  display: block;
}

.hide {
  display: none;
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.p0 {
  padding: 0;
}

.red {
  color: red;
}

.blue, .primary {
  color: var(--primary);
}

.hide {
  display: none;
}

.uAlt {
  padding-bottom: 3px;
  display: inline-block;
  border-bottom: thin solid #ccc;
}

.legacyLink {
  cursor: pointer;
  color: blue;
  text-underline-offset: 3px;
  text-decoration: underline;
}

.link {
  cursor: pointer;
  color: #00668a;
  text-underline-offset: 2px;
  word-break: break-word;
}
.link:not(.no-u) {
  text-decoration: underline;
}

.textBlock {
  letter-spacing: 0.4px;
  display: block;
}

.col50 > * {
  width: 50%;
}

.col25 > * {
  width: 25%;
}

.flex {
  display: flex;
}

.flex.col {
  flex-direction: column;
}

.flex.cv {
  align-items: center;
}

.flex.ch {
  justify-content: center;
}

.flex.cb {
  align-items: center;
  justify-content: center;
}

.flex.sb {
  justify-content: space-between;
}

.flex.sa {
  justify-content: space-around;
}

.flex.se {
  justify-content: space-evenly;
}

.tForm {
  position: absolute;
}

.tForm.ch {
  left: 50%;
  transform: translateX(-50%);
}

.tForm.cv {
  top: 50%;
  transform: translateY(-50%);
}

.tForm.cb {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scale-fade-in {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-in-out {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-in-nearout {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.button {
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  padding: 7px 11px;
  font-size: 14px;
  line-height: 24px;
  color: rgb(64, 64, 64);
  outline-width: 2px;
  outline-offset: 2px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  white-space: nowrap;
}
.button:hover {
  border-color: rgb(163, 163, 163);
}

.fieldInput {
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  padding: 7px 11px;
  font-size: 14px;
  color: rgb(64, 64, 64);
  outline-width: 2px;
  outline-offset: 2px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.fieldInput:focus {
  border-color: rgb(163, 163, 163);
}