@charset "utf-8";

/* document */
body {
    background: #F5F6F7;
}


/* pdf-container */
#pdf-container {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    margin-top: 0px;
    margin-bottom: 50px;
}

.pdf-page {
    /*width: 100%;
    height: auto;*/
    background: #fff;
    margin: 0 auto;
    cursor: pointer;
    /*transition: transform 0.3s ease !important;*/
}
.pdf-page:not(:last-child) {
    margin-bottom: 10px;
}
.pdf-page.zoomed {
    transform: scale(2);
    z-index: 10;
    position: relative;
}


/* popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 10;
}
.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98%;
    height: 98%;
    background-color: white;
    /*padding: 10px;*/
    border-radius: 5px;
    overflow: auto;
}
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    min-width: 48px;
    min-height: 48px;
    text-align: center;
    font-size: 2rem;
}