.steps-vertical {
  padding: 0;
}
.steps-vertical .step-vertical-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 20px;
  color: #6c757d;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.steps-vertical .step-vertical {
  display: flex;
  position: relative;
  padding: 1rem 0;
  color: rgb(163, 163, 163);
}
.steps-vertical .step-vertical:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: #e9ecef;
}
.steps-vertical .step-vertical.active {
  color: black;
}
.steps-vertical .step-vertical.active .step-vertical-icon {
  background: #4361ee;
  border-color: #4361ee;
  color: white;
  box-shadow: 0 0 0 5px rgba(67, 97, 238, 0.2);
}
.steps-vertical .step-vertical.complete {
  color: black;
}
.steps-vertical .step-vertical.complete .step-vertical-icon {
  background: #2ecc71;
  border-color: #2ecc71;
  color: white;
}
.steps-vertical .step-vertical-content {
  padding-top: 0.5rem;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
  flex: 1;
}
.steps-vertical .step-vertical-content #verify-mobile,
.steps-vertical .step-vertical-content #personal-details,
.steps-vertical .step-vertical-content #business-details,
.steps-vertical .step-vertical-content #payment-agreegator {
  width: 100%;
  border-radius: 4px;
  margin-top: 10px;
}
.steps-vertical .step-vertical-content #verify-mobile.minimized,
.steps-vertical .step-vertical-content #personal-details.minimized,
.steps-vertical .step-vertical-content #business-details.minimized,
.steps-vertical .step-vertical-content #payment-agreegator.minimized {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.steps-vertical .step-vertical-content #verify-mobile.minimized > .step-content,
.steps-vertical .step-vertical-content #personal-details.minimized > .step-content,
.steps-vertical .step-vertical-content #business-details.minimized > .step-content,
.steps-vertical .step-vertical-content #payment-agreegator.minimized > .step-content {
  height: 0px;
}
.steps-vertical .step-vertical-content h5 {
  margin-bottom: 2px;
}
.steps-vertical .step-vertical-content p {
  font-size: 1rem;
}
.steps-vertical .step-vertical-content .form {
  width: 450px;
}
.steps-vertical .step-vertical-content .pg-radio input[type=radio] + label {
  cursor: pointer;
}
.steps-vertical .step-vertical-content .pg-radio input[type=radio]:checked + label {
  border: 2px solid var(--primary);
}
