.popular_container
{
	width : 100%;
	margin : 0px;
	padding : 0px;
	display : flex;
	align-items : start;
	justify-content : center;
    margin-top : 15px;
    margin-bottom : 15px;
}

.popular_movies
{
	width : calc(calc(95% / 2) - 10px);
	margin : 0px;
	padding : 0px;
	margin-right : 10px;
	padding-bottom : 10px;
	display : flex;
	align-items : center;
	justify-content : center;
	flex-direction : column;
	background-color : rgba(255, 255, 255, 0.01);
}

.popular_series
{
	width : calc(calc(95% / 2) - 10px);
	margin : 0px;
	padding : 0px;
	margin-left : 10px;
	padding-bottom : 10px;
	display : flex;
	align-items : start;
	justify-content : start;
	flex-direction : column;
	background-color : rgba(255, 255, 255, 0.01);
}

.popular_title
{
	width : 100%;
	margin : 0px;
	padding : 0px;
}

.popular_title h2
{
    width : calc(100% - 20px);
    font-family : 'Abel';
	color : whitesmoke;
    font-size : 2em;
    margin : 0;
    padding : 0;
    border-bottom : 2px solid #F7941E;
    border-bottom-style : ridge;
    margin-bottom : 20px;
    padding-bottom : 20px;
    padding-left : 20px;
    padding-top : 15px;
}

.popular_content
{
	width : 100%;
	margin : 0px;
	padding : 0px;
	display : flex;
	align-items : center;
	justify-content : center;
	flex-wrap : wrap;
}

.popular_vignette
{
	width : calc(200px - 20px);
	margin : 0px;
	padding : 0px;
	margin : 5px;
	padding : 5px;
	background-color : rgba(128, 128, 128, 0.1);
	border-radius : 3px;
	box-shadow : 0 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.vignette_image
{
	width : 100%;

	margin : 0px;
	padding : 0px;

	height : 300px;

	display: flex;
	align-items : center;
	justify-content: center;
}

.vignette_image img
{
	width : 100%;
	height : auto;
}

.vignette_title
{
	width : 100%;

	margin : 0px;
	padding : 0px;

	height : 3.5em;

	margin-top : 10px;
	overflow: hidden;
}

.vignette_title h3
{
	text-align : center;

	margin : 0px;
	padding : 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: normal;

	color : whitesmoke;
}