/* ==========================================================================
 * Checklist
 * ========================================================================== */

.mds-c-checklist {
  > .mds-c-toggle {
    flex-shrink: 0;
  }
}

.mds-c-checklist__label {
  @mixin mds-m-text--size-med;

  color: var(--mds-t-text-color--primary);
  flex: 1;
  min-width: 0;
  padding-left: var(--mds-d-spacing--med);

  .mds-c-checklist__item--completed & {
    color: var(--mds-t-text-color--tertiary);
    font-style: italic;
    text-decoration: line-through;
  }
}

.mds-c-checklist__item {
  align-items: center;
  display: flex;
  flex: 1;
  margin-left: calc(var(--mds-d-spacing--xl) * -1);
  margin-right: calc(var(--mds-d-spacing--xl) * -1);
  padding: var(--mds-d-spacing--xs) var(--mds-d-spacing--xl);
  position: relative;

  &:not(:last-child) {
    margin-bottom: var(--mds-d-spacing--xs);
  }

  &--new {
    > .mds-c-toggle {
      visibility: hidden;
    }

    .mds-c-checklist__label {
      color: var(--mds-t-text-color--tertiary);
    }
  }
}
