h1{
	margin-top: 0;
}
.grid{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	flex-direction: row;
	margin-top: 30px;
}
.grid-item{
	position: relative;
	display: flex;
	width: 400px;
	flex-direction: column;
	margin-bottom: 15px;
	cursor: pointer;
}
.grid-item>img{
	max-width: 100%;
}
.grid-item-inner{
	position: absolute;
	padding: 15px 15px;
	background: rgba(0,0,0,0.25);
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
.grid-item-inner:hover{
	background: rgba(0,0,0,0);
}
.grid-item-inner > .title{
	text-transform: uppercase;
	color: white;
	font-weight: bold;
	font-size: 22px;
}
.grid-item-inner > .slogan{
	position: absolute;
	margin: auto;
	color: white;
	font-size: 14px;
	top: 50%;
	width: calc(100% - 30px);
	text-align: center;
}
.grid-item-inner > .rating_imdb{
	position: absolute;
	text-transform: uppercase;
	color: white;
	font-weight: bold;
	font-size: 22px;
	bottom: 15px;
	left: 15px;
}
.grid-item-inner > .rating_kinopoisk{
	position: absolute;
	text-transform: uppercase;
	color: white;
	font-weight: bold;
	font-size: 22px;
	bottom: 15px;
	right: 15px;
}
#nofilm-popup{
	padding: 0;
	position: fixed;
    z-index: 10;
    margin: auto;
    width: 600px;
	height: 400px;
    left: 50%;
    margin-left: -300px;
    top: 50%;
    margin-top: -200px;
}
#nofilm-popup .close{
	font-size: 18px;
    text-decoration: underline;
	color: white;
	position: absolute;
    right: 20px;
    top: 15px;
	cursor: pointer;
	padding-right: 20px;
}
#nofilm-popup .close:before, #nofilm-popup .close:after{
    position: absolute;
    right: 0;
    content: ' ';
    height: 20px;
    width: 2px;
    background-color: white;
}
#nofilm-popup .close:before{
	transform: rotate(45deg);
}
#nofilm-popup .close:after{
	transform: rotate(-45deg);
}
@media (max-width: 600px){
	#nofilm-popup{
		width: 90%;
		left: 50%;
		margin-left: -45%;
		height: auto;
		top: 50px;
		margin-top: 0;
	}
	#nofilm-popup img{
		max-width: 100%;
	}
}