.displayDyn {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    bottom: 5%;
    width: 250px;
    height: 60px;
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.918);
    transition: all 1s ease, transform 1s;
    z-index: 999;
}

.colore .displayDyn{
    background-color: rgb(255, 255, 255);
}

.displayDyn.actif{
    position: fixed;
    bottom: 5%;
    transition: all 1s ease, transform 1s;
}


.displayDyn .DisplayDynTexte {
    color: rgb(0, 0, 0);
    text-align: center;
    margin: 0;
    margin-top: 5px;
    padding: 0;
    font-size: 20px;
}

.displayDyn .btnNext,
.displayDyn .btnPrev {
    position: absolute;
    width: 40px;
    height: 40px;
    padding: 5px;
    opacity: 1;
    border-radius: 100%;
    transform-origin: center right;
    background-color: #0084ff;
    fill: rgb(255, 255, 255);

}

.displayDyn .btnNext:hover,
.displayDyn .btnPrev:hover {
    background-color: #0084ffdd;
    transition: background-color 0.5s ease;
    cursor: pointer;
}

.displayDyn .btnNext {
    right: 10px;
}

.displayDyn .btnPrev {
    left: 10px;
}