.blog-detail-left-box,
.blog-detail-right-box{
    padding: 30px;
}
.category-widget ul li > a {
    text-align: left;
}
.blog-updated-date{
    display: flex;
    justify-content: flex-end;
}
.blog-img {
    border-radius: 5px;
    width: 100%;
    height: auto;
}

.blog-content {
    padding-top: 10px;
    padding-bottom: 10px;
}

.blog-category {
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    padding: 5px;
    background-color: #f0631b;
}
.blog-date {
    margin-left: 5px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    padding: 5px;
    border: 1px solid #bebebe;
}

.category-widget ul li {
    display: block;
}
.category-widget ul li > a {
    display: block;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}
.category-widget ul li > a:hover,
.category-widget ul li > a:focus {
    text-decoration: none;
}

.adv-image{
    width: 100%;
    height: auto;
    border: 1px solid #ccc7c7;
    border-radius: 10px;
}

/*****share icon*****/
.icon-bar{
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    gap: 10px;
    padding: 10px 0;
}
.icon-box{
    position: relative;
}
.icon-box .iconlink{
    border-radius: 50%;
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#custom-tooltip {
    display: none;
    padding: 5px;
    background-color: #5b0f71;
    border-radius: 5px;
    position: absolute;
    right: 5px;
}

/*popup modal*/
.popup-modal{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 360px;
    transition: bottom 0.4s, opacity 0.4s;
    z-index: 2;
    height: 240px;
}
.popup-top-content .popup-close-icon{
    position: absolute;
    top: 10px;
    right: 13px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
}
.popup-icon-txt{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    font-size: 17px;
}
.popup-image{
    width: 100%;
    height: auto;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
}
#popupBottomDialog{
  display: none;
}
/*popup modal end*/

/* comment box */
.comment-box{
    padding: 20px;
    background: #f6f1f1;
    border-radius: 20px;
    margin-top: 20px;
}

.comment-detail-box{
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-user-img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-user-name{
    font-size: 16px;
    font-weight: 600;
    color: #3a519f;
}

.comment-user-msg{
    font-size: 14px;
    color: #585353;
}

.comment-time{
    font-size: 12px;
    color: #585353;
}

.comment-count{
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background: #fb881e;
    border-radius: 10px;
    padding: 4px 14px;
    border-radius: 20px;
    padding: 5px 12px;
}

@media (min-width: 480px) and (max-width: 991px) {
    .blog-detail-left-box,
    .blog-detail-right-box{
        padding: 15px;
    }
    .icon-bar{
        gap: 8px;
        justify-content: end;
    }
    .icon-box .iconlink{
        width: 34px;
        height: 34px;
    }

    .popup-modal{
        width: 260px;
        height: 178px;
    }
}
@media (min-width: 320px) and (max-width: 479px) {
    .blog-detail-left-box,
    .blog-detail-right-box{
        padding: 10px;
    }
    .icon-bar{
        justify-content: start;
    }
    .icon-box .iconlink{
        width: 25px;
        height: 25px
    }

    .popup-modal{
        width: 260px;
        height: 178px;
    }

}