@charset "UTF-8";
/*********************************************
 * GLOBAL STYLES
 *********************************************/
:root {
  --r-background-color: #23394C;
  --r-main-font: Source Sans 3, sans-serif;
  --r-main-font-size: 40px;
  --r-main-color: #ffffff;
  --r-block-margin: 20px;
  --r-heading-margin: 0 0 20px 0;
  --r-heading-font: Ubuntu Mono, monospace;
  --r-heading-color: #D9B400;
  --r-heading-line-height: 1.2;
  --r-heading-letter-spacing: normal;
  --r-heading-text-transform: none;
  --r-heading-text-shadow: none;
  --r-heading-font-weight: 600;
  --r-heading1-text-shadow: none;
  --r-heading1-size: 3.77em;
  --r-heading2-size: 2.11em;
  --r-heading3-size: 1.55em;
  --r-heading4-size: 1em;
  --r-code-font: monospace;
  --r-link-color: #D9B400;
  --r-link-color-dark: rgb(184.45, 153, 0);
  --r-link-color-hover: #f0c800;
  --r-selection-background-color: #FF5E99;
  --r-selection-color: #fff;
  --r-overlay-element-bg-color: 240, 240, 240;
  --r-overlay-element-fg-color: 0, 0, 0;
}

.reveal-viewport {
  background: #23394C;
  background-color: var(--r-background-color);
}

.reveal {
  font-family: var(--r-main-font);
  font-size: var(--r-main-font-size);
  font-weight: normal;
  color: var(--r-main-color);
}

.reveal ::selection {
  color: var(--r-selection-color);
  background: var(--r-selection-background-color);
  text-shadow: none;
}

.reveal ::-moz-selection {
  color: var(--r-selection-color);
  background: var(--r-selection-background-color);
  text-shadow: none;
}

.reveal .slides section,
.reveal .slides section > section {
  line-height: 1.3;
  font-weight: inherit;
}

/*********************************************
 * HEADERS
 *********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
  margin: var(--r-heading-margin);
  color: var(--r-heading-color);
  font-family: var(--r-heading-font);
  font-weight: var(--r-heading-font-weight);
  line-height: var(--r-heading-line-height);
  letter-spacing: var(--r-heading-letter-spacing);
  text-transform: var(--r-heading-text-transform);
  text-shadow: var(--r-heading-text-shadow);
  word-wrap: break-word;
}

.reveal h1 {
  font-size: var(--r-heading1-size);
}

.reveal h2 {
  font-size: var(--r-heading2-size);
}

.reveal h3 {
  font-size: var(--r-heading3-size);
}

.reveal h4 {
  font-size: var(--r-heading4-size);
}

.reveal h1 {
  text-shadow: var(--r-heading1-text-shadow);
}

/*********************************************
 * OTHER
 *********************************************/
.reveal p {
  margin: var(--r-block-margin) 0;
  line-height: 1.3;
}

/* Remove trailing margins after titles */
.reveal h1:last-child,
.reveal h2:last-child,
.reveal h3:last-child,
.reveal h4:last-child,
.reveal h5:last-child,
.reveal h6:last-child {
  margin-bottom: 0;
}

/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
  max-width: 95%;
  max-height: 95%;
}

.reveal strong,
.reveal b {
  font-weight: bold;
}

.reveal em {
  font-style: italic;
}

.reveal ol,
.reveal dl,
.reveal ul {
  display: inline-block;
  text-align: left;
  margin: 0 0 0 1em;
}

.reveal ol {
  list-style-type: decimal;
}

.reveal ul {
  list-style-type: disc;
}

.reveal ul ul {
  list-style-type: square;
}

.reveal ul ul ul {
  list-style-type: circle;
}

.reveal ul ul,
.reveal ul ol,
.reveal ol ol,
.reveal ol ul {
  display: block;
  margin-left: 40px;
}

.reveal dt {
  font-weight: bold;
}

.reveal dd {
  margin-left: 40px;
}

.reveal blockquote {
  display: block;
  position: relative;
  width: 70%;
  margin: var(--r-block-margin) auto;
  padding: 5px;
  font-style: italic;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}

.reveal blockquote p:first-child,
.reveal blockquote p:last-child {
  display: inline-block;
}

.reveal q {
  font-style: italic;
}

.reveal pre {
  display: block;
  position: relative;
  width: 90%;
  margin: var(--r-block-margin) auto;
  text-align: left;
  font-size: 0.55em;
  font-family: var(--r-code-font);
  line-height: 1.2em;
  word-wrap: break-word;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.reveal code {
  font-family: var(--r-code-font);
  text-transform: none;
  tab-size: 2;
}

.reveal pre code {
  display: block;
  padding: 5px;
  overflow: auto;
  max-height: 400px;
  word-wrap: normal;
}

.reveal .code-wrapper {
  white-space: normal;
}

.reveal .code-wrapper code {
  white-space: pre;
}

.reveal table {
  margin: auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.reveal table th {
  font-weight: bold;
}

.reveal table th,
.reveal table td {
  text-align: left;
  padding: 0.2em 0.5em 0.2em 0.5em;
  border-bottom: 1px solid;
}

.reveal table th[align=center],
.reveal table td[align=center] {
  text-align: center;
}

.reveal table th[align=right],
.reveal table td[align=right] {
  text-align: right;
}

.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
  border-bottom: none;
}

.reveal sup {
  vertical-align: super;
  font-size: smaller;
}

.reveal sub {
  vertical-align: sub;
  font-size: smaller;
}

.reveal small {
  display: inline-block;
  font-size: 0.6em;
  line-height: 1.2em;
  vertical-align: top;
}

.reveal small * {
  vertical-align: top;
}

.reveal img {
  margin: var(--r-block-margin) 0;
}

/*********************************************
 * LINKS
 *********************************************/
.reveal a {
  color: var(--r-link-color);
  text-decoration: none;
  transition: color 0.15s ease;
}

.reveal a:hover {
  color: var(--r-link-color-hover);
  text-shadow: none;
  border: none;
}

.reveal .roll span:after {
  color: #fff;
  background: var(--r-link-color-dark);
}

/*********************************************
 * Frame helper
 *********************************************/
.reveal .r-frame {
  border: 4px solid var(--r-main-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.reveal a .r-frame {
  transition: all 0.15s linear;
}

.reveal a:hover .r-frame {
  border-color: var(--r-link-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
}

/*********************************************
 * NAVIGATION CONTROLS
 *********************************************/
.reveal .controls {
  color: var(--r-link-color);
}

/*********************************************
 * PROGRESS BAR
 *********************************************/
.reveal .progress {
  background: rgba(0, 0, 0, 0.2);
  color: var(--r-link-color);
}

/*********************************************
 * PRINT BACKGROUND
 *********************************************/
@media print {
  .backgrounds {
    background-color: var(--r-background-color);
  }
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #23394C;
}

.reveal,
.reveal .slides,
.reveal .slides > section {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  max-height: none !important;
  box-sizing: border-box;
}

.reveal .slides > section.stack {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  pointer-events: none !important;
  height: 100% !important;
  position: relative !important;
  overflow: hidden !important;
}

.reveal .slides > section > section {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transition: transform 0.8s ease !important;
  z-index: 1 !important;
}

.reveal .slides > section > section.past {
  transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0) !important;
}

.reveal .slides > section > section.future {
  transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0) !important;
}

.reveal .slides > section > section.present {
  transform: translate3d(0, 0, 0) !important;
  z-index: 11 !important;
  opacity: 1 !important;
}

.reveal .slides > section.past,
.reveal .slides > section.future,
.reveal .slides > section > section.past,
.reveal .slides > section > section.future {
  opacity: 0 !important;
}

.reveal .slides section.pdf-slide {
  position: relative;
  width: 100vw !important;
  height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  top: 0 !important;
}

.reveal .slide-background,
.reveal .slide-background-content,
.reveal .slide-background iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  display: block !important;
}

.watermark {
  position: fixed !important;
  z-index: 9997;
  pointer-events: none;
  user-select: none;
}
.watermark img {
  display: block;
  height: 72px;
  width: auto;
  opacity: 0.4;
}

.wm-br {
  bottom: 1.6rem;
  right: 2rem;
}

.wm-tr {
  top: 1.6rem;
  right: 2rem;
}

.wm-tl {
  top: 1.6rem;
  left: 2rem;
}

.wm-bl {
  bottom: 1.6rem;
  left: 2rem;
}

.wm-dark img {
  content: url("/assets/images/logo_dark_small_nobg.svg");
  opacity: 0.4;
}

.wm-light img {
  content: url("/assets/images/logo_light_small.svg");
  opacity: 0.58;
}

.wm-small img {
  height: 52px;
}

.wm-medium img {
  height: 72px;
}

.wm-large img {
  height: 108px;
}

.wm-hidden {
  display: none !important;
}

.wm-faint img {
  opacity: 0.22 !important;
}

.slide-content, .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(35, 57, 76, 0.75);
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  max-width: 600px;
  z-index: 10;
  margin: 0 !important;
}

.slide-overlay {
  font-size: 1.2rem;
}

.slide-overlay h2 {
  font-size: 2rem;
}

.slide-overlay p {
  font-size: 1rem;
}

.reveal section {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  top: 0 !important;
}

.reveal section:not(.pdf-slide) {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  height: 100vh !important;
  padding: 2rem !important;
  box-sizing: border-box !important;
}

.reveal .title {
  color: #D9B400 !important;
  font-size: 3rem !important;
  line-height: 1.15;
  margin: 0.4em 0 0.3em;
  max-width: 95%;
  text-align: center;
}

.reveal .author {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 1.45rem !important;
  margin: 1.2rem 0 0.5rem;
  text-align: center;
}

.reveal .date {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.25rem !important;
  margin: 0.3rem 0;
  text-align: center;
}

@media (max-width: 768px) {
  .reveal {
    font-size: 1.15em;
  }
  .reveal .title {
    font-size: 2.8rem !important;
  }
}
@media (max-width: 480px) {
  .reveal .title {
    font-size: 2.5rem !important;
  }
}
/* Hide scrollbars in ALL pdf.js viewer iframes — single and multi */
[data-background-iframe] iframe,
.pdf-viewer iframe {
  overflow: hidden !important;
}

iframe[src*="/assets/pdfviewer/viewer.php"] {
  overflow: hidden !important;
}

/* Also hide any browser scrollbar gutters */
iframe[src*="/assets/pdfviewer/"]::-webkit-scrollbar, iframe[src*="/assets/pdfviewer/"] *::-webkit-scrollbar {
  display: none !important;
}
iframe[src*="/assets/pdfviewer/"] {
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE/Edge */
}

/* Target the container inside viewer.php via iframe styling */
iframe[src*="/assets/pdfviewer/"] #container {
  overflow: hidden !important;
}

.slide-overlay {
  z-index: 999999 !important;
  isolation: isolate !important;
  contain: paint layout !important;
}

.title-panel {
  position: absolute !important;
  top: 20px !important; /* consistent spacing from top-left */
  left: 20px !important;
  background: rgb(26, 32, 44) !important;
  padding: 34px 40px !important;
  border-radius: 14px !important;
  box-shadow: 0 26px 75px rgba(0, 0, 0, 0.8), inset 0 2px 0 rgba(255, 255, 255, 0.1) !important;
  border-left: 8px solid #D9B400 !important;
  max-width: 720px !important;
  z-index: 999999 !important;
}

.title-panel h2 {
  color: #D9B400 !important;
  font-family: "Ubuntu Mono", monospace !important; /* Ubuntu Mono – exact match */
  font-size: 2.45rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.75px !important;
  line-height: 1.1 !important;
  margin-bottom: 0.4em !important;
}

.title-panel p {
  color: rgba(255, 255, 255, 0.92) !important;
  font-family: "Source Sans 3", sans-serif !important; /* Source Sans 3 – exact match */
  font-size: 1.22rem !important;
}

/*# sourceMappingURL=neumayr-ltd.css.map */
