 /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0%;
  top: 10%;
  width: 100%; /* Full width */
  height: 80%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(255,255,255,0); /* Black w/ opacity */
  border-radius: 25px;
  /* overflow: hidden; /* To hide the scroll bar */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: auto auto; /* 15% from the top and centered */
  padding: 20px;
  border-radius: 25px;
  border: 3px solid #10424F;
  width: 80%; /* Could be more or less, depending on screen size */
}


 /* The Modal (background) */
.modal2 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0%;
  top: 10%;
  width: 100%; /* Full width */
  height: 80%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(255,255,255,0.95); /* Black w/ opacity */
  
}

/* Modal Content/Box */
.modal2-content {
  background-color: #fefefe;
  margin: 10% auto; /* 15% from the top and centered */
  padding: 20px;
  /* border: 1px solid #888; */
  width: 80%; /* Could be more or less, depending on screen size */
  border-radius: 25px;
}

/* The Modal (background) */
.modal3 {
  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: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(16,66,79,0.80); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal3-content {
  background-color: #fefefe;
  margin: 2.5% auto; /* 15% from the top and centered */
  padding: 5%;
  /* border: 1px solid #888; */
  width: 80%; /* Could be more or less, depending on screen size */
  border-radius: 25px;
}

.close-button {
	float: right;
	width: 2rem;
	line-height: 2rem;
	text-align: center;
	cursor: pointer;
	border-radius: 30px;
	background-color: #eeeeee;
}
.close-button:hover {
	background-color: #adadad;
}
