.zbx-card-list {
  min-height: 100%;
  background: #f2f3f5;
  .container {
    display: flex;
    flex-direction: column-reverse;

    .card {
      @spacer: 15px;

      display: flex;
      flex-direction: column;
      justify-content: space-between;
      margin-top: -@spacer;
      padding: 24px @spacer;
      background: #fff;
      border-radius: 15px;

      &:nth-last-child(even) {
        background: #f2f3f5;
      }

      &:last-child {
        margin-top: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
      }

      &:not(:last-child) {
        padding-top: 36px;
        //border-radius: 0;
      }

      &:first-child {
        border-radius: 0;
      }

      .card-header {
        display: flex;
        .card-title {
          margin-top: 0;
          flex: 1;
        }
      }
    }
  }
}
