/* .popup-old {
  z-index: 1000;
  background-color: #ffffff;
  width: 650px;
  padding: 25px 15px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 450px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  display: none;
  text-align: center;
}

.popup-old button {
    display: block;
    background-color: transparent;
    font-size: 20px;
    color: #c5c5c5;
    border: none;
    outline: none;
    cursor: pointer;
    position: absolute;
    right: -5px;
    top: -10px;
} */

.popup {
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 650px;
  background: white;
  color: #6d6e72;
  padding: 25px 15px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  max-height: 90vh;
  overflow-y: auto;
}

.popup #close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #888888;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
}

.popup #close:hover {
  color: #333333;
}

.popup p {
  font-size: 14px;
  text-align: justify;
  margin: 10px 0;
}

.popup h6 {
  font-size: 16px;
}

@media only screen and (max-width: 500px) {
  .popup-old {
    width: 360px;
    top: 550px;
    position: absolute;
  }

 .popup {
    padding-top: 40px;
    /* padding-right: 20px; */
    width: 90%;
  }

 .popup #close {
    top: 8px;   
    right: 8px;  
  }

}
