﻿.container-step {
    width: 80%;
    margin: 60px auto; 
}
.progressbar {
    margin: 0;
    padding: 0;
    counter-reset: step;
}
.progressbar li {
    list-style-type: none;
    width: 19.6%;
    float: left;
    font-size: 14px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    color: #1e90ff;
    font-weight: bold
}
.progressbar li:before {
    width: 30px;
    height: 30px;
    content: counter(step);
    counter-increment: step;
    line-height: 27px;
    border: 2px solid #1e90ff;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
}
.progressbar li:after {
    width: 88%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: #1e90ff;
    top: 15px;
    left: -44%;
    z-index: 0;
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active {
    color: #1e90ff;
}
.progressbar li.active:before {
    border-color: red;
}
.progressbar li.active + li:after {
    background-color: #1e90ff;
}

/*SOUS ETAPE*/
.Sousprogressbar {
    margin: 0;
    padding: 0;
    counter-reset: step;
}
.Sousprogressbar li {
    list-style-type: none;
    width: 20%;
    float: left;
    font-size: 14px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    color: #af6012;
    font-weight: bold
}
.Sousprogressbar li:before {
    width: 30px;
    height: 30px;
    content: counter(step);
    counter-increment: step;
    line-height: 27px;
    border: 2px solid #af6012;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
}
.Sousprogressbar li:after {
    width: 87%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: #af6012;
    top: 15px;
    left: -43%;
    z-index: 0;
}
.Sousprogressbar li:first-child:after {
    content: none;
}
.Sousprogressbar li.active {
    color: #af6012;
}
.Sousprogressbar li.active:before {
    border-color: red;
}
.Sousprogressbar li.active + li:after {
    background-color: #af6012;
}
.SousMenuLink { color: black}
.SousMenuLinkTitle { color: #af6012;font-size: 17px;font-weight: 700;}
.marg-btm { margin-bottom: 115px}