:host >>> div.simple-notification-wrapper {
  bottom: 0;
  right: calc(50% - 150px);
}
@media only screen and (max-width: 450px), only screen and (max-height: 450px) {
  :host >>> div.simple-notification-wrapper {
    right: 0;
    left: 0;
    width: 100%;
  }
}
:host >>> div.simple-notification {
  min-height: 50px;
  margin-bottom: 5px;
  padding-left: 45px;
  padding-right: 25px;
}
:host >>> div.simple-notification.noIcon {
  padding-left: 25px;
}
@media only screen and (max-width: 450px), only screen and (max-height: 450px) {
  :host >>> div.simple-notification {
    margin-bottom: 0;
  }
}
:host >>> div.simple-notification .sn-title {
  line-height: 23px;
  font-size: 15px;
  font-weight: bold;
}
:host >>> div.simple-notification .sn-content {
  line-height: 18px;
  font-size: 15px;
}
:host >>> div.simple-notification .icon {
  top: 0;
  left: 0;
  width: 45px;
  height: 100%;
  padding: 7px;
}
:host >>> div.simple-notification .icon mat-icon {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 32px;
}
:host >>> div.simple-notification.error {
  background-color: #d32f2f;
}
:host >>> div.simple-notification.error .sn-progress-loader span {
  background-color: #c41515;
}
:host >>> .closeIcon >>> .sn-title:after {
  content: "close";
  font-family: 'Material Icons';
  font-feature-settings: 'liga' 1;
  font-size: 24px;
  font-weight: normal;
  right: 5px;
  top: 5px;
  position: absolute;
}
