.pop-up {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
  }
  .pop-up .pop-up-content {
    width: 420px;
    border-radius: 8px;
  }
  .pop-up .pop-up-content h2 {
    background-color: #d03348;
    line-height: 2.8;
    padding: 0 1em;
    color: #fff;
    font-size: 1.25em;
    text-align: center;
  }
  .pop-up .pop-up-content div {
    background-color: #111111;
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  .pop-up .pop-up-content div p {
    margin-bottom: 10px;
  }
  .pop-up .pop-up-content div p a {
    color: #d03348;
  }
  .pop-up .pop-up-content div p:first-child {
    color: #d03348;
  }
  .pop-up .pop-up-content div button {
    margin-top: 10px;
    height: 2.8em;
    padding: 0 1.6em;
    background-color: #d03348;
    color: #fff;
    border-radius: 5px;
  }
  .dimmer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 998;
  }
  