.pdf-modal {
    display: none;
    position: fixed;
    z-index: 6;
    padding: 10px 0;
    left: -10vw;
    top: 0;
    width: 120%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-pdf-content {
    background-color: #fefefe;
    margin: auto;
    padding-bottom: 20px;
    border: 1px solid #888;
    width: 80%;
    height: calc(100% - 40px);
}

.pdf-close {
    text-align: center;
    color: #00b0f0;
    margin: 0 auto;
    font-size: 14px;
    margin-top: 7px;
}

.pdf-close:hover, .pdf-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}