.toast-container {
    width: 280px;
    z-index: 99999;
}


* html .toast-container {
    position: absolute;
}

.toast-item {
    height: auto;
    background: #4CAF50;
    /* opacity: 0.9; */
    border-radius: 10px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    color: #878484;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 0px;
    padding-right: 6px;
    font:11px tahoma,arial,sans-serif;
    border: 0px solid #999;
    display: block;
    position: relative;
    margin: 0 0 12px 0;
    /* text-transform:  uppercase; */
    box-shadow: 0 0 3px #000;
}

.toast-item p {
    text-align: left;
    margin-left: 64px;
}

.toast-item-close {
    /* background:url(/media/icons/close.gif); */
    /* width:22px; */
    /* height:22px; */
    position: absolute;
    right: 8px;
    top: 8px;
    color: #ffffff;
    cursor:  pointer;
}

.toast-item-image {
    font-size: 32px;
    line-height: 1;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    left: 16px;
    text-align:  center;
}

.toast-item-image-notice {
    /* background:url(/media/icons/notice.png); */
}

.toast-item-image-success {
    /* background: #009688; */
    font-size: 32px;
    line-height: 1;
    /* color: #009688; */
}

.toast-item-image-warning {
    /* background:url(/media/icons/warning.png); */
}

.toast-item-image-error {
    /* background:url(/media/icons/error.png); */
}
.toast-container span{
    color:#48B1E8;
}

/**
 * toast types
 *
 * pattern: toast-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 *
 */
.toast-type-notice {
    color: white;
    background: #00BCD4;    
}

.toast-type-success {
    color: #fff;
    background: #4CAF50;
}

.toast-type-warning {
    color: white;
    background: #FF9800;
}

.toast-type-error {
    color: white;
    background: #B32B2B;
}

/**
 * positions
 *
 * pattern: toast-position-[value]
 * where 'value' is the real value of the plugin option 'position'
 *
 */

.toast-position-bottom-right {
    position: fixed;
    right: 24px;
    bottom: 24px;
}

.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%;
}

.toast-item-wrapper span{
    /*color:#009688;*/
    color: #FF9800 !important;
}
