.ProductDetails {
    background-color: #fff;
    border: 1px solid #d8d8d8;
    padding: 21px 25px;
    position: relative;

    &-artist-name {
        color: black;
        font-size: 18px;
        font-weight: 500;
        margin-top: 10px;
    }

    &-product-name {
        color: black;
        font-family: Rubik;
        font-size: 24px;
        margin-bottom: 20px;
    }

    &-back {
        color: var(--bluejay);
        cursor: pointer;
        font-size: 11px;
        font-weight: 500;
        text-transform: uppercase;
    }

    .Icons-left-pagination-arrow {
        fill: var(--bluejay);
        height: 8px;
        margin-right: 6px;
    }

    &-metadata-item {
        display: inline-block;
        margin-bottom: 20px;
        vertical-align: top;
        width: 175px;
    }

    &-metadata-label {
        color: var(--gray-500);
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 5px;
        text-transform: uppercase;
    }

    &-metadata-value {
        color: black;
        font-size: 12px;
    }

    &-table-header {
        border-left: 1px solid var(--gray-400);
        border-radius: 2px 2px 0 0;
        border-right: 1px solid var(--gray-400);
        border-top: 1px solid var(--gray-400);
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        font-size: 18px;
        font-weight: 500;
        height: 45px;
        margin-top: 25px;
        padding: 10px 10px 10px 10px;
    }

    .Alternate-row {
        background-color: var(--gray-200);
    }

    &-left-row {
        color: var(--gray-800);
        font-size: 12px;
        font-weight: 500;
        padding-left: 10px;
        text-align: left;
    }

    &-inventory-left {
        width: 260px;
    }

    &-inventory-total {
        text-align: right;
        width: 125px;
    }

    /* stylelint-disable selector-no-type */

    table {
        border: solid 1px var(--gray-400);
        width: 100%;
    }

    th {
        border-bottom: solid 1px var(--gray-400);
        color: var(--gray-500);
        font-size: 12px;
        font-weight: 500;
        height: 25px;
        padding-right: 10px;
        text-align: right;
        text-transform: uppercase;
    }

    tr:not(:last-child) {
        border-bottom: solid 1px var(--gray-200);
    }

    td {
        font-size: 12px;
        height: 25px;
        padding-right: 10px;
        text-align: right;
    }

    /* stylelint-enable selector-no-type */

    &-empty-state {
        border-bottom: 1px solid var(--gray-400);
        border-left: 1px solid var(--gray-400);
        border-right: 1px solid var(--gray-400);
        color: var(--gray-500);
        font-size: 18px;
        font-weight: 500;
        padding: 15px;
        text-align: center;
    }
}
