@charset "utf-8";
/* CSS Document */

#msg-error {
	width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0,0,0,0.75);	
}
.msg-content{
    width: 260px;
    height: 162px;
    border-radius: 5px;
    z-index: 9999;
    position: absolute;
    left: 50%;
    top: 50%;
	margin-left: -130px;
    margin-top: -81px;
	/*transform: translate(-50%, -50%);*/
	color: #a94442;
    border: 1px solid #a94442;
}
.msg-box {
	padding: 20px;
    margin: 15px;
	background-color: #f2dede;
}
.msg-text {
    font-size: 16px;
    padding: 20px 0;
    overflow: hidden;
}
.msg-buttom {
	text-align: right;	
}
