.custom-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translateX(-50%) translateY(-50%);
}
.custom-loader {
    display: flex;
    width: 300px;
    height: 300px;
    border: 5px solid #6D42F3;
    background-color: #ffffff;
    border-radius: 50%;
}

.book-wrapper {
    width: 150px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.custom-loader h3 {
    font-size: 26px;
    color: #6D42F3;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
}

.book {
    width: 100%;
    height: auto;
    filter: drop-shadow(10px 10px 5px rgba(0, 0, 0, 0.137));
}

.book-wrapper .book-page {
    width: 50%;
    height: auto;
    position: absolute;
    animation: paging 0.15s linear infinite;
    transform-origin: left;
}

#fullPageloader.custom-loader {
    display: none !important;
}

@keyframes paging {
    0% {
        transform: rotateY(0deg) skewY(0deg);
    }

    50% {
        transform: rotateY(90deg) skewY(-20deg);
    }

    100% {
        transform: rotateY(180deg) skewY(0deg);
    }
}



@media screen and (max-width:767px) {
    .custom-loader {
    display: flex;
    width: 200px;
    height: 200px;
}
/* .book-wrapper svg{
    width: 100px !important;
    height: 80px;
} */


}













