.blog-detail{
    padding: 0px 5%;
}
.blog{
    display: flex;
}
.b-crumb{
    padding: 20px 5%;
}
.breadcrumb-item a{
    color: #000;
}
.sidebar{
    padding: 5% 1%;
}
.sidebar .related-title{
    font-size: 18px;
    font-weight: bold;
    margin: 1rem;
}
.blog-box{
    border: 1px solid lightgray;
    border-radius: 20px;
    z-index: 1;
    position: relative;
}
.blog-img{
    overflow: hidden; 
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.blog-title{
    padding: 0.5rem;
}
.b-name{
    color: #000;
    font-weight: bold;
    height: 2rem;
}
.blog-box:hover img {
    transform: scale(1.1);
    transition: 0.5s;
}
.title-comment{
    margin-top: 30px;
    padding: 0px 2%;
}
.title-comment p{
    font-size: 22px;
    font-weight: bold;
    width: auto;
}
.comments{
    padding: 10px;
    display: flex;
    gap: 10px;
}
.form-comment{
    background-color: #b4b07e3b;
    padding: 15px;
    border-radius: 10px;
}
.btn-comment{
    background-color:  #595201;
    color: #fff;
}
.btn-comment:hover{
    background-color:  #b4b07e;
    color: #000;
}
.form-comment input:focus{
    box-shadow: none !important;
    border: 0px;
}
.form-comment textarea:focus{
    box-shadow: none !important;
    border: 0px;
}
.name p{
    font-size: 12px;
    margin-bottom: 0px;
}
.comment{
    border: 1px solid #b4b07e;
    border-radius: 10px;
    padding: 1rem;
}
.comment-text{
    font-size: 14px;
}
.rep-comment{
    border: 1px solid #b4b07e;
    border-radius: 5px;
    padding: 1rem;
    margin-right: 2rem;
}
.rep-btn{
    border: 1px solid #b4b07e;
    border-radius: 5px;
}
.rep-text{
    font-size: 14px;
}
.offcanvas-bottom{
    height: auto !important;
    border-radius: 5px;
}
.form-rep{
    background-color: #b4b07e3b;
    padding: 20px;
    border-radius: 10px;
}
.form-rep input:focus{
    box-shadow: none !important;
    border: 0px;
}
.form-rep textarea:focus{
    box-shadow: none !important;
    border: 0px;
}

@media (width < 992px) and (width > 768px) {
    .relateds{
        display: flex;
        flex-wrap: wrap;
    }
}
@media (width < 768px) {
    .comments{
        display: block;
    }
    .list-comments{
        margin-top: 20px;
    }
}