
@import url(../styles/global.css);
@import url(../styles/header.css);

body,html{
    overflow-x: initial;
}
.side-category__title{
   font-weight: 700;
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 15px;
}
.side-category__list-item a{
    font-size: var(--font-size-2);
    color: #9FA2A3;
    line-height: 35px;
}
.side-category__list-item a::before{
    content: " ";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display:inline-block;
    vertical-align: middle;
    margin-left: 5px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.side-category__list-item:hover a{
    color: var(--color-primary);

}
.sticky-sidebar{
    position: sticky;
    top: 0;
}
.side-category{
    padding: 30px 16px 30px;
    background-color: #fff;
    border-radius: 23px;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    
}
.tags-list{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 16px;
}
.tags-list__item a{
    font-size: 14px;
    color: #9FA2A3;
    text-decoration: underline;
}
.tags-list__item a:hover{
    color: var(--color-primary);
}
.side-category__img-wrapper{
    text-align: center;
}
.side-category__img-wrapper img{
    border-radius: 17px;
}


/* single-blog */
.single-blog__text li{
    list-style-position: inside;
    margin-bottom: 8px;
}
.single-blog__text img{
    max-width: 100%;
}

.single-blog__img img{
    max-width: 100%;
    border-radius: 27px;
    -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
.single-blog__sidebar{
    position: sticky;
    top:51px
}
.single-blog__sidebar-top{
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 2px dashed #9FA2A3;
}

.single-blog__top-image img{

    border-radius: 27px;
    margin-bottom: 20px;
    max-width: 100%;
}
.single-blog__text p , .single-blog__text {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 500;
    line-height: 27px;
    color: #515253;
}
.comment-send__wrapper {
    background-color: #fff;
    box-shadow: 0px 2px 20px -9px rgb(0 0 0 / 40%);
    padding: 30px;
    border-radius: 30px;
}

.form__star {
    color: red;
    font-size: 20px;
}




/* ------------------------------------------- comments */

.comment {
    border-radius: 20px;
    border: 1px solid var(--color-primary);
    background: #FFF;
    padding: 20px;
    margin-bottom: 11px;
}
.comment__head {
    color: #000;
    text-align: right;
    font-size: 1rem;
    font-weight: 600;
    line-height: 10px;
}
.comment__body {
    color: #6C6C6C;
    text-align: justify;
    font-size: 14px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.24px;
}
.comment-answer {
    border-radius: 20px;
    border: 1px solid #000000;
    background: #FFF;
    padding: 20px;
    margin-bottom: 11px;
    margin-right: 50px;
    position: relative;
}
.comment-answer::before{
    content: " ";
    width: 24px;
height: 20px;
display: block;
position: absolute;
background: url('data:image/svg+xml,<svg width="24" height="20" viewBox="0 0 24 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.06066 19.5607C8.47487 20.1464 7.52513 20.1464 6.93934 19.5607L0.439341 13.0607C-0.146446 12.4749 -0.146446 11.5251 0.439341 10.9393L6.93934 4.43934C7.52513 3.85355 8.47487 3.85355 9.06066 4.43934C9.64645 5.02513 9.64645 5.97487 9.06066 6.56066L5.12132 10.5H12.5C17.1944 10.5 21 6.69442 21 2V1.5C21 0.671577 21.6716 3.8147e-06 22.5 3.8147e-06C23.3284 3.8147e-06 24 0.671577 24 1.5V2C24 8.35128 18.8513 13.5 12.5 13.5L5.12132 13.5L9.06066 17.4393C9.64644 18.0251 9.64644 18.9749 9.06066 19.5607Z" fill="%23C8C8C8"/></svg>');
top: 0;
right: -30px;
}


@media only screen and (max-width:768px){
    .single-blog__sidebar .col-sm-6:nth-child(odd){
        padding-left: 8px;
    }
    .single-blog__sidebar .col-sm-6:nth-child(even){
        padding-right: 8px;
    }
}
@media only screen and (max-width:576px){
    .single-blog__sidebar .col-sm-6:nth-child(odd){
        padding-left: 16px;
    }
    .single-blog__sidebar .col-sm-6:nth-child(even){
        padding-right: 16px;
    }
    .comment-send__wrapper{
        padding: 10px;
        
    }
}