/*
==================================================
GovtJobPreparation.com
Previous Papers
Part-1 : Base + Hero + Search + Filters
==================================================
*/


/*================================================
Main Page
================================================*/

.gjp-previous-papers-page{

    min-height:100vh;

    padding:40px 0 70px;

    background:#f8fafc;

}


.gjp-previous-papers-container{

    width:100%;

    max-width:1120px;

    margin:0 auto;

    padding:0 20px;

}


/*================================================
Breadcrumb
================================================*/

.gjp-previous-papers-page
.gjp-breadcrumb{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:9px;

    margin-bottom:28px;

    font-size:13px;

}


.gjp-previous-papers-page
.gjp-breadcrumb a{

    color:#2563eb;

    text-decoration:none;

    font-weight:650;

}


.gjp-previous-papers-page
.gjp-breadcrumb a:hover{

    text-decoration:underline;

}


.gjp-previous-papers-page
.gjp-breadcrumb-separator{

    color:#94a3b8;

    font-size:17px;

}


.gjp-previous-papers-page
.gjp-breadcrumb-current{

    color:#64748b;

    font-weight:550;

}


/*================================================
Hero
================================================*/

.gjp-previous-papers-hero{

    position:relative;

    overflow:hidden;

    margin-bottom:25px;

    padding:42px 45px;

    border:1px solid #dbeafe;

    border-radius:22px;

    background:

        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fbff 55%,
            #eff6ff 100%
        );

    box-shadow:
        0 8px 28px rgba(15,23,42,.05);

}


.gjp-previous-papers-hero::after{

    content:"";

    position:absolute;

    width:210px;

    height:210px;

    right:-75px;

    top:-95px;

    border-radius:50%;

    background:rgba(37,99,235,.06);

}


.gjp-previous-hero-content{

    position:relative;

    z-index:1;

    max-width:760px;

}


.gjp-previous-hero-badge{

    display:inline-flex;

    align-items:center;

    padding:7px 14px;

    margin-bottom:13px;

    border-radius:30px;

    background:#dbeafe;

    color:#2563eb;

    font-size:11px;

    line-height:1.3;

    font-weight:750;

    letter-spacing:.1px;

}


.gjp-previous-papers-hero h1{

    margin:0 0 12px;

    color:#0f172a;

    font-size:36px;

    line-height:1.3;

    font-weight:780;

    letter-spacing:-.4px;

}


.gjp-previous-papers-hero p{

    max-width:700px;

    margin:0;

    color:#64748b;

    font-size:15px;

    line-height:1.8;

}


/*================================================
Filter Section
================================================*/

.gjp-previous-filter-section{

    margin-bottom:32px;

}


.gjp-previous-filter-card{

    display:grid;

    grid-template-columns:
        minmax(250px,1.5fr)
        repeat(3,minmax(150px,1fr));

    gap:14px;

    padding:22px;

    border:1px solid #e2e8f0;

    border-radius:18px;

    background:#ffffff;

    box-shadow:
        0 7px 24px rgba(15,23,42,.045);

}


/*================================================
Search
================================================*/

.gjp-paper-search,

.gjp-paper-filter{

    min-width:0;

}


.gjp-paper-search label,

.gjp-paper-filter label{

    display:block;

    margin-bottom:7px;

    color:#334155;

    font-size:12px;

    line-height:1.4;

    font-weight:700;

}


.gjp-paper-search-box{

    position:relative;

}


.gjp-search-icon{

    position:absolute;

    left:13px;

    top:50%;

    transform:translateY(-50%);

    color:#94a3b8;

    font-size:19px;

    line-height:1;

    pointer-events:none;

}


.gjp-paper-search-box input{

    width:100%;

    height:44px;

    padding:0 13px 0 38px;

    border:1px solid #dbe2ea;

    border-radius:9px;

    outline:none;

    background:#ffffff;

    color:#0f172a;

    font-family:inherit;

    font-size:13px;

    transition:

        border-color .2s ease,

        box-shadow .2s ease;

}


.gjp-paper-search-box input::placeholder{

    color:#94a3b8;

}


.gjp-paper-search-box input:focus{

    border-color:#60a5fa;

    box-shadow:

        0 0 0 3px rgba(37,99,235,.08);

}


/*================================================
Select Filters
================================================*/

.gjp-paper-filter select{

    width:100%;

    height:44px;

    padding:0 35px 0 12px;

    border:1px solid #dbe2ea;

    border-radius:9px;

    outline:none;

    background:#ffffff;

    color:#475569;

    font-family:inherit;

    font-size:13px;

    font-weight:550;

    cursor:pointer;

    transition:

        border-color .2s ease,

        box-shadow .2s ease;

}


.gjp-paper-filter select:focus{

    border-color:#60a5fa;

    box-shadow:

        0 0 0 3px rgba(37,99,235,.08);

}


/*================================================
Paper List Header
================================================*/

.gjp-previous-papers-list-section{

    margin-top:5px;

}


.gjp-previous-papers-list-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    margin-bottom:20px;

}


.gjp-previous-section-heading{

    display:flex;

    align-items:center;

    gap:12px;

}


.gjp-previous-section-heading h2{

    margin:0;

    color:#0f172a;

    font-size:25px;

    line-height:1.4;

    font-weight:750;

}


.gjp-heading-line{

    width:40px;

    height:4px;

    border-radius:10px;

    background:#2563eb;

}


.gjp-paper-result-count{

    color:#64748b;

    font-size:12px;

    font-weight:650;

}


/*================================================
Tablet
================================================*/

@media (max-width:1000px){

    .gjp-previous-filter-card{

        grid-template-columns:
            minmax(220px,1.5fr)
            repeat(2,minmax(150px,1fr));

    }


    .gjp-paper-search{

        grid-column:1 / -1;

    }

}


/*================================================
Mobile
================================================*/

@media (max-width:650px){

    .gjp-previous-papers-page{

        padding:30px 0 55px;

    }


    .gjp-previous-papers-container{

        padding:0 15px;

    }


    .gjp-previous-papers-hero{

        padding:30px 23px;

        border-radius:18px;

    }


    .gjp-previous-papers-hero h1{

        font-size:29px;

    }


    .gjp-previous-papers-hero p{

        font-size:14px;

    }


    .gjp-previous-filter-card{

        grid-template-columns:1fr;

        padding:18px;

        border-radius:16px;

    }


    .gjp-paper-search{

        grid-column:auto;

    }


    .gjp-previous-papers-list-header{

        align-items:flex-start;

        flex-direction:column;

        gap:8px;

    }


    .gjp-previous-section-heading h2{

        font-size:23px;

    }

}


/*================================================
Small Mobile
================================================*/

@media (max-width:400px){

    .gjp-previous-papers-hero{

        padding:27px 19px;

    }


    .gjp-previous-papers-hero h1{

        font-size:26px;

    }


    .gjp-previous-filter-card{

        padding:15px;

    }

}
/*
==================================================
GovtJobPreparation.com
Previous Papers
Part-2 : Paper Cards + Grid + View PDF
==================================================
*/


/*================================================
Paper Grid
================================================*/

.gjp-previous-papers-grid{

    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:20px;

}


/*================================================
Paper Card
================================================*/

.gjp-previous-paper-card{

    display:flex;

    flex-direction:column;

    min-width:0;

    overflow:hidden;

    background:#ffffff;

    border:1px solid #e2e8f0;

    border-radius:18px;

    box-shadow:
        0 7px 24px rgba(15,23,42,.045);

    transition:

        transform .25s ease,

        border-color .25s ease,

        box-shadow .25s ease;

}


.gjp-previous-paper-card:hover{

    transform:translateY(-3px);

    border-color:#bfdbfe;

    box-shadow:
        0 13px 32px rgba(15,23,42,.08);

}


/*================================================
Card Top
================================================*/

.gjp-paper-card-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:15px;

    padding:20px 20px 0;

}


/*================================================
PDF Icon
================================================*/

.gjp-paper-icon{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    border:1px solid #fecaca;

    border-radius:12px;

    background:#fef2f2;

}


.gjp-paper-icon span{

    color:#dc2626;

    font-size:10px;

    font-weight:800;

    letter-spacing:.3px;

}


/*================================================
Paper Type
================================================*/

.gjp-paper-type{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:6px 10px;

    border-radius:20px;

    background:#f1f5f9;

    color:#64748b;

    font-size:10px;

    line-height:1.3;

    font-weight:700;

    white-space:nowrap;

}


/*================================================
Card Content
================================================*/

.gjp-paper-card-content{

    flex:1;

    padding:20px;

}


.gjp-paper-card-content h3{

    margin:0 0 9px;

    color:#0f172a;

    font-size:18px;

    line-height:1.5;

    font-weight:750;

}


.gjp-paper-card-content p{

    margin:0 0 19px;

    color:#64748b;

    font-size:13px;

    line-height:1.7;

}


/*================================================
Paper Metadata – Attractive Info Boxes
================================================*/

.gjp-paper-meta{
    display:flex;
    align-items:stretch;
    gap:1px;
    overflow:hidden;

    border:1px solid #dbeafe;
    border-radius:10px;

    background:#dbeafe;
}

.gjp-paper-meta span{
    flex:1;
    min-width:0;

    padding:11px 9px;

    color:#172554;
    font-size:10px;
    line-height:1.5;
    text-align:center;

    background:#f4f8ff;

    border-right:none;

    transition:
        background .2s ease,
        color .2s ease;
}

.gjp-paper-meta span:nth-child(2){
    background:#f8fbff;
}

.gjp-paper-meta span:nth-child(3){
    background:#f4f8ff;
}

.gjp-paper-meta span:last-child{
    border-right:none;
}

.gjp-paper-meta strong{
    display:block;

    margin-bottom:3px;

    color:#64748b;

    font-size:8.5px;
    font-weight:750;

    text-transform:uppercase;
    letter-spacing:.3px;
}

.gjp-paper-meta span:hover{
    background:#eaf2ff;
    color:#1d4ed8;
}


/*================================================
Card Footer
================================================*/

.gjp-paper-card-footer{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:15px;

    padding:15px 20px;

    border-top:1px solid #eef2f7;

    background:#fcfdff;

}


.gjp-paper-size{

    color:#94a3b8;

    font-size:11px;

    font-weight:600;

}


/*================================================
View PDF Button
================================================*/

.gjp-view-pdf-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:7px;

    min-height:39px;

    padding:0 14px;

    border:1px solid #2563eb;

    border-radius:8px;

    background:#2563eb;

    color:#ffffff;

    font-family:inherit;

    font-size:12px;

    font-weight:700;

    cursor:pointer;

    box-shadow:
        0 5px 14px rgba(37,99,235,.14);

    transition:

        background .2s ease,

        border-color .2s ease,

        transform .2s ease,

        box-shadow .2s ease;

}


.gjp-view-pdf-btn span{

    font-size:13px;

    line-height:1;

}


.gjp-view-pdf-btn:hover{

    border-color:#1d4ed8;

    background:#1d4ed8;

    color:#ffffff;

    transform:translateY(-1px);

    box-shadow:
        0 7px 18px rgba(37,99,235,.20);

}


.gjp-view-pdf-btn:focus-visible{

    outline:3px solid rgba(37,99,235,.18);

    outline-offset:2px;

}


/*================================================
No Results
================================================*/

.gjp-no-paper-results{

    margin-top:20px;

    padding:55px 25px;

    text-align:center;

    border:1px solid #e2e8f0;

    border-radius:18px;

    background:#ffffff;

}


.gjp-no-paper-icon{

    width:54px;

    height:54px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 15px;

    border-radius:14px;

    background:#f1f5f9;

    color:#64748b;

    font-size:11px;

    font-weight:800;

}


.gjp-no-paper-results h3{

    margin:0 0 7px;

    color:#0f172a;

    font-size:19px;

    font-weight:750;

}


.gjp-no-paper-results p{

    margin:0;

    color:#64748b;

    font-size:13px;

    line-height:1.7;

}


/*================================================
Load More
================================================*/

.gjp-paper-load-more{

    display:flex;

    justify-content:center;

    margin-top:28px;

}


.gjp-load-more-papers-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    min-height:44px;

    padding:0 20px;

    border:1px solid #dbe2ea;

    border-radius:9px;

    background:#ffffff;

    color:#475569;

    font-family:inherit;

    font-size:13px;

    font-weight:700;

    cursor:pointer;

    transition:

        background .2s ease,

        border-color .2s ease,

        color .2s ease,

        transform .2s ease;

}


.gjp-load-more-papers-btn span{

    font-size:16px;

}


.gjp-load-more-papers-btn:hover{

    border-color:#93c5fd;

    background:#eff6ff;

    color:#2563eb;

    transform:translateY(-1px);

}


/*================================================
Tablet
================================================*/

@media (max-width:800px){

    .gjp-previous-papers-grid{

        grid-template-columns:1fr;

    }


    .gjp-previous-paper-card{

        max-width:100%;

    }

}


/*================================================
Mobile
================================================*/

@media (max-width:600px){

    .gjp-previous-papers-grid{

        gap:15px;

    }


    .gjp-paper-card-top{

        padding:17px 17px 0;

    }


    .gjp-paper-card-content{

        padding:17px;

    }


    .gjp-paper-card-content h3{

        font-size:17px;

    }


    .gjp-paper-card-content p{

        font-size:12.5px;

    }


    .gjp-paper-card-footer{

        padding:13px 17px;

    }


    .gjp-view-pdf-btn{

        min-height:38px;

        padding:0 12px;

    }

}


/*================================================
Small Mobile
================================================*/

@media (max-width:400px){

    .gjp-paper-card-top{

        align-items:flex-start;

    }


    .gjp-paper-type{

        white-space:normal;

        text-align:right;

    }


    .gjp-paper-meta span{

        padding:10px 5px;

        font-size:9px;

    }


    .gjp-paper-meta strong{

        font-size:8px;

    }


    .gjp-paper-card-footer{

        align-items:stretch;

        flex-direction:column;

    }


    .gjp-view-pdf-btn{

        width:100%;

    }

}
/*
==================================================
GovtJobPreparation.com
Previous Papers
Part-3 : PDF Viewer
==================================================
*/


/*================================================
PDF Viewer Overlay
================================================*/

.gjp-pdf-viewer-overlay{

    position:fixed;

    inset:0;

    z-index:999999;

    display:none;

    width:100%;

    height:100%;

    background:#0f172a;

}


.gjp-pdf-viewer-overlay.active{

    display:block;

}


/*================================================
PDF Viewer Main
================================================*/

.gjp-pdf-viewer{

    display:flex;

    flex-direction:column;

    width:100%;

    height:100%;

    background:#f1f5f9;

}


/*================================================
Viewer Header
================================================*/

.gjp-pdf-viewer-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    min-height:68px;

    padding:0 22px;

    background:#ffffff;

    border-bottom:1px solid #e2e8f0;

    box-shadow:
        0 3px 12px rgba(15,23,42,.08);

}


.gjp-pdf-viewer-title{

    display:flex;

    align-items:center;

    min-width:0;

    gap:14px;

}


.gjp-pdf-viewer-back{

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    border:1px solid #e2e8f0;

    border-radius:9px;

    background:#ffffff;

    color:#475569;

    font-family:inherit;

    font-size:20px;

    line-height:1;

    cursor:pointer;

    transition:

        background .2s ease,

        border-color .2s ease,

        color .2s ease;

}


.gjp-pdf-viewer-back:hover{

    border-color:#bfdbfe;

    background:#eff6ff;

    color:#2563eb;

}


.gjp-pdf-viewer-title > div{

    display:flex;

    flex-direction:column;

    min-width:0;

}


.gjp-pdf-viewer-title strong{

    overflow:hidden;

    color:#0f172a;

    font-size:14px;

    line-height:1.4;

    font-weight:750;

    text-overflow:ellipsis;

    white-space:nowrap;

}


.gjp-pdf-viewer-title span{

    margin-top:2px;

    color:#94a3b8;

    font-size:11px;

    line-height:1.4;

}


/*================================================
Viewer Actions
================================================*/

.gjp-pdf-viewer-actions{

    display:flex;

    align-items:center;

    gap:9px;

    flex-shrink:0;

}


.gjp-pdf-download-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:7px;

    min-height:40px;

    padding:0 15px;

    border:1px solid #2563eb;

    border-radius:8px;

    background:#2563eb;

    color:#ffffff;

    font-size:12px;

    font-weight:700;

    text-decoration:none;

    box-shadow:
        0 5px 14px rgba(37,99,235,.16);

    transition:

        background .2s ease,

        border-color .2s ease,

        transform .2s ease,

        box-shadow .2s ease;

}


.gjp-pdf-download-btn:hover{

    border-color:#1d4ed8;

    background:#1d4ed8;

    color:#ffffff;

    transform:translateY(-1px);

    box-shadow:
        0 7px 18px rgba(37,99,235,.22);

}


.gjp-pdf-download-btn > span:first-child{

    font-size:18px;

    line-height:1;

}


.gjp-pdf-close-btn{

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid #e2e8f0;

    border-radius:9px;

    background:#ffffff;

    color:#64748b;

    font-family:inherit;

    font-size:23px;

    line-height:1;

    cursor:pointer;

    transition:

        background .2s ease,

        border-color .2s ease,

        color .2s ease;

}


.gjp-pdf-close-btn:hover{

    border-color:#fecaca;

    background:#fef2f2;

    color:#dc2626;

}


/*================================================
Viewer Content
================================================*/

.gjp-pdf-viewer-content{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    flex:1;

    min-height:0;

    padding:18px;

    background:#e2e8f0;

}


/*================================================
PDF Frame
================================================*/

.gjp-pdf-frame{

    display:block;

    width:100%;

    height:100%;

    min-height:0;

    border:0;

    border-radius:4px;

    background:#ffffff;

    box-shadow:
        0 8px 28px rgba(15,23,42,.16);

}


/*================================================
Loading
================================================*/

.gjp-pdf-loading{

    position:absolute;

    inset:0;

    z-index:2;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    background:#f1f5f9;

}


.gjp-pdf-loading.hidden{

    display:none;

}


.gjp-pdf-loading-icon{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:12px;

    border-radius:14px;

    background:#fee2e2;

    color:#dc2626;

    font-size:10px;

    font-weight:800;

}


.gjp-pdf-loading p{

    margin:0;

    color:#64748b;

    font-size:13px;

    font-weight:600;

}


/*================================================
PDF Error
================================================*/

.gjp-pdf-viewer-error{

    position:absolute;

    inset:0;

    z-index:3;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    padding:25px;

    text-align:center;

    background:#f8fafc;

}


.gjp-pdf-error-icon{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:15px;

    border-radius:15px;

    background:#fee2e2;

    color:#dc2626;

    font-size:11px;

    font-weight:800;

}


.gjp-pdf-viewer-error h3{

    margin:0 0 7px;

    color:#0f172a;

    font-size:20px;

    font-weight:750;

}


.gjp-pdf-viewer-error p{

    max-width:430px;

    margin:0 0 20px;

    color:#64748b;

    font-size:13px;

    line-height:1.7;

}


.gjp-pdf-error-btn{

    min-height:42px;

    padding:0 20px;

    border:1px solid #dbe2ea;

    border-radius:8px;

    background:#ffffff;

    color:#475569;

    font-family:inherit;

    font-size:13px;

    font-weight:700;

    cursor:pointer;

}


.gjp-pdf-error-btn:hover{

    border-color:#93c5fd;

    background:#eff6ff;

    color:#2563eb;

}


/*================================================
Viewer Footer
================================================*/

.gjp-pdf-viewer-footer{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:15px;

    min-height:42px;

    padding:0 20px;

    background:#ffffff;

    border-top:1px solid #e2e8f0;

    color:#94a3b8;

    font-size:10px;

    font-weight:600;

}


.gjp-pdf-viewer-footer strong{

    color:#64748b;

    font-weight:700;

}


/*================================================
Tablet
================================================*/

@media (max-width:700px){

    .gjp-pdf-viewer-header{

        min-height:62px;

        padding:0 14px;

        gap:10px;

    }


    .gjp-pdf-viewer-title{

        gap:10px;

    }


    .gjp-pdf-viewer-back,

    .gjp-pdf-close-btn{

        width:37px;

        height:37px;

    }


    .gjp-pdf-download-btn{

        width:40px;

        height:40px;

        min-height:40px;

        padding:0;

    }


    .gjp-download-text{

        display:none;

    }


    .gjp-pdf-viewer-content{

        padding:8px;

    }


    .gjp-pdf-viewer-footer{

        min-height:38px;

        padding:0 12px;

    }

}


/*================================================
Mobile
================================================*/

@media (max-width:480px){

    .gjp-pdf-viewer-header{

        min-height:58px;

    }


    .gjp-pdf-viewer-title strong{

        max-width:170px;

        font-size:12px;

    }


    .gjp-pdf-viewer-title span{

        font-size:9px;

    }


    .gjp-pdf-viewer-back,

    .gjp-pdf-close-btn{

        width:35px;

        height:35px;

    }


    .gjp-pdf-download-btn{

        width:35px;

        height:35px;

    }


    .gjp-pdf-viewer-actions{

        gap:5px;

    }


    .gjp-pdf-viewer-content{

        padding:4px;

    }


    .gjp-pdf-viewer-footer{

        font-size:9px;

    }

}
/*
==================================================
GovtJobPreparation.com
Previous Papers
Part-4 : Final Cleanup + Note + Accessibility
==================================================
*/


/*================================================
Information Note
================================================*/

.gjp-previous-papers-note{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-top:35px;

    padding:20px 22px;

    border:1px solid #dbeafe;

    border-radius:15px;

    background:#f8fbff;

}


.gjp-previous-note-icon{

    width:38px;

    height:38px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    border-radius:10px;

    background:#dbeafe;

    color:#2563eb;

    font-size:16px;

    font-weight:800;

}


.gjp-previous-note-content{

    min-width:0;

}


.gjp-previous-note-content h3{

    margin:0 0 5px;

    color:#334155;

    font-size:14px;

    line-height:1.5;

    font-weight:750;

}


.gjp-previous-note-content p{

    margin:0;

    color:#64748b;

    font-size:12px;

    line-height:1.7;

}


/*================================================
Focus Accessibility
================================================*/

.gjp-previous-papers-page
button:focus-visible,

.gjp-previous-papers-page
input:focus-visible,

.gjp-previous-papers-page
select:focus-visible,

.gjp-previous-papers-page
a:focus-visible{

    outline:3px solid rgba(37,99,235,.20);

    outline-offset:3px;

}


/*================================================
Disabled Buttons
================================================*/

.gjp-previous-papers-page
button:disabled{

    opacity:.55;

    cursor:not-allowed;

    transform:none;

}


/*================================================
Hidden Utility
================================================*/

.gjp-previous-papers-page
.is-hidden{

    display:none !important;

}


/*================================================
Prevent Background Scroll
================================================*/

body.gjp-pdf-viewer-open{

    overflow:hidden;

}


/*================================================
PDF Viewer Active State
================================================*/

.gjp-pdf-viewer-overlay.active{

    animation:gjpPdfViewerFadeIn .18s ease;

}


@keyframes gjpPdfViewerFadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}


/*================================================
Reduced Motion
================================================*/

@media (prefers-reduced-motion:reduce){

    .gjp-previous-papers-page *{

        scroll-behavior:auto !important;

        transition:none !important;

        animation:none !important;

    }

}


/*================================================
Tablet Cleanup
================================================*/

@media (max-width:800px){

    .gjp-previous-papers-note{

        margin-top:28px;

    }

}


/*================================================
Mobile
================================================*/

@media (max-width:600px){

    .gjp-previous-papers-note{

        gap:12px;

        margin-top:25px;

        padding:17px;

        border-radius:13px;

    }


    .gjp-previous-note-icon{

        width:35px;

        height:35px;

    }


    .gjp-previous-note-content h3{

        font-size:13px;

    }


    .gjp-previous-note-content p{

        font-size:11.5px;

        line-height:1.65;

    }

}


/*================================================
Small Mobile
================================================*/

@media (max-width:400px){

    .gjp-previous-papers-note{

        align-items:flex-start;

        padding:15px;

    }


    .gjp-previous-note-icon{

        width:32px;

        height:32px;

        border-radius:8px;

        font-size:14px;

    }

}


/*================================================
Final Page Spacing
================================================*/

.gjp-previous-papers-list-section
+ .gjp-previous-papers-note{

    margin-bottom:5px;

}