
.gallery_iframe_container{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.iframe_container{
	display: inline-block;
	position: relative;	
	width: 480px;
	height: 392px;
	margin: 0 5px 5px 0;
	overflow: hidden;
}
			
.url_to_page {
	width: 1200px;
	height: 980px;
	border: 1px solid gray;
	-webkit-transform:scale(.40);
	-ms-transform:scale(.40);
	transform:scale(.40);
	-webkit-transform-origin:0 0;
	-ms-transform-origin:0 0;
	transform-origin:0 0;
}

.bloccaclick{
	width: 480px;
	height: 392px;
	position: absolute;
	z-index: 999;
}

.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);	
	border: 16px solid #f3f3f3;
	border-top: 16px solid #3498db;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 2s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.modal {
	position: fixed;
	width: 90vw;
	height: 90vh;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	background-color: #fff;
	padding: 1px;
	border: 1px solid #ccc;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	display: none;
}
.modal iframe {
	width: 100%;
	height: 100%;
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 999;
	display: none;
	cursor: pointer;
}
.close-button {
	position: fixed;
	top: 0px;
	right: 0px;
	display: flex;
	align-items: center;
	justify-content: center;	
	cursor: pointer;
	z-index: 1000;
	width: 30px;
	height: 30px;
	padding: 5px;	
	background-color: #333;
	color:#fff;
}
.close-button:hover {
	background-color: #111;
	color:#ddd;
}