 /*
 //lato aspx
         <table width="100%">
            <tr>
                <td>
                    <div id="div_message" runat="server" class="alert">
                        <span id="id_closebtn" class="closebtn" onclick="closealertonclick()">&times;</span>
                        <asp:Label ID="lbl_Message" class="lblmessage" runat="server"></asp:Label>
                    </div>
                </td>
            </tr>
        </table>
 * /
 
 /*
 //lato vb
 
     Sub showlblmessage(text As String, Optional success As Boolean = False)
        Dim style = ""
        Dim div_style = ""
        If (success) Then
            style += "background-color: #38a70df7;"
        End If
        div_style += "display: block;"
        div_message.Attributes.Add("style", div_style)
        lbl_Message.Attributes.Add("style", style)
        lbl_Message.Text = text
        CLS_FUNZIONI_SHARED.LOGGA(text)
    End Sub
 */
/*//////////////////////////////////////////////////////////////////
SHOW LBL MESSAGE*/

    .closebtn:hover {
     color: #e9ff00;
    }
.divdownload {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding-top: 5px;
}	
	.lblmessage {
	display: flex;
    align-items: stretch;
    justify-content: center;
	font-family: var(--fontfamily) !important;
	}
	
	.alert {
    padding: 20px;
    background-color: #12033eb0;
    color: white;
    width: -webkit-fill-available;
    position: fixed;
    text-align: justify;
    bottom: 0;
    border-top: 1px solid #000000;
    left: 0;
    z-index: 9999;
    font-weight: bold;
	}

    .alert_bis {
    padding: 20px;
    background-color: #12033eb0;
    color: white;
    width: -webkit-fill-available;
    position: fixed;
    text-align: justify;
    bottom: 0;
    border-top: 1px solid #000000;
    left: 0;
    z-index: 9999;
    font-weight: bold;
}
	
	.closebtn {
    margin-right: 10px;
    float: right;
    font-size: 22px;
    z-index: 1000;
	}
	
	.alert > span{
		font-family: var(--fontfamily) !important;
	}

/*//////////////////////////////////////////////////////////////////