#noticePopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup-box {
  background: #ffffff;
  padding: 15px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  position: relative;
  border-radius: 10px;
}

.popup-box img {
  width: 100%;
  border-radius: 8px;
}

.popup-box p {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

.close-btn {
  position: absolute;
  top: 6px;
  right: 12px;
  font-size: 26px;
  cursor: pointer;
  color: #000;
}
