.app-pdf {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #d4d4d7;
}
.app-pdf-button {
    background-color: #efefef;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    list-style: none;
    margin: 0;
    padding: 6px 10px;
    text-align: center;
    transition: all 100ms ease;
    vertical-align: baseline;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    opacity: .9;

    &:hover {
        background-color: #efefef;
        border-color: #adadad;
        color: #222;
    }

    &:active {
        background-color: #e9e9e9;
        color: #111;
    }

    &:disabled {
        opacity: .5;
        pointer-events: none;
    }
}
.app-pdf-search {
    input {
        min-width: 300px;
        padding: 4px 6px;
        border: 1px solid #ccc;
        border-radius: 3px;
    }
}
.app-pdf-fullscreen {
    position: absolute;
    top: -1px;
    right: -1px;
    z-index: 1;
}
.app-pdf-scs {
    filter: blur(2px);
    opacity: .2;
}
@media print {
    .app-pdf {
        display: none !important;
    }
}

.app-notes-icon {
    position: relative;
    left: 2px;

    &._selected:after {
        content: '';
        position: absolute;
        inset: -1px;
        border: 2px dashed #3096fb;
    }
}

