.contenedorPDF {
  color: white;
  background-color: gray;
  text-align: center;
  max-height: 500px;
  overflow: auto;
}
.icon-download2 {
  color: white;
  font-size: 24px;
}
.opcionesCentro {
  color: white;
  font-size: 24px;
}
.opcionesCentro i {
  cursor: pointer;
}
.opcionesCentro > i:nth-child(1) {
  margin-right: 8px;
}
.opcionesDerecha {
  display: flex;
  align-items: center;
}
.opcionesDerecha > span {
  margin-right: 8px;
}
.contenedorMenuPDF {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  padding: 8px;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(50 54 57);
}

#pdf-viewer {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  overflow: auto;
}

.pdf-page-canvas {
  display: block;
  margin: 5px auto;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

@media (max-width: 479px) {
  #pdf-viewer {
    height: 375px;
  }
  .pdf-page-canvas {
    max-width: none;
  }
  .contenedorMenuPDF {
    padding: 0;
  }
}
@media (max-width: 767px) {
  #pdf-viewer {
    height: 375px;
  }
  .pdf-page-canvas {
    max-width: none;
  }
  .contenedorMenuPDF {
    padding: 0;
  }
}
