/**
 * @package TMDd Plus
 * @version 1.0.2
 * TMDb Plus CSS File
 */

#tmdb-plus {
    width: 100%;
    border: 5px solid #3b5999;
}

#tmdb-plus:after {
	content: "";
  clear: both;
  display: table;
}

#tmdb-plus .poster {
	float: left;
	width: 20%;
	text-align: center;
}

#tmdb-plus .poster img {
	display: block;
	max-width: 100%;
	box-shadow: 0;
	border: 0;
}

#tmdb-plus .overview {
	margin-top: .5rem;
	float: right;
	width: calc(80% - 1rem);
	padding-left: 1rem;
}

#tmdb-plus .left {
	width: 50%;
	float: left;
}

#tmdb-plus .right {
	width: 50%;
	float: right;
}

#tmdb-plus .left span, #tmdb-plus .right span {
	display: block;
	margin-top: .5rem;
}

@media screen and (max-width: 900px) {
	#tmdb-plus .left {
		width: 100%;
		float: none;
	}
	
	#tmdb-plus .right {
		width: 100%;
		float: none;
	}
}