#img_ldw {
  position: fixed;
  max-width: 50px;
  max-height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 9999999;
}
#mmAlertWrap{
  position:fixed;
  top: 5px;
  right:5px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9999;
  pointer-events:none;
  max-width:520px;
}

.mm-alert{
  pointer-events:auto;
  position:relative;
  display:flex;
  min-width:320px;
  border-radius:5px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  border:1px solid rgba(0,0,0,.08);
  transition:opacity .14s ease, transform .14s ease;
}

.mm-alert.mm-hide{
  opacity:0;
  transform:translateY(-6px);
}

.mm-left{
  flex:0 0 56px;
  background:var(--mm-brd);
  display:flex;
  align-items:center;
  justify-content:center;
}

.mm-badge{
  width:30px;
  padding: 5px 0 8px 0;
  border-radius:999px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  line-height:1;
}

.mm-right{
  flex:1 1 auto;
  background:var(--mm-bg);
  padding:12px 40px 12px 12px;
}

.mm-ttl{
  margin:0;
  font-size:14px;
  line-height:1.2;
  font-weight:800;
  color:#0b0b0b;
}

.mm-msg{
  margin:4px 0 0 0;
  font-size:13px;
  line-height:1.4;
  color:#424242;
}

.mm-close{
  position:absolute;
  top:8px;
  right:8px;
  width:26px;
  height:26px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  user-select:none;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.12);
  box-shadow:0 8px 16px rgba(0,0,0,.12);
}

.mm-close:active{
  transform:scale(.97);
}

.mm-close:focus{
  outline:2px solid rgba(0,0,0,.22);
  outline-offset:2px;
}

.mm-x{
  font-size:14px;
  line-height:1;
}