.popup {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);

  display: flex;
  align-items: center;
  justify-content: center;
}

.popup_content {
  max-width: 800px;
  min-width: 400px;

  height: 600px;
  min-height: 400px;
  background-color: #fff;
  border-radius: 10px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.popup_text {
  width: 100%;
  text-align: center;
  padding: 20px 20px 0px 20px;
}
.popup_text p {
  font-size: 17px;
  font-weight: 700;
}
.popup_close {
  cursor: pointer;
  background-color: #f8f8f8;
  border: 1px solid #8689a4;
  border-radius: 5px;
  padding: 5px 15px;
}