/* =========================================================
   BEYOND REAL ESTATE
   SOCIAL MEDIA UI
========================================================= */

:root {

    --ifh-green: #0f5132;
    --ifh-green-light: #198754;

    --bg: #f4f6f8;
    --card: #ffffff;

    --text: #111827;
    --muted: #6b7280;

    --border: #e5e7eb;

    --shadow:
        0 2px 12px rgba(0,0,0,.06);

}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    padding: 0;

    background: var(--bg);

    color: var(--text);

    font-family: 'Poppins', sans-serif;

    text-align: left;

}

body.dark {

    --bg: #0b0f0d;
    --card: #111714;
    --text: #f3f4f6;
    --muted: #9ca3af;
    --border: #26332c;

    background: var(--bg);

    color: var(--text);

}

/* =========================================================
   TOP NAVIGATION
========================================================= */

.social-navbar {

    position: sticky;

    top: 0;

    z-index: 9000;

    width: 100%;

    height: 64px;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border);

}

body.dark .social-navbar {

    background: rgba(17,23,20,.96);

}

.nav-inner {

    max-width: 1400px;

    height: 100%;

    margin: auto;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}

.brand {

    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--ifh-green);

    text-decoration: none;

    font-weight: 700;

    font-size: 20px;

    white-space: nowrap;

}

.brand i {

    font-size: 23px;

}

.nav-search {

    flex: 1;

    max-width: 450px;

    position: relative;

}

.nav-search input {

    width: 100%;

    height: 42px;

    border: 1px solid var(--border);

    border-radius: 25px;

    background: var(--bg);

    padding: 0 45px 0 18px;

    outline: none;

    color: var(--text);

}

.nav-search i {

    position: absolute;

    right: 17px;

    top: 12px;

    color: var(--muted);

}

.nav-actions {

    display: flex;

    align-items: center;

    gap: 8px;

}

.nav-icon {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    border: 0;

    background: transparent;

    color: var(--text);

    font-size: 19px;

    cursor: pointer;

}

.nav-icon:hover {

    background: var(--bg);

}

.profile-nav {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    object-fit: cover;

    background: #ddd;

}

/* =========================================================
   PAGE HEADER
========================================================= */

.social-hero {

    max-width: 1400px;

    margin: auto;

    padding: 34px 20px 20px;

}

.hero-inner {

    background:
        linear-gradient(
            135deg,
            #0f5132,
            #146c43,
            #198754
        );

    border-radius: 22px;

    padding: 36px;

    color: white;

    position: relative;

    overflow: hidden;

}

.hero-inner::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    right: -100px;

    top: -120px;

    background: rgba(255,255,255,.08);

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 13px;

    border-radius: 20px;

    background: rgba(255,255,255,.14);

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 12px;

}

.hero-inner h1 {

    margin: 0;

    font-size: 34px;

    font-weight: 700;

}

.hero-inner p {

    margin: 8px 0 0;

    max-width: 650px;

    font-size: 14px;

    line-height: 1.7;

    opacity: .92;

}

/* =========================================================
   CATEGORY BAR
========================================================= */

.category-scroll {

    max-width: 1400px;

    margin: auto;

    padding: 5px 20px 20px;

    display: flex;

    gap: 9px;

    overflow-x: auto;

    scrollbar-width: none;

}

.category-scroll::-webkit-scrollbar {

    display: none;

}

.category-pill {

    flex: 0 0 auto;

    border: 1px solid var(--border);

    background: var(--card);

    color: var(--text);

    border-radius: 25px;

    padding: 9px 16px;

    font-size: 13px;

    cursor: pointer;

}

.category-pill.active {

    background: var(--ifh-green);

    border-color: var(--ifh-green);

    color: white;

}

/* =========================================================
   SOCIAL LAYOUT
========================================================= */

.social-layout {

    max-width: 1400px;

    margin: auto;

    padding: 0 20px 80px;

    display: grid;

    grid-template-columns: 220px minmax(0, 650px) 270px;

    gap: 24px;

    justify-content: center;

}

/* =========================================================
   LEFT SIDEBAR
========================================================= */

.social-sidebar {

    position: sticky;

    top: 84px;

    height: fit-content;

}

.side-menu {

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 10px;

    box-shadow: var(--shadow);

}

.side-link {

    display: flex;

    align-items: center;

    gap: 13px;

    width: 100%;

    padding: 12px;

    border-radius: 10px;

    color: var(--text);

    text-decoration: none;

    font-size: 13px;

    font-weight: 500;

}

.side-link:hover,
.side-link.active {

    background: rgba(25,135,84,.1);

    color: var(--ifh-green-light);

}

.side-link i {

    width: 22px;

    text-align: center;

    font-size: 18px;

}

/* =========================================================
   CREATE POST
========================================================= */

.create-post {

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 16px;

    margin-bottom: 16px;

    box-shadow: var(--shadow);

}

.create-row {

    display: flex;

    align-items: center;

    gap: 12px;

}

.create-avatar {

    width: 44px;

    height: 44px;

    border-radius: 50%;

    background: var(--ifh-green);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

}

.create-input {

    flex: 1;

    border: 1px solid var(--border);

    background: var(--bg);

    border-radius: 25px;

    padding: 11px 16px;

    color: var(--muted);

    font-size: 13px;

    cursor: pointer;

}

.create-options {

    display: flex;

    border-top: 1px solid var(--border);

    margin-top: 14px;

    padding-top: 10px;

}

.create-option {

    flex: 1;

    text-align: center;

    border: 0;

    background: transparent;

    color: var(--muted);

    font-size: 12px;

    padding: 8px;

    cursor: pointer;

}

.create-option i {

    margin-right: 5px;

    color: var(--ifh-green-light);

}

/* =========================================================
   FEED
========================================================= */

.feed {

    min-width: 0;

}

.feed-heading {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 12px;

}

.feed-heading h2 {

    font-size: 18px;

    margin: 0;

    font-weight: 700;

}

.feed-sort {

    border: 1px solid var(--border);

    border-radius: 8px;

    padding: 6px 9px;

    background: var(--card);

    color: var(--text);

    font-size: 12px;

}

/* =========================================================
   POST CARD
========================================================= */

.social-post {

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 16px;

    margin-bottom: 18px;

    overflow: hidden;

    box-shadow: var(--shadow);

}

/* POST HEADER */

.post-header {

    padding: 14px 16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.agent-info {

    display: flex;

    align-items: center;

    gap: 11px;

}

.agent-avatar {

    width: 44px;

    height: 44px;

    min-width: 44px;

    border-radius: 50%;

    overflow: hidden;

    background: var(--ifh-green);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 17px;

    font-weight: 700;

}

.agent-avatar img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.agent-name {

    margin: 0;

    font-size: 13px;

    font-weight: 700;

}

.agent-meta {

    color: var(--muted);

    font-size: 10px;

    margin-top: 2px;

}

.post-menu {

    width: 34px;

    height: 34px;

    border: 0;

    background: transparent;

    border-radius: 50%;

    color: var(--muted);

    cursor: pointer;

}

.post-menu:hover {

    background: var(--bg);

}

/* POST TEXT */

.post-content {

    padding: 0 16px 14px;

}

.post-description {

    margin: 0;

    font-size: 13px;

    line-height: 1.65;

    color: var(--text);

    white-space: pre-line;

}

.post-more {

    border: 0;

    background: transparent;

    color: var(--ifh-green-light);

    padding: 4px 0;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

}

/* =========================================================
   MEDIA
========================================================= */

.post-media {

    width: 100%;

    background: #000;

    position: relative;

    overflow: hidden;

}

.post-video {

    width: 100%;

    max-height: 650px;

    display: block;

    object-fit: contain;

    background: #000;

}

.post-image-grid {

    display: grid;

    width: 100%;

    max-height: 600px;

    overflow: hidden;

}

.post-image-grid.single {

    grid-template-columns: 1fr;

}

.post-image-grid.two {

    grid-template-columns: 1fr 1fr;

}

.post-image-grid.three {

    grid-template-columns: 1fr 1fr;

}

.post-image-grid.three img:first-child {

    grid-row: span 2;

}

.post-image-grid.many {

    grid-template-columns: repeat(3, 1fr);

}

.post-image {

    width: 100%;

    height: 240px;

    object-fit: cover;

    cursor: pointer;

    display: block;

    border: 1px solid var(--card);

}

.post-image-grid.single .post-image {

    height: auto;

    max-height: 650px;

}

.video-play-button {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%,-50%);

    width: 62px;

    height: 62px;

    border-radius: 50%;

    background: rgba(255,255,255,.94);

    color: #111;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    pointer-events: none;

    box-shadow: 0 5px 25px rgba(0,0,0,.25);

}

/* =========================================================
   POST FOOTER
========================================================= */

.post-stats {

    display: flex;

    justify-content: space-between;

    padding: 10px 16px;

    color: var(--muted);

    font-size: 11px;

}

.post-actions {

    border-top: 1px solid var(--border);

    display: flex;

    padding: 4px;

}

.post-action {

    flex: 1;

    border: 0;

    background: transparent;

    color: var(--muted);

    padding: 10px 4px;

    border-radius: 8px;

    cursor: pointer;

    font-size: 12px;

    font-weight: 500;

}

.post-action:hover {

    background: var(--bg);

    color: var(--ifh-green-light);

}

.post-action i {

    font-size: 17px;

    margin-right: 5px;

}

/* =========================================================
   LOCATION TAGS
========================================================= */

.post-tags {

    padding: 0 16px 14px;

    display: flex;

    gap: 6px;

    flex-wrap: wrap;

}

.location-tag {

    border-radius: 20px;

    background: var(--bg);

    color: var(--muted);

    padding: 5px 9px;

    font-size: 10px;

}


/* =========================================================
   RIGHT SIDEBAR
========================================================= */

.right-sidebar {

    position: sticky;

    top: 84px;

    height: fit-content;

}

.side-card {

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 16px;

    margin-bottom: 16px;

    box-shadow: var(--shadow);

}

.side-card-title {

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 14px;

}

.trending-item {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 8px 0;

}

.trending-number {

    width: 27px;

    height: 27px;

    border-radius: 50%;

    background: rgba(25,135,84,.1);

    color: var(--ifh-green-light);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;

    font-weight: 700;

}

.trending-text {

    font-size: 11px;

}

.trending-text strong {

    display: block;

    font-size: 11px;

}

.trending-text span {

    color: var(--muted);

}

.suggest-agent {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 12px;

}

.suggest-avatar {

    width: 37px;

    height: 37px;

    border-radius: 50%;

    background: var(--ifh-green);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

    font-weight: 700;

}

.suggest-info {

    flex: 1;

}

.suggest-info strong {

    display: block;

    font-size: 10px;

}

.suggest-info span {

    font-size: 9px;

    color: var(--muted);

}

.follow-btn {

    border: 1px solid var(--ifh-green);

    background: transparent;

    color: var(--ifh-green);

    border-radius: 15px;

    padding: 4px 8px;

    font-size: 9px;

    cursor: pointer;

}

/* =========================================================
   EMPTY FEED
========================================================= */

.empty-feed {

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 60px 20px;

    text-align: center;

}

.empty-feed i {

    font-size: 42px;

    color: var(--ifh-green-light);

    margin-bottom: 15px;

}

.empty-feed h3 {

    margin: 0 0 5px;

    font-size: 17px;

}

.empty-feed p {

    margin: 0;

    color: var(--muted);

    font-size: 12px;

}

/* =========================================================
   MOBILE BOTTOM NAV
========================================================= */

.mobile-bottom-nav {

    display: none;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .social-layout {

        grid-template-columns: 190px minmax(0,650px);

    }

    .right-sidebar {

        display: none;

    }

}

@media (max-width: 760px) {

    .social-navbar {

        height: 58px;

    }

    .nav-inner {

        padding: 0 12px;

    }

    .brand {

        font-size: 16px;

    }

    .nav-search {

        display: none;

    }

    .nav-actions {

        gap: 1px;

    }

    .nav-icon {

        width: 38px;

        height: 38px;

    }

    .social-hero {

        padding: 12px 10px 8px;

    }

    .hero-inner {

        padding: 24px 20px;

        border-radius: 17px;

    }

    .hero-inner h1 {

        font-size: 25px;

    }

    .hero-inner p {

        font-size: 11px;

    }

    .category-scroll {

        padding: 5px 10px 14px;

    }

    .social-layout {

        display: block;

        padding: 0 0 75px;

    }

    .social-sidebar,
    .right-sidebar {

        display: none;

    }

    .create-post {

        border-radius: 0;

        border-left: 0;

        border-right: 0;

        margin-bottom: 8px;

        padding: 12px;

    }

    .feed-heading {

        padding: 0 12px;

    }

    .social-post {

        border-radius: 0;

        border-left: 0;

        border-right: 0;

        margin-bottom: 8px;

        box-shadow: none;

    }

    .post-header {

        padding: 13px 12px;

    }

    .post-content {

        padding-left: 12px;

        padding-right: 12px;

    }

    .post-tags {

        padding-left: 12px;

        padding-right: 12px;

    }

    .post-stats {

        padding-left: 12px;

        padding-right: 12px;

    }

    .post-action {

        font-size: 11px;

    }

    .post-action i {

        font-size: 15px;

    }

    .mobile-bottom-nav {

        position: fixed;

        display: flex;

        bottom: 0;

        left: 0;

        right: 0;

        height: 60px;

        background: var(--card);

        border-top: 1px solid var(--border);

        z-index: 9999;

        justify-content: space-around;

        align-items: center;

    }

    .mobile-nav-item {

        flex: 1;

        text-align: center;

        color: var(--muted);

        font-size: 9px;

        text-decoration: none;

    }

    .mobile-nav-item i {

        display: block;

        font-size: 19px;

        margin-bottom: 3px;

    }

    .mobile-nav-item.active {

        color: var(--ifh-green-light);

    }

    .mobile-create {

        width: 46px;

        height: 46px;

        border-radius: 50%;

        background: var(--ifh-green);

        color: white;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 20px;

        margin: auto;

    }

}


/* =========================================================
   LIKE BUTTON
========================================================= */

.like-post-btn .like-count {

    margin-left: 3px;

    font-size: 11px;

}

.like-post-btn.liked {

    color: #dc3545;

}

.like-post-btn.liked i {

    color: #dc3545;

}

.like-post-btn:disabled {

    opacity: .7;

    cursor: wait;

}

.like-post-btn.liked {
    color: #dc3545;
}

.like-post-btn.liked i {
    color: #dc3545;
}

.like-count {
    margin-left: 3px;
    font-size: 11px;
    font-weight: 600;
}

/* =========================================================
   COMMENTS DRAWER
========================================================= */

.comments-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.55);

    z-index: 100000;

    display: none;

    align-items: flex-end;

    justify-content: center;

    opacity: 0;

    transition: opacity .2s ease;

}

.comments-overlay.open {

    display: flex;

    opacity: 1;

}

.comments-drawer {

    width: 100%;

    max-width: 650px;

    height: min(720px, 90vh);

    background: var(--card);

    color: var(--text);

    border-radius: 20px 20px 0 0;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    transform: translateY(30px);

    transition: transform .2s ease;

    box-shadow:
        0 -10px 40px rgba(0,0,0,.18);

}

.comments-overlay.open .comments-drawer {

    transform: translateY(0);

}


/* HEADER */

.comments-header {

    flex: 0 0 auto;

    padding: 16px 18px;

    border-bottom: 1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.comments-header h3 {

    margin: 0;

    font-size: 16px;

    font-weight: 700;

}

.comments-total {

    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 10px;

}

.comments-close {

    width: 36px;

    height: 36px;

    border: 0;

    border-radius: 50%;

    background: var(--bg);

    color: var(--text);

    cursor: pointer;

}

.comments-close:hover {

    background: var(--border);

}


/* LIST */

.comments-list {

    flex: 1;

    overflow-y: auto;

    padding: 12px 16px 20px;

    overscroll-behavior: contain;

}

.comment-item {

    display: flex;

    gap: 10px;

    padding: 10px 0;

}

.comment-avatar {

    width: 38px;

    height: 38px;

    min-width: 38px;

    border-radius: 50%;

    overflow: hidden;

    background: var(--ifh-green);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

    font-weight: 700;

}

.comment-avatar img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.comment-body {

    min-width: 0;

    flex: 1;

}

.comment-bubble {

    background: var(--bg);

    border-radius: 14px;

    padding: 9px 12px;

    display: inline-block;

    max-width: 100%;

}

.comment-author {

    display: block;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 3px;

}

.comment-text {

    margin: 0;

    font-size: 12px;

    line-height: 1.55;

    white-space: pre-wrap;

    word-break: break-word;

}

.comment-meta {

    margin-top: 4px;

    padding-left: 5px;

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--muted);

    font-size: 9px;

}

.comment-delete {

    border: 0;

    background: transparent;

    padding: 0;

    color: #dc3545;

    cursor: pointer;

    font-size: 9px;

}

.comment-delete:hover {

    text-decoration: underline;

}


/* EMPTY */

.comments-empty {

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: var(--muted);

}

.comments-empty i {

    font-size: 38px;

    margin-bottom: 12px;

    color: var(--ifh-green-light);

}

.comments-empty strong {

    color: var(--text);

    font-size: 14px;

}

.comments-empty span {

    margin-top: 4px;

    font-size: 11px;

}


/* LOADING */

.comments-loading {

    min-height: 200px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: var(--muted);

    font-size: 12px;

}


/* COMPOSER */

.comments-composer {

    flex: 0 0 auto;

    border-top: 1px solid var(--border);

    padding: 10px 12px;

    display: flex;

    align-items: flex-start;

    gap: 9px;

    background: var(--card);

}

.comment-composer-avatar {

    width: 38px;

    height: 38px;

    min-width: 38px;

    border-radius: 50%;

    overflow: hidden;

    background: var(--ifh-green);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

}

.comment-composer-avatar img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.comment-input-wrap {

    flex: 1;

    min-width: 0;

    border: 1px solid var(--border);

    border-radius: 15px;

    background: var(--bg);

    overflow: hidden;

}

.social-comment-input {

    width: 100%;

    border: 0;

    outline: 0;

    resize: none;

    background: transparent;

    color: var(--text);

    padding: 10px 12px 4px;

    font-family: inherit;

    font-size: 12px;

    line-height: 1.5;

    min-height: 40px;

    max-height: 120px;

}

.comment-composer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 3px 7px 6px 12px;

}

.comment-character-count {

    color: var(--muted);

    font-size: 8px;

}

.submit-comment-btn {

    border: 0;

    background: var(--ifh-green);

    color: white;

    border-radius: 16px;

    padding: 6px 11px;

    font-size: 10px;

    cursor: pointer;

}

.submit-comment-btn:hover {

    background: var(--ifh-green-light);

}

.submit-comment-btn:disabled {

    opacity: .6;

    cursor: wait;

}


/* MOBILE */

@media (max-width: 760px) {

    .comments-overlay {

        align-items: flex-end;

    }

    .comments-drawer {

        height: 88vh;

        max-width: none;

        border-radius: 18px 18px 0 0;

    }

    .comments-header {

        padding: 13px 14px;

    }

    .comments-list {

        padding-left: 12px;

        padding-right: 12px;

    }

    .comments-composer {

        padding-bottom:
            calc(
                10px +
                env(safe-area-inset-bottom)
            );

    }

}


/* DARK MODE */

body.dark .comment-bubble {

    background: #1a2420;

}

/* =====================================================
   GUEST COMMENT LOGIN
===================================================== */

.guest-comment-login {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-top: 1px solid rgba(0,0,0,.08);
    background: #fff;
}

.guest-comment-login-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f3f5;
    color: #6c757d;
    flex-shrink: 0;
}

.guest-comment-login-content {
    flex: 1;
    min-width: 0;
}

.guest-comment-login-content strong {
    display: block;
    font-size: 14px;
    line-height: 1.3;
}

.guest-comment-login-content span {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: #777;
}

.guest-comment-login-btn {
    border: 0;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 480px) {

    .guest-comment-login {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .guest-comment-login-content {
        flex: 1;
    }

    .guest-comment-login-btn {
        width: 100%;
        margin-left: 52px;
        width: calc(100% - 52px);
    }

}


/* =========================================================
   AJAX SOCIAL FEED
========================================================= */

.social-feed-posts {
    position: relative;
    min-height: 20px;
}


/* Loading state */

.social-feed-loader {
    width: 100%;
    padding: 60px 20px;
    text-align: center;
}


.social-feed-spinner {
    font-size: 28px;
    margin-bottom: 12px;
}


.social-feed-loader p {
    margin: 0;
    font-size: 14px;
    color: #777;
}


/* Smooth feed transition */

.social-feed-posts.social-feed-loading {
    opacity: 0.65;
}


/* Retry button */

.retry-social-feed {
    margin-top: 15px;
    border: 0;
    padding: 10px 18px;
    border-radius: 8px;
    background: #0f5132;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
}


.retry-social-feed:hover {
    opacity: 0.9;
}


/* Category button accessibility */

.category-pill[aria-selected="true"] {
    font-weight: 600;
}

/* =====================================================
   GUEST LIKE LOGIN POPUP
===================================================== */

.guest-like-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
}

.guest-like-popup {
    position: relative;
    width: min(360px, 100%);
    padding: 30px 24px 25px;
    background: #fff;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: guestLikePopupIn 0.2s ease-out;
}

.guest-like-popup-icon {
    font-size: 42px;
    margin-bottom: 8px;
}

.guest-like-popup h3 {
    margin: 0 0 10px;
    font-size: 21px;
    color: #222;
}

.guest-like-popup p {
    margin: 0 auto 22px;
    max-width: 280px;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.guest-like-login-btn {
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 12px 20px;
    background: #0f5132;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.guest-like-login-btn:hover {
    opacity: 0.9;
}

.guest-like-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #f1f1f1;
    color: #555;
    font-size: 24px;
    line-height: 30px;
    cursor: pointer;
}

.guest-like-popup-close:hover {
    background: #e5e5e5;
}

@keyframes guestLikePopupIn {

    from {
        opacity: 0;
        transform: scale(0.94) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

}


//========================================================
//=========================================================


/* =========================================================
   SOCIAL POST COMPOSER
========================================================= */

.create-input {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--bg);
    border-radius: 25px;
    padding: 11px 16px;
    color: var(--muted);
    font-size: 13px;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
}

.create-input:hover {
    border-color: var(--ifh-green-light);
}


/* =========================================================
   OVERLAY
========================================================= */

.social-composer-overlay {
    position: fixed;
    inset: 0;
    z-index: 200000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0,0,0,.58);
    backdrop-filter: blur(4px);
}

.social-composer-overlay.open {
    display: flex;
}


/* =========================================================
   COMPOSER
========================================================= */

.social-composer {
    width: min(560px, 100%);
    max-height: 90vh;

    display: flex;
    flex-direction: column;

    background: var(--card);
    color: var(--text);

    border-radius: 20px;

    box-shadow:
        0 25px 80px rgba(0,0,0,.30);

    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.social-composer-header {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 20px;

    border-bottom: 1px solid var(--border);
}

.social-composer-header h3 {
    margin: 0;
    font-size: 18px;
}

.social-composer-header span {
    display: block;
    margin-top: 3px;

    color: var(--muted);
    font-size: 11px;
}

.social-composer-close {
    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 50%;

    background: var(--bg);
    color: var(--text);

    cursor: pointer;
}


/* =========================================================
   BODY
========================================================= */

.social-composer-body {
    flex: 1;

    overflow-y: auto;

    padding: 18px 20px;
}


/* =========================================================
   TYPE BUTTONS
========================================================= */

.social-composer-types {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.composer-type {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 11px 8px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: var(--card);
    color: var(--muted);

    font-family: inherit;
    font-size: 12px;

    cursor: pointer;
}

.composer-type i {
    color: var(--ifh-green-light);
}

.composer-type.active {
    background: var(--ifh-green);
    border-color: var(--ifh-green);
    color: #fff;
}

.composer-type.active i {
    color: #fff;
}


/* =========================================================
   FIELDS
========================================================= */

.composer-field {
    margin-bottom: 15px;
}

.composer-field label {
    display: block;

    margin-bottom: 6px;

    font-size: 11px;
    font-weight: 600;
}

.composer-field textarea,
.composer-field input,
.composer-field select {
    width: 100%;

    border: 1px solid var(--border);
    border-radius: 11px;

    background: var(--bg);
    color: var(--text);

    padding: 11px 12px;

    outline: none;

    font-family: inherit;
    font-size: 12px;
}

.composer-field textarea {
    resize: vertical;
    min-height: 100px;
}

.composer-field textarea:focus,
.composer-field input:focus,
.composer-field select:focus {
    border-color: var(--ifh-green-light);
}


/* =========================================================
   UPLOAD BOX
========================================================= */

.composer-upload-box {
    min-height: 150px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 7px;

    border: 2px dashed var(--border);
    border-radius: 15px;

    background: var(--bg);

    cursor: pointer;

    text-align: center;
}

.composer-upload-box:hover {
    border-color: var(--ifh-green-light);
}

.composer-upload-box i {
    font-size: 32px;
    color: var(--ifh-green-light);
}

.composer-upload-box strong {
    font-size: 13px;
}

.composer-upload-box span {
    color: var(--muted);
    font-size: 10px;
}

.composer-file-name {
    margin-top: 8px;

    color: var(--muted);

    font-size: 11px;

    word-break: break-word;
}


/* =========================================================
   EVENT
========================================================= */

.composer-event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}


/* =========================================================
   PROGRESS
========================================================= */

.social-upload-progress {
    margin-top: 15px;
}

.social-upload-progress-top {
    display: flex;
    justify-content: space-between;

    margin-bottom: 7px;

    font-size: 11px;
}

.social-upload-progress-top strong {
    color: var(--ifh-green-light);
}

.social-upload-progress-bar {
    width: 100%;
    height: 7px;

    overflow: hidden;

    border-radius: 10px;

    background: var(--border);
}

.social-upload-progress-bar span {
    display: block;

    width: 0;
    height: 100%;

    background: var(--ifh-green-light);

    transition: width .2s ease;
}


/* =========================================================
   ERROR
========================================================= */

.social-composer-error {
    margin-top: 12px;

    padding: 10px 12px;

    border-radius: 9px;

    background: rgba(220,53,69,.10);
    color: #dc3545;

    font-size: 11px;
}


/* =========================================================
   FOOTER
========================================================= */

.social-composer-footer {
    flex: 0 0 auto;

    display: flex;
    justify-content: flex-end;

    gap: 8px;

    padding: 14px 20px;

    border-top: 1px solid var(--border);
}

.social-composer-cancel,
.social-composer-submit {
    border: 0;
    border-radius: 10px;

    padding: 10px 18px;

    font-family: inherit;
    font-size: 12px;

    cursor: pointer;
}

.social-composer-cancel {
    background: var(--bg);
    color: var(--text);
}

.social-composer-submit {
    background: var(--ifh-green);
    color: #fff;
}

.social-composer-submit:hover {
    background: var(--ifh-green-light);
}

.social-composer-submit:disabled {
    opacity: .6;
    cursor: wait;
}


/* =========================================================
   MOBILE — BOTTOM SHEET
========================================================= */

@media (max-width: 760px) {

    .social-composer-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .social-composer {
        width: 100%;
        max-height: 92vh;

        border-radius: 20px 20px 0 0;
    }

    .social-composer-header {
        padding: 15px 16px;
    }

    .social-composer-body {
        padding: 15px 16px;
    }

    .social-composer-footer {
        padding:
            12px 16px
            calc(12px + env(safe-area-inset-bottom));
    }

    .composer-event-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

}


/* =========================================================
   COMPOSER CHARACTER COUNT
========================================================= */

.composer-character-count {
    display: flex;
    justify-content: flex-end;

    margin-top: 5px;

    color: var(--muted);

    font-size: 10px;
}




/* =========================================================
   PHOTO POST COMPOSER
========================================================= */

.photo-post-modal {
    position: fixed;
    inset: 0;
    z-index: 200000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.photo-post-modal.open {
    display: flex;
}

.photo-post-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(4px);
}

.photo-post-dialog {
    position: relative;
    z-index: 1;

    width: min(620px, 100%);
    max-height: min(90vh, 800px);

    display: flex;
    flex-direction: column;

    background: var(--card);
    color: var(--text);

    border: 1px solid var(--border);
    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 25px 80px rgba(0,0,0,.30);

    animation:
        photoPostModalIn
        .2s
        ease-out;
}


/* =========================================================
   HEADER
========================================================= */

.photo-post-header {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 17px 20px;

    border-bottom: 1px solid var(--border);
}

.photo-post-header h3 {
    margin: 0;

    font-size: 17px;
    font-weight: 700;
}

.photo-post-header span {
    display: block;

    margin-top: 3px;

    color: var(--muted);
    font-size: 11px;
}

.photo-post-close {
    width: 36px;
    height: 36px;

    border: 0;
    border-radius: 50%;

    background: var(--bg);
    color: var(--text);

    font-size: 25px;
    line-height: 1;

    cursor: pointer;
}

.photo-post-close:hover {
    background: var(--border);
}


/* =========================================================
   BODY
========================================================= */

.photo-post-body {
    flex: 1;

    overflow-y: auto;

    padding: 20px;
}


/* =========================================================
   FIELDS
========================================================= */

.photo-post-field {
    margin-bottom: 18px;
}

.photo-post-field label {
    display: block;

    margin-bottom: 7px;

    font-size: 12px;
    font-weight: 600;
}

.photo-post-field textarea,
.photo-post-field select {
    width: 100%;

    border: 1px solid var(--border);
    border-radius: 11px;

    background: var(--bg);
    color: var(--text);

    outline: none;

    font-family: inherit;
}

.photo-post-field textarea {
    min-height: 110px;

    resize: vertical;

    padding: 12px;

    font-size: 13px;
    line-height: 1.6;
}

.photo-post-field select {
    height: 42px;

    padding: 0 12px;

    font-size: 12px;
}

.photo-post-field textarea:focus,
.photo-post-field select:focus {
    border-color: var(--ifh-green-light);
}


/* =========================================================
   DESCRIPTION META
========================================================= */

.photo-description-meta {
    display: flex;
    justify-content: space-between;

    margin-top: 5px;

    color: var(--muted);

    font-size: 9px;
}


/* =========================================================
   SELECT PHOTOS
========================================================= */

.photo-upload-section {
    margin-top: 5px;
}

.select-photos-btn {
    width: 100%;

    min-height: 105px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 4px;

    border: 2px dashed var(--border);
    border-radius: 14px;

    background: var(--bg);
    color: var(--text);

    cursor: pointer;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.select-photos-btn:hover {
    border-color: var(--ifh-green-light);

    background:
        rgba(25,135,84,.05);
}

.select-photos-btn i {
    margin-bottom: 3px;

    font-size: 25px;

    color: var(--ifh-green-light);
}

.select-photos-btn strong {
    font-size: 13px;
}

.select-photos-btn span {
    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   PREVIEW GRID
========================================================= */

.photo-preview-container {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;

    margin-top: 15px;
}

.photo-preview-container:empty {
    display: none;
}

.photo-preview-item {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 10px;

    background: #111;

    border: 1px solid var(--border);
}

.photo-preview-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   REMOVE PHOTO
========================================================= */

.photo-preview-remove {
    position: absolute;

    top: 6px;
    right: 6px;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: rgba(0,0,0,.72);
    color: white;

    font-size: 16px;

    cursor: pointer;
}

.photo-preview-remove:hover {
    background: #dc3545;
}


/* =========================================================
   FEATURED LABEL
========================================================= */

.photo-preview-featured {
    position: absolute;

    left: 6px;
    bottom: 6px;

    padding: 4px 7px;

    border-radius: 5px;

    background: rgba(15,81,50,.9);
    color: white;

    font-size: 8px;
    font-weight: 600;
}


/* =========================================================
   STATUS
========================================================= */

.photo-upload-status {
    margin-top: 14px;

    padding: 10px 12px;

    border-radius: 8px;

    font-size: 11px;
}

.photo-upload-status.error {
    background: rgba(220,53,69,.1);
    color: #dc3545;
}

.photo-upload-status.success {
    background: rgba(25,135,84,.1);
    color: var(--ifh-green-light);
}

.photo-upload-status.loading {
    background: var(--bg);
    color: var(--muted);
}


/* =========================================================
   FOOTER
========================================================= */

.photo-post-footer {
    flex: 0 0 auto;

    display: flex;
    justify-content: flex-end;

    gap: 9px;

    padding: 13px 20px;

    border-top: 1px solid var(--border);
}

.photo-cancel-btn,
.photo-submit-btn {
    border: 0;

    border-radius: 9px;

    padding: 10px 17px;

    font-family: inherit;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
}

.photo-cancel-btn {
    background: var(--bg);
    color: var(--text);
}

.photo-submit-btn {
    background: var(--ifh-green);
    color: white;
}

.photo-submit-btn:hover {
    background: var(--ifh-green-light);
}

.photo-submit-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark .photo-post-dialog {
    background: var(--card);
}

body.dark .photo-post-field textarea,
body.dark .photo-post-field select {
    background: #0f1512;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes photoPostModalIn {

    from {
        opacity: 0;
        transform: scale(.96) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .photo-post-modal {
        padding: 0;
        align-items: flex-end;
    }

    .photo-post-dialog {
        width: 100%;
        max-height: 94vh;

        border-radius:
            18px
            18px
            0
            0;
    }

    .photo-post-body {
        padding: 16px 13px;
    }

    .photo-post-header {
        padding: 14px;
    }

    .photo-post-footer {
        padding:
            11px 13px
            calc(11px + env(safe-area-inset-bottom));
    }

    .photo-preview-container {
        grid-template-columns:
            repeat(3, 1fr);

        gap: 6px;
    }

}

/* =========================================================
   NEW SOCIAL POST
========================================================= */

.new-social-post {
    animation: newPostAppear 0.5s ease-out;
}

@keyframes newPostAppear {

    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   DELETING POST
========================================================= */

.social-post-deleting {
    opacity: 0.5;
    pointer-events: none;
    transform: scale(0.98);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}




/* =========================================================
   COMMENTS DISABLED MESSAGE
========================================================= */

.comments-disabled-message {
    width: calc(100% - 32px);
    max-width: 420px;
    margin: 24px auto;
    padding: 24px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #f8faf9;
    border: 1px solid #e2ebe7;
    border-radius: 18px;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.06);

    animation: commentsDisabledFadeIn 0.25s ease;
}

/* ICON */

.comments-disabled-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border-radius: 50%;

    background: #e8f3ef;
    color: #087f5b;

    font-size: 22px;
}

.comments-disabled-icon i {
    line-height: 1;
}

/* TITLE */

.comments-disabled-message strong {
    display: block;

    margin-bottom: 6px;

    color: #172b26;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

/* DESCRIPTION */

.comments-disabled-message span {
    display: block;

    max-width: 320px;

    color: #71807b;

    font-size: 13px;
    line-height: 1.6;
}

/* ANIMATION */

@keyframes commentsDisabledFadeIn {

    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================================
   DARK MODE
========================================================= */

body.dark .comments-disabled-message {
    background: #17221f;
    border-color: #293b35;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.25);
}

body.dark .comments-disabled-icon {
    background: #203c33;
    color: #42c89a;
}

body.dark .comments-disabled-message strong {
    color: #f0f5f3;
}

body.dark .comments-disabled-message span {
    color: #9eada8;
}



/* =========================================================
   SOCIAL REPORT MODAL
========================================================= */

.social-report-modal {
    position: fixed;
    inset: 0;

    z-index: 100500;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;
}

.social-report-modal.open {
    display: flex;
}

/* BACKDROP */

.social-report-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(10, 20, 18, 0.58);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    animation: reportBackdropIn .2s ease;
}

/* DIALOG */

.social-report-dialog {
    position: relative;

    width: 100%;
    max-width: 470px;

    max-height: calc(100vh - 40px);

    overflow-y: auto;

    background: #ffffff;

    border-radius: 22px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .22);

    animation: reportDialogIn .25s ease;
}

/* HEADER */

.social-report-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;

    padding: 22px 22px 16px;

    border-bottom: 1px solid #edf1ef;
}

.social-report-header h3 {
    margin: 0 0 5px;

    color: #17221f;

    font-size: 20px;
    font-weight: 700;
}

.social-report-header p {
    margin: 0;

    color: #7a8883;

    font-size: 13px;
    line-height: 1.5;
}

.social-report-close {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #f3f6f5;

    color: #65736e;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.social-report-close:hover {
    background: #e8eeeb;
    color: #17221f;
    transform: rotate(90deg);
}

/* REASONS */

.social-report-reasons {
    padding: 10px 14px;
}

.social-report-reason {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 13px 9px;

    border: 0;
    border-radius: 13px;

    background: transparent;

    text-align: left;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .15s ease;
}

.social-report-reason:hover {
    background: #f4f8f6;
}

.social-report-reason:active {
    transform: scale(.985);
}

/* ICON */

.report-reason-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eef6f2;

    color: #087f5b;

    font-size: 16px;
}

/* TEXT */

.report-reason-text {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 2px;
}

.report-reason-text strong {
    color: #24322e;

    font-size: 14px;
    font-weight: 650;
}

.report-reason-text small {
    color: #89948f;

    font-size: 12px;
    line-height: 1.4;
}

.social-report-reason > .fa-angle-right {
    color: #aab4b0;
    font-size: 16px;
}

/* DETAILS */

.social-report-details {
    padding: 5px 20px 18px;
}

.social-report-details label {
    display: block;

    margin-bottom: 8px;

    color: #26342f;

    font-size: 13px;
    font-weight: 600;
}

.social-report-details textarea {
    width: 100%;

    min-height: 110px;

    resize: vertical;

    padding: 13px;

    border: 1px solid #dce5e1;
    border-radius: 12px;

    outline: none;

    color: #25322e;
    background: #fafcfb;

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.social-report-details textarea:focus {
    border-color: #087f5b;

    box-shadow:
        0 0 0 3px rgba(8, 127, 91, .09);
}

.social-report-character-count {
    margin-top: 5px;

    text-align: right;

    color: #98a39f;

    font-size: 11px;
}

/* FOOTER */

.social-report-footer {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 10px;

    padding: 15px 20px 20px;

    border-top: 1px solid #edf1ef;
}

.social-report-cancel,
.social-report-submit {
    min-height: 42px;

    padding: 0 17px;

    border-radius: 11px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        opacity .2s ease,
        background .2s ease,
        transform .15s ease;
}

.social-report-cancel {
    border: 1px solid #dce5e1;

    background: #ffffff;

    color: #586761;
}

.social-report-cancel:hover {
    background: #f4f7f5;
}

.social-report-submit {
    border: 0;

    background: #087f5b;

    color: #ffffff;

    box-shadow:
        0 5px 14px rgba(8, 127, 91, .18);
}

.social-report-submit:hover:not(:disabled) {
    background: #066b4c;
}

.social-report-submit:active:not(:disabled) {
    transform: scale(.97);
}

.social-report-submit:disabled {
    opacity: .45;
    cursor: not-allowed;
    box-shadow: none;
}

/* SELECTED REASON */

.social-report-reason.selected {
    background: #eef7f3;
}

.social-report-reason.selected .report-reason-icon {
    background: #087f5b;
    color: #ffffff;
}

/* MOBILE */

@media (max-width: 520px) {

    .social-report-modal {
        align-items: flex-end;

        padding: 0;
    }

    .social-report-dialog {
        max-width: none;

        max-height: 90vh;

        border-radius:
            22px 22px 0 0;

        animation:
            reportSheetIn .25s ease;
    }

    .social-report-header {
        padding:
            20px 18px 15px;
    }

    .social-report-reasons {
        padding:
            8px 12px;
    }

    .social-report-footer {
        padding:
            13px 16px 18px;
    }

}

/* ANIMATIONS */

@keyframes reportBackdropIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

@keyframes reportDialogIn {

    from {
        opacity: 0;
        transform: translateY(15px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

@keyframes reportSheetIn {

    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================================
   DARK MODE
========================================================= */

body.dark .social-report-dialog {
    background: #17221f;
}

body.dark .social-report-header {
    border-color: #293833;
}

body.dark .social-report-header h3 {
    color: #f1f5f3;
}

body.dark .social-report-header p {
    color: #98a8a2;
}

body.dark .social-report-close {
    background: #25332f;
    color: #a9b5b0;
}

body.dark .social-report-close:hover {
    background: #30403b;
    color: #ffffff;
}

body.dark .social-report-reason:hover {
    background: #22312c;
}

body.dark .social-report-reason.selected {
    background: #203b32;
}

body.dark .report-reason-text strong {
    color: #eaf0ed;
}

body.dark .report-reason-text small {
    color: #8e9e98;
}

body.dark .report-reason-icon {
    background: #253d35;
    color: #4ac99b;
}

body.dark .social-report-reason > .fa-angle-right {
    color: #64746e;
}

body.dark .social-report-details label {
    color: #eaf0ed;
}

body.dark .social-report-details textarea {
    background: #1d2925;
    border-color: #34443f;
    color: #edf3f0;
}

body.dark .social-report-footer {
    border-color: #293833;
}

body.dark .social-report-cancel {
    background: #17221f;
    border-color: #34443f;
    color: #b3bfba;
}


