/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : May 28, 2020, 12:29:51 PM
    Author     : Sandeep
*/
.bootstrap-notify-container {
    max-width: 400px;
    text-align: center;
    margin:0px 5px;
    color:#fff !important;
    bottom:5px !important;
    z-index:8888 !important;
}


.notifications {
  position: fixed;
  z-index: 9999;
}

/* Positioning */ 
.notifications.top-right {
  right: 10px;
  top: 25px;
}

.notifications.top-left {
  left: 10px;
  top: 25px;
}

.notifications.bottom-left {
  left: 10px;
  bottom: 25px;
}

.notifications.bottom-right {
  right: 10px;
  bottom: 25px;
}

/* Notification Element */
.notifications > div {
  position: relative;
  margin: 5px 0px;
}

.bg_danger{
    background:#ff3333;
    color:#fff;
    font-size:14px;
}
.bg_success{
    background:#30e630;
    color:#fff;
    font-size:14px;
}
.bg_warning{
    background:#ffc933;
    color:#fff;
    font-size:14px;
}

