.barak-circle-wrapper span {
  position: absolute;
  top: 15%;
  left: 50%;
  -webkit-transform: translate(-50%, 2%);
          transform: translate(-50%, 2%);
  margin: 0;
  border: 20px solid white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 65%;
  height: 65%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.barak-circle-wrapper .barak-cricle--title {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  white-space: nowrap;
}

.barak-circle-wrapper.barak-circles-animation svg circle {
  fill: transparent;
  stroke-dasharray: 628;
  stroke-dashoffset: 628;
  stroke-linecap: round;
  -webkit-animation: clock-animation 1.5s ease-in-out forwards;
          animation: clock-animation 1.5s ease-in-out forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.barak-circle-wrapper svg circle {
  fill: transparent;
  stroke-dasharray: 628;
  stroke-dashoffset: 628;
  stroke-linecap: round;
}

@-webkit-keyframes clock-animation {
  0% {
    stroke-dashoffset: 628;
  }
  100% {
    stroke-dashoffset: var(--percentage);
  }
}

@keyframes clock-animation {
  0% {
    stroke-dashoffset: 628;
  }
  100% {
    stroke-dashoffset: var(--percentage);
  }
}
/*# sourceMappingURL=barak-elements.css.map */