/* Global */
* {
  margin: 0;
  padding: 0;
}

/* Navbar - Progress Bar */
.progress-bar-container {
  position: fixed;
  top: 2em;
  left: 2em;
  height: 210px;
  z-index: 1;
}
@media (max-width: 1219px) {
  .progress-bar-container {
    visibility: hidden;
    opacity: 0;
    transition: 1s;
    top: 4em;
    left: 2em;
  }
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.5);
}

.progress-bar--increment {
  background-color: #e74c5b;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  border-radius: 5px;
}

.progress-bar--circle {
  position: absolute;
  bottom: 5px;
  left: -21px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  transition: 0.1s;
}

.progress-bar--circle.active {
  background-color: #e74c5b;
}

.progress-bar-container ul {
  padding: 0 1rem;
  list-style: none;
}

.progress-bar-container ul li {
  position: relative;
  margin-bottom: 1.4rem;
}

.progress-bar-container ul li a {
  font-size: 1em;
  color: gray;
  text-decoration: none;
  transition: all 0.1s;
}

.active {
  color: #e74c5b !important;
}
