.modal__overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(168, 153, 104, 0.8);
}

.modal__overlay.active {
    display: block;
  }

.modal {
  position: absolute;
  width: 90%;
  max-height: 90%;
  max-width: 832px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  background-color: var(--color-white);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  background-color: var(--color-red);
}

.modal__header h2 {
	color: var(--color-white);
	font-size: 1.25rem;
	padding: 18px 40px;
	margin-bottom: 0;
}

.modal__header button {
	font-size: 2rem;
	padding-top: 8px;
	min-width: 80px;
	font-weight: 300;
}

.modal__content {
	color: var(--color-dark);
	padding: 40px 65px;
}

.modal__content h3 {
	font-size: 1.5625rem;
	font-weight: 500;
}

.modal__content h4 {
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	margin: 35px 0;	
}

.modal__content p {
	font-size: 1rem;
}

.modal__content ol {
	font-size: 1rem;
	font-weight: 300;
	margin: 35px 0 0 15px;
}

.modal__content li {
	padding-left: 5px;
	line-height: 1.5625;
}

.modal__hr {
	margin: 50px 0 25px;
	border-color: var(--color-red);
}