.heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(200deg, 75%, 50%);
  text-transform: uppercase;
}
.heading--secondary {
  font-size: 1.15rem;
  color: hsl(200deg, 75%, 70%);
  font-weight: 700;
  letter-spacing: 0.15rem;
}
.heading--sub {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
}

.alert {
  color: hsl(0deg, 70%, 63%);
  font-weight: 600;
  font-size: 1.25rem;
}

.subscript {
  font-size: 0.875rem;
}

.soft {
  font-size: 0.875rem;
  color: hsl(0deg, 0%, 50%);
  letter-spacing: 0.0625rem;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem;
}

.u-margin-bottom-medium {
  margin-bottom: 2rem;
}

.mb-s {
  margin-bottom: 0.5rem;
}

.mb-m {
  margin-bottom: 0.875rem;
}

.u-mb-lg {
  margin-bottom: 1.125rem;
}

.u-mb-xl {
  margin-bottom: 1.25rem;
}

.u-margin-bottom-big {
  margin-bottom: 8rem;
}

.no-resize {
  resize: none;
}

.pl-lg {
  padding-left: 1.125rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.link {
  color: hsl(170deg, 75%, 40%);
  font-size: 0.875rem;
}

.btn {
  background-color: hsl(200deg, 75%, 20%);
  color: hsl(0deg, 0%, 90%);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9px;
  border: none;
  transition: all 0.5s;
  box-shadow: 0 0.125rem 1px rgba(221, 221, 221, 0.015);
  letter-spacing: 1.5px;
  transition: all 0.3s;
}
.btn-default:hover {
  background-color: hsl(200deg, 75%, 10%);
  box-shadow: inset 0 0 0 1px hsl(0deg, 0%, 90%);
  color: hsl(0deg, 0%, 90%);
}
.btn--disabled {
  background-color: hsl(200deg, 75%, 5%);
  color: hsl(200deg, 75%, 20%);
}
.btn--link:link, .btn--link:visited {
  text-decoration: none;
}
.btn--link:hover, .btn--link:active {
  background-color: hsl(200deg, 75%, 10%);
  box-shadow: inset 0 0 0 1px hsl(0deg, 0%, 90%);
  color: hsl(0deg, 0%, 90%);
}
.btn--link--lrg:link, .btn--link--lrg:visited {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
}
.btn--link--lrg:hover, .btn--link--lrg:active {
  background-color: hsl(200deg, 75%, 20%);
  box-shadow: inset 0 0 0 3px #fff;
}
.btn--link--sml:link, .btn--link--sml:visited {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn--link--sml:hover, .btn--link--sml:active {
  background-color: hsl(200deg, 75%, 20%);
  box-shadow: inset 0 0 0 3px #fff;
}

.external-link {
  color: hsl(170deg, 75%, 70%);
}

#block-ui {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}

#block-ui-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  display: none;
}

.diagnose-look-up__search-bar {
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-cache {
  display: flex;
}
.form-cache__btn-container {
  display: flex;
  align-content: space-between;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  flex: 0 0 40px;
  margin: 10px;
  background-color: hsl(200deg, 75%, 20%);
}
.form-cache__btn-container--save {
  background-color: hsl(0deg, 70%, 60%);
}
.form-cache__save-text {
  width: 50%;
  margin: auto;
  line-height: 4rem;
}

.input-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0.5rem;
  background-color: hsl(0deg, 0%, 30%);
  margin: 0.25rem 0;
  width: 100%;
  border-radius: 0.25rem;
  color: hsl(0deg, 0%, 80%);
}
.input-control:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem hsl(200deg, 75%, 40%);
}
.input-control--ro {
  color: #868e96;
  background-color: rgba(136, 152, 155, 0.06);
}
.input-control--ro:focus {
  outline: none;
  box-shadow: none;
}

.text-area-ro {
  color: hsl(0deg, 0%, 40%);
  background-color: hsl(0deg, 0%, 10%);
}

.input-label {
  display: inline-block;
  margin: 0;
  color: hsl(0deg, 0%, 90%);
  padding-left: 0.25rem;
}
.input-label--ro {
  color: hsl(0deg, 0%, 50%);
}

.input-yes {
  display: flex;
  align-items: center;
}
.input-yes__checkbox {
  margin-right: 10px;
}

.item-list {
  display: flex;
  flex-direction: column;
}
.item-list__row {
  display: flex;
  border-bottom: 1px solid hsl(0deg, 0%, 40%);
  gap: 1rem;
  align-items: center;
  transition: all 0.8s;
}
.item-list__row--center {
  justify-content: center;
}
.item-list__row--header {
  color: hsl(0deg, 0%, 90%);
  font-weight: 600;
  font-size: 1.125rem;
  border-bottom: 1px solid hsl(0deg, 0%, 90%);
  padding-bottom: 0.1rem;
}
.item-list__row:hover:not(:first-child) {
  background-color: hsl(0deg, 0%, 40%);
}
.item-list__col {
  padding: 0.5rem;
}
.item-list__item-link {
  text-decoration: none;
  padding-bottom: 0.25rem;
}
.item-list__item-link:hover {
  cursor: pointer;
}
.item-list__actions {
  display: flex;
  gap: 0.25rem;
}

.medicine-dialog__search-container {
  margin-bottom: 1.125rem;
}
.medicine-dialog__search-label {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.medicine-dialog__instructions {
  margin-bottom: 3rem;
}

.member-contacts {
  width: 100%;
}

.staff-member__name {
  font-size: 1.15rem;
  padding: 1rem 0;
}

.sub-menu {
  border-top: 1px solid hsl(0deg, 0%, 70%);
  padding: 0.5rem 0;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
}
.sub-menu__menu-item {
  color: hsl(0deg, 0%, 80%);
}
.sub-menu__menu-link {
  display: inline-block;
  padding: 0.25rem 0.5rem;
}
.sub-menu__menu-link:hover {
  background-color: hsl(0deg, 0%, 40%);
  cursor: pointer;
}

.treatment-goal-input__container {
  display: grid;
  grid-template-columns: 25fr 25fr 25fr 15fr;
  gap: 12px;
}

.treatment-goal-results__column-heading {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: hsl(200deg, 75%, 80%);
  font-weight: 600;
}
.treatment-goal-results__container {
  display: grid;
  grid-template-columns: 33fr 33fr 33fr;
  gap: 12px;
}

.treatment-goal__container {
  display: grid;
  grid-template-columns: 50fr 50fr;
  gap: 12px;
}

.input-upload__hidden {
  display: none;
}
.input-upload__button {
  cursor: pointer;
}

.yes-no-list__label {
  font-size: 1.15rem;
  color: hsl(200deg, 75%, 80%);
  margin-bottom: 0.25rem;
  width: 100%;
}
.yes-no-list__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: center;
}
.yes-no-list__item {
  margin-right: 5px;
}

.section {
  margin-bottom: 7.5rem;
}

.pn-schedule {
  display: flex;
}
.pn-schedule__scheduled_list {
  margin: 0 1.5rem;
  width: 60%;
}
.pn-schedule__form {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-bottom: 5rem;
}
.pn-schedule__actions {
  align-self: end;
}

.test {
  color: red;
}