.perso {
    width: 100%;
    max-width: 500px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}

.perso div {
    width: 100%;
    max-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(32, 32, 32);
    border-radius: 5px;
    margin: 10px auto;
    border: 2px solid rgb(61 61 61);

}

.perso div img {
    width: 150px;
}

.bouton-div {
    display: flex;
    gap: 15px;
}

.bouton-div div {
    display: flex;
    flex-direction: column;
    color: white;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

.bouton-div button{
    background: none;
    border: none;
}

.btn-cursor {
    cursor: pointer;
}
.btn-cursor:hover {
    filter: brightness(0.7);
}

.grisatre img {
    filter: brightness(0.5);
}

.reglageVol {
    display: flex;
    width: 230px;
    justify-content: space-around;
    margin: 10px 0px;
}

.range {
    border-radius: 50%;
    width: 70%;
}

.reglageVol input {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    overflow: hidden;
    border: 16px;
    border-radius: 10px;
}

.reglageVol input::-webkit-slider-runnable-track {
    height: 15px;
    background: #ccc;
    border-radius: 16px;
}

.reglageVol input::-moz-range-track {
    height: 15px;
    background: #ccc;
    border-radius: 16px;
}

.reglageVol input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid rgb(68, 68, 68);
    box-shadow: -407px 0 0 400px rgb(68, 68, 68);
}

.reglageVol p {
    color: white;
}

main {
    flex-direction: column;
    width: 100%;
}

.div70 {
    width: 70%;
    flex-direction: column;
    margin: auto;
}

.reponse {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.reponse img {
    background-color: white;
    border: 5px solid #7e7d7d;
    border-radius: 50px;
    width: 250px;
}

.reponse button {
    width: 200px;
    height: 30px;
    cursor: pointer;
    border-radius: 30px;
    background: white;
    border: 2px solid rgb(48, 48, 48);
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.reponse button:hover {
    color: white;
    z-index: 0;
    transition: color 0.2s ease-in-out 0.2s;
}

.reponse button::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    background: rgb(48, 48, 48);
    z-index: -1;
    border-radius: 30px;
}

.reponse button:hover::before {
    width: 103%;
    transition: all ease-in-out 0.4s;
}


.vie {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    margin: 25px auto;

}

.vie img {
    width: 32px;
    height: 32px;
}

.proposition {
    display: flex;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 650px;
    position: relative;

}


.proposition input {
    width: 100%;
    height: 50px;
    background: none;
    border: 5px solid #7e7d7d;
    border-radius: 30px;
    outline: none;
    padding: 0px 5px;
    text-align: center;
    color: white;
}


.proposition button {
    width: 10%;
    height: 60px;
    cursor: pointer;
    background: #7e7d7d;
    border: 5px solid #7e7d7d;
    border-radius: 0px 30px 30px 0px;
    color: white;
    position: absolute;
    right: 0;
}





.ui-autocomplete {
    float: left;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #7e7d7d;
    border: 1px solid #7e7d7d;
    border-radius: 0px 0px 4px 4px;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-color: #d9d9d9 #7e7d7d;
    z-index: 2;
}
  
.ui-autocomplete > li > div {
    display: flex;
    align-items: center;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.42857143;
    color: white;
    white-space: nowrap;
}
  
.ui-state-hover,
.ui-state-active,
.ui-state-focus {
    text-decoration: none;
    background-color: #525252;
    cursor: pointer;
}
  
.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}