#block-popup{
  width:340px;
  /* min-height:172px; */
  border-radius: var(--border-radius-lg, 8px);
  border: var(--border-width-sm, 1px) solid var(--border-primary, #F2F2F3);
  background: var(--surface-primary, #F2F2F3);
  box-shadow: 0 0 25px -10px rgba(0, 0, 0, 0.10);
  position: fixed;
  top: 144px;
  right: 32px;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.alert-wrapper{
  display: flex;
  width: 340px;
  padding: 20px 16px;
  padding-bottom:16px;
  align-items: flex-start;
}
.alert-mid{
  padding-left: 16px;
  padding-right: 8px;
}
.alert-title{
  color: var(--text-action1, #303031);
  font-family: var(--type-font-family-body, Inter);
  font-size: var(--fontsize-body-md, 16px);
  font-weight: 500;
  line-height: var(--line-height-body-md, 24px); /* 150% */
}
.alert-body p{
  color: var(--text-body-primary, #616161);
  font-family: var(--type-font-family-body, Inter);
  font-size: var(--fontsize-body-sm, 12px);
  font-weight: 400;
  line-height: var(--line-height-body-sm, 20px); /* 166.667% */
  padding-top: 4px;
  padding-bottom: 16px;
}
.alert-line{
  border-radius: var(--border-radius-round, 80px);
  background: var(--surface-action1, #7DD2CF);
  width: 240px;
  height:4px;
}
button.popclose{
  background: none;
  border: 0;
  cursor: pointer;
}
.alert-btn a{
  border:none!important;
  padding:0;
  font-weight:400!important;
  background: transparent!important;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  gap:12px;
}
.alert-btn a:hover{
  background: var(--surface-action2-hover, #EBF2EF);
}
.alert-error .alert-line{
  background: #FF0000!important;
}
.alert-error .alert-img svg path{
  fill:#FF0000!important;
}
.alert-error .alert-title{
  color:#FF0000!important;
}
.alert-error .alert-btn a{
  color:#FF0000!important;
}
.alert-warning .alert-line{
  background: #FF6B00!important;
}
.alert-warning .alert-img svg path{
  fill:#FF6B00!important;
}
.alert-warning .alert-title{
  color:#FF6B00!important;
}
.alert-warning .alert-btn a{
  color:#FF6B00!important;
}
.alert-success .alert-line{
  background: #179822!important;
}
.alert-success .alert-img svg path{
  fill:#179822!important;
}
.alert-success .alert-title{
  color:#179822!important;
}
.alert-success .alert-btn a{
  color:#179822!important;
}
.alert-information .alert-line{
  background: #000AFF!important;
}
.alert-information .alert-img svg path{
  fill:#000AFF!important;
}
.alert-information .alert-title{
  color:#000AFF!important;
}
.alert-information .alert-btn a{
  color:#000AFF!important;
}

@media only screen and (max-width: 1000px) {
  #block-popup{
    top: 102px;
    right: 22px;
  }
}

@media only screen and (max-width: 743px) {
  #block-popup{
    top: 90px;
    min-height: auto;
    right:16px;
    width: calc(100vw - 32px) !important;
  }
  .alert-mid,
  .alert-wrapper{
    width: 100%;
  }
}
