.container {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.container .bar {
  width: 200px;
  height: 200px;
  /*   box-shadow: -10px -10px 20px #ffffffb2,
    inset 3px 3px 10px rgba(94, 104, 121, 0.288); */
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0px -2px 20px gray;
}
.bar::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset -10px -10px 50px #ffffffb2,
    inset 10px 10px 50px orange;
}
svg {
  width: 100%;
  height: 100%;
  position: relative;
  fill: none;
}
svg circle {
  position: absolute;
  stroke: orange;
  stroke-width: 0px;
  stroke-dashoffset: 500px;
  stroke-dasharray: 1200px;
  transform-origin: center;
  transform: scale(1);
  animation: bar 4s ease-in-out infinite; /*forwards;*/
}
.number {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 34px;
  /*font-family: monospace;*/
  color: #000;
}
.config {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #000;
  letter-spacing: 1px;
  text-align: center;
  max-height: 0;
  /* animation: blink 1000ms 1.8s forwards; */
}
/* ///////////bar/////// */
@keyframes bar {
  0% {
    stroke-dashoffset: -800px;
  }
  50% {
    stroke-dashoffset: calc(500px - {500px * 90}/ 100);
    stroke-width: 40px;
  }
  100% {
    stroke-dashoffset: calc(500px - {500px * 90}/ 100);
    stroke-width: 0px;
  }
  
  /*100% {
    stroke-dashoffset: calc(500px - {500px * 90}/ 100);
    stroke-width: 40px;
  }*/
}
/* ///////////blink///////// */
@keyframes blink {
  to {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}


/* ------Start Media Queries Section------- */

/*
@media (max-width: 768px) {
  .container {
    width: 100vw;
    height: 100vh;
    transform: scale(0.8);
  }
}
@media (max-width: 450px) {
  .container {
    width: 100vw;
    height: 100vh;
    transform: scale(0.4);
  }
}
@media (max-width: 170px) {
  .container {
    width: 100vw;
    height: 100vh;
    transform: scale(0.3);
  }
}
@media (max-width: 500px) {
  .header {
    text-align: center;
    font-size: 1em;
  }
}
@media (max-width: 300px) {
  .header {
    text-align: center;
    font-size: 14px;
  }
}
*/

/* -------End Media Queries Section-------- */