.contPictoEnv {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.pictoEnveloppe {
    cursor: pointer;
    padding: 8px;
    border: solid 2px rgba(255, 255, 255, 0);
}

@keyframes formatSelected {
    0% {
        border: solid 2px rgba(235, 23, 195, 0);
    }
    
    25% {
        border: solid 2px rgba(235, 23, 195, 0.33);
    }
    
    100% {
        border: solid 2px rgba(235, 23, 195, 0);
    }
}

@keyframes zoomSelected {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1.0);
    }
}

@keyframes zoomUnselected {
    from {
        transform: scale(1.0);
    }
    to {
        transform: scale(0.8);
    }
}

.zoomSelected {
    animation-name: zoomSelected;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-iteration-count: 1;
}

.zoomUnselected {
    animation-name: zoomUnselected;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-iteration-count: 1;
}


.pictoSelected {
    animation-name: formatSelected;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

#textePerso {
    width: 40%;
}

#progressBar {
    width: 200px;
    height: 8px;
    border: solid 1px #000000;
    margin-top: 2px;
    position: relative;
    overflow: hidden;
}

#progressBarGauge {
    position: absolute;
    background-color: #00ff00;
    width: 0px;
    height: 8px;
    top: 0px;
    left: 0px;
}

/*--------------------------------------*/

@media (max-width: 640px) {   
    .contPictoEnv {
        display: block;
        text-align: center;
    }
}