﻿
.flipbook {
    background-color: #9e3f2b;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 12px;
    margin: 20px auto;
}
  
.flipbook .page {
    overflow-y: auto;
    background-color: #f5f4ee;
}
    .flipbook .odd {
        
    }
     .flipbook .even {
        border-left: 4px solid #bcb8a3
    }
    .flipbook .turn-page {
       
       
    }

    .flipbook .cover {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #9e3f2b;
    }

        .flipbook .cover h1 {
            font-family: 'barla001livanur';
            color: white;
            text-align: center;
            font-size: 94px;
            margin: 0px;
        }

    .flipbook .loader {
        background-image: url(loader.gif);
        width: 24px;
        height: 24px;
        display: block;
        position: absolute;
        top: 238px;
        left: 188px;
    }



    .flipbook .data {
        text-align: center;
        font-size: 40px;
        color: #999;
        line-height: 500px;
    }

/*navigasyon bar*/


.nav-bar {
    position: fixed;
    left: 15%;
    right: 15%;
    bottom: 8px;
}

.navbar {
    border-radius: 12px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.text-selection-toolbar {
    position: absolute;
    display: none;
    background-color: #ebebea;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    -webkit-filter: drop-shadow(0 1px 10px rgba(113,158,206,0.8));
}

    .text-selection-toolbar .buttons {
        background-color: #cec6b3;
        color: #101010;
        border: none;
        padding: 4px;
        margin: 0 2px;
        cursor: pointer;
        border-radius: 5px;
        font-size: 14px;
    }


/* ::-webkit-scrollbar */
.flipbook ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background: -webkit-linear-gradient(0, #cac7b4 50%, white 100%);
}

/* Track */
.flipbook ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #b5b29c;
    border-radius: 3px;
}

/* Handle */
.flipbook ::-webkit-scrollbar-thumb {
    background: #b5b29c;
    border-radius: 3px;
}

    /* Handle on hover */
    .flipbook ::-webkit-scrollbar-thumb:hover {
        background: #95927c;
        cursor: pointer;
    }
