/* //////////////// Modal ///////////////// */

.modal {
	display: none;
	position: fixed;
	z-index: 10;
	padding-top: 150px;
	left:  0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.9);
}


.modal-content, #caption {
	animation-name: zoom;
	animation-duration: 0.5s;
	margin: auto;
	display: block;
	width: 75%;
	max-width: 850px;

}

.modal-content .vertical {
	max-width: 300px;
}

.modal-content {
	object-fit: cover;
}

#caption {
	margin: auto;
	display: block;
	width: 100%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
	height: 150px;
}

@keyframes zoom {
	from {transform: scale(0.0);}
	to { transform: scale(1.0); }
}

.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: var(--claro_01);
	font-size: 2.2em;
	font-weight: bold;
	transition: 0.35s ease;
}

.close:hover, .close:focus {
	color: var(--medio_02);
	text-decoration: none;
	cursor: pointer;
}