/*
    * Mixin used to add style and states to buttons
*/
/*
    * Mixin used for adding browser vendor specific prefixes    
*/
/*
    * Mixin used to add style for the filter component using different versions of colors   
*/
.notification-position {
  top: 20px;
  right: 20px;
}
#toast-container .notification-content {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.4);
  background-position: 15px 17px;
  margin-bottom: 10px;
  opacity: 0.9;
  padding: 20px 20px 20px 50px;
}
#toast-container .notification-content .toast-close-button {
  font-weight: lighter;
  position: absolute;
  top: 0;
  right: 10px;
}
#toast-container .notification-negative {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.4);
  background-position: 15px 17px;
  margin-bottom: 10px;
  opacity: 0.9;
  padding: 20px 20px 20px 50px;
  background-color: #df0000;
}
#toast-container .notification-negative .toast-close-button {
  font-weight: lighter;
  position: absolute;
  top: 0;
  right: 10px;
}
#toast-container .notification-positive {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.4);
  background-position: 15px 17px;
  margin-bottom: 10px;
  opacity: 0.9;
  padding: 20px 20px 20px 50px;
  background-color: #008738;
}
#toast-container .notification-positive .toast-close-button {
  font-weight: lighter;
  position: absolute;
  top: 0;
  right: 10px;
}
#toast-container .notification-title {
  color: white;
  font-weight: bold;
}
#toast-container .notification-title::first-letter {
  text-transform: capitalize;
}
#toast-container .notification-message {
  padding-top: 10px;
}
