
.flipbook {
    width: 1000px;
    height: 600px;
}

.flipbook .hard {
    background: #c0392b !important;
    color: #fff;
    font-weight: bold;
    border: none;
}

.flipbook .hard small{
    font-style: italic;
    font-weight: lighter;
    opacity: 0.7;
    font-size: 14px;
}

.flipbook .page {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page img{
    object-fit: cover;
    margin: auto;
}

.flipbook .page small{
    font-size: 14px;
    margin-bottom: 10px;
}
.navigation
{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.navigation button:hover
{
    background-color: #fe582d;
    color: #fff;
}
.navigation button
{
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 18px;
    padding: 7px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.flipbook {
    position: relative;
}

.flip-hint img
{
    height: 63px;
    float: left;
}
.flip-hint p{
    text-align: left;
    margin-top: 16px;
    padding-top: 5px;
    float: left;
    color: #ccc;
}
@keyframes fadeOut {
    0% { opacity: 0.8; transform: translateX(0); }
    50% { transform: translateX(-20px); }
    100% { opacity: 0; transform: translateX(-30px); }
}


