#estimation_popup.wpe_bootstraped .genPrice {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  max-width: 100%;
}

#estimation_popup.wpe_bootstraped .genPrice .progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: auto;
  width: 100%;
  opacity: 0;
  -webkit-animation: fadeIn 0.5s forwards ease-in;
          animation: fadeIn 0.5s forwards ease-in;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

#estimation_popup.wpe_bootstraped .genPrice .progress .progress-bar {
  display: none;
}

#estimation_popup.wpe_bootstraped .genPrice .progress .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: 16px;
  position: relative;
  padding: 10px 20px;
  margin: 0 5px;
  place-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

#estimation_popup.wpe_bootstraped .genPrice .progress .step::after {
  content: "\f345";
  font-family: dashicons;
  position: absolute;
  right: -20px;
  font-size: 30px;
  opacity: 0.1;
}

#estimation_popup.wpe_bootstraped .genPrice .progress .step:last-of-type::after {
  content: "";
}

#estimation_popup.wpe_bootstraped .genPrice .progress .step.active-step {
  cursor: unset;
  pointer-events: none;
}

#estimation_popup.wpe_bootstraped .genPrice .progress .step.active-step span {
  font-weight: bold;
  color: #0087c8;
}

#estimation_popup.wpe_bootstraped .genPrice .progress .step.active-step ~ .step {
  cursor: unset;
  pointer-events: none;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=steps.css.map */