.InventoryHeader {
    background-color: var(--white);
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;

    &-image {
        width: 60px;
        height: 60px;
        margin-right: 30px;
    }

    &-show {
        color: var(--gray-600);
        font-weight: 500;
        text-transform: uppercase;
    }

    &-title {
        color: var(--gray-900);
        font-weight: 400;
        font-size: 24px;
        cursor: pointer;

        &:hover {
            text-decoration: underline;
        }
    }

    &-num-downloads {
        color: var(--gray-500);
        font-weight: 400;
        font-size: 14px;
    }

    &-middle-section {
        display: flex;
        align-items: center;
    }

    &-title-star {
        margin-left: 10px;
        padding-right: 15px;
        border-right: 1px solid var(--gray-300);

        .Star {
            width: 15px;
            height: 15px;
        }
    }

    &-close {
        padding: 8px 15px;

        .CloseGlyph.Glyph {
            fill: var(--gray-500);
            cursor: pointer;
        }

        .CloseGlyph.Glyph:hover {
            fill: var(--gray-600);
        }
    }
}
