@charset "UTF-8";
/* Transitioning page view. */
@view-transition {
  navigation: auto;
}
:root {
  interpolate-size: allow-keywords;
}

body {
  overflow-x: hidden;
}
body.no-scroll {
  overflow-y: hidden;
}

img,
svg {
  vertical-align: top;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

p {
  margin-block: 0.5rem;
  text-wrap: pretty;
}

dd {
  text-wrap: pretty;
}

li {
  text-wrap: pretty;
}

details {
  overflow: hidden;
}
details > summary {
  cursor: pointer;
  margin-block-end: 10px;
}
details::details-content {
  block-size: 0;
  transition: block-size 0.25s, content-visibility 0.25s;
  transition-behavior: allow-discrete;
}
details[open]::details-content {
  block-size: auto;
}

.is-invisible {
  z-index: -1;
  opacity: 0;
  transition: opacity, z-index, var(--transition);
}

.is-visible {
  z-index: 5;
  opacity: 1;
  transition: opacity, z-index, var(--transition);
}

.hidden,
.is-hidden,
html.no-js .no-js-hidden,
html.js .js-hidden {
  display: none;
}

.is-unhidden {
  display: block;
}

.off-screen,
.form input[type=file] {
  position: absolute;
  inset-inline-start: -9999px;
}

.on-screen,
.no-js .form input[type=file] {
  position: relative;
  inset-inline-start: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-text {
  margin-block: 0 1rem;
  font-style: inherit;
  font-weight: var(--weight-semibold);
  text-wrap: balance;
}

h1,
.alpha {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 400;
}

h2,
.beta {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 500;
}

h3,
.two-factor h1,
.two-factor h2,
.stat-block__number,
.gamma {
  font-size: 1.5rem;
  line-height: 2rem;
}

h4,
.delta {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

h5,
.nav__link,
.epsilon {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}

h6,
.pagination,
.feed__company,
.zeta {
  font-size: 1rem;
}

small,
.milli {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* stylelint-disable length-zero-no-unit -- CSS from https://github.com/rstacruz/nprogress */
#nprogress {
  /* Make clicks pass-through */
  pointer-events: none;
  /* Fancy blur effect */
  /* Remove these to get rid of the spinner */
}
#nprogress .bar {
  background: var(--color-dark-blue);
  position: fixed;
  z-index: 1031;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 2px;
}
#nprogress .peg {
  display: block;
  position: absolute;
  inset-inline-end: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px var(--color-dark-blue), 0 0 5px var(--color-dark-blue);
  opacity: 1;
  transform: rotate(3deg) translate(0px, -4px);
}
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  inset-block-start: 15px;
  inset-inline-end: 15px;
}
#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: var(--color-dark-blue);
  border-left-color: var(--color-dark-blue);
  border-radius: 50%;
  animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.all-submissions-table {
  font-size: 14px;
}
.all-submissions-table thead th.desc, .all-submissions-table thead th.asc {
  position: relative;
  color: var(--color-dark-grey);
}
.all-submissions-table thead th.desc::after, .all-submissions-table thead th.asc::after {
  position: absolute;
  inset-block-start: 50%;
  margin-inline-start: 3px;
}
.all-submissions-table thead th.desc a, .all-submissions-table thead th.asc a {
  color: inherit;
}
.all-submissions-table thead th.desc::after {
  width: 0;
  height: 0;
  content: "";
  border-bottom: 0.495rem solid currentcolor;
  border-inline-end: 0.33rem solid transparent;
  border-inline-start: 0.33rem solid transparent;
}
.all-submissions-table thead th.asc::after {
  width: 0;
  height: 0;
  content: "";
  border-top: 0.495rem solid currentcolor;
  border-inline-end: 0.33rem solid transparent;
  border-inline-start: 0.33rem solid transparent;
}
.all-submissions-table thead {
  display: none;
  vertical-align: bottom;
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table thead {
    display: table-header-group;
  }
}
.all-submissions-table thead th.reviews_stats {
  color: var(--color-black-60);
}
.all-submissions-table thead th.reviews_stats div {
  font-size: 0.75rem;
}
.all-submissions-table thead th.desc::after, .all-submissions-table thead th.asc::after {
  top: unset;
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table thead th.title {
    width: 115px;
  }
}
@media only screen and (min-width: 1280px) {
  .all-submissions-table thead th.title {
    width: 230px;
  }
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table thead th.phase {
    width: 150px;
  }
}
.all-submissions-table thead th.selected input[type=checkbox] {
  margin: 0 auto;
  display: block;
  width: 1.1rem;
  height: 1.1rem;
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table thead th.selected {
    width: 50px;
    padding-inline-end: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table thead th.comments {
    width: 110px;
  }
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table thead th.submit_time {
    width: 110px;
  }
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table thead th.screening_status {
    width: 110px;
  }
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table thead th.organization_name {
    width: 110px;
  }
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table thead th.id {
    width: 10ch;
    text-align: left;
  }
}
.all-submissions-table thead tr:hover {
  box-shadow: none;
}
.all-submissions-table tbody tr[data-archived=True] {
  background-color: var(--color-light-mid-grey);
}
.all-submissions-table tbody td.title {
  position: relative;
  padding-block-start: 15px;
  font-weight: var(--weight-bold);
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table tbody td.title {
    display: flex;
    align-items: center;
  }
}
@media only screen and (min-width: 1280px) {
  .all-submissions-table tbody td.title {
    display: table-cell;
  }
}
.all-submissions-table tbody td.phase span {
  display: inline-block;
  padding: 5px;
  font-size: 13px;
  font-weight: var(--weight-bold);
  color: var(--color-marine);
  text-align: center;
  background-color: var(--color-sky-blue);
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table tbody td.phase span {
    width: 100%;
  }
}
.all-submissions-table tbody td.comments {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table tbody td.comments {
    display: table-cell;
    font-size: 13px;
    text-align: center;
    vertical-align: middle;
    background: url("./../images/quote-outline.e5f1c530def6.svg") transparent no-repeat center center;
    background-size: 24px;
  }
}
.all-submissions-table tbody td.reviews_stats {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table tbody td.reviews_stats {
    display: table-cell;
  }
}
.all-submissions-table tbody td.selected {
  display: none;
  padding-inline-end: 0;
}
.all-submissions-table tbody td.selected input[type=checkbox] {
  margin: 0 auto;
  display: block;
  width: 1.1rem;
  height: 1.1rem;
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table tbody td.selected {
    display: table-cell;
  }
}
.all-submissions-table tbody td.fund, .all-submissions-table tbody td.round, .all-submissions-table tbody td.screening_status {
  hyphens: auto;
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table tbody td.organization_name {
    padding-inline-start: 15px;
  }
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table tbody td .arrow {
    width: 0;
    height: 0;
    content: "";
    border-left: 9px solid var(--color-primary);
    border-block-start: 6px solid transparent;
    border-block-end: 6px solid transparent;
    position: relative;
    display: inline-block;
    transform: rotate(0);
    transition: transform var(--transition);
  }
  .all-submissions-table tbody td .arrow:hover {
    cursor: pointer;
  }
}
.all-submissions-table tbody td > span.label-width {
  width: 90px;
}
.all-submissions-table tbody td > span.mobile-label {
  display: inline-block;
}
.all-submissions-table tbody td > span.mobile-label.phase, .all-submissions-table tbody td > span.mobile-label.title {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .all-submissions-table tbody td > span.mobile-label {
    display: none;
  }
}
.all-submissions-table__parent.is-expanded {
  background-color: var(--color-mist);
  border-block-end: 1px solid var(--color-light-mid-grey);
}
.all-submissions-table__parent.is-expanded + .all-submissions-table__child {
  border-block-end: 1px solid var(--color-light-mid-grey);
}
.all-submissions-table__parent.is-expanded + .all-submissions-table__child,
.all-submissions-table__parent.is-expanded + .all-submissions-table__child + .all-submissions-table__child {
  display: table-row;
}
.all-submissions-table__parent.is-expanded .arrow {
  transform: rotate(90deg);
}
.all-submissions-table__child {
  display: none;
  color: var(--color-mid-dark-grey);
  vertical-align: top;
  background-color: var(--color-mist);
  border: 0;
  border-block-end: 2px solid var(--color-light-grey);
}
.all-submissions-table__child:hover {
  box-shadow: none;
}
.all-submissions-table__child td {
  padding: 10px;
}
.all-submissions-table__child p {
  margin: 0;
  font-weight: var(--weight-bold);
  color: var(--color-default);
}
.all-submissions-table__child .title a {
  visibility: hidden;
}
.all-submissions-table__empty td {
  padding: 20px;
}
.all-submissions-table__toggle {
  padding: 0.5em;
  margin-block-start: -0.5em;
  cursor: pointer;
  vertical-align: top;
}
.all-submissions-table__toggle:hover {
  opacity: 0.7;
}

.all-reviews-table {
  font-size: 14px;
}
.all-reviews-table thead th.desc, .all-reviews-table thead th.asc {
  position: relative;
  color: var(--color-dark-grey);
}
.all-reviews-table thead th.desc::after, .all-reviews-table thead th.asc::after {
  position: absolute;
  inset-block-start: 50%;
  margin-inline-start: 3px;
}
.all-reviews-table thead th.desc a, .all-reviews-table thead th.asc a {
  color: inherit;
}
.all-reviews-table thead th.desc::after {
  width: 0;
  height: 0;
  content: "";
  border-bottom: 0.495rem solid currentcolor;
  border-inline-end: 0.33rem solid transparent;
  border-inline-start: 0.33rem solid transparent;
}
.all-reviews-table thead th.asc::after {
  width: 0;
  height: 0;
  content: "";
  border-top: 0.495rem solid currentcolor;
  border-inline-end: 0.33rem solid transparent;
  border-inline-start: 0.33rem solid transparent;
}
.all-reviews-table thead {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .all-reviews-table thead {
    display: table-header-group;
  }
}
.all-reviews-table thead tr:hover {
  box-shadow: none;
}
.all-reviews-table tbody td.title {
  position: relative;
  padding-block-start: 15px;
  padding-inline-start: 10px;
  font-weight: var(--weight-bold);
}
@media only screen and (min-width: 1024px) {
  .all-reviews-table tbody td.title {
    display: flex;
    align-items: center;
  }
}
@media only screen and (min-width: 1280px) {
  .all-reviews-table tbody td.title {
    display: table-cell;
  }
}
.all-reviews-table tbody td.title a {
  color: var(--color-primary);
}

.admin-bar {
  position: relative;
  padding-inline: var(--gutters);
  padding-block: var(--spacing);
  margin-inline: var(--gutters-reverse);
  color: var(--color-white);
  background-color: var(--color-dark-grey);
}
@media only screen and (min-width: 1280px) {
  .admin-bar {
    padding-inline: 0;
    margin-inline: calc(50% - 50vw);
  }
}
.admin-bar__inner {
  max-width: var(--site-width);
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .admin-bar__inner--with-button {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}
.admin-bar__heading {
  margin-block-end: 0;
}
.admin-bar__meta {
  margin: 0 0 10px;
}
.admin-bar__meta span {
  margin: 0 5px;
}
.admin-bar__back-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-lightest-blue);
  font-weight: var(--weight-bold);
}
.admin-bar__back-link::before {
  width: 0;
  height: 0;
  content: "";
  border-bottom: 0.495rem solid currentcolor;
  border-inline-end: 0.33rem solid transparent;
  border-inline-start: 0.33rem solid transparent;
  margin-inline-end: 0.5rem;
  transform: rotate(-90deg);
}
.app-open .admin-bar .submissions-count {
  display: none;
}

.actions-bar {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .actions-bar {
    display: flex;
    justify-content: space-between;
  }
}
.actions-bar__inner > * {
  margin-block-end: 20px;
}
@media only screen and (min-width: 1024px) {
  .actions-bar__inner {
    display: flex;
    align-items: center;
  }
  .actions-bar__inner > * {
    margin: 0 0 0 20px;
  }
  .actions-bar__inner > *:first-child {
    margin-inline-start: 0;
  }
}
.actions-bar__inner--left {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.actions-bar__inner--right {
  align-items: center;
}
.actions-bar__inner--batch-actions {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .actions-bar__inner--batch-actions {
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-quick);
  }
  .batch-actions-enabled .actions-bar__inner--batch-actions {
    opacity: 1;
    pointer-events: all;
  }
}
.actions-bar__total {
  background-color: var(--color-light-blue);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: 30px;
  min-width: 120px;
  text-align: center;
  font-weight: var(--weight-semibold);
}

.card {
  padding: 20px;
  margin-block-end: 20px;
  border: 1px solid var(--color-mid-grey);
}
.card--solid {
  background-color: var(--color-white);
}
.card__text {
  margin: 0 0 1rem;
}
.card__text:last-child {
  margin: 0;
}
.card__inner {
  margin-block-end: 1rem;
}
.card__inner:last-child {
  margin-block-end: 0;
}
.card__heading {
  margin-block-end: 0;
}
.card__reviewer-outcome {
  display: flex;
  align-items: center;
  margin-block-end: 1rem;
}
@media only screen and (min-width: 640px) {
  .card__reviewer-outcome {
    margin-inline-start: 1rem;
  }
}

.cookieconsent {
  position: fixed;
  inset-block-end: 0;
  color: var(--color-white);
  background-color: var(--color-dark-blue);
  border-block-start: 4px solid var(--color-light-blue);
  transform: translateY(100vh);
  transition: all var(--transition);
  overflow: hidden;
  max-height: 37.5rem;
}
@media only screen and (min-width: 1024px) {
  .cookieconsent {
    max-height: 19rem;
  }
}
.cookieconsent a {
  color: inherit;
  text-decoration-line: underline;
}
.cookieconsent__content {
  width: 200%;
  margin-left: 0;
  transition: all var(--transition);
}
.cookieconsent__content > div {
  width: 50%;
  height: 100%;
  float: left;
  display: flex;
  justify-content: center;
}
.cookieconsent__content > div > div {
  width: 70%;
}
.cookieconsent__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cookieconsent__actions > button {
  margin-top: 0.5rem;
  max-width: 22rem;
  min-width: 10rem;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .cookieconsent__actions {
    width: fit-content;
    display: block;
  }
  .cookieconsent__actions > button {
    width: auto;
  }
}
.cookieconsent__statement {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .cookieconsent__statement {
    display: block;
  }
}
.cookieconsent__info-wrapper {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .cookieconsent__info-wrapper {
    flex-direction: row;
    margin-block-end: 1rem;
  }
}
.cookieconsent__info {
  display: flex;
  flex-direction: column;
  justify-content: left;
  min-width: 250px;
  margin-bottom: 0.5rem;
}
.cookieconsent__info > * {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-block: 0.25rem;
}

.js-cookieconsent-open {
  transform: translateY(0);
}
.js-cookieconsent-show-learnmore-expand {
  max-height: 700px;
}
.js-cookieconsent-show-learnmore {
  margin-left: -100%;
}

.btn,
.button {
  padding: 0;
  background-color: transparent;
  background-image: none;
  border: 0;
  box-shadow: none;
  border-radius: 0.125rem;
}
.btn:hover,
.button:hover {
  cursor: pointer;
}
.btn:disabled, .btn.is-disabled,
.button:disabled,
.button.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.btn--primary,
.button--primary {
  padding: 0.5em 2rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-align: center;
  background: var(--color-light-blue);
  border: 1px solid var(--color-white);
  transition: color, background, border, var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  border: 1px solid var(--color-light-blue);
}
.btn--primary:hover, .btn--primary:focus, .btn--primary:active,
.button--primary:hover,
.button--primary:focus,
.button--primary:active {
  cursor: pointer;
  background: var(--color-dark-blue);
}
.form--filters .btn--primary,
.form--filters .button--primary {
  width: 100%;
  text-align: center;
  height: 45px;
}
.btn--project-action,
.button--project-action {
  padding: 0.5em 2rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-align: center;
  background: var(--color-light-blue);
  border: 1px solid var(--color-white);
  transition: color, background, border, var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  padding: 0.5rem 1.2rem;
}
.btn--project-action:hover, .btn--project-action:focus, .btn--project-action:active,
.button--project-action:hover,
.button--project-action:focus,
.button--project-action:active {
  cursor: pointer;
  background: var(--color-dark-blue);
}
.btn--project-action--white,
.button--project-action--white {
  padding: 0.5em 2rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  transition: color, background, border, var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  color: var(--color-light-blue);
  border: 1px solid var(--color-mid-grey);
  padding: 0.5rem 1.2rem;
}
.btn--project-action--white:hover, .btn--project-action--white:focus, .btn--project-action--white:active,
.button--project-action--white:hover,
.button--project-action--white:focus,
.button--project-action--white:active {
  cursor: pointer;
  background: var(--color-light-blue);
}
.btn--project-action--white:active, .btn--project-action--white:focus, .btn--project-action--white:hover,
.button--project-action--white:active,
.button--project-action--white:focus,
.button--project-action--white:hover {
  color: var(--color-white);
}
@media (min-width: 465px) {
  .btn--login,
  .button--login {
    width: 20rem;
  }
}
.btn--transparent,
.button--transparent {
  padding: 0.5em 2rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-align: center;
  background: transparent;
  border: 1px solid var(--color-white);
  transition: color, background, border, var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}
.btn--transparent:hover, .btn--transparent:focus, .btn--transparent:active,
.button--transparent:hover,
.button--transparent:focus,
.button--transparent:active {
  cursor: pointer;
  background: var(--color-black);
}
.btn--transparent:active, .btn--transparent:focus, .btn--transparent:hover,
.button--transparent:active,
.button--transparent:focus,
.button--transparent:hover {
  color: var(--color-white);
}
.btn--mobile-standout,
.button--mobile-standout {
  color: var(--color-white);
  border-color: var(--color-white);
  max-width: 250px;
  margin: 1rem auto 0;
}
@media only screen and (min-width: 768px) {
  .btn--mobile-standout,
  .button--mobile-standout {
    display: none;
  }
}
.btn--cookieconsent,
.button--cookieconsent {
  padding: 0.5em 2rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-align: center;
  background: transparent;
  border: 1px solid var(--color-white);
  transition: color, background, border, var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline;
}
.btn--cookieconsent:hover, .btn--cookieconsent:focus, .btn--cookieconsent:active,
.button--cookieconsent:hover,
.button--cookieconsent:focus,
.button--cookieconsent:active {
  cursor: pointer;
  background: var(--color-white);
}
.btn--cookieconsent:focus, .btn--cookieconsent:hover,
.button--cookieconsent:focus,
.button--cookieconsent:hover {
  color: var(--color-dark-blue);
}
.btn--secondary, .btn--white,
.button--secondary,
.button--white {
  padding: 0.5em 2rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  transition: color, background, border, var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  color: var(--color-light-blue);
  border: 1px solid var(--color-mid-grey);
}
.btn--secondary:hover, .btn--secondary:focus, .btn--secondary:active, .btn--white:hover, .btn--white:focus, .btn--white:active,
.button--secondary:hover,
.button--secondary:focus,
.button--secondary:active,
.button--white:hover,
.button--white:focus,
.button--white:active {
  cursor: pointer;
  background: var(--color-light-blue);
}
.btn--secondary:active, .btn--secondary:focus, .btn--secondary:hover, .btn--white:active, .btn--white:focus, .btn--white:hover,
.button--secondary:active,
.button--secondary:focus,
.button--secondary:hover,
.button--white:active,
.button--white:focus,
.button--white:hover {
  color: var(--color-white);
}
.btn--blue-white,
.button--blue-white {
  padding: 0.5em 2rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  transition: color, background, border, var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  color: var(--color-light-blue);
  border: 1px solid var(--color-light-blue);
}
.btn--blue-white:hover, .btn--blue-white:focus, .btn--blue-white:active,
.button--blue-white:hover,
.button--blue-white:focus,
.button--blue-white:active {
  cursor: pointer;
  background: var(--color-light-blue);
}
.btn--blue-white:focus,
.button--blue-white:focus {
  color: var(--color-light-blue);
}
.btn--blue-white:hover,
.button--blue-white:hover {
  color: var(--color-white);
}
.btn-danger, .btn--warning,
.button-danger,
.button--warning {
  padding: 0.5em 2rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-align: center;
  background: var(--color-error);
  border: 1px solid var(--color-white);
  transition: color, background, border, var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn--warning:hover, .btn--warning:focus, .btn--warning:active,
.button-danger:hover,
.button-danger:focus,
.button-danger:active,
.button--warning:hover,
.button--warning:focus,
.button--warning:active {
  cursor: pointer;
  background: var(--color-error);
}
.btn-danger:focus, .btn--warning:focus,
.button-danger:focus,
.button--warning:focus {
  background-color: var(--color-pastel-red);
}
.btn--filters,
.button--filters {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  padding: 15px 20px;
  font-weight: var(--weight-normal);
  color: var(--color-default);
  border: 1px solid var(--color-light-mid-grey);
  transition: none;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .btn--filters,
  .button--filters {
    background: none;
    padding: 10px;
    border: 0;
    justify-content: flex-start;
    opacity: 0.7;
  }
}
.btn--filters-header,
.button--filters-header {
  display: flex;
}
.btn--search,
.button--search {
  position: absolute;
  inset-block-start: 0.65em;
  inset-inline-end: 10px;
}
.btn--search svg,
.button--search svg {
  fill: var(--color-primary);
  height: 24px;
}
.btn--left-space,
.button--left-space {
  margin-inline-start: 20px;
}
.btn--narrow,
.button--narrow {
  padding: 0.25rem 0.75rem;
  font-size: 15px;
  vertical-align: middle;
}
@media only screen and (min-width: 1024px) {
  .btn--narrow,
  .button--narrow {
    padding: 0.25rem 0.75rem;
  }
}
@media only screen and (min-width: 1024px) {
  .btn--wide,
  .button--wide {
    padding: 0.5em 80px;
  }
}
.btn--full-width,
.button--full-width {
  width: 100%;
  text-align: center;
}
.btn--half-width,
.button--half-width {
  width: 50%;
  padding: 10px;
  text-align: center;
}
.btn--half-width:last-child,
.button--half-width:last-child {
  margin-inline-end: 0;
}
.btn--bottom-space,
.button--bottom-space {
  margin-block-end: 10px;
}
.btn--bottom-space:last-child,
.button--bottom-space:last-child {
  margin-block-end: 0;
}
.btn--actions,
.button--actions {
  position: relative;
  display: block;
  background-color: var(--color-white);
}
.btn--actions:active,
.button--actions:active {
  background: var(--color-light-blue-90);
}
.btn--actions::after,
.button--actions::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 15px;
  font-size: 30px;
  content: "+";
  line-height: 1.2;
}
.btn--actions.is-active,
.button--actions.is-active {
  color: var(--color-dark-blue);
  background: var(--color-light-blue-90);
}
.btn--actions.is-active::after,
.button--actions.is-active::after {
  inset-block-start: -12px;
  content: "_";
}
@media only screen and (min-width: 768px) {
  .btn--actions,
  .button--actions {
    display: none;
  }
}
.btn--top-space,
.button--top-space {
  margin-block-start: 20px;
}
.btn--submit,
.button--submit {
  min-width: 200px;
  margin-inline-end: 10px;
  text-align: center;
}
.btn--compare,
.button--compare {
  width: 75px;
  padding: 3px;
  margin-block-start: 10px;
  font-size: 12px;
  font-weight: var(--weight-bold);
  text-align: center;
  text-transform: uppercase;
  border: 1px solid currentcolor;
  transition: background-color, color, border, var(--transition-quick);
}
@media only screen and (min-width: 768px) {
  .btn--compare,
  .button--compare {
    margin-block-start: 0;
  }
}
.btn--compare:focus, .btn--compare:hover,
.button--compare:focus,
.button--compare:hover {
  color: var(--color-white);
  background-color: var(--color-light-blue);
  border: 1px solid var(--color-light-blue);
}
.btn--arrow-pixels-white,
.button--arrow-pixels-white {
  display: flex;
  align-items: center;
}
.btn--arrow-pixels-white svg,
.button--arrow-pixels-white svg {
  width: 10px;
  height: 14px;
  margin-inline-start: 10px;
  fill: var(--color-white);
}
.btn--action,
.button--action {
  display: flex;
  color: var(--color-default);
  align-items: center;
  transition: opacity var(--transition);
  font-weight: var(--weight-semibold);
  position: relative;
}
.btn--action:hover,
.button--action:hover {
  opacity: 0.7;
}
.btn--action:disabled,
.button--action:disabled {
  color: var(--color-mid-dark-grey);
  cursor: not-allowed;
  pointer-events: all;
}
.btn--action:disabled::before,
.button--action:disabled::before {
  content: attr(data-tooltip);
  pointer-events: none;
  position: absolute;
  width: 200px;
  padding: 12px;
  font-size: 12px;
  font-weight: var(--weight-normal);
  white-space: normal;
  background: var(--color-light-blue);
  opacity: 0;
  transition: opacity var(--transition);
  inset-block-end: 45px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  text-align: left;
  line-height: 1rem;
  border: 1px solid var(--color-white);
  border-radius: 0.125rem;
}
.btn--action:disabled::after,
.button--action:disabled::after {
  width: 0;
  height: 0;
  content: "";
  border-top: 10.5px solid var(--color-primary);
  border-inline-end: 7px solid transparent;
  border-inline-start: 7px solid transparent;
  position: absolute;
  inset-block-start: -22px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 10;
}
.btn--action:disabled svg,
.button--action:disabled svg {
  fill: var(--color-mid-dark-grey);
}
.btn--action:disabled:hover,
.button--action:disabled:hover {
  opacity: 1;
}
.btn--action:disabled:hover::before,
.button--action:disabled:hover::before {
  pointer-events: all;
  z-index: 10;
  opacity: 1;
}
.btn--action:disabled:hover::after,
.button--action:disabled:hover::after {
  opacity: 1;
}
.btn--action svg,
.button--action svg {
  fill: var(--color-light-blue);
  width: 1em;
  height: 1em;
  margin-inline-end: 0.5rem;
  pointer-events: none;
}
.btn--link,
.button--link {
  color: var(--color-primary);
}
.btn--remove,
.button--remove {
  color: var(--color-tomato);
}
.btn--tooltip-disabled,
.button--tooltip-disabled {
  background-color: var(--color-button-disabled);
  border: 1px solid var(--color-button-disabled);
}
.btn--tooltip-disabled:hover, .btn--tooltip-disabled:active, .btn--tooltip-disabled:focus,
.button--tooltip-disabled:hover,
.button--tooltip-disabled:active,
.button--tooltip-disabled:focus {
  cursor: default;
  background-color: var(--color-button-disabled);
}
.btn--flag.flagged,
.button--flag.flagged {
  position: relative;
}
.btn--flag.flagged::after,
.button--flag.flagged::after {
  content: "⚑";
  color: var(--color-tomato);
  position: absolute;
  inset-block-start: 4px;
  padding-inline-start: 5px;
  font-size: var(--font-size-delta);
  line-height: 1;
}
.btn--unflag,
.button--unflag {
  padding: 0.5em 2rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-align: center;
  background: var(--color-light-blue);
  border: 1px solid var(--color-white);
  transition: color, background, border, var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  font-size: 12px;
  /* stylelint-disable-next-line no-duplicate-selectors */
}
.btn--unflag:hover, .btn--unflag:focus, .btn--unflag:active,
.button--unflag:hover,
.button--unflag:focus,
.button--unflag:active {
  cursor: pointer;
  background: var(--color-dark-blue);
}
@media only screen and (min-width: 1024px) {
  .btn--unflag,
  .button--unflag {
    padding: 3px 5px;
  }
}
.btn--unflag,
.button--unflag {
  padding-inline-end: 18px;
}
@media only screen and (min-width: 1024px) {
  .btn--unflag,
  .button--unflag {
    padding-inline-end: 18px;
  }
}
.btn--unflag.flagged::after,
.button--unflag.flagged::after {
  inset-block-start: 2px;
  padding-inline-start: 3px;
  font-size: var(--font-size-zeta);
}
.btn-info, .btn-link,
.button-info,
.button-link {
  padding: 0.5em 2rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-align: center;
  background: var(--color-light-blue);
  border: 1px solid var(--color-white);
  transition: color, background, border, var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  line-height: 1.15;
}
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-link:hover, .btn-link:focus, .btn-link:active,
.button-info:hover,
.button-info:focus,
.button-info:active,
.button-link:hover,
.button-link:focus,
.button-link:active {
  cursor: pointer;
  background: var(--color-dark-blue);
}
.btn--like-active svg,
.button--like-active svg {
  fill: var(--color-dark-blue);
}
.btn--dislike-active svg,
.button--dislike-active svg {
  fill: var(--color-tomato);
}

.export-btn-width {
  width: max-content;
}

.wmd-preview {
  background-color: #f3f4f6;
  padding: 0 10px;
  width: 100%;
  overflow: hidden; /* prevent collapsing margins */
}
.wmd-preview ul {
  padding-inline-start: 20px;
  list-style: outside disc;
}
.wmd-preview ol {
  list-style: inside decimal;
}

.wmd-button-row {
  display: flex;
  background-color: var(--color-white);
  padding: 4px;
}

.wmd-spacer {
  background-color: var(--color-mid-grey);
  width: 1px;
  height: 20px;
  margin: 0 14px;
  list-style: none;
}

.wmd-button {
  width: 20px;
  height: 20px;
  margin: 0 2px;
  list-style: none;
  cursor: pointer;
}
.wmd-button > span {
  display: inline-block;
  background-image: url("./../images/editor-buttons.235c6a346ad7.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 20px;
  height: 20px;
}

.wmd-prompt-background {
  background-color: var(--color-black);
}

.wmd-prompt-dialog {
  background-color: var(--color-light-grey);
  padding: 0.5em;
  border: 4px solid var(--color-primary);
}

.feed__item {
  position: relative;
  display: flex;
  margin-block-end: 1.5em;
}
.feed__item:last-child {
  border-block-end: 0;
}
.feed__item--collaps {
  position: relative;
  max-height: 300px;
  overflow: hidden;
}
.feed__item ul {
  padding-inline-start: 20px;
  list-style: outside disc;
}
.feed__item ol {
  list-style: inside decimal;
}
.feed__label {
  margin: 0;
  color: var(--color-white);
  text-align: center;
}
.feed__label--note {
  background-color: var(--color-error);
}
.feed__label--determination {
  background-color: var(--color-ocean);
}
.feed__label--comment, .feed__label--message {
  background-color: var(--color-grass);
}
.feed__label--activity, .feed__label--action {
  background-color: var(--color-mint);
}
.feed__label--submission {
  background-color: var(--color-green);
}
.feed__label--project {
  background-color: var(--color-mint);
}
.feed__label--mobile {
  display: block;
  margin-inline-end: 10px;
}
@media only screen and (min-width: 640px) {
  .feed__label--mobile {
    display: none;
  }
}
.feed__pre-content {
  width: 110px;
}
.feed__content {
  width: 100%;
}
.feed__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: clamp(0.75rem, 0.5rem + 0.625vw, 1rem);
}
@media only screen and (min-width: 640px) {
  .feed__meta {
    margin-block-end: 10px;
  }
}
.feed__meta-item {
  margin: 0 10px 0 0;
}
.feed__meta-item span {
  font-weight: var(--weight-bold);
}
@media only screen and (min-width: 640px) {
  .feed__meta-item {
    margin: 0 15px 0 0;
  }
}
.feed__meta-item--edit-button {
  padding-inline-start: 0.5em;
}
.feed__meta-item--last-edited {
  margin-inline-end: 5px;
  color: var(--color-mid-dark-grey);
}
.feed__meta-item--last-edited span {
  font-weight: var(--weight-normal);
}
.feed__meta-item--right {
  margin-inline-start: auto;
}
.feed__meta-item--right span {
  font-weight: var(--weight-normal);
}
.feed__meta-item--progress {
  width: 100%;
  margin: 5px 0 0;
  font-size: var(--font-size-milli);
  color: var(--color-black-50);
}
@media only screen and (min-width: 640px) {
  .feed__meta-item--progress {
    width: auto;
    margin: 0 20px 0 0;
  }
}
.feed__meta-item--progress span:first-child::after {
  width: 0;
  height: 0;
  content: "";
  border-left: 6px solid var(--color-black-50);
  border-block-start: 4px solid transparent;
  border-block-end: 4px solid transparent;
  display: inline-block;
  margin: 0 5px 0 10px;
}
.feed__comment {
  word-break: break-word;
  max-width: var(--max-text-line-length);
}
.feed__related-item {
  white-space: nowrap;
}
.feed__related-item svg {
  width: 10px;
  height: 14px;
  margin-inline-start: 10px;
  margin-block-start: 0.35em;
  fill: var(--color-dark-blue);
}
.feed__heading {
  margin-block-end: 0;
}
@media only screen and (min-width: 640px) {
  .feed__heading {
    width: 90%;
    font-size: 18px;
  }
}
.feed__heading-status {
  padding: 3px 10px;
  font-size: var(--font-size-milli);
  font-weight: var(--weight-bold);
  color: var(--color-marine);
  text-align: center;
  text-transform: uppercase;
  background-color: var(--color-sky-blue);
}
.feed__show-button {
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 3em 0 0.5em;
  background-image: linear-gradient(to bottom, var(--color-white-10), var(--color-white));
}

.filters {
  display: none;
}
.filters.filters-open {
  position: fixed;
  inset-inline-start: 0;
  inset-inline-end: 0;
  inset-block-start: 0;
  inset-block-end: 0;
  z-index: 9;
  display: block;
  width: 100%;
  height: 100vh;
  background: var(--color-white);
}
@media only screen and (min-width: 1024px) {
  .filters {
    display: block;
    max-height: 0;
    transition: max-height var(--transition);
    transition-delay: 30ms;
    pointer-events: none;
  }
  .filters.filters-open {
    position: relative;
    inset-inline-start: auto;
    inset-inline-end: auto;
    inset-block-start: auto;
    inset-block-end: auto;
    height: auto;
    background: transparent;
    max-height: fit-content;
    pointer-events: all;
  }
}
.filters__header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px 0;
}
@media only screen and (min-width: 1024px) {
  .filters__header {
    display: none;
  }
}
.filters__header > div[class^=js-] {
  color: var(--color-primary);
}
.filters__header > div[class^=js-]:hover {
  cursor: pointer;
}
.filters__button {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  color: var(--color-primary);
  background: transparent;
}

@media only screen and (min-width: 1024px) {
  #show-filters-button {
    display: none;
  }
}

.hypha-grid {
  display: grid;
  margin-block-end: 1rem;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.hypha-grid--two {
  grid-template-columns: 100%;
  gap: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .hypha-grid--two {
    grid-template-columns: 1fr 1fr;
  }
}
.hypha-grid--two.delete {
  grid-template-columns: 1fr;
}
.form--comments .hypha-grid--two {
  margin: 20px 0 0;
  gap: 10px;
  grid-template-columns: 100px 100px;
}
.wrapper--comments .hypha-grid--two {
  grid-template-columns: 1fr;
}
.hypha-grid--two + br {
  display: none;
}
.hypha-grid--narrow {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .hypha-grid--narrow {
    text-align: left;
  }
}
.hypha-grid--no-margin {
  margin: 0;
}
.hypha-grid--proposal-info {
  grid-template-columns: 100%;
  gap: 10px;
  margin: 0 0 1rem;
}
@media only screen and (min-width: 640px) {
  .hypha-grid--proposal-info {
    margin: 0 0 1.5rem;
    grid-template-columns: 1fr 1fr;
  }
}
.hypha-grid--proposal-info * {
  margin: 0;
}
.hypha-grid--status-update {
  grid-template-columns: 100%;
}
@media only screen and (min-width: 640px) {
  .hypha-grid--status-update {
    grid-template-columns: 100%;
  }
}
@media only screen and (min-width: 640px) {
  .hypha-grid__cell--span-two {
    grid-column: auto/span 2;
  }
}

.heading--no-margin {
  margin: 0;
}
.heading--meta {
  display: flex;
  flex-wrap: wrap;
  margin-block-start: 0.25rem;
}
.heading--meta span::after {
  padding-inline: 0.25rem;
  content: "•";
}
.heading--meta span:last-child::after {
  padding-inline: 0;
  content: "";
}
.heading--submission-meta {
  display: flex;
  flex-direction: column;
  margin-block-start: 20px;
  font-weight: var(--weight-normal);
  color: var(--color-black-40);
}
@media only screen and (min-width: 1024px) {
  .heading--submission-meta {
    flex-direction: row;
    margin-block-start: 0;
  }
}
.heading--submission-meta span {
  margin-inline-end: 15px;
}
.heading--small {
  font-size: 12px;
}
.heading--light-grey {
  color: var(--color-black-40);
}
.heading--uppercase {
  text-transform: uppercase;
}
.heading--normal {
  font-weight: var(--weight-normal);
  margin-block-end: 0.25rem;
}
.heading--bold {
  font-weight: var(--weight-bold);
}
.heading--activity-feed {
  line-height: 1.1;
  text-align: center;
  font-size: clamp(0.75rem, 0.375rem + 0.9375vw, 1.125rem);
}
@media only screen and (min-width: 768px) {
  .heading--activity-feed {
    line-height: auto;
    text-align: left;
  }
}
.heading--submission-count {
  display: inline-block;
  padding: 2px 10px;
  font-size: 13px;
  font-weight: var(--weight-bold);
  color: var(--color-marine);
  text-align: center;
  background-color: var(--color-sky-blue);
  border-radius: 20%;
  border: 1px solid var(--color-light-blue-90);
  vertical-align: middle;
}

.list--no-margin {
  margin: 0;
}
.list--opinion {
  position: relative;
  font-size: 14px;
  border-block-start: 1px solid var(--color-mid-grey);
  border-block-end: 1px solid var(--color-mid-grey);
  margin: 10px 0;
  padding: 5px 0;
}
.list--opinion .list__item--opinion:first-child span:last-child::before, .list--opinion .list__item--opinion:first-child span:last-child::after {
  position: absolute;
  inset-block-start: -15px;
  inset-inline-end: 5px;
}
.list--opinion .list__item--opinion:first-child span:last-child::after {
  width: 0;
  height: 0;
  content: "";
  border-bottom: 9px solid var(--color-mist);
  border-inline-end: 6px solid transparent;
  border-inline-start: 6px solid transparent;
  inset-block-start: -13px;
}
.list--opinion .list__item--opinion:first-child span:last-child::before {
  width: 0;
  height: 0;
  content: "";
  border-bottom: 9px solid var(--color-mid-grey);
  border-inline-end: 6px solid transparent;
  border-inline-start: 6px solid transparent;
}
.list__item--reviewer {
  display: grid;
  grid-template-columns: 40% 40% 20%;
  column-gap: 10px;
}
.list__item--reviewer-name {
  overflow: hidden;
  font-weight: var(--weight-bold);
  text-overflow: ellipsis;
}
.list__item--reviewer-name > img {
  margin-inline-start: 10px;
}
.list__item--opinion .list__item--reviewer-name {
  font-weight: var(--weight-normal);
}
.list__item--reviewer-outcome {
  color: var(--color-tomato);
}
.list__item--reviewer-outcome.agree {
  color: var(--color-green);
}
.list__item--margin {
  margin-top: 10px;
  margin-bottom: 5px;
}
.list__item a {
  text-decoration: underline;
}
.list__item--avg-score {
  font-weight: var(--weight-bold);
}

.list-reveal {
  padding-bottom: 16px;
}
.list-reveal--determination {
  background-color: var(--color-white);
  margin-block-end: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .list-reveal--determination {
    max-width: 70%;
  }
}
.list-reveal__item {
  display: block;
  font-size: var(--font-size-zeta);
  padding: 0.75em 1em;
  border-block-end: 2px solid var(--color-light-mid-grey);
  margin: 0;
  color: var(--color-default);
}
.list-reveal__item--meta {
  color: var(--color-dark-blue);
  font-weight: var(--weight-semibold);
  display: flex;
  justify-content: space-between;
  margin: 0 -16px;
}
.list-reveal__item--determination {
  border: 1px solid var(--color-light-mid-grey);
  margin: 0;
}
.list-reveal__list {
  max-height: 200px;
  overflow: scroll;
  margin: 0 -24px 1.5rem;
  padding: 0;
  border-block-end: 2px solid var(--color-light-mid-grey);
  box-shadow: inset 0 -10px 20px -10px var(--color-mid-grey);
  transition: max-height var(--transition);
}
.list-reveal__list--determination {
  border-inline-start: 1px solid var(--color-light-mid-grey);
  border-inline-end: 1px solid var(--color-light-mid-grey);
  margin: 0;
}
.list-reveal__list.is-closed {
  max-height: 0;
  border-block-end: 0;
}
.list-reveal__link {
  text-decoration: underline;
}
.list-reveal__open-icon {
  width: 20px;
  height: 20px;
  fill: var(--color-dark-grey);
  opacity: 0;
  transition: opacity var(--transition-quick);
  pointer-events: none;
}
.list-reveal__item:hover .list-reveal__open-icon {
  opacity: 1;
}

.modal {
  display: none;
  width: calc(100% - 40px);
  padding: 0;
}
@media only screen and (min-width: 640px) {
  .modal {
    width: 580px;
    padding: 30px;
  }
}
.modal__header-bar {
  color: var(--color-white);
  background-color: var(--color-dark-blue);
  margin: -24px -24px 20px;
  padding: 15px;
  text-align: center;
}
.modal__header-bar--no-bottom-space {
  margin-block-end: 0;
}
.modal__project-header-bar {
  color: var(--color-white);
  background-color: var(--color-dark-blue);
  margin: -24px -24px 20px;
  padding: 15px 24px;
  text-align: left;
}
.modal__project-header-bar--no-bottom-space {
  margin-block-end: 0;
}
.modal__list {
  max-height: 200px;
  overflow: scroll;
  margin: 0 -24px 20px;
  padding: 0;
  border-block-end: 2px solid var(--color-light-mid-grey);
  box-shadow: inset 0 -10px 20px -10px var(--color-mid-grey);
  transition: max-height var(--transition);
}
.modal__list.is-closed {
  max-height: 0;
  border-block-end: 0;
}
.modal__list-item {
  display: block;
  font-size: var(--font-size-zeta);
  padding: 12px 28px;
  border-block-end: 2px solid var(--color-light-mid-grey);
  margin: 0;
  color: var(--color-default);
}
.modal__list-item--meta {
  color: var(--color-dark-blue);
  font-weight: var(--weight-semibold);
  display: flex;
  justify-content: space-between;
  margin: 0 -24px;
}
.modal__hide-link {
  text-decoration: underline;
}
.modal__open-link-icon {
  width: 20px;
  height: 20px;
  fill: var(--color-dark-grey);
  opacity: 0;
  transition: opacity var(--transition-quick);
  pointer-events: none;
}
.modal__list-item:hover .modal__open-link-icon {
  opacity: 1;
}

.ots-dim {
  opacity: 0.5;
}

.ots-modal {
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 50%;
  height: 200px;
  transform: translate(-50%, -50%);
  padding: 2rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-dark-grey);
}

.rich-text {
  margin-block-end: 2rem;
  word-break: break-word;
  max-width: var(--max-text-line-length);
}
.rich-text--answers > section {
  margin: 0 0 2rem;
}
.rich-text--answers > section p:first-of-type {
  margin-block-start: 0;
}
.rich-text--answers > section p:empty {
  margin: 0;
}
.rich-text h1 {
  font-size: 1.296rem;
  margin-block-end: 1em;
  font-weight: 600;
  line-height: 1.3333;
}
.rich-text h1:not(:first-child) {
  margin-block-start: 2em;
}
.rich-text h2 {
  font-size: 1.215rem;
  margin-block-start: 1.6em;
  margin-block-end: 0.6em;
  line-height: 1.6;
  font-weight: 600;
}
.rich-text h3,
.rich-text h4:not(.question) {
  font-size: 1.138rem;
  margin-block-start: 1.5em;
  margin-block-end: 0.5em;
  line-height: 1.5;
}
.rich-text h5,
.rich-text h6 {
  font-size: 1.067rem;
  margin-block-start: 1.4em;
  margin-block-end: 0.4em;
  line-height: 1.4;
}
.rich-text--hidden {
  display: none;
}
.rich-text--hidden.is-open {
  display: block;
}
.rich-text__table {
  overflow: auto;
  margin-block: 1.25rem;
}
.rich-text__table > table {
  margin-block: 0;
}
.rich-text ul.remove-list-style {
  padding: 0;
  list-style: none;
}

.tox .tox-statusbar__wordcount {
  padding-inline: 0.5rem;
}
.tox .tox-statusbar__wordcount::after {
  content: attr(data-after-word-count);
}
.tox .tox-statusbar__wordcount.word-count-warning, .tox .tox-statusbar__wordcount.word-count-warning-2 {
  background-color: var(--color-pastel-red);
  font-weight: bold;
}
.tox .tox-statusbar__wordcount.word-count-warning-2 {
  background-color: var(--color-error);
  color: var(--color-white);
}

@media only screen and (min-width: 768px) {
  .sidebar {
    width: 345px;
  }
}
.sidebar__inner {
  padding: 20px;
  margin-block-end: 20px;
  border: 1px solid var(--color-mid-grey);
}
.sidebar__inner--heading > .arrow {
  width: 0;
  height: 0;
  border-left: 9px solid var(--color-light-blue);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: relative;
  display: inline-block;
  margin-left: 10px;
  transform: rotate(0);
  transition: transform 0.25s ease-out;
  cursor: pointer;
}
.sidebar__inner.is-expanded .arrow {
  transform: rotate(90deg);
}
.sidebar__inner--light-blue {
  background-color: var(--color-light-blue-90);
}
@media only screen and (min-width: 768px) {
  .sidebar__inner--actions--instructions {
    margin-block-start: 10px;
    margin-inline-start: 10px;
  }
}
.sidebar__project {
  position: -webkit-sticky; /* for Safari */
  position: sticky;
  align-self: flex-start;
  inset-block-start: 2rem;
}
.sidebar__paf-approvals--pending {
  color: var(--color-mid-grey);
}
.sidebar__paf-approvals--approved {
  color: var(--color-black);
}
.sidebar__separator {
  position: relative;
  font-size: 12px;
  font-weight: var(--weight-bold);
  color: var(--color-black-40);
  text-transform: uppercase;
}
.sidebar__separator::after {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: 0;
  width: calc(100% - 60px);
  height: 1px;
  background-color: var(--color-black-20);
  content: "";
}
.sidebar__separator--medium::after {
  width: calc(100% - 120px);
}

.tabs {
  margin-block-start: var(--spacing);
  margin-block-end: var(--spacing-reverse);
}
.tabs__container {
  display: flex;
}
.tabs__content {
  display: none;
}
.tabs__content--current {
  display: inherit;
}

.tab__link {
  position: relative;
  padding: 10px;
  font-weight: var(--weight-bold);
  hyphens: auto;
  color: var(--color-mid-grey);
  text-transform: uppercase;
  text-decoration: underline;
  font-size: clamp(0.75rem, 0.5625rem + 0.46875vw, 0.9375rem);
}
.tab__item {
  position: relative;
  padding: 10px;
  font-weight: var(--weight-bold);
  hyphens: auto;
  color: var(--color-mid-grey);
  text-transform: uppercase;
  transition: color, background-color, 0.1s ease-out;
  font-size: clamp(0.75rem, 0.5625rem + 0.46875vw, 0.9375rem);
}
@media only screen and (min-width: 640px) {
  .tab__item {
    width: 33%;
    padding: 15px;
  }
}
@media only screen and (min-width: 640px) {
  .tab__item {
    width: auto;
    padding: 0.75rem 1rem;
  }
}
.tab__item:hover {
  color: var(--color-light-blue);
  background-color: rgba(255, 255, 255, 0.8);
}
.tab__item--alt {
  font-size: var(--font-size-zeta);
  font-weight: var(--weight-semibold);
  padding: 0.5rem 1rem;
  text-transform: none;
  display: inline-block;
  border-block-end: 3px solid transparent;
  color: var(--color-mid-dark-grey);
  width: auto;
}
.tab__item--alt:hover {
  color: var(--color-default);
}
.tab__item--alt.tab__item--active {
  background-color: transparent;
  border-block-end: 3px solid var(--color-primary);
}
.tab__item--alt.tab__item--active:hover {
  color: var(--color-default);
  background-color: transparent;
}
.tab__item--active {
  color: var(--color-default);
  cursor: default;
  background-color: var(--color-bg-default);
}
.tab__item--active:hover {
  background-color: var(--color-bg-default);
}
.tab__item--right {
  display: none;
}
@media only screen and (min-width: 640px) {
  .tab__item--right {
    display: block;
    margin-inline-start: auto;
  }
}

.status-bar {
  --bar: 3px;
  --dot: 20px;
  --triangle: 5px;
  --tooltip-padding: 10px;
  --tooltip-max-width: 12ch;
  --tooltip-margin-top: 17px;
  display: none;
}
@media only screen and (min-width: 768px) {
  .status-bar {
    display: flex;
  }
}
@media only screen and (min-width: 768px) {
  .status-bar--mobile {
    display: none;
  }
}
.status-bar--small {
  --tooltip-max-width: 10ch;
  width: 100%;
  max-width: 750px;
  margin-inline-end: 30px;
  margin-inline-start: 16px;
}
.status-bar__subheading {
  display: inline-block;
  padding: 5px 10px;
  color: var(--color-white);
  background-color: var(--color-tomato);
}
.status-bar__text {
  font-size: var(--font-size-milli);
  font-weight: var(--weight-bold);
}
.status-bar__item {
  flex: 1;
  position: relative;
  padding-block-start: var(--tooltip-margin-top);
  border-block-start: var(--bar) solid var(--color-mid-grey);
}
.status-bar__item::before {
  display: flex;
  place-items: center;
  position: absolute;
  inset-block-start: calc(-1 * var(--dot) / 2);
  inset-inline-start: calc(-1 * var(--dot) / 2);
  width: var(--dot);
  height: var(--dot);
  background: var(--color-dark-grey);
  border: calc(var(--dot) / 4) solid var(--color-mid-grey);
  border-radius: 50%;
  content: "";
}
.status-bar--small .status-bar__item::before {
  background: var(--color-white);
}
.status-bar__item--is-current::before {
  background: var(--color-white);
  border-color: var(--color-tomato);
}
.status-bar__item--is-current:last-of-type {
  border-color: var(--color-primary);
}
.status-bar__item--is-complete {
  border-color: var(--color-primary);
}
.status-bar__item--is-complete::before {
  font-size: var(--font-size-milli);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
  content: "✓";
}
.status-bar--small .status-bar__item--is-complete::before {
  background: var(--color-primary);
}
.status-bar__item:first-of-type::before {
  inset-inline-start: 0;
}
.status-bar__item:last-of-type {
  flex: 0;
}
.status-bar__item:last-of-type::before {
  inset-inline-start: auto;
  inset-inline-end: 0;
}
.status-bar__tooltip {
  --tooltip-width: min(var(--tooltip-max-width), var(--tooltip-chars));
  width: var(--tooltip-width);
  margin-inline-start: calc(-1 * var(--tooltip-width) / 2 - 5px);
  text-align: center;
  padding-block: var(--tooltip-padding);
  color: var(--color-mid-grey);
}
.status-bar__item--is-complete .status-bar__tooltip {
  color: var(--color-primary);
}
.status-bar__item--is-current .status-bar__tooltip {
  width: calc(var(--tooltip-width) + var(--tooltip-padding));
  position: relative;
  color: var(--color-white);
  background-color: var(--color-tomato);
  padding-inline: var(--tooltip-padding);
  border-radius: 0.125rem;
}
.status-bar__item--is-current .status-bar__tooltip::before {
  width: 0;
  height: 0;
  content: "";
  border-bottom: 7.5px solid var(--color-tomato);
  border-inline-end: 5px solid transparent;
  border-inline-start: 5px solid transparent;
  position: absolute;
  inset-block-start: calc(-1 * var(--triangle) - 2px);
  inset-inline-start: calc(50% - var(--triangle));
}
.status-bar__item--is-current:first-of-type .status-bar__tooltip::before {
  inset-inline-start: var(--triangle);
}
.status-bar__item--is-current:last-of-type .status-bar__tooltip::before {
  inset-inline-start: initial;
  inset-inline-end: var(--triangle);
}
.status-bar__item:first-of-type .status-bar__tooltip {
  margin-inline-start: initial;
  text-align: start;
}
.status-bar__item:last-of-type .status-bar__tooltip {
  margin-inline-start: initial;
  text-align: end;
}

.form--with-p-tags p {
  margin: 0 0 10px;
}
.form--with-p-tags p label {
  display: block;
  margin-block-end: 0.5em;
  font-weight: var(--weight-bold);
}
.form--with-p-tags button {
  margin-block-start: 1.5rem;
}
.form--width {
  flex-grow: 2;
}
.form--score-box {
  display: none;
  background-color: var(--color-light-blue);
  color: var(--color-white);
  padding: 0.5em 60px;
  font-weight: 700;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  margin-top: 10px;
  height: 2.5rem;
}
.form--error-inline .form__error-text {
  padding-inline-start: 0.5rem;
  position: relative;
  max-width: 100%;
}
.form--error-inline .form__error-text::before {
  display: none;
}
.form__group {
  position: relative;
  margin-block-start: 0.5rem;
  margin-block-end: 1.5rem;
}
.form__group:nth-of-type(1) {
  margin-block-start: 0;
}
.locality .form__group:last-child {
  margin-block-end: 0;
}
.form--report-frequency .form__group {
  margin: 1rem;
}
.form--report-frequency .form__group--schedule {
  display: flex;
  align-items: center;
}
.form--report-frequency .form__group--report-every {
  font-weight: 700;
}
.form--report-frequency .form__group.id_occurrence {
  width: 15%;
  margin: 0 1rem;
}
.form--report-frequency .form__group.id_frequency {
  margin: 0;
}
.form__group--wrap {
  flex-wrap: wrap;
}
.form__group--checkbox .form__item {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.form__group input[type=date]:last-child {
  max-width: 385px;
}
.form__question {
  display: block;
  font-weight: var(--weight-semibold);
  font-size: 1rem;
  line-height: 1.25rem;
}
.form__question--image_field, .form__question--multi_file_field, .form__question--single_file_field, .form__question--file_field {
  padding: 0.5em 2rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  transition: color, background, border, var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  color: var(--color-light-blue);
  border: 1px solid var(--color-mid-grey);
  max-width: 15rem;
  text-align: center;
}
.form__question--image_field:hover, .form__question--image_field:focus, .form__question--image_field:active, .form__question--multi_file_field:hover, .form__question--multi_file_field:focus, .form__question--multi_file_field:active, .form__question--single_file_field:hover, .form__question--single_file_field:focus, .form__question--single_file_field:active, .form__question--file_field:hover, .form__question--file_field:focus, .form__question--file_field:active {
  cursor: pointer;
  background: var(--color-light-blue);
}
.form__question--image_field:focus, .form__question--multi_file_field:focus, .form__question--single_file_field:focus, .form__question--file_field:focus {
  color: var(--color-light-blue);
}
.form__question--image_field:hover, .form__question--multi_file_field:hover, .form__question--single_file_field:hover, .form__question--file_field:hover {
  color: var(--color-white);
}
.no-js .form__question--image_field, .no-js .form__question--multi_file_field, .no-js .form__question--single_file_field, .no-js .form__question--file_field {
  display: none;
}
.form__question--boolean_field {
  font-weight: 400;
  display: inline;
  margin-block-end: 0;
}
.form__file-label {
  padding-block-end: 0.5rem;
}
.form__file-list ul {
  margin: 0.5rem 0;
}
.form__file-drop-zone {
  color: var(--color-mid-grey);
  padding: 25px;
  font-size: 17px;
  font-weight: var(--weight-bold);
  text-align: center;
  border: 2px dashed var(--color-mid-grey);
  border-radius: 5px;
}
@media only screen and (min-width: 1024px) {
  .form__filters {
    display: flex;
    align-items: flex-start;
    padding: 10px 0 30px;
    opacity: 0;
    transition: opacity var(--transition);
  }
  .filters-open .form__filters {
    opacity: 1;
    transition-delay: 300ms;
  }
  .filters--dates .form__filters {
    align-items: flex-end;
    margin: 10px 0 30px;
    padding: 0;
  }
}
.form__filters label {
  display: none;
}
.filters--dates .form__filters label {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .form__filters > * {
    flex-basis: 225px;
  }
  .form__filters > *:not(:last-child) {
    margin-inline-end: 10px;
  }
}
.form__filters--mobile {
  flex-direction: column;
  padding: 0;
}
.form__filters--mobile > * {
  flex-basis: auto;
  margin: 0;
}
.form__filters > li {
  padding: 0 1rem;
}
@media only screen and (min-width: 1024px) {
  .form__filters > li {
    padding: 0;
  }
}
.filters--dates .form__filters > li {
  margin: 0 auto 1rem;
  max-width: 320px;
}
@media only screen and (min-width: 640px) {
  .filters--dates .form__filters > li {
    display: flex;
    max-width: 600px;
  }
  @supports (display: grid) {
    .filters--dates .form__filters > li {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5px;
    }
  }
}
@media only screen and (min-width: 1024px) {
  .filters--dates .form__filters > li {
    margin: 0 1rem 0 0;
    max-width: initial;
  }
}
@supports (display: grid) {
  .filters--dates .form__filters > li label {
    grid-column: 1;
    grid-row: 1;
  }
}
@supports (display: grid) {
  .filters--dates .form__filters > li input:first-of-type {
    grid-column: 1;
  }
}
@supports (display: grid) {
  .filters--dates .form__filters > li span {
    grid-column: 2;
    grid-row: 1;
  }
}
.wrapper--comments .form__label {
  font-size: 15px;
}
.form__required {
  color: var(--color-purple);
}
.form__help {
  margin: 0;
  color: var(--color-fg-muted);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.profile .form__help {
  margin-block-start: 0;
}
.form__help-link {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.form__help-link a:hover {
  cursor: pointer;
  color: var(--color-darkest-blue);
}
.form__open-icon {
  display: inline;
  width: 20px;
  height: 20px;
  fill: var(--color-dark-grey);
}
.form__item {
  position: relative;
  padding-block-start: 0.5rem;
}
.form__select {
  max-width: 385px;
}
.form__select:has(.choices) {
  background: none;
}
.form--scoreable .form__select {
  margin-block-start: 20px;
}
.form__select .form__filters .form__select .form {
  max-width: 100%;
}
.form__select .form__filters .form__select .form select {
  height: var(--dropdown-height);
}
.form__select select[multiple=multiple] {
  display: block;
}
.form__select select option {
  background-color: var(--color-white);
}
.form__select--narrow {
  max-width: 280px;
}
.form select,
.form input[type=url],
.form input[type=text]:not(.input--secondary),
.form input[type=date],
.form input[type=time],
.form input[type=email],
.form input[type=number],
.form input[type=password],
.form input[type=datetime-local] {
  width: 100%;
  max-width: 385px;
}
.form select.invalid,
.form input[type=url].invalid,
.form input[type=text]:not(.input--secondary).invalid,
.form input[type=date].invalid,
.form input[type=time].invalid,
.form input[type=email].invalid,
.form input[type=number].invalid,
.form input[type=password].invalid,
.form input[type=datetime-local].invalid {
  border: 2px solid var(--color-error);
  outline: none;
}
.form__error select,
.form__error textarea,
.form__error input[type=url],
.form__error input[type=text],
.form__error input[type=date],
.form__error input[type=time],
.form__error input[type=email],
.form__error input[type=number],
.form__error input[type=password],
.form__error input[type=datetime-local] {
  border: 2px solid var(--color-error);
}
.form__error-text {
  max-width: 200px;
  padding: 5px;
  margin: 20px 0 0;
  color: var(--color-white);
  background: var(--color-error);
  z-index: 2;
}
@media only screen and (min-width: 1024px) {
  .form__error-text {
    position: absolute;
    inset-block-start: 0;
    inset-inline-end: 0;
    max-width: auto;
    margin: 0;
  }
  .form__error-text::before {
    position: absolute;
    inset-block-start: 12px;
    inset-inline-start: -10px;
    border-color: transparent var(--color-error) transparent transparent;
    border-style: solid;
    border-width: 5px 10px 5px 0;
    content: "";
  }
}
.form input[type=date] {
  max-width: 285px;
}
.form input[type=date] + input[type=time] {
  width: 100px;
}
.form textarea, .form__textarea {
  display: block;
  width: 100%;
  padding: 0.4em;
  border: 1px solid var(--color-mid-grey);
}
.form .wmd-preview {
  width: 100%;
}
.form .wmd-input {
  field-sizing: content;
  min-height: 14rem;
}
.form__comments ul#id_visibility {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.form__comments .wmd-input,
.form__comments .wmd-preview {
  max-width: 100%;
  margin-block-end: 0;
}
.form [type=radio] + label,
.form [type=checkbox] + label {
  padding-inline-start: 0.25rem;
  cursor: pointer;
}
.form .errorlist {
  padding: 5px;
  margin-block-end: 0.2em;
  background: var(--color-light-pink);
  border: 1px solid var(--color-tomato);
}
.form .address {
  padding: 0.4em;
  border: 1px solid rgba(207, 207, 207, 0.5607843137);
  max-width: 410px;
}
.form .address .form__group {
  margin-block-start: 0.5rem;
}
.form .address .form__question {
  margin-block-end: 0.25rem;
  font-size: 1rem;
  line-height: 1.25rem;
}
.form .address .form__question:nth-of-type(1) {
  margin-block-start: 0;
}
.form .multi-input-field-hidden {
  display: none;
}
.form__info-box {
  background-color: var(--color-light-blue-90);
  padding: 1rem;
}
.form__info-box p {
  margin: 0;
}
.form .password-reset {
  margin-block-start: -1em;
}

.flash-item {
  animation: flash 1s ease 1;
}

@keyframes flash {
  50% {
    background-color: var(--color-mustard);
  }
}
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltiptext {
  visibility: visible;
  width: max-content;
  background-color: var(--color-dark-grey);
  color: var(--color-white);
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 30%;
  margin-left: -60px;
  margin-bottom: 5px;
  opacity: 1;
  transition: opacity 0.3s;
  height: 30px;
}

.tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--color-dark-grey) transparent transparent transparent;
}

.nav {
  background-color: var(--color-bg-default);
}
.nav__link {
  display: flex;
  position: relative;
  padding-block: 0.5rem;
  color: var(--color-default);
  transition: color var(--transition);
}
.nav__link:focus, .nav__link:hover {
  color: var(--color-light-blue);
}
@media only screen and (min-width: 768px) {
  .nav__link::after {
    position: absolute;
    inset-block-end: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 5px;
    background-color: var(--color-dark-blue);
    content: "";
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.2, 1.4, 0.67, 1.13);
  }
}
.nav__link--active::after, .nav__link:focus::after, .nav__link:hover::after {
  opacity: 1;
}

.pagination--wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block-end: 60px;
  margin-block-start: 30px;
}
.pagination--wrapper .per-page a.current {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
.pagination--wrapper .per-page a {
  text-decoration: underline;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .cardinality {
  margin: 0 10px;
}
.pagination .previous a,
.pagination .next a {
  position: relative;
  display: block;
  width: 55px;
  height: 55px;
  font-size: 0;
  color: var(--color-white);
  background: var(--color-white);
  border: 1px solid var(--color-mid-grey);
}
.pagination .previous a::after,
.pagination .next a::after {
  position: absolute;
  inset-block-start: 18.5px;
  inset-inline-start: 22.5px;
}
.pagination .previous a::after {
  width: 0;
  height: 0;
  content: "";
  border-right: 10.5px solid var(--color-primary);
  border-block-start: 7px solid transparent;
  border-block-end: 7px solid transparent;
}
.pagination .next a::after {
  width: 0;
  height: 0;
  content: "";
  border-left: 10.5px solid var(--color-primary);
  border-block-start: 7px solid transparent;
  border-block-end: 7px solid transparent;
}

.projects-table thead th.desc, .projects-table thead th.asc {
  position: relative;
  color: var(--color-dark-grey);
}
.projects-table thead th.desc::after, .projects-table thead th.asc::after {
  position: absolute;
  inset-block-start: 50%;
  margin-inline-start: 3px;
}
.projects-table thead th.desc a, .projects-table thead th.asc a {
  color: inherit;
}
.projects-table thead th.desc::after {
  width: 0;
  height: 0;
  content: "";
  border-bottom: 0.495rem solid currentcolor;
  border-inline-end: 0.33rem solid transparent;
  border-inline-start: 0.33rem solid transparent;
}
.projects-table thead th.asc::after {
  width: 0;
  height: 0;
  content: "";
  border-top: 0.495rem solid currentcolor;
  border-inline-end: 0.33rem solid transparent;
  border-inline-start: 0.33rem solid transparent;
}
.projects-table thead {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .projects-table thead {
    display: table-header-group;
  }
}
.projects-table tbody td > span.mobile-label {
  display: inline-block;
  width: 90px;
}
@media only screen and (min-width: 1024px) {
  .projects-table tbody td > span.mobile-label {
    display: none;
  }
}
.projects-table .reporting .icon {
  margin-inline-end: 0.3rem;
  width: 25px;
  height: 25px;
  fill: var(--color-tomato);
}

.invoices-table thead th.desc, .invoices-table thead th.asc {
  position: relative;
  color: var(--color-dark-grey);
}
.invoices-table thead th.desc::after, .invoices-table thead th.asc::after {
  position: absolute;
  inset-block-start: 50%;
  margin-inline-start: 3px;
}
.invoices-table thead th.desc a, .invoices-table thead th.asc a {
  color: inherit;
}
.invoices-table thead th.desc::after {
  width: 0;
  height: 0;
  content: "";
  border-bottom: 0.495rem solid currentcolor;
  border-inline-end: 0.33rem solid transparent;
  border-inline-start: 0.33rem solid transparent;
}
.invoices-table thead th.asc::after {
  width: 0;
  height: 0;
  content: "";
  border-top: 0.495rem solid currentcolor;
  border-inline-end: 0.33rem solid transparent;
  border-inline-start: 0.33rem solid transparent;
}
.invoices-table thead {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .invoices-table thead {
    display: table-header-group;
  }
}
.invoices-table thead th.selected input[type=checkbox] {
  margin: 0 auto;
  display: block;
  width: 1.1rem;
  height: 1.1rem;
}
@media only screen and (min-width: 1024px) {
  .invoices-table thead th.selected {
    width: 50px;
    padding-inline-end: 0;
  }
}
.invoices-table tbody td > span.mobile-label {
  display: inline-block;
  width: 90px;
}
@media only screen and (min-width: 1024px) {
  .invoices-table tbody td > span.mobile-label {
    display: none;
  }
}
.invoices-table tbody td.selected {
  display: none;
  padding-inline-end: 0;
}
.invoices-table tbody td.selected input[type=checkbox] {
  margin: 0 auto;
  display: block;
  width: 1.1rem;
  height: 1.1rem;
}
@media only screen and (min-width: 1024px) {
  .invoices-table tbody td.selected {
    display: table-cell;
  }
}

.reporting-table thead th.desc, .reporting-table thead th.asc {
  position: relative;
  color: var(--color-dark-grey);
}
.reporting-table thead th.desc::after, .reporting-table thead th.asc::after {
  position: absolute;
  inset-block-start: 50%;
  margin-inline-start: 3px;
}
.reporting-table thead th.desc a, .reporting-table thead th.asc a {
  color: inherit;
}
.reporting-table thead th.desc::after {
  width: 0;
  height: 0;
  content: "";
  border-bottom: 0.495rem solid currentcolor;
  border-inline-end: 0.33rem solid transparent;
  border-inline-start: 0.33rem solid transparent;
}
.reporting-table thead th.asc::after {
  width: 0;
  height: 0;
  content: "";
  border-top: 0.495rem solid currentcolor;
  border-inline-end: 0.33rem solid transparent;
  border-inline-start: 0.33rem solid transparent;
}
.reporting-table tbody td.status span {
  display: inline-block;
  padding: 5px;
  font-size: 13px;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-dark-blue);
}

.responsive-table thead th.desc, .responsive-table thead th.asc {
  position: relative;
  color: var(--color-dark-grey);
}
.responsive-table thead th.desc::after, .responsive-table thead th.asc::after {
  position: absolute;
  inset-block-start: 50%;
  margin-inline-start: 3px;
}
.responsive-table thead th.desc a, .responsive-table thead th.asc a {
  color: inherit;
}
.responsive-table thead th.desc::after {
  width: 0;
  height: 0;
  content: "";
  border-bottom: 0.495rem solid currentcolor;
  border-inline-end: 0.33rem solid transparent;
  border-inline-start: 0.33rem solid transparent;
}
.responsive-table thead th.asc::after {
  width: 0;
  height: 0;
  content: "";
  border-top: 0.495rem solid currentcolor;
  border-inline-end: 0.33rem solid transparent;
  border-inline-start: 0.33rem solid transparent;
}
.responsive-table thead {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .responsive-table thead {
    display: table-header-group;
  }
}
.responsive-table thead th {
  padding: 25px 10px;
}
.responsive-table tbody td.title {
  padding-block-start: 15px;
}

.reviews-list {
  position: relative;
  margin-block-start: 40px;
  table-layout: auto;
}
.reviews-list__body {
  overflow-x: scroll;
}
.reviews-list__th:hover {
  box-shadow: none;
}
.reviews-list__th:first-child {
  font-weight: var(--weight-bold);
}
.reviews-list__tr {
  border-block-start: 0;
  border-block-end: 2px solid var(--color-light-grey);
}
.reviews-list__td {
  max-width: 340px;
  min-width: 240px;
  padding: 20px;
}
.reviews-list__td--author > div {
  display: flex;
  align-items: center;
}
.reviews-list__td--author > div img {
  margin-inline-start: 7px;
}
.reviews-list__th, .reviews-list__td {
  display: table-cell;
  height: auto;
  vertical-align: top;
}
.reviews-list__th:first-child, .reviews-list__td:first-child {
  width: 160px;
  background-color: var(--color-light-mid-grey);
}
.reviews-list__th--author {
  position: sticky;
  inset-block-start: 0;
  background-color: var(--color-white);
}

.reviews-summary {
  display: none;
  background-color: transparent;
}
@media only screen and (min-width: 1024px) {
  .reviews-summary {
    display: table;
  }
}
.reviews-summary__tr {
  vertical-align: top;
  border-block-end: 0;
}
.reviews-summary__td {
  padding: 10px;
  vertical-align: middle;
  text-align: center;
}
.reviews-summary__td-width {
  width: max-content;
}

.counts-separator {
  color: var(--color-mid-grey);
}

.reviews-sidebar {
  margin-block-end: 20px;
  font-weight: var(--weight-bold);
}
.reviews-sidebar__decision {
  position: relative;
  font-size: 14px;
  border-block-start: 1px solid var(--color-mid-grey);
  border-block-end: 1px solid var(--color-mid-grey);
  margin-block-end: 20px;
  padding-block-start: 10px;
}
.reviews-sidebar__item {
  display: flex;
  justify-content: space-between;
  margin-block-end: 20px;
}
@supports (display: grid) {
  .reviews-sidebar__item {
    display: grid;
    grid-template-columns: 45% 25% 15% 15%;
    gap: 5px;
  }
}
.reviews-sidebar__item--decision {
  margin-block-end: 10px;
  font-weight: var(--weight-semibold);
}
.reviews-sidebar__item--decision:first-child .reviews-sidebar__outcome::before, .reviews-sidebar__item--decision:first-child .reviews-sidebar__outcome::after {
  position: absolute;
  inset-block-start: -23px;
  inset-inline-start: 5px;
}
.reviews-sidebar__item--decision:first-child .reviews-sidebar__outcome::after {
  width: 0;
  height: 0;
  content: "";
  border-bottom: 12px solid var(--color-white);
  border-inline-end: 8px solid transparent;
  border-inline-start: 8px solid transparent;
  inset-block-start: -21px;
}
.reviews-sidebar__item--decision:first-child .reviews-sidebar__outcome::before {
  width: 0;
  height: 0;
  content: "";
  border-bottom: 12px solid var(--color-mid-grey);
  border-inline-end: 8px solid transparent;
  border-inline-start: 8px solid transparent;
}
.reviews-sidebar__item.is-hidden {
  display: none;
}
.reviews-sidebar__item.no-response {
  color: var(--color-black-20);
}
.reviews-sidebar__item .yes {
  color: var(--color-green);
}
.reviews-sidebar__item .maybe {
  color: var(--color-mustard);
}
.reviews-sidebar__item .no {
  color: var(--color-tomato);
}
.reviews-sidebar__no-reviews {
  color: var(--color-mid-grey);
}
.reviews-sidebar__name {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--color-white);
}
.reviews-sidebar__name:hover {
  display: inline-flex;
  overflow: visible;
}
.reviews-sidebar__name img {
  margin-inline-start: 7px;
}
.reviews-sidebar__outcome {
  position: relative;
}
.reviews-sidebar__outcome.agree {
  color: var(--color-green);
}
.reviews-sidebar__outcome.disagree {
  color: var(--color-tomato);
}
.reviews-sidebar__split {
  margin-block-end: 20px;
}
.reviews-sidebar__extend-column {
  grid-column-start: 1;
  grid-column-end: 3;
}

.accept-text {
  color: var(--color-dark-green);
}

.weak-accept-text {
  color: var(--color-orange);
}

.reject-text {
  color: var(--color-red);
}

.round-block p {
  font-size: 14px;
}
.round-block__item {
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-light-mid-grey);
  border-block-end: 0;
  padding: 25px;
  transition: background-color var(--transition-quick);
  min-height: 80px;
}
.round-block__item:last-child {
  border-block-end: 1px solid var(--color-light-mid-grey);
}
@media only screen and (min-width: 1024px) {
  .round-block__item {
    display: flex;
  }
  .round-block__item:hover {
    background-color: var(--color-light-grey);
  }
  .round-block__item > * {
    margin: 0 30px 0 0;
    flex-basis: 200px;
  }
}
.round-block__item--more {
  padding: 20px 25px;
  justify-content: center;
  border-block-end: 1px solid var(--color-light-mid-grey);
  min-height: auto;
}
.round-block__item--more:hover {
  background-color: var(--color-white);
}
.round-block__item--more a {
  margin: 0;
  flex-basis: auto;
  font-weight: var(--weight-semibold);
}
.round-block__view {
  margin: 0 0 0 auto;
  transition: color var(--transition-quick);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  .round-block__view {
    color: transparent;
    flex-basis: auto;
    pointer-events: none;
  }
}
.round-block__view:focus, .round-block__item:hover .round-block__view {
  color: var(--color-primary);
  pointer-events: all;
}
.round-block__title {
  color: var(--color-default);
  font-size: var(--font-size-epsilon);
  font-weight: var(--weight-semibold);
}
.round-block__not-found {
  margin: 0;
  padding: 20px;
  background-color: var(--color-white);
  border: 1px solid var(--color-light-mid-grey);
}
@media only screen and (min-width: 1024px) {
  .round-block__title {
    flex-basis: 25em;
  }
  .round-block__fund {
    flex-basis: 20em;
  }
  .round-block__view {
    flex-basis: 5em;
  }
}

.status-block {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-mid-grey);
}
@media only screen and (min-width: 1024px) {
  .status-block {
    display: flex;
  }
}
.status-block__item {
  display: block;
  padding: 10px 20px;
  border-block-end: 1px solid var(--color-light-mid-grey);
  background-color: var(--color-white);
  transition: background-color var(--transition-quick);
}
@media only screen and (min-width: 1024px) {
  .status-block__item {
    border-block-end: 0;
    border-inline-end: 1px solid var(--color-light-mid-grey);
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
}
@media only screen and (min-width: 1280px) {
  .status-block__item {
    padding: 20px 18px 30px;
  }
}
.status-block__item--active {
  border-block-end: 4px solid;
}
.status-block__item:hover {
  background-color: var(--color-light-grey);
}
.status-block__item:last-child {
  border-inline-end: 0;
}
.status-block__info, .status-block__title {
  margin: 0 0 5px;
}
@media only screen and (min-width: 1024px) {
  .status-block__info {
    margin-block-start: auto;
  }
}
.status-block__title {
  width: 100%;
  hyphens: auto;
}

.submission-meta {
  background-color: transparent;
}
.submission-meta tbody td.phase span {
  display: inline-block;
  padding: 10px;
  font-size: 13px;
  font-weight: var(--weight-bold);
  color: var(--color-mid-dark-grey);
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--color-mid-dark-grey);
}
.submission-meta__row {
  border: 0;
}
.submission-meta__row:hover {
  box-shadow: none;
}
.submission-meta__row--black {
  color: var(--color-default);
}
.submission-meta__row th,
.submission-meta__row td {
  padding: 5px 10px;
}
.submission-meta__row td.lead span {
  background: var(--color-mist);
}

.table-container > table {
  border: 1px solid var(--color-light-mid-grey);
}
.table-container table:not(.reviews-summary) {
  width: 100%;
  background-color: var(--color-white);
  border-collapse: collapse;
  table-layout: fixed;
}
@media only screen and (min-width: 1024px) {
  .table-container table:not(.reviews-summary) tbody tr:hover {
    background-color: var(--color-light-grey);
  }
}
.table-container table:not(.reviews-summary) th {
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}
.table-container table:not(.reviews-summary) th a {
  color: var(--color-black-60);
  transition: color 0.25s ease-out;
}
.table-container table:not(.reviews-summary) tr {
  border: 1px solid var(--color-light-mid-grey);
  transition: box-shadow 0.15s ease;
}
@media only screen and (min-width: 1024px) {
  .table-container table:not(.reviews-summary) tr {
    border-block-start: 0;
    border-inline-end: 0;
    border-block-end: 1px solid var(--color-light-mid-grey);
    border-inline-start: 0;
  }
  .table-container table:not(.reviews-summary) tr.is-expanded {
    border-block-end: 1px solid var(--color-light-grey);
  }
  .table-container table:not(.reviews-summary) tr.is-expanded .lead span {
    background-color: var(--color-mist);
  }
  .table-container table:not(.reviews-summary) tr.reviews-summary__tr {
    box-shadow: none;
  }
}
.table-container table:not(.reviews-summary) tr > td {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .table-container table:not(.reviews-summary) tr > td {
    display: table-cell;
    width: initial;
  }
}
.table-container table:not(.reviews-summary) tr > td.selected {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .table-container table:not(.reviews-summary) tr > td.selected {
    display: table-cell;
  }
}
@media only screen and (min-width: 1024px) {
  .table-container table:not(.reviews-summary) tr > td.lead span {
    position: relative;
    z-index: 1;
    display: block;
    padding-inline-end: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .table-container table:not(.reviews-summary) tr > td.lead span:hover {
    display: inline-block;
    overflow: visible;
  }
}
.table-container table:not(.reviews-summary) tr > td.title a {
  font-weight: var(--weight-bold);
  text-decoration: underline;
}
.table-container table:not(.reviews-summary) td,
.table-container table:not(.reviews-summary) th {
  padding: 5px 20px;
}
@media only screen and (min-width: 1024px) {
  .table-container table:not(.reviews-summary) td,
  .table-container table:not(.reviews-summary) th {
    padding: 15px 10px;
  }
}
.table-container table:not(.reviews-summary) td.title,
.table-container table:not(.reviews-summary) th.title {
  padding-inline-start: 0.5em;
}
.table-container table.reviews-summary tr {
  border: 0;
}

.traffic-light {
  display: block;
  width: 1em;
  height: 1em;
  aspect-ratio: 1/1;
}
.traffic-light--no, .traffic-light--red {
  background-color: var(--color-tomato);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.traffic-light--maybe, .traffic-light--amber {
  background-color: var(--color-mustard);
  border-radius: 50%;
}
.traffic-light--yes, .traffic-light--green {
  background-color: var(--color-green);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.wrapper {
  width: 100%;
}
.wrapper--small {
  max-width: var(--wrapper-small);
  margin-inline: auto;
}
.wrapper--medium {
  max-width: var(--wrapper-medium);
  margin-inline: auto;
}
.wrapper--large {
  max-width: var(--site-width);
  margin-inline: auto;
}
.wrapper--main {
  padding-inline: var(--gutters);
}
@media only screen and (min-width: 1280px) {
  .wrapper--main {
    padding-inline: 0;
  }
}
.wrapper--default-bg {
  background-color: var(--color-bg-default);
}
.wrapper--embed {
  width: 100%;
  height: 100%;
}
.wrapper--embed iframe,
.wrapper--embed object,
.wrapper--embed embed {
  width: 100%;
  height: 100%;
}
.wrapper--embed--pdf object {
  height: 300mm;
}
.wrapper--form {
  padding: 0;
  margin: 2em auto;
}
@media only screen and (min-width: 1024px) {
  .wrapper--form {
    padding: 2rem 17rem 2rem 0;
    margin: 1rem auto 3rem;
  }
}
.wrapper--error {
  display: flex;
  align-items: center;
  max-width: 830px;
  padding: 10px;
  margin: 0 auto 2rem;
  background: var(--color-light-pink);
  border: 1px solid var(--color-tomato);
}
.feed .wrapper--error {
  margin: 0 0 1rem;
}
.wrapper--bottom-space {
  padding-block-end: 20px;
  margin-block-end: 20px;
}
@media only screen and (min-width: 768px) {
  .wrapper--bottom-space {
    padding-block-end: 3rem;
    margin-block-end: 0;
  }
}
.wrapper--flex {
  display: flex;
  align-items: start;
  column-gap: 25px;
}
.wrapper--inner-space-small {
  padding: 20px 0;
}
.wrapper--inner-space-medium {
  padding: 20px 0;
}
@media only screen and (min-width: 640px) {
  .wrapper--inner-space-medium {
    padding: 2rem 0;
  }
}
.wrapper--inner-space-medium + .wrapper--inner-space-medium {
  padding: 0;
}
.wrapper--inner-space-large {
  padding: 20px 0;
}
@media only screen and (min-width: 768px) {
  .wrapper--inner-space-large {
    padding: 3rem 0;
  }
}
.wrapper--inner-space-xl {
  padding: 2rem 20px;
}
@media only screen and (min-width: 768px) {
  .wrapper--inner-space-xl {
    padding: 4rem 20px;
  }
}
.wrapper--top-outer-space-small {
  margin: 20px 0 0;
}
.wrapper--outer-space-medium {
  margin: 20px 0;
}
@media only screen and (min-width: 640px) {
  .wrapper--outer-space-medium {
    margin: 2rem 0;
  }
}
.wrapper--outer-space-large {
  margin: 20px 0;
}
@media only screen and (min-width: 768px) {
  .wrapper--outer-space-large {
    margin: 3rem 0;
  }
}
.wrapper--sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .wrapper--sidebar {
    flex-direction: row;
  }
}
.wrapper--sidebar--inner {
  flex: 1;
}
.wrapper--sidebar .card:first-child {
  margin-block-start: 0;
}
.wrapper--search {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (min-width: 640px) {
  .wrapper--search {
    flex-direction: row;
  }
}
.wrapper--sidebar-buttons {
  display: flex;
  justify-content: space-between;
}
.wrapper--cta-box {
  width: 500px;
  padding: 20px;
  color: var(--color-default);
  background-color: var(--color-white);
}
.wrapper--applicant-dashboard {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wrapper--status-bar-outer {
  padding: 20px 0;
  background-color: var(--color-white);
  border-block-end: 3px solid var(--color-light-grey);
}
.wrapper--status-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-block-end: 20px;
}
@media only screen and (min-width: 768px) {
  .wrapper--status-bar-inner {
    margin-block-end: 0;
  }
}
.wrapper--activity-feed {
  padding: 0 20px;
  margin-block-start: 50px;
}
@media only screen and (min-width: 1024px) {
  .wrapper--activity-feed {
    margin-block-start: 70px;
  }
}
.wrapper--comments {
  margin-block-end: 1rem;
  border-block-end: 1px solid var(--color-mid-grey);
}
.wrapper--comments .helptext {
  font-size: 15px;
}
.wrapper--tabs {
  padding: 20px 0;
}
@media only screen and (min-width: 768px) {
  .wrapper--tabs {
    padding: 4rem 0;
  }
}
@media only screen and (min-width: 768px) {
  .wrapper--table-actions {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1024px) {
  .wrapper--table-actions {
    justify-content: flex-end;
  }
}
.wrapper--submission-actions {
  margin-inline-start: auto;
  display: flex;
  margin-block-start: 1rem;
  align-items: flex-start;
}
@media only screen and (min-width: 1024px) {
  .wrapper--submission-actions {
    margin-block-start: 0;
    justify-content: flex-end;
    flex: 1;
  }
}

.diff__deleted {
  background-color: var(--color-light-pink);
}
.diff__deleted a {
  background-color: inherit;
}
.diff__added {
  background-color: var(--color-light-green);
}
.diff__added a {
  background-color: inherit;
}

@media only screen and (min-width: 768px) {
  .stat-block {
    display: flex;
  }
}
.stat-block__item {
  position: relative;
  border: 1px solid var(--color-mid-dark-grey);
  padding: 1rem;
  background-color: var(--color-white);
  flex: 1;
  display: block;
  margin: 0 0 1rem;
}
@media only screen and (min-width: 768px) {
  .stat-block__item {
    margin: 0 3rem 0 0;
    padding: 1.5rem;
  }
}
.stat-block__item:last-child {
  margin-inline-end: 0;
}
@media only screen and (min-width: 768px) {
  .stat-block__item:only-child {
    max-width: 33.3333333333%;
  }
}
.stat-block__number {
  line-height: 1;
  margin: 0;
  color: var(--color-marine);
}
.stat-block__text {
  margin: 0.5rem 0;
  color: var(--color-fg-default);
}
@media only screen and (min-width: 640px) {
  .stat-block__text {
    margin: 0.5rem 0;
  }
}
.stat-block__view {
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  transition: opacity var(--transition-quick);
}
@media only screen and (min-width: 768px) {
  .stat-block__view {
    position: absolute;
    inset-block-start: 1rem;
    inset-inline-end: 1rem;
    opacity: 0;
  }
  .stat-block__item:hover .stat-block__view {
    opacity: 1;
  }
}

.docs-block {
  border: 1px solid var(--color-light-blue);
}
.docs-block__header {
  background-color: var(--color-light-blue-90);
  padding: 0.5rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.docs-block__heading {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin: 0;
}
.docs-block__inner {
  padding: 1rem;
}
.docs-block__row {
  padding-block-end: 1rem;
  margin-block-end: 1rem;
  border-block-end: 1px solid var(--color-mid-grey);
}
@media only screen and (min-width: 768px) {
  .docs-block__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.docs-block__row:last-child {
  border-block-end: 0;
  padding-block-end: 0;
  margin-block-end: 0;
}
.docs-block__row-inner {
  display: flex;
  align-items: center;
}
.docs-block__row-inner:first-child {
  margin-block-end: 1rem;
}
@media only screen and (min-width: 768px) {
  .docs-block__row-inner:first-child {
    margin: 0 1rem 0 0;
    flex: 1;
  }
}
.docs-block__row-inner__contract-upload-row {
  border: 1px solid var(--color-light-blue);
}
.docs-block__title {
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .docs-block__title {
    flex: 1;
  }
}
.docs-block__icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-mid-grey);
  fill: transparent;
  margin-inline-end: 0.5rem;
}
@media only screen and (min-width: 1024px) {
  .docs-block__icon {
    margin-inline-end: 1rem;
  }
}
.docs-block__link {
  font-weight: var(--weight-bold);
  margin-inline-end: 1rem;
}
.docs-block__link:disabled, .docs-block__link.is-disabled {
  color: var(--color-mid-grey);
  cursor: default;
}
.docs-block__link:last-child {
  margin-inline-end: 0;
}
.docs-block__link:hover {
  opacity: 0.8;
}
.docs-block__icon-link {
  font-weight: var(--weight-bold);
  display: flex;
  align-items: center;
  margin-inline-end: 1rem;
}
.docs-block__icon-link:disabled, .docs-block__icon-link.is-disabled {
  color: var(--color-mid-grey);
  cursor: default;
}
.docs-block__icon-link:last-child {
  margin-inline-end: 0;
}
.docs-block__icon-link:hover {
  opacity: 0.8;
}
@media only screen and (min-width: 1024px) {
  .docs-block__info-text {
    max-width: 65%;
    margin-inline-start: 3rem;
  }
}
.docs-block__buttons {
  padding: 0 1rem 1rem;
}
.docs-block__buttons .button {
  padding: 0.5rem 1rem;
  margin: 0 0.5rem 0.5rem 0;
}
.docs-block__buttons .button:last-child {
  margin: 0;
}
.docs-block__document-list {
  width: 100%;
  margin-block-start: 1rem;
  padding-inline-start: 0;
}
.docs-block__document {
  display: flex;
  align-items: center;
  padding-block-end: 1rem;
  flex-wrap: wrap;
}
.docs-block__document:last-child {
  padding-block-end: 0;
  margin: 0;
  border-block-end: 0;
}
.docs-block__document-inner:first-child {
  margin: 0 1rem 1rem 0;
}
@media only screen and (min-width: 768px) {
  .docs-block__document-inner:first-child {
    margin: 0 1rem 0 0;
  }
}
.docs-block__document-inner__actions {
  display: flex;
  align-items: center;
  margin-inline-start: auto;
}
.docs-block__document-info {
  margin: 0;
}
.docs-block__document-link {
  margin-inline-end: 1rem;
}
.docs-block__document-link:last-child {
  margin-inline-end: 0;
}
.docs-block__document-form {
  display: inline;
}

.data-block__mobile-label {
  display: inline-block;
  font-weight: var(--weight-bold);
  white-space: pre;
}
@media only screen and (min-width: 1024px) {
  .data-block__mobile-label {
    display: none;
  }
}
.data-block__table thead {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .data-block__table thead {
    display: table-header-group;
  }
}
.data-block__table thead th {
  color: var(--color-mid-dark-grey);
  padding: 0.5rem;
}
@media only screen and (min-width: 1024px) {
  .data-block__table thead th {
    text-align: left;
  }
}
.data-block__table thead tr {
  border-block-end: 2px solid var(--color-light-mid-grey);
}
.data-block__table tbody tr {
  border: 0;
  border-block-end: 2px solid var(--color-light-grey);
}
.data-block__table tbody tr:last-child {
  border-block-end: 0;
}
.data-block__table tbody tr:hover {
  box-shadow: none;
}
.data-block__table-amount {
  width: 12%;
  min-width: 90px;
}
.data-block__table-status {
  min-width: 160px;
  width: 15%;
}
.data-block__table-date {
  min-width: 150px;
  width: 15%;
}
.data-block__table-update {
  min-width: 160px;
  width: 25%;
}
@media only screen and (min-width: 1280px) {
  .data-block__table-update {
    width: 30%;
  }
}
.data-block__action-link {
  font-weight: var(--weight-bold);
  display: inline-block;
  margin-inline-end: 1rem;
  text-decoration: underline;
  color: var(--color-primary);
  word-break: normal;
  transition-property: opacity;
  transition-duration: 150ms;
}
.data-block__action-link:hover {
  opacity: 0.75;
}
.data-block__action-link:last-child {
  margin: 0;
}
.data-block__action-icon-link {
  font-weight: var(--weight-bold);
  display: flex;
  align-items: center;
  margin-inline-end: 1rem;
  word-break: normal;
  transition-property: opacity;
  transition-duration: 150ms;
}
.data-block__action-icon-link:hover {
  opacity: 0.75;
}
.data-block__action-icon-link:last-child {
  margin: 0;
}
.data-block__action-icon-link--remove {
  color: var(--color-tomato);
}
.data-block__list-item {
  border-block-end: 2px solid var(--color-light-grey);
  padding: 0.5em 0.75em;
}
@media only screen and (min-width: 1024px) {
  .data-block__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.data-block__list-item:first-child {
  padding-block-start: 0;
}
.data-block__list-item:last-child {
  border-block-end: 0;
}
.data-block__list-item:only-child {
  padding: 0;
}

.invoice-block {
  padding: 1rem;
  margin-block-end: 1rem;
  border: 1px solid var(--color-dark-blue);
}
@media only screen and (min-width: 640px) {
  .invoice-block {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
  }
}
.invoice-block__item {
  margin-block-end: 1rem;
}
.invoice-block__item:last-child {
  margin: 0;
}
@media only screen and (min-width: 640px) {
  .invoice-block__item {
    margin: 0 1rem 0 0;
  }
}
.invoice-block__title {
  font-weight: var(--weight-bold);
  margin: 0 0 0.2rem;
}
.invoice-block__meta {
  margin: 0;
}

.two-factor {
  position: relative;
}
.two-factor__back {
  position: absolute;
  inset-block-start: 0.5rem;
}
.two-factor h1,
.two-factor h2 {
  font-weight: 700;
}
.two-factor .mb-3 {
  margin-block-end: 1rem;
}

label[for=id_generator-token] {
  font-size: 1.2em;
}

#id_generator-token {
  -moz-appearance: textfield;
  line-height: 1.5;
  width: 8ch;
  padding: 3px;
}
#id_generator-token::-webkit-outer-spin-button, #id_generator-token::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown__content {
  position: absolute;
  background-color: var(--color-light-grey);
  min-width: 160px;
  box-shadow: 1px 8px 16px 1px var(--color-mid-dark-grey);
  z-index: 1;
  /* Links inside the dropdown */
}
.dropdown__content a {
  color: var(--color-black);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  /* Change color of dropdown links on hover */
}
.dropdown__content a:hover {
  background-color: var(--color-mid-grey);
}

.paf-review-table thead th.desc, .paf-review-table thead th.asc {
  position: relative;
  color: var(--color-dark-grey);
}
.paf-review-table thead th.desc::after, .paf-review-table thead th.asc::after {
  position: absolute;
  inset-block-start: 50%;
  margin-inline-start: 3px;
}
.paf-review-table thead th.desc a, .paf-review-table thead th.asc a {
  color: inherit;
}
.paf-review-table thead th.desc::after {
  width: 0;
  height: 0;
  content: "";
  border-bottom: 0.495rem solid currentcolor;
  border-inline-end: 0.33rem solid transparent;
  border-inline-start: 0.33rem solid transparent;
}
.paf-review-table thead th.asc::after {
  width: 0;
  height: 0;
  content: "";
  border-top: 0.495rem solid currentcolor;
  border-inline-end: 0.33rem solid transparent;
  border-inline-start: 0.33rem solid transparent;
}
.paf-review-table thead {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .paf-review-table thead {
    display: table-header-group;
  }
}
.paf-review-table thead th.desc {
  position: relative;
  color: var(--color-dark-grey);
}
.paf-review-table thead th.desc::after {
  position: absolute;
  inset-block-start: 40%;
  margin-inline-start: 5px;
}
.paf-review-table thead th.asc {
  position: relative;
  color: var(--color-dark-grey);
}
.paf-review-table thead th.asc::after {
  position: absolute;
  inset-block-start: 50%;
  margin-inline-start: 5px;
}
.paf-review-table tbody td > span.mobile-label {
  display: inline-block;
  width: 90px;
}
@media only screen and (min-width: 1024px) {
  .paf-review-table tbody td > span.mobile-label {
    display: none;
  }
}

.header {
  padding-inline: var(--gutters);
}
@media only screen and (min-width: 1280px) {
  .header {
    padding-inline: 0;
  }
}
.header__logo {
  max-width: none;
}
.header__logo--mobile {
  width: 60px;
}
@media only screen and (min-width: 1024px) {
  .header__logo--mobile {
    display: none;
  }
}
.header__logo--desktop {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .header__logo--desktop {
    display: block;
    width: 215px;
  }
}

@media (max-width: 768px) {
  .link--fixed-apply {
    right: 5%;
    display: block;
  }
}
.js-sidebar-toggle,
.tab__item--right {
  display: none;
}

table td.id,
table th.id {
  text-align: left;
}
@media only screen and (min-width: 1024px) {
  table td.id,
  table th.id {
    text-align: center;
  }
}

table td.id a {
  color: var(--color-dark-grey);
  font-weight: 700;
}

table td.title,
table th.title {
  padding-left: 20px;
}
@media only screen and (min-width: 1024px) {
  table td.title,
  table th.title {
    padding-left: 0;
  }
}

.heading--number {
  color: rgba(184, 176, 176, 0.5);
}

.link--withdraw-submission {
  margin-right: 1rem;
  padding-right: 1rem;
  border-right: 2px solid var(--color-mid-grey);
  font-weight: 700;
}

.reviews-summary__td {
  text-align: center;
}

.counts-separator {
  color: rgb(200, 200, 200);
}

.list__item--average_score {
  color: rgb(145, 145, 145);
  font-weight: 400;
}

ml-12 {
  margin-left: 3rem;
}
