.popupss {
position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  
}

.popup {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color:  rgba(0, 0, 0, 0.2);;
  padding: 20px;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 9999;
}
.popup.active {
  display: block;
}

.close-btn {
  position: absolute;
   top: 1px;
  right: 1px;
  cursor: pointer;
  font-size: 32px;
  background-color: white;
}


.popup-content {
    max-height: 90vh;
    overflow-y: auto;
    /* Add additional styling as needed */
}.pop-content >p > img{
    height: 200px;
}
