body{
    font-family: vazirmatn;
}

body a{
    text-decoration: none;
}
.page_title_container{
    margin: 100px auto 0 auto;

    font-family: kalameh;
    font-size: 32px;
    color: #222;
    font-weight: 800;
    text-align: center;

}
.page_content_container{
    max-width: 1170px;
    /* background-color: bisque; */

    margin: 30px auto 0 auto;
}















.search_subtitle{
    font-family: vazirmatn !important;
    font-size: 20px;
    font-weight: 700;
    color: #222;
}







.product_search_resualt_title{
    margin: 70px auto 0 auto;
    font-family: vazirmatn !important;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    text-align: center;
}


.product_search_resualt_container{
    width: 1170px;
    /* background-color: tomato; */

    margin: 50px auto 0 auto;

    display: flex;
    flex-flow: row wrap;
    justify-content: right;
}



.book_detail_container{
    width: 250px;
    height: 355px;

    margin-right: 15px;
    margin-left: 15px;

    margin-top: 30px;
    margin-bottom: 30px;

    /* background-color: steelblue; */


    background-image: url(../images/carousel_book_container.svg);
    background-size: 235px 240px;
    background-position: bottom left;
    background-repeat: no-repeat;

    position: relative;
    filter: drop-shadow(0 0 10px #0005);
}


.book_detail_image{
    width: 180px;
    height: 247px;

    /* background-color: tan; */

    


    margin: auto;
    transform: translateX(-7px);

    filter: drop-shadow(0 10px 10px #0005);
}

.book_detail_image img{
    width: 180px;
    height: 247px;

    -webkit-mask-image: url(../images/carousel_book_cover.svg);
    mask-image: url(../images/carousel_book_cover.svg);

    object-fit: cover;
}

.book_detail_title{
    width: 192px;
    margin: 15px auto 0 auto;
    font-family: kalameh;
    font-weight: 900;
    font-size: 18px;
    color: #2a2a2a;
    line-height: 22px;
    text-align: center; 
    transform: translateX(-7px);

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.book_detail_price{
    width: 100px;
    margin: 12px auto 0 auto;
    font-family: kalameh;
    font-weight: bold;
    font-size: 16px;
    color: #42932e;
    line-height: 16px;
    text-align: center; 
    transform: translateX(-12px);
}

.book_detail_price_off{
    width: 100px;
    margin: 8px auto 0 auto;
    font-family: kalameh;
    font-weight: bold;
    font-size: 12px;
    color: #a02681;
    line-height: 12px;
    text-align: center; 
    transform: translateX(-15px);
    text-decoration:line-through;

}


.add_to_cart{
    width: 35px;
    height: 35px;
    background-color: #0b2643;
    border-radius: 100%;

    position: absolute;
    bottom: 76px;


    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;

}

.add_to_cart_icon{
    width: 17px;
    height: 17px;
    background-image: url(../icons/add_to_cart.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}


.not_find_product{
    margin: 50px auto 0 auto;
    text-align: center;

    font-family: kalameh;
    font-weight: 800;

    font-size: 24px;
    color: #222;

    /* clear: both; */
}









/*---------------------------------- post -----------------------------*/



.post_search_resualt_title{
    margin: 100px auto 0 auto;
    font-family: vazirmatn !important;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    text-align: center;
}


.post_search_resualt_container{
    width: 1170px;
        /* max-height: 2000px; */
    margin-top: 30px;
    display: flex;
    flex-flow: row wrap;
    justify-content: right;
}


.post_search_resualt_container h2{
    text-align: center;
    margin: auto;
}

.blog_content_container{
    width: 360px;
    height: 325px;
    margin: 30px 15px 0px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}

.blog_image{
    width: 360px;
    height: 235px;
    border-radius: 5px;
    -webkit-mask-image: url(../images/blog_mask.svg);
    mask-image: url(../images/blog_mask.svg);

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;

    background-image: url(../images/temp_blog/blog_image.jpg);
    background-size: cover;
    background-position: center;
}
.blog_image img{

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_info_container{
    width: 350px;
    height: 84px;
    overflow: hidden;

    display: flex;
    flex-flow: column nowrap;
}

.blog_publish_date{
    font-family: vazirmatn;
    font-size: 16px;
    font-weight: 200;
    line-height: 26px;
    color: var(--main_color);
}

.blog_title{
    margin-top: 6px;

    font-family: kalameh;
    font-size: 18px;
    font-weight: bold;
    line-height: 27px;
    color: var(--main_color);
    text-align: justify;
    text-align-last: right;
}











@media (max-width: 1100px ) {

    .product_search_resualt_container{
        width: 95%;
        margin-top: 0px;
        justify-content: center;
    }

    .post_search_resualt_container{
        width: 100%;
        /* overflow-x: hidden;

        transform: scale(95%); */
    }

    .blog_content_container{
        margin-left: 0;
        margin-right: 0;

        transform: scale(94%);
    }
    




}