/* Progress Bar Styles */
.fill_color_bar {
  background-color: var(--purple_dark)!important;
  position: relative;
  z-index: 1090!important;
}
.fill_color_bar:hover {
  background-color: var(--purple_medium)!important;
  color: #fff;
}
.fill_color_bar:not(:first-child)::after {
  position: absolute;
  content: "";
  width: 304px;
  height: 3px;
  top: 12px;
  right: 31px;
  background-color: var(--purple_dark)!important;
}
.active_bar, .openInvBar {
  position: relative;
}
.openInvBar {
  color: #0ed1a5!important;
  display: flex;
}
.openInvBar p {
  color: #0ed1a5!important;
}
.openInvBar span {
  background-color: #0ed1a5!important;
  border-radius: 50%;
  padding: 0.1rem 0.6rem;
  color: white;
}
.active_bar::before {
  content: "";
  position: absolute;
  top: 49%;
  left: 49%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: var(--purple_dark);
  border-radius: 50%;
  border: 3px solid var(--yellow_dark);
  z-index: -1;
}
@media (min-width:992px) and (max-width:1200px) {
  .fill_color_bar:not(:first-child)::after {
    width: 402px!important;
  }
  .line_bar_progress:not(:first-child)::before {
    width: 86px!important;
  }
}
@media (min-width:768px) and (max-width:992px) {
  .fill_color_bar:not(:first-child)::after {
    width: 276px!important;
  }
  .line_bar_progress:not(:first-child)::before {
    width: 56px!important;
  }
}