
/* Style for the count down loader */
.countDownContainer {
    width: 30%;
    height: 30%;
    background-color: transparent;
    position: absolute;
    align-items: center;
    justify-content: center;
    left: 35%;
    top: 40%;
    flex-wrap: wrap;
    display: none;
  }
  
  .countDownBody {
    height: 250px;
    width: 250px;
    position:relative;
  }
  
  .countDownViewBox {
    transform: scaleX(-1);
  }
  
  .countDownCircleBase {
    fill: none;
    stroke: none;
  }
  
  .countDownCircle {
    stroke-width:10px;
    stroke:white;
  }
  
  .countDownClock {
    width: 250px;
    height:250px;
    position: absolute;
    color: rgb(0, 214, 162);
    align-items: center;
    justify-content: center;
    bottom: 1.5%;
    border-radius: 2px;
    border-color:white;
    font-size: 100px;
    display: flex;
  }
  
  .countDownCirclePathRemaining {
    width: 250px;
    height: 250px;
    stroke-width: 10px;
    stroke-linecap: round;
    stroke-dashoffset: 0;
    transform: rotate(80deg);
    transform-origin: center;
    transition: 1s linear all;
    stroke: rgb(0, 214, 162);
    bottom:10%;
    right:10%;
  }
  