/**
*Autor: Emilio Ahumada
*Organización: INGCER
*
**/

#notificaciones-wrapper{
  position: fixed;
  margin-top: -50px;
  width:23%;
  margin-left: 75%;
  z-index:9999;
}

#notificaciones-wrapper:not(:empty){
  padding-top: 50px;
}

.notification{
  height: 50px;
  border-radius: 2px;
  background-color: #fff;
  color: #000;
  position: relative;
  margin-top: 20px;
  box-shadow: 0px 0px 5px 1px #333;
  padding-top: 10px;
  padding-left: 10px;
  float:right;
  width:100%;
  min-width:200px;
  font-size:1.3rem;
  cursor:pointer;
}

.notification.error{
  background-color: rgba(219,56,52,0.7);
}

.notification.warning{
  background-color: rgba(219,176,52,0.7);
}

.notification.info{
  background-color: rgba(35,100,103,0.7);
}

.notification.alert{
  background-color: rgba(201,201,201,0.7);
}