@-webkit-keyframes animateStripe {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(35px, 0);
            transform: translate(35px, 0);
  }
}
@keyframes animateStripe {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(35px, 0);
            transform: translate(35px, 0);
  }
}
@-webkit-keyframes animateStripeRTL {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-35px, 0);
            transform: translate(-35px, 0);
  }
}
@keyframes animateStripeRTL {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-35px, 0);
            transform: translate(-35px, 0);
  }
}
.eael-progressbar {
  position: relative;
}
.eael-progressbar-title {
  font-size: 20px;
  font-weight: 400;
}
.eael-progressbar-line {
  position: relative;
  display: block;
  width: 100%;
  height: 12px;
  background-color: #eeeeee;
}
.eael-progressbar-line .eael-progressbar-count-wrap {
  position: absolute;
  right: 0;
  bottom: calc(100% + 5px);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.eael-progressbar-line-fill {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 12px;
  background-color: #000000;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: width 1500ms linear;
  transition: width 1500ms linear;
  overflow: hidden;
}
.eael-progressbar-circle {
  position: relative;
  width: 200px;
  height: 200px;
}
.eael-progressbar-circle .eael-progressbar-title {
  font-size: 16px;
  font-weight: 400;
}
.eael-progressbar-circle .eael-progressbar-count-wrap {
  font-size: 28px;
  font-weight: 700;
}
.eael-progressbar-circle-shadow {
  width: 220px;
  height: 220px;
  padding: 10px;
  border-radius: 50%;
}
.eael-progressbar-circle-pie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0 0 0 50%);
          clip-path: inset(0 0 0 50%);
}
.eael-progressbar-circle-inner {
  height: 100%;
  width: 100%;
  border-width: 12px;
  border-style: solid;
  border-color: #eeeeee;
  border-radius: 50%;
}
.eael-progressbar-circle-half {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-width: 12px;
  border-style: solid;
  border-color: #000000;
  border-radius: 50%;
  -webkit-clip-path: inset(0 50% 0 0);
          clip-path: inset(0 50% 0 0);
}
.eael-progressbar-circle-half-left {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.eael-progressbar-circle-half-right {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  visibility: hidden;
}
.eael-progressbar-circle-inner-content {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}
.eael-progressbar-half-circle {
  position: relative;
  width: 200px;
  height: 100px;
  overflow: hidden;
}
.eael-progressbar-half-circle .eael-progressbar-circle-pie {
  -webkit-clip-path: inset(0 0 50% 0);
          clip-path: inset(0 0 50% 0);
}
.eael-progressbar-half-circle .eael-progressbar-circle-half {
  -webkit-clip-path: inset(50% 0 0 0);
          clip-path: inset(50% 0 0 0);
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 1500ms linear;
  transition: -webkit-transform 1500ms linear;
  transition: transform 1500ms linear;
  transition: transform 1500ms linear, -webkit-transform 1500ms linear;
}
.eael-progressbar-half-circle .eael-progressbar-circle-inner-content {
  top: initial;
  bottom: 0;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.eael-progressbar-half-circle .eael-progressbar-title {
  font-size: 16px;
  font-weight: 400;
}
.eael-progressbar-half-circle .eael-progressbar-count-wrap {
  font-size: 28px;
  font-weight: 700;
}
.eael-progressbar-half-circle-after {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  clear: both;
}
.eael-progressbar-postfix-label {
  float: right;
}
.eael-progressbar-line-stripe .eael-progressbar-line-fill:after {
  content: "";
  position: absolute;
  top: 0;
  left: -35px;
  width: calc(100% + 70px);
  height: 100%;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 35px 35px;
}
.eael-progressbar-line-animate .eael-progressbar-line-fill:after {
  -webkit-animation: animateStripe 2s linear infinite;
          animation: animateStripe 2s linear infinite;
}
.eael-progressbar-line-animate-rtl .eael-progressbar-line-fill:after {
  -webkit-animation: animateStripeRTL 2s linear infinite;
          animation: animateStripeRTL 2s linear infinite;
}
.eael-progressbar-circle-wrap > div {
  margin: 0 auto;
}
/*alignment*/
.eael-progressbar-line-container.left,
.eael-progressbar-circle-container.left > div,
.eael-progressbar-box-container.left > div {
  margin: 0 auto 0 0;
}
.eael-progressbar-line-container.center,
.eael-progressbar-circle-container.center > div,
.eael-progressbar-box-container.center > div {
  margin: 0 auto;
}
.eael-progressbar-line-container.right,
.eael-progressbar-circle-container.right > div,
.eael-progressbar-box-container.right > div {
  margin: 0 0 0 auto;
}
.rtl .eael-progressbar-line-container {
  text-align: right;
}
.rtl .eael-progressbar-line-container .eael-progressbar-count-wrap {
  left: 0;
  right: auto;
}
.rtl .eael-progressbar-line-container .eael-progressbar-line-fill {
  left: auto;
  right: 0;
}
.rtl .eael-progressbar.eael-progressbar-circle .eael-progressbar-circle-pie {
  -webkit-clip-path: inset(0 50% 0 0);
          clip-path: inset(0 50% 0 0);
}
.rtl .eael-progressbar.eael-progressbar-circle .eael-progressbar-circle-half {
  -webkit-clip-path: inset(0 0 0 50%);
          clip-path: inset(0 0 0 50%);
}
.rtl .eael-progressbar-circle-container .eael-progressbar-half-circle-after .eael-progressbar-prefix-label {
  float: left;
}
