/*
*  Notify Bar - jQuery plugin
*
*  Copyright (c) 2009-2015 Dmitri Smirnov
*
*  Licensed under the MIT license:
*  http://www.opensource.org/licenses/mit-license.php
*
*  Project home:
*  http://www.whoop.ee/posts/2013/04/05/the-resurrection-of-jquery-notify-bar.html
*/

/* Default bars' style */

.jquery-notify-bar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 32768;
    background-color: #efefef;
    font-size: 18px;
    color: #000;
    text-align: center;
    padding: 20px 0px;
    cursor: pointer;
}

.jquery-notify-bar.bottom {
    bottom: 0;
    top: auto;
    border-top: 1px solid #ddd;
    border-bottom: 0;
    -webkit-box-shadow: inset 0 1px 0 0 #fff;
    -moz-box-shadow: inset 0 1px 0 0 #fff;
    box-shadow: inset 0 1px 0 0 #fff;
}

.jquery-notify-bar.error .notify-bar-text-wrapper,
.jquery-notify-bar.warning .notify-bar-text-wrapper,
.jquery-notify-bar.success .notify-bar-text-wrapper {
    padding: 1px 0 1px 0px;
}

/* Style for errors */

.jquery-notify-bar.error {
    color: #fff;
    background: #c60808;
}

/* Style for warning */

.jquery-notify-bar.warning {
    color: #fff;
    background-color: #eae538;
}

/* Style for success */

.jquery-notify-bar.success {
    color: #fff;
    background-color: #08c88a;
}

/* Style for info */

.jquery-notify-bar.info {
    color: #fff;
    background-color: #08c6bd;
}

/* Style for close button */

.notify-bar-close {
    position: absolute;
    left: 97%;
    top: 13px;
    text-decoration: none;
    color: #222;
    font-size: 30px;
}

.notify-bar-close:hover {
    color: #05f;
}
