.mwn_alert{
    position: fixed;
    transition: 0.5s;
    z-index: 999;
    display: none;
}
@media only screen and (min-width: 768px) {
	.mwn_alert.left{
		width: 400px;
		left: 0;
		top:40%;
	}
	.mwn_alert.right{
		width: 400px;
		right: 0;
		top:40%;
	}
	.mwn_alert.top{
		width: 100%;
		left: 0;
		top:0;
	}
	.mwn_alert.bottom{
		width: 100%;
		left: 0;
		bottom:0;
	}
}
@media only screen and (max-width: 768px) {
	.mwn_alert.left{
		width: 100%;
		left: 0;
		top:40%;
	}
	.mwn_alert.right{
		width: 100%;
		right: 0;
		top:40%;
	}
	.mwn_alert.top{
		width: 100%;
		left: 0;
		top:0;
	}
	.mwn_alert.bottom{
		width: 100%;
		left: 0;
		bottom:0;
	}
}
.mwn_alert .inner {
	display: block;
	padding: 25px;
	background-color: #37465d;
	color: #fff;
}
.mwn_alert div[class*="wp-block"]{
	margin-top: 0px;
	margin-bottom: 0px;
}
.mwn_close{
	position: absolute;
	right: 0;
	top: -2px;
	font-size: 20px;
	color:#000;
	cursor: pointer;
}