.open-popup {
  display: flex !important;
}
.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup {
  background-color: #e3e3e3;
  padding: 20px 30px;
  border-radius: 15px;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.popup-content {
}
