@import url("https://fonts.googleapis.com/css2?family=Sunflower:wght@300;500;700&&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
#abc-gl-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark background */
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 1050; /* Make sure it appears on top of the complaints modal */
  /* Modal content */
}
#abc-gl-modal .modal-content {
  display: flex;
  flex-direction: column;
  background: white;
  width: 80%;
  max-width: 800px;
  height: 90vh;
  border-radius: 12px;
  padding: 24px;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-sizing: border-box;
  overflow: hidden;
}
#abc-gl-modal .modal-content .panel-title-container {
  flex-shrink: 0;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
#abc-gl-modal .modal-content .panel-title-container .panel-title .title-text {
  font-family: "Sunflower";
  font-weight: 700;
  color: #004b93;
  font-size: 30px;
  user-select: none;
}
#abc-gl-modal .modal-content .panel-title-container .panel-title .title-underline-container {
  height: 3px;
  padding: 0px 16px;
  box-sizing: border-box;
}
#abc-gl-modal .modal-content .panel-title-container .panel-title .title-underline-container .title-underline {
  background-color: #fe0000;
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
#abc-gl-modal .modal-content .abc-gl-content {
  flex: 1;
  overflow-y: auto;
  padding: 10px 18px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: rgba(226, 226, 226, 0.4);
  border-radius: 10px;
}
#abc-gl-modal .modal-content .abc-gl-content p {
  font-family: "DM Sans", sans-serif;
  font-weight: normal;
  color: rgba(37, 37, 37, 0.6);
  font-size: 14px;
  text-indent: 20px;
}
#abc-gl-modal .modal-content .abc-gl-content ul, #abc-gl-modal .modal-content .abc-gl-content ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#abc-gl-modal .modal-content .abc-gl-content ul li, #abc-gl-modal .modal-content .abc-gl-content ol li {
  font-family: "DM Sans", sans-serif;
  font-weight: normal;
  color: rgba(37, 37, 37, 0.6);
  font-size: 14px;
}
#abc-gl-modal .modal-content .modal-actions {
  flex-shrink: 0;
  text-align: right;
  background: white;
  display: flex;
  justify-content: center;
  gap: 10px;
}
#abc-gl-modal .modal-content .modal-actions .cancel-btn {
  display: flex;
  padding: 10px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: white;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #004b93;
  border: 0;
  transition: 0.2s;
  width: fit-content;
}
#abc-gl-modal .modal-content .modal-actions .cancel-btn:hover, #abc-gl-modal .modal-content .modal-actions .cancel-btn:active {
  transform: scale(1.05);
  background-color: #e2e2e2;
  color: #00396e;
  text-decoration: underline;
}
#abc-gl-modal {
  /* When the modal appears (enlarging effect) */
}
#abc-gl-modal .modal-appear {
  opacity: 1;
  transform: scale(1);
}
#abc-gl-modal {
  /* When the modal disappears (shrinking effect) */
}
#abc-gl-modal .modal-disappear {
  opacity: 0;
  transform: scale(0.8);
}/*# sourceMappingURL=abc-gl-modal.css.map */