.jGrowl {
  z-index: 9999;
  color: white;
  font-size: 1em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: fixed;

  display: flex;
  flex-direction: column;
}

.jGrowl-message{color: white; text-align:center;}
.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: 50%;
  left: 25%;
}
.jGrowl.center .jGrowl-notification,
.jGrowl.center .jGrowl-closer {
  margin-left: auto;
  margin-right: auto;
}
.jGrowl-notification,
.jGrowl-closer {
  background-color: rgba(48, 64, 80, 0.9);
  opacity: 0.9;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=(0.9*100));
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=(0.9*100));
  zoom: 1;
  box-sizing: border-box;

  min-width: 12em;
  padding: 0.5em 1.9em 0.5em 0.8em;
  margin: 0.8em;
  text-align: left;
  display: none;

  border-radius: var(--border-radius-s);
  border-color: rgba(239, 232, 224, 0.5);
  box-shadow: 0.1em 0.1em 0.2em rgba(239, 232, 224, 0.2),0.2em 0.2em 0.4em rgba(28, 34, 40, 0.5),0 0 1.5em rgba(28, 34, 40, 0.5) inset;
  position: relative;
  text-shadow: 1px 1px rgba(48, 64, 80, 0.9);

  animation: EarthQuake 0.3s ease-out;
}

@keyframes EarthQuake {
	0%{filter: brightness(1);
       right: -0.2em;
       top: -1.2em;
       opacity: 0.2;
    }
    20%{filter: brightness(2);
       right: 0.15em;
    }
    40%{
       right: -0.1em;
    }
    60%{
       right: 0.05em;
    }
    80%{
       right: -0.25em;
    }
 	100%{filter: brightness(1);}
	}

.jGrowl-notification .jGrowl-message {
    text-align: left;
}

.jGrowl-notification .ui-state-highlight,
.jGrowl-notification .ui-widget-content .ui-state-highlight,
.jGrowl-notification .ui-widget-header .ui-state-highlight {
  border: 1px solid #000;
  background: #000;
  color: #fff;
}
.jGrowl-notification .jGrowl-header {
  font-weight: bold;
  font-size: .85em;
}
.jGrowl-notification .jGrowl-close {
    background-color: transparent;
    border: none;
    z-index: 99;
    font-size: 1.3em;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
    line-height: 1;
    box-sizing: border-box;
    padding: 0;
    display: inline-flex;
    align-items: center;
    height: 100%;
    width: 1.5em;
    justify-content: center;
}


.jGrowl-notification .jGrowl-close:hover{
    color: var(--color-Orange-hover);
}

.jGrowl-closer {
  font-size: .9em;
  justify-content: center;
  text-align: center;
  flex: 1;
  cursor: pointer;
}
.jGrowl-closer .ui-state-highlight,
.jGrowl-closer .ui-widget-content .ui-state-highlight,
.jGrowl-closer .ui-widget-header .ui-state-highlight {
  border: 1px solid #000;
  background: #000;
  color: #fff;
}
/** Hide jGrowl when printing **/
@media print {
  .jGrowl {
    display: none;
  }
}
