﻿.toast-container { width: 40%; z-index: 99999; }

* html .toast-container {
	position: absolute;		
}
 
.toast-item {
	height: auto;
	background: #EEE;
    opacity: 1.0;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	color: #000;
	/*padding: 20px 6px;*/
    padding: 20px 20px 10px 6px;
	font-family: lucida Grande;
	font-size: 14px;
	border: 1px solid #999;
	display: block;
	position: relative;
	margin: 0 0 12px 0;
    border-radius: 5px;
}

.toast-item p {
    text-align: left;
    margin-left: 50px;
}

.toast-item-close {
    background:url(img/close.png);
    width:22px;
    height:22px;
    position: absolute;
    top:7px;
    right:7px;
    cursor: pointer;
}

.toast-item-image {
    width:32px;
    height: 32px;
    margin-left: 10px;
    margin-top: -6px;
    margin-right: 10px;
    float:left;
}

.toast-item-image-workinprogress {
    background:url(img/workinprogress.png);
}

.toast-item-image-notice {
    background:url(img/notice.png);
}

.toast-item-image-success {
    background:url(img/success.png);
}

.toast-item-image-warning {
    background:url(img/warning.png);
}

.toast-item-image-error {
    background:url(img/error.png);
}


/** 
 * toast types 
 * 
 * pattern: toast-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 * 
 */
.toast-type-workinprogress {
    background-color: #e6e6e6;
    border: 1px solid #BBB;
    color: #898989 !important;   
}

.toast-type-notice {
    background-color: #D1E4F3;
    border: 1px solid #9CBBD8;
    color: #5485AD !important;   
}

.toast-type-success {
    background-color: #C5EC93;
    border: 1px solid #49BF4F;
    color: #69972B !important;    
}

.toast-type-warning {
    background-color: #FEE9A6;
    border: 1px solid #EEB96B;
    color: #98791F !important;
}

.toast-type-error {
    background-color: #FFA1A2;
    border: 1px solid #F43837;
    color: #B61A1D !important;
}

/** 
 * positions 
 * 
 * pattern: toast-position-[value]
 * where 'value' is the real value of the plugin option 'position'
 * 
 */
.toast-position-top-right {
    position: fixed;
    top: 20px;
    right: 20px;
}

.toast-position-center {
    position: fixed;
    left: 50%;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
}

.toast-position-middle-bottom {
    position: fixed ;
    left: 50%;
    margin-left: -140px;
    margin-top: -40px;
    top: 75%;
}


@media (max-width:767px){

.toast-container { width: 86%;}

}