body {
  overflow-x: hidden;
  width: 100vw;
  background-color: var(--color-body-background);
  color: var(--color-text-dark);
}

.page-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: calc(100vh - 83px);
}

h1 {
  font-size: 2rem;
}

h4 {
  font-size: 1.25rem;
}

@media screen and (min-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--color-accent);
}

.link-no-underline {
  text-decoration: none;
}

.light-small-font {
  font-family: 'Gotham-Light';
  font-size: 14px;
}

.font-28 {
  font-size: 28px;
}

.font-24 {
  font-size: 24px;
}

.font-20 {
  font-size: 20px;
}

.font-18 {
  font-size: 18px;
}

.font-16 {
  font-size: 16px;
}

.font-14 {
  font-size: 14px;
}

.font-12 {
  font-size: 12px;
}

.font-10 {
  font-size: 10px;
}

.line-height-normal {
  line-height: normal;
}

.w-5 {
  width: 5%;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-40 {
  width: 40%;
}

.w-80 {
  width: 80%;
}

.mw-33 {
  max-width: 33%;
}

.h-85 {
  height: 80%;
}

.opacity-50 {
  opacity: 0.5;
}

.flex-grow {
  flex-grow: 1;
}

.flex-no-grow {
  flex-grow: 0;
}

.text-bold {
  font-weight: 900;
}

.text-accent-bold {
  color: var(--color-accent);
  font-weight: 900;
}

.text-lighter {
  font-weight: lighter;
  font-family: var(--font-body-light);
}

.light-gray-bg {
  background-color: var(--color-light-gray-background);
}

.gray-link {
  color: var(--color-text-light);
  text-decoration: none;
}
.gray-link:hover {
  color: var(--color-accent);
}

.pagination-container {
  width: 100%;
}
.pagination-container nav {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}
.pagination-container nav span {
  margin: 0 5px;
}

.padding-1_25 {
  padding-bottom: 1.25rem;
}

.top-0 {
  top: 0;
}

.top-16 {
  top: 16px;
}

.top-12 {
  top: 12px;
}

.top-6 {
  top: 6px;
}

label,
.form-control-label {
  color: var(--color-text-light);
}

.form-with-checkboxes .yellow-checkboxes {
  background-color: var(--color-body-background);
  border: 2px solid var(--color-accent);
  padding: 5px 10px;
  border-radius: 3px;
}
.form-with-checkboxes .yellow-checkboxes:hover {
  box-shadow: 1px 1px 3px gray;
}
.form-with-checkboxes input[type='checkbox']:checked + label.yellow-checkboxes {
  background-color: var(--color-accent);
  color: var(--color-text-black);
}

.form-control::placeholder {
  font-style: italic;
  font-weight: lighter;
  color: var(--color-text-light);
  font-size: 1rem;
}

.sticky-table-header {
  position: sticky;
  top: 70px;
  z-index: 1000;
}

.no-button-style {
  background: none;
  border: none;
}

.grey-link {
  color: gray;
}

.grey-link:hover {
  color: var(--color-accent);
}

.progress.height-10 {
  height: 10px;
}

.overflow-break {
  overflow-wrap: break-word;
}

.transform_scaleX_minus_1 {
  transform: scaleX(-1);
}

.cursor-pointer {
  cursor: pointer;
}

.m-top-4rem {
  margin-top: 4rem;
}

.hidden {
  display: none;
}
