/* 모달 영역 */
.modal-area {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: none;
}
.modal-area.active {
  display: block;
}
.modal-area .modal {
  display: none;
}
.modal-area .modal.active {
  display: block;
}


/* 알림 팝업 */
.notice-modal {
  border-radius: 12px;
  border: 1px solid #082D74;
  /* top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); */
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  z-index: 100;
  display: none;
  padding-bottom: 20px;
}

.notice-modal .cont {
  padding: 30px;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
}
.notice-modal a {
  background-color: #082D74;
  color: #fff;
  font-size: 18px;
  padding: 11px 44px;
  display: inline-block;
  border-radius: 40px;
  text-align: center;
}
.notice-modal.active {
  display: flex;
}
