.makerz-progressbar-content {
  position: relative;
  margin-bottom: 22px;
}

.makerz-progressbar-content:last-child {
  margin-bottom: 0;
}

.progress-value {
  float: right;
  border-radius: 0;
  color: var(--color-theme-secondary);
  line-height: 30px;
  font-weight: normal;
  position: relative;
  bottom: 0;
  right: 0;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}

.makerz-progress-bar {
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
  background: var(--global-body-lightcolor) none repeat scroll 0 0;
  box-shadow: 0 0 0;
  height: 6px;
  margin: 0;
  position: relative;
  width: 100%;
  margin: 10px 0 0;
}

.makerz-progress-bar>span {
  background: var(--color-theme-primary) none repeat scroll 0 0;
  display: block;
  height: 100%;
  width: 0;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}

.makerz-progressbar-content .progress-title {
  font-family: var(--highlight-font-family);
  font-weight: var(--font-weight-medium);
  color: var(--color-theme-secondary);
}


/* makerz-progressbar-style-2 */
.makerz-progressbar-style-2 .progress-title-content .progress-title {
  font-family: var(--highlight-font-family);
  font-weight: var(--font-weight-light);
  text-transform: capitalize;
  color: var(--global-font-title);
}

.makerz-progressbar-style-2 .makerz-progressbar-content {
  margin-bottom: 30px;
}

.makerz-progressbar-style-2 .makerz-progressbar-content:last-child {
  margin-bottom: 0;
}

.makerz-progressbar-style-2 .makerz-progressbar-content .progress-title-content {
  margin-bottom: 0.625em;
}

.makerz-progressbar-style-2 .makerz-progressbar-content .makerz-progress-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.makerz-progressbar-style-2 .makerz-progressbar-content .makerz-progress-bar {
  margin: 0 50px 0 0;
}

.makerz-progressbar-style-2 .makerz-progressbar-content .makerz-progress-bar .show-progress {
  position: relative;
}

.makerz-progressbar-style-2 .makerz-progressbar-content .makerz-progress-bar .show-progress::after {
  content: "";
  background: var(--color-theme-primary);
  height: 15px;
  width: 5px;
  position: absolute;
  right: 0;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*=============
style-3
=================*/

.makerz-progressbar-style-3 .makerz-progressbar-content {
  margin-bottom: 30px;
}

.makerz-progressbar-style-3 .progress-title-content {
  margin-bottom: 14px;
}

.progress-title-content .progress-title {
  font-family: var(--global-font-family);
  color: var(--global-font-color);
  font-size: var(--font-size-body);
  line-height: var(--font-line-height-body);
  font-weight: var(--font-weight-semi-bold);
}

.makerz-progressbar-style-3 .makerz-progress-bar {
  background: var(--color-theme-orange-light);
  height: 8px;
  line-height: 8px;
}