@font-face {
    font-family: 'OpenDyslexic';
    src: url('../fonts/OpenDyslexic-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.a11y-widget {
    --a11y-accent: #9b2247;
    --a11y-accent-dark: #7f1d3f;
    --a11y-gold: #a57f2c;
    --a11y-text: #261d25;
    --a11y-text-soft: #746b74;
    --a11y-line: rgba(30, 18, 30, 0.07);
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 2147483000;
    color: var(--a11y-text);
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: left;
    word-spacing: normal;
    isolation: isolate;
}

.a11y-widget *,
.a11y-widget *::before,
.a11y-widget *::after {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif !important;
}

.a11y-widget button,
.a11y-widget a {
    -webkit-tap-highlight-color: transparent;
}

.a11y-widget button {
    appearance: none;
    margin: 0;
    font: inherit;
}

.a11y-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    background: var(--a11y-accent);
    color: #fff;
    box-shadow: 0 12px 30px rgba(77, 19, 43, 0.24), 0 2px 8px rgba(20, 10, 25, 0.08);
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.a11y-toggle:hover {
    transform: translateY(-2px);
    background: var(--a11y-accent-dark);
    box-shadow: 0 16px 34px rgba(77, 19, 43, 0.27), 0 2px 8px rgba(20, 10, 25, 0.08);
}

.a11y-toggle-icon {
    width: 28px;
    height: 28px;
    transition: transform 180ms ease;
}

.a11y-toggle:hover .a11y-toggle-icon {
    transform: scale(1.04);
}

.a11y-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    width: min(400px, calc(100vw - 24px));
    max-height: min(82vh, 720px, calc(100vh - 104px));
    overflow-x: hidden;
    overflow-y: auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84));
    color: var(--a11y-text);
    box-shadow: 0 24px 60px rgba(20, 10, 25, 0.22), 0 2px 8px rgba(20, 10, 25, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    scrollbar-color: rgba(155, 34, 71, 0.32) transparent;
    scrollbar-width: thin;
    animation: a11y-panel-in 180ms ease-out both;
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .a11y-panel {
        background: rgba(255, 255, 255, 0.62);
        -webkit-backdrop-filter: blur(22px) saturate(1.7);
        backdrop-filter: blur(22px) saturate(1.7);
    }
}

.a11y-panel::-webkit-scrollbar {
    width: 6px;
}

.a11y-panel::-webkit-scrollbar-track {
    background: transparent;
}

.a11y-panel::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: rgba(155, 34, 71, 0.28);
}

.a11y-panel[hidden] {
    display: none;
}

@keyframes a11y-panel-in {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.a11y-header {
    margin: 0 0 6px;
}

.a11y-header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.a11y-heading {
    min-width: 0;
    padding: 2px 0 0;
}

.a11y-eyebrow {
    margin: 0;
    color: var(--a11y-gold);
    font-size: 10.5px;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.a11y-title {
    margin: 4px 0 0;
    color: var(--a11y-text);
    font-size: 19px;
    font-weight: 720;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.a11y-close {
    display: inline-flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(30, 18, 30, 0.09);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    color: var(--a11y-text-soft);
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.a11y-close:hover {
    border-color: rgba(155, 34, 71, 0.2);
    background: rgba(155, 34, 71, 0.07);
    color: var(--a11y-accent);
}

.a11y-close svg,
.a11y-reset svg {
    flex: 0 0 auto;
}

.a11y-reset-row {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.a11y-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 7px 11px;
    border: 1px solid rgba(155, 34, 71, 0.15);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.36);
    color: var(--a11y-accent);
    font-size: 13px;
    font-weight: 650;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.a11y-reset:hover {
    border-color: rgba(155, 34, 71, 0.25);
    background: rgba(155, 34, 71, 0.08);
    color: var(--a11y-accent-dark);
}

.a11y-sections {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 12px;
    row-gap: 0;
}

.a11y-section {
    grid-column: 1 / -1;
    min-width: 0;
    margin: 0;
    padding: 12px 0 8px;
    border: 0;
    border-top: 1px solid var(--a11y-line);
    border-radius: 0;
    background: transparent;
}

.a11y-section:first-child {
    margin-top: 8px;
}

.a11y-legend {
    margin: 0;
    padding: 0 10px 0 0;
    color: var(--a11y-gold);
    font-size: 10.5px;
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.a11y-font-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px 50px 40px;
    align-items: center;
    gap: 4px;
    min-height: 48px;
    padding: 4px 2px;
}

.a11y-font-actions::before {
    content: 'Tamaño del texto';
    grid-column: 1;
    color: var(--a11y-text);
    font-size: 14.5px;
    font-weight: 520;
}

.a11y-font-actions::after {
    content: '100%';
    grid-column: 3;
    grid-row: 1;
    color: var(--a11y-text-soft);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    text-align: center;
}

html[style*='font-size: 80'] .a11y-font-actions::after { content: '80%'; }
html[style*='font-size: 90'] .a11y-font-actions::after { content: '90%'; }
html[style*='font-size: 100'] .a11y-font-actions::after { content: '100%'; }
html[style*='font-size: 110'] .a11y-font-actions::after { content: '110%'; }
html[style*='font-size: 120'] .a11y-font-actions::after { content: '120%'; }
html[style*='font-size: 130'] .a11y-font-actions::after { content: '130%'; }
html[style*='font-size: 140'] .a11y-font-actions::after { content: '140%'; }
html[style*='font-size: 150'] .a11y-font-actions::after { content: '150%'; }

.a11y-font-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(30, 18, 30, 0.1);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.48);
    color: var(--a11y-text);
    font-size: 15px;
    font-weight: 750;
    cursor: pointer;
    transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.a11y-font-button:first-child {
    grid-column: 2;
}

.a11y-font-button:last-child {
    grid-column: 4;
}

.a11y-font-button:hover {
    border-color: rgba(155, 34, 71, 0.34);
    background: rgba(155, 34, 71, 0.07);
    color: var(--a11y-accent);
}

.a11y-controls-grid {
    display: grid;
    gap: 0;
    margin-top: 2px;
}

.a11y-control-button {
    position: relative;
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    gap: 11px;
    padding: 4px 2px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--a11y-text);
    font-size: 14.5px;
    font-weight: 520;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.a11y-control-button > svg {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: #7a727d;
    stroke-width: 2;
    transition: color 160ms ease, transform 160ms ease;
}

.a11y-control-button > span {
    flex: 1 1 auto;
    min-width: 0;
}

.a11y-control-button:not(.a11y-control-button--flat)::before {
    content: '';
    order: 3;
    flex: 0 0 36px;
    width: 36px;
    height: 20px;
    margin-left: auto;
    border: 1px solid rgba(30, 18, 30, 0.08);
    border-radius: 999px;
    background: rgba(86, 75, 91, 0.2);
    box-shadow: inset 0 1px 2px rgba(20, 10, 25, 0.08);
    transition: background-color 180ms ease, border-color 180ms ease;
}

.a11y-control-button:not(.a11y-control-button--flat)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(20, 10, 25, 0.26);
    transform: translateY(-50%);
    transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.a11y-control-button:hover {
    background: rgba(155, 34, 71, 0.045);
}

.a11y-control-button:hover > svg {
    color: var(--a11y-accent);
}

.a11y-control-button[aria-pressed='true'] > svg {
    color: var(--a11y-accent);
}

.a11y-control-button[aria-pressed='true']:not(.a11y-control-button--flat)::before {
    border-color: var(--a11y-accent);
    background: var(--a11y-accent);
}

.a11y-control-button[aria-pressed='true']:not(.a11y-control-button--flat)::after {
    transform: translate(16px, -50%);
}

.a11y-spacing-stack {
    display: grid;
    gap: 2px;
    margin-top: 2px;
}

.a11y-spacing-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 4px 2px;
    border: 0;
    border-radius: 10px;
    background: transparent;
}

.a11y-control-button--flat {
    min-width: 0;
    min-height: 40px;
    padding: 2px 0;
    box-shadow: none;
}

.a11y-control-button--flat:hover {
    background: transparent;
}

.a11y-level-row {
    display: inline-flex;
    gap: 0;
    margin: 0;
    padding: 2px;
    border: 1px solid rgba(30, 18, 30, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.36);
}

.a11y-level-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--a11y-text-soft);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.a11y-level-button:hover {
    background: rgba(155, 34, 71, 0.07);
    color: var(--a11y-accent);
}

.a11y-level-button.active,
.a11y-level-button[aria-pressed='true'] {
    background: var(--a11y-accent);
    color: #fff;
    box-shadow: 0 3px 9px rgba(127, 29, 63, 0.2);
}

.a11y-logo-wrap,
.a11y-more-wrap {
    display: flex;
    align-items: center;
    min-height: 58px;
    margin-top: 5px;
    padding-top: 10px;
    border-top: 1px solid var(--a11y-line);
}

.a11y-logo-wrap {
    grid-column: 1;
    min-width: 0;
}

.a11y-logo {
    display: block;
    width: min(178px, 100%);
    max-height: 44px;
    margin: 0;
    object-fit: contain;
    object-position: left center;
    background: transparent;
}

.a11y-more-wrap {
    grid-column: 2;
    justify-content: flex-end;
}

.a11y-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    min-height: 40px;
    padding: 7px 12px;
    border: 1px solid rgba(155, 34, 71, 0.14);
    border-radius: 11px;
    background: rgba(155, 34, 71, 0.075);
    color: var(--a11y-accent);
    font-size: 13px;
    font-weight: 680;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.a11y-more-link:hover {
    border-color: rgba(155, 34, 71, 0.24);
    background: rgba(155, 34, 71, 0.13);
    color: var(--a11y-accent-dark);
}

.a11y-integrity-warning {
    grid-column: 1 / -1;
    margin: 8px 0 0;
    padding: 9px 11px;
    border: 1px solid rgba(185, 28, 28, 0.2);
    border-radius: 10px;
    background: rgba(254, 242, 242, 0.76);
    color: #7f1d1d;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.4;
    text-align: left;
}

.a11y-toggle:focus-visible,
.a11y-close:focus-visible,
.a11y-reset:focus-visible,
.a11y-font-button:focus-visible,
.a11y-control-button:focus-visible,
.a11y-level-button:focus-visible,
.a11y-more-link:focus-visible {
    outline: 3px solid rgba(165, 127, 44, 0.8);
    outline-offset: 3px;
}

.a11y-reset:active,
.a11y-font-button:active,
.a11y-more-link:active,
.a11y-close:active,
.a11y-toggle:active,
.a11y-control-button:active,
.a11y-level-button:active {
    transform: scale(0.98);
}

.a11y-widget--top-right {
    top: 16px;
    right: 16px;
    bottom: auto;
    left: auto;
}

.a11y-widget--top-right .a11y-panel {
    top: calc(100% + 12px);
    right: 0;
    bottom: auto;
    left: auto;
}

.a11y-widget--bottom-right {
    top: auto;
    right: 16px;
    bottom: 16px;
    left: auto;
}

.a11y-widget--bottom-right .a11y-panel {
    top: auto;
    right: 0;
    bottom: calc(100% + 12px);
    left: auto;
}

.a11y-widget--bottom-left {
    top: auto;
    right: auto;
    bottom: 16px;
    left: 16px;
}

.a11y-widget--bottom-left .a11y-panel {
    top: auto;
    right: auto;
    bottom: calc(100% + 12px);
    left: 0;
}

@media (min-width: 768px) {
    .a11y-widget {
        right: 52px;
        bottom: 32px;
    }

    .a11y-widget--top-right {
        top: 32px;
        right: 52px;
        bottom: auto;
    }

    .a11y-widget--bottom-right {
        right: 52px;
        bottom: 32px;
    }

    .a11y-widget--bottom-left {
        right: auto;
        bottom: 32px;
        left: 52px;
    }
}

@media (max-width: 440px) {
    .a11y-panel {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 104px);
        padding: 16px;
    }

    .a11y-font-actions {
        grid-template-columns: minmax(0, 1fr) 40px 46px 40px;
    }

    .a11y-logo {
        width: min(150px, 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .a11y-widget *,
    .a11y-widget *::before,
    .a11y-widget *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

html.a11y-grayscale body > :not(.a11y-widget) {
    filter: grayscale(100%);
}

html.a11y-contrast body > :not(.a11y-widget) {
    filter: contrast(1.2) saturate(1.1);
}

html.a11y-contrast body {
    background: #000 !important;
    color: #fff !important;
}

html.a11y-contrast a:not(.a11y-widget):not(.a11y-widget *) {
    color: #7dd3fc !important;
}

html.a11y-highlight-links a:not(.a11y-widget):not(.a11y-widget *) {
    background: #fde047 !important;
    color: #111827 !important;
    text-decoration: underline !important;
    font-weight: 700 !important;
}

html.a11y-dark-mode body {
    background: #0f172a !important;
    color: #e2e8f0 !important;
}

html.a11y-dark-mode :is(h1, h2, h3, h4, h5, h6, p, span, strong, em, small, label, legend, dt, dd, blockquote, li):not(.a11y-widget):not(.a11y-widget *) {
    color: #e2e8f0 !important;
}

html.a11y-dark-mode :is(
    [class*='bg-white'],
    [class*='bg-slate-50'],
    [class*='bg-slate-100'],
    [class*='bg-slate-200'],
    [class*='bg-white/'],
    [class*='via-white'],
    [class*='from-white'],
    [class*='to-white'],
    [class*='via-slate-50'],
    [class*='from-slate-50'],
    [class*='to-slate-50'],
    [class*='via-slate-100'],
    [class*='from-slate-100'],
    [class*='to-slate-100']
):not(.a11y-widget):not(.a11y-widget *) {
    background-color: #111827 !important;
    color: #e2e8f0 !important;
    border-color: rgb(71 85 105 / 0.9) !important;
}

html.a11y-dark-mode :is(
    [class*='bg-gradient-to-'][class*='from-white'],
    [class*='bg-gradient-to-'][class*='via-white'],
    [class*='bg-gradient-to-'][class*='to-white'],
    [class*='bg-gradient-to-'][class*='from-slate-50'],
    [class*='bg-gradient-to-'][class*='via-slate-50'],
    [class*='bg-gradient-to-'][class*='to-slate-50'],
    [class*='bg-gradient-to-'][class*='from-slate-100'],
    [class*='bg-gradient-to-'][class*='via-slate-100'],
    [class*='bg-gradient-to-'][class*='to-slate-100']
):not(.a11y-widget):not(.a11y-widget *) {
    background-image: linear-gradient(135deg, #0f172a 0%, #111827 52%, #1e293b 100%) !important;
    background-color: #111827 !important;
    border-color: rgb(71 85 105 / 0.9) !important;
}

html.a11y-dark-mode :is(
    [class*='border-slate-100'],
    [class*='border-slate-200'],
    [class*='border-slate-300']
):not(.a11y-widget):not(.a11y-widget *) {
    border-color: rgb(71 85 105 / 0.9) !important;
}

html.a11y-dark-mode :is(
    [class*='text-slate-900'],
    [class*='text-slate-800'],
    [class*='text-slate-700'],
    [class*='text-slate-600'],
    [class*='text-slate-500']
):not(.a11y-widget):not(.a11y-widget *) {
    color: #e2e8f0 !important;
}

html.a11y-dark-mode :is(
    [class*='text-[#6F7271]'],
    [class*='text-[#7A1A31]']
):not(.a11y-widget):not(.a11y-widget *) {
    color: #cbd5e1 !important;
}

html.a11y-dark-mode :is(input, select, textarea, button):not(.a11y-widget):not(.a11y-widget *) {
    background: #1e293b !important;
    color: #f8fafc !important;
    border-color: rgb(100 116 139 / 0.9) !important;
}

html.a11y-dark-mode a:not(.a11y-widget *):not(.a11y-widget) {
    color: #7dd3fc !important;
}

html.a11y-dark-mode img:not(.a11y-widget img) {
    filter: brightness(0.92) contrast(1.05);
}

.a11y-cursor-big body > :not(.a11y-widget),
.a11y-cursor-big body > :not(.a11y-widget) * {
    cursor: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyOS4xODhweCIgaGVpZ2h0PSI0My42MjVweCIgdmlld0JveD0iMCAwIDI5LjE4OCA0My42MjUiPjxnPjxwb2x5Z29uIGZpbGw9IiNGRkZGRkYiIHN0cm9rZT0iI0Q5REFEOSIgc3Ryb2tlLXdpZHRoPSIxLjE0MDYiIHBvaW50cz0iMi44LDQuNTQ5IDI2Ljg0NywxOS45MDIgMTYuOTY0LDIyLjcwMSAyNC4yMzksMzcuNzQ5IDE4LjI3OCw0Mi4wMTcgOS43NDEsMzAuNzI0IDEuMTM4LDM1LjgwOSIvPjxnPjxwYXRoIGZpbGw9IiMyMTI2MjciIGQ9Ik0yOS4xNzUsMjEuMTU1YzAuMDcxLTAuNjEzLTAuMTY1LTEuMjUzLTAuNjM1LTEuNTczTDIuMTY1LDAuMjU4Yy0wLjQyNC0wLjMyLTAuOTg4LTAuMzQ2LTEuNDM1LTAuMDUzQzAuMjgyLDAuNDk3LDAsMS4wMywwLDEuNjE3djM0LjE3MWMwLDAuNjEzLDAuMzA2LDEuMTQ2LDAuNzc2LDEuNDM5YzAuNDcxLDAuMjY3LDEuMDU5LDAuMjEzLDEuNDgyLTAuMTZsNy40ODItNi4zNDRsNi44NDcsMTIuMTU1YzAuMjU5LDAuNDgsMC43MjksMC43NDYsMS4yLDAuNzQ2YzAuMjM1LDAsMC40OTQtMC4wOCwwLjcwNi0wLjIxM2w2Ljk4OC00LjU4NWMwLjMyOS0wLjIxMywwLjU2NS0wLjU4NiwwLjY1OS0xLjAxM2MwLjA5NC0wLjQyNiwwLjAyNC0wLjg4LTAuMTg4LTEuMjI2bC02LjM3Ni0xMS4zODJsOC42MTEtMi43NDVDMjguNzA1LDIyLjI3NCwyOS4xMDUsMjEuNzY4LDI5LjE3NSwyMS4xNTV6Ii8+PC9nPjwvZz48L3N2Zz4=") 4 4, auto !important;
}

.a11y-cursor-big body > :not(.a11y-widget) :is(a, button, [role='button'], input[type='submit'], input[type='button']) {
    cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NCIgaGVpZ2h0PSI2NCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJ3aGl0ZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGQ9Ik0xOCAxMVY2YTIgMiAwIDAgMC0yLTJhMiAyIDAgMCAwLTIgMiIvPjxwYXRoIGQ9Ik0xNCAxMFY0YTIgMiAwIDAgMC0yLTJhMiAyIDAgMCAwLTIgMnYyIi8+PHBhdGggZD0iTTEwIDEwLjVWNmEyIDIgMCAwIDAtMi0yYTIgMiAwIDAgMC0yIDJ2OCIvPjxwYXRoIGQ9Ik0xOCA4YTIgMiAwIDEgMSA0IDB2NmE4IDggMCAwIDEtOCA4aC0yYy0yLjggMC00LjUtLjg2LTUuOTktMi4zNGwtMy42LTMuNmEyIDIgMCAwIDEgMi44My0yLjgyTDcgMTUiLz48L3N2Zz4=") 4 4, pointer !important;
}

.a11y-reading-mask {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 69;
}

.a11y-reading-guide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #611232;
    pointer-events: none;
    z-index: 69;
    will-change: transform;
}

html.a11y-dyslexia-font body,
html.a11y-dyslexia-font body > :not(.a11y-widget),
html.a11y-dyslexia-font body > :not(.a11y-widget) * {
    font-family: 'OpenDyslexic', Arial, sans-serif !important;
}

html.a11y-vertical-spacing-1 body *:not(.a11y-widget):not(.a11y-widget *) {
    line-height: 1.6 !important;
}

html.a11y-vertical-spacing-2 body *:not(.a11y-widget):not(.a11y-widget *) {
    line-height: 1.8 !important;
}

html.a11y-vertical-spacing-3 body *:not(.a11y-widget):not(.a11y-widget *) {
    line-height: 2.1 !important;
}

html.a11y-horizontal-spacing-1 body *:not(.a11y-widget):not(.a11y-widget *) {
    letter-spacing: 0.05em !important;
    word-spacing: 0.08em !important;
}

html.a11y-horizontal-spacing-2 body *:not(.a11y-widget):not(.a11y-widget *) {
    letter-spacing: 0.1em !important;
    word-spacing: 0.16em !important;
}

html.a11y-horizontal-spacing-3 body *:not(.a11y-widget):not(.a11y-widget *) {
    letter-spacing: 0.14em !important;
    word-spacing: 0.24em !important;
}

.a11y-speaking:not(.a11y-widget):not(.a11y-widget *) {
    outline: 3px solid #2b7cff !important;
    outline-offset: 3px;
    background: rgb(43 124 255 / 0.15) !important;
    transition: all 150ms ease;
}

.a11y-speaking:not(.a11y-widget):not(.a11y-widget *) a {
    text-decoration: underline;
}

img.a11y-speaking:not(.a11y-widget img) {
    outline: 3px solid #2b7cff !important;
}
