.comments-header {
  font-size: .875rem;
  font-weight: 550;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.header {
  text-align: center;
  flex-basis: 100%;
  background-color: #F3F2F3;
  font-size: .875rem;
  font-weight: 550;
  padding: .5rem;
  border: 1px solid gainsboro;
  &.left {
    border-top-left-radius: 3px;
  }
  &.right {
    border-top-right-radius: 3px;
  }
}
.item {
  flex-basis: 25%;
  padding: .5rem;
  &.number {
    display: flex;
    justify-content: flex-end;
  }
}
.notes-container {
  display: flex;
  flex-direction: column;
  border: 1px solid #DCDCDC;
  padding: 1rem;

  .notes-row {
    display: flex;
    padding: .5rem;
    border-bottom: 1px solid #DCDCDC;
    .action {
      font-weight: 550;
    }
    &:last-of-type {
      border-bottom: none;
    }
  }
}