.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 {
    background: none;
	border: none;
	font-weight: bold;
	font-size: 20px;
	line-height: 20px;
	float: right;
	padding: 0;
	margin: 0 0 0 5px;
	color: rgba(0, 0, 0, 1);
	cursor: pointer
}
.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: calc(57% + 50px) !important; /* 025-10-23 fix/cal/req-0142-hsg 회의실 예약 시 필수 입력값 누락된 경우 경고메시지를 띄우는 위치 조정. 경고 메시지가 앞에 2-3자 짤림 */
}
.toast li{
    /*width:450px;
    height:50px;
   	line-height:47px;*/
	width:500px;
	height:auto;
	line-height:37px;
   	padding-left:56px;
    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);
}
.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;
}