.toast-container {
	width: 280px;
	z-index: 9999;
}


* html .toast-container {
	position: absolute;
}

.toast-item {
	height: auto;
	background: #333;
   	color: #eee;
	padding-top: 15px;
	padding-bottom: 15px;
	font-family: Nunito; 
	font-size: 16px;
	display: block;
	position: fixed;
	top: 50px;
	left:0px;
	width:100%;
	margin: 0;
	

}

.toast-item p {
	  text-align: center;
    margin:0 auto;
    /* text-align: left;
    margin-left: 30px;
    text-shadow: 0 -1px 0 #4c596a !important;*/
}

.toast-item-close {
   /* background:url(../images/close.gif);
    width:22px;
    height:22px;
    position: absolute;
    top:7px;
    right:7px;*/
}

.toast-item-image {
    width:0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    float:left;
    
    
}

.toast-item-image-notice {
   /*  background:url(../images/notice.png);*/
}

.toast-item-image-success {
    /* background:url(../images/success.png);*/
}

.toast-item-image-warning {
   /*  background:url(../images/warning.png);*/
}

.toast-item-image-error {
    /* background:url(../images/error.png);*/
}


/**
 * toast types
 *
 * pattern: toast-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 *
 */
.toast-type-notice {
    color: white;
}

.toast-type-success {
    color: white;
    border-color: #1976D2;
    background: #1976D2;
    
}

.toast-type-warning {
    color: #ffffff;
    border-color: #ffc94e;
    background: #ffc94e;
}

.toast-type-error {
    color: white;
    border-color: #FF5252;
    background:#FF5252;
}

/**
 * positions
 *
 * pattern: toast-position-[value]
 * where 'value' is the real value of the plugin option 'position'
 *
 */
.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%;
}
