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

/* Default bars' style */
.jquery-notify-bar {
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:32768;
  background-color:#efefef;
  font-size:16px;
  color:#000;
  text-align:center;
  text-transform:uppercase;
  font-family:'Montserrat', sans-serif;
  padding:25px 0px;
  cursor: pointer;
  border-bottom:1px solid #666;
}

.jquery-notify-bar.top {}

/* Style for errors */
.jquery-notify-bar.error {
  /*color:#f00;*/
  background-color:#fdd;
}

/* Style for warning */
.jquery-notify-bar.warning {
  /*color:#000;*/
  background-color:#fffaaa;
}

/* Style for success (notice) */
.jquery-notify-bar.success {
  /*color:#060;*/
  background-color:#bbffb6;
}

/* 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;
}