#popup-poster {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999999;
    background: rgba(14, 14, 14, 0.7);
	padding: 50px;
	box-sizing: border-box;
}
#popup-poster_close_btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0;
    background: url(../images/UI_icons/white/close.svg) center no-repeat;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
#popup-poster_inner {
    height: 100%;
    width: 100%;
    position: relative;
}
#popup-poster img {
    max-width: 100%;
    max-height: 100%;
    cursor: pointer;
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}


@media only screen and (max-width: 1200px) {
	
	#popup-poster_close_btn {
	    font-size: 30px;
	}
}

@media only screen and (max-width: 500px) {
	
	#popup-poster {
	    padding: 50px 20px 20px 20px;
	}
	#popup-poster_close_btn {
		font-size: 30px;
	}
}