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


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

.toast-item {
	height: auto;
	background: #333;
    opacity: 0.9;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	color: #eee;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 6px;
	padding-right: 6px;
	font-family: lucida Grande;
	font-size: 14px;
	border: 2px solid #999;
	display: block;
	position: relative;
	margin: 0 0 12px 0;
}

.toast-item p {
    text-align: left;
    margin-left: 50px;
}

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

.toast-item-image {
    width:32px;
    height: 32px;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    left: 10px;
}

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

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

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

.toast-item-image-error {
    background:url(images/round-error-symbol.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;
}

.toast-type-warning {
    color: white;
    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: 0px;
    right: 10px;
}

.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%;
}


.toast-item p {
    margin: 0 0 0 40px;
    padding: 0 30px 0 0;
    text-align: left;
}


.toast-item-close {
    background: rgba(0, 0, 0, 0) url("images/cancel.png") repeat scroll 0 0;
    height: 22px;
    position: absolute;
    right: 7px;
    top: 7px;
    width: 22px;
}


.toast-item-image{ background-size:22px auto; background-repeat:no-repeat; 
    height: 22px;
    left: 10px;
    margin-top: -11px;
    position: absolute;
    top: 50%;
    width: 22px;
} 


.toast-item{ padding: 0px 6px; }

.toast-item {
    border-radius: 0;
    background-color: #fff !important;
    color: #000;
    background-color: #7a8b98;
    margin: 8px 0 8px 0;
    font-family: 'Open Sans', sans-serif;
    box-shadow: 1px 7px 12px 0 rgba(0, 0, 0, 0.4);
    border: 0;
}

.toast-item-close {
    background: rgba(0, 0, 0, 0) url(images/cancel.png) no-repeat scroll 0 0;
    background-size: 10px;
    right: 0;
    top: 12px;
    cursor: pointer;
}

.toast-item-image {
    background-size: 22px auto;
    background-repeat: no-repeat;
    height: 100%;
    left: 0;
    margin-top: 0;
    position: absolute;
    top: 0;
    width: 22px;
    background-position: center;
    padding: 0 20px;
    background-color: #565c61;
}

.toast-item p {
    height: 100%;
    width: 100%;
    margin-left: 6px;
    padding: 17px 45px;
    border: 1px solid rgba(122, 139, 152, 0.50);
}

.toast-item.toast-type-success .toast-item-image {
    background-color: #4CAF50;
}

.toast-item.toast-type-warning .toast-item-image {
    background-color: #d29f08;
}

.toast-item.toast-type-error .toast-item-image {
    background-color: #B32B2B;
}