.modal .modal-content{
    border:0;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.2);
}

.modal .modal-header{
    padding:1rem 1.5rem;
    border-bottom:1px solid #f3f3f3;
}

.modal .modal-body{
    padding:0;
}

.modal .close{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#f5f5f5;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.25s;
}

.modal .close:hover{
    background:#DE869E;
    color:#fff;
    transform:rotate(90deg);
}

.modal .close:focus{
    outline:none;
    box-shadow:none;
}

#pdfViewer{
    width:100%;
    height:100%;
    border:0;
}

#pdfModal .modal-dialog{
    max-width: 1100px;
}

#pdfModal .modal-content{
    height: 85vh;
    display:flex;
    flex-direction:column;
}

#pdfModal .modal-body{
    padding:0;
    overflow:hidden;
    flex:1;
}

@media (max-width:992px){

    #pdfModal .modal-content{
        height:75vh;
    }

}

@media (max-width:576px){

    #pdfModal .modal-dialog{
        margin:.5rem;
    }

    #pdfModal .modal-content{
        height:65vh;
    }

}