i-alert-box {
	display: block;
	position: fixed;
	/* right: 0; */
	/* top: 0; */
	z-index: 9999;
	width: 100%;
	padding: 20px 20px 0 20px;
	box-sizing: border-box;
	max-width: 500px;
	overflow: auto;
}
i-alert-box[position='top-left'] {
	right: auto;
	left: 0
}
i-alert-box[position='bottom-left'] {
	right: auto;
	left: 0;
	top: auto;
	bottom: 0;
}
i-alert-box[position='bottom-right'] {
	right: 0;
	left: auto;
	top: auto;
	bottom: 0;
}
i-alert-box[position='bottom-center'] {display: block;position: fixed;left: 50%;bottom: 0;transform: translateX(-50%);z-index: 9999;width: 100%;padding: 20px;box-sizing: border-box;max-width: 500px;overflow: auto;}
i-alert {
	display: block;
	position: relative;
	font-size: 14px;
	padding: 10px 35px 10px 15px;
	font-weight: normal;
	background-color: #fff;
	margin-bottom: 20px;
	box-sizing: border-box;
	box-shadow: 0 3px 5px #aaa;
	letter-spacing: 1px;
}
i-alert:before, i-alert:after {
	content: "";
	position: absolute;
	background-color: #aaa;
	opacity: 0.8;
	transform: rotate(45deg);
}
i-alert:before {
	width: 16px;
	height: 2px;
	box-sizing: border-box;
	right: 14px;
	top: calc(50% - 1px);
}
i-alert:after {
	width: 2px;
	height: 16px;
	box-sizing: border-box;
	right: 21px;
	top: calc(50% - 8px);
}
i-alert-close {
    position: absolute;
    display: block;
    right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    top: calc(50% - 10px);
    z-index: 1;
}
i-alert[fade-on-hover='true']:hover{
	opacity: 0.5;
}
i-alert[close-on-click='true'] {
	cursor: pointer;
}
i-alert[type='success'] {
	color: #34a853;
}
i-alert[type='error'] {
	color: #ea4335;
}
i-alert[type='warning'] {
	color: #fbbc05;
}
i-alert[type='notification'] {
	color: #4285f4;
}
i-alert[mode='dark']:before, i-alert[mode='dark']:after {
	background-color: #fff;
}
i-alert[mode='dark'] {
	color: #fff;
}
i-alert[type='success'][mode='dark'] {
	background-color: #34a853;
}
i-alert[type='error'][mode='dark'] {
	background-color: #ea4335;
}
i-alert[type='warning'][mode='dark'] {
	background-color: #fbbc05;
}
i-alert[type='notification'][mode='dark'] {
	background-color: #4285f4;
}


