.activity-checkbox {
  .outer {
    padding: 16px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    background-color: white;

    input {
      display: none;
    }

    label {
      width: 20px;
      height: 20px;
      border-radius: 4px;
      border-color: $mint;
      border-width: 2px;
      border-style: solid;
      background-color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 4px;
      margin-right: 8px;
      &::after {
        content: "";
        display: inline-block;
        width: 6px;
        height: 12px;
        padding-bottom: 4px;
        transform: rotate(45deg);
        border-bottom: 2px solid white;
        border-right: 2px solid white;
      }
    }

    input:checked + label {
      background-color: $mint;
    }

    .activity-checkbox-title {
      margin-bottom: 0;
      font-size: 14px;
      font-weight: 600;
      text-align: left;
      color: $light-grey;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      &.enabled {
        color: $charcoal;
      }
    }

    .activity-checkbox-dot {
      margin-right: 8px;
    }

    .activity-checkbox-activities-list {
      margin-bottom: 0;
      color: $light-grey;
      text-overflow: ellipsis;
      overflow: hidden;
      font-size: 12px;
      font-weight: 600;
    }

  }
}

.activity-number-input {
  text-align: center;
  font-size: 22px;
  padding-top: 2px;
  padding-bottom: 0;
  line-height: 0;

}

.new-checkbox {
  .outer {
    padding: 16px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    background-color: white;

    input {
      display: none;
    }

    label {
      width: 20px;
      height: 20px;
      border-radius: 4px;
      border-color: $mint;
      border-width: 2px;
      border-style: solid;
      background-color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 4px;
      margin-right: 8px;
      &::after {
        content: "";
        display: inline-block;
        width: 6px;
        height: 12px;
        transform: rotate(45deg);
        border-bottom: 2px solid white;
        border-right: 2px solid white;
      }
    }

    input:checked + label {
      background-color: $mint;
    }

    .new-checkbox-title {
      margin-bottom: 0;
      font-size: 14px;
      font-weight: 600;
      text-align: left;
      color: $charcoal;
      padding-top: 1px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }
}