/* metro navigation forms */
.wrapper-metroBar {
    width: 100%
}

.metroBar {
    overflow: hidden;
    padding-inline-start:0px;
}

.metroBar li {
    list-style-type: none;
    float: left;
    position: relative;
    text-align: center;
    counter-increment: step;
}

.metroBar li a{
    color: black;
}

.metroBar a:before {
    content:counter(step)"";
    line-height: 30px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    display: block;
    text-align: center;
    margin: 0 auto 10px;
    background-color: white;
    z-index: 10;
    font-weight: bold;
    pointer-events: all;
}

.metroBar a:hover {
    text-decoration: none;
}

.hoverable a:hover:before {
    background-color: inherit !important;
    color: inherit !important;
}

.hoverable a:hover {
    text-decoration: underline;
}

.metroBar a:after {
    content: "";
    position: absolute;
    width: 150%;
    height: 2px;
    background-color: #ddd;
    top: 36px;
    left: -50%;
    z-index: -1;
}

.metroBar a:last-child:after {
    width: 100%;
}

.metroBar li.active a{
    color: black !important;
}

.metroBar li.disabled a{
    text-decoration: none;
    color: #ddd;
}

.metroBar li.active a:before {
    color: white;
    border-color: black;
    background-color: black
}

.metroBar li.active a:after {
    background-color: black;
}
/* end metro navigation forms */