@charset "utf-8";
/* CSS Document */

  /* Responsive PDF frame */
  .img-wrap {
	  display: flex;
	  width:100%;
    /* keeps the PDF height sensible on phones and desktops */
    height: min(90dvh, 1000px);
    /* ensure it shrinks on small screens and expands on large */

    margin: 0 auto;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
	overflow-y: auto; /* Or overflow-y: scroll; */
	overflow-x: hidden;
  }
  .img-frame {
    width: 100%;
    height: 100%;
    border: 0;
  }

.img-frame img {
		width: 100%;
  }