/* 11/06/2021 Tous droits réservés */
/* étapes 1 à 5 */
.etapeContainer{
    box-sizing: border-box;
    display: flex;
    width: 100%;
    height: 90px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.progress-steps-container{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: relative;
    max-width: 100%;
    width: 450px;
    margin: 15px 0;
    color:#ceb38f; 
}

.progress-steps-container .etapeNombre{
    border: 3px solid #ceb38f; /* clair */
    font: 20px consolas;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 1;
    box-sizing: border-box;
    transition: border 0.4s ease-in;
}

.progress-steps-container .etapeNombre .active{
    color:  #cc5751; /* couleur2 */
    border: 3px solid #cc5751; /* couleur2 */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    background: #fff;
    margin-left: -2.6px;
    margin-right: -2.6px;
    z-index: 1;
    box-sizing: border-box;
    /*transition: border 0.4s ease-in;*/
    animation: csskeyAnim003 1s infinite;
}

.progress-steps-container::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    background-color: #ceb38f;
    z-index: -1;    

}

.etapeProgression{
    position: absolute;
    width: 25%;
    height: 6px;
    top: 50%;
    left: 0;
    transform:  translate(0, -50%);
    background-color: #cc5751; /* couleur2 */
    /*transition: width 0.4s ease-in; */
    z-index: 1;        
}
#etapeProgression{
    animation: csskeyAnim004 10s infinite;
}

/* animations */
@keyframes csskeyAnim003 { 
    /*    0% { }
        50% {border-color: #35e930} */
}
@keyframes csskeyAnim004 { // barre horiz.
                           0% {}  
                           50% {background-color: #ceb38f} 
}

@media screen and (max-width: 420px) {
    .etapeContainer{display: none;}
}
@media screen and (max-width: 320px) {
    .etapeContainer{display: none;}
}
