.popup-image-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	z-index: 9999;
	justify-content: center;
	align-items: center;
}

.popup-image-container {
	position: absolute;
	max-width: 80%;
	max-height: 80%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.popup-image-container img {	
	height: auto;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.popup-image-close {
	position: absolute;
	top: -10px;
	right: -10px;
	background: #fff;
	color: #000;
	font-size: 30px;
	line-height: 28px;
	width: 30px;
	height: 30px;
	text-align: center;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

@media (max-width: 1055px) {
    .popup-image-container {
        position: relative;
        max-width: 95%;
        max-height: 95%;
    }
}