<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Variables */
/* Mixens: */
.cr-request-form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  /* Additions for Quality Requirements Section */
  /* Additions for Quality Requirements Section */
  /* Custom Pop Up */
}
.cr-request-form fieldset {
  margin-bottom: 20px;
  border: 1px solid #ccc;
  padding: 10px;
}
.cr-request-form legend {
  font-weight: bold;
}
.cr-request-form .form-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 8px;
  flex-wrap: wrap;
}
.cr-request-form .form-group label {
  flex: 0 0 180px;
  /* Fixed width for labels */
  text-align: right;
}
.cr-request-form .form-group input,
.cr-request-form .form-group select {
  flex: 1;
  max-width: 400px;
}
.cr-request-form form button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}
.cr-request-form .required {
  color: red;
}
.cr-request-form .notice {
  color: #007bff;
  font-style: italic;
}
.cr-request-form .checkbox-and-comment {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cr-request-form .checkbox-group {
  display: inline-block;
}
.cr-request-form .checkbox-group label {
  flex: 0 0 180px;
  /* Fixed width for labels */
  text-align: right;
}
.cr-request-form #otherDocsCommentContainer {
  margin-top: 8px;
}
.cr-request-form textarea {
  width: 100%;
  max-width: 400px;
  padding: 8px;
  box-sizing: border-box;
  margin-top: 8px;
}
.cr-request-form .form-group textarea {
  flex: 1;
  max-width: 400px;
}
.cr-request-form .form-group input[type=file] {
  flex: 1;
  max-width: 400px;
}
.cr-request-form .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 20%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.cr-request-form .modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.cr-request-form .modal-content h2 {
  margin-top: 0;
  font-size: 20px;
  color: #333;
}
.cr-request-form .modal-content p {
  margin-bottom: 20px;
}
.cr-request-form .close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.cr-request-form .close:hover {
  color: #000;
}
.cr-request-form #modal-ok-btn {
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.cr-request-form #modal-ok-btn:hover {
  background-color: #0056b3;
}</pre></body></html>