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

.powerhour-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: 4px;
  margin: 0;
  position: relative;
  width: 100%;
  margin: 10px 0 0;
}

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


/*==========================================
   powerhour-progressbar-style-2 
======================================*/
.powerhour-progressbar-style-2 .powerhour-progressbar-content {
  margin-bottom: 24px;
}

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

.powerhour-progressbar-style-2 .powerhour-progressbar-content .progress-title-content {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
}

.powerhour-progressbar-style-2 .powerhour-progressbar-content .progress-title {
  font-family: var(--second-font-family);
  font-weight: var(--font-weight-medium);
  color: var(--color-theme-secondary);
  font-style: italic;
  position: relative;
}

.powerhour-progressbar-style-2 .powerhour-progressbar-content .progress-value {
  color: var(--color-theme-secondary);
}

.powerhour-progressbar-style-2 .powerhour-progressbar-content .progress-title:after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--global-font-title);
  position: absolute;
  left: 0;
  bottom: 1px;
  transform: translate(0, -50%);
}


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

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

.powerhour-progressbar-style-2 .powerhour-progressbar-content .powerhour-progress-bar .show-progress::after {
  content: "";
  background: var(--color-theme-primary-light);
  height: 6px;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  -moz-transform: translateY(4px);
  -webkit-transform: translateY(4px);
  -o-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(1px);
}

.powerhour-progressbar-style-3 .progress-value {
  display: inline-flex;
  padding: 6px 10px;
  margin-top: -50px;
  align-items: center;
  justify-content: center;
  background-color: var(--color-theme-primary);
  line-height: 1.5em;
  color: var(--color-theme-white);
  position: relative;
  border-radius: var(--border-radius);
}

.powerhour-progressbar-style-3 .progress-value::before {
  content: '';
  display: inline-block;
  width: 0;
  left: 0;
  position: absolute;
  bottom: -4px;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-style: solid;
  border-color: var(--color-theme-primary) transparent transparent;
}