.progressbar {
    margin: 0;
    padding: 0;
    counter-reset: step;
}
.progressbar li {
    list-style-type: none;
    width: 25%;
    float: left;
    font-size: 12px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    color: #7d7d7d;
    z-index: 1;
}
.progressbar li:before {
    width: 30px;
    height: 30px;
    content: counter(step);
    counter-increment: step;
    line-height: 30px;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: #909090;
    color: white;
}
.progressbar li:after {
    width: 100%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: #7d7d7d;
    top: 15px;
    left: 50%;
    z-index: -1;
}
.progressbar li:last-child:after {
    content: none;
}
.progressbar li.active {
    color: #4799dd;
}
.progressbar li.active:before,
.progressbar li.active:after {
    background-color: #4799dd;
}

.activate-header {
    background-color: #efefef;
    margin: 0px;
    padding: 10px 0px;
}

.role-choose {
    height: 150px;
    border: 1px solid #428bca;
border: 1px solid var(--brand-primary);
    margin-left: 15px;
    text-align: center;
    padding-top: 25px;
    cursor: pointer;
}
.role-choose:hover {
    background-color: rgba(239, 239, 239, 0.8);
    border-color: #efefef;
}
.role-choose a:hover {
    text-decoration: none;
}

.page-back-buttons .language-change{
    line-height: 30px
}


.col-center {
    height: 33px;
    line-height: 33px;
}