 /* 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: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.4); /*  Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: rgb(196,212,224);  /* #C7F6B6; #fefefe; */
  margin: 3% auto; /* 5% from the top and centered */
  padding: 10px;
  border: 2px solid black;
  width: 25%; /* Could be more or less, depending on screen size */
}

 .modal-content ul {
  list-style-type: none;
  padding-left: 2px;
 }
 
 .modal-content li:not(:last-child) {
    margin-bottom: 5px;
}

 .modal-content h2 {
	text-align: center;
	margin-top: 2px;
	font-family: Roboto;
	font-weight: 600;
	font-size: 1.5rem;
 }


/* The Close Button */
.close {
  color: black;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
} 

.buttonHolder{ 
	 text-align: center; 
}

/* .buttonHolder button */

#sendBtn {
	font-family: Anton;
	font-weight: 300;
	font-size: 1.1rem;	
    width: 7em;  
	height: 2em;
	letter-spacing: .1rem;
	color: black;
	cursor:pointer;
	background-color: RGB (72, 209, 204); /*  #fefefe;  */
	
	border:2px solid black;
    -webkit-border-radius: 5px;
    border-radius: 5px;
	padding:2px;
	margin-top: 5px;
}

 .required:before {
    content:"*";
    color: red;
  }

