/* POPUP */

#popup .popup-window{
	padding: 30px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
	max-width: 1200px;
	width: 100%;
	background: #fff;
	box-shadow: 0 4px 4px 0 rgba(0,0,0,0.33);
	z-index: 10005;
	height: 100%;
	text-align: center;
    box-sizing: border-box;
}
#popup{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0, 0.33);
	z-index: 10000;
}
#popup i{
	position: absolute; top: -5px;
	right: -5px;
	cursor: pointer;
	padding: 20px;
}
@media only screen and (max-width: 1265px) {
#popup .popup-window{
    height: 300px;
		
	}
}





