/**
 * Progress bar animation by Hakan Havutcuoglu
 * https://codepen.io/havutcuoglu/pen/abMdvoq
 * This notice MUST stay intact in JS files and SCRIPT tags for free and legal usege.
 */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,600;0,400;1,600;1,400&display=swap");

.progress_bar
{
	color: #FFFFFF;
	margin-top: 30px;
}

.progress_bar_margin
{
	 margin-bottom: 15px;
}
.progress_bar_line
{
	color: #FFFFFF;
	background-color: #333A42;
	height: 6px;
	border-radius: 4px;	
}
.ce_ixelgen_progress_bar {
  max-width: 800px;
  margin: 0 auto;
}
.ce_ixelgen_progress_bar .progress_bar_item {
  margin-bottom: 2rem;
}
.ce_ixelgen_progress_bar .item_label,
.ce_ixelgen_progress_bar .item_value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}
.ce_ixelgen_progress_bar .item_value {
  font-weight: 400;
}
.ce_ixelgen_progress_bar .item_bar {
  position: relative;
  height: 1.5rem;
  width: 100%;
  background-color: #000;
  border-radius: 4px;
}
.ce_ixelgen_progress_bar .item_bar .progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  height: 1.5rem;
  margin: 0;
  background-color: #f50045;
  border-radius: 4px;
  transition: width 100ms ease;
}