.InventoryCard {
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 0 5px 0 rgb(0 15 23 / 20%);

    &-image {
        width: 40px;
        height: 40px;
        margin-right: 5px;
    }

    &-title {
        font-size: 14px;
    }

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

    &-main {
        display: flex;

        svg {
            width: 32px;
            height: 32px;
            margin-right: 18px;
        }
    }
}
