.mct-checklist {
  display: flex;
  gap: 5px;
  flex-direction: column;
  align-items: stretch;
}
.mct-checklist .mct-checklist-item {
  border: 1px solid #f1aeb5;
  background-color: #f8d7da;
  color: #58151c;
  padding: 10px;
  border-radius: 3px;
  display: flex;
  gap: 20px;
  flex-direction: row;
  align-items: center;
}
.mct-checklist .mct-checklist-item.done {
  border-color: #a3cfbb;
  background-color: #d1e7dd;
  color: #0a3622;
}
.mct-checklist .mct-checklist-item .number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  flex-grow: 0;
  background-color: #fff;
  border-radius: 1000px;
  font-size: 25px;
  font-weight: bold;
}
.mct-checklist .mct-checklist-item .description {
  flex-grow: 10;
}
.mct-checklist .mct-checklist-item a {
  flex-shrink: 0;
  flex-grow: 0;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 12px;
  font-weight: bold;
  background-color: #fff;
  border-radius: 3px;
  display: block;
  color: inherit;
  text-decoration: none;
}

/*# sourceMappingURL=checklist.css.map */
