.toast-container {
    width: 280px;
    z-index: 9999;
}
* html .toast-container {
    position: absolute;
}
.toast-item {
    height: auto;
    background: rgba(51, 51, 51, 0.7);
    color: #fff;
    padding: 35px 50px 30px 70px;
    font-size: 14px;
    display: block;
    position: relative;
    margin: 0 0 12px 0;
}
.toast-item p {
    text-align: left;
}
.toast-item-close {
    background: url(../images/toastmessage/close.png) center center no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
.toast-item-image {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 50%;
    margin-top: -17px;
    left: 20px;
}
.toast-item-image-notice {
    background: url(../images/toastmessage/notice.png);
}
.toast-item-image-success {
    background: url(../images/toastmessage/success.png);
}
.toast-item-image-warning {
    background: url(../images/toastmessage/warning.png);
}
.toast-item-image-error {
    background: url(../images/toastmessage/error.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: 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%;
}
