.popup {
  background-color: #000000a6;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 110000000;
  /* 	display: flex; */
  display: none;
  align-items: center;
  justify-content: center;
}
.popup-content {
  display: none;
  max-width: 800px;
  width: 100%;
  background: #233d7a;
  /*min-height: 400px;*/
  overflow: auto;
  position: relative;
  padding: 5px;
  margin: 0 15px;
  box-sizing: border-box;
  transition: 0.3s ease;
}
.popup-content .close {
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  color: #fff;
  background: #fff;
  padding: 5px;
}
body.showPopup .popup {
  display: flex;
}
body.showPopup .popup-content {
  display: block;
  animation: popup 0.3s forwards;
}
body.removePopup .popup-content {
  animation: popupclose 0.3s forwards !important;
}

@keyframes popup {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popupclose {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}

/* button */
.open-btn {
  background-color: red;
  color: #fff;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 24px;
  cursor: pointer;
}