/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-message {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #202d40;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: fixed;
  top: 22px;
  left: 0;
  z-index: 2010;
  width: 100%;
  font-size: 14px;
  pointer-events: none;
}
.ant-message-notice {
  margin-bottom: -2px;
  padding: 8px 0;
  text-align: center;
}
.ant-message-notice-content {
  display: inline-block;
  overflow: hidden;
  border-radius: 2px;
  -webkit-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
  pointer-events: all;
}
.ant-message-success,
.ant-message-error,
.ant-message-warning,
.ant-message-loading,
.ant-message-info {
  padding: 10px 16px 10px 16px;
}
.ant-message-warning {
  background: #fffbe5;
  border: 1px solid #fbd341;
}
.ant-message-warning .anticon {
  color: #edb807;
}
.ant-message-success {
  background: #f2ffe0;
  border: 1px solid #7ad93a;
}
.ant-message-success .anticon {
  color: #4fbe0e;
}
.ant-message-info {
  background: #e6f7ff;
  border: 1px solid #8cc6ff;
}
.ant-message-info .anticon {
  color: #06f;
}
.ant-message-error {
  background: #fff0f0;
  border: 1px solid #fc9c9c;
}
.ant-message-error .anticon {
  color: #eb333f;
}
.ant-message-loading {
  background: #f5f7fa;
  border: 1px solid #dadfe6;
}
.ant-message-loading .anticon {
  color: #06f;
}
.ant-message .anticon {
  position: relative;
  top: 1px;
  margin-right: 6px;
  font-size: 16px;
}
.ant-message-notice.move-up-leave.move-up-leave-active {
  -webkit-animation-name: MessageMoveOut;
          animation-name: MessageMoveOut;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}
@-webkit-keyframes MessageMoveOut {
  0% {
    max-height: 150px;
    padding: 8px;
    opacity: 1;
  }
  100% {
    max-height: 0;
    padding: 0;
    opacity: 0;
  }
}
@keyframes MessageMoveOut {
  0% {
    max-height: 150px;
    padding: 8px;
    opacity: 1;
  }
  100% {
    max-height: 0;
    padding: 0;
    opacity: 0;
  }
}
.ant-message-rtl {
  direction: rtl;
}
.ant-message-rtl span {
  direction: rtl;
}
.ant-message-rtl .anticon {
  margin-right: 0;
  margin-left: 8px;
}
