diff --git a/datacenterlight/views.py b/datacenterlight/views.py
index af19b244..445ff7cf 100644
--- a/datacenterlight/views.py
+++ b/datacenterlight/views.py
@@ -197,7 +197,7 @@ class IndexView(CreateView):
             'vat': vat,
             'vat_percent': vat_percent,
             'discount': discount,
-            'total_price': price + vat - discount['amount'],
+            'total_price': round(price + vat - discount['amount'], 2),
             'pricing_name': vm_pricing_name
         }
         request.session['specs'] = specs
diff --git a/hosting/views.py b/hosting/views.py
index c2eef1bd..32de4e54 100644
--- a/hosting/views.py
+++ b/hosting/views.py
@@ -1305,7 +1305,7 @@ class CreateVirtualMachinesView(LoginRequiredMixin, View):
             'price': price,
             'vat': vat,
             'vat_percent': vat_percent,
-            'total_price': price + vat - discount['amount'],
+            'total_price': round(price + vat - discount['amount'], 2),
             'pricing_name': vm_pricing_name
         }