.community_tab, .single_post{
    padding: 50px 0;
    background: url(../images/icons/Sign-Up-bg.svg) 100% no-repeat;
    background-position: center;
    background-size: cover;
}

.community_tab .nav-pills {
    margin-bottom:15px;
}

.community_tab .nav-pills .btn {
    padding: 11px 33px;
    width: 299px;
    text-align: left;
    border-radius: 5px;
    color: var(--t_color);
    background-color: var(--white);
    margin-bottom: 10px;
}
.community_tab .nav-pills .active.btn{
    background: var(--t_color);
    color: var(--white);
}
.d_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.filter_item.filter {
    position: relative;
    padding: 17px;
    margin-bottom: 30px;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    background: var(--white);
}
.filter_item .time {
    color: #707070;
}
.filter_item .user img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.filter_item .to_bar {
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.filter_item .post_img{
    margin-right: 15px;
    width: 25%;
    min-width: 25%;
}
.filter_item .post_img img {
    width: 230px;
    border: 1px solid #f2f2f2;
    padding: 10px;
}
.filter_item .title {
    color: var(--black);
    font-size: 23px;
}
.filter_item .li_co_sha {
    padding-top: 15px;
    border-top: 1px solid #f2f2f2;
    margin-top: 10px;
}
.filter_item .li_co_sha .like{
    color: #707070;
}
.filter_item .li_co_sha .like img {
    width: 23px;
    margin-right: 15px;
}
.no_post_available{
    text-align: center;
}
.no_post_available img{
    width: 170px;
}
.no_post_available .text {
    margin-top: 25px;
    color: #707070;
}
.add_post {
    width: 50px;
    height: 50px;
    background: var(--t_color);
    justify-content: center;
    align-items: center;
    display: flex;
    position: fixed;
    bottom: 35px;
    right: 35px;
    border-radius: 50%;
}

@media (max-width:767px){
    .community_tab .nav-pills .btn {
        width: 149px;
    }
    .community_tab .nav-pills {
        width: 300px;
        margin: 0 auto;
        margin-bottom: 35px !important;
    }
    .filter_item .title {
        font-size: 18px;
    }
    .no_post_available img {
        width: 100px;
    }
    .filter_item .li_co_sha .like img {
        width: 16px;
        margin-right: 7px;
    }
    .filter_item .user img {
        width: 40px;
        height: 40px;
    }
}

/* === Single Post Start=== */

.cus_dropdown {
    cursor: pointer;
    padding: 3px 10px;
}
.single_post{
    min-height: 100vh;
}
.single_post .user_name {
    font-size: 18px;
    margin-bottom: 0;
}
.cus_dropdown.show + .dropdown-menu {
    display: block;
}
.dropdown-menu {
    border: 0;
    box-shadow: 0 3px 15px 0 rgb(0 0 0 / 8%);
    right: 15px;
    margin-top: 10px;
}
.dropdown-menu .nav-link {
    color: var(--black);
}
.dropdown-menu .nav-link:hover {
    background-color: #f2f2f2;
}
.single_post .name_img {
    display: flex;
    align-items: center;
}
.single_post .filter_item .post_img{
    width: 100%;
    min-width: unset;
    margin-bottom: 15px;
}
.single_post .filter_item .post_img img{
    width: 100%;   
}
.single_post .filter_item .title {
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
}
.single_post .filter_item .li_co_sha{
    padding-bottom: 20px;
}
.single_post .cus_form{
    align-items: center;
}
.single_post .cus_form .col-auto{
    width: 91%;
}
.single_post .cus_form .form-control{
    min-height: 45px;
    border-radius: 30px;
}
.single_post .cus_form .form-control:focus{
    box-shadow: none;
    border-color: var(--t_color) ;
}
.single_post .cus_form .btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 0;
}
.single_post .filter_item .li_co_sha{
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 20px;
}

@media (max-width:767px){
    .single_post .cus_form .col-auto{
        width: 85%;
    }
}
/* === Single Post End=== */
