﻿.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 1em .2em .25em 1.25em;
    color: #000;
    /*background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  */ border: 0;
    border-radius: .25rem;
    opacity: .5;
}

body {
    /*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";
   */ width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}


.shareclose {
    position: absolute;
    padding: 5px 9px !important;
    top: -11px;
    right: -11px;
    border-radius: 25px !important;
    border: 4px solid #fff !important;
}

.btncopy {
    color: #fff;
    background-color: #6bd255;
    border: 0px;
    height: 46px;
    padding: 0px 12px;
}

.post {
    width: 380px;
    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-aima {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
}


.name-aima {
    font-family: poppins;
    font-size: 14px;
    margin-left: 10px;
    font-weight: 400;
}


.chkbtn {
    display: none;
}


#comment-btn::before {
    font: var(--fa-font-regular);
    content: "\f075";
}


@keyframes scaleit {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0);
    }

    10%, 90% {
        transform: translate(-50%, -50%) scale(1);
    }
}


.post-comment-aima {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    bottom: 0;
    left: 0;
    border-radius: 4mm;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease-out;
    z-index: 1001;
}

#commentss {
    flex-direction: column-reverse;
}

.comments-aima {
    flex-grow: 1;
    border-top: 0.5mm solid rgba(0, 0, 0, 0.5);
    border-bottom: 0.5mm solid rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: auto;
}

    .comments-aima::-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: 15px 0;
    
}



    .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: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

    .new-comment input {
        flex-grow: 1;
        height: 46px;
        font-family: poppins;
        font-size: 14px;
        outline: none;
        border: none;
        border-radius: 30px;
        background: rgb(242, 242, 242);
        margin: 0px 5px;
    }

input[type=text] {
    background: rgb(242, 242, 242);
    box-sizing: border-box;
}

#comment-aima:checked ~ .post-comment-aima {
    max-height: 650px;
}

.new-comment img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.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: 11px 9px 8px 14px;
}

.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;
}

 /*Swiper styles*/

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-menu {
    width: 100%;
    height: 100%;
}



.font17_Ptrl10 {
    font-size: 17px;
    font-weight: 400;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    color: #333333;
}

.mar_top10px {
    margin-top: 20px
}

.gfff2 {
    /*margin: 0px 0px 4px 0px;
            padding: 0px;*/
    box-shadow: rgba(43, 59, 93, 0.29) 0px 1px 2px;
    float: left;
    overflow: hidden;
    height: 200px;
    width: 130px;
    border-radius: 15px;
    background: #181f2c;
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: white;
    position: relative;
    font-size: 0.7rem;
    line-height: 1rem;
    font-weight: 600;
}

    .gfff2:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: black;
        opacity: .2;
        border-radius: 15px;
    }


/*<!-- Initialize Swiper -->*/

.noned {
    display: none;
}

.img1 {
    border-radius: 50%;
}

.txtbox {
    width: 90%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

    .txtbox:hover {
        width: 90%;
        padding: 12px 20px;
        margin: 8px 0;
        display: inline-block;
        border: 1px solid #ccc;
        box-sizing: border-box;
    }

.buhg {
    border: 1px solid #ccc;
}

.modalBackground {
    background-color: Black;
    filter: alpha(opacity=90);
    opacity: 0.8;
}

.modalPopup {
    background-color: transparent;
    /*position: fixed;
            border-width: 1px;
            border-style: solid;
            border-color: black;
            padding: 10px 0px 10px 0px;*/

    width: 100%;
    overflow: auto;
}

.prra {
    border-bottom: none;
    padding: 8px 0px 8px 0px;
    width: 100%;
}

.close {
    top: 0px;
    right: 0px;
    width: 45px;
    /*height: 23px;*/
    opacity: 1;
    border: 1px solid #000;
    z-index: 1001;
    background-color: #fff;
    color: rgb(79, 80, 80);
    font-weight: bold;
}

f17_Ptrl10 {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 7px;
    padding-top: 2px;
    padding-right: 5px;
    padding-left: 1px;
    color: #fa4175;
}


.smalimg {
    margin: 0px;
    padding: 0px;
    width: 120px;
}

.viewall {
    padding: 0px;
    margin: 0px;
    float: right;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    margin-top: 3px;
    vertical-align: bottom;
    text-decoration: none;
}

    .viewall:hover {
        text-decoration: none;
    }

.stateopt .active {
    background-color: white;
    color: darkred !important;
    font-weight: 600;
}

.stateopt {
    position: fixed;
    top: 52%;
    background: darkred;
    z-index: 5;
    padding: 2px 0;
}

.stassteopt a {
    font-size: 16px;
    color: white;
    padding: 3px 6px;
    border-radius: 4px;
    margin-top: 15px;
    border: 1px solid white;
    margin-left: 8px;
    font-weight: 500;
}

    .stassteopt a:active {
        color: #fff;
        text-decoration: none;
    }


.countn {
    cursor: pointer;
    white-space: nowrap;
    font-weight: 300;
    font-size: 12px;
    padding: 10px 0px 2px 1px;
    font-family: 'Roboto', sans-serif;
}

.countr {
    float: right;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 300;
    font-size: 12px;
    margin: 11px 0px 8px 8px;
    font-family: 'Roboto', sans-serif;
}

.nxg {
    font-size: 13px;
    font-weight: 400;
    color: #545353;
}

.far {
    font-weight: 300;
    color: #545353;
}

.iconsize {
    font-size: 16px;
}

.liker {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 12px;
    position: absolute;
    left: 25px;
    color: #000;
    bottom: 11px;
}

.likerr {
    font-size: 18px !important;
    color: #000 !important;
}
.active {
    background-color: black;
    color: #fff !important;
}

.hovertxt a {
    text-decoration: none;
}

    .hovertxt a:hover {
        background-color: black;
        color: #fff !important;
    }
.boxBN {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.coner .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: white;
    font-size: 56px;
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
}


.position_abs {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: absolute;
    right: 20px;
    bottom: 50px;
}

.position_abs_date {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: absolute;
    right: 7px;
    top: 0px;
}

.text-decoration {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
}

.text_decoration_none {
    text-decoration: none;
}

    .text_decoration_none:hover {
        text-decoration: none;
        color: rgb(29, 29, 29);
    }

.position_abs_tr5 {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: -6px;
    right: -5px;
    z-index: 99;
}

.countbox {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-align: center;
    display: table;
    background-color: rgb(255, 255, 255);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.f_14_vid_mid {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    display: table-cell;
    vertical-align: middle;
    color: rgb(55, 55, 55);
    font-size: 20px;
}

.boxicon_opa_50 {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-align: center;
    color: rgb(255, 255, 255);
    background-color: rgb(12, 7, 7);
    opacity: 0.7;
    width: 47px;
    height: 47px;
    border-radius: 30px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
}

.pad_top13 {
    margin: 0px auto;
    padding: 13px 0px 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.pad_top5px {
    margin: 0px auto;
    padding: 5px 0px 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.cam_icon {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    display: inline-block;
    font-style: normal;
    background-image: url('https://m.rishtonkasansar.com/images/camera22.png');
    background-repeat: no-repeat;
    background-position: center center;
    width: 25px;
    height: 20px;
}
.item {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.truncated {
    display: block;
    max-height: 60px;
    overflow: hidden;
}

.full-text {
    display: none;
    font-size: 14px;
}

.read-more {
    color: blue;
    cursor: pointer;
    text-decoration: underline;
    color: #7e7e7e;
    font-size: 14px;
    text-decoration: none;
}

#loading {
    display: none;
    text-align: center;
    padding: 20px;
}
.liked {
    color: #0000ff;
}

.not-liked {
    color: #888;
}
.btn-danger:active {
    border-style: none;
}

.bodtrl {
    border-top-right-radius: 10px;
    float: right;
    border-bottom-right-radius: 10px;
}

.cf {
    box-sizing: border-box;
    min-height: 56px;
    background: #FFFFFF;
    border-top: 1px solid rgb(225, 225, 225);
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: left;
    justify-content: space-between;
    padding-left: 7px;
    padding-right: 14px;
    padding-bottom: env(safe-area-inset-bottom);
    color: rgb(79, 80, 80);
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-weight: 400;
    letter-spacing: -0.24px;
    orphans: 2;
    text-align: left;
    text-indent: 0px;
    text-transform: none;
    white-space: normal;
    widows: 2;
    word-spacing: 0px;
    -webkit-text-stroke-width: 0px;
    text-decoration-style: initial;
    text-decoration-color: initial;
}
.coner .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: white;
    font-size: 56px;
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
}

.position_abs {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: absolute;
    right: 20px;
    bottom: 50px;
}

.position_abs_date {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: absolute;
    right: 7px;
    top: 0px;
}

.text-decoration {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
}

.text_decoration_none {
    text-decoration: none;
}

    .text_decoration_none:hover {
        text-decoration: none;
        color: rgb(29, 29, 29);
    }

.position_abs_tr5 {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: -6px;
    right: -5px;
    z-index: 99;
}

.countbox {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-align: center;
    display: table;
    background-color: rgb(255, 255, 255);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.f_14_vid_mid {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    display: table-cell;
    vertical-align: middle;
    color: rgb(55, 55, 55);
    font-size: 20px;
}

.boxicon_opa_50 {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-align: center;
    color: rgb(255, 255, 255);
    background-color: rgb(12, 7, 7);
    opacity: 0.7;
    width: 47px;
    height: 47px;
    border-radius: 30px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
}

.pad_top13 {
    margin: 0px auto;
    padding: 13px 0px 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.pad_top5px {
    margin: 0px auto;
    padding: 5px 0px 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.cam_icon {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    display: inline-block;
    font-style: normal;
    background-image: url('https://m.rishtonkasansar.com/images/camera22.png');
    background-repeat: no-repeat;
    background-position: center center;
    width: 25px;
    height: 20px;
}

.boxBN {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 73px;
    height: 73px;
}


#owl-demo .owl-item div {
    padding: 5px;
}

#owl-demo .owl-item img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .4rem .5rem;
    border-bottom: 0px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}


.modal.modal-left .modal-dialog,
.modal.modal-right .modal-dialog,
.modal.modal-top .modal-dialog,
.modal.modal-bottom .modal-dialog {
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

/* Top and Bottom */

.modal.modal-top .modal-dialog,
.modal.modal-bottom .modal-dialog {
    position: fixed;
    margin: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.modal.modal-top .modal-content,
.modal.modal-bottom .modal-content {
    height: auto;
    /*overflow-y: auto;*/
}

.modal.modal-top .modal-body,
.modal.modal-bottom .modal-body {
    padding: 15px 15px;
}

/* Bottom */

.modal.modal-bottom.fade .modal-dialog {
    bottom: -100%;
    -webkit-transition: opacity 0.3s linear, bottom 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, bottom 0.3s ease-out;
    -o-transition: opacity 0.3s linear, bottom 0.3s ease-out;
    transition: opacity 0.3s linear, bottom 0.3s ease-out;
}

.modal.modal-bottom.fade.show .modal-dialog {
    bottom: 0;
}

.modal.modal-bottom.fade .modal-dialog {
    bottom: -100%;
}
