.item_popup {
	width: 100%;
	cursor: pointer;
	z-index:10000;
	background: rgb(0,102,102,0);
	color: white;
	text-align: center;
	position: absolute;
	display:none;
	font-family: 'Roboto';
	height:100%;
	touch-action: none;

}

.item_source {
    position: fixed;
    top: 0px; right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
	touch-action: none;
	border: none;
	z-index:999;
}
			
.item_popup .item_close_popup_window {
	position: absolute;
	z-index: 10000;
	top: 10px;
	right: 10px;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	display:block;
	cursor: pointer;
}
			
.item_popup .item_close_popup_window:hover {
	transform: scale(1.17, 1.17);
}
