.tvp-report {
    --tvp-ink: #111315;
    --tvp-paper: #f4f4f1;
    --tvp-blue: #1c5d9b;
    --tvp-zoom: 1;
    --tvp-pan-x: 0px;
    --tvp-pan-y: 0px;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 3.25rem 0 2rem;
    clear: both;
    isolation: isolate;
}

.tvp-report,
.tvp-report * {
    box-sizing: border-box;
}

.tvp-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.tvp-intro {
    margin: 0 0 12px !important;
    padding: 0 0 0 8px;
    color: #202124;
    font-family: inherit;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0;
}

.tvp-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    color: #fff;
    background: var(--tvp-ink);
    border: 1px solid rgba(17, 19, 21, 0.12);
    border-radius: 10px;
    box-shadow: 0 22px 54px rgba(20, 24, 28, 0.14);
    outline: none;
    touch-action: pan-y;
    overscroll-behavior: contain;
    -webkit-tap-highlight-color: transparent;
}

.tvp-viewport:focus-visible {
    outline: 3px solid rgba(28, 93, 155, 0.58);
    outline-offset: 4px;
}

.tvp-track {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.tvp-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    min-width: 0;
    margin: 0 !important;
    overflow: hidden;
    background: var(--tvp-paper);
}

.tvp-slide-media {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    transform: translate3d(var(--tvp-pan-x), var(--tvp-pan-y), 0);
    will-change: transform;
}

.tvp-slide-image {
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    max-height: none !important;
    margin: 0 !important;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transform: scale(var(--tvp-zoom));
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease;
    user-select: none;
    will-change: transform;
    -webkit-user-drag: none;
}

.tvp-slide-image.is-loaded {
    opacity: 1;
}

.tvp-report.is-gesturing .tvp-slide-media,
.tvp-report.is-gesturing .tvp-slide-image,
.tvp-report.is-dragging .tvp-track {
    transition: none;
}

.tvp-nav,
.tvp-fullscreen,
.tvp-zoom-controls button {
    display: inline-grid;
    align-items: center;
    justify-items: center;
    color: #fff;
    background: rgba(12, 14, 16, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: background-color 160ms ease, border-color 160ms ease, opacity 160ms ease, transform 160ms ease;
    -webkit-appearance: none;
    appearance: none;
}

.tvp-nav {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 48px;
    height: 48px;
    padding: 0;
    transform: translateY(-50%);
}

.tvp-nav-prev {
    left: 16px;
}

.tvp-nav-next {
    right: 16px;
}

.tvp-nav svg,
.tvp-fullscreen svg,
.tvp-zoom-controls svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tvp-nav:hover,
.tvp-fullscreen:hover,
.tvp-zoom-controls button:hover {
    background: rgba(12, 14, 16, 0.9);
    border-color: rgba(255, 255, 255, 0.42);
}

.tvp-nav:hover {
    transform: translateY(-50%) scale(1.04);
}

.tvp-fullscreen:hover,
.tvp-zoom-controls button:hover {
    transform: scale(1.04);
}

.tvp-nav:focus-visible,
.tvp-fullscreen:focus-visible,
.tvp-zoom-controls button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.92);
    outline-offset: 3px;
}

.tvp-nav:disabled,
.tvp-zoom-controls button:disabled {
    opacity: 0.24;
    cursor: default;
    transform: translateY(-50%);
}

.tvp-zoom-controls button:disabled {
    transform: none;
}

.tvp-status {
    position: absolute;
    z-index: 5;
    bottom: 16px;
    left: 16px;
    min-width: 66px;
    padding: 9px 14px;
    color: #fff;
    background: rgba(12, 14, 16, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    font-variant-numeric: tabular-nums;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.tvp-status-divider {
    padding: 0 6px;
    opacity: 0.5;
}

.tvp-fullscreen {
    position: absolute;
    z-index: 6;
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    padding: 0;
}

.tvp-icon-exit {
    display: none !important;
}

.tvp-zoom-controls {
    position: absolute;
    z-index: 7;
    bottom: 18px;
    left: 50%;
    display: none;
    align-items: center;
    gap: 7px;
    padding: 5px;
    color: #fff;
    background: rgba(12, 14, 16, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    transform: translateX(-50%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.tvp-zoom-controls button {
    width: 38px;
    height: 38px;
    padding: 0;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.tvp-zoom-controls span {
    min-width: 54px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.tvp-noscript {
    margin: 1rem 0 0 !important;
    font-size: 0.95rem;
}

.tvp-report.is-fullscreen {
    position: fixed;
    z-index: 2147483000;
    inset: 0;
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    background: #090a0b;
}

.tvp-report.is-fullscreen .tvp-viewport {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    background: #090a0b;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    touch-action: none;
}

.tvp-report.is-fullscreen .tvp-slide {
    background: #090a0b;
}

.tvp-report.is-fullscreen .tvp-slide-image {
    padding: 18px 76px 68px;
}

.tvp-report.is-fullscreen .tvp-fullscreen {
    top: 18px;
    right: 18px;
    bottom: auto;
    width: 46px;
    height: 46px;
}

.tvp-report.is-fullscreen .tvp-icon-enter {
    display: none !important;
}

.tvp-report.is-fullscreen .tvp-icon-exit {
    display: block !important;
}

.tvp-report.is-fullscreen .tvp-zoom-controls {
    display: flex;
}

.tvp-report.is-fullscreen .tvp-status {
    bottom: 22px;
    left: 22px;
}

.tvp-report.is-fullscreen.is-zoomed .tvp-slide.is-current {
    cursor: grab;
}

.tvp-report.is-fullscreen.is-zoomed.is-gesturing .tvp-slide.is-current {
    cursor: grabbing;
}

body.tvp-body-locked {
    position: fixed !important;
    width: 100% !important;
    overflow: hidden !important;
}

@media (max-width: 700px) {
    .tvp-report {
        margin: 2.25rem 0 1.5rem;
    }

    .tvp-intro {
        margin-bottom: 10px !important;
        padding-left: 0;
        font-size: 15px;
        line-height: 1.5;
    }

    .tvp-viewport {
        border-radius: 7px;
        box-shadow: 0 14px 34px rgba(20, 24, 28, 0.13);
    }

    .tvp-nav {
        width: 42px;
        height: 42px;
    }

    .tvp-nav-prev {
        left: 8px;
    }

    .tvp-nav-next {
        right: 8px;
    }

    .tvp-status {
        bottom: 8px;
        left: 8px;
        min-width: 58px;
        padding: 8px 10px;
        font-size: 12px;
    }

    .tvp-fullscreen {
        right: 8px;
        bottom: 8px;
        width: 40px;
        height: 40px;
    }

    .tvp-report.is-fullscreen .tvp-slide-image {
        padding: 56px 10px 80px;
    }

    .tvp-report.is-fullscreen .tvp-nav {
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .tvp-report.is-fullscreen .tvp-nav:hover,
    .tvp-report.is-fullscreen .tvp-nav:disabled {
        transform: none;
    }

    .tvp-report.is-fullscreen .tvp-nav-prev {
        left: 12px;
    }

    .tvp-report.is-fullscreen .tvp-nav-next {
        right: 12px;
    }

    .tvp-report.is-fullscreen .tvp-status {
        top: 18px;
        bottom: auto;
        left: 18px;
    }

    .tvp-report.is-fullscreen .tvp-fullscreen {
        top: 14px;
        right: 14px;
    }

    .tvp-report.is-fullscreen .tvp-zoom-controls {
        bottom: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tvp-track,
    .tvp-slide-image,
    .tvp-nav,
    .tvp-fullscreen,
    .tvp-zoom-controls button {
        transition-duration: 0.01ms !important;
    }
}
