#popup {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  position: absolute;

  width: 34.2vw;

  right: 20%;
  top: 15vh;
  font-family: "Noto Sans KR", sans-serif;
  color: white;
  border: 1px solid #283f93;
  z-index: 10000000000000;
}

#popup .popup_img {
  /* height: 100%; */
  cursor: move;
  width: 100%;
  object-fit: contain;
}

#popup .popup_btn_box {
  width: 100%;
  height: 5vh;
  display: flex;
  justify-content: center;

  align-items: center;
  background: #283f93;
  font-weight: 400;

  font-size: 14px;
  cursor: pointer;
}

#popup .popup_btn {
  border: 0.2px solid rgb(181, 179, 179);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
}
#popup .popup_btn:hover {
  background: rgb(115, 104, 104);
}
#popup .popup_btn.close:hover {
  background: rgb(115, 104, 104);
}

#popup .popup_btn a {
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#popup .popup_btn.close {
  background: rgb(5, 1, 27);
}
