<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.ihc-register-two-step-buttons-wrapper{
  padding: 15px 0;
  display: flex;
  flex-direction: row-reverse;
  margin: 0;
}
.ihc-register-two-step-buttons-justify{
  justify-content: space-between;
  flex-direction: row;
}
.ihc-register-second-page{
  display: none;
}
.iump-two-step-selected{
    color: orange;
    font-weight: bold;
}
.ihc-register-second-page input[type=submit]{
}
.ihc-signup-progressbar{
  position: relative;
  display: flex;
  justify-content: space-between;
  counter-reset: step;
  margin: 1.5rem 0;
  margin-bottom: 3.5em;
}
.ihc-signup-progressbar:before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 3px;
    width: 100%;
    background-color: #ededed;
    z-index: 1;
}
.ihc-signup-progressbar .ihc-signup-progressbar-step{
    width: 2.2rem;
    height: 2.2rem;
    background-color: #fff;
    border-radius: 50%;
    border: 3px solid #ededed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    z-index: 2;
    font-weight: 700;
    box-shadow: inset 0 0 0 2px #fff;
}
.ihc-signup-progressbar .ihc-signup-progressbar-step:before {
    counter-increment: step;
    content: counter(step);
}
.ihc-signup-progressbar .ihc-signup-progressbar-step:after {
    content: attr(data-title);
    position: absolute;
    bottom: calc(-100% + 0.5rem);
    font-size: .7rem;
    color: #666;
    font-weight: 600;
    width: 10rem;
    text-align: center;
    text-transform: uppercase;
}
.ihc-signup-progressbar .ihc-signup-progressbar-step-active {
    background-color: #d03987;
    color: #fff;
    border: 3px solid #d03987;
}
.ihc-signup-progressbar-completed:before{
    background-color: #d03987;
}
</pre></body></html>