/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 12 2020 | 09:55:32 */
.line-container {
  display: flex;
  width: 100%;
  margin-top: 150px;
  margin-bottom: 1em;
}
.line-container .progress-line {
  position: relative;
  margin: 0 auto;
  border-radius: 10px;
  width: 90%;
  background: #949494;
  height: 5px;
  z-index: -1;
  display: flex;
  justify-content: space-between;
}
.line-container .progress-line .progress {
  position: absolute;
  width: 75%;
  height: 100%;
  background: #f87f24;
  transition: width 1s ease-in-out;
}
.line-container .status {
  position: relative;
  top: -9.5px;
}
.line-container .status.completed {
  color: #00A551;
}
.line-container .status .dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  border: 5px solid #949494;
}
.line-container .status .dot.current {
  background: white;
  border: 5px solid #00A551;
}
.line-container .status .dot.completed {
  position: relative;
  background: #00A551;
  border: 5px solid #00A551;
}
.line-container .status .dot.completed::after {
  content: '';
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 4.5px);
  height: 5px;
  width: 10px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform-origin: center;
  transform: rotate(-45deg);
  z-index: 2;
}
.line-container .status .icon-container {
  position: absolute;
  top: -140px;
  left: -25px;
  text-align: center;
  width: 75px;
}
.line-container .status .icon-container img {
  width: 80px;
}
.line-container .status .icon-container p {
  font-weight: bold;
}
