.invoice-table {
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 25px;
}

.invoice-row {
    border-bottom: 1px solid var(--grey-color);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 15px 20px;
}

.invoice-row-head {
    font-weight: 600;
    color: #000;
}

.invoice-cell {
    display: flex;
    align-items: center;
    color: #686A6E;
}

.invoice-row-head .invoice-cell {
    color: #000;
}

.invoice-cell-pdf {
    justify-content: flex-end;
}


.invoice-cell-pdf a {
    text-indent: -9999px;
    overflow: hidden;
    width: 35px;
    height: 30px;
    background-color: #f4f6f7;
    position: relative;
    display: block;
    border-radius: 6px;
}

.invoice-cell-pdf a:before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../../images/account/pdf-invoice.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s;
    opacity: .3;
}

.invoice-cell-pdf a:hover:before {
    opacity: .5;
}

.order-archive-link {
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    text-align: right;
    color: #282b30;
    width: fit-content;
    display: block;
    margin: 0 auto;
    opacity: 0.3;
    text-decoration: none;
    margin-top: -20px;
    margin-bottom: 20px;
}

@media (max-width:767px) {
    .invoice-cell {
        font-size: 12px;
    }
}