Date & Time synced to GMT timezone

Hello,

I am building a countdown on the CMS page based on a date & Time picker on the cms item. I would like to have the countdown synced to GMT time. When I select the date and time it should select the GMT timezone.

I’ll give you an example.

This is how it should look like:

Current Date & Time (GMT) 16/11/2021 15:00
Time on the CMS item 17/11/2021 15:00

Time Left: 1d 0h 0m 0s

This is how it looks like right now:

Current Date & Time (GMT) 16/11/2021 15:00
Time on the CMS item 17/11/2021 15:00

Time Left: 0d 9h 0m 0s

Is there a way to fix this?

This is the code I used for the countdown.

<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
p {
  text-align: left;
  margin-top: 0px;
}
</style>
</head>
<body>

<p id="demo"></p>

<script>
// Set the date we're counting down to
var countDownDate = new Date("{{wf {&quot;path&quot;:&quot;auction-ending-time&quot;,&quot;transformers&quot;:[{&quot;name&quot;:&quot;date&quot;,&quot;arguments&quot;:[&quot;MMM DD, YYYY&quot;]\}],&quot;type&quot;:&quot;Date&quot;\} }}").getTime();

// Update the count down every 1 second
var x = setInterval(function() {

  // Get today's date and time
  var now = new Date().getTime();
    
  // Find the distance between now and the count down date
  var distance = countDownDate - now;
    
  // Time calculations for days, hours, minutes and seconds
  var days = Math.floor(distance / (1000 * 60 * 60 * 24));
  var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
  var seconds = Math.floor((distance % (1000 * 60)) / 1000);
    
  // Output the result in an element with id="demo"
  document.getElementById("demo").innerHTML = days + "d " + hours + "h "
  + minutes + "m " + seconds + "s ";
    
  // If the count down is over, write some text 
  if (distance < 0) {
    clearInterval(x);
    document.getElementById("demo").innerHTML = "Auction Ended";
  }
}, 1000);
</script>

</body>
</html>

Here is my site Read-Only: https://preview.webflow.com/preview/artspydr-ecommerce?utm_medium=preview_link&utm_source=designer&utm_content=artspydr-ecommerce&preview=bc87836bfbc5a8384670ad50a4e2f6a8&pageId=6176bcf032778e67be777e3a&itemId=61938ef4cc526e70d5a5549a&workflow=preview

here is the live website on the CMS page: https://artspydr-ecommerce.webflow.io/artworks/32WiXwopFSqyte