#lan-pdf-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);

    .modal-inner {
        border-radius: 18px;
        background: var(--secondary-green-15, #E5EAE2);
        width: 95%;
        height: 90%;
        margin: 5% auto;
        position: relative;

        .lan-pdf-layout {
            .pdf-column {}
            .comment-column{

                display: flex;
                width: 527px;
                padding: 24px 44px;
                flex-direction: column;
                align-items: flex-end;
                gap: 28px;
                flex-shrink: 0;

                border-radius: 0 6px 6px 0;
                border: 1px solid var(--primary-blue-30, rgba(32, 35, 74, 0.30));
                background: var(--Primary-White, #FFF);

                /* Drop Shadow */
                box-shadow: 0 2px 10px 0 rgba(33, 33, 38, 0.07);
                border-radius: 0 6px 6px 0;
                border: 1px solid var(--primary-blue-30, rgba(32, 35, 74, 0.30));
                background: var(--Primary-White, #FFF);

                /* Drop Shadow */
                box-shadow: 0 2px 10px 0 rgba(33, 33, 38, 0.07);

                .close-wrapper {
                    text-align: right;
                    .close-modal {}
                }
                .content-wrapper {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 26px;
                    flex: 1 0 0;
                    align-self: stretch;

                    .deadline-wrapper {
                        .label {
                            display: flex;
                            padding: 4px 12px;
                            justify-content: center;
                            align-items: center;
                            gap: 10px;
                            border-radius: 40px;
                            border: 1px solid var(--primary-blue-30, rgba(32, 35, 74, 0.30));
                            background: #FFEDAE;
                            color: var(--Primary-Blue, #20234A);

                            /* Caption */
                            font-family: Nunito;
                            font-size: 12px;
                            font-style: normal;
                            font-weight: 600;
                            line-height: normal;

                            &.passed {
                                border: 1px solid var(--primary-blue-30, rgba(32, 35, 74, 0.30));
                                background: #FFD5D3;
                            }
                        }
                    }
                    .title-wrapper {
                        .columns {
                            display: flex;
                            align-items: flex-start;
                            gap: 8px;
                            align-self: stretch;

                            .icon-wrapper {
                                display: flex;
                                width: 48.151px;
                                height: 48.151px;
                                padding: 6.42px 4.815px;
                                justify-content: center;
                                align-items: center;

                                img {}
                            }
                            .text-wrapper {
                                display: flex;
                                flex-direction: column;
                                align-items: flex-start;
                                gap: 8px;
                                flex: 1 0 0;

                                h3 {
                                    flex: 1 0 0;
                                    color: var(--Text-Off-Black, #1D1E1C);

                                    /* Heading 2 */
                                    font-family: Nunito;
                                    font-size: 24px;
                                    font-style: normal;
                                    font-weight: 600;
                                    line-height: 30px; /* 125% */
                                    margin:0;
                                }

                                p {
                                    color: var(--Text-Grey, #707070);
                                    font-feature-settings: 'dlig' on;
                                    font-family: Nunito;
                                    font-size: 16px;
                                    font-style: normal;
                                    font-weight: var(--Body-Font-Weight-Regular, 400);
                                    line-height: 140%; /* 22.4px */
                                    letter-spacing: -0.32px;
                                    margin:0;
                                }
                            }
                        }
                    }
                    .hr-wrapper {
                        width: 100%;
                        hr {
                            border: 1px solid rgba(32, 35, 74, 0.30);
                            border-width: 1px 0 0 0;
                        }
                    }
                    .heading-wrapper {
                        h4 {
                            color: var(--Text-Off-Black, #1D1E1C);

                            /* Heading 3 */
                            font-family: Nunito;
                            font-size: 18px;
                            font-style: normal;
                            font-weight: 700;
                            line-height: normal;

                            margin:0;
                        }
                    }
                    .comments-wrapper {
                        width: 100%;
                        max-height: 400px;
                        overflow-y: auto;
                        ul {
                            display: flex;
                            flex-direction: column;
                            align-items: flex-start;
                            gap: 37px;
                            align-self: stretch;

                            li {
                                display: flex;
                                flex-direction: column;
                                align-items: flex-start;
                                gap: 8px;
                                align-self: stretch;

                                .action-w {
                                    display: flex;
                                    align-items: center;
                                    gap: 8px;
                                    align-self: stretch;
                                    justify-content: space-between;

                                    svg {}
                                    .actions-column {
                                        display: flex;
                                        justify-content: flex-end;
                                        align-items: center;
                                        gap: 20px;
                                        flex: 1 0 0;

                                        .actions {
                                            display: flex;
                                            align-items: center;
                                            gap: 20px;
                                            button {
                                                background: transparent;
                                                border: none;
                                            }
                                        }
                                    }
                                }
                                .page-w {
                                    display: flex;
                                    align-items: center;
                                    gap: 4px;
                                    align-self: stretch;

                                    .comment-number {
                                        display: flex;
                                        align-items: center;
                                        gap: 4px;
                                        align-self: stretch;

                                        color: var(--Text-Grey, #707070);

                                        /* Caption */
                                        font-family: Nunito;
                                        font-size: 12px;
                                        font-style: normal;
                                        font-weight: 600;
                                        line-height: normal;
                                    }
                                    .comment-page{
                                        color: var(--Text-Grey, #707070);

                                        /* Caption */
                                        font-family: Nunito;
                                        font-size: 12px;
                                        font-style: normal;
                                        font-weight: 600;
                                        line-height: normal;
                                    }
                                }
                                .comment-w {
                                    p {
                                        color: var(--Text-Off-Black, #1D1E1C);

                                        /* Small body (bold) */
                                        font-family: Nunito;
                                        font-size: 14px;
                                        font-style: normal;
                                        font-weight: 700;
                                        line-height: normal;
                                        margin:0;
                                    }
                                }
                            }
                        }
                    }
                }

                .action-wrapper {
                    display: flex;
                    align-items: center;
                    gap: 28px;
                    align-self: stretch;

                    .completed-wrapper {
                        display: flex;
                        align-items: center;
                        gap: 15px;
                        flex: 1 0 0;

                        span {
                            color: var(--Text-Off-Black, #1D1E1C);

                            /* Body Regular */
                            font-family: Nunito;
                            font-size: 16px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 22px; /* 137.5% */
                        }

                        input {
                            width: 30px;
                            height: 30px;
                            border-radius: 4.376px;
                            border: 0.729px solid var(--Primary-Blue, #20234A);
                            background: var(--Primary-White, #FFF);

                            accent-color: var(--Primary-Blue);
                            margin:0;
                        }
                    }

                    .button-wrapper {

                    }
                }
            }
        }
    }
}




.lan-pdf-layout {
    display: flex;
    height: 100%;
    gap: 20px;
}

.pdf-column {
    flex: 2;
    overflow: auto;
}






.pdf-comment-marker {
    &.highlight {
        background-color: greenyellow !important;
    }
}

.lan-pdf-list-info {
    margin-top: 69px;
    display: flex;
    align-items: center;
    gap: 52px;
    align-self: stretch;
    span {
        color: var(--Text-Off-Black, #1D1E1C);

        /* Heading 3 */
        font-family: Nunito;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        flex: 1 0 0;
    }
    div {
        a{
            color: var(--Primary-Blue, #20234A);
            font-family: Nunito;
            font-size: var(--Font-Size-Scale-02, 14px);
            font-style: normal;
            font-weight: var(--Body-Font-Weight-Bold, 600);
            line-height: 100%; /* 14px */
            text-decoration-line: underline;
            text-decoration-style: solid;
            text-decoration-skip-ink: none;
            text-decoration-thickness: auto;
            text-underline-offset: auto;
            text-underline-position: from-font;
        }
    }
}

.lan-pdf-list {
    margin-top: 28px;
    padding-left: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    align-self: stretch;

    li {
        display: flex;
        padding: 24px 29px;
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        align-self: stretch;
        border-radius: 6px;
        border: 1px solid var(--primary-blue-30, rgba(32, 35, 74, 0.30));
        background: #FFF;

        /* Drop Shadow */
        box-shadow: 0 2px 10px 0 rgba(33, 33, 38, 0.07);

        .summary {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 26px;
            align-self: stretch;

            .deadline {
                display: flex;
                align-items: center;
                gap: 20px;
                align-self: stretch;
                .label {
                    display: flex;
                    padding: 4px 12px;
                    justify-content: center;
                    align-items: center;
                    gap: 10px;
                    border-radius: 40px;
                    border: 1px solid var(--primary-blue-30, rgba(32, 35, 74, 0.30));
                    background: #FFEDAE;
                    color: var(--Primary-Blue, #20234A);

                    /* Caption */
                    font-family: Nunito;
                    font-size: 12px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: normal;

                    &.passed {
                        border: 1px solid var(--primary-blue-30, rgba(32, 35, 74, 0.30));
                        background: #FFD5D3;
                    }
                }
            }
            .text {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                align-self: stretch;

                h3 {
                    color: var(--Text-Off-Black, #1D1E1C);

                    /* Heading 2 */
                    font-family: Nunito;
                    font-size: 24px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 30px; /* 125% */
                    margin: 0;
                }
                p {
                    color: var(--Text-Grey, #707070);
                    font-feature-settings: 'dlig' on;
                    font-family: Nunito;
                    font-size: 16px;
                    font-style: normal;
                    font-weight: var(--Body-Font-Weight-Regular, 400);
                    line-height: 140%; /* 22.4px */
                    letter-spacing: -0.32px;
                    margin: 0;
                }
            }
        }
        .bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            align-self: stretch;

            .action {
                display: flex;
                justify-content: flex-end;
                align-items: center;
                gap: 15px;
                flex: 1 0 0;

                span {
                    color: var(--Text-Off-Black);

                    /* Body Regular */
                    font-family: Nunito;
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 22px; /* 137.5% */
                }

                input {
                    width: 30px;
                    height: 30px;
                    border-radius: 4.376px;
                    border: 0.729px solid var(--Primary-Blue);
                    background: var(--Primary-White);
                    margin: 0;
                    accent-color: var(--Primary-Blue);
                }
            }
        }
    }
}