#toast-container {
    position: fixed;
    right: -568px;

    min-width: 288px;
    max-width: 568px;

    font-size: 14px;
    border-radius: 2px;
    z-index: 999999;
}

#toast-container #toast {
    float: left;
    padding: 14px 15px;
    line-height: 20px;
}

#toast-container #toast-action {
    float: right;
    overflow: hidden;
    text-transform: uppercase;
    padding: 14px 15px;
    cursor: pointer;
}

#toast-container.notice {
    background-color: #323232;
    color: #eeeeee;
}

#toast-container.success {
    background-color: #5d9b9b;
    color: #eeeeee;
}


#toast-container.error {
    background-color: #B80B22;
    color: #eeeeee;
}

#toast-container.warning {
    background-color: #ff9800;
    color: #ffffff;
}
