


  .p-modal {
    max-height: 80%;
    width: 80%;
    max-width: 850px;
    /* padding: 24px;  */
    /* background-color: white; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
  }

  .p-modal-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(0, 0, 0, 0.5); */
    /* background-color: rgb(18 18 18 / 40%); */
    background-color: rgb(120 120 120 / 40%);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
  }
  .visited {
    opacity: 1;
    visibility: visible;
  }
  .p-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
    width: 2em;
    height: 2em;
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    /* top: -1em; */
    right: -2em;
  }
  .p-modal-inner {
    height: 100%;
    overflow-y: auto; 
    display: flex;
  }
  .p-modal-content img {
    width: 100%;
  }

  @media screen and (max-width: 815px) {
    .p-modal {
      width: 95%;
      padding: 0;
    }
    .p-modal-close {
      font-size: 18px;
      top: -1em;
      right: 0em;
    }
  }

  [data-modal]{ display:none; }