
.fw-arrow-text-image-17 {
    bottom: 85px;
    right: 0 !important;
    z-index: 0;
}

/* PDF Book */
.book-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    border: 1px solid var(--secondary);
    background: var(--secondary);
    display: none;
    z-index: 1040;
    justify-content: center;
    align-items: center;
}

.book-page {
    width: 100%;
    height: 90%;
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

.book-page img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    pointer-events: none;
}

.book-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.zoom-controls {
    position: absolute;
    bottom: 1%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.book-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.book-nav.book-prev {
    left: 10px;
}

.book-nav.book-next {
    right: 10px;
}

.zoom-wrapper {
    transform-origin: 0 0;
    transition: transform 0.05s linear;
    position: relative;
    width: 100%;
    height: 100%;
}

.book-page.zoomed img {
    pointer-events: none;
}

html.no-scroll {
    scrollbar-width: none; /* Firefox */
}
body.no-scroll {
    -ms-overflow-style: none; /* Internet Explorer, Edge */
}
body.no-scroll::-webkit-scrollbar,
body.no-scroll::-webkit-scrollbar-button {
    display: none; /* Chrome */
}




