.msg-overlay, .loader{
    position: fixed; top: 0; bottom: 0; left: 0; right: 0; background: #0000004d;z-index: 98;
} 
.loader .msg{
    width: 150px;
    top: calc(50% - 75px); 
    left: calc(50% - 75px);  
}
 
.msg {
    position: fixed;
    top: calc(50% - 100px); 
    left: calc(50% - 200px); 
    z-index: 99;
    width: 95%;
    max-width: 400px;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    background: #fff;
    color: #666;
    border: 1px solid #f2f2f2; 
    -webkit-box-shadow: 0px 0px 80px rgb(4 4 4 / 46%);
    -moz-box-shadow: 0px 0px 80px rgb(4 4 4 / 46%);
    box-shadow: 0px 0px 80px rgb(4 4 4 / 46%);
}
.msg.success {
     
}
.msg.success a{
	background: #258f25;
}
.msg.error{
	 
}
.msg.error a{
	background: #c3351e;
}
.msg a { 
    font-weight: 600;
	line-height: 22px; 
    padding: 5px 15px;
    display: table;
    border-radius: 3px;
    color: #fff!important;
    margin: 15px auto 0;
	cursor: pointer;
}
.msg img{max-width: 60px; display: table; margin: 0 auto 10px;}