#custom-popup {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translatex(-50%);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#custom-popup-content {
  position: relative;
  /* width: 90%; */
  max-width: 1080px;
  background: #fff;
  /* padding: 5px; */
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#custom-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 0;
}
