.poos-popup-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.poos-popup {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  border-radius: 12px;
  position: relative;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.poos-close {
    position: absolute;
    top: -14px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    background: rgb(206 6 159);
    border-radius: 7px;
    border: solid;
    padding: 0px 9px;
}
.poos-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  color: #fff;
  background-color: #ce069f;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
@media(max-width: 600px) {
  .poos-popup {
    width: 95%;
    font-size: 16px;
  }
}
