.product-stock {
    display: flex;
    flex-direction: row;
    align-items: center;

    .in-stock {
        background-color: #85B003;
        height: 8px;
        width: 8px;
        border-radius: 100%;
        margin-right: 10px;
    }

    .out-of-stock {
        background-color: red;
        height: 8px;
        width: 8px;
        border-radius: 100%;
        margin-right: 10px;
    }
}