
/** jGrowl Styling **/
.jGrowl {
  z-index: 101000;
  position: fixed;
  height: 0;
  overflow: visible;
}

.jGrowl.top-left {
  left: 0px;
  top: 0px;
}

.jGrowl.top-right {
  right: 0px;
  top: 0px;
}

.jGrowl.bottom-left {
  left: 0px;
  bottom: 0px;
}

.jGrowl.bottom-right {
  right: 0px;
  bottom: 0px;
}

.jGrowl.center {
  top: 0px;
  width: 100%;
}

.jGrowl-default-buttons {
  text-align: left;
}

/** Cross Browser Styling **/
.text-center .jGrowl-notification, .text-center .jGrowl-closer,
.center .jGrowl-notification, .center .jGrowl-closer {
  margin-left: auto;
  margin-right: auto;
}

.jGrowl .jGrowl-notification, .jGrowl .jGrowl-closer {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.jGrowl .jGrowl-notification {
  padding: 10px;
  text-align: left;
  display: none;
  background: rgb(245, 245, 245);
  background-color: rgba(255, 255, 255, 0.95);
  background-repeat: no-repeat;
  background-position: 15px 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  margin: 10px auto;
  width: 400px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 4px;
  overflow: hidden;
}

.jGrowl .jGrowl-notification {
  min-height: 45px;
}

.jGrowl .jGrowl-notification:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
}

.jGrowl .jGrowl-notification .jGrowl-header {
  font-weight: bold;
}

.jGrowl .jGrowl-notification .jGrowl-close {
  z-index: 99;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.7;
  position: absolute;
  top: 0px;
  right: 0px;
  display: block;
  text-align: center;
  width: 25px;
  line-height: 25px;
}

div#jGrowl div.jGrowl-notification .jGrowl-close:hover {
  opacity: 1;
}

.jGrowl .jGrowl-closer {
  cursor: pointer;
  text-align: center;
  border-radius: 2px;
  font-size: 12px;
  width: 100px;
  border-radius: 30px;
  padding: 7px;
  background: rgb(245, 245, 245);
  background-color: rgba(255, 255, 255, 0.95);
  background-clip: padding-box;
  box-shadow: 0 0px 15px rgba(255,255,255,.95);
  margin: 10px auto;
}

.jGrowl .jGrowl-closer span {
  color: #555;
  border-bottom: 1px dashed #999;
}

.jGrowl .jGrowl-closer:hover span {
  color: #222;
  border-bottom: 1px dashed #555;
}

div.jGrowl-notification .jGrowl-message {
  word-wrap: break-word;
  padding: 5px;
  margin: 0 10px 0 5px;
  max-height: 500px;
  overflow-x: hidden;
  overflow-y: auto;
}

.jGrowl-notification.default:after {
  background: #A5A5A5;
}

div.jGrowl-notification.default .jGrowl-message,
div.jGrowl-notification.default .jGrowl-close  {
  color: #444;
}

.jGrowl-notification.jGrowl-success {
  background-image: url(/images/lib/jgrowl/green-check.png);
  border-color: #BCD688;
  border-color: rgba(113, 148, 41, 0.6);
  box-shadow: 0 4px 15px rgba(19, 39, 0, 0.15);
}

.jGrowl-notification.jGrowl-success:after {
  background-color: #BCD688;
}

div.jGrowl-notification.jGrowl-success .jGrowl-message,
div.jGrowl-notification.jGrowl-success .jGrowl-close {
  color: #6F814C;
}

.jGrowl-notification.jGrowl-error {
  background-image: url(/images/lib/jgrowl/warning.png);
  border-color: #E29F9F;
  border-color: rgba(211, 106, 106, 0.6);
  box-shadow: 0 4px 15px rgba(39, 0, 9, 0.15);
}

.jGrowl-notification.jGrowl-error:after {
  background-color: #E29F9F;
}

div.jGrowl-notification.jGrowl-error .jGrowl-message,
div.jGrowl-notification.jGrowl-success .jGrowl-message {
  margin-left: 35px;
}

div.jGrowl-notification.jGrowl-error .jGrowl-message,
div.jGrowl-notification.jGrowl-error .jGrowl-close {
  color: #C55D5B;
}

.jGrowl-notification.jGrowl-notice {
  border-color: #F1CE90;
  border-color: rgba(202, 144, 39, 0.6);
  box-shadow: 0 4px 15px rgba(52, 54, 0, 0.15);
}

.jGrowl-notification.jGrowl-notice:after {
  background: #F1CE90;
}

div.jGrowl-notification.jGrowl-notice .jGrowl-message,
div.jGrowl-notification.jGrowl-notice .jGrowl-close {
  color: #a57f3c;
}

/** Hide jGrowl when printing **/
@media print {
  .jGrowl {
    display: none;
  }
}