#chatIcon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: #fff;
    padding: 10px;
    border:1px solid #fff;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 30px;
    z-index: 9999;
}

#chatIcon.bouge {
    animation: tilt-shaking 0.15s infinite; 
}

#pbcnxAide {
    cursor: pointer;
    
}

#chatPopup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    min-width: 400px;
    max-width: 400px;
    display: none;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #eee;
    color: black;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 5px 40px;
    z-index: 9999;
}

.question-div {
    padding: 20px;
}

.questionnaire-heading {
    font-size: 30px;
    color:#555;
}

#questionIntro {
    font-size: 16px;
    text-align: center;
    text-decoration: none !important;
    width: 100%;
}

.question {
    font-size: 14px;
    margin: 10px 0;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    background-color: #e5e5e5;
    color: black;
    margin-top: 25px;
}

.question .btn {
    text-align: left;
    width: 100%;
    font-size:12px;
}

.cross-div{
    position: absolute;
    right: 15px;
    top: 5px;
    font-size: 20px;
    cursor: pointer;
}

.question-div a.numtel {
    text-decoration: none !important;
    color:#000 !important;
    font-size: 20px;
}

.btnRetourAide {
    font-size: 12px;
    color:#555;
    cursor: pointer;
}

@keyframes tilt-shaking {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(0eg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
  }