.feed-card {
    position: relative;
    max-width: 400px;
    margin-bottom: 1em;
    padding-bottom: 6px;
/*    background-color: white;*/
/*    margin: 1em auto;*/
}

.feed-card .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feed-card .top .user_details {
    display: flex;
    align-items: center;
}

.feed-card .top .user_details .profile_img {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}

.feed-card .cover {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}

.feed-card .top .user_details h3 {
    font-size: 18px;
    color: black;
    line-height: 1em;
    cursor: pointer;
}

.feed-card .globDot {
    position: absolute;
    margin-left: 5px;
    margin-top: -4px;
    font-size: 20px;
    align-items: center;
    color: #0000004b;
}

.feed-card .message {
    font-weight: 400;
    margin-top: 5px;
    color: black;
    line-height: 1.5em;
}

.feed-card .imgBg {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.feed-card .coverFull {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}

.feed-card .btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feed-card .btns img {
    max-width: 30px;
}

.feed-card .btns .left img {
    margin-right: 4px;
}

.feed-card .likes {
    color: #777;
}

.feed-card .right h4 {
    margin-top: 5px;
    margin-left: 33px;
    font-size: 17px;
    color: #777;
    text-align: center;
    font-weight: 500;
}

.feed-card .bdr {
    padding: 0 65px;
    text-align: center;
    margin-bottom: 0px !important;
    border-bottom: 0.5px solid #0000004b;
}

.feed-card .like {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.feed-card .like img {
    position: relative;
    max-width: 70px;
    cursor: pointer;
    margin: 0 40px;
}

.feed-card .like img:nth-child(1) {
    width: 55px;
    margin-right: 20px;
}

.feed-card .like img:nth-child(2) {
    width: 33px;
    margin-right: 15px;
}

.feed-card .border {
    position: relative;
    width: 100%;
    margin-top: 15px;
    border: none !important;
}

.feed-card .border_bott {
    position: relative;
    width: 100%;
    margin-top: -15px;
}

.feed-card .addComments {
    display: flex;
    align-items: center;
}

.feed-card .addComments .userimg {
    position: relative;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
}

.feed-card .text {
    background: #F0F2F5;
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    color: #262626;
    border-radius: 20px;
}

.feed-card ul {
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feed-card ul li {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin-top: 10px;
    margin-right: 48px;
    list-style: none;
    text-align: center;
}

.feed-card ul li img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin-top: -1.5px;
}

.feed-card h3,
.feed-card h4 {
    margin: 0 !important;
}

.feed-card .left {
    display: flex;
}

.feed-card.user-feed .btns {
    padding: 6px 12px;
    font-size: .825em;
}

.feed-card.user-feed .btns .form-control {
    border: none;
    font-size: 1.425rem;
    height: auto;
    cursor: pointer;
    padding: 0;
}

.feed-card .hide {
    display:none !important;
}


