.modalPrompt {
	background-color: var(--color-shade);
	border-radius: var(--border-radius);
	text-align: center;
	padding:1.4285714285714286rem 1rem 1.9523809523809523rem 1rem;
	margin-top: 1.5238095238095237rem;
	margin-bottom: 1.2857142857142858rem;
}

.modalPrompt h3 {
	color:var(--color-accent);
	margin:0 0 1.15rem 0;
	font-size:1.5238095238095237rem;
	line-height: 1.26;
}


/*Modal */

 /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  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.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 4rem auto; /* 4rem from the top and centered */
  padding: 1rem;
  width: 94%; /* Could be more or less, depending on screen size */
  max-width: 46rem;
}

.modal-content img {
  display: block;
  width:100%;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

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