<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* public/css/modal.css */
/* The Modal (background) */
.preview-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 50px; /* 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;
  padding: 20px;
  border: 1px solid #888;
  width: 60%; /* You might want to increase this if your content is not wide enough */
  max-height: 80vh; /* It will occupy maximum 80% of viewport height */
  overflow-y: auto; /* Enable vertical scroll if needed */
}

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

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

.draggable-hidden {
  display: none;
}
.drag-handle-hidden {
  display: none;
}

.in-modal {
  outline: none;
}
.form-element.in-modal {
  border: none;
}

.form-element.in-modal::before {
  content: "";
}
.drag-handle.hide-before::before {
  content: "";
}

/* Style for the title when it is inside the modal */
.form-elements-title.in-modal {
  /* Your styles here, for example: */
  display: block;
  font-size: 18px;
  font-weight: bold;
}
/* Mobile */
@media (max-width: 480px) {
  .modal-content {
    width: 100%;
  }
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.form-preview-container {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Black background with opacity */
  z-index: 1; /* Ensure it sits on top of other content */
}

.content-window {
  background-color: #ffffff;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 70%; /* You can adjust this */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.dismiss {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.dismiss:hover,
.dismiss:focus {
  color: #000;
  cursor: pointer;
}
/* for the registration disclaimer  modal*/
.disclaimer-content {
  text-align: left;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 0.9em;
  overflow-y: auto;
  max-height: 300px;
}
@media (max-height: 1100px) {
  .disclaimer-content {
    max-height: 400px; /* New max height for screens 780px or less */
  }
}

.disclaimer-content h5 {
  font-weight: bold;
  margin-top: 20px;
}

.disclaimer-content strong {
  font-weight: bold;
}

.disclaimer-modal {
  display: none;
  border: 1px solid #ccc;
  padding: 20px;
  background-color: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  flex-direction: row; /* You might need this for correct layout, assuming you want to use Flexbox */
  width: 70%; /* adjust as needed */
  max-width: 800px; /* setting a max width so it doesn't get too large on wide screens */
  height: auto; /* automatically adjust height based on content */
  min-height: 400px; /* adjust as needed */
}

.disclaimer-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 70%; /* You might want to increase this if your content is not wide enough */
  max-height: 80vh; /* It will occupy maximum 80% of viewport height */
  overflow-y: auto; /* Enable vertical scroll if needed */
}

.disclaimer-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999;
  display: none;
}
</pre></body></html>