@import 'https://fonts.googleapis.com/css?family=Cutive+Mono|Lato:300,400';
.progress-tracker {
  display: flex;
  margin: 40px auto;
  padding: 0;
  list-style: none;
}
.progress-step {
  display: block;
  position: relative;
  flex: 1 1 0%;
  margin: 0;
  padding: 0;
  min-width: 28px;
}
.progress-title {
  font-weight: 300;
  /* margin: 10px 0; */
  margin-top: 0;
  font-size: 20px;
  display: flex;
  justify-content: center;
}
.progress-step:last-child {
  flex-grow: 0;
}
.progress-step:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  top: 12px;
  bottom: 12px;
  right: -14px;
  width: 100%;
  height: 4px;
  transition: background-color 0.3s;
}
.progress-step.is-active .progress-title {
  font-weight: 400;
}
.progress-step > .bar {
  display: block;
}
.progress-marker {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
  width: 28px;
  height: 28px;
  padding-bottom: 2px;
  color: #fff;
  font-weight: 400;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: background-color, border-color;
  transition-duration: 0.3s;
}
.progress-text {
  display: block;
  padding: 14px 9.3333333333px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: -190px;
}
.progress-step .progress-marker {
  color: rgb(0, 0, 0);
  background-color: #b6b6b6;
}
.progress-step::after {
  background-color: #b6b6b6;
}
.progress-step .progress-text, .progress-step .progress-step > a .progress-text {
  color: #333333;
}
.progress-step.is-active .progress-marker {
  background-color: #293c44;
}
.progress-step.is-active::after {
  background-color: #868686;
}
.progress-step.is-complete .progress-marker {
  background-color: #6998ab;
}
.progress-step.is-complete::after {
  background-color: #868686;
}
.progress-tracker--text .progress-step:last-child {
  flex-grow: 1;
}
.anim-ripple .progress-marker::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 30;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: transform, opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.anim-ripple .progress-marker:active::before, .anim-ripple .progress-step > a:active .progress-marker::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(0);
  transition-duration: 0s;
}
.pbody {
  max-width: 1200px;
  /* margin: 0 auto; */
  padding: 15px;
  margin-left: 15%;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: #333;
  background-color: #fff;
}
.bar {
  cursor: default;
  color: #1976D2;
  text-decoration: none;
  transition: color 0.3s;
}