@charset "UTF-8";
/* CSS Document */
.modal-open-button {
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
  opacity: 0;
  transition: opacity 0.5s, scale 0s 0.5s;
  scale: 0;
}

.modal:target {
  opacity: 1;
  transition: opacity 0.5s;
  scale: 1;
}

.close {
	background: #336633;
	border-radius: 50%;
	color: #fff;
	display: block;
	height: 20px;
	right: 10px;
	top: 10px;
	line-height: 20px;
	text-align: center;
	position: absolute;
	width: 20px;
}

.modal-wrapper {
  position: relative;
  width: 80%;
  max-width: 800px;
  max-height: 80%;
  padding: 20px;
  margin: auto;
  overflow: scroll;
  background-color: #FEFEFE;
  border-radius: 5px;
}

.modal-content h3 {
  font-size: 1rem;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}

.modal-content ul li {
   text-indent: -1em;
   padding-left: 1em;
   font-size: 0.85rem;
   line-height: 1.8em;
}