.com-pdf-viewer {
  &.pdfjs {
    background: transparent;
  }

  .viewerContainer {
    height: auto;
  }

  .pinch-zoom-container {
    min-height: 100vh;
  }

  .pdfViewer {
    padding: 0;
  }
}

.wrapper {
  position: fixed;
  width: 100vw;
  height: 100vh;
  padding: 15px;
  top: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
  z-index: 9999;

  >div {
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 40px);

    .img-view {
      display: flex;
      width: 100%;
      align-items: center;
      img {
        width: 100%;
        display: block;
        min-height: 300px;
      }
    }

    .closeWrapper {
      position: fixed;
      top: 35px;
      right: 26px;
      font-size: 12px;
      color: #fff;
      background-color: rgba(0, 0, 0, 0.45);
      width: 26px;
      height: 26px;
      text-align: center;
      line-height: 26px;
      border-radius: 13px;
      z-index: 999999;
    }
  }
}
