.toast-container{z-index:9999;}
* html .toast-container{position:absolute;}
.toast-item {
	display: flex;
    /*justify-content: center;*/
    align-items: center;
    padding: 18px 20px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
    color: #000;
    border-radius: 4px;
    margin: 0px;
    transition: 0.3s all ease-in-out;
    border-left: 3px solid #8b8b8b;
    cursor: pointer;
	margin-bottom: 6px;
}
.toast-item p { 
	text-align: left;
	margin-left: 15px;
	line-height: 14px;
	color: #333;
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	margin-left: 15px;
}
.toast-item-close{display: none;width:22px;height:22px;position:absolute;top:7px;right:7px;}
.toast-item-image{width:18px;height:18px;}
.toast-item-image-notice{background-image:url(../img/svg_toast/notice.svg);}
.toast-item-image-success{background-image:url(../img/svg_toast/success.svg);}
.toast-item-image-warning{background-image:url(../img/svg_toast/warning.svg);}
.toast-item-image-error{background-image:url(../img/svg_toast/error.svg);}
.toast-type-notice{color:white;border-color: #1271ec;}
.toast-type-success{color:white;border-color: #6ec05f;}
.toast-type-warning{color:white;border-color:#fed953;}
.toast-type-error{color:white;border-color:#d60a2e;}
.toast-position-top-left{position:fixed;left:20px;top:20px;}
.toast-position-top-center{position:fixed;top:20px;left:50%;margin-left:-140px;}
.toast-position-top-right{position:fixed;top:20px;right:20px;}
.toast-position-middle-left{position:fixed;left:20px;top:50%;margin-top:-40px;}
.toast-position-middle-center{position:fixed;left:50%;margin-left:-140px;margin-top:-40px;top:50%;}
.toast-position-middle-right{position:fixed;right:20px;margin-left:-140px;margin-top:-40px;top:50%;}