html,
body {
  background-color: hsl(200, 100%, 10%);
  overflow-x: hidden;
}
.fixed-center {
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#loginbox {
  padding: 10px;
  border-radius: 6px;
  background-color: hsl(200, 100%, 70%);
  color: hsl(200, 100%, 20%);
  box-shadow: 2px 2px 2px 2px #000;
  text-align: center;
}
#nav {
  position: fixed;
  top: 0;
  left: 0;
  background-color: hsl(200, 100%, 20%);
  opacity: 0.3;
  z-index: 1;
  width: 100%;
  max-width: 100vw;
  height: 50px;
  padding: 5px;
}
#nav:hover {
  opacity: 0.7;
}
#nav a {
  font-size: 30px;
  line-height: 40px;
  color: hsl(200, 100%, 20%);
  margin: 0px 5px;
  background-color: hsl(200, 100%, 70%);
  padding: 5px;
  border-radius: 5px;
  text-decoration: none;
}
#abanner {
  width: 100vw;
  padding-top: 33.5%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: -8%;
}
#acontent {
  background-color: hsl(200, 100%, 10%);
  color: hsl(200, 100%, 80%);
  margin-top: -11.5%;
  min-height: calc(50vh);
}
#ainner {
  max-width: 1520px;
  margin: auto;
}
#acover {
  display: inline-block;
  margin-top: -160px;
  width: 230px;
  height: 320px;
}
#adetails {
  display: inline-block;
  max-width: calc(1520px - 135px);
  margin-top: -160px;
  margin-left: 250px;
}
#adetails h2 {
  color: hsl(200, 100%, 80%);
}
#anav {
  display: flex;
  width: 100vw;
  justify-content: space-around;
  height: 50px;
  position: absolute;
  top: 0;
  background-color: hsl(200, 100%, 20%);
  opacity: 0.3;
  padding: 5px;
}
#anav:hover {
  opacity: 0.7;
}
#anav a {
  font-size: 30px;
  line-height: 30px;
  color: hsl(200, 100%, 20%);
  background-color: hsl(200, 100%, 70%);
  padding: 5px;
  border-radius: 5px;
  text-decoration: none;
}
.wcontainer {
  max-width: 1520px;
  margin: auto;
}
.ep-container {
  background-color: hsl(200, 100%, 20%);
  border-radius: 5px;
  margin-bottom: 3px;
  height: 201px;
  display: grid;
  grid-template-columns: 268px 1fr;
  grid-template-rows: 49px 1fr;
  column-gap: 3px;
}
.ep-container img {
  width: 268px;
  height: 201px;
  display: inline-block;
  grid-row-start: 1;
  grid-row-end: span 2;
}
.ep-container a {
  margin-top: 3px;
  display: grid;
  column-gap: 3px;
  row-gap: 5px;
  text-decoration: none;
  grid-template-columns: 49px 1fr;
  grid-template-rows: 1rem 1fr;
  color: hsl(200, 100%, 80%);
}
.ep-container a progress {
  /* style rules */
  border-radius: 7px;
  height: 10px;
}
.ep-container a progress::-webkit-progress-bar {
  /* style rules */
  border-radius: 7px;
}
.ep-container a progress::-webkit-progress-value {
  /* style rules */
  border-radius: 7px;
  background-color: hsl(200, 100%, 60%);
}
.ep-container a progress::-moz-progress-bar {
  /* style rules */
  border-radius: 7px;
}
.ep-container a:hover {
  text-decoration: none;
  color: hsl(200, 100%, 90%);
}
.ep-container a:hover .ep-play {
  background-color: hsl(200, 100%, 70%);
}
.ep-play {
  width: 49px;
  height: 49px;
  font-size: 25px;
  padding-left: 27%;
  padding-top: 18%;
  border-radius: 25px;
  background-color: hsl(200, 100%, 60%);
  grid-row-start: 1;
  grid-row-end: span 2;
}
#synopsis {
  margin-top: 9px;
  text-overflow: ellipsis;
}
#synopsis p {
  height: calc(143px - 21px - 1.3125rem);
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0;
}
#synopsis summary {
  cursor: pointer;
}
