/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding: 5% 5% 5% 5%;
  /* Location of the box */
  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(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto auto auto auto;
  padding: 20px;
  border: 1px solid #888;
  max-width: 90%;
  max-height: 100%;
}

/* The Close Button */
.close-modal {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}


.html-content-wrapper {
  max-height: 70%;
  /* overflow-y: scroll; */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  margin: 25px;
}

#agreement-html {
  max-width: 70%;
  align-self: center;
}

#accept-agreement {
  margin: 0 5px 30px 5px;
}

#accept-agreement+label {
  display: inline-block;
}