/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1010; /* Sit on top */
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding-top: 100px; /* Location of the box */
	width: 100%; /* Full width */
	max-width: 100%;
	height: 100%; /* Full height */
	max-height: 100%;
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	font-family: Arial;
}

/* Modal Content */
.modal-content {
	position: relative;
	background-color: #fefefe;
	margin: auto;
	width: 40%;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	border-radius: 11px 11px 11px 11px;
	animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
	from {top:-300px; opacity:0} 
	to {top:0; opacity:1}
}

@keyframes animatetop {
	from {top:-300px; opacity:0}
	to {top:0; opacity:1}
}

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

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

.modal-header {
	padding: 2px 16px;
	background-color: #5d802c;
	color: white;
	border-radius: 10px 10px 0px 0px;
}

.modal-body {
	padding: 2px 16px;
}

.modal-footer {
	padding: 2px 16px;
	background-color: #5d802c;
	color: white;
	border-radius: 0px 0px 10px 10px;
}


/* List */

ul.list {
  list-style: none;
  display: table;
}

ul.list li {
	display: grid;
	grid-template-columns: 0 1fr;
	gap: 1.00em;
	align-items: start;
	font-size: 1.1rem;
	line-height: 1.25;
	font-family: Arial;
  }

ul.list li::before {
	content: "*";
	/* Make slightly larger than the li font-size
	but smaller than the li gap */
	font-size: 1.25em;
  }

ul.list li a {
	color: #000;
}

ul.list li a:visited {
	color: #000;
}

ul.list li a {
	color: #18272F;
  	position: relative;
  	text-decoration: none;
  }
  
  ul.list li a::before {
	  content: '';
	  position: absolute;
	  width: 100%;
	  height: 4px;
	  border-radius: 4px;
	  background-color: #18272F;
	  bottom: 0;
	  left: 0;
	  transform-origin: right;
	  transform: scaleX(0);
	  transition: transform .3s ease-in-out;
	}
  
ul.list li a:hover::before {
	transform-origin: left;
	transform: scaleX(1);
  }