body, html {
  background-color: #29355f;
  height: 95%;
}
button {
  background-color: #EB3042;
  border: none;
  border-radius: 5px;
  color: #d9d502;
  cursor: pointer;
}
button:hover {
  background-color: #9e5158;
  color: #b1ae02;
}
button:active {
  background-color: #9e5158;
  transform: translateY(2px);
}
button.fas.fa-play, button.fas.fa-pause {
    font-size: 16vh;
    padding: 1vh 2vh;
}
span.playpause {
    display: block;
    float: left;
    margin-right: 2vh;
}

span.fwdback {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    height: 23vh;
}
span.fwdback button {
    font-size: 4vh;
}
span.seekbar {
    clear: left;
    display: block;
    margin-top: 3vh;
}
span.volumebar {
    display: block;
}
.clear { clear: both; display: block; }
#cover {
  display: none;
  background-color: white;
  border-radius: 15px;
  padding: 15px;
}
#cover img {
    height: 350px;
}
div#copyrightfooter {
    text-align: center;
    font-size: 10px;
    font-family: sans-serif;
}
.fa-pause {
  display: none;
}
.fa-book-reader, .fa-volume-up {
  color: #eb3042;
}
h3 {
  margin-bottom: 0;
}
#jacketsummary {
    font-family: sans-serif;
}
#jacketsummary .scholastic {
  font-size: 0.5em;
}

ol {
  margin-top: 0;
}
p {
    margin-top: 0;
}
.player {
  background-color: #3E4C4F;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 10px;
}
.reader {
  width: 100px;
  float: right;
}
#runningtime {
    font-family: sans-serif;
    font-weight: bold;
    font-size: 11px;
    font-style: italic;
    line-height: 11px;
    color: #789ccc;
}
#seek {
  width: 20vh;
}
.series {
    display: inline-block;
    background-color: black;
    color: white;
    padding-left: 0.5em;
    padding-right: 0.5em;
    font-weight: bold;
}
.source {
  font-family: sans-serif;
  font-size: 10px;
  font-style: italic;
  color: #666;
}
.subtitle {
    font-size: 14px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.title, .subtitle {
  color: white;
  font-family: sans-serif;
  font-weight: bolder;
  text-transform: uppercase;
}
.title { font-size: 20px; }
#bookcover {
    float: right;
    margin-left: 10px;
    cursor: pointer;
    display: inline-block;
    position: relative;
}
#thumbnail {
    width: 20vh;
}

#volume {
    width: 20vh;
}
#wrapper {
    width: 95%;
    background: #fff;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
}
#blurback {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  box-sizing: border-box;
  background: black;
  background-size: cover;
  filter: blur(6px);
}

/* http://danielstern.ca/range.css/?ref=css-tricks#/ */
input[type=range] {
  -webkit-appearance: none;
  width: 150px;
  margin: 1.3px 0;
}
input[type=range]:focus {
  outline: none;
}
#seek::-webkit-slider-runnable-track {
  width: 100%;
  height: 11.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #eb3042;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}
#seek::-webkit-slider-thumb {
  height: 0;
  width: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 8px solid #fefa24;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -1.5px;
}
#volume::-webkit-slider-runnable-track {
  width: 100%;
  height: 11.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #eb3042;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}
#volume::-webkit-slider-thumb {
  box-shadow: 0.9px 0.9px 1px #000031, 0px 0px 0.9px #00004b;
  border: 1.8px solid #00001e;
  height: 14px;
  width: 15px;
  border-radius: 15px;
  background: #fefa24;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -1.5px;
}

#watermark {
    bottom: 2vh;
    height: 4vh;
    position: absolute;
    left: 1vh;
    background: white;
    padding: 0;
    border-radius: 5px;
    opacity: 0.8;
}

#logo {
    float: left;
    height: 50px;
}

@media only screen and (min-width: 600px) {

  #wrapper {
      width: 470px;
  }
  #thumbnail {
      margin-right: 5vh;
  }
  .controls {
      margin-left: 5vh;
  }
}
