.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;

  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;
  line-height: 1.3;
}

.popup_close {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #fdfdfd;
  border-radius: 5px;
}
