.m-message-list {
  position: fixed;
  z-index: 9999;
}

.m-message-list-top-center {
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0%);
}

.m-message-list-top-right {
  top: 0;
  right: 0;
}

.m-message-list-top-left {
  top: 0;
  left: 0;
}

.m-message-list-bottom-right {
  bottom: 0;
  right: 0;
}

.m-message-list-bottom-left {
  bottom: 0;
  left: 0;
}

.m-message-item {
  min-height: 80px;
  min-width: 300px;
  display: flex;
  align-items: center;
  padding: 30px 40px;
  box-sizing: border-box;
  background: url('./assets/message-box.webp') no-repeat;
  background-size: 100% 100%;
  position: relative;
  user-select: none;

  .m-message-list-icon {
    display: inline-block;
    height: 20px;
    width: 20px;
    z-index: -1;
  }

  .m-message-list-content {
    max-width: 250px;
    margin-left: 10px;
  }
}

.m-message-remove {
  opacity: 0.3;
}
