/*
 * Copyright (c) 2013-2025
 * All rights reserved.
 * 
 * Phone: +31 (0)6 23 18 56 74
 * Email: rs@rickschuttinga.nl
 */

/*
 * #00FF95; /* MINT *
 * #00E787; /* MINT DARK *
 *
 * #2900DA; /* BLUE *
 * #F53163; /* RED *
 *
 * #101010; /* BLACKISH *
 * #666666; /* GREY DARK *
 *  #A3A3A3;
 * #DADADA; /* GREY *
 * #EEEEEE; /* GREY LIGHT *
 * #FFFFFF; /* WHITE *
 */

/*
 * 220% - 44px - 1.1 - 44/46 - Medium
 * 190% - 38px - 1.1 - 38/42 - Medium
 * 160% - 32px - 1.2 - 32/38 - Medium
 * 130% - 26px - 1.3 - 26/34 - Medium
 * 100% - 20px - 1.5 - 20/30 - Book
 *  70% - 14px - 1.8 - 14/26 - Book
 */

/*
 * 100	
 *  90	TRAILER
 *  80	NAV
 *  70	SEARCH
 *  60	LOGO
 *  50	HEADER
 *  40	MOVIES
 *  30	PAGINATION
 *  20	
 *  10	REVIEW
 */

/*
v BASICS, ID'S & CLASSES
	v LINK STATES
		v COMBINED CSS; DIVIDED
 */

/*--------------------------------------------------
 * FONT-FACE
 */

@font-face {
	font-family: "Avenir Book";
	src: url('/fnt/avenir_book.eot');
	src: url('/fnt/avenir_book.eot?#iefix') format('embedded-opentype'),
		 url('/fnt/avenir_book.woff2') format('woff2'),
		 url('/fnt/avenir_book.woff') format('woff'),
		 url('/fnt/avenir_book.ttf') format('truetype'),
		 url('/fnt/avenir_book.svg#avenirbook') format('svg');
	font-style: normal;
	font-weight: normal;
	font-display: swap;
}

@font-face {
	font-family: "Avenir Medium";
	src: url('/fnt/avenir_medium.eot');
	src: url('/fnt/avenir_medium.eot?#iefix') format('embedded-opentype'),
		 url('/fnt/avenir_medium.woff2') format('woff2'),
		 url('/fnt/avenir_medium.woff') format('woff'),
		 url('/fnt/avenir_medium.ttf') format('truetype'),
		 url('/fnt/avenir_medium.svg#avenirmedium') format('svg');
	font-style: normal;
	font-weight: normal;
	font-display: swap;
}

@font-face {
	font-family: "Avenir Black";
	src: url('/fnt/avenir_black.eot');
	src: url('/fnt/avenir_black.eot?#iefix') format('embedded-opentype'),
		 url('/fnt/avenir_black.woff2') format('woff2'),
		 url('/fnt/avenir_black.woff') format('woff'),
		 url('/fnt/avenir_black.ttf') format('truetype'),
		 url('/fnt/avenir_black.svg#avenirblack') format('svg');
	font-style: normal;
	font-weight: normal;
	font-display: swap;
}

/*--------------------------------------------------
 * SELECTION
 */

::-webkit-selection {
	background: #00FF95; /* MINT */
	color: #101010; /* BLACKISH */
}

::-moz-selection {
	background: #00FF95; /* MINT */
	color: #101010; /* BLACKISH */
}

::selection {
	background: #00FF95; /* MINT */
	color: #101010; /* BLACKISH */
}

/*--------------------------------------------------
 * GENERAL
 */

body {
	margin: 0;
	font-family: "Avenir Book", sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: normal;
	line-height: 1.5;
	color: #101010; /* BLACKISH */

	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
}

/*---*/

a {
	color: #666;
	border-bottom: 2px solid #DADADA;
	text-decoration: none;
	outline: none;
	cursor: pointer;
}

a:hover {
	color: #101010; /* BLACKISH */
	border-bottom: 2px solid #DADADA;
	text-decoration: none;
	outline: none;
	cursor: pointer;
}

/*---*/

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 25px 0;
	padding: 0;
	font-family: "Avenir Medium", sans-serif;
	font-style: normal;
	font-weight: normal;
	color: #101010; /* BLACKISH */
}

		h1, h2, h3, h4, h5 {
			font-size: 160%; /* 32px */
			line-height: 1.2;
		}

		h6 {
			font-size: 130%; /* 26px */
			line-height: 1.3;
		}

	h1 a, h1 a:hover, h2 a, h2 a:hover, h3 a, h3 a:hover, h4 a, h4 a:hover, h5 a, h5 a:hover, h6 a, h6 a:hover {
		color: #101010; /* BLACKISH */
		border-bottom: 0;
	}

/*---*/

p {
	margin: 0 0 25px 0;
	padding: 0;
}

img {
	max-width: 100%;
	border: 0;
}

iframe {
	border: 0;
}

ul, ol {
	margin: 0;
	padding: 0 0 25px 25px;
}

ul li, ol li {
	margin: 0;
	padding: 0 0 0 25px;
}

/*--------------------------------------------------
 * STYLES
 */

.bold {
	font-family: "Avenir Medium", sans-serif;
}

.regular {
	font-weight: normal;
}

.italic {
	font-style: italic;
}

.underline {
	text-decoration: underline;
}

.strike_through {
	text-decoration: line-through;
}

/*---*/

.mint {
	color: #00FF95 !important;
}

.blackish {
	color: #101010 !important; /* BLACKISH */
}

.grey_dark {
	color: #666 !important;
}

.grey {
	color: #DADADA !important;
}

.grey_light {
	color: #EEE !important;
}

.white {
	color: #FFF !important;
}

/*---*/

.clear {
	margin: 0;
	padding: 0;
	clear: both;
}

.relative {
	position: relative;
}

.break_word {
	word-wrap: break-word;
}

.no_wrap {
	white-space: nowrap;
}

.display_none {
	display: none;
}

.left {
	float: left;
}

.right {
	float: right;
}

.text_left {
	text-align: left;
}

.text_center {
	text-align: center;
}

.text_right {
	text-align: right;
}

.percent_50 {
	width: 50%;
}

.no_margin {
	margin: 0 !important;
}

.no_margin_bottom {
	margin-bottom: 0 !important;
}

.no_padding_bottom {
	padding-bottom: 0 !important;
}

.margin_bottom_25 {
	margin-bottom: 25px !important;
}

.no_min_height {
	min-height: 0 !important;
}

/*--------------------------------------------------
 * CONTAINERS
 */



/*--------------------------------------------------
 * HEADER
 */

header {
	width: 100%;
	height: 200px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 50;
}

/*--------------------------------------------------
 * LOGO
 */

#logo {
	position: absolute;
	top: 50px;
	z-index: 60;
}

	#logo a, #logo a:hover {
		border-bottom: 0;
	}

/*---*/

#logo img {
	width: 234px;
	height: 50px;
	display: block;
}

/*--------------------------------------------------
 * SEARCH
 */

#search {
	position: absolute;
	z-index: 70;
}

	#search a, #search a:hover {
		border-bottom: 0;
	}

/*---*/

#search_img {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 71;
}

#search_img img {
	width: 50px;
	height: 50px;
	display: block;
}

/*---*/

#search_form {
	width: 100%;
	display: none; /* FLICKR ON REFRESH */
	position: absolute;
	top: 0;
	right: 0;
	z-index: 72;
}

/*---*/

.form_search {
	margin: 0;
}

.form_search_find {
	width: 100%;
	height: 50px;
	margin: 0;
	padding: 0 50px 0 15px;
	font-family: "Avenir Book", sans-serif;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	color: #101010; /* BLACKISH */
	border: 0;
	border-bottom: 2px solid #EEE; /* GREY LIGHT */
	background: #FFF;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

/*---*/

.form_search input:focus {
	border: 0;
	border-bottom: 2px solid #EEE; /* GREY LIGHT */
	background: #FFF;
	outline: none;
}

.form_search label.error {
	visibility: hidden;
}

/*---*/

.search_close {
}

	.search_close a {
		width: 50px;
		height: 50px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 73;
		border-bottom: 0;
	}

	.search_close a:hover {
	}

.search_close img {
	display: block;
}

/*--------------------------------------------------
 * NAV
 */

nav {
	position: relative;
}

/*---*/

#nav_img {
	position: fixed;
	z-index: 82;
	background: #00FF95; /* MINT */
}

	#nav_img a {
		border-bottom: 0;
	}

	#nav_img a:hover {
		border-bottom: 0;

		-webkit-opacity: 0.80;
		-moz-opacity: 0.80;
		-ms-opacity: 0.80;
		-o-opacity: 0.80;
		opacity: 0.80;
		filter: alpha(opacity=80);
	}

/*---*/

#nav_img img {
	width: 50px;
	height: 50px;
	display: block;
}

/*---*/

.nav_img_open {
}

.nav_img_close {
}

#nav_img img.nav_img_close {
	display: none; /* FLICKR ON REFRESH */
}

/*---*/

#nav_list {
	width: 100%;
	height: 100%;
	display: none; /* FLICKR ON REFRESH */
	position: fixed;
	left: 0;
	top: 0;
	z-index: 80;
	background: rgba(16, 16, 16, 0.75);
}

#nav_list_col {
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 81;
	background-image: url("../img/patterns/pattern_x_white_trans40.svg");
	background-repeat: repeat-x;
	background-size: 400px 400px;
	background-position: bottom center;
	background-color: #00FF95; /* MINT */
	text-align: right;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

/*---*/

#nav_list_col ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#nav_list_col ul li {
	padding: 0;
	display: block;
}

	#nav_list_col ul li a, #nav_list_col ul li a:hover {
		height: 50px;
		margin: 0;
		display: block;
	}

		#nav_list_col ul li a {
			color: #101010; /* BLACKISH */
			border-bottom: 0;
		}

		#nav_list_col ul li a:hover {
			color: #FFF; /* WHITE */
			border-bottom: 0;
		}

/*---*/

.nav_li_large {
	font-size: 160%; /* 32px */
	line-height: 1.2;
}

#nav_list_col ul li:nth-child(5) {
	margin-bottom: 50px;
}

#nav_list_col ul li:nth-child(6), #nav_list_col ul li:nth-child(7) {
	height: 40px !important;
}

/*--------------------------------------------------
 * MAIN
 */

main {
}

/*--------------------------------------------------
 * CONTENT
 */

.content {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

/*---*/

.content_text {
	margin: 0 auto;
}

/*---*/

.content_text_2_cols {
	margin-bottom: 25px;

}

.content_text_2_col {
	float: left;
}

.content_text_2_col:first-child {
}

.content_text_2_col p {
	margin-bottom: 0 !important;
}

.content_text_2_col_mobile_l, .content_text_2_col_mobile_r {
}

/*---*/

.content_quote_mint, .content_quote_white {
	font-family: "Avenir Medium", sans-serif;
	font-style: normal;
	font-weight: normal;
	background-repeat: repeat;
	background-size: 400px 400px;
	background-position: center center;
	text-align: center;
}

	.content_quote_mint {
		background-image: url("../img/patterns/pattern_white_trans40.svg");
		background-color: #00FF95; /* MINT */
	}

	.content_quote_white {
		background-image: url("../img/patterns/pattern_grey_light.svg");
		background-color: #FFF;
	}

/*---*/

.content_button, .content_button_border {
}

	a.content_button, a.content_button_border {
		height: 50px;
		margin: 0;
		padding: 9px 25px 0 25px;
		display: inline-block;

		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
	}

		a.content_button {
			color: #FFF;
			background: #2900DA; /* BLUE */
			border-bottom: 0;
		}

		a.content_button_border {
			color: #2900DA; /* BLUE */
			border: 2px solid #2900DA; /* BLUE */
		}

	a.content_button:hover, a.content_button_border:hover {
	}

		a.content_button:hover {
			color: #FFF;
			background: #101010; /* BLACKISH */
			border-bottom: 0;
		}

		a.content_button_border:hover {
			color: #FFF;
			background: #2900DA; /* BLUE */
			border: 2px solid #2900DA; /* BLUE */
		}

/*---*/

.content_platforms {
	margin: 0 auto 25px auto;
	text-align: center;
}

		.content_platforms a, .content_platforms a:hover {
			border-bottom: 0;
		}

.content_platform_logo {
	vertical-align: middle;
}

.content_filter_logo {
	height: 125px;
	margin: 0 auto 25px auto;
	display: block;
}

/*---*/

.content_space_15 {
	width: 100%;
	height: 15px;
}

.content_space_25 {
	width: 100%;
	height: 25px;
}

.content_space_50 {
	width: 100%;
	height: 50px;
}

.content_space_75 {
	width: 100%;
	height: 75px;
}

.content_space_100 {
	width: 100%;
	height: 100px;
}

.content_space_200 {
	width: 100%;
	height: 200px;
}

/*--------------------------------------------------
 * REVIEW
 */

.review_still {
	height: 100vh;
	position: relative;
}

.review_still_img {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 10;
	background-position: center center;
	background-repeat: no-repeat;

	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

/*---*/

.review_top {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 11;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

.review_top_contents {
	margin: 0 auto;
	position: relative;
	background: #FFF;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

.review_title {
}

.review_year {
	margin-bottom: 0;
	font-size: 70%; /* 14px */
	line-height: 1.8;
	color: #A3A3A3;
}

.review_grade {
	width: 50px;
	height: 50px;
	padding: 10px 0 0 0;
	right: 0;
	position: absolute;
	z-index: 12;
	color: #101010; /* BLACKISH */
	background: #00FF95; /* MINT */
	text-align: center;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

.review_poster {
	position: absolute;
	z-index: 13;
}

.review_poster img {
	display: block;
}

.review_trailer_button {
	position: absolute;
	z-index: 14;
}

	.review_trailer_button a, .review_trailer_button a:hover {
		border-bottom: 0;
	}

.review_trailer_button img {
	display: block;
	position: relative;
	top: 0;
	z-index: 15;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 100%;
}

.review_trailer_overlay {
	width: 100%;
	height: 100%;
	display: none; /* FLICKR ON REFRESH */
	position: fixed;
	top: 0;
	left: 0;
	z-index: 90;
	background: rgba(16, 16, 16, 0.75);
}

.review_trailer {
	position: absolute;
	z-index: 91;
	background-color: #101010; /* BLACKISH */

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

.review_trailer iframe {
	width: -webkit-calc(100% - 100px);
	width: -moz-calc(100% - 100px);
	width: -ms-calc(100% - 100px);
	width: -o-calc(100% - 100px);
	width: calc(100% - 100px);
	height: -webkit-calc(100% - 100px);
	height: -moz-calc(100% - 100px);
	height: -ms-calc(100% - 100px);
	height: -o-calc(100% - 100px);
	height: calc(100% - 100px);
	position: absolute;
	top: 50px;
	left: 50px;
	z-index: 92;
	border: 0;
}

.review_trailer_close {
}

	.review_trailer_close a {
		width: 50px;
		height: 50px;
		position: absolute;
		z-index: 93;
		border-bottom: 0;
	}

	.review_trailer_close a:hover {
	}

.review_trailer_close img {
	display: block;
}

.review_space {
	width: 100%;
}

/*---*/

.review_seen_date, .article_user_date {
}

	.review_seen_date a, .article_user_date a {
		color: #DADADA; /* GREY */
		border-bottom: 2px solid #DADADA;
	}

	.review_seen_date a:hover, .article_user_date a:hover {
		color: #A3A3A3;
		border-bottom: 2px solid #DADADA;
	}

/*---*/

.review_badge, .review_succession a {
	min-height: 30px;
	margin-right: 10px;
	margin-bottom: 10px !important;
	padding: 0 10px;
	float: left;
	display: inline-block;
	font-size: 70%; /* 14px */
	line-height: 1.8;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

		.review_badge {
			color: #00E787; /* MINT DARK */
			border: 2px solid #00E787; /* MINT DARK */
		}

		.review_succession a {
			color: #101010; /* BLACKISH */
			border: 2px solid #DADADA; /* GREY */
			white-space: nowrap;
		}

.review_succession {
	/* SEE ABOVE IN a-LINK */
}

	.review_succession a {
		/* SEE ABOVE */
	}

	.review_succession a:hover {
		color: #A3A3A3;
		border: 2px solid #DADADA; /* GREY */
	}

/*---*/

.review_info {
}

/*---*/

.review_info_plus_minus, .review_info_about, .review_info_helpful {
	float: left;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

		.review_info_plus_minus {
		}

		.review_info_about {
		}

	.review_info_about a {
		display: inline-block;
		margin: -5px 5px 10px 0;
		padding: 5px 10px;
		color: #101010;
		background: #EEE;
		border-bottom: 0;
		white-space: nowrap;
	}
	
	.review_info_about a:hover {
		color: #666;
		border-bottom: 0;
	}

		.review_info_helpful {
			position: relative;
		}

	.review_info_helpful a, .review_info_helpful a:hover {
		border-bottom: 0;
	}

/*---*/

.review_info_plus_minus_contents {
	position: relative;
}

.review_info_plus_minus_plus_img, .review_info_plus_minus_minus_img {
	width: 50px;
	height: 50px;
	position: absolute;
	top: -9px;
	left: -50px;
	z-index: 16;
}

		.review_info_plus_minus_plus_img {
			background: #00FF95; /* MINT */
		}
		
		.review_info_plus_minus_minus_img {
			background: #F53163; /* RED */
		}

.review_info_plus_minus_plus_img img, .review_info_plus_minus_minus_img img {
	display: block;
}

.review_info_plus_minus_text {
	padding: 0 0 0 25px;
}

/*---*/

.review_info_about_title {
	width: 75px;
	margin-bottom: 0;
	float: left;
}

.review_info_about_text {
	width: -webkit-calc(100% - 75px);
	width: -moz-calc(100% - 75px);
	width: -ms-calc(100% - 75px);
	width: -o-calc(100% - 75px);
	width: calc(100% - 75px);
	min-height: 45px;
	margin-bottom: 0;
	float: left;
}

.review_info_about_text_no_link {
	margin: 0 5px 15px 5px;
	display: inline-block;
}

/*---*/

.review_info_helpful_contents {
	position: relative;
}

.review_info_helpful_text {
	padding: 0 75px 0 0;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

.review_info_helpful_yes_img, .review_info_helpful_no_img {
}

	.review_info_helpful_yes_img a, .review_info_helpful_no_img a {
		width: 50px;
		height: 50px;
		position: absolute;
		top: -9px;
		z-index: 17;
	}

		.review_info_helpful_yes_img a {
			right: 0;
			background: #00FF95; /* MINT */
		}

		.review_info_helpful_no_img a {
			right: -50px;
			background: #F53163; /* RED */
		}

		.review_info_helpful_yes_img a.review_info_helpful_yes_inactive, .review_info_helpful_yes_img a.review_info_helpful_yes_inactive:hover, .review_info_helpful_no_img a.review_info_helpful_no_inactive, .review_info_helpful_no_img a.review_info_helpful_no_inactive:hover {
			background: #FFF;
			cursor: default;
		}

	.review_info_helpful_yes_img a:hover, .review_info_helpful_no_img a:hover {
		background: #101010; /* BLACKISH */
	}
	
	.review_info_helpful_yes_img a.review_info_helpful_yes_active:hover {
		background: #00FF95; /* MINT */
		cursor: default;
	}
	
	.review_info_helpful_no_img a.review_info_helpful_no_active:hover {
		background: #F53163; /* RED */
		cursor: default;
	}

.review_info_helpful_yes_img img, .review_info_helpful_no_img img {
	display: block;
}

/*---*/

.review_preview {
	margin-bottom: 25px;
	padding: 25px 0;
}

	.review_preview a, .review_preview a:hover {
		border-bottom: 0;
	}

.review_preview img {
	max-height: 100px;
	margin: auto;
	display: block;
}

/*---*/

.review_others {
	width: 100%;
	margin-bottom: 25px;
	background: #EEE; /* GREY LIGHT */

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

	.review_others a {
		color: #101010; /* BLACKISH */
		border-bottom: 0;
	}

	.review_others a:hover {
		color: #666; /* GREY DARK */
		border-bottom: 0;
	}

.review_others_contents {
	padding: 50px 100px 50px 50px;
	position: relative;
}

.review_others_quote {
	margin-bottom: 10px;
	display: inline-block;
	font-size: 130%; /* 26px */
	font-style: italic;
	line-height: 1.3;
}

.review_others_author {
}

.review_others_grade {
	width: 50px;
	height: 50px;
	padding: 10px 0 0 0;
	top: 43px;
	right: 0;
	position: absolute;
	z-index: 18;
	color: #101010; /* BLACKISH */
	background: #00FF95; /* MINT */
	text-align: center;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

/*--------------------------------------------------
 * USER
 */

.user_photo {
	margin: 10px 25px 25px 0;
	float: left;
}

/*---*/

.user_read_more_less_img {
	width: 50px;
	height: 50px;
	margin-top: 50px;
	padding: 0;
	position: relative;
	left: 50%;
}

.user_read_more_img_link, .user_read_less_img_link {
	width: 50px;
	height: 50px;
	display: block;
	position: relative;
	left: -50%;
	background-size: 100%;
}

		.user_read_more_img_link {
			background-image: url('/img/buttons/read_more_white.svg');
		}

		.user_read_less_img_link {
			background-image: url('/img/buttons/read_less_white.svg');
		}

	a.user_read_more_img_link, a.user_read_less_img_link {
		background-color: #2900DA; /* BLUE */
		border-bottom: 0;
	}

	a.user_read_more_img_link:hover, a.user_read_less_img_link:hover {
		background-color: #101010; /* BLACKISH */
		border-bottom: 0;
	}

/*---*/

.user_grades_grade {
	width: 5%;
	padding: 0 1px;
	float: left;
	font-size: 70%; /* 14px */
	line-height: 1.4; /* DEFAULT = 1.8 */

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

	.user_grades_grade:hover .user_grades_grade_tooltip {
		display: block;
	}

.user_grades_grade_bar {
	height: 100px;
	position: relative;
}

.user_grades_grade_bar_fill {
	width: 100%;
	min-height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: #00FF95; /* MINT */
}

	a .user_grades_grade_bar_fill {
		/*background: #00FF95; /* MINT */
	}

	a:hover .user_grades_grade_bar_fill {
		background: #00E787; /* MINT DARK */
	}

.user_grades_grade_numbers {
	width: 100%;
	position: relative;
	text-align: center;
}

.user_grades_grade_number_odd {
}

.user_grades_grade_tooltip {
	width: 50px;
	margin-top: 0;
	margin-left: -webkit-calc(50% - 25px);
	margin-left: -moz-calc(50% - 25px);
	margin-left: -ms-calc(50% - 25px);
	margin-left: -o-calc(50% - 25px);
	margin-left: calc(50% - 25px);
	padding: 5px 0;
	display: none;
	position: absolute;
	z-index: 1;
	color: #FFF;
	background: #101010; /* BLACKISH */
	text-align: center;
}

/*--------------------------------------------------
 * ABOUT
 */

.about_media {
	margin-bottom: 25px;
	text-align: center;
}

	.about_media a, .about_media a:hover {
		border-bottom: 0;
	}

.about_media img {
	width: 50px;
	height: 50px;
	margin: 0 10px;
	display: inline-block;
}

/*--------------------------------------------------
 * TICKER
 */

.ticker {
	height: 75px;
	padding-top: 16px;
	overflow: hidden;
	font-size: 160%; /* 32px */
	line-height: 1.2;
	color: #FFF;
	background: rgb(0, 255, 149, 1);
		background: linear-gradient(
			90deg, 
			rgba(0, 231, 135, 1) 0%, 
			rgba(0, 255, 149, 1) 50%, 
			rgba(34, 253, 162, 1) 100%
		);
	text-align: center;
	white-space: nowrap;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

	.ticker a, .ticker a:hover {
		color: #FFF;
		border-bottom: 0;
	}

/*---*/

.ticker p {
	margin: 0;
	padding: 0;
	display: inline-block;
	animation: marquee 40s linear infinite;
}

@keyframes marquee {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(-50%, 0);
	}
}

/*--------------------------------------------------
 * MOVIES / COLLECTIONS / USERS
 */

.movies, .collections, .users {
	margin-bottom: 50px;
}

	.movies a, .movies a:hover, .collections a, .collections a:hover, .users a, .users a:hover {
		border-bottom: 0;
	}

.movies img, .collections img, .users img {
	display: block;
}

/*---*/

.movies_movie, .collections_collection, .users_user {
	float: left;
	position: relative;
}

.movies_movie_title, .movies_movie_year, .movies_movie_info, .movies_movie_grade, .collections_collection_title, .users_user_title {
	position: absolute;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

		.movies_movie_title, .collections_collection_title, .users_user_title {
			width: -webkit-calc(100% - 125px);
			width: -moz-calc(100% - 125px);
			width: -ms-calc(100% - 125px);
			width: -o-calc(100% - 125px);
			width: calc(100% - 125px);
			margin-right: 75px;
			bottom: 60px;
			left: 50px;
			z-index: 43;
			color: #FFF;
		}

		.movies_movie_year {
			bottom: 30px;
			left: 50px;
			z-index: 44;
			font-size: 70%; /* 14px */
			line-height: 1.8;
			color: #DADADA;
		}

		.movies_movie_info {
			height: 30px;
			z-index: 42;
		}

		.movies_movie_grade {
			width: 50px;
			height: 50px;
			padding: 10px 0 0 0;
			right: 0;
			bottom: 50px;
			z-index: 45;
			color: #101010; /* BLACKISH */
			background: #00FF95; /* MINT */
			text-align: center;
		}

.movies_movie_with_content_below {
	position: relative;
}

.movies_movie_the_content_below {
	position: relative;
	padding: 50px 50px 25px 50px;
}

.movies_movie_with_content_clear_tablet, 
.movies_movie_with_content_clear_laptop, 
.movies_movie_with_content_clear_desktop {
}

.movies_movie img, .collections_collection img, .users_user img {
	width: 100%;
}

.movies_movie_info_badge {
	height: 30px;
	padding: 0 10px;
	float: right;
	font-size: 70%; /* 14px */
	line-height: 1.8;
	color: #00FF95; /* MINT */
	border: 2px solid #00FF95; /* MINT */

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

.movies_movie_info_special {
	width: 30px;
	height: 30px;
	margin-right: 10px;
	float: right;
}

/*---*/

.movies_quote {
	float: left;
	position: relative;
}

	.movies_quote a, .movies_quote a:hover {
		color: #101010; /* BLACKISH */
		border-bottom: 0;
	}

.movies_quote_contents {
	width: 100%;
	height: 100%;
	padding: 0 50px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 41;
	overflow: hidden;

	display: flex;
	align-items: center;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

.movies_quote_contents p {
	margin: 0 !important;
}

.movies_quote_quote {
	margin-bottom: 10px;
	display: inline-block;
	font-style: italic;
}

.movies_quote_author {
}

.movies_quote_icon {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 40;
}

/*---*/

.movies_movie_hide, .collections_collection_hide {
}

/*--------------------------------------------------
 * PAGINATION
 */

#pagination {
	height: 50px;
	min-height: 50px;
	max-height: 50px;
	margin: 0 0 100px 0;
	padding: 0 50px;
	position: relative;
	text-align: center;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

/*---*/

.pagination_results {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 15px;
	z-index: 30;
	font-family: "Avenir Book", sans-serif;
	font-size: 70%; /* 14px */
	font-style: normal;
	font-weight: normal;
	line-height: 1.8;
	color: #A3A3A3;
}

/*---*/

#pagination ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#pagination li {
	margin: 0;
	padding: 0;
	display: inline-block;
}

/*---*/

.pagination_prev, .pagination_prev_inactive, .pagination_next, .pagination_next_inactive {
}

	.pagination_prev a, .pagination_prev_inactive a, .pagination_next a, .pagination_next_inactive a {
		width: 50px;
		height: 50px;
		display: inline-block;
		border-bottom: 0;
		background-size: 50px 50px;
		background-repeat: no-repeat;
		vertical-align: middle;
	}

		.pagination_prev a, .pagination_prev a:hover {
			background: url("/img/buttons/pagination_prev_white.svg");
		}

			.pagination_prev a {
				background-color: #2900DA; /* BLUE */
			}

			.pagination_prev a:hover {
				background-color: #101010; /* BLACKISH */
			}

		.pagination_prev_inactive a, .pagination_prev_inactive a:hover {
			background: url("/img/buttons/pagination_prev_white.svg");
			background-color: #EEE; /* GREY LIGHT */
			cursor: default;
		}

		.pagination_next a, .pagination_next a:hover {
			background: url("/img/buttons/pagination_next_white.svg");
		}

			.pagination_next a {
				background-color: #2900DA; /* BLUE */
			}

			.pagination_next a:hover {
				background-color: #101010; /* BLACKISH */
			}

		.pagination_next_inactive a, .pagination_next_inactive a:hover {
			background: url("/img/buttons/pagination_next_white.svg");
			background-color: #EEE; /* GREY LIGHT */
			cursor: default;
		}

/*---*/

.pagination_page {
}

	.pagination_page a, .pagination_page a:hover {
		height: 50px;
		padding: 11px 10px 0 10px;
		display: inline-block;
		border-bottom: 0;
		text-align: center;
		vertical-align: middle;

		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
	}

		.pagination_page a {
			color: #A3A3A3;
		}

		.pagination_page a:hover {
			color: #101010; /* BLACKISH */
		}

.pagination_page_active {
}

	.pagination_page_active a {
		color: #2900DA; /* BLUE */
	}

	.pagination_page_active a:hover {
		color: #101010; /* BLACKISH */
	}

.pagination_page_inactive {
}

	.pagination_page_inactive a, .pagination_page_inactive a:hover {
		color: #A3A3A3;
	}

/*--------------------------------------------------
 * FOOTER
 */

footer {
	padding: 100px 0;
	border-top: 2px solid #EEE; /* GREY LIGHT */
}

/*---*/

#footer_logo {
	margin-bottom: 50px;
}

#footer_logo img {
	width: 234px;
	height: 50px;
	margin: 0 auto;
	display: block;
}

/*---*/

#footer_about_us {
	margin: 0 auto;
	text-align: center;
}

#footer_about_us p {
	margin-bottom: 50px !important;
}

/*---*/

#footer_socials {
	margin-bottom: 50px !important;
	text-align: center;
}

	#footer_socials a, #footer_socials a:hover {
		border-bottom: 0;
	}

#footer_socials img {
	width: 50px;
	height: 50px;
	margin-right: 5px;
	display: inline-block;
}

.footer_socials_last {
	margin-right: 0 !important;
}

/*---*/

#footer_legal {
	font-size: 70%; /* 14px */
	line-height: 1.8;
	text-align: center;
}

#footer_legal p {
	margin-bottom: 0 !important;
}

/*
 * End
 */