/* Estilos para el carrusel */
.image-gallery img {
	width: 100%;
	cursor: pointer;
}

/* Estilos para el modal */
.image-modal {
	display: none;
	position: fixed;
	z-index: 999;
	padding-top: 60px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.9);
}

.image-modal .modal-content {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
}

.image-modal .close-modal {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
	cursor: pointer;
}

.image-modal .close-modal:hover,
.image-modal .close-modal:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}