.content-view {
	display: flex;
    align-items: center;
    justify-content: center;
}
fieldset {
	width: max-content;
}
.form-group {
	display: block;
}

.form-group.hidden {
	display: none;
}
.col-form-label {
    text-align: left;
    max-width: 100%;
}
.card-header .col {
	text-align: center;
}
.card-footer {
	display: flex;
    align-items: center;
    justify-content: center;
}



.progress {
  	background: transparent;
	bottom: 50px;
	display: flex;
	height: 60px;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;
	box-shadow: none;
	width: 50%;
}
.progress .progress-track {
  display: none;
  position: absolute;
  top: 5px;
  width: 100%;
  height: 5px;
  background-color: #dfe3e4;
  z-index: -1;
}
.progress .progress-step {
  position: relative;
  width: 100%;
  font-size: 12px;
  text-align: center;
  z-index: 1;
}
.progress .progress-step:last-child:after {
  display: none;
}
/*   .progress .progress-step:before {
    content: "1";
    display: flex;
    margin: 0 auto;
    margin-bottom: 10px;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 4px solid #dfe3e4;
    border-radius: 100%;
    color: #fff;
  } */
.progress .progress-step:after {
  content: "";
  position: absolute;
  top: 6px;
  width: 0%;
  transition: width 1s ease-in;
  height: 2px;
  background: #dfe3e4;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
}
.progress .progress-step.is-active {
  color: #2183dd;
}
.progress .progress-step.is-active:before {
  border: 4px solid #fff;
  animation: pulse 2s infinite;
}
.progress .progress-step.is-complete {
  color: #009900;
}
.progress-step.is-complete .q_counter.passed {
    background: #2196f3;
    color: #fff;
}

.progress-step.is-active .q_counter.passed {
    background: #42a5f5;
    color: #fff;
}
/*   .progress .progress-step.is-complete:before {
    font-family: FontAwesome;
    font-size: 10px;
    color: #fff;
    background: #009900;
    border: 4px solid transparent;
  } */
.progress .progress-step.is-complete:after {
  background: #2196f3;
  animation: nextStep 1s;
  animation-fill-mode: forwards;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(33, 131, 221, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(33, 131, 221, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(33, 131, 221, 0);
  }
}
@keyframes nextStep {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.q_counter {
  position: absolute;
  margin: 0 auto;
  margin-bottom: 10px;
  width: 50px;
  height: 50px;
  background: #b3e5fc;
  border-radius: 100%;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  line-height: 50px;
  cursor: pointer;
}

.progress-step.is-active .q_counter {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

a.q_counter:hover, a.q_counter:focus {
    text-decoration: none;
    color: #fff !important;
}