



.choices > .wrapper--yes-no.either-or {
  min-width: 480px;
  align-self: center;
  font-size: 1.5rem;
  color: var(--color-6);
}

.choices {
  margin: 1rem;
}

.choice-1,
.choice-2 {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--color-6);
  margin: 1rem 0;
}

.general-page .block .fees ul {
  max-width: 70ch;
  padding: 2rem;
  border-left: 4px solid var(--color-6);
  border-radius: .25rem;
  margin: 1rem 0 1rem 1.5rem;
  font-size: .85rem;
  flex-direction: column;
}

.general-page .block .fees ul li {
  margin: .5rem 1rem;
  line-height: 1.4;
  position: relative;
}

  .general-page .block :is(.fees, .requirements) ul li::before {
    background-color: var(--color-3);
    border-bottom-right-radius: .5rem;
    border-top-right-radius: .5rem;
    content: "";
    height: .5rem;
    position: absolute;
    -webkit-transform: translateX(-1.25rem) translateY(.35em);
    transform: translateX(-1.25rem) translateY(.35em);
    width: .5rem;
  }

select {
  padding: .5rem;
  border-radius: .5rem;
  outline: none;
}

.toolbar {
  background-color: var(--contrast);
  width: 100%;
  padding: 1rem;
  border-radius: .5rem;
  margin: 1rem 0;
}

.fees,
.requirements {
  height: auto;
  padding: 1rem;
  border-radius: .5rem;
}

.fees {
  background: var(--compare);
}

.fees {
  width: calc(100% / 3);
}
.requirements {
  width: calc(200% / 3);
}

.permit-info {
  column-gap: .5rem;
}

@media screen and (max-width: 600px) {
  .fees, .requirements {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .choices .either-or {
    max-width: 100%;
    min-width: unset !important;
  }
  .choices {
    margin: 1rem 0 !important;
  }
  .wrapper--yes-no.either-or .yes-no {
    width: 50%;
    flex-shrink: 0;
  }

  select {
    max-width: 100%;
  }

  .general-page .block .fees ul {
    margin: 1rem 0 !important;
  }

  .general-page .block .fees li {
    margin: .5rem 0 !important;
  }
}
