How to move custom block in product detailed page

I had created custom block and called in product_detail_view.xml file but it is coming after the description now I need that block after the price.

This is code the I had put in product_detail_view.xml file

<referenceContainer name="content">
             <block class="MagentoCmsBlockBlock" name="area-calculator" after="product.info.price">
                    <arguments>
                        <argument name="block_id" xsi:type="string">area-calculator</argument>
                     </arguments>
            </block>
        </referenceContainer>

How can I move above custom block to after price ?