@charset "utf-8";
/* CSS Document */
.row_msg{
	width:50%;
	border:1px solid #000000;
	border-radius:3px;
	margin:5px auto;
	text-align:center;
	padding:3px;
	color:#FFF;
	font-size:16px;
	font-weight:bold;
	direction:rtl;
	height:35px;
	display:flex;
	align-content:center;
	align-items:center;
	justify-content:center;
}
.RowMessage{
	position: relative;
	width: 100%;
	margin: 5px auto 0px auto;
	
}
.success, .error, .alert, .general{
	width:50%;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	margin: 5px auto;
	border-radius: 3px;
	border: 1px solid #000;
	padding: 5px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	animation: OP 500ms linear;
	direction: rtl;
}
.success{
}
.error{
}
.alert{
}
@keyframes OP{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}