[class*="msgBox__modal__"] {
  background: rgba(18, 34, 61, .56) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

[class*="msgBox__modal_HomeAreat_model__"] {
  width: min(470px, calc(100vw - 32px)) !important;
  min-height: 0 !important;
  border: 1px solid rgba(255, 255, 255, .82) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 24px 65px rgba(23, 55, 108, .24) !important;
  overflow: hidden !important;
  animation: kyModalIn .22s ease-out both;
}

[class*="msgBox__notice_header__"] {
  height: 72px !important;
  padding: 0 26px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
  background: linear-gradient(135deg, #f4f8ff 0%, #e8f1ff 100%) !important;
  border-bottom: 1px solid #e5edfa !important;
}

[class*="msgBox__notice_header__"] [class*="msgBox__text__"] {
  color: #273852 !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  letter-spacing: .5px;
  display: flex !important;
  align-items: center !important;
  gap: 11px;
}

[class*="msgBox__notice_header__"] [class*="msgBox__text__"]::before {
  content: "!";
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(145deg, #66a7ff, #3976f6);
  box-shadow: 0 6px 14px rgba(57, 118, 246, .27);
}

[class*="msgBox__close_icon__"] {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background-color: rgba(255,255,255,.8) !important;
  transition: transform .18s ease, background-color .18s ease !important;
}

[class*="msgBox__close_icon__"]:hover {
  transform: rotate(90deg);
  background-color: #fff !important;
}

[class*="msgBox__notice_content__"] {
  height: auto !important;
  min-height: 190px !important;
  padding: 32px 30px 26px !important;
  box-sizing: border-box !important;
  background: #fff !important;
}

[class*="msgBox__flex__"] {
  min-height: 58px !important;
  color: #596a83 !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
  text-align: center !important;
  justify-content: center !important;
}

[class*="msgBox__footer__"] {
  padding-top: 25px !important;
  border-top: 1px solid #edf2f8 !important;
  text-align: center !important;
}

[class*="msgBox__confirm__"] {
  width: 176px !important;
  height: 46px !important;
  border: 0 !important;
  border-radius: 23px !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  background: linear-gradient(90deg, #61a5ff 0%, #3478f6 100%) !important;
  box-shadow: 0 9px 20px rgba(52, 120, 246, .28) !important;
  transition: transform .18s ease, box-shadow .18s ease !important;
}

[class*="msgBox__confirm__"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(52, 120, 246, .34) !important;
}

@keyframes kyModalIn {
  from { opacity: 0; transform: translateY(10px) scale(.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
  [class*="msgBox__modal_HomeAreat_model__"] { border-radius: 15px !important; }
  [class*="msgBox__notice_header__"] { height: 64px !important; padding: 0 20px !important; }
  [class*="msgBox__notice_content__"] { min-height: 170px !important; padding: 27px 20px 22px !important; }
  [class*="msgBox__confirm__"] { width: 100% !important; }
}
[class*="msgBox__close_icon__"]{position:relative!important}[class*="msgBox__close_icon__"]::before,[class*="msgBox__close_icon__"]::after{content:"";position:absolute;left:9px;top:16px;width:16px;height:2px;border-radius:2px;background:#71819a}[class*="msgBox__close_icon__"]::before{transform:rotate(45deg)}[class*="msgBox__close_icon__"]::after{transform:rotate(-45deg)}