.page {
  position: fixed;
  top: 50px;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--grey);
  padding: 20px;
  z-index: 200;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Clearfix: forces container to wrap floated children */
.page::after {
  content: "";
  display: table;
  clear: both;
}

.page-grey {
  left: 40px;
  background: var(--grey);
}

.page-green {
  left: 50px;
  background: var(--green);
}

.page-blue {
  left: 60px;
  background: var(--blue);
}

.page-purple {
  left: 70px;
  background: var(--purple);
}

.page-orange {
  left: 80px;
  background: var(--orange);
}

h2 {
  margin: 0px;
}

.progress-track {
  border: 2px solid black;
  position: relative;
  height: 10px;
  width: 100%;
  background: var(--grey);
  border-radius: 2px;
  overflow: hidden;
  display: block;
  background-color: white;
  margin-bottom: 10px;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--green);
  z-index: 1;
}

.progress-pct {
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8pt;
  font-weight: bold;
  color: black;
  z-index: 2;
}

.button_path {
  width: 250px;
}