/* set body transparent */
body{
    
    background-color: #f0f0f0;
}
/* adsense */
#adsense{
    text-align: center;
}

/* bookname text */
#bookname{
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 30px;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

/*book item empty style */
#bookitememtpy{
    position: absolute;
    width: auto;
    height: auto;
    background-color: #000000e6;
    padding: 14px;
    text-align: center;
    box-shadow: 3px 3px 6px #9999994d;
    margin : 14px;
    border-radius: 25px;
    

    font-size: 60px;
    color: #ffffff;
}

#bookitemdiv{
    text-align: center;
    padding-bottom: 10px;
}


/*bookitemitem style */
#bookitemitem{
    width: 150px;
    height: 215px;
    margin: 6px;
    display: inline-flex;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 3px 3px 6px #999999b3;
    transition: all .4s ease;
    text-align: center;
    text-decoration: none;
    color: #000000;
    
}

#bookitemitemdiv{
    width: 100%;
    height: 100%;
}

#bookitemitemname{
    overflow: hidden;
    text-overflow: clip;
    width: 100%;
    height: 23px;
    position: relative;
}

#bookitemitemdescription{
    overflow: hidden;
    text-overflow: clip;
    white-space: pre;
    width: 100%;
    height: 69px;
    position: relative;
    color: #b3b3b3;
}

#bookitemitemphoto{
    width: 100px;
    height: 100px;
    vertical-align: middle;
    object-fit: cover;
    border-radius: 25px;
    background: #ffffff;
    top:0px;
    margin: 6px;
    box-shadow: 3px 3px 6px #999999b3;
}

/* button */
#bookitemitemmore{
    margin: 8px;
    border-radius: 25px;
    box-shadow: 3px 3px 6px #9999994d;
}
#bookitemitemmore a{
    display: block;
    background: #ffffffe6;
    color: #000000;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
    border-radius: 25px;
    padding: 10px;
}
#bookitemitemmore a:hover{
    background-color: #b3b3b3;
    color: #ffffff;
}

/*loader*/
#bookitemitemloaderdiv{
    width: 100%;
    position: absolute;
    display: none;
    left: calc(50%);
}
#bookitemitemloader{
    border: 9px solid #9999994d;
    border-top: 9px solid #000000e6;
    border-right: 9px solid #000000e6;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}