#bookPlayer {
  background: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  height: 100%;
  overflow: auto;
  position: relative;
  width: 100%;
  z-index: 100;
}
#bookPlayer .topButtons {
  color: #000;
  opacity: 0.7;
  width: 100%;
  z-index: 1002;
}
#bookPlayer .bookPlayerContainer {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
#bookPlayer #btnBookplayerToc {
  float: left;
  margin-left: 2vw;
}
#bookPlayer #btnBookplayerExit {
  float: right;
  margin-right: 2vw;
}
#bookPlayer .bookplayerErrorMsg {
  text-align: center;
}
#bookPlayer #btnBookplayerNext,
#bookPlayer #btnBookplayerPrev {
  margin: 0.5vh 0.5vh;
}
#dialogToc {
  background-color: #fff;
  height: -webkit-fit-content;
  height: fit-content;
  max-height: 80%;
  max-width: 60%;
  padding-bottom: 15px;
  padding-right: 50px;
  width: -webkit-fit-content;
  width: fit-content;
}
#dialogToc .bookplayerButtonIcon {
  color: #000;
}
#dialogToc .toc li {
  font-size: 1.2rem;
  font-weight: 700;
  list-style-type: none;
  margin-bottom: 5px;
}
#dialogToc .toc li ul {
  padding-left: 1.5rem;
}
#dialogToc .toc li ul li {
  font-weight: 400;
}
#dialogToc .toc li a:link {
  color: #000;
  -webkit-text-decoration: none;
  text-decoration: none;
}
#dialogToc .toc li a:active,
#dialogToc .toc li a:hover {
  color: #00a4dc;
  -webkit-text-decoration: none;
  text-decoration: none;
}
