@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: var(--font-poppins);
    color: var(--primary-color);
    background: var(--body-color);
}

body.no-scroll {
    overflow: hidden;
}

*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --body-color: #ffffff;
    --sidebar-BG-color: #f6f6f6;
    --white-color: #ffffff;
    --card-border: #dfdfdf;
    --border-color: #dfdfdf;

    --green-color: #11d574;
    --red-color: #ff592f;

    --black-rgba-color: 0, 0, 0;
    --white-rgba-color: 255, 255, 255;

    --input-radius: 6px;
    --main-sidebar-width: 195px;

    --primary-color: #404040;
    --sidebar-link: #909090;
    --secondary-BgColor: #f6b41d;
    --secondary-BgColor-rgba: 246, 180, 29;

    --reel-box-height: calc(100svh - 80px - 44px - 20px);

    --font-poppins: "Poppins", sans-serif;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}
::-webkit-scrollbar-track {
    /* background-color: var(--primary-color); */
    background: rgba(var(--white-rgba-color), 30%) !important;
    border-radius: 10px !important;
}
::-webkit-scrollbar-thumb {
    background: var(--secondary-BgColor) !important;
    border-radius: 10px !important;
}

a,
button {
    margin: 0;
    text-decoration: none;
    -o-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}
ul li {
    list-style-type: none;
}

figure {
    margin: 0;
}

img {
    margin: 0;
    vertical-align: middle;
}

a,
input,
button,
select,
textarea {
    margin: 0;
    outline: none;
    box-shadow: none;
}

.tab-pan:focus-visible,
.tab-content:focus-visible,
.form-select:focus-visible,
input:focus,
.form-select:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="month"],
input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    background: url("../image/icon/date-icon-white-dark.svg"), rgba(var(--black-rgba-color), 0.06);
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 24px;
    cursor: pointer;
    font-size: 16px;
    line-height: 100%;
    padding: 18px 30px 18px 20px;
}

input[type="month"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

textarea {
    padding: 13px 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--primary-color);
    background: rgba(var(--black-rgba-color), 0.06);
    border-radius: var(--input-radius);
    border: 0;
    width: 100%;
    resize: none;
}

/* Global CSS */
input {
    padding: 13px 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--primary-color);
    background: rgba(var(--black-rgba-color), 0.06);
    border-radius: var(--input-radius);
    border: 0;
    width: 100%;
}

input::placeholder {
    color: var(--primary-color);
    opacity: 0.5;
}

.form-label {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.3px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.input-group {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    color: var(--primary-color);
    background: rgba(var(--black-rgba-color), 0.06);
    border-radius: var(--input-radius);
    border: 0;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    padding: 13px 20px;
}

.input-group .inputGroupText {
    padding-right: 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--primary-color);
}

.input-group input {
    padding: 0;
    background: transparent;
}

.form-select {
    padding: 17px 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--primary-color);
    border-radius: var(--input-radius);
    border: 0;
    width: 100%;
    --bs-form-select-bg-img: url("../image/icon/dropdownArrow-white.svg");
    background-size: 10px;
    background-position: right 15px center;
    background-color: rgba(var(--black-rgba-color), 0.06);
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    vertical-align: middle;
}

.custom-checkbox input {
    display: none;
}
.custom-checkbox .checkmark {
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    position: relative;
}

.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    background: url("../image/icon/checkmark-dark.svg") no-repeat;
    background-size: 14px;
    background-position: center;
    inset: 0;
    margin: auto;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}
.custom-checkbox input:checked + .checkmark::after {
    opacity: 1;
}

/* Radio Button */
.custom-radio {
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.custom-radio input {
    display: none;
}

.radio-box {
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    border: 1.5px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
}

.radio-box::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url("../image/icon/checkmark-dark.svg") no-repeat center/contain;
    background-size: 17px;
    background-position: center;
    opacity: 0;
    scale: 0;
    transition: all 0.2s ease;
}

.custom-radio input:checked + .radio-box::after {
    opacity: 1;
    scale: 1;
}

/* switch toggle */
.switchToggle {
    --w: 50px;
    --h: 28px;
    --thumb: 22px;
    --pad: 3px;
    --on: var(--secondary-BgColor);
    --off: var(--border-color);
    position: relative;
    display: inline-block;
    max-width: var(--w);
    min-width: var(--w);
    height: var(--h);
}

.switchToggle input {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
    z-index: 3;
}

.switchToggle .track {
    position: absolute;
    inset: 0;
    background: var(--secondary-BgColor);
    border-radius: 30px;
    transition: background 0.2s ease;
}

.switchToggle .thumb {
    position: absolute;
    width: var(--thumb);
    height: var(--thumb);
    top: var(--pad);
    left: var(--pad);
    background: var(--white-color);
    border-radius: 50%;
    transition: all 0.22s ease;
    z-index: 2;
}

.switchToggle input:not(:checked) ~ .track {
    background: var(--off);
}
.switchToggle input:not(:checked) ~ .thumb {
    left: var(--pad);
}

.switchToggle input:checked ~ .thumb {
    left: calc(var(--w) - var(--thumb) - var(--pad));
}

.btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: var(--primary-color);
    font-family: var(--font-poppins);
    padding: 13px 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: fit-content;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn.btnPrimaryOutline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
}
.btn.btnPrimaryOutline:hover,
.btn.btnPrimaryOutline:focus-visible {
    opacity: 0.8;
}

.btn.btnPrimary {
    border: 1px solid var(--primary-color);
    color: var(--body-color);
    background-color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
}
.btn.btnPrimary:hover,
.btn.btnPrimary:focus-visible {
    background: var(--sidebar-BG-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn.btnSuccess {
    color: var(--white-color);
    background-color: #00ae58;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
}

.btn.btnSuccess:hover {
    background-color: var(--green-color);
}

.upload-image-box {
    padding: 26px;
    border-radius: 6px;
    border: 1px dashed #00000045;
    overflow: hidden;
    background: rgba(var(--black-rgba-color), 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    cursor: pointer;
}

.upload-image-box .upload-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.upload-image-box .upload-content p {
    color: #00000080;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.heading-title {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: -0.3px;
    color: var(--primary-color);
}

.smallHeading {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    display: inline-block;
}

p {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--primary-color);
    opacity: 0.7;
}

.text-primary {
    color: var(--primary-color) !important;
}

.avatar {
    max-width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    overflow: hidden;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
}
.avatar img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}
.avatar44px {
    max-width: 44px;
    min-width: 44px;
    height: 44px;
}

/* Modal */
.modal-content {
    color: var(--primary-color);
    background-color: var(--sidebar-BG-color);
    border: 0;
    border-radius: 10px;
}

/* --- Custom navTabs --- */
.tab-content > .active {
    outline: 0;
    box-shadow: none;
}

.navTab-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    flex: 1;
}

.navTab-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    -webkit-mask-image: none;
    mask-image: none;
    transition:
        mask-image 0.3s ease,
        -webkit-mask-image 0.3s ease;
}

.navTab-wrapper.fade-both {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.navTab-wrapper.fade-right {
    -webkit-mask-image: linear-gradient(to right, #000 90%, transparent 100%);
    mask-image: linear-gradient(to right, #000 90%, transparent 100%);
}

.navTab-wrapper.fade-left {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%);
    mask-image: linear-gradient(to right, transparent 0%, #000 10%);
}

.navTab-wrapper::-webkit-scrollbar {
    display: none;
}

.customNavTab {
    border: 0;
    background: var(--sidebar-BG-color);
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
    width: fit-content;
    white-space: nowrap;
}

.customNavTab .nav-link {
    flex: 0 0 auto;
    border: 0;
    margin: 0;
    padding: 13px 40px;
    border-radius: var(--input-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    /* color: var(--white-color); */
    color: var(--black);
    transition: all 0.3s linear;
    white-space: nowrap;
}

.customNavTab .nav-link:focus-visible {
    box-shadow: none;
    outline: none;
}
.customNavTab .nav-link.active {
    /* background: var(--white-color); */
    background: rgba(var(--secondary-BgColor-rgba), 0.5);
    color: var(--black);
}

.nav-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-BgColor);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: rgb(255, 255, 255, 0.7);
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s ease;
}

.nav-scroll-btn:hover {
    color: var(--primary-color);
}

.nav-scroll-btn.prev {
    left: 0px;
}

.nav-scroll-btn.next {
    right: 0px;
}

/* --- */

/* Offcanvas */
.offcanvas {
    background: var(--sidebar-BG-color);
    color: var(--primary-color);
    border-radius: 10px;
    z-index: 1052;
    margin: 10px;
}
.offcanvas-backdrop {
    z-index: 1051;
}

.offcanvas-footer {
    padding: 20px;
}

.btn-close {
    --bs-btn-close-bg: url("../image/icon/closeIcon.svg");
    opacity: 1;
    font-size: 20px;
}

.btn-option {
    background: transparent;
    border: none;
    color: var(--primary-color);
    padding: 13px 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    transition: all 0.2s ease;
}

.btn-check + .btn:hover {
    color: inherit;
}

.btn-check:checked + .btn-option {
    background: var(--secondary-BgColor);
    color: var(--primary-color);
    border-radius: var(--input-radius) !important;
}

.custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 8px 0;
}

.custom-radio input {
    display: none;
}

.custom-radio .radio-btn {
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.custom-radio .radio-btn::after {
    content: "";
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

.custom-radio input:checked + .radio-btn::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Dropdown */
.dropdown .dropdown-menu {
    background: var(--sidebar-BG-color);
    color: var(--primary-color);
    padding: 20px;
    border-radius: 6px;
}

.dropdown .dropdown-menu .dropdownItem {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}
.dropdown .dropdown-menu .dropdownItem:first-child {
    padding-top: 0;
}
.dropdown .dropdown-menu .dropdownItem:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.dropdown .dropdown-menu .dropdownItem .dropdownLink {
    color: var(--primary-color);
    display: block;
}

/* swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    height:100%;
}
.swiper-wrapper{
    height:100%;
}

.swiper-slide img {
    display: block;
    /* width: 100%; */
    height: 100%;
    object-fit: contain;
}

/*==== main sidebar ====*/
aside {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    max-width: var(--main-sidebar-width);
    min-width: var(--main-sidebar-width);
    height: 100dvh;
    padding: 16px;
    background: var(--sidebar-BG-color);
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

aside .sidebar-header {
    padding: 12px 16px 28px;
    text-align: center;
    border-bottom: 0.5px solid transparent;
    /* border-image: linear-gradient(90deg, #292e33 0%, #cacaca 48.08%, #292e33 100%) 1; */
    border-image-source: linear-gradient(90deg, #f6f6f6 0%, #a3a3a3 48.08%, #f6f6f6 100%);
    border-image-slice: 1;
    border-image-repeat: stretch;
}

aside .sidebar-body {
    padding: 28px 0 16px;
    flex-grow: 1;
    overflow-y: auto;
}

aside .sidebar-body li .sideLink {
    padding: 8px 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    color: var(--sidebar-link);
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.3px;
    opacity: 0.5;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

aside .sidebar-body li .sideLink.active {
    /* background: rgba(var(--white-rgba-color), 0.15); */
    background: rgba(var(--secondary-BgColor-rgba), 0.5);
    color: var(--primary-color);
    opacity: 1;
}

aside .sidebar-body li .sideLink:hover,
aside .sidebar-body li .sideLink:focus-visible {
    opacity: 1;
}

aside .sidebar-body li .sideLink svg {
    max-width: 34px;
    min-width: 34px;
    height: 34px;
}

/*--- main Content ---*/
.main-content {
    margin-left: var(--main-sidebar-width);
    padding: 22px;
    min-height: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
/*--- Header ---*/
header {
    background: var(--sidebar-BG-color);
    padding: 10px 16px 10px 25px;
    border-radius: var(--input-radius);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
}
header .sidebarToggle {
    display: none;
}
header .avatar {
    max-width: 60px;
    min-width: 60px;
    height: 60px;
}
header .mobileLogo {
    display: none;
}

header .notification {
    color: var(--primary-color);
}

.main-content .inner-content {
    margin-top: 20px;
    position: relative;
}



/*----- Filter Bar -----*/
.filterBar {
    padding-bottom: 20px;
    border-bottom: 0.5px solid var(--border-color);
    /* border-bottom: 0.5px solid var(--border-color); */
}

.filterBar .locationDropdown h6 {
    /* color: var(--white-rgba-color); */
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
}

.filterBar .locationDropdown .dropdown-toggle {
    border: 0;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    padding-inline-end: 24px;
}

.dropdown-toggle::after {
    content: "";
    position: absolute;
    /* background: url("../image/icon/dropdownArrow-white.svg") no-repeat; */
    background: url("../image/icon/dropdownArrow-dark.svg") no-repeat;
    background-size: 100%;
    border: 0;
    display: flex;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    width: 10px;
    height: 6px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.filterBar .locationDropdown .dropdown-menu {
    background: var(--sidebar-BG-color);
    color: var(--primary-color);
    width: 448px;
    padding: 20px;
    border-radius: var(--input-radius);
    margin-top: 20px !important;
}

.filterBar .locationDropdown .dropdown-menu .dropdownClose {
    display: none;
}

.filterBar .locationDropdown .dropdown-menu ul {
    max-height: 400px;
    overflow-y: auto;
}
.filterBar .locationDropdown .dropdown-menu ul li {
    padding: 14px 0;
    border-bottom: 0.5px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--primary-color);
}

.filterBar .locationDropdown .dropdown-menu ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.filterBar .searchBtn,
.filterBar .filterBtn {
    background-color: inherit;
    border: inherit;
}

.filterBar .searchBtn img,
.filterBar .filterBtn img {
    max-width: 32px;
    min-width: 32px;
    height: fit-content;
}

/* search Preview Box */
.searchPreviewBox {
    padding: 20px;
    background: var(--sidebar-BG-color);
    box-shadow: 0px 0px 4px 2px #cdcdcd40;
    border-radius: var(--input-radius);
}

.searchPreviewBox ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(1.25rem, 8.333vw - 1.25rem, 6.25rem);
    row-gap: 12px;
}
.searchPreviewBox ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.searchPreviewBox ul li .location {
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    /* color: var(--white-color); */
    color: var(--primary-color);
}

.filterBar .filters .dropdown-menu.SortBy {
    margin-top: 20px !important;
    width: 337px;
}

.filterBar .filters .dropdown-menu.SortBy ul li {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    padding: 20px 0;
    border-bottom: 0.5px solid var(--border-color);
}

.filterBar .filters .dropdown-menu.SortBy ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.filterBar .filters .dropdown-menu.SortBy ul li label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
    margin: 0;
}

/*--- Post Section ---*/
.postGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.post-card {
    border: 1px solid var(--card-border);
    border-radius: 8px;
    display: block;
    height: fit-content;
}

.post-card .post-header {
    padding: 20px 20px 18px 20px;
    flex-wrap: nowrap !important;
}
.post-card .post-image {
    width: 100%;
    aspect-ratio: 13/10;
    overflow: hidden;
    position: relative;
    background-color: var(--sidebar-BG-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-card .post-image img {
    /* width: 100%; */
    height: 100%;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}

.post-card .post-image .imgNotUploaded {
    height: 97px;
    max-width: 100%;
    object-fit: unset;
}

.post-card .post-image .morePost {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 24px;
    height: 24px;
}

.post-card .post-image .location {
    position: absolute;
    left: 13px;
    top: 13px;
    background: rgba(var(--black-rgba-color), 40%);
    border-radius: 3px;
    padding: 5px 14px;
    font-family: var(--font-poppins);
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

.post-card .post-detail {
    padding: 20px;
}

.user-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-card .post-header .ctaBtn {
    max-width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgb(246, 246, 246, 0.2); */
    background: var(--sidebar-BG-color);
    color: var(--primary-color);
}
.post-card .post-header .ctaBtn.phone {
    background: var(--secondary-BgColor);
}

.post-card .post-detail .icon {
    max-width: 24px;
    min-width: 24px;
    height: auto;
}
.post-card .post-detail .likeIcon.active {
    fill: var(--primary-color);
}

.post-card .post-detail ul li {
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 10px;
}

.post-card .post-detail ul li:last-child {
    margin-bottom: 0;
}

.post-card .post-detail .clamp-block {
    overflow: hidden;
    position: relative;
    max-width: 600px;
    color: var(--primary-color);
    cursor: pointer;
    margin-top: 16px;
    opacity: 0.7;
}
.post-card .post-detail .clamp-block .clamp__more {
    text-decoration: none;
    white-space: nowrap;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}

/* Good PPost grid */
/* .post-grid {
  columns: 3;
  column-gap: 20px;
}

.post-grid .post-card {
    width: 100%;
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
}

@media (max-width: 1200px) {
  .post-grid { column-count: 2; }
}
@media (max-width: 991px) {
  .post-grid { column-count: 1; }
} */



/* .loaderBox {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    margin: auto;
    background: var(--white-color);
    z-index: 9999;
} */
 
#loader {
    width: 35px;
    margin: auto;
    aspect-ratio: 1;
    --_g: no-repeat radial-gradient(farthest-side, var(--secondary-BgColor) 94%, #0000);
    background:
        var(--_g) 0 0,
        var(--_g) 100% 0,
        var(--_g) 100% 100%,
        var(--_g) 0 100%;
    background-size: 40% 40%;
    animation: loaderDots 0.5s infinite;
}
@keyframes loaderDots {
    100% {
        background-position:
            100% 0,
            100% 100%,
            0 100%,
            0 0;
    }
}

.post-grid {
    width: 100% !important;
    transition: none !important;
    position: relative;
}

.post-grid .post-sizer {
    width: calc(25% - 15px);
}

.post-grid .post-card {
    margin-bottom: 20px;
    width: calc(25% - 15px);
    background: var(--body-color);
    -webkit-transition: all 0.3s linear !important;
    transition: all 0.3s linear !important;
}

.post-card .post-detail .cardAddressTruncate {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-card .post-detail .open {
    color: var(--green-color);
}
.post-card .post-detail .close {
    color: var(--red-color);
}

.selectLocationDashed {
    border: 1px dashed rgba(var(--black-rgba-color), 0.3);
    background: rgba(var(--black-rgba-color), 0.06);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #40404087;
}

/*--- Range slider ---*/
.form-range {
    height: 4px;
    border-radius: 8px;
    appearance: none;
}

.form-range::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary-color) !important;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: none !important;
}

.form-range::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--primary-color) !important;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: none !important;
}

.form-range::-webkit-slider-runnable-track {
    background: linear-gradient(
        to right,
        var(--primary-color) 0%,
        var(--primary-color) var(--val, 25%),
        #0000001b var(--val, 25%),
        #0000001b 100%
    );
    height: 4px;
    border-radius: 8px;
}

.range-slider {
    position: relative;
}
.range-slider .rangSliderNumbers {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--primary-color);
    opacity: 50%;
}

/*--- Profile Sidebar ---*/
.profileSidebar {
    max-width: 474px;
    width: 100%;
}
.profileSidebar .completeProfileScreen .profileImage {
    max-width: 90px;
    min-width: 90px;
    height: 90px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sidebar-link);
    margin-bottom: 20px;
}

.profileSidebar .completeProfileScreen .profileImage svg,
.profileSidebar .completeProfileScreen .profileImage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.myProfileSidebar {
    max-width: 474px;
    width: 100% !important;
}

.myProfileSidebar .profileImage {
    max-width: 150px;
    min-width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--border-color);
    margin-bottom: 14px;
}

.myProfileSidebar .profileImage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.myProfileSidebar .userName {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
}

.myProfileSidebar .contactLink a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: var(--primary-color);
    opacity: 70%;
    margin-bottom: 2px;
}

.myProfileSidebar hr {
    border-top: 1px solid var(--card-border);
    opacity: 1;
    width: 100%;
}

.myProfileSidebar .ctaList {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.myProfileSidebar .ctaList li a {
    background: rgba(var(--black-rgba-color), 0.05);
    border-radius: var(--input-radius);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: nowrap;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.myProfileSidebar .ctaList li a .icon {
    height: 24px;
    max-width: 24px;
    min-width: 24px;
}

.myProfileSidebar .ctaList li a .ctaArrow {
    transition: all 0.3s ease-in-out;
}
.myProfileSidebar .ctaList li a:hover .ctaArrow {
    transform: translateX(5px);
}

.myProfileSidebar .title {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    margin-top: 24px;
}

.myProfileSidebar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    row-gap: 6px;
    flex-wrap: wrap;
}

.myProfileSidebar ul .ctaLinks a {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: var(--primary-color);
    text-decoration: underline;
}
.myProfileSidebar ul .ctaLinks a:after {
    content: '|';
    margin-inline: 3px;
}

.myProfileSidebar ul .ctaLinks:last-child a::after {
    content: '';
}

/*----- Edit Profile Page -----*/
.editProfilePage_form .userImage {
    height: 146px;
    min-width: 146px;
    max-width: 146px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sidebar-link);
    color: var(--primary-color);
}

.editProfilePage_form .userImage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*--- Setting Page ---*/
.notificationList {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.notificationList li {
    border-radius: var(--input-radius);
    background: var(--sidebar-BG-color);
    padding: 18px 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.notificationList li .notification-icon {
    max-width: 24px;
    min-width: 24px;
    height: 24px;
}

.preferenceUseList li:has(.custom-radio input:checked) {
    box-shadow:
        0px 0px 2px 0.5px #00000012,
        inset 0px 0px 1px 0.5px #00000029;
}

/* My Listing post detail page */
.postSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 4px;
    display: inline-block;
    border-radius: 70px;
    background: var(--black);
    opacity: 0.5;
    transition: all 0.3s linear !important;
}
.postSwiper .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

.more,
.less {
    text-decoration: none;
    cursor: pointer;
    color: var(--primary-color);
}

.less {
    color: #a8a8a8;
}

.more:hover,
.less:hover {
    text-decoration: underline;
}

.expanded-text {
    display: none;
}

/* POst details */
.postDetails_table {
    overflow-x: auto;
    width: 100%;
    border: 1px solid var(--card-border);
    border-radius: 8px;
}
.postDetails_table table {
    width: 100%;
    border-collapse: collapse;
}
.postDetails_table table th,
.postDetails_table table td {
    padding: 24px;
    font-weight: 500;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 100%;
    border-top: 1px solid var(--card-border);
}

.postDetails_table table th {
    font-size: 12px;
    opacity: 50%;
}
.postDetails_table table tr:first-child td,
.postDetails_table table tr:first-child th {
    border-top: 0;
}
.postDetails_table table td {
    font-size: 16px;
    border-left: 1px solid var(--card-border);
}

/*====== Reels Page ======*/
.reel-container {
    max-width: 650px;
    width: 100%;
    /* height: calc(100svh - 80px - 44px - 20px); */
    height: var(--reel-box-height);
    overflow-y: clip;
    position: relative;
    margin: 0 auto;
}

.reel-container .scrollingBtn {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.reel-container .scrollingBtn .reelNextPrevBtn {
    background: #4040400f;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.reelScrolling-container {
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

.reelScrolling-container::-webkit-scrollbar,
.reelScrolling-container::-webkit-scrollbar-track {
    display: none;
}

.reelsBox {
    max-width: 470px;
    width: 100%;
    border-radius: 8px;
    height: var(--reel-box-height);
    background: var(--border-color);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    scroll-snap-align: start;
}

.reelsBox video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reelsBox .contentBox {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    min-height: 200px;
    overflow-y: auto;
    padding: 16px 16px 25px clamp(1rem, 1.458vw + 0.563rem, 1.875rem);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 5.73%, rgba(0, 0, 0, 0.8) 100%);
}

.reelsBox .playPauseBtn {
    width: 70px;
    height: 70px;
    background: #00000057;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
}

.reelsBox .ctaBtns {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 18px;
}

.reelsBox .ctaBtns .reel_cta {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
}

.reelsBox .contentBox .userBlock {
    display: flex;
    /* align-items: center; */
    gap: 12px;
}
.reelsBox .contentBox .userImage {
    max-width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
}

.reelsBox .contentBox .userImage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.reelsBox .contentBox .userName {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--white-color);
}

.reelsBox .contentBox .moreLessDescription {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: #C2C2C4;
    max-width: 360px;
    margin-top: 10px;
    max-height: 150px;
    overflow-y: auto;
}

.reelsBox .contentBox .more, 
.reelsBox .contentBox .less {
    color: #C2C2C4;
    font-weight: 600;
}

/* CSS (paste in your stylesheet) */
.star {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 0;
    vertical-align: middle;
  }
.star svg {
    width: 100%;
    height: 100%;
    display: block;
}
.star .bg { fill: #ccc; }   /* empty/background star color */
.star .fg { fill: #333; }  /* filled/star color */
  