'Magento Reorder and Resize Price Excl Incl Tax Labels

does anyone know how to reorder the excluding and including tax labels on magento 2?

Example of how i want to reoder them in the image below: EXAMPLE IMAGE

Also my incl tax price size is slightly smaller than the excl tax price, this only appears to be an issue on the product page, is it possible to change this by CSS?

I have the following CSS which i use to display the 'incl tax' label:

.price-excluding-tax::before {
    content: attr(data-label) ": ";
    font-size: 1.1rem;
}
.price-including-tax::before {
    content: attr(data-label) ": ";
    font-size: 1.1rem;
}
.price-container .price-including-tax + .price-excluding-tax, .price-container .weee, .price-container .price-including-tax + .price-excluding-tax .price, .price-container .weee .price, .price-container .weee + .price-excluding-tax::before, .price-container .weee + .price-excluding-tax .price {
    font-size: 1.4rem;
}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source