.custom-notify {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  right: 0;
  z-index: 5000;
}

/* Message box */
.custom-notify .callout {
  position: relative;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
  color: black;
}

/* Classes applied for animating in/out */
.custom-notify .ember-notify-show {}
.custom-notify .ember-notify-hide {}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// media screens +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media screen and (min-width: 1px) {
  .custom-notify {
    max-width: 250px;
  }
}
@media screen and (min-width: 450px) {
  .custom-notify {
    max-width: 450px;
  }
}
