.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-icon {
  position: absolute;
  top: 16px;
  left: 14px;
  color: #fff;
  font-size: 20px;
  z-index: 2;
}

.pdfViewer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;

  :global {
    .anticon-share-alt {
      position: absolute;
      top: 16px;
      right: 14px;
      color: #ffffff;
      font-size: 20px;
      z-index: 2;
    }
  }

  .pdf-container {
    max-width: 100vw;
    max-height: 100vh;
    scroll-behavior: smooth;
    overflow: auto;
  }

  .topBar {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 10px;
    background: #fff;
    border-radius: 6px;
    z-index: 2;
  }

  .toolBar {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 10px;
    background: #ffffff;
    border-radius: 6px;
    z-index: 2;
  }
}

.IframeViewer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 85vh;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  scroll-behavior: smooth;
  background: #fff;

  :global {
    iframe {
      width: 100%;
      height: 100%;
    }
  }
}
