#popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 60px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding-top: 40px;
  text-align: center;
  padding-bottom: 40px;
  height: 300px;
  width: 700px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
}
@media (max-width: 786px) {
  #popup-content {
    width: 90%;
  }
}

#popup-content .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* CSS for the close button */
#popup-content .close-btn {
  position: absolute;
  top: -6px;
  right: 10px;
  cursor: pointer;
  font-size: 40px;
  color: #bd9964;
}

#popup-content .close-btn:hover {
  color: #333;
}
