@charset "utf-8";
/* CSS Document */

.msg{
	position:fixed;
	z-index:9999;
	top:60px;
	right:0;
	max-width:550px;
}
.msg>div{
	background-color:rgba(153,153,153,1);
	color:rgba(255,255,255,1);
	font-size:14px;
	padding:5px;
	box-sizing:border-box;
	margin:10px;
	-webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.3);
	border:1px solid rgba(0,0,0,0.1);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
	opacity:0;
}
.msg>div.active{
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	opacity:1;
}
.msg>div>div{
	display:table-cell;
	vertical-align:middle;
	padding:5px;
}
.msg>div>div.close:before{
	content: "\02715";
	font-size:18px; 
}
.msg>div>div.ico:before{
	content: "\f0a2";
	font-family: "fontAwesome";
	font-size:18px;   
}
.msg>div>div.txt{
	width:100%; 
}
.msg>div>div.close{
	cursor:pointer;
}
.msg>div[data-type="0"]{background-color:rgba(51,153,0,1);}
.msg>div[data-type="0"]>div.ico:before{content: "\f058";}
.msg>div[data-type="1"]{background-color:rgba(255,182,0,1);}
.msg>div[data-type="1"]>div.ico:before{content: "\f071";}
.msg>div[data-type="2"]{background-color:rgba(255,0,0,1);}
.msg>div[data-type="2"]>div.ico:before{content: "\f06a";}
@media screen and (max-width: 960px){
.msg{
	max-width:none;
	left:250px;
}
}
@media screen and (max-width: 768px){
.msg{
	left:0;
}
}