@require '../../../../style/media.styl';

:host >>> {

  div.simple-notification-wrapper {
    bottom: 0;
    right: calc(50% - 150px);
    +media(mobile) {
      right: 0;
      left: 0;
      width: 100%;
    }
  }

  div.simple-notification {
    min-height: 50px;
    margin-bottom: 5px;
    padding-left: 45px;
    padding-right: 25px;

    &.noIcon {
      padding-left: 25px;
    }

    +media(mobile) {
      margin-bottom: 0;
    }

    .sn-title {
      line-height: 23px;
      font-size: 15px;
      font-weight: bold;
    }

    .sn-content {
      line-height: 18px;
      font-size: 15px;
    }

    .icon {
      top: 0;
      left: 0;
      width: 45px;
      height: 100%;
      padding: 7px;

      mat-icon {
        display: flex;
        align-items: center;
        height: 100%;
        font-size: 32px;
      }
    }

    &.error {
      background-color: #d32f2f;
      .sn-progress-loader span {
        background-color: #c41515;
      }
    }
  }

  .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;
  }
}
