﻿ /*Count down timer*/
 #countdown {
                  position: relative;
                  margin: auto;
                  /*margin-top: 100px;*/
                  height: 40px;
                  width: 40px;
                  text-align: center;
                }

                #countdown-number {
                  color: red;
                  display: inline-block;
                  line-height: 40px;
                }

                svg {
                  position: absolute;
                   top: 0;
                  right: 0;
                  width: 40px;
                  height: 40px;
                  transform: rotateY(-180deg) rotateZ(-90deg);
                }

                svg circle {
                  stroke-dasharray: 113px;
                  stroke-dashoffset: 0px;
                  stroke-linecap: round;
                  stroke-width: 2px;
                  stroke: #25b9e9;
                  fill: none;
                  animation: countdown 60s linear infinite forwards;
                }

                @keyframes countdown {
                  from {
                    stroke-dashoffset: 0px;
                  }
                  to {
                    stroke-dashoffset: 113px;
                  }
                }
