.auction {
    &-items {
    }

    &-item {
        .card-body {
            position: relative;
        }

        .image {
            height: 80px;

            img {
                max-height: 100%;
            }
        }

        .price {
            font-weight: bold;
            text-align: center;
            margin-bottom: 1rem;

            span {
                color: $danger;
            }
        }

        .time {
            font-size: .7rem;
            position: absolute;
            right: .5rem;
            bottom: .2rem;
        }
    }
}