.pdf-block-head {
    display: flex;
    flex-flow: row;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.pdf-block-head .filename {
    flex: 1;
}

.pdf-block-head .buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.pdf-block-head .buttons .btn {
    text-transform: capitalize;
}

.pdf-block-head .buttons .btn-secondary span {
    color: #959595;
}

.pdf-block-wrapper {
    padding: 60px 100px;
    margin: 60px auto;
    border-radius: 10px;
    background: #ECEEF0;
    width: 100%;
}

.pdf-block-wrapper .pf {
    margin: 0 auto;
    box-shadow: unset;
}

#pdf2pdf2html__html__page-container {
    background: rgba(127, 255, 255, 0.0) !important;
    position: absolute;
}

#pdf2pdf2html__html__sidebar {
    display: none;
}

.pdf-block {
    width: calc(100%);
    height: calc(100vw * 1190 / 1000);
    overflow-x: visible !important;
    margin: 0;
    padding-left: 1px;
    position: relative;
}

.pdf-block.ps-container {
    overflow-x: visible !important;
}

.pdf-block-content {
    transform-origin: top left;
    transition: transform 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
}

.pdf-block .ps-container.ps-theme-default.ps-active-y .ps-scrollbar-y-rail {
    background-color: #fff;
}

@media screen and (max-width: 1279px) {
    .pdf-block-wrapper {
        width: 90%;
        padding: 60px 10px;
    }
}

@media screen and (max-width: 768px) {
    .pdf-block-head {
        flex-direction: column;
        align-items: start;
    }

    .pdf-block-wrapper {
        padding: 20px;
        border-radius: 5px;
    }
}