.alert_outer {
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.6);
}

.alert_wrapper{
    display: table-cell;
    vertical-align: middle;
}

.alert_container{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    background-color: #FFF;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 32px
}

.alert_icon_wrapper{
    width: 60px;
    height: 60px;
    border-radius: 60px;
    margin-top: -30px;
    border: 4px solid #FFF;
    text-align: center
}

.alert_icon{
    position: relative;
    height: 35px;
    margin-top: 12px
}

.alert_title{
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    margin-top: 8px;
}

.alert_message{
    font-size: 14px;
    text-align: center;
    margin-top: 32px
}

.alert_image{
    width: 100%;
    height: 20vh;
    margin-top: 16px;
}

.alert_button_container{
    margin-bottom: 16px;
    width: 100%;
    margin-top: 32px;
}

.alert_button{
    width: 100%;
    height: 40px;
    border-radius: 40px;
    outline: none;
    margin-bottom: 8px;
    font-size: 16px;
}

.alert_button_primary{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    color: #FFF
}

.alert_button_secondary{
    color: #909090;
    background: #FFF;
}

.alert_button_ter{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    color: #FFF;
    background-color:#aaaaaa;
}



.alert_button_qua{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    color: var(--param_couleur1); 
    font-weight: bold;
    background-color: #FFF;
}


.alert_button_cinq{
   
    color: white; 
    
    background-color: var(--param_couleur1); ;
}



