.row {
	position: relative;
	color: #fff;
}
.row-container > .row:first-child {
	margin-top: -120px;
}
.row > h2 {
	margin-left: 20px;
}
.row__posters {
	display: flex;
	overflow-y: hidden;
	overflow-x: scroll;
	padding: 20px;
}
.row__posters::-webkit-scrollbar {
	display: none;
}
.row__poster {
	object-fit: cover;
	width: 100%;
	max-height: 100px;
	transition: transform 450ms;
}

.noTrailer {
	margin: 0 0 20px 0;
	text-align: center;
	padding: 50px;
	background-color: #1b1b1b;
}
.noTrailer h2 {
	color: #525252;
}
.movie-data {
	width: 100%;
	opacity: 0;
	transform: translateY(100%);
	position: absolute;
	padding: 25px;
	bottom: 0;
	left: 0;
	margin-top: 10px;
	z-index: 2;
	transition: 0.2s transform ease-out;
	transition-delay: 0.2s;
}
.movie-data:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 150px;
	background-image: linear-gradient(
		180deg,
		transparent,
		rgba(37, 37, 37, 0.61),
		#111
	);
	bottom: 0;
	left: 0;
	z-index: -1;
}
.movie-item {
	flex: 0 0 315px;
	max-width: 315px;
	margin-right: 10px;
	position: relative;
	transition: all 0.2s ease-in-out;
	overflow: hidden;
}
.row__posterLarge {
	max-height: 470px;
	min-height: 470px;
}
.movie-data h3 {
	font-size: 27px;
	margin-bottom: 10px;
	text-align: left;
}
.movie-data p {
	font-size: 16px;
	margin-bottom: 15px;
}
.movie-rating {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: goldenrod;
	padding: 5px 5px;
	border-radius: 5px;
	font-weight: bold;
	font-size: 14px;
	line-height: 1;
	z-index: 1;
}
.movie-item-big {
	flex: 0 0 50vw;
	max-width: 50vw;
}
.movie-item-big {
}
.movie-item-big .movie-data {
	opacity: 1;
	transform: none;
}
iframe {
	height: 600px;
}
.error {
	font-size: 14px;
	color: red;
	margin-top: 8px;
}
@media (max-width: 768px) {
	.movie-item {
		flex: 0 0 240px;
		max-width: 240px;
	}
	.row__posterLarge {
		max-height: 350px;
		min-height: 350px;
	}
	.movie-item-big {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.movie-data:after {
		height: 250px;
	}
	iframe {
		height: 350px;
	}
	.row-container > .row:first-child {
		margin-top: 0;
	}
}
