.row {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

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

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

.loading {
  position: absolute;
  width: 50%;
  top: 50vh;
}

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

.true-center {
  margin: auto 0;
}

.column-full {
  width: 100%;
}

.column-half {
  width: 50%;
}

.hidden {
  display: none;
}

.modal-appear {
  background: black;
  opacity: 0.25;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.modal {
  text-align: center;
  border-radius: 1rem;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  position: fixed;
}
