.zbx-simple-table {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  background: #f7f8fc;
  border-radius: 10px;

  &-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    &-item {
      display: flex;
      flex: 1;
      color: #686a84;
      font-size: 14px;
    }
  }

  &-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    margin-top: 12px;

    &-list {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      padding-bottom: 16px;

      &-item {
        display: flex;
        flex: 1;
        align-items: center;
      }
    }
  }
}
