.step-app {
  position: absolute;
  z-index: 1;
  top: 50%;
  translate: 0% -50%;
  right: 14%;
  background: #fff;
  max-width: 470px;
  border-radius: 8px;
  padding: 20px 0;
  padding-top: 0;
}

.step-app>.step-steps {
  margin: 0;
  padding: 0;
  display: flex;
  border-radius: 3px 3px 0 0;
  overflow: hidden;
  display: none;
}

.step-app>.step-steps>li {
  list-style: none;
  flex: 1;
  cursor: pointer;
  display: block;
  padding: 10px;
  color: #333;
  background-color: #e5e5e5;
  text-decoration: none;
  border-right: 1px solid #fff;
}

.step-app>.step-steps>li:hover {
  background-color: #ddd;
}

.step-app>.step-steps>li:last-child a {
  border: none;
}

.step-app>.step-steps>li.active {
  background-color: #32c5d2;
  color: #fff;
}

.step-app>.step-steps>li.error {
  background-color: #e7505a;
  color: #fff;
}

.step-app>.step-steps>li.done {
  background-color: #3cb371;
  color: #fff;
}

.step-app>.step-steps>li>.number {
  background: #fff;
  padding: 0 8px;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
  border-radius: 3px;
  color: #333;
}

.step-app>.step-content {
  padding: 0;
  border-top: unset;
  border: none;
}

.step-app>.step-content>.step-tab-panel {
  display: none;
}

.step-app>.step-content>.step-tab-panel.active {
  display: block;
}

.step-app>.step-footer {
  margin-top: 20px;
  margin-bottom: 15px;
}

.step-app>.step-footer>.step-btn {
  padding: 4px 16px;
  color: #333;
  text-decoration: none;
  background: #e5e5e5;
  border-radius: 3px;
  border: none;
  outline: none;
  cursor: pointer;
}

/*# sourceMappingURL=jquery-steps.css.map */

/*Custom CSS*/
.step-box {
  background: #fff;
  width: 470px;
  border-radius: 8px;
  padding: 0;
}

.step-box .text-bar {
  background: #b7fb6f;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.step-box .text-bar p {
  font-family: 'graphik-medium';
  font-size: 16px;
}

.step-box .text-bar:before {
  content: "";
  position: absolute;
  top: 45px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 23px solid #b6fb6f;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  -webkit-transform: translate(-50%, -4px);
  transform: translate(-50%, -4px);
}

.step-box h4 {
  text-align: center;
  font-family: 'graphik';
  color: #000;
  font-size: 20px;
  padding: 15px 100px;
  margin: 10px 0;
}

.step-box .cmp-grid-container__section-btn {
  text-align: center !important;
  margin-bottom: 20px !important;
}

.step-box .cmp-grid-container__section-btn button {
  background-color: rgb(28, 134, 30);
  font-family: 'graphik';
  font-size: 16px;
  padding: 20px 20px;
  width: calc(100% - 80px);
  border-radius: 8px;
  margin: 10px auto;
  text-align: center;
  color: #fff;
  outline: none;
  box-shadow: none;
  border: none;
  cursor: pointer;
  display: block !important;
}

.step-box .cmp-grid-container__section-btn button:hover {
  background-color: #040;
}

.step-box .step-text {
  font-family: 'graphik';
  font-size: 18px;
  text-align: center;
  position: relative;
  left: 40px;
  top: 10px;
}

[data-step-action="next"],
[data-step-action="finish"] {
  display: none !important;
}

[data-step-action="prev"] {
  position: absolute;
  z-index: 1;
  bottom: 18px;
  left: 29%;
  padding: 0 !important;
  background: transparent !important;
  font-family: graphik;
  font-size: 18px;
  display: flex;
  align-items: center;
}

[data-step-action="prev"] img {
  width: 32px;
}

@media (max-width: 600px) {
  .step-app>.step-footer>.step-btn {
    left: 25%;
  }
}

@media (max-width: 480px) {
  .step-app>.step-footer>.step-btn {
    left: 22%;
  }
}