.blog {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
.alink {
	cursor: pointer;
}

/* container */
.container {
	padding: 8px;
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	overflow: hidden;
}

/* flash_msg */
.flash_msg .msg {
	display: flex;
	align-items: center;
	padding-left: 12px;
	padding-right: 12px;
	padding-bottom: 5px;
	padding-top: 5px;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	position: relative;
	overflow: hidden;
}
.flash_msg .msg:before {
	content: "";
	display: block;
	width: 5px;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
}
.flash_msg .msg + .msg {
	margin-top: 24px;
}
.msg .text {
	flex-grow: 1;
	padding: 0 8px;
	text-align: center;
}
.msg .text .title {
	font-size: 17px;
	font-weight: bold;
	margin-bottom: 8px;
}
.msg .text .content {
	color: #a9a9a9;
}

.msg i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 16px;
	border-radius: 50%;
}
.s_success i.fa-check {
	color: white;
	background: #88aa00;
}
.s_success:before {
	background: #88aa00;
}
.s_info i.fa-info {
	color: white;
	background: #0066ff;
}
.s_info:before {
	background: #0066ff;
}
.s_warning i.fa-exclamation {
	color: white;
	background: red;
}
.s_warning:before {
	background: red;
}
