.auction-item {
  display: table-row;
  border-top: 1px solid #e6e6e6;
  border-left: none;
  border-right: none;
  padding: 6px;
  vertical-align: middle;

  .image-box {
    width: 130px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background-color: #f6f6f6;

    .image.cell {
      vertical-align: middle;
      max-width: 130px;
      max-height: 100px;
    }
  }

  .cell {
    padding: 6px;
  }

  .title {
    font-size: 12px;
    color: blue;

    a {
      text-decoration: none;

      &:hover {
        filter: brightness(1.50);
      }
    }

  }

  .date {
    font-size: 12px;
    text-align: right;
  }

  .price {
    font-size: 12px;
    color: red;
  }
}