﻿/*
*  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 {
    font-family: Lato-Regular;
    font-size: 14px;
    /*height: 60px;*/
    line-height: 60px;
    position: fixed;
    top: 0px;
    z-index: 9000001 !important;
    /*width: 1180px;*/
    width: 100%;
}

    .jquery-notify-bar.bottom {
        -moz-box-shadow: inset 0 1px 0 0 #fff;
        -ms-box-shadow: inset 0 1px 0 0 #fff;
        -webkit-box-shadow: inset 0 1px 0 0 #fff;
        border-bottom: 0;
        border-top: 1px solid #ddd;
        bottom: 0;
        box-shadow: inset 0 1px 0 0 #fff;
        top: auto;
    }

    .jquery-notify-bar.error .notify-bar-text-wrapper,
    .jquery-notify-bar.warning .notify-bar-text-wrapper,
    .jquery-notify-bar.success .notify-bar-text-wrapper,
    .jquery-notify-bar.info .notify-bar-text-wrapper {
        padding: 1px 0 1px 23px;
        color: white !important;
        padding-left: 62px !important;
    }

    /* Style for errors */

    .jquery-notify-bar.error {
        background-color: #ed4060;
        z-index: 300000;
    }

        .jquery-notify-bar.error .notify-bar-text-wrapper {
            /*background: transparent url("../img/notify-bar/error-icon.png") no-repeat 30px;*/
        }

    /* Style for warning */

    .jquery-notify-bar.warning {
        background-color: #fffaaa;
        z-index: 300000;
    }

        .jquery-notify-bar.warning .notify-bar-text-wrapper {
            /*background: transparent url("../img/jq-notify-bar-icons.svg") no-repeat 1px 1px;*/
        }

    /* Style for success */

    .jquery-notify-bar.success {
        background-color: #39cb7d;
        z-index: 300000;
    }

/*        .jquery-notify-bar.success .notify-bar-text-wrapper {
            background: transparent url("../img/notify-bar/success-icon.png") no-repeat 20px;
        }*/

    .jquery-notify-bar.info {
        background-color: #e47200;
        z-index: 300000;
    }

        .jquery-notify-bar.info .notify-bar-text-wrapper {
            /*background: transparent url("../img/notify-bar/notification-icon.png") no-repeat 30px;*/
            padding: 5px 0;
        }

/* Style for close button */

.notify-bar-close {
    /*background: url('../img/notify-bar/close-icon.png') no-repeat;*/
    bottom: 0;
    color: white;
    font-size: 30px;
    height: 31px;
    left: 97%;
    margin-top: 20px;
    position: absolute;
    text-decoration: none;
    top: 0;
    width: 31px;
    overflow: hidden;
}

.fixed-position-center {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
/*.notify-bar-close {
     .at2x('/images/close-icon@2x.png');
}*/
