body {
    overflow: hidden;
    background-color: white;
}

#flipbook {
    margin: 1% auto;
}

#flipbook .turn-page {
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
}

#flipbook div {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}

#flipbook .page {
    background-color: white;
    border-radius: 20px;
}

.pdf-container #my-frame {
    width: 100%;
    height: 572px;
    border-radius: 20px;
    padding: 10px;
}

.btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 11%;
    left: 18%;
    position: absolute;
}

.btn-container button {
    padding: 5px;
    margin: 35px 25px;
    width: 50px;
    box-shadow: 0px 5px 15px #007bff;
}

.page-number-continer {
    display: flex;
    justify-content: center;
}

.page-number-continer span {
    background: #2a2a2e;
    color: white;
    border-radius: 10px 10px 0px 0px;
    padding: 1px 20px;
    font-size: smaller;
}

.navbar {
    text-align: right;
    background-color: rgb(255 255 255);
    margin: 0px 25% auto;
    border-radius: 30px;
    box-shadow: 5px 5px 30px -15px;
}

.navbar input {
    direction: rtl;
    border: solid 1px rgb(186 186 186);
    border-radius: 15px;
    transition: 0.5s;
    font-size: 12px;
    padding: 5px 10px;
}

.navbar input:focus {
    outline: none;
    border: solid 1px #bc6c25;
    box-shadow: 0px 5px 10px -5px #bc6c25;
}

.navbar i {
    font-size: 20px;
    color: #bc6c25;
    border-radius: 10px;
}

.navbar i:hover {
    cursor: pointer;
}

.navbar i:active {
    color: #753e0f;
}

#turn-cover {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 30px;
}

.book-pointer {
    position: absolute;
    color: white;
    top: 290px;
    left: 16%;
    transition: .5s;
}

.book-pointer i {
    z-index: 99;
    background-color: #bc6c25;
    position: relative;
    border-radius: 30px;
    padding: 10px 20px;
    transition: .5s;
    box-shadow: 0px 15px 40px -10px #ff800f;
    font-size: 150px;
}

.book-pointer i:hover {
    background-color: #bc6c25;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
}

.book-pointer i:active {
    box-shadow: none;
    background-color: #753e0f;
    transition: .25s;
}

.book-cover img {
    border-radius: 90px;
    width: 100%;
    height: 100%;
    padding: 25px;
    object-fit: cover;
}

.background-img {
    background-image: url(./img/background.png); width: 100%; height: 790px;
    background-size: cover;
    background-position: center center;
    z-index: -100;
    position: absolute;
    height: 100%;
}

.navbar-container {
    padding: 15px;
    padding-bottom: 0;
}

#flipbook .shadow{
    -webkit-box-shadow: 0 4px 10px -3px #666;
    -moz-box-shadow: 0 4px 10px #666;
    -ms-box-shadow: 0 4px 10px #666;
    -o-box-shadow: 0 4px 10px #666;
    box-shadow: 0 4px 10px -3px #666;
}
@media (min-width: 1000px) {
    #flipbook {
        width: 980px !important;
        height: 600px !important;
    }
    .turn-page-wrapper {
        width: 490px !important;
        height: 610px !important;
    }
    .page {
        width: 490px !important;
        height: 600px !important;
    }
}
@media only screen and (max-width: 1000px) {
    .navbar {
        margin: 0;
    }
    #flipbook {
        width: 800px !important;
        height: 600px !important;
    }
    .turn-page-wrapper {
        width: 800px !important;
    }
    .page {
        width: 800px !important;
    }
    .book-pointer {
        top: 60%;
        left: 15%;
    }
    .btn-container {
        left: 31%;
    }
}
@media only screen and (max-width: 835px) {
    #flipbook {
        width: 400px !important;
    }
    .turn-page-wrapper {
        width: 400px !important;
    }
    .page {
        width: 400px !important;
    }
    .book-cover img {
        border-radius: 40px;
        padding: 15px;
    }
    .btn-container {
        left: 12%;
    }
}
@media only screen and (max-width: 550px) {
    #flipbook {
        width: 300px !important;
        height: 515px !important;
    }
    .turn-page-wrapper {
        width: 300px !important;
        height: 515px;
    }
    .page {
        width: 300px !important;
        height: 515px;
    }
    .navbar {
        border-radius: 0;
    }
    .navbar-container {
        padding: 0;
        padding-bottom: 10px;
    }
    .btn-container {
        left: 0;
    }
    .pdf-container #my-frame {
        height: 487px;
    }
}
@media (max-width: 450px) {
    #search-page {
        width: 150px;
    }
}