body {
  font-family: sans-serif;
  font-size: 1.2em;
  background: #000000;
  color: #ccc;
}
a:link,
a:visited {
  color: DodgerBlue;
  text-decoration: none;
}
a:hover,
a:active {
  color: DodgerBlue;
  text-decoration: underline;
}
main {
  max-width: 800px;
  margin: auto;
}
.showcount {
  margin: 0;
}




.searchForm * {
	box-sizing: border-box;
  }
/*the container must be positioned relative:*/
.autocomplete {
	position: relative;
	display: inline-block;
}

input {
	background-color: #ffffff;
	padding: .5rem;
	font-size: 1rem;
	color: #000000;
}

input[type=text] {
	background-color: #ffffff;
	width: 100%;
}

input[type=submit] {
	background-color: DodgerBlue;
	color: #ffffff;
	cursor: pointer;
}

.autocomplete-items {
	position: absolute;
	border: 1px solid #ffffff;
	border-bottom: none;
	border-top: none;
	z-index: 99;
	/*position the autocomplete items to be the same width as the container:*/
	top: 100%;
	left: 0;
	right: 0;
	color: #666666;
}
.autocomplete-match {
	color: #000000;
	font-weight: bold;
}

.autocomplete-items div {
	padding: .5rem;
	cursor: pointer;
	background-color: #ffffff;
	border-bottom: 1px solid #ffffff;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
	background-color: #aaaaaa;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
	background-color: DodgerBlue !important;
	color: #ffffff;
}



img {
  max-width: 100%;
}
.post-list {
  list-style: none;
  padding: 0;
}
.post-stub {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.post-image {
  width: 15%;
}
.post-text {
  padding-left: 20px;
  width: 85%;
}
.post-text h3 {
  padding: 0 0;
  margin: 0 0;
}
.subtitle {
  font-weight: bold;
  color: #c00000;
}
.episodes,
.last-air-date {
  padding-left: 10px;
}

header {
  height: 5em;
  display: flex;
  justify-content: center; /* Align horizontal */
  align-items: center; /* Align vertical */
  margin-bottom: 10px;
}
header .title {
  font-size: 3em;
  color: #c00000;
}
.dates {
  font-size: smaller;
}

header h1 {
  text-align: center;
  display: inline;
}
header .page_title {
  font-size: 30px;
}
header img {
  height: 100%;
}
.menuactive {
  background-color: #525252;
}

footer {
  text-align: center;
  clear: both;
  font-size: 0.8em;
}

/* For TAGLIST.HTML */
.taglist {
  text-align: center;
  clear: both;
}

/* For NEXTPREV.HTML */
#nextprev {
  /* The container for both the previous and next articles. */
}
#prevart {
  float: left;
  text-align: left;
}
#nextart {
  float: right;
  text-align: right;
}
#nextart,
#prevart {
  max-width: 33%;
}

.single_content {
  display: flex;
}
@media (max-width: 800px) {
  /*adjust this like you want*/
  .single_content {
    display: block;
  }
  .single_poster {
    text-align: center;
  }
  .single_poster img {
    height: 500px;
  }
}
.single_data {
  width: 80%;
  margin: auto;
  margin-left: 30px;
}
.single_dates {
  font-size: 0.8em;
}
.show_name {
  margin-bottom: 0;
}
.details {
  padding: 0;
  font-size: 0.8em;
}
.certification {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.6);
  margin-right: 10px;
}
.tagline {
  font-size: smaller;
  font-style: italic;
  font-weight: 100;
}
.creators {
  display: flex;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.creators li {
  margin-right: 20px;
}
.creators li p {
  margin: 0;
}
.creators li .character {
  font-size: 0.8em;
}
.genres {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.genre + .genre:before {
  content: ", ";
}
.vote_average {
  float: right;
}

svg.radial-progress {
  height: auto;
  max-width: 60px;
  transform: rotate(-90deg);
  width: 100%;
  font-size: 20px;
}

svg.radial-progress circle {
  fill: rgba(0, 0, 0, 0);
  stroke: #98f739;
  stroke-dashoffset: 219.91148575129;
  stroke-width: 10;
}

svg.radial-progress circle.incomplete {
  opacity: 0.25;
}

svg.radial-progress circle.complete {
  stroke-dasharray: 219.91148575129;
}

svg.radial-progress text {
  fill: #ffffff;
  text-anchor: middle;
  font-weight: 900;
}
.tmdb_credit {
  height: 10px;
  width: 100%;
}
