/* index.css */
.popup-container {
	display: none;
	position: fixed;
	border-radius: 10px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(0, 0, 0, 0.0);
	padding: 10px;
	border: none;
	color: #fff;
	z-index: 999;
	font-family: 'Titillium Web', sans-serif;
	font-stretch: extra-condensed;
	width: 80%;
	max-width: 650px;
}

.popup-container img {
	max-width: 100%;
	/* Hace que la imagen no exceda el ancho del contenedor */
	height: auto; /* Mantiene la proporción de la imagen */
	border-radius: 10px;
}

.backscreen {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 998;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 40px;
	cursor: pointer;
	color: #020000;
	font-family: 'Titillium Web', sans-serif;
	font-stretch: extra-condensed;
	padding: 20px;
	margin-right: 10px;
	font-weight: 1000;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
	.popup-container {
		width: 70%;
	}
}

#noMostrarCheckbox {
	margin-left: 25px;
}

#x-button{
	position: static;	
	margin-left:85%;
	color:white;
}