@charset "UTF-8";
.no-scroll {
  height: 100%;
  overflow: hidden;
}
/* modal */
.modal-dim {
  position: fixed;
  inset: 0px;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.modal-wrap {
  width: 400px;
  display: flex;
  background-color: var(--neu--00);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  box-sizing: border-box;
  gap: 24px;
}
.modal-wrap > div {
  width: 100%;
}
.modal-wrap.vertical-center {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal-header {
  width: 100%;
  height: 51px;
  font-size: 19px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neu--900);
  position: relative;
  box-sizing: border-box;
  border-bottom: 1px solid var(--neu--20);
}
.modal-header .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 51px;
  height: 51px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  color: var(--neu--500);
  box-sizing: border-box;
  padding: 30px 30px 0 30px;
  gap: 10px;
}
.modal-body .text-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 8px;
}
.modal-header + .modal-body {
  padding-top: 20px;
}
.modal-body .title {
  font-size: 18px;
  font-weight: 500;
  color: var(--neu--900);
  padding-bottom: 4px;
  line-height: 25px;
}
.modal-body .text-1 {
  font-size: 16px;
  font-weight: 400;
  color: var(--neu--500);
  line-height: 22px;
}
.modal-body .text-2 {
  font-size: 14px;
  font-weight: 400;
  color: var(--neu--300);
  line-height: 19px;
}
.modal-btn-wrap {
  display: flex;
  gap: 8px;
  padding: 0 30px 30px 30px;
  box-sizing: border-box;
  width: 100%;
  flex-shrink: 0;
}