/* scss/settings/_breakpoints.scss */ /* scss/utilities/_functions.scss */
/*
    .cssClass {
        font-size: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(20), rem-calc(50));
        margin-bottom: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(10), rem-calc(20));
    }

*/
/* scss/utilities/_mixins.scss */ /* xsmall = 10 (1 - 11)
small = 13 - (12-14)
default = 16 (15-18)
medium = 20 (18-26)
large = 32 (26-36)
xlarge = 40 (36 <) */
/* ---------- headers ---------- */
/* ---------- medium fonts: 20 (18-26) ---------- */
/* ---------- default fonts: 16 (15-18) ---------- */
/* ---------- small fonts: 13 - (12-14) ---------- */
/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
.frame {
  margin-bottom: 6.25rem;
}

.seoText {
  margin-top: 6.25rem;
}

.frame-space-after-none {
  margin-bottom: 0;
}

.frame-space-after-small {
  margin-bottom: 3.125rem;
}

.frame-space-after-medium {
  margin-bottom: 6.25rem;
}

.frame-space-after-large {
  margin-bottom: 9.375rem;
}

body {
  scroll-behavior: smooth;
}

.no-transitions,
.no-transitions * {
  transition: none !important;
  animation: none !important;
}

/* scss/utilities/_functions.scss */
/*
    .cssClass {
        font-size: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(20), rem-calc(50));
        margin-bottom: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(10), rem-calc(20));
    }

*/
/* scss/utilities/_mixins.scss */ /* xsmall = 10 (1 - 11)
small = 13 - (12-14)
default = 16 (15-18)
medium = 20 (18-26)
large = 32 (26-36)
xlarge = 40 (36 <) */
/* ---------- headers ---------- */
/* ---------- medium fonts: 20 (18-26) ---------- */
/* ---------- default fonts: 16 (15-18) ---------- */
/* ---------- small fonts: 13 - (12-14) ---------- */
/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
.tx-pdfviewer {
  text-align: center;
}

.tx-pdfviewer-show {
  display: inline-grid;
  gap: 1rem;
  margin-inline: auto;
  grid-template-columns: 1fr 3fr;
  grid-template-areas: "download download" "meta meta" "pdfview pdfview" "navigation navigation";
}
@media only screen and (min-width: 1200px) {
  .tx-pdfviewer-show {
    grid-template-areas: "download meta" "navigation pdfview";
  }
}
.tx-pdfviewer-show > a {
  position: absolute;
}
.tx-pdfviewer-show .download-button {
  grid-area: download;
}
.tx-pdfviewer-show .download-button a {
  display: inline-flex;
  gap: 0.75rem;
  justify-content: space-between;
  padding: 0.75rem;
}
.tx-pdfviewer-show canvas {
  grid-area: pdfview;
  margin: auto;
}
.tx-pdfviewer-show #pdf-viewer-preview {
  grid-area: navigation;
}
.tx-pdfviewer-show .navigation {
  grid-area: meta;
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.tx-pdfviewer-show .pagecounter {
  text-align: center;
}
.tx-pdfviewer-show a.pdf-viewer-preview-item {
  position: relative;
  transition: transform 350ms ease-out;
  margin: 0;
  padding: 0;
  border: none;
}
.tx-pdfviewer-show a.pdf-viewer-preview-item:hover {
  transform: scale(1.1);
}
.tx-pdfviewer-show a.pdf-viewer-preview-item:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 12px 12px;
  border-color: transparent transparent #FF0027 transparent;
  transform: translate(50%, 100%);
  position: absolute;
  right: 50%;
  top: 0;
  z-index: -1;
  transition: transform 350ms ease-out;
}
@media only screen and (min-width: 1200px) {
  .tx-pdfviewer-show a.pdf-viewer-preview-item:after {
    border-width: 12.5px 0 12.5px 21.7px;
    border-color: transparent transparent transparent #FF0027;
    transform: translate(0, -50%);
    right: 0;
    top: 50%;
  }
}
.tx-pdfviewer-show a.pdf-viewer-preview-item.-active canvas {
  outline: 2px solid #FF0027;
}
.tx-pdfviewer-show a.pdf-viewer-preview-item.-active:after {
  transform: translate(50%, -100%);
}
@media only screen and (min-width: 1200px) {
  .tx-pdfviewer-show a.pdf-viewer-preview-item.-active:after {
    transform: translate(100%, -50%);
  }
}
.tx-pdfviewer-show a.pdf-viewer-preview-item span {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: #FF0027;
  padding: 5px;
  width: 1.875rem;
  aspect-ratio: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tx-pdfviewer-show #the-canvas {
  opacity: 1;
  transition: opacity 250ms ease-out;
}
.tx-pdfviewer-show #the-canvas.-loading {
  opacity: 0;
}
.tx-pdfviewer-show .navigation a {
  border: none;
}

.pdf-viewer-swiper {
  grid-area: navigation;
  display: grid;
  place-items: center center;
  margin-top: 1rem;
}
@media only screen and (min-width: 1200px) {
  .pdf-viewer-swiper {
    margin-top: 0;
  }
}

#pdf-viewer-preview {
  align-items: center;
  gap: 1rem;
}

/*# sourceMappingURL=pdfViewer.css.map */