.toast  {
	position: fixed;
	padding: 0;
	top: 0;
	z-index: 100000;
}
.toast li {
   display: block;
}

.toast li.danger {
	background-color: #F64E60;
    color: #ffffff;
}
.toast li.info {
 background-color: #1BC5BD;
 color: #ffffff;
  border-radius: 4px; 
  -webkit-border-radius: 4px; 
  opacity:0.8;
}
.toast button.close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
	border: none;
	font-weight: normal;
	font-size: 22px;
	line-height: 1;
	padding: 4px;
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 0.2s;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.toast button.close:hover {
	opacity: 1;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
}
.toast h1, 
.toast h2, 
.toast h3, 
.toast h4 {
    display: inline
}


.toast li.toast-success {
    background-color: #1BC5BD;
    color: #ffffff;
}
/*초록색*/

.toast li.toast-info {
    background-color: #8950FC;
    color: #ffffff;
}
/*보라색*/

.toast li.toast-warning {
    background-color: #FFA800;
    color: #ffffff;
}
/*노란색*/

.toast li.toast-error {
    background-color: #F64E60;
    color: #ffffff;
}
/*빨간색*/




/*new toast*/
.toast  {
	position: fixed;
	left: 50%;
	top: 5px;
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 100000;
}
.toast li{
	width: 500px;
	height: auto;
	line-height: 1.6;
	padding: 14px 45px 14px 56px;
	margin-bottom: 10px;
	text-align: left;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	border-radius: 6px;
	box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.1), 0px 4px 8px rgba(0, 0, 0, 0.04);
	white-space: pre-line;
	word-break: keep-all;
	pointer-events: auto;
	position: relative;
	opacity: 0.95;
}
.toast li.danger {
	background-image:url(/resources/images/danger.png);
	background-repeat: no-repeat;
	background-position: 21.67px center;
	background-size: 20px;
	background-color:#828B97;
}
.toast li.info {
	background-image:url(/resources/images/info.png);
	background-repeat: no-repeat;
	background-position: 21.67px center;
	background-size: 20px;
 	background-color: #11BF9C;
}