            
                                                                                                                    
.xnotification-container {
  position : fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  z-index: 10051; /* One more than the z-index of bootstrap's modal. */
  display: block !important;
  max-width: 80%;
}
.xnotification-wrapper {
  padding-top: 1px;
}
.xnotification {
  cursor: pointer;
  display: inline-block;
  background: #333 2px center no-repeat;
  border: none;
  padding: 8px 15px;
  border-radius: 7px;
  color: #fff;
  line-height: 20px;
  margin-bottom: 10px;
}

/* each element specifies [notification type, bg color, text color, icon] */
  /** info */
.xnotification-info {
  background-color: #3bb2d0;
  color:  #fff;
  border-color:  #fff;
}
  /** warning */
.xnotification-warning {
  background-color: #f0ad4e ;
  color:  #330;
  border-color:  #330;
}
  /** error */
.xnotification-error {
  background-color: #ca302c;
  color:  #fff;
  border-color:  #fff;
}
            /** inprogress */
.xnotification-inprogress {
  background-color: #333;
  color:  #fff;
  border-color:  #fff;
  background-image: url(/resources/icons/xwiki/spinner-white.gif?cache-version=1767717506000);
  padding-left: 38px;
  background-position: 14px;
}
  /** done */
.xnotification-done {
  background-color: #077537;
  color:  #fff;
  border-color:  #fff;
}

@media (min-width: 992px) { /* should be: @screen-md-min */
  .xnotification-container {
    max-width: 40%;
  }
}
