.trigger{
  text-align: center;
  padding: 7px 13px;
  background: #3e3e3e;
  color: #fff;
  font-size: 15px;
  outline: none;
  border: none;
  border-radius: 5px;
  font-family: cursive;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  font-family: 'Arial, Helvetica, sans-serif';
}
.modal-content {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 1rem 1.5rem;
  width: 24rem;
  border-radius: 0.5rem;
}
.close-button {
  float: right;
  width: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: lightgray;
}
.close-button:hover {
  background-color: darkgray;
}
.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.push-notification-title {
  font-size: 1.5rem;
}
.push-notification-desc {
  padding-top: 20px;
  font-size: 1rem;
  padding-bottom: 10px;
}
.push-notification-buttons {
  text-align: right;
  padding-top: 10px;
}
.push-notification-buttons .btn {
  background: #d3d3d3;
  border: solid 1px lightgrey;
  border-radius: 5px;
  padding: 10px 10px;
  cursor: pointer;
  min-width: 80px;
}
.push-notification-buttons .btn.accept {
  background: #b1ffb1;
  border-color: #b1ffb1;
}
.push-notification-buttons .btn.deny {
  background: #ffadad;
  border-color: #ffadad;
}