/******* Do not edit this file *******
Code Snippets Manager
Saved: Aug 11 2025 | 20:54:56 */
@charset "UTF-8";
/* Overlay */
.exturl-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Shaded background */
  z-index: 9999;
}
/* Flex wrapper to center modal */
.exturl-modal-flex-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  pointer-events: none;
}
/* Background click target */
.exturl-modal-close-modal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}
/* Modal window */
.exturl-modal-window {
  position: relative;
  background: #fff;
  border-radius: 6px;
  width: 90%;
  max-width: 500px;
  padding: 30px 20px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  pointer-events: auto;
}
.modal-header-pre-heading {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  margin: 0px 0px 3px 0px;
}
/* Close button (×) */
.exturl-close-modal {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}
