.inventory-card {
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

.inventory-card:hover {
    box-shadow: 0 .5rem 1.2rem rgba(25, 42, 70, .09);
    transform: translateY(-2px);
}

.purchase-quote {
    background: var(--vz-light, #f3f6f9);
    border: 1px dashed var(--vz-border-color, #e9ebec);
    min-height: 58px;
}

@media (max-width: 767.98px) {
    .table-mobile-cards thead {
        display: none;
    }

    .table-mobile-cards,
    .table-mobile-cards tbody,
    .table-mobile-cards tr,
    .table-mobile-cards td {
        display: block;
        width: 100%;
    }

    .table-mobile-cards tr {
        border: 1px solid var(--vz-border-color, #e9ebec);
        border-radius: .5rem;
        margin-bottom: .75rem;
        padding: .5rem;
    }

    .table-mobile-cards td {
        border: 0;
        padding: .3rem .5rem;
        text-align: left !important;
        white-space: normal;
    }
}
