.progress-container {
  margin-top: 1rem;
  padding: 0px 70px;
}

.progress-decoration {
  position: relative;
  height: 7vh;
  text-align: center;
}
.progress-decoration svg {
  position: absolute;
  fill: rgba(237, 30, 40, 0.2);
}
.progress-decoration .icon-cloud {
  fill: rgba(145, 179, 250, 0.4);
}
.progress-decoration #cloud-one {
  right: 6vw;
  top: -12vh;
}
.progress-decoration #cloud-two {
  right: 32vw;
  top: -8vh;
}
.progress-decoration #cloud-three {
  right: 72vw;
  top: -12vh;
}
.progress-decoration #tree-one {
  bottom: 0;
  right: 80vw;
}
.progress-decoration #tree-two {
  bottom: 0;
  right: 20vw;
}
.progress-decoration #lamp-one {
  bottom: 0;
  right: 54vw;
}
.progress-decoration #lamp-two {
  bottom: 0;
  right: 0;
}

.progress-bar {
  background-color: transparent;
  border: 3px #f4f4f4 solid;
  border-radius: 20px;
  position: relative;
  margin: 4px 0 16px 0;
  height: 30px;
  width: 100%;
}
.progress-bar .completed-bar {
  background: linear-gradient(to left, #376fda,#04c778);
  border-radius: 20px;
  color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 0;
  opacity: 0;
  transition: width 2s ease 0.4s;
  padding: 0 8px;
}
.progress-bar .completed-bar__dashed {
  width: 96%;
  border: 2px dashed #ffffff;
}
.progress-bar .completed-bar__truck {
  font-size: 1.5rem;
  margin-left: 4px;
}

.progress-information {
  display: none;
  justify-content: space-between;
  padding: 0 4px;
}

.icon-cloud {
  height: 50px;
  width: 50px;
}
.icon-lamp {
  height: 70px;
  width: 60px;
}
.icon-tree--one {
  height: 60px;
  width: 60px;
}
.icon-tree--two {
  height: 70px;
  width: 60px;
}

@media only screen and (max-width: 576px) {
  .progress-container {
    padding: 0px 16px;
  }

  .progress-decoration {
    display: none;
  }

  .progress-information {
    display: flex;
  }

  .progress-bar {
    margin-bottom: 4px;
    margin-top: 40px;
  }
  .progress-bar .completed-bar__dashed {
    width: 96%;
    border: 1px dashed #ffffff;
  }
  .progress-bar .completed-bar__truck {
    font-size: 1rem;
    margin-left: 0;
  }
}
