/* allerts */    
    .alerting_wrap{
        
        display: flex;
        justify-content: center;
    }
    .alerting{
        z-index: 900;
        position: absolute;
        top: 80px;
        display: flex;
        justify-content: space-between;
        width: min(80vw, 350px);
        min-height: 50px;
        height: auto;
        font-size: 15px;
        padding: 5px 10px;
        border-radius: 5px;
    }
    .alerting_success{
        border: 2px solid #1e1e28;
        color: #1e1e28;
        background-color: #00C6C3;
        align-items: center; 
    }
    #btn_close_alerting, #btn_close_alerting_recaptcha{
        padding: 5px;
        cursor: pointer;
    }
    .alerting_error{
        border: 2px solid #1e1e28;
        color: #1e1e28;
        background-color: #F9F871;
    }