.popup {
    margin: 100px auto;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    width: 60%;
    position: relative;
    transition: all 5s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
}

/* Titre de la popup */
.popup_title
{
    text-align: left;
    color: #0F1E30;
    font-size: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.popup_title a
{
    position: absolute;
    right: 24px;
}

/* Contenu de la popup */
.popup_content
{
    text-align: left;
    max-height: 350px;
    overflow: auto;
}

/* Contenu additionnel des popups */
.popup_message
{
    color: #0F1E30;
    font-weight: bold;
    font-size: smaller;
    margin-top: 8px;
}
.popup_message ul li
{
    margin-left: 8px;
}

/* Boutons de la popup */
.popup_buttons
{
    display: flex;
    justify-content: flex-end;
    margin-top: 2%;
}

/* Liste des configurations */
.popup_config_list
{
    margin-top: 8px;
}
.popup_config_list .radio_container
{
    display: flex;
    margin-bottom: 0;
}
.popup_config_list h4
{
    margin-top: 8px;
}
/* PRIMARY BUTTON *******************************************************************************/
.button_valid, .button_cancel
{
    width: fit-content;
    height: 20px;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    margin:8px;
    text-align: center;
    cursor: pointer;
}
.button_valid
{
    background: #20558A;
    color: #F7F9FA;
    border: none;
}
.button_valid:hover
{
    background-color:#4579AE;
}

/* SECONDARY BUTTON *****************************************************************************/
.button_cancel
{
    background: #fff;
    color: #0F1E30;
    border: 1px solid #20558A;
}
.button_cancel:hover
{
    background-color:#E2EDF9;
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
}
.overlay:target {
    visibility: visible;
    opacity: 1;
}

/* POPUP DELETE / ARCHIVE TELEFLOW **************************************************************/
.tfw_popup_buttons
{
    display: flex;
    margin-top: 5%;
}
.tfw_popup_buttons .button_valid
{
    margin-left: auto;
}
.tfw_popup_buttons a
{
    margin: 0;
}

/* POPUP SATISFACTION ***************************************************************************/
.popup_satisfaction
{

}

.popup_satisfaction_radio_vote .visuel /* visuel du bouton */
{
    height: 50px;
    width: 50px;
    border: 1px solid #65707D;
    cursor: pointer;
    background-color: #ddd;
    display: flex;
    align-items: center;
    margin:4px;
    border-radius: 4px;
}
.popup_satisfaction_radio_vote input
{
    opacity: 0;
}
.popup_satisfaction_radio_vote input:checked + .visuel
{
    background-color: #169980;
}
.popup_satisfaction div
{
    display: flex;
    justify-content: center;
}
.popup_satisfaction div textarea
{
    height: 200px;
}
.popup_satisfaction_txt_label
{
    display: flex;
    flex-direction: column;
}
.popup_satisfaction_txt_label label
{
    font-style: italic;
}

/* POPUP CHAT MESSAGE ***************************************************************************/
/* Contenu de la popup des mesages chats */
.popup_chat_message_content
{
    text-align: left;
    max-height: 600px;
    overflow: auto;
}

.popup_chat_message
{
    margin-bottom: 8px;
    border-bottom: 1px solid #ddd;
}
.popup_chat_message_contenainer
{
    margin:4px 0 8px 8px;
}
.popup_chat_message_contenainer a
{
    margin-bottom: 4px;
    font-weight: normal;
    cursor: pointer;
    color:#333;
    display: flex;
    
}
.popup_chat_message_contenainer a:hover
{
    background-color: #E2EDF9;
}