.toast-container {
	width: 380px;
	z-index: 999999999;
}

* html .toast-container {
	position: absolute;
}

.toast-item {
    width: 380px;
	height: auto;
	background: #333333;
    opacity: 0.9;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	color: #eee;
    padding-top: 30px;
    padding-bottom: 30px;
	padding-left: 6px;
	padding-right: 6px;
	font-size: 13px;
    text-transform:uppercase;
	display: block;
	position: relative;
	margin: 15px 0 12px 300px;
    font-family: 'open_sanslight';
    vertical-align:middle;
}

.toast-item p {
    text-align: left;
    margin-left: 50px;
    display:table-cell;
    padding-left:75px;
    font-family: 'Lato', sans-serif;
}

.toast-item-close {
    background:url('images/custom/close.gif');
    width:22px;
    height:22px;
    position: absolute;
    top:7px;
    right:7px;
    display:none;
}

.toast-item-image {
    width:32px;
    height: 32px;
    position: absolute;
    left: 42px;
    top: 50%;
    margin-top: -16px;
}

.toast-item-image-notice {
    background:url('images/custom/notice.png');
}

.toast-item-image-success {
    background:url('images/custom/success.png');
}

.toast-item-image-warning {
    background:url('images/custom/warning.png');
}

.toast-item-image-error {
    background:url(images/custom/error.png);
}

.toast-item-image-edit-account {
    background:url(images/custom/edit-account.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: absolute;
    left: 20px;
    top: 20px;
}

.toast-position-top-center {
    position: absolute;
    top: 20px;
    left: 50%;
    margin-left: -140px;
}

.toast-position-top-right {
    position: absolute;
    top: 20px;
    right: 20px;
}

.toast-position-middle-left {
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -40px;
}

.toast-position-middle-center {
        position: fixed;
        left: 28%;
        margin-left: -140px;
        margin-top: -40px;
        top: 56%;
}

.toast-position-middle-right {
    position: absolute;
    right: 20px;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
}

