
.img-btn-modal{
	pointer-events: none;
}


@media only screen and (min-width: 768px){
	.img-btn-modal{
		pointer-events: auto;
	}
	
	/* The Modal (background) */
	.modal {
		background: rgba(0,0,0,0.8);
		display: none;
		height: 100%;
		left: 0;
		overflow: auto;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 1;
	}

	/* Modal Content/Box */
	.modal-content {
		display: flex;
		margin: calc(50% - 100px) auto; /* 15% from the top and centered */
		width: 80%;
		border-radius:5px;
		background-color:  rgba(240,240,240,0.4);
		padding: 1em;
	}


	/* The Close Button */
	.close {
		background: #606061;
		color: #FFFFFF;
		position: absolute;
		right: 1px;
		text-align: center;
		top: 1px;
		width: 24px;
		text-decoration: none;
		font-weight: bold;
		border-radius:3px;
	}

	.close:hover,
	.close:focus {
		color: black;
		text-decoration: none;
		cursor: pointer;
	}
}

@media only screen and (min-width: 1024px){
	.modal-content {
		margin: 5% auto; 
		width: 60%;
	}
}