.pm-notification-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: grayscale(1) blur(5px);
          backdrop-filter: grayscale(1) blur(5px);
  z-index: 950;
}
.pm-notification-cover {
  position: fixed;
  left: 50%;
  top: 25%;
  max-width: 90%;
  transform: translate(-50%, -25%);
  z-index: 950;
}
.pm-notification-message {
  position: relative;
  width: 65vw;
  margin-bottom: 20px;
  padding: 20px;
  white-space: pre-wrap;
  text-align: left;
  color: #000;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 2px 10px 15px -5px #a4a9b0;
}
.pm-notification-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  margin-top: 1em;
  width: 100%;
}
