/*64px max*/
/*48px max*/
/*24px max*/
/*20px max*/
/*16px max*/
/* class that we can add and remove with JavaScript to avoid 2 scroller when modal is open*/
body.modal-open {
  overflow-y: hidden; /* This hides the scrollbar */
  position: fixed; /* Add this line */
  width: 100%; /* Add this line to ensure the body still takes up the full width */
}

/* Modal container */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2; /* 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: #fefefe;
  margin: 50px auto; /* 15% from the top and centered */
  padding: 40px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  max-width: 800px;
  border-radius: 8px;
  position: relative;
}

/* Optional: Add a smooth scrollbar for better aesthetics */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 4px;
}

/* The Close Button */
.close-btn-1, .close-btn-2 {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
}

.close-btn-1:hover, .close-btn-2:hover,
.close-btn-1:focus, .close-btn-2:focus {
  color: black;
  text-decoration: none;
}

/* Styling for the content within the modal */
/* Spacing for headings */
.modal-content h2,
.modal-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16px;
}

/* Spacing for paragraphs */
.modal-content p {
  line-height: 1.4;
  margin-bottom: 15px;
}
@media (max-width: 39.9375em) {
  .modal-content p {
    line-height: 1.2;
  }
}

/* Style the horizontal rule */
.modal-content hr {
  border: 0;
  height: 1px;
  background: #ccc;
  margin: 30px 0;
}

/* Styling for lists */
.modal-content ul,
.modal-content ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

.modal-content ul li {
  list-style-type: disc; /* This will display solid round bullets */
}

.modal-content ul li,
.modal-content ol li {
  margin-bottom: 10px;
}

/* Style for the link at the bottom */
.modal-content a {
  color: #007bff;
  text-decoration: none;
}

.modal-content a:hover {
  text-decoration: underline;
}

.modal strong {
  font-weight: 600;
}

/*# sourceMappingURL=modal.css.map */
