﻿
       

        .post {
            width: 360px;
            height: 600px;
            background: white;
            border-radius: 4mm;
            box-sizing: border-box;
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-direction: column;
            box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
            position: relative;
        }

        .head {
            width: 100%;
            height: fit-content;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0px 10px;
            box-sizing: border-box;
        }

        .details {
            width: fit-content;
            display: flex;
            align-items: center;
        }

        .image {
            width: 44px;
            height: 44px;
            background: linear-gradient( 45deg, rgb(254, 218, 117), rgb(214, 41, 118) );
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .image img {
                width: 35px;
                height: 35pxcc
                border-radius: 50%;
                outline: 2px solid white;
            }

       .namecomt {
            
            font-size: 18px;
            margin-left: 10px;
            font-weight: 400;
        }

        .head .icon {
            font-size: 28px;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            text-align: center;
            line-height: 35px;
            cursor: pointer;
        }

            .head .icon:hover {
                background: rgba(0, 0, 0, 0.05);
            }

        .content {
            width: 100%;
            height: 380px;
            position: relative;
        }

            .content img {
                width: 100%;
            }

            .content::before {
                position: absolute;
                font: var(--fa-font-solid);
                content: "\f004";
                color: rgb(255, 255, 255);
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%) scale(0);
                width: 120px;
                height: 120px;
                font-size: 80px;
                line-height: 120px;
                text-align: center;
                text-shadow: 5px 5px rgba(0, 0, 0, 0.5);
            }

        .features {
            width: 100%;
            height: fit-content;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            flex-direction: column;
            background-color: #fff;
            z-index: 0;
        }

        .controls {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: left;
            padding: 0 5px;
        }

        .btn {
            display: none;
        }

        .features .controls label {
            width: 30px;
            height: 30px;
            position: relative;
            margin: 5px;
            cursor: pointer;
            font-size: 22px;
        }

        .controls label::before {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            line-height: 30px;
            color: black;
            text-align: center;
        }

        #like-btn::before {
            font: var(--fa-font-regular);
            content: "\f004";
        }

        #comment-btn::before {
            font: var(--fa-font-regular);
            content: "\f075";
        }

        #share-btn::before {
            font: var(--fa-font-regular);
            content: "\f1d8";
        }

        #like:checked ~ .features .controls #like-btn::before {
            font: var(--fa-font-solid);
            content: "\f004";
            color: rgb(237, 30, 34);
        }

        #like:checked ~ .content::before {
            animation: scaleit 1.5s ease-out;
        }

        @keyframes scaleit {
            0%, 100% {
                transform: translate(-50%, -50%) scale(0);
            }

            10%, 90% {
                transform: translate(-50%, -50%) scale(1);
            }
        }

        .liked {
            width: 100%;
            height: fit-content;
            display: flex;
            align-items: center;
            justify-content: left;
            padding: 0 10px;
        }

        .desc {
            font-family: poppins;
            font-size: 12px;
            color: rgb(100, 100, 100);
        }

            .desc span {
                font-weight: 600;
                color: black;
            }

        .images {
            width: 50px;
            height: 20px;
            position: relative;
        }

            .images img {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                border: 0.3mm solid white;
                position: absolute;
                top: 50%;
                left: 0;
                transform: translate(0, -50%);
                z-index: 3;
            }

                .images img:nth-child(2) {
                    left: 12px;
                    z-index: 2;
                }

                .images img:nth-child(3) {
                    left: 24px;
                    z-index: 1;
                }

        .desc.title {
            padding: 3px 10px;
        }

        #comment-btn2 {
            width: 100%;
            padding: 3px 10px;
            font-family: poppins;
            font-size: 12px;
            color: rgb(100, 100, 100);
            cursor: pointer;
            font-weight: 500;
        }
        /*.post-comment1:before {
                    content: '';
                    position: absolute;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    background-color: black;
                    opacity: .2;}*/
        .post-comment {
            /*position: absolute;*/
            width: 100%;
            height: 100%;
            background: white;
            bottom: 0;
            left: 0;
            border-radius: 4mm;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            z-index: 4;
            /*max-height: 0;*/
            overflow: hidden;
            /*transition: 0.5s ease-out;*/
        }#commentss {
    flex-direction: column-reverse;
}

        #comment-btn3 {
            font-size: 24px;
            cursor: pointer;
            color: rgb(100, 100, 100);
        }

        .comments {
            flex-grow: 1;
            /*border-top: 0.5mm solid rgba(0, 0, 0, 0.5);*/
            border-bottom: 0.5mm solid rgba(230, 230, 230, 0.7)
            padding: 10px 20px;
            width: 100%;
            box-sizing: border-box;
            overflow: auto;
        }

            .comments::-webkit-scrollbar {
                display: none;
                opacity: 0;
                width: 0;
            }

        .comment {
            width: 100%;
            display: flex;
            align-items: flex-start;
            justify-content: left;
            font-family: poppins;
            font-size: 12px;
            margin: 7px 0;
        }

            .comment img,
            .new-comment img {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                margin-right: 10px;
            }

            .comment .desc {
                width: 150px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-top: 5px;
            }

                .comment .desc span {
                    font-weight: 400;
                    color: rgb(100, 100, 100);
                }

            .comment i {
                margin-left: 10px;
                font-size: 18px;
            }

        .new-comment {
            width: 100%;
            height: fit-content;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }

            .new-comment input {
                flex-grow: 1;
                height: 40px;
                font-family: poppins;
                font-size: 14px;
                outline: none;
                border: none;margin-right: 4px;
  border-radius: 25px;
                background: transparent;
            }

        #comment:checked ~ .post-comment {
            max-height: 650px;
        }
		
   
.c_fntx {
    font-size: 12px;
    font-weight: 400;
    text-align: left;
}

.c_font-comment {
    font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

.c_pt-5 {
    padding-top: 1.25rem;
}

.c_flex-col {
    flex-direction: column;
}

.c_w-full {
    width: 100%;
}

.c_flex {
    display: flex;
}

.c_items-center {
    align-items: center;
}

.c_self-start {
    align-self: flex-start;
}

.c_cursor-pointer {
    cursor: pointer;
}

.c_flex-shrink-0 {
    flex-shrink: 0;
}

.c_object-fill {
    object-fit: fill;
}

.c_rounded-full {
    border-radius: 9999px;
}

.c_w-8 {
    width: 2rem;
}

.c_h-8 {
    height: 2rem;
}

img, video {
    max-width: 100%;
    height: auto;
}

.c_space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 1;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.c_block {
    display: block;
}

.c_relative {
    position: relative;
}

.c_justify-center {
    justify-content: center;
}

.c_pb-2 {
    padding-bottom: 0.4rem;
}

.c_pt-2 {
    padding-top: 0.2rem;
}

.c_pt-5 {
    padding-top: 0.5rem;
}

.c_px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.c_bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.c_rounded-xl {
    border-radius: 0.75rem;
}

.c_w-auto {
    width: auto;
}

.c_font-medium {
    font-weight: 500;
}

.c_text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.c_text-primary {
    color: var(--fallback-p,oklch(var(--p)/1));
}

.c_text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.c_justify-start {
    justify-content: flex-start;
}

.c_text-gray-700 {
    --tw-text-opacity: 2;
    color: rgb(55, 65, 81);
}

.c_font-semibold {
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: inherit;
}

.c_space-x-1 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.c_self-center {
    align-self: center;
}

small {
    font-size: 80%;
}

.c_hover:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .c_md\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}

.c_text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

.c_text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.c_p-3 {
    padding: 9px 8px 5px 12px;
}

.c_rounded-full {
    border-radius: 9999px;
}

.c_bg-primary {
    border: none;
    background-color: #D24545;
}

.c_group:valid .c_group-valid\:hidden {
    display: none;
}

.c_group:invalid .c_group-invalid\:hidden {
    display: none;
}