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


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

.toast-item-wrapper {
    margin-bottom: 10px;
}

.toast-item {
    min-height: 60px;
	background: #fff;
    opacity: 1;
	border-radius: 2px;
	color: #696969;
	font-family: lucida Grande;
	font-size: 10px;
	border: 0px solid #d7d7d7;
	display: block;
	position: relative;
    box-shadow: 0px 0.8px 2px #B0B9BF;
}

.toast-item p {
    text-align: left;
    margin: 0 3px 0 60px;
    color: #696969;
    padding: 8px;
    word-wrap: break-word; 
    word-break: normal;
}

.toast-item-close {
    /*background:url(../images/close.png);*/
    font-size: 13px;
    width: 13px;
    color: #aaa;
    right:0px;
    position: absolute;
}

.toast-item-image {
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0px;
    border-radius: 2px 0px 0px 2px;
    color: #FFF;
    font-size: 18px;
}

.toast-item-image i {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

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

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

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

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


/**
 * 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;
}

.toast-type-warning {
    color: white;
    font-size: 10px;
    border-color: #FCBD57;
}

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

/**
 * 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%;
}
