.flipbookContainer{
    position: relative;
    width: 100%;
    /* overflow: hidden; */
    display: flex;
    justify-content: center;
}

.flipbookContainer .proxy{
    position:absolute;
    max-width: 50%;
    visibility: hidden;
    pointer-events: none;
    user-select: none;
    display: grid;
    grid-auto-rows: max-content;
    height: 0;
    overflow: hidden;
}

.flipbookContainer .c-flipbook{
    position: static;
    transition: transform 0.5s ease;
}

.flipbookContainer .c-flipbook:has(> .is-active:nth-child(2)){
    transform: translateX(-25%);
}

.flipbookContainer .c-flipbook:has(> .is-active:nth-last-child(2)){
    transform: translateX(25%);
}

.flipbookContainer .c-flipbook__page{
    height: 100%;
    background-color: white;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}

.flipbookContainer .c-flipbook__page:nth-child(2){
    box-shadow: none !important;
    pointer-events: none;
    user-select: none;
}

.flipbookContainer .c-flipbook__page:not(:nth-child(2)):after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    user-select: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 5%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
}

.flipbookContainer .c-flipbook__page:nth-child(even):after{
    transform: rotateY(180deg);
}

.flipbookContainer .c-flipbook__page.hard-cover:after{
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 4%, rgba(0, 0, 0, 0.15) 5%, rgba(0, 0, 0, 0.15) 7%, rgba(0, 0, 0, 0) 8%, rgba(0, 0, 0, 0) 100%);
}