
.clickable-media {
	cursor: pointer;
}

.close-icon {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
	cursor: pointer;
	z-index: 6;
}

.centered-media {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); /* THIS WILL MAKE THE IMAGE BLURRY SOMETIMES BECAUSE IT WILL BE RENDERED ON HALF A PIXEL */
	backface-visibility: hidden;
}


/* The Modal (background) */
.img-modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 5; /* Sit on top */
	/*padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: hidden; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.close:hover, .close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}