.feed-page{
    margin: auto;
    background-color: #f2f2f2;
    padding: 40px 0 80px 0;
    border-radius: 3px;
}

    .feed-page .c{
        max-width: 590px;
        margin: auto;
    }

    .feed-post{
        border-radius: 4px !important;
        box-shadow: 0 16px 40px rgba(0,0,0,0.12) !important;
        padding: 20px;
        background-color: white;
        margin: 0 auto 40px auto;
        max-width: 590px;
        box-sizing: border-box;
    }

        .feed-post .add-images{
            display: none;
            margin: 10px auto;
            width: fit-content;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }

            .feed-post .trigger{
                display: flex;
                vertical-align: center;
            }

            .feed-post .trigger span{
                padding-left: 6px;
            }

            .feed-post .add-images img{
                height: 20px;
                margin-right: 6px;
            }

            .feed-post .add-images input{
                position: absolute;
                top: -100px;
            }

        .feed-post textarea{
            border-radius: 4px !important;
            width: 100%;
            box-sizing: border-box;
            overflow: hidden;
            border: 1px solid rgba(107, 107, 106, 0.4);
            font-family: 'Barlow', sans-serif;
            font-weight: 400;
            font-size: 18px;
            padding: 10px;
            display: block;
        }

        .feed-post select[name=company]{
            display: none;
            margin: 10px 0 0 0;
        }

        .feed-post button[type=submit]{
            display: none;
            margin: 20px 0 0 0;
        }

    .feed-page .line2{
        text-align: center;
        font-size: 34px;
        font-weight: 500;
        margin: 0 0 20px 0;
    }

    .feed-page .feed-type{
        margin: 20px auto;
        width: fit-content;
        display: flex;
        border: 2px solid #498392;
        border-radius: 6px;
    }

        .feed-page .feed-type .all,
        .feed-page .feed-type .followings{
            padding: 4px 12px;
            cursor: pointer;
            font-size: 20px;
            font-weight: 400;
        }

        .feed-page .feed-type .selected{
            background: #498392;
            color: white;
        }


.feeds{
    max-width: 590px;
    margin: auto;
}

    .feeds .feed{
        width: 100%;
        box-sizing: border-box;
        font-size: 18px;
        background-color: white;
        box-shadow: 0 16px 40px rgba(0,0,0,0.12) !important;
        border-radius: 4px !important;
        padding: 20px;
        margin: 0 0 20px 0;
        position: relative;
    }

        .feeds .feed .delete{
            position: absolute;
            right: 20px;
            top: 20px;
            cursor: pointer;
            opacity: 0.3;
        }

        .feeds .feed .head{
         display: flex;
         margin: 0 0 20px 0;
        }

        .feeds .feed .head .image-profile{
            margin: 0 20px 0 0;
        }

            .feeds .feed .head .image-profile img{
                width: 64px;
                height: 64px;
                border: 1px solid #CCC;
            }

            .feeds .feed .head .image-profile .no-image{
                width: 64px;
                height: 64px;
                background-color: #CCC;
            }

            .feeds .feed .head .author{
                max-width: 80%;
            }

                .feeds .feed .head .author .name{
                font-size: 20px;
                font-weight: 500;
                }

                .feeds .feed .head .author .job-title{
                font-size: 16px;
                margin: 0 0 4px 0;
                }

                .feeds .feed .head .author .date{
                    font-size: 14px;
                    color: #888;
                }

                .feeds .feed .head .author .date i{
                    margin-right: 6px;
                }

    .feeds .feed .message{
        margin: 0 0 10px 0;
    }

    .feeds .feed .youtube-video{
        margin: 0 0 10px 0;
    }

    .feeds .feed .images{
     margin: 20px 0 10px 0;
    }

         .feeds .feed .images.count-1 img{
             width: 100%;
             display: block;
         }

         .feeds .feed .images.count-2{
             display: flex;
         }

             .feeds .feed .images.count-2 a{
                 width: 50%;
             }

             .feeds .feed .images.count-2 a:first-child{
                 margin-right: 1px;
             }

             .feeds .feed .images.count-2 a:last-child{
                 margin-left: 1px;
             }

             .feeds .feed .images.count-2 img{
                 width: 100%;
                 display: block;
             }

         .feeds .feed .images.count-3{
             display: flex;
         }

             .feeds .feed .images.count-3 a{
                 width: 33%;
             }

             .feeds .feed .images.count-3 a:first-child{
                 margin-right: 2px;
             }

             .feeds .feed .images.count-3 a:last-child{
                 margin-left: 2px;
             }

             .feeds .feed .images.count-3 img{
                 width: 100%;
                 display: block;
             }

         .feeds .feed .images.count-4{
             display: flex;
             flex-wrap: wrap;
         }

            .feeds .feed .images.count-4 a{
                width: 50%;
                display: block;
                box-sizing: border-box;
                position: relative;
            }

            .feeds .feed .images.count-4 a:nth-child(odd){
                padding: 1px 1px 1px 0;
            }

            .feeds .feed .images.count-4 a:nth-child(even){
                padding: 1px 0 1px 1px;
            }

            .feeds .feed .images.count-4 a:nth-child(n+5){
                display: none;
            }

            .feeds .feed .images.count-4.and-more a:nth-child(4)::after{
                content: "MORE";
                font-size: 30px;
                font-weight: 600;
                color: white;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                text-align: center;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.4);
                padding-top: 20%;
                box-sizing: border-box;
            }

            .feeds .feed .images.count-4 img{
                width: 100%;
                display: block;
            }

    .feeds .feed .has-comment{
        margin: 0px 0 0 0;
        display: none;
    }

        .feeds .feed .has-comment .comment{
            display: flex;
            margin: 20px 0 0 0;
        }

            .feeds .feed .has-comment .comment .image{
                width: 50px;
                margin-right: 10px;
            }

                .feeds .feed .has-comment .comment .image img{
                    width: 50px;
                    height: 50px;
                    border-radius: 100%;
                }

                .feeds .feed .has-comment .comment .image .no-image{
                    width: 50px;
                    height: 50px;
                    border-radius: 100%;
                    background-color: #CCC;
                }

            .feeds .feed .has-comment .comment .c{
                background-color: #f2f2f2;
                width: 100%;
                padding: 10px 20px;
                border-top-right-radius: 8px;
                border-bottom-left-radius: 8px;
                border-bottom-right-radius: 8px;
                position: relative;
            }

                .feeds .feed .has-comment .comment .delete-comment{
                    position: absolute;
                    cursor: pointer;
                    right: 10px;
                    top: 10px;
                    opacity: 0.3;
                }

                .feeds .feed .has-comment .comment .c .h{
                }

                    .feeds .feed .has-comment .comment .c .h .name{
                        font-weight: 500;
                    }

                    .feeds .feed .has-comment .comment .c .h .company{
                        font-size: 15px;
                    }

                    .feeds .feed .has-comment .comment .c .h .time{
                        font-size: 14px;
                        color: #888;
                    }

                .feeds .feed .has-comment .comment .c .t{
                    margin: 10px 0 0 0;
                }

    .feeds .feed .add-comment{
        margin: 20px 0 0 0;
        display: none;
    }

        .feeds .feed .add-comment button{
            padding: 4px 20px;
            width: fit-content;
            min-width: fit-content;
            font-weight: 500;
            font-size: 15px;
            margin: 4px 0 0 0;
        }

        .feeds .feed .add-comment select{
            padding: 0;
            width: fit-content;
            font-size: 14px;
            margin-left: auto;
            box-shadow: none!important;
        }

    .feeds .feed .has-action{
        border-bottom: 1px solid #e9e5df;
        font-size: 15px;
        color: #888;
        padding: 6px 0;
        margin: 0px 0 0 0;
        display: flex;
    }

        .feeds .feed .has-action .likes{
            margin-right: 10px;
            cursor: pointer;
        }

        .feeds .feed .has-action .comments{
            cursor: pointer;
        }

        .feeds .feed .has-action .likes:hover,
        .feeds .feed .has-action .comments:hover{
            text-decoration: underline;
        }

    .feeds .feed .actions{
        display: flex;
        margin: 10px 0 -10px -12px;
        font-size: 15px;
        font-weight: 500;
        user-select: none;
    }

        .feeds .feed .actions > div{
            padding: 10px 16px;
            border-radius: 6px;
        }

        .feeds .feed .actions span{
            margin-right: 4px;
        }

        .feeds .feed .actions .like{
            cursor: pointer;
        }

            .feeds .feed .actions .like.liked{
                color: #498392;
            }

        .feeds .feed .actions .comment{
            cursor: pointer;
            margin-left: 0px;
        }

        .feeds .feed .actions > div:hover{
            background: rgb(235 235 235);
        }

.feed-load-more-button{
    max-width: 590px;
    width: 100%;
    background: #498392;
    cursor: pointer;
    color: white;
    text-align: center;
    border-radius: 3px;
    padding: 12px 0;
    font-weight: 500;
    font-size: 20px;
    margin: 40px auto 20px auto;
}

    .feed-load-more-button.loading .text{
        display: none;
    }

    .feed-load-more-button.loading .yloader{
        display: block;
        color: white;
    }

        .feed-load-more-button.loading .yloader .bullet{
            background-color: white;
        }

.like-list{
    max-width: 600px;
    width: 100%;
}

    .like-list h2{
        font-size: 30px;
        margin: 0 0 40px 0;
    }

    .like-list ul{
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .like-list ul li{
            display: flex;
            margin: 0 0 10px 0;
            padding: 0 0 10px 0;
            border-bottom: 1px solid rgba(107, 107, 106, 0.4);
            align-items: center;
        }

            .like-list ul li:last-child{
                border-bottom: 0;
            }

            .like-list ul li .image{
                margin: 0 20px 0 0;
            }

                .like-list ul li .image img{
                    border-radius: 100%;
                    width: 56px;
                    height: 56px;
                }

                .like-list ul li .image .no-image{
                    border-radius: 100%;
                    width: 56px;
                    height: 56px;
                }

            .like-list ul li .c{
            }

                .like-list ul li .c .name{
                    font-weight: 500;
                    font-size: 17px;
                }

                .like-list ul li .c .company{
                }

