@import url("https://fonts.googleapis.com/css2?family=Muli&display=swap");
* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Muli";
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main {
  display: flex;
  flex-direction: column;
}
body main .progressGroup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
  width: 350px;
  max-width: 100%;
}
body main .progressGroup:before {
  content: " ";
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #383838;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -2;
}
body main .progressGroup .progress-dush {
  position: absolute;
  height: 3px;
  width: 0;
  background-color: #3498bd;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: 0.4s ease;
}
body main .progressGroup .circles {
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #383838;
  border-radius: 50%;
}
body main .progressGroup .circles.active {
  border: 3px solid #3498bd;
  transition: 0.4s ease 0.2s;
}
body main .btnGroup {
  width: 350px;
  max-width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
}
body main .btnGroup .btn {
  width: 120px;
  height: 40px;
  border-radius: 10px;
  padding: 4px;
  background-color: #3498bd;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0.5rem;
  border: 0;
  cursor: pointer;
}
body main .btnGroup .btn:active {
  transform: scale(0.9);
}
body main .btnGroup .btn:fouce {
  outline: 0;
}
body main .btnGroup .btn.disabled {
  background-color: #383838;
  cursor: not-allowed;
}/*# sourceMappingURL=progress.css.map */