<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
#waitCursorOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.1);
    z-index: 9998;
}

#waitCursor {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    font-size: 40px;
}


/* Detail */

.mutaborBookLibraryDetailBackButton {
    margin-bottom: 50px;
}

.BookLibraryBackToOverview {
    margin-bottom: 20px;
    display: block;
}

.BookLibraryDetailRow {
    clear: both;
    overflow: hidden;
    margin-bottom: 10px;
}

.BookLibraryDetailLabel {
    float: left;
    font-weight: bold;
    min-width: 170px;
    margin-right: 20px;
}

.BookLibraryDetailValue {
    float: left;
}

    .BookLibraryDetailValue img {
        max-width: 355px;
    }

.BookLibraryDetailRowDescription {
    margin-top: 35px;
}

.BookLibraryDetailRowTableOfContents {
    margin-top: 35px;
}

    .BookLibraryDetailRowDescription .BookLibraryDetailLabel,
    .BookLibraryDetailRowTableOfContents .BookLibraryDetailLabel {
        float: none;
    }

    .BookLibraryDetailRowDescription .BookLibraryDetailValue,
    .BookLibraryDetailRowTableOfContents .BookLibraryDetailValue {
        float: none;
    }


@media screen and (max-width: 850px) {
    .BookLibraryDetailLabel {
        float: none;
        width: inherit;
    }

    .BookLibraryDetailValue {
        float: none;
    }
}
</pre></body></html>