@-webkit-keyframes animateRainbow {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

@keyframes animateRainbow {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

@keyframes animateStripe {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(35px, 0);
    transform: translate(35px, 0); } }

@-webkit-keyframes animateStripe {
  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); } }

@-webkit-keyframes animateStripeRTL {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-35px, 0);
    transform: translate(-35px, 0); } }

.rael-progressbar {
  position: relative; }

.rael-progressbar-title {
  font-size: 20px;
  font-weight: 400; }

.rael-progressbar-line {
  position: relative;
  display: block;
  width: 100%;
  height: 12px;
  background-color: #eeeeee; }

.rael-progressbar-line .rael-progressbar-count-wrap {
  position: absolute;
  right: 0;
  bottom: calc(100% + 5px);
  font-size: 16px;
  font-weight: 400;
  line-height: 1; }

.rael-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;
  -o-transition: width 1500ms linear;
  transition: width 1500ms linear;
  overflow: hidden; }

.rael-progressbar-circle {
  position: relative;
  width: 200px;
  height: 200px; }

.rael-progressbar-circle .rael-progressbar-title {
  font-size: 16px;
  font-weight: 400; }

.rael-progressbar-circle .rael-progressbar-count-wrap {
  font-size: 28px;
  font-weight: 700; }

.rael-progressbar-circle-shadow {
  width: 220px;
  height: 220px;
  padding: 10px;
  border-radius: 50%; }

.rael-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%); }

.rael-progressbar-circle-inner {
  height: 100%;
  width: 100%;
  border-width: 12px;
  border-style: solid;
  border-color: #eeeeee;
  border-radius: 50%; }

.rael-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); }

.rael-progressbar-circle-half-left {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

.rael-progressbar-circle-half-right {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  visibility: hidden; }

.rael-progressbar-circle-inner-content {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center; }

.rael-progressbar-half-circle {
  position: relative;
  width: 200px;
  height: 100px;
  overflow: hidden; }

.rael-progressbar-half-circle .rael-progressbar-circle-pie {
  -webkit-clip-path: inset(0 0 50% 0);
  clip-path: inset(0 0 50% 0); }

.rael-progressbar-half-circle .rael-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;
  -o-transition: transform 1500ms linear;
  transition: transform 1500ms linear;
  transition: transform 1500ms linear, -webkit-transform 1500ms linear; }

.rael-progressbar-half-circle .rael-progressbar-circle-inner-content {
  top: initial;
  bottom: 0;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

.rael-progressbar-half-circle .rael-progressbar-title {
  font-size: 16px;
  font-weight: 400; }

.rael-progressbar-half-circle .rael-progressbar-count-wrap {
  font-size: 28px;
  font-weight: 700; }

.rael-progressbar-half-circle-after {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  clear: both; }

.rael-progressbar-postfix-label {
  float: right; }

.rael-progressbar-line-stripe .rael-progressbar-line-fill:after {
  content: "";
  position: absolute;
  top: 0;
  left: -35px;
  width: calc(100% + 70px);
  height: 100%;
  background-image: -o-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-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; }

.rael-progressbar-line-animate .rael-progressbar-line-fill:after {
  -webkit-animation: animateStripe 2s linear infinite;
  animation: animateStripe 2s linear infinite; }

.rael-progressbar-line-animate-rtl .rael-progressbar-line-fill:after {
  -webkit-animation: animateStripeRTL 2s linear infinite;
  animation: animateStripeRTL 2s linear infinite; }

.rael-progressbar-circle-wrap > div {
  margin: 0 auto; }

/*alignment*/
.rael-progressbar-line-container.left,
.rael-progressbar-circle-container.left > div,
.rael-progressbar-box-container.left > div {
  margin: 0 auto 0 0; }

.rael-progressbar-line-container.center,
.rael-progressbar-circle-container.center > div,
.rael-progressbar-box-container.center > div {
  margin: 0 auto; }

.rael-progressbar-line-container.right,
.rael-progressbar-circle-container.right > div,
.rael-progressbar-box-container.right > div {
  margin: 0 0 0 auto; }

.rtl .rael-progressbar-line-container {
  text-align: right; }

.rtl .rael-progressbar-line-container .rael-progressbar-count-wrap {
  left: 0;
  right: auto; }

.rtl .rael-progressbar-line-container .rael-progressbar-line-fill {
  left: auto;
  right: 0; }

.rtl .rael-progressbar.rael-progressbar-circle .rael-progressbar-circle-pie {
  -webkit-clip-path: inset(0 50% 0 0);
  clip-path: inset(0 50% 0 0); }

.rtl .rael-progressbar.rael-progressbar-circle .rael-progressbar-circle-half {
  -webkit-clip-path: inset(0 0 0 50%);
  clip-path: inset(0 0 0 50%); }

.rtl .rael-progressbar-circle-container .rael-progressbar-half-circle-after .rael-progressbar-prefix-label {
  float: left; }

.rael-progressbar-line-rainbow .rael-progressbar-line-fill {
  background: -webkit-gradient(linear, right top, left top, from(#9400d3), color-stop(#4b0082), color-stop(#0000ff), color-stop(#00ff00), color-stop(#ffff00), color-stop(#ff7f00), to(#ff0000));
  background: -o-linear-gradient(right, #9400d3, #4b0082, #0000ff, #00ff00, #ffff00, #ff7f00, #ff0000);
  background: linear-gradient(270deg, #9400d3, #4b0082, #0000ff, #00ff00, #ffff00, #ff7f00, #ff0000);
  background-size: 500% 500%;
  -webkit-animation: animateRainbow 5s ease infinite;
  animation: animateRainbow 5s ease infinite; }

.rael-progressbar-circle-fill .rael-progressbar-circle-half {
  background-color: #000000; }

.rael-progressbar-half-circle-fill .rael-progressbar-circle-half {
  background-color: #000000; }

.rael-progressbar-box {
  width: 100%;
  height: 200px;
  border: 1px solid #eeeeee;
  margin: 0 auto; }

.rael-progressbar-box .rael-progressbar-box-inner-content {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  z-index: 9; }

.rael-progressbar-box .rael-progressbar-count-wrap {
  font-size: 28px;
  font-weight: 700; }

.rael-progressbar-box .rael-progressbar-title {
  font-size: 16px;
  font-weight: 400; }

.rael-progressbar-box-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background-color: #000000;
  -webkit-transition: height 1500ms linear;
  -o-transition: height 1500ms linear;
  transition: height 1500ms linear; }

/*# sourceMappingURL=progress-bar.css.map */