/* stylelint-disable selector-class-pattern */
.adf-pdf-viewer {
    .textLayer {
        position: absolute;
        inset: 0;
        overflow: hidden;
        opacity: 0.2;
        line-height: 1;
        border: 1px solid gray;

        & > div {
            color: transparent;
            position: absolute;
            white-space: pre;
            cursor: text;
            transform-origin: 0 0;
        }

        .adf-highlight {
            margin: -1px;
            padding: 1px;
            background-color: rgb(180, 0, 170);
            border-radius: 4px;

            &.adf-begin {
                border-radius: 4px 0 0 4px;
            }

            &.adf-end {
                border-radius: 0 4px 4px 0;
            }

            &.adf-middle {
                border-radius: 0;
            }

            &.adf-selected {
                background-color: rgb(0, 100, 0);
            }
        }

        &::selection {
            background: rgb(0, 0, 255);
        }

        .adf-endOfContent {
            display: block;
            position: absolute;
            inset: 0;
            top: 100%;
            z-index: -1;
            cursor: default;
            user-select: none;

            &.adf-active {
                top: 0;
            }
        }
    }

    .adf-annotationLayer {
        section {
            position: absolute;
        }

        .adf-linkAnnotation {
            & > a {
                position: absolute;
                font-size: 1em;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                /* stylelint-disable */
                background: url('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7') 0 0 repeat;
                /* stylelint-enable */

                &:hover {
                    opacity: 0.2;
                    background: #ff0;
                    box-shadow: 0 2px 10px #ff0;
                }
            }
        }

        .adf-textAnnotation {
            img {
                position: absolute;
                cursor: pointer;
            }
        }

        .adf-popupWrapper {
            position: absolute;
            width: 20em;
        }

        .adf-popup {
            position: absolute;
            z-index: 200;
            max-width: 20em;
            background-color: #ff9;
            box-shadow: 0 2px 5px #333;
            border-radius: 2px;
            padding: 0.6em;
            margin-left: 5px;
            cursor: pointer;
            word-wrap: break-word;

            h1 {
                font-size: 1em;
                border-bottom: 1px solid #000;
                padding-bottom: 0.2em;
            }

            p {
                padding-top: 0.2em;
            }
        }

        .adf-highlightAnnotation,
        .adf-underlineAnnotation,
        .adf-squigglyAnnotation,
        .adf-strikeoutAnnotation,
        .adf-fileAttachmentAnnotation {
            cursor: pointer;
        }
    }

    .adf-pdfViewer {
        .canvasWrapper {
            overflow: hidden;
        }

        .page {
            direction: ltr;
            width: 816px;
            height: 1056px;
            margin: 1px auto -8px;
            position: relative;
            overflow: visible;
            border: 9px solid transparent;
            background-clip: content-box;
            background-color: white;

            canvas {
                margin: 0;
                display: block;
            }

            .adf-loadingIcon {
                position: absolute;
                display: block;
                inset: 0;
                width: 100px;
                height: 100px;
                left: 50%;
                top: 50%;
                margin-top: -50px;
                margin-left: -50px;
                font-size: 5px;
                text-indent: -9999em;
                border-top: 1.1em solid rgba(3, 0, 2, 0.2);
                border-right: 1.1em solid rgba(3, 0, 2, 0.2);
                border-bottom: 1.1em solid rgba(3, 0, 2, 0.2);
                border-left: 1.1em solid #030002;
                animation: load8 1.1s infinite linear;
                border-radius: 50%;

                &::after {
                    border-radius: 50%;
                }
            }

            * {
                padding: 0;
                margin: 0;
            }
        }

        &.adf-removePageBorders {
            .adf-page {
                margin: 0 auto 10px;
                border: none;
            }
        }

        .adf-pdf-viewer-annotation-tooltip.popup {
            outline-color: var(--adf-pdf-viewer-annotation-tooltip-color);
            background-color: color-mix(in srgb, var(--adf-pdf-viewer-annotation-tooltip-color) 30%, var(--theme-primary-color-default-contrast));
            margin-left: 40px;
            width: max-content;
            max-width: 300px;
            opacity: 0;
            pointer-events: none;

            .popupContent {
                display: inherit;
            }
        }

        .textAnnotation {
            &:hover,
            &:focus-within {
                /* stylelint-disable-next-line declaration-no-important */
                z-index: 9999 !important; // important is required because pdfjs-dist adds style attribute to that tag

                .adf-pdf-viewer-annotation-tooltip.popup {
                    opacity: 1;
                    pointer-events: auto;
                }
            }
        }
    }

    .adf-hidden,
    [hidden] {
        display: none;
    }
}

.adf-viewer-pdf-viewer {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    inset: 0;
    outline: none;
}

html[dir='ltr'] .adf-viewer-pdf-viewer {
    box-shadow: inset 1px 0 0 hsla(0deg, 0%, 100%, 0.05);
}

html[dir='rtl'] .adf-viewer-pdf-viewer {
    box-shadow: inset -1px 0 0 hsla(0deg, 0%, 100%, 0.05);
}
