.message-container {
  position: fixed;
  width: 400px;
  max-height: 815px;
  padding: 30px 30px 30px 0;
  top: 0;
  right: 0;
  color: white;
  overflow: hidden;
  z-index: 100090;
  pointer-events: none;

  .message {
    position: relative;
    display: none;
    width: 100%;
    height: 60px;
    margin-bottom: 12px;
    box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.3);
    pointer-events: auto;

    &-info {
      background-color: #25aafb;
    }

    &-success {
      background-color: #89c541;
    }

    &-warning {
      background-color: #edb512;
    }

    &-error {
      background-color: #ed0d21;
    }

    .message-title {
      font-size: 15px;
      font-weight: 500;
    }

    .message-left {
      display: flex;
      align-items: center;
      justify-content: center;

      width: 60px;

      i {
        font-size: 26px;
      }
    }

    .message-right {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: left;
      flex-wrap: wrap;

      line-height: 15px;
      font-size: 13px;
      font-weight: 300;
      overflow: hidden;

      padding-right: 32px;
    }

    .message-close {
      position: absolute;
      top: 10px;
      right: 10px;
      line-height: 5px;
      font-size: 26px;
      cursor: pointer;
    }
  }
}