ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
}
#loading .loading-icon {
  stroke: none;
}
#message {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 300px;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
#message #message-icon {
  stroke: none!important;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-right: 8px;
}
.msg-success {
  background-color: #f0f9eb;
  border: 1px solid #e1f3d8;
  color: #67c23a;
}
.msg-success .msg-success-icon {
  fill: #67c23a;
}
.msg-warning {
  background-color: #fdf6ec;
  border: 1px solid #faecd8;
  color: #e6a23c;
}
.msg-warning .msg-warning-icon {
  fill: #e6a23c;
}
.msg-error {
  background-color: #fef0f0;
  border: 1px solid #fde2e2;
  color: #f56c6c;
}
.msg-error .msg-error-icon {
  fill: #f56c6c;
}
