@charset "UTF-8";
/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/* Base spacer variables with CSS custom properties */
:root {
  --spacer-xs: 8px;
  --spacer-sm: 16px;
  --spacer-md: 24px;
  --spacer-lg: 32px;
  --spacer-xl: 40px;
  --spacer-2xl: 40px;
  --spacer-3xl: 40px;
  --spacer-4xl: 40px;
  --spacer-5xl: 40px;
  --spacer-6xl: 40px;
  --spacer-7xl: 40px;
  --spacer-8xl: 40px;
  --spacer-9xl: 40px;
}

/* Tablet overrides */
@media (min-width: 577px) {
  :root {
    --spacer-xs: 16px;
    --spacer-sm: 24px;
    --spacer-md: 32px;
    --spacer-lg: 40px;
    --spacer-xl: 48px;
    --spacer-2xl: 48px;
    --spacer-3xl: 48px;
    --spacer-4xl: 48px;
    --spacer-5xl: 48px;
    --spacer-6xl: 48px;
    --spacer-7xl: 48px;
    --spacer-8xl: 48px;
    --spacer-9xl: 48px;
  }
}
/* Desktop overrides */
@media (min-width: 992px) {
  :root {
    --spacer-xs: 4px;
    --spacer-sm: 8px;
    --spacer-md: 16px;
    --spacer-lg: 24px;
    --spacer-xl: 32px;
    --spacer-2xl: 40px;
    --spacer-3xl: 48px;
    --spacer-4xl: 56px;
    --spacer-5xl: 64px;
    --spacer-6xl: 72px;
    --spacer-7xl: 80px;
    --spacer-8xl: 88px;
    --spacer-9xl: 96px;
  }
}
/* TYPOGRAPHY */
body {
  word-break: break-word;
}

:root,
[data-bs-theme=light] {
  --bs-blue: #016DA3;
  --bs-indigo: #6610f2;
  --bs-purple: #613d7c;
  --bs-pink: #e83e8c;
  --bs-red: #C61508;
  --bs-orange: #D93E12;
  --bs-yellow: #F8BE17;
  --bs-green: #477615;
  --bs-teal: #20c997;
  --bs-cyan: #9954bb;
  --bs-black: #1A1A1A;
  --bs-white: #fff;
  --bs-gray: #868e96;
  --bs-gray-dark: #373a3c;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #868e96;
  --bs-gray-700: #495057;
  --bs-gray-800: #373a3c;
  --bs-gray-900: #212529;
  --bs-primary: #016DA3;
  --bs-secondary: #016DA3;
  --bs-tertiary: #fff;
  --bs-blue: #016DA3;
  --bs-orange: #D93E12;
  --bs-green: #477615;
  --bs-success: #477615;
  --bs-info: #016DA3;
  --bs-warning: #A05908;
  --bs-danger: #C61508;
  --bs-light: #f8f9fa;
  --bs-dark: #373a3c;
  --bs-primary-rgb: 1, 109, 163;
  --bs-secondary-rgb: 1, 109, 163;
  --bs-tertiary-rgb: 255, 255, 255;
  --bs-blue-rgb: 1, 109, 163;
  --bs-orange-rgb: 217, 62, 18;
  --bs-green-rgb: 71, 118, 21;
  --bs-success-rgb: 71, 118, 21;
  --bs-info-rgb: 1, 109, 163;
  --bs-warning-rgb: 160, 89, 8;
  --bs-danger-rgb: 198, 21, 8;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 55, 58, 60;
  --bs-primary-text-emphasis: rgb(0.4, 43.6, 65.2);
  --bs-secondary-text-emphasis: rgb(0.4, 43.6, 65.2);
  --bs-success-text-emphasis: rgb(28.4, 47.2, 8.4);
  --bs-info-text-emphasis: rgb(0.4, 43.6, 65.2);
  --bs-warning-text-emphasis: rgb(64, 35.6, 3.2);
  --bs-danger-text-emphasis: rgb(79.2, 8.4, 3.2);
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: rgb(204.2, 225.8, 236.6);
  --bs-secondary-bg-subtle: rgb(204.2, 225.8, 236.6);
  --bs-success-bg-subtle: rgb(218.2, 227.6, 208.2);
  --bs-info-bg-subtle: rgb(204.2, 225.8, 236.6);
  --bs-warning-bg-subtle: rgb(236, 221.8, 205.6);
  --bs-danger-bg-subtle: rgb(243.6, 208.2, 205.6);
  --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: rgb(153.4, 196.6, 218.2);
  --bs-secondary-border-subtle: rgb(153.4, 196.6, 218.2);
  --bs-success-border-subtle: rgb(181.4, 200.2, 161.4);
  --bs-info-border-subtle: rgb(153.4, 196.6, 218.2);
  --bs-warning-border-subtle: rgb(217, 188.6, 156.2);
  --bs-danger-border-subtle: rgb(232.2, 161.4, 156.2);
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 26, 26, 26;
  --bs-font-sans-serif: roboto, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: sfmono-regular, menlo, monaco, consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #1A1A1A;
  --bs-body-color-rgb: 26, 26, 26;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #1A1A1A;
  --bs-emphasis-color-rgb: 26, 26, 26;
  --bs-secondary-color: rgba(26, 26, 26, 0.75);
  --bs-secondary-color-rgb: 26, 26, 26;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(26, 26, 26, 0.5);
  --bs-tertiary-color-rgb: 26, 26, 26;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #016DA3;
  --bs-link-color-rgb: 1, 109, 163;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #00496D;
  --bs-link-hover-color-rgb: 0, 73, 109;
  --bs-code-color: #e83e8c;
  --bs-highlight-color: #1A1A1A;
  --bs-highlight-bg: rgb(253.6, 242, 208.6);
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(26, 26, 26, 0.175);
  --bs-border-radius: 0.25rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0px 1px 8px 0px rgba(9, 30, 66, 0.1607843137);
  --bs-box-shadow-sm: 0px 1px 8px 0px rgba(9, 30, 66, 0.1607843137);
  --bs-box-shadow-lg: 0px 4px 12px 0px rgba(9, 30, 66, 0.1215686275);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(1, 109, 163, 0.25);
  --bs-form-valid-color: #477615;
  --bs-form-valid-border-color: #477615;
  --bs-form-invalid-color: #C61508;
  --bs-form-invalid-border-color: #C61508;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #373a3c;
  --bs-secondary-bg-rgb: 55, 58, 60;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: rgb(44, 47.5, 50.5);
  --bs-tertiary-bg-rgb: 44, 48, 51;
  --bs-primary-text-emphasis: rgb(102.6, 167.4, 199.8);
  --bs-secondary-text-emphasis: rgb(102.6, 167.4, 199.8);
  --bs-success-text-emphasis: rgb(144.6, 172.8, 114.6);
  --bs-info-text-emphasis: rgb(102.6, 167.4, 199.8);
  --bs-warning-text-emphasis: rgb(198, 155.4, 106.8);
  --bs-danger-text-emphasis: rgb(220.8, 114.6, 106.8);
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: rgb(0.2, 21.8, 32.6);
  --bs-secondary-bg-subtle: rgb(0.2, 21.8, 32.6);
  --bs-success-bg-subtle: rgb(14.2, 23.6, 4.2);
  --bs-info-bg-subtle: rgb(0.2, 21.8, 32.6);
  --bs-warning-bg-subtle: rgb(32, 17.8, 1.6);
  --bs-danger-bg-subtle: rgb(39.6, 4.2, 1.6);
  --bs-light-bg-subtle: #373a3c;
  --bs-dark-bg-subtle: rgb(40.5, 42, 43);
  --bs-primary-border-subtle: rgb(0.6, 65.4, 97.8);
  --bs-secondary-border-subtle: rgb(0.6, 65.4, 97.8);
  --bs-success-border-subtle: rgb(42.6, 70.8, 12.6);
  --bs-info-border-subtle: rgb(0.6, 65.4, 97.8);
  --bs-warning-border-subtle: rgb(96, 53.4, 4.8);
  --bs-danger-border-subtle: rgb(118.8, 12.6, 4.8);
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #373a3c;
  --bs-heading-color: inherit;
  --bs-link-color: rgb(102.6, 167.4, 199.8);
  --bs-link-hover-color: rgb(133.08, 184.92, 210.84);
  --bs-link-color-rgb: 103, 167, 200;
  --bs-link-hover-color-rgb: 133, 185, 211;
  --bs-code-color: rgb(241.2, 139.2, 186);
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: rgb(99.2, 76, 9.2);
  --bs-border-color: #373a3c;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: rgb(144.6, 172.8, 114.6);
  --bs-form-valid-border-color: rgb(144.6, 172.8, 114.6);
  --bs-form-invalid-color: rgb(220.8, 114.6, 106.8);
  --bs-form-invalid-border-color: rgb(220.8, 114.6, 106.8);
}

/* -----------------------------------------------------------------------------
  TYPOGRAPHY UTILITIES (custom Bootstrap extensions)

  We extend Bootstrap utilities with a custom typographic system 
  based on design tokens (font-size, line-height, font-family).

  ──────────────────────────────
  1. FONT SIZES
  ──────────────────────────────
  Class prefix: `.fs-*`
  Responsive: ✅ (e.g. `.fs-md-h1`, `.fs-lg-d1`)

  Available values:
    .fs-d1   → $font-size-d1
    .fs-d2   → $font-size-d2
    .fs-h1   → $font-size-h1
    .fs-h2   → $font-size-h2
    .fs-h3   → $font-size-h3
    .fs-h4   → $font-size-h4
    .fs-s1   → $font-size-s1
    .fs-s2   → $font-size-s2
    .fs-b    → $font-size-b
    .fs-c    → $font-size-c
    .fs-cm   → $font-size-cm

  Example:
    <h1 class="fs-h1">Heading</h1>
    <p class="fs-s2 fs-lg-s1">Responsive text</p>

  ──────────────────────────────
  2. LINE HEIGHTS
  ──────────────────────────────
  Class prefix: `.lh-*`
  Responsive: ❌ (fixed only)

  Available values:
    .lh-d1   → $line-height-d1
    .lh-h1   → $line-height-h1
    .lh-s2   → $line-height-s2
    ... etc.

  Example:
    <p class="lh-s2">Compact text line-height</p>

  ──────────────────────────────
  3. FONT FAMILIES
  ──────────────────────────────
  Class prefix: `.ff-*`
  Responsive: ❌ (fixed only)

  Available values:
    .ff-regular    → $font-family-regular
    .ff-extrabold  → $font-family-extrabold

  Example:
    <span class="ff-extrabold">Strong title</span>

  ──────────────────────────────
  Notes:
  - These utilities are generated via $utilities map extension.
  - They complement (but don’t replace) Bootstrap’s built-in `.h1...h6` 
    and `.display-*` classes.
  - Use `.fs-*` + `.lh-*` + `.ff-*` combos to fully control typography.
----------------------------------------------------------------------------- */
.box-shadow {
  box-shadow: 0px 1px 8px 0px rgba(9, 30, 66, 0.1607843137);
}

.box-shadow-lg {
  box-shadow: 0px 4px 12px 0px rgba(9, 30, 66, 0.1215686275);
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-sm {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 1rem;
}

.rounded-circle {
  border-radius: 50%;
}

.font-family-regular {
  font-family: roboto, sans-serif;
}

.line-height-sm {
  line-height: 1.25;
}

.line-height-base {
  line-height: 1.5;
}

.line-height-lg {
  line-height: 2;
}

[class*=display-] {
  line-height: 1.5;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  line-height: 1.5;
  font-family: poppins, sans-serif;
}

h1,
.h1 {
  font-size: 4rem;
}

h2,
.h2 {
  font-size: 3rem;
}

h3,
.h3 {
  font-size: 2.5rem;
}

h4,
.h4 {
  font-size: 2rem;
}

h5,
.h5 {
  font-size: 1.5rem;
}

h6,
.h6 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 2em;
}

.font-size-xs {
  font-size: 0.75rem;
}

.font-size-sm {
  font-size: 0.875rem;
}

.font-size-lg {
  font-size: 1.25rem;
}

.font-size-xl {
  font-size: 1.5rem;
}

.font-size-xxl {
  font-size: 2rem;
}

.highlight-pill, .highlight-pill--subtle {
  border-width: 0.0625em;
  border-style: solid;
  border-color: #D1D1D1;
  border-radius: 200px;
  padding: 0.25rem 0.5rem;
}
.highlight-pill--subtle {
  border-color: #6A6A6A;
}
.highlight-pill--blue {
  border: none;
  background-color: #E0F3FE;
  color: #016DA3;
}
.highlight-pill--blue a {
  color: #016DA3;
}
.highlight-pill--blue-transparent {
  background-color: transparent;
  color: #016DA3;
  border: 1px solid;
  border-color: #016DA3;
}
.highlight-pill--blue-transparent a {
  color: #016DA3;
}
.highlight-pill--grey {
  border: none;
  background-color: #F0F0F0;
  color: #6A6A6A;
}
.highlight-pill--grey a {
  color: #6A6A6A;
}

.label-pill {
  display: inline;
  font-size: 0.75rem;
  padding: 4px;
  background-color: #FFF1E9;
  color: #D93E12;
  border-radius: 1rem;
  padding: 4px 16px;
}

.text-black {
  color: #2D2D2D !important;
}

.visible-lg-up {
  display: none;
}
@media (min-width: 992px) {
  .visible-lg-up {
    display: block !important;
  }
}

.hidden-lg-up {
  display: block;
}
@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important;
  }
}

.btn, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrow-custom.splide__arrow-custom, .splide--optionset--carousel-highlight-documents .splide__arrow,
.splide--optionset--carousel-highlight-documents .splide__arrow__custom, .splide .splide__arrow-custom, .more-link a {
  margin: 0.25rem;
  font-family: roboto, roboto, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
}
.btn.disabled, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .disabled.splide__arrow-custom, .splide--optionset--carousel-highlight-documents .disabled.splide__arrow,
.splide--optionset--carousel-highlight-documents .disabled.splide__arrow__custom, .splide .disabled.splide__arrow-custom, .more-link a.disabled {
  color: #e9ecef !important;
  border-color: transparent !important;
}
.btn.btn-primary, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .btn-primary.splide__arrow-custom, .splide--optionset--carousel-highlight-documents .btn-primary.splide__arrow,
.splide--optionset--carousel-highlight-documents .btn-primary.splide__arrow__custom, .splide .btn-primary.splide__arrow-custom, .more-link a.btn-primary {
  background-color: #016DA3 !important;
  border-color: #016DA3 !important;
  color: #fff !important;
}
.btn.btn-primary:hover, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .btn-primary.splide__arrow-custom:hover, .splide--optionset--carousel-highlight-documents .btn-primary.splide__arrow:hover,
.splide--optionset--carousel-highlight-documents .btn-primary.splide__arrow__custom:hover, .splide .btn-primary.splide__arrow-custom:hover, .more-link a.btn-primary:hover, .btn.btn-primary:focus, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .btn-primary.splide__arrow-custom:focus, .splide--optionset--carousel-highlight-documents .btn-primary.splide__arrow:focus,
.splide--optionset--carousel-highlight-documents .btn-primary.splide__arrow__custom:focus, .splide .btn-primary.splide__arrow-custom:focus, .more-link a.btn-primary:focus {
  background-color: #015C89 !important;
  color: #fff !important;
  border-color: #015C89 !important;
}
.btn.btn-primary:active, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .btn-primary.splide__arrow-custom:active, .splide--optionset--carousel-highlight-documents .btn-primary.splide__arrow:active,
.splide--optionset--carousel-highlight-documents .btn-primary.splide__arrow__custom:active, .splide .btn-primary.splide__arrow-custom:active, .more-link a.btn-primary:active {
  background-color: #015C89 !important;
  color: #fff !important;
  border-color: #00496D !important;
  border-width: 2px !important;
}
.btn.btn-primary.disabled, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .btn-primary.disabled.splide__arrow-custom, .splide--optionset--carousel-highlight-documents .btn-primary.disabled.splide__arrow,
.splide--optionset--carousel-highlight-documents .btn-primary.disabled.splide__arrow__custom, .splide .btn-primary.disabled.splide__arrow-custom, .more-link a.btn-primary.disabled {
  background-color: #E4E4E4 !important;
  color: #9A9A9A !important;
  border-color: #E4E4E4 !important;
}
.btn.btn-outline-primary, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .btn-outline-primary.splide__arrow-custom, .more-link a, .btn.btn-secondary, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .btn.splide__arrow-custom, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .btn-secondary.splide__arrow-custom, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrow-custom, .splide--optionset--carousel-highlight-documents .splide__arrow,
.splide--optionset--carousel-highlight-documents .splide__arrow__custom, .splide .splide__arrow-custom {
  background-color: #fff;
  color: #016DA3;
  border-color: #016DA3;
}
.btn.btn-outline-primary:hover, .more-link a:hover, .btn.btn-secondary:hover, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrow-custom:hover, .splide--optionset--carousel-highlight-documents .splide__arrow:hover,
.splide--optionset--carousel-highlight-documents .splide__arrow__custom:hover, .splide .splide__arrow-custom:hover {
  background-color: #EFF9FF;
  color: #016DA3;
  border-color: #016DA3;
}
.btn.btn-outline-primary:active, .more-link a:active, .btn.btn-outline-primary:focus, .more-link a:focus, .btn.btn-outline-primary:focus-visible, .more-link a:focus-visible, .btn.btn-secondary:active, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrow-custom:active, .splide--optionset--carousel-highlight-documents .splide__arrow:active,
.splide--optionset--carousel-highlight-documents .splide__arrow__custom:active, .splide .splide__arrow-custom:active, .btn.btn-secondary:focus, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrow-custom:focus, .splide--optionset--carousel-highlight-documents .splide__arrow:focus,
.splide--optionset--carousel-highlight-documents .splide__arrow__custom:focus, .splide .splide__arrow-custom:focus, .btn.btn-secondary:focus-visible, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrow-custom:focus-visible, .splide--optionset--carousel-highlight-documents .splide__arrow:focus-visible,
.splide--optionset--carousel-highlight-documents .splide__arrow__custom:focus-visible, .splide .splide__arrow-custom:focus-visible {
  background-color: #E0F3FE;
  color: #00496D;
  border-color: #00496D;
}
.btn.btn-outline-primary:focus, .more-link a:focus, .btn.btn-outline-primary:focus-visible, .more-link a:focus-visible, .btn.btn-secondary:focus, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrow-custom:focus, .splide--optionset--carousel-highlight-documents .splide__arrow:focus,
.splide--optionset--carousel-highlight-documents .splide__arrow__custom:focus, .splide .splide__arrow-custom:focus, .btn.btn-secondary:focus-visible, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrow-custom:focus-visible, .splide--optionset--carousel-highlight-documents .splide__arrow:focus-visible,
.splide--optionset--carousel-highlight-documents .splide__arrow__custom:focus-visible, .splide .splide__arrow-custom:focus-visible {
  box-shadow: 0px 0px 0px 2px #fff, 0px 0px 0px 4px #e8a50a;
}
.btn.btn-outline-primary.disabled, .more-link a.disabled, .btn.btn-outline-primary:disabled, .more-link a:disabled, .btn.btn-secondary.disabled, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .disabled.splide__arrow-custom, .splide--optionset--carousel-highlight-documents .disabled.splide__arrow,
.splide--optionset--carousel-highlight-documents .disabled.splide__arrow__custom, .splide .disabled.splide__arrow-custom, .btn.btn-secondary:disabled, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrow-custom:disabled, .splide--optionset--carousel-highlight-documents .splide__arrow:disabled,
.splide--optionset--carousel-highlight-documents .splide__arrow__custom:disabled, .splide .splide__arrow-custom:disabled {
  background-color: #F8F8F8;
  color: #9A9A9A;
  border-color: #9A9A9A;
}
.btn.btn-link, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .btn-link.splide__arrow-custom, .splide--optionset--carousel-highlight-documents .btn-link.splide__arrow,
.splide--optionset--carousel-highlight-documents .btn-link.splide__arrow__custom, .splide .btn-link.splide__arrow-custom, .more-link a.btn-link {
  padding: 0;
  margin: 0;
}

.container,
.container-fluid,
.container-xxxl,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 992px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 833px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1280px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1440px;
  }
}
.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  max-width: 1920px;
}

:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents {
  flex: 1 0 0;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

.g-6,
.gx-6 {
  --bs-gutter-x: 4.5rem;
}

.g-6,
.gy-6 {
  --bs-gutter-y: 4.5rem;
}

.g-xs,
.gx-xs {
  --bs-gutter-x: var(--spacer-xs);
}

.g-xs,
.gy-xs {
  --bs-gutter-y: var(--spacer-xs);
}

.g-sm,
.gx-sm {
  --bs-gutter-x: var(--spacer-sm);
}

.g-sm,
.gy-sm {
  --bs-gutter-y: var(--spacer-sm);
}

.g-md,
.gx-md {
  --bs-gutter-x: var(--spacer-md);
}

.g-md,
.gy-md {
  --bs-gutter-y: var(--spacer-md);
}

.g-lg,
.gx-lg {
  --bs-gutter-x: var(--spacer-lg);
}

.g-lg,
.gy-lg {
  --bs-gutter-y: var(--spacer-lg);
}

.g-xl,
.gx-xl {
  --bs-gutter-x: var(--spacer-xl);
}

.g-xl,
.gy-xl {
  --bs-gutter-y: var(--spacer-xl);
}

.g-2xl,
.gx-2xl {
  --bs-gutter-x: var(--spacer-2xl);
}

.g-2xl,
.gy-2xl {
  --bs-gutter-y: var(--spacer-2xl);
}

.g-3xl,
.gx-3xl {
  --bs-gutter-x: var(--spacer-3xl);
}

.g-3xl,
.gy-3xl {
  --bs-gutter-y: var(--spacer-3xl);
}

.g-4xl,
.gx-4xl {
  --bs-gutter-x: var(--spacer-4xl);
}

.g-4xl,
.gy-4xl {
  --bs-gutter-y: var(--spacer-4xl);
}

.g-5xl,
.gx-5xl {
  --bs-gutter-x: var(--spacer-5xl);
}

.g-5xl,
.gy-5xl {
  --bs-gutter-y: var(--spacer-5xl);
}

.g-6xl,
.gx-6xl {
  --bs-gutter-x: var(--spacer-6xl);
}

.g-6xl,
.gy-6xl {
  --bs-gutter-y: var(--spacer-6xl);
}

.g-7xl,
.gx-7xl {
  --bs-gutter-x: var(--spacer-7xl);
}

.g-7xl,
.gy-7xl {
  --bs-gutter-y: var(--spacer-7xl);
}

.g-8xl,
.gx-8xl {
  --bs-gutter-x: var(--spacer-8xl);
}

.g-8xl,
.gy-8xl {
  --bs-gutter-y: var(--spacer-8xl);
}

.g-9xl,
.gx-9xl {
  --bs-gutter-x: var(--spacer-9xl);
}

.g-9xl,
.gy-9xl {
  --bs-gutter-y: var(--spacer-9xl);
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
  .g-sm-6,
  .gx-sm-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bs-gutter-y: 4.5rem;
  }
  .g-sm-xs,
  .gx-sm-xs {
    --bs-gutter-x: var(--spacer-xs);
  }
  .g-sm-xs,
  .gy-sm-xs {
    --bs-gutter-y: var(--spacer-xs);
  }
  .g-sm-sm,
  .gx-sm-sm {
    --bs-gutter-x: var(--spacer-sm);
  }
  .g-sm-sm,
  .gy-sm-sm {
    --bs-gutter-y: var(--spacer-sm);
  }
  .g-sm-md,
  .gx-sm-md {
    --bs-gutter-x: var(--spacer-md);
  }
  .g-sm-md,
  .gy-sm-md {
    --bs-gutter-y: var(--spacer-md);
  }
  .g-sm-lg,
  .gx-sm-lg {
    --bs-gutter-x: var(--spacer-lg);
  }
  .g-sm-lg,
  .gy-sm-lg {
    --bs-gutter-y: var(--spacer-lg);
  }
  .g-sm-xl,
  .gx-sm-xl {
    --bs-gutter-x: var(--spacer-xl);
  }
  .g-sm-xl,
  .gy-sm-xl {
    --bs-gutter-y: var(--spacer-xl);
  }
  .g-sm-2xl,
  .gx-sm-2xl {
    --bs-gutter-x: var(--spacer-2xl);
  }
  .g-sm-2xl,
  .gy-sm-2xl {
    --bs-gutter-y: var(--spacer-2xl);
  }
  .g-sm-3xl,
  .gx-sm-3xl {
    --bs-gutter-x: var(--spacer-3xl);
  }
  .g-sm-3xl,
  .gy-sm-3xl {
    --bs-gutter-y: var(--spacer-3xl);
  }
  .g-sm-4xl,
  .gx-sm-4xl {
    --bs-gutter-x: var(--spacer-4xl);
  }
  .g-sm-4xl,
  .gy-sm-4xl {
    --bs-gutter-y: var(--spacer-4xl);
  }
  .g-sm-5xl,
  .gx-sm-5xl {
    --bs-gutter-x: var(--spacer-5xl);
  }
  .g-sm-5xl,
  .gy-sm-5xl {
    --bs-gutter-y: var(--spacer-5xl);
  }
  .g-sm-6xl,
  .gx-sm-6xl {
    --bs-gutter-x: var(--spacer-6xl);
  }
  .g-sm-6xl,
  .gy-sm-6xl {
    --bs-gutter-y: var(--spacer-6xl);
  }
  .g-sm-7xl,
  .gx-sm-7xl {
    --bs-gutter-x: var(--spacer-7xl);
  }
  .g-sm-7xl,
  .gy-sm-7xl {
    --bs-gutter-y: var(--spacer-7xl);
  }
  .g-sm-8xl,
  .gx-sm-8xl {
    --bs-gutter-x: var(--spacer-8xl);
  }
  .g-sm-8xl,
  .gy-sm-8xl {
    --bs-gutter-y: var(--spacer-8xl);
  }
  .g-sm-9xl,
  .gx-sm-9xl {
    --bs-gutter-x: var(--spacer-9xl);
  }
  .g-sm-9xl,
  .gy-sm-9xl {
    --bs-gutter-y: var(--spacer-9xl);
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
  .g-md-6,
  .gx-md-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-md-6,
  .gy-md-6 {
    --bs-gutter-y: 4.5rem;
  }
  .g-md-xs,
  .gx-md-xs {
    --bs-gutter-x: var(--spacer-xs);
  }
  .g-md-xs,
  .gy-md-xs {
    --bs-gutter-y: var(--spacer-xs);
  }
  .g-md-sm,
  .gx-md-sm {
    --bs-gutter-x: var(--spacer-sm);
  }
  .g-md-sm,
  .gy-md-sm {
    --bs-gutter-y: var(--spacer-sm);
  }
  .g-md-md,
  .gx-md-md {
    --bs-gutter-x: var(--spacer-md);
  }
  .g-md-md,
  .gy-md-md {
    --bs-gutter-y: var(--spacer-md);
  }
  .g-md-lg,
  .gx-md-lg {
    --bs-gutter-x: var(--spacer-lg);
  }
  .g-md-lg,
  .gy-md-lg {
    --bs-gutter-y: var(--spacer-lg);
  }
  .g-md-xl,
  .gx-md-xl {
    --bs-gutter-x: var(--spacer-xl);
  }
  .g-md-xl,
  .gy-md-xl {
    --bs-gutter-y: var(--spacer-xl);
  }
  .g-md-2xl,
  .gx-md-2xl {
    --bs-gutter-x: var(--spacer-2xl);
  }
  .g-md-2xl,
  .gy-md-2xl {
    --bs-gutter-y: var(--spacer-2xl);
  }
  .g-md-3xl,
  .gx-md-3xl {
    --bs-gutter-x: var(--spacer-3xl);
  }
  .g-md-3xl,
  .gy-md-3xl {
    --bs-gutter-y: var(--spacer-3xl);
  }
  .g-md-4xl,
  .gx-md-4xl {
    --bs-gutter-x: var(--spacer-4xl);
  }
  .g-md-4xl,
  .gy-md-4xl {
    --bs-gutter-y: var(--spacer-4xl);
  }
  .g-md-5xl,
  .gx-md-5xl {
    --bs-gutter-x: var(--spacer-5xl);
  }
  .g-md-5xl,
  .gy-md-5xl {
    --bs-gutter-y: var(--spacer-5xl);
  }
  .g-md-6xl,
  .gx-md-6xl {
    --bs-gutter-x: var(--spacer-6xl);
  }
  .g-md-6xl,
  .gy-md-6xl {
    --bs-gutter-y: var(--spacer-6xl);
  }
  .g-md-7xl,
  .gx-md-7xl {
    --bs-gutter-x: var(--spacer-7xl);
  }
  .g-md-7xl,
  .gy-md-7xl {
    --bs-gutter-y: var(--spacer-7xl);
  }
  .g-md-8xl,
  .gx-md-8xl {
    --bs-gutter-x: var(--spacer-8xl);
  }
  .g-md-8xl,
  .gy-md-8xl {
    --bs-gutter-y: var(--spacer-8xl);
  }
  .g-md-9xl,
  .gx-md-9xl {
    --bs-gutter-x: var(--spacer-9xl);
  }
  .g-md-9xl,
  .gy-md-9xl {
    --bs-gutter-y: var(--spacer-9xl);
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12, .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
  .g-lg-6,
  .gx-lg-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-lg-6,
  .gy-lg-6 {
    --bs-gutter-y: 4.5rem;
  }
  .g-lg-xs,
  .gx-lg-xs {
    --bs-gutter-x: var(--spacer-xs);
  }
  .g-lg-xs,
  .gy-lg-xs {
    --bs-gutter-y: var(--spacer-xs);
  }
  .g-lg-sm,
  .gx-lg-sm {
    --bs-gutter-x: var(--spacer-sm);
  }
  .g-lg-sm,
  .gy-lg-sm {
    --bs-gutter-y: var(--spacer-sm);
  }
  .g-lg-md,
  .gx-lg-md {
    --bs-gutter-x: var(--spacer-md);
  }
  .g-lg-md,
  .gy-lg-md {
    --bs-gutter-y: var(--spacer-md);
  }
  .g-lg-lg,
  .gx-lg-lg {
    --bs-gutter-x: var(--spacer-lg);
  }
  .g-lg-lg,
  .gy-lg-lg {
    --bs-gutter-y: var(--spacer-lg);
  }
  .g-lg-xl,
  .gx-lg-xl {
    --bs-gutter-x: var(--spacer-xl);
  }
  .g-lg-xl,
  .gy-lg-xl {
    --bs-gutter-y: var(--spacer-xl);
  }
  .g-lg-2xl,
  .gx-lg-2xl {
    --bs-gutter-x: var(--spacer-2xl);
  }
  .g-lg-2xl,
  .gy-lg-2xl {
    --bs-gutter-y: var(--spacer-2xl);
  }
  .g-lg-3xl,
  .gx-lg-3xl {
    --bs-gutter-x: var(--spacer-3xl);
  }
  .g-lg-3xl,
  .gy-lg-3xl {
    --bs-gutter-y: var(--spacer-3xl);
  }
  .g-lg-4xl,
  .gx-lg-4xl {
    --bs-gutter-x: var(--spacer-4xl);
  }
  .g-lg-4xl,
  .gy-lg-4xl {
    --bs-gutter-y: var(--spacer-4xl);
  }
  .g-lg-5xl,
  .gx-lg-5xl {
    --bs-gutter-x: var(--spacer-5xl);
  }
  .g-lg-5xl,
  .gy-lg-5xl {
    --bs-gutter-y: var(--spacer-5xl);
  }
  .g-lg-6xl,
  .gx-lg-6xl {
    --bs-gutter-x: var(--spacer-6xl);
  }
  .g-lg-6xl,
  .gy-lg-6xl {
    --bs-gutter-y: var(--spacer-6xl);
  }
  .g-lg-7xl,
  .gx-lg-7xl {
    --bs-gutter-x: var(--spacer-7xl);
  }
  .g-lg-7xl,
  .gy-lg-7xl {
    --bs-gutter-y: var(--spacer-7xl);
  }
  .g-lg-8xl,
  .gx-lg-8xl {
    --bs-gutter-x: var(--spacer-8xl);
  }
  .g-lg-8xl,
  .gy-lg-8xl {
    --bs-gutter-y: var(--spacer-8xl);
  }
  .g-lg-9xl,
  .gx-lg-9xl {
    --bs-gutter-x: var(--spacer-9xl);
  }
  .g-lg-9xl,
  .gy-lg-9xl {
    --bs-gutter-y: var(--spacer-9xl);
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
  .g-xl-6,
  .gx-xl-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bs-gutter-y: 4.5rem;
  }
  .g-xl-xs,
  .gx-xl-xs {
    --bs-gutter-x: var(--spacer-xs);
  }
  .g-xl-xs,
  .gy-xl-xs {
    --bs-gutter-y: var(--spacer-xs);
  }
  .g-xl-sm,
  .gx-xl-sm {
    --bs-gutter-x: var(--spacer-sm);
  }
  .g-xl-sm,
  .gy-xl-sm {
    --bs-gutter-y: var(--spacer-sm);
  }
  .g-xl-md,
  .gx-xl-md {
    --bs-gutter-x: var(--spacer-md);
  }
  .g-xl-md,
  .gy-xl-md {
    --bs-gutter-y: var(--spacer-md);
  }
  .g-xl-lg,
  .gx-xl-lg {
    --bs-gutter-x: var(--spacer-lg);
  }
  .g-xl-lg,
  .gy-xl-lg {
    --bs-gutter-y: var(--spacer-lg);
  }
  .g-xl-xl,
  .gx-xl-xl {
    --bs-gutter-x: var(--spacer-xl);
  }
  .g-xl-xl,
  .gy-xl-xl {
    --bs-gutter-y: var(--spacer-xl);
  }
  .g-xl-2xl,
  .gx-xl-2xl {
    --bs-gutter-x: var(--spacer-2xl);
  }
  .g-xl-2xl,
  .gy-xl-2xl {
    --bs-gutter-y: var(--spacer-2xl);
  }
  .g-xl-3xl,
  .gx-xl-3xl {
    --bs-gutter-x: var(--spacer-3xl);
  }
  .g-xl-3xl,
  .gy-xl-3xl {
    --bs-gutter-y: var(--spacer-3xl);
  }
  .g-xl-4xl,
  .gx-xl-4xl {
    --bs-gutter-x: var(--spacer-4xl);
  }
  .g-xl-4xl,
  .gy-xl-4xl {
    --bs-gutter-y: var(--spacer-4xl);
  }
  .g-xl-5xl,
  .gx-xl-5xl {
    --bs-gutter-x: var(--spacer-5xl);
  }
  .g-xl-5xl,
  .gy-xl-5xl {
    --bs-gutter-y: var(--spacer-5xl);
  }
  .g-xl-6xl,
  .gx-xl-6xl {
    --bs-gutter-x: var(--spacer-6xl);
  }
  .g-xl-6xl,
  .gy-xl-6xl {
    --bs-gutter-y: var(--spacer-6xl);
  }
  .g-xl-7xl,
  .gx-xl-7xl {
    --bs-gutter-x: var(--spacer-7xl);
  }
  .g-xl-7xl,
  .gy-xl-7xl {
    --bs-gutter-y: var(--spacer-7xl);
  }
  .g-xl-8xl,
  .gx-xl-8xl {
    --bs-gutter-x: var(--spacer-8xl);
  }
  .g-xl-8xl,
  .gy-xl-8xl {
    --bs-gutter-y: var(--spacer-8xl);
  }
  .g-xl-9xl,
  .gx-xl-9xl {
    --bs-gutter-x: var(--spacer-9xl);
  }
  .g-xl-9xl,
  .gy-xl-9xl {
    --bs-gutter-y: var(--spacer-9xl);
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --bs-gutter-y: 4.5rem;
  }
  .g-xxl-xs,
  .gx-xxl-xs {
    --bs-gutter-x: var(--spacer-xs);
  }
  .g-xxl-xs,
  .gy-xxl-xs {
    --bs-gutter-y: var(--spacer-xs);
  }
  .g-xxl-sm,
  .gx-xxl-sm {
    --bs-gutter-x: var(--spacer-sm);
  }
  .g-xxl-sm,
  .gy-xxl-sm {
    --bs-gutter-y: var(--spacer-sm);
  }
  .g-xxl-md,
  .gx-xxl-md {
    --bs-gutter-x: var(--spacer-md);
  }
  .g-xxl-md,
  .gy-xxl-md {
    --bs-gutter-y: var(--spacer-md);
  }
  .g-xxl-lg,
  .gx-xxl-lg {
    --bs-gutter-x: var(--spacer-lg);
  }
  .g-xxl-lg,
  .gy-xxl-lg {
    --bs-gutter-y: var(--spacer-lg);
  }
  .g-xxl-xl,
  .gx-xxl-xl {
    --bs-gutter-x: var(--spacer-xl);
  }
  .g-xxl-xl,
  .gy-xxl-xl {
    --bs-gutter-y: var(--spacer-xl);
  }
  .g-xxl-2xl,
  .gx-xxl-2xl {
    --bs-gutter-x: var(--spacer-2xl);
  }
  .g-xxl-2xl,
  .gy-xxl-2xl {
    --bs-gutter-y: var(--spacer-2xl);
  }
  .g-xxl-3xl,
  .gx-xxl-3xl {
    --bs-gutter-x: var(--spacer-3xl);
  }
  .g-xxl-3xl,
  .gy-xxl-3xl {
    --bs-gutter-y: var(--spacer-3xl);
  }
  .g-xxl-4xl,
  .gx-xxl-4xl {
    --bs-gutter-x: var(--spacer-4xl);
  }
  .g-xxl-4xl,
  .gy-xxl-4xl {
    --bs-gutter-y: var(--spacer-4xl);
  }
  .g-xxl-5xl,
  .gx-xxl-5xl {
    --bs-gutter-x: var(--spacer-5xl);
  }
  .g-xxl-5xl,
  .gy-xxl-5xl {
    --bs-gutter-y: var(--spacer-5xl);
  }
  .g-xxl-6xl,
  .gx-xxl-6xl {
    --bs-gutter-x: var(--spacer-6xl);
  }
  .g-xxl-6xl,
  .gy-xxl-6xl {
    --bs-gutter-y: var(--spacer-6xl);
  }
  .g-xxl-7xl,
  .gx-xxl-7xl {
    --bs-gutter-x: var(--spacer-7xl);
  }
  .g-xxl-7xl,
  .gy-xxl-7xl {
    --bs-gutter-y: var(--spacer-7xl);
  }
  .g-xxl-8xl,
  .gx-xxl-8xl {
    --bs-gutter-x: var(--spacer-8xl);
  }
  .g-xxl-8xl,
  .gy-xxl-8xl {
    --bs-gutter-y: var(--spacer-8xl);
  }
  .g-xxl-9xl,
  .gx-xxl-9xl {
    --bs-gutter-x: var(--spacer-9xl);
  }
  .g-xxl-9xl,
  .gy-xxl-9xl {
    --bs-gutter-y: var(--spacer-9xl);
  }
}
.splide .splide__arrows {
  margin-bottom: 2rem;
  gap: 1rem;
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  .splide .splide__arrows {
    justify-content: flex-end;
  }
}
.splide .splide__arrows .splide-action {
  margin: 0;
  height: 48px;
  order: 3;
  margin-left: auto;
}
@media (min-width: 992px) {
  .splide .splide__arrows .splide-action {
    margin-left: 0;
  }
}
.splide .splide__arrow-custom {
  padding: 0.75rem;
  height: 48px;
  width: 48px;
  margin: 0;
}
.splide .splide__arrow-custom:before {
  font-size: 1rem;
}
.splide .splide__arrow-custom svg {
  height: 1px;
  width: 1px;
  display: none;
}
.splide--optionset--carousel-highlight-documents .splide__arrows {
  position: absolute;
  bottom: -6rem;
  left: 0;
  height: auto;
  width: auto;
}
@media (min-width: 992px) {
  .splide--optionset--carousel-highlight-documents .splide__arrows {
    position: absolute;
    right: auto;
    width: 100%;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.splide--optionset--carousel-highlight-documents .splide__arrow,
.splide--optionset--carousel-highlight-documents .splide__arrow__custom {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (min-width: 992px) {
  .splide--optionset--carousel-highlight-documents .splide__arrow,
  .splide--optionset--carousel-highlight-documents .splide__arrow__custom {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.splide--optionset--carousel-highlight-documents .splide__arrow--next,
.splide--optionset--carousel-highlight-documents .splide__arrow__custom--next {
  right: 0;
}
@media (min-width: 992px) {
  .splide--optionset--carousel-highlight-documents .splide__arrow--next,
  .splide--optionset--carousel-highlight-documents .splide__arrow__custom--next {
    right: -4.5rem;
  }
}
.splide--optionset--carousel-highlight-documents .splide__arrow--prev,
.splide--optionset--carousel-highlight-documents .splide__arrow__custom--prev {
  left: 0;
}
@media (min-width: 992px) {
  .splide--optionset--carousel-highlight-documents .splide__arrow--prev,
  .splide--optionset--carousel-highlight-documents .splide__arrow__custom--prev {
    left: -4.5rem;
  }
}
.splide--optionset--carousel-cards .splide__track {
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem !important;
}
@media (min-width: 992px) {
  .splide--optionset--carousel-cards .splide__track::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, rgba(247, 252, 255, 0), rgba(247, 252, 255, 0), rgba(247, 252, 255, 0.75), #f7fcff);
    pointer-events: none;
    z-index: 10;
  }
}
.splide--optionset--carousel-cards-categories .splide__list {
  display: grid;
  grid-auto-flow: column;
  /* Arrange items in columns */
  grid-auto-columns: 1fr;
  /* Each column gets equal width */
  gap: 1rem;
}

@media (min-width: 992px) {
  .splide-view-block .view-header {
    max-width: calc(100% - 10rem);
  }
  .splide-view-block .view-header.has-arrows {
    margin-bottom: -4rem;
  }
}
.splide-view-block .view-header .field--name-field-subtitle,
.splide-view-block .view-header .field--name-field-title {
  text-align: left !important;
}
@media (min-width: 992px) {
  .splide-view-block.with-actions .view-header {
    max-width: calc(100% - 20rem);
  }
}

.block--teide-views-block--documents-block-highligthed {
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.block--teide-views-block--documents-block-highligthed .block__content {
  position: relative;
  margin-inline: auto;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 1440px;
  background-color: #EFF9FF;
  border-radius: 0.5rem;
}
.block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrow-custom.splide__arrow-custom {
  border-radius: 0.5rem;
  border: 1px solid #016DA3;
}
.block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrow-custom.splide__arrow-custom:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #F8F8F8;
  color: #9A9A9A;
  border-color: #9A9A9A;
}
.block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrow--prev {
  left: -5.5rem;
}
.block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrow--next {
  right: -5.5rem;
}

body.path-documents .block--teide-views-block--documents-block-highligthed {
  margin-left: calc(50% - 45vw);
  margin-right: calc(50% - 45vw);
  width: 90vw;
}
@media (max-width: 1199.98px) {
  body.path-documents .block--teide-views-block--documents-block-highligthed {
    margin-left: calc(50% - 43vw);
    margin-right: calc(50% - 43vw);
    width: 86vw;
  }
}
@media (max-width: 991.98px) {
  body.path-documents .block--teide-views-block--documents-block-highligthed {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
  }
}
@media (max-width: 575.98px) {
  body.path-documents .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents {
    padding-bottom: 3rem;
  }
}
body.path-documents .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrows {
  bottom: -4rem;
  right: 0;
  left: auto;
}
@media (max-width: 575.98px) {
  body.path-documents .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrows {
    bottom: -7rem;
    right: auto;
    left: 0px;
  }
}
@media (max-width: 991.98px) {
  body.path-documents .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrows .splide__arrow--prev {
    left: 0;
  }
  body.path-documents .block--teide-views-block--documents-block-highligthed .splide--view--documents-block-block-highligthed.splide--optionset--carousel-highlight-documents .splide__arrows .splide__arrow--next {
    right: 0;
  }
}

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