
.pdf-modal {
  border: none;
  border-radius: 8px;
  width: 80%;
  max-width: 800px;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
  --scale-factor: 1;
}

.pdf-content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--grey-almost-black);
  margin: 5vh auto;
  padding: 1px;
  border: 1px inset transparent;
  border-radius: 5px;
  width: 80%;
}

.pdf-header-container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 5rem;
  background-color: var(--grey-almost-black);
}

.pdf-title-container {
  width: 100%;
  padding: 0 2rem;
  flex-grow: 1;
}

.pdf-title {
  margin: 2rem 1rem;
  width: 80%;
}

.pdf-close-btn-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 10%;
  align-items: flex-end;
  padding: 0 2rem;
  background-color: var(--grey-almost-black);
}

#pdf-close-btn {
  text-align: center;
  vertical-align: center;
  color: var(--grey-almost-white);
  background-color: transparent;
}

#pdf-close-btn:hover {
  cursor: pointer;
}

.pdf-icon-container {
  display: flex;
  height: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.pdf-icon {
  height: 3.2rem;
  width: 3.4rem;
  padding: 0 0.3rem 0 0;
  font-weight: 100;
  text-align: center;
  vertical-align: center;
  color: var(--grey-almost-white);
  background-color: var(--grey-dark);
  border: 1px solid transparent;
  border-radius: 4px;
  transition: .2s ease-out;
}

.pdf-icon:hover {
  cursor: pointer;
  background-color: var(--grey-grey);
}

.pdf-toolbar {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: var(--grey-darkest);
}

.pdf-toolbar #pdf-page-counter {
  padding: 1rem 2rem;
  background-color: var(--grey-dark);
  border-radius: 5px;
}

.pdf-toolbar #pdf-current-page,
.pdf-toolbar #pdf-total-page {
  font-size: 1.2rem;
  width: 1rem;
  padding: 0.5rem 1rem;

}

.pdf-toolbar #pdf-current-page {
  color: red;
  border: none;
}

.pdf-toolbar #pdf-current-page::after {
  display: none;
}

.pdf-toolbar #pdf-current-page:hover,
.pdf-toolbar #pdf-current-page:active,
.pdf-toolbar #pdf-current-page:focus,
.pdf-toolbar #pdf-current-page:focus-visible {
  border: none;
}

.pdf-toolbar #pdf-total-page {
  color: white;
}

.pdf-toolbar #pdf-download-btn {
  align-self: flex-end;
}

.pdf-toolbar .wip {
  color: white;
  font-size: 2rem;
  border-bottom: 1px solid white;
}

#pdf {
  position: relative;
  background-color: var(--grey-darkest);
}

#viewerContainer {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--grey-dark);
}

#viewerContainer  #viewer {
  position: relative;
  display: flex;
  background-color: var(--grey-dark);

}

#viewerContainer .page {

}
