@charset "utf-8";
@import './reset.css';
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

.wrap {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  padding: 20px;
}
.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.header::before {
  display: block;
  content: '';
  width: 80px;
  height: 80px;
  background: url('../images/img@2x.png') no-repeat center/100%;
}
.header h1 {
  color: #333;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.55px;
  line-height: 1.5;
}
.notice {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.notice p {
  color: #222;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 1.5;
  word-wrap: break-word;
  word-break: keep-all;
}
.notice p.desc {
  margin-bottom: 8px;
  color: #666;
}
.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.btn-refusal,
.btn-accept {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 50px;
  font-size: 15px;
  font-weight: 500;
}
.btn-refusal {
  background: #fff;
  border: 1px solid #444;
  color: #444;
}
.btn-accept {
  background: #444;
  border: none;
  color: #fff;
}
.dimmed {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.3s;
  z-index: 997;
  cursor: pointer;
}
.dimmed.is-active {
  display: block;
}

.modalWrap {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  max-height: 90%;
  width: calc(100% - 40px);
  background: #fff;
  z-index: 1002;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}
.modalWrap.is-active {
  display: block;
}
.modal_popup {
  position: relative;
}
.modal-head {
  padding: 20px 0;
  margin: 0 20px;
  border-bottom: 1px solid #ebebeb;
}
.modal-head h3 {
  color: #222;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.36px;
  line-height: 1.5;
  text-align: center;
}
.modal-cont {
  padding: 20px 20px 24px;
}
.modal-foot {
  display: flex;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  flex: auto;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: #6EC3E8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.32px;
  line-height: 1.5;
}
.btn-close {
  position: absolute;
  top: -32px;
  right: 0;
  width: 20px;
  height: 20px;
  background: transparent;
  font-size: 14px;
  text-indent: -9999px;
}
.btn-close::before,
.btn-close::after {
  background: #fff;
  content: "";
  display: block;
  width: 1.5px;
  height: 25px;
  position: absolute;
  top: -3px;
  right: 50%;
}
.btn-close::before{
  transform: rotate(45deg);
}
.btn-close::after{
  transform: rotate(-45deg);
}
.dotlist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dotlist li {
  position: relative;
  padding-left: 8px;
  color: #222;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.4px;
  word-break: break-all;
  line-height: 1.5;
}
.dotlist li::before {
  display: inline-block;
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 2px;
  height: 2px;
  background: #222;
}
.txt-msg {
  margin-top: 4px;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.5;
  text-align: center;
}