.phase-iv .location_sect {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 0;
}

.phase-iv .header-search-pill {
    gap: 10px;
    width: 100%;
    max-width: 580px;
    padding: 0 0 0 20px;
    background-color: #fff;
    border: 1px solid #E1E1E1;
    border-radius: 100px;
}

.phase-iv .header-search-pill .icon-search {
    --search-icon-size: 26px;
    width: var(--search-icon-size);
    height: var(--search-icon-size);
}

.phase-iv .header-search-pill input {
    width: 100%;
    min-width: 0;
    padding: 0;
    color: #212529;
    background: none;
    border: none;
    outline: none;
}

.phase-iv .header-search-pill input::placeholder {
    color: #ADB1B8;
}

.phase-iv .header-location-select {
    min-width: 140px;
    padding: 10px 40px;
    color: #212529;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #E1E1E1;
    border-radius: 100px;
    outline: none;
    cursor: pointer;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.phase-iv .header-location-container svg {
    position: absolute;
    cursor: pointer;
}

.phase-iv .header-location-container .select--location-icon {
    left: 14px;
}

.phase-iv .header-location-container .select--droparrow-icon {
    --droparrow-icon-size: 10px;
    width: var(--droparrow-icon-size);
    height: var(--droparrow-icon-size);
    right: 14px;
}

.phase-iv .nav_right-sect .nav_btn.promote {
    padding: 10px 20px !important;
}

.phase-iv .nav_right-sect .nav_btn.promote>i.fa-solid {
    color: #4EAD38;
}

.phase-iv .nav_right-sect .nav_btn.promote:hover {
    border-color: #4EAD38 !important;
}

.phase-iv .nav_right-sect .nav_btn.post {
    padding: 10px 18px !important;
    color: #F7C71F;
    background-color: #242A36;
    border-radius: 25px;
}

.phase-iv .nav_right-sect .nav_btn.post:hover {
    color: #242A36;
    background-color: transparent;
    border-color: #242A36 !important;
}

.phase-iv .nav_right-sect .nav_btn.post i {
    font-size: 14px;
}

.phase-iv .nav_btn.learn-more:hover {
    background-color: rgba(234, 234, 235, 1);
}

label.title {
    color: rgba(124, 128, 135, 1);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2%;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.area-selector {
    display: flex;
    align-items: center;
    padding: 4px;
    border: 1.5px solid rgba(234, 234, 235, 1); 
    border-radius: 100px;
    overflow: hidden;
}

.area-selector .area-item {
    flex: 1;
    padding: 7px 18px;
    color: rgba(37, 43, 55, 1);
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border: 1.5px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    transition: all .25s ease;
}

.area-selector .area-item:hover {
    border-color: rgba(37, 43, 55, 1);
}

.area-selector .area-item:has(input[type="checkbox"]:checked) {
    background: rgba(37, 43, 55, 1);
    color: rgba(255, 255, 255, 1);
}

.area-selector .area-item :is(input[type="checkbox"], input[type="radio"]) {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.topics-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 9px;
    max-width: 760px;
}

.topic-pill {
    --topic-color: #667085;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 40px;
    padding: 10px 18px;
    color: rgba(37, 43, 55, 1) !important;
    background: transparent;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    border: 1.5px solid rgba(234, 234, 235, 1) !important;
    border-radius: 100px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease;
}

.single-select .topic-pill {
    flex: 1;
}

.topic-pill:hover {
    border: 1.5px solid var(--topic-color) !important;
}

.topic-pill:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--topic-color) 25%, transparent);
    outline-offset: 2px;
}

.topic-pill:has(input[type="checkbox"]:checked),
.topic-pill:has(input[type="radio"]:checked) {
    background: color-mix(in srgb, var(--topic-color) 10%, white);
    border: 1.5px solid var(--topic-color) !important;
}

.single-select .topic-pill:has(input[type="radio"]:checked) {
    color: var(--topic-color) !important;
}

.topic-pill :is(input[type="checkbox"], input[type="radio"]) {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
    
.topic-icon {
    --topic-icon-size: 18px;
    width: var(--topic-icon-size);
    height: var(--topic-icon-size);
    color: var(--topic-color);
    fill: currentColor;
}

.neighborhood-news-category {
    --topic-color: rgba(43, 211, 79, 1);
}

.business-category {
    --topic-color: rgba(43, 30, 230, 1);
}

.arts-music-category {
    --topic-color: rgba(244, 65, 151, 1);
}

.events-category {
    --topic-color: rgba(158, 43, 211, 1);
}

.pets-wildlife-category {
    --topic-color: rgba(211, 146, 43, 1);
}

.grumble-freely-category {
    --topic-color: rgba(244, 42, 42, 1);
}

@media (max-width: 600px) {
    .topics-section {
        padding: 12px 10px;
    }

    .topics-list {
        gap: 8px;
    }

    .topic-pill {
        min-height: 38px;
        padding: 7px 13px;
        font-size: 14px;
    }
}

.post .post__content .post__header .post-author .post-author__info .badge.badge-success {
    background-color: #4EAD38;
    font-weight: 400;
    border-radius: 25px;
}

.post .post__body .post__header .post-author .post-author__info .total-referred .referred-star {
    width: 24px;
    height: 24px;
    margin-right: 0.15rem;
}

.post .post__body .post__header .post-author .post-author__info .total-referred .referred-count {
    color: #F4820A;
    font-weight: 600;
}

.post .post__body .post__content .post__header .post-meta .time {
    margin-right: 0.5rem !important;
}

.post .post__body .post__content .post__header .post-meta .options-toggle {
    transition: background-color 0.35s ease-in-out;
}

.post .post__body .post__content .post__header .post-meta .options-toggle:is(:hover, :focus, .active, :active) {
    background-color: rgba(234, 234, 235, 1);
}

.dropdown-menu {
    --bs-dropdown-min-width: 200px;
    --bs-dropdown-padding-x: 10px;
    --bs-dropdown-padding-y: 10px;
    --bs-dropdown-border-radius: 20px;
    --bs-border-color-translucent: rgba(0, 0, 0, 0);
    --bs-dropdown-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);

    box-shadow: var(--bs-dropdown-box-shadow);
}
            
.dropdown-menu .dropdown-item {
    --bs-dropdown-item-padding-x: 12px;
    --bs-dropdown-item-padding-y: 12px;
    --bs-dropdown-link-color: rgba(37, 43, 55, 1);

    display: flex;
    align-items: center;
    column-gap: 10px;
    border-radius: 12px;
}

.dropdown-item:is(:hover, :focus) {
    --bs-dropdown-link-hover-color: rgba(37, 43, 55, 1);
    --bs-dropdown-link-hover-bg: rgba(234, 234, 235, 1);
}

.dropdown-item:is(.active, :active) {
    --bs-dropdown-link-active-color: rgba(37, 43, 55, 1);
    --bs-dropdown-link-active-bg: rgba(234, 234, 235, 1);
}

.dropdown-menu .dropdown-item .dropdown-icon {
    --icon-size: 18px;
    width: var(--icon-size);
    height: var(--icon-size);
}

.dropdown-menu .dropdown-item .dropdown-text {
    font-size: 16px;
    font-weight: 500;
}

.post .post__content .post__text .post-figure {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.post .post__content .post__text p {
    margin-bottom: 1rem;
}

.post .post__content .post__text .post-figure :is(img, video) {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 1rem;
}

.post .post__content .post__text .post-figure img {
    -o-object-fit: cover;
    object-fit: cover;
}

.post .post__content .post__text .post-figure video {
    aspect-ratio: 1 / 1;
    -o-object-fit: contain;
    object-fit: contain;
}

.post .post__content .post__tags a:not(:last-child)::after {
    content: ',';
}

.post .post__footer .post-actions li a {
    display: flex;
    column-gap: 0.5rem;
    justify-content: center;
    align-items: center;
    padding: 10px 12px;
    color: #7d8187 !important;
    background-color: transparent;
    border-radius: 100px;
    transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
}

.post .post__footer .post-actions li a.view-btn:is(:hover, :focus, .active, :active) {
    color: rgba(69, 69, 69, 1) !important;
    background-color: rgba(212, 212, 212, 1);
}

.post .post__footer .post-actions li a.comment-btn:is(:hover, :focus, .active, :active) {
    color: rgba(21, 145, 229, 1) !important;
    background-color: rgba(232, 245, 253, 1);
}

.post .post__footer .post-actions li a.like-btn:is(:hover, :focus) {
    color: rgba(255, 0, 94, 1) !important;
    background-color: rgba(255, 230, 239, 1);
}

.post .post__footer .post-actions li a.like-btn:is(.active, :active) {
    color: rgba(255, 0, 94, 1) !important;
}

.post .post__footer .post-actions li a.share-btn:is(:hover, :focus) {
    color: rgba(17, 202, 78, 1) !important;
    background-color: rgba(232, 250, 238, 1);
}

.post .post__footer .post-actions li a.share-btn:is(.active, :active) {
    color: rgba(17, 202, 78, 1) !important;
}

.post .post__footer .post-actions li a svg {
    --svg-size: 18px;
    width: var(--svg-size);
    height: var(--svg-size);
}

.post .post__footer .post-actions li a svg path {
    fill: #7C8087;
    transition: fill 0.35s ease-in-out;
}

.post .post__footer .post-actions li a.view-btn:is(:hover, :focus, .active, :active) svg path {
    fill: rgb(69, 69, 69);
}

.post .post__footer .post-actions li a.comment-btn:is(:hover, :focus, .active, :active) svg path {
    fill: rgba(21, 145, 229, 1);
}

.post .post__footer .post-actions li a.like-btn:is(:hover, :focus, .active, :active) svg path {
    fill: rgba(255, 0, 94, 1);
}

.post .post__footer .post-actions li a.share-btn:is(:hover, :focus, .active, :active) svg path {
    fill: rgba(17, 202, 78, 1);
}

.post .post__body .post__content .post-comment--actions .post__footer .post-actions .like-btn:not(:is(.active, :active)) .like-text {
    display: none;
}

.comment-sort {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    border: none;
    transition: color 0.35s ease-in-out;
}

.comment-sort:hover {
    color: var(--bs-link-color);
}

.post .post__body .post__content .post-comment .post-author .post-author__avatar {
    --width-height: 35px !important;
}

.post .post__body .post__content .post-comment--actions .post__header .post-meta .options-toggle {
    --width-height: 28px !important;
    font-size: 12px !important;
}

:is(#addPostModal, #sharePostModal) .btn-close {
    padding: 10px;
    position: absolute;
    top: 12px;
    right: 12px;
    color:rgba(37, 43, 55, 1);
    background-color: transparent;
    border-radius: 100%;
    transform: rotate(0deg);
    transition: 
        background-color 0.35s ease,
        transform 0.35s ease;
}

:is(#addPostModal, #sharePostModal) .btn-close:hover {
    background-color: rgba(234, 234, 235, 1);
    transform: rotate(180deg);
}

.modal .about__author {
    display: flex;
    gap: .5rem;
    justify-content: flex-start;
    align-items: center;
}

.modal .about__author .author__avatar {
    --width-height: 42px;
    width: var(--width-height);
    height: var(--width-height);
}

.modal .about__author .author__avatar .author__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
}

.modal .about__author .author__info {
    position: relative;
    line-height: 1.15;
}

.modal .about__author .author__info .author__name {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
}

.modal .about__author .author__info :is(.author__company, .author__location) {
    position: relative;
    font-size: 13px;
    font-weight: 400;
}

.modal .about__author .author__info .author__company::before {
    content: "•";
    position: absolute;
    right: -10px;
}

.post-category--info-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 16px;
    color: rgba(37, 43, 55, 1);
    background: color-mix(in srgb, var(--topic-color) 10%, white);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    border-radius: 12px;
    transition:
        color 0.18s ease,
        background-color 0.18s ease,;
}

.post-category--info-box .info-icon {
    padding: 10px;
    background: color-mix(in srgb, var(--topic-color) 18%, white);
    border-radius: 100%;
}

.post-category--info-box .info-content .info-title {
    color: var(--topic-color);
    font-size: 16px;
    font-weight: 600;
}

.post-category--info-box .info-content .info-desc {
    font-size: 14px;
    font-weight: 400;
    margin: 4px 0 0;
}

.post-category--info-box .info-icon svg {
    color: var(--topic-color);
    fill: currentColor;
}

.modal form.comment-post--form .col-12:not(.post-categories) label {
    color: rgba(37, 43, 55, 1) !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
}

.modal form.comment-post--form input.form-control {
    height: 45px !important;
    padding: 15px 20px 15px 20px !important;
}

.modal form.comment-post--form .calender-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    width: 18px;
    height: 20px;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.modal form.comment-post--form :is(input#post-start-date, input#post-end-date) {
    padding-left: 48px !important;
    cursor: pointer;
}

.flatpickr-calendar.open {
    max-width: 280px;
}

.flatpickr-calendar .flatpickr-months {
    border-bottom: 1px solid var(--bs-gray-200);
    padding: 3px 0;
    margin-bottom: 3px;
}

.flatpickr-calendar.open .flatpickr-current-month {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-size: 14px;
    padding: 4px 10px;
}

.flatpickr-current-month .numInputWrapper {
    font-size: 14px;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    width: 12px;
    height: 12px;
}

.flatpickr-days {
    width: 280px;
}

.flatpickr-days .dayContainer {
    width: 280px;
    min-width: 280px;
    max-width: 280px;
}

.custom-dropzone {
    min-height: 115px;
    position: relative;
    padding: 0;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border: 2px dashed rgba(234, 234, 235, 1);
    border-radius: 12px;
    transition: border-color 0.35s ease-in-out;
}

.custom-dropzone:hover {
    border-color: rgba(37, 43, 55, 1);
}

.custom-dropzone .dz-message {
    margin: 0;
    text-align: center;
    padding: 30px 20px;
}

.custom-dropzone h6 {
    color: rgba(37, 43, 55, 1);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.custom-dropzone p {
    color: rgba(130, 141, 152, 1);
    font-size: 14px;
    font-weight: 400;
    margin: 8px 0 0;
}

.custom-dropzone .dz-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.custom-dropzone .dz-preview .dz-image {
    display: none;
}

.custom-dropzone .dz-preview .dz-details {
    padding: 1em 1em;
}

.custom-dropzone .dz-preview .dz-progress {
    top: 85%;
}

.custom-dropzone .dz-preview .dz-remove {
    padding: 5px 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    border-radius: 50%;
    z-index: 30;
}

.custom-dropzone .dz-preview .dz-remove > i {
    font-size: 12px;
}

.modal .button-group {
    width: 100%;
    gap: 0.75rem;
}

.modal .button-group button.nav_btn.learn-more {
    flex: 1;
    padding:  10px 20px !important;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-transform: none;
    border-color: var(--bs-gray-200);
    border-radius: 12px;
    margin: 0;
}

.modal .button-group button.nav_btn.learn-more.post-btn {
    background-color: #F7C71F !important;
    border-color: #F7C71F !important;
}

#sharePostModal .modal-body .share-post--form .form-control {
    height: 64px !important;
    padding: 8px 70px 8px 20px !important;
    border-width: 2px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#sharePostModal .modal-body .share-post--form .copy-to-clipboard {
    --icon-size: 48px;
    width: var(--icon-size);
    height: var(--icon-size);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: absolute;
    right: 10px;
    color: #212529;
    background-color: #e8e7ec;
    border-radius: 12px;
}

@media screen and (max-width: 767px) {
    .post .post__body.card-body {
        --bs-card-spacer-y: 0.75rem;
        --bs-card-spacer-x: 0.75rem;
    }

    .post .post__body .post__content .post-author {
        gap: .5rem !important;
    }

    .post-author .post-author__avatar {
        --width-height: 35px !important;
    }

    .post .post__body .post__content .post-author .post-author__info .post-author__name {
        font-size: 14px !important;
        line-height: 1;
    }

    .post .post__body .post__content .post-author .post-author__info .post-author__company,
    .post .post__body .post__content .post-author .post-author__info .post-author__location {
        font-size: 11px !important;
    }

    .post .post__body .post__header .post-author .post-author__info .total-referred {
        display: none;
    }

    .post .post__body .post__content .post__header .post-meta .time {
        font-size: 12px !important;
        margin-right: 0 !important;
    }

    .post .post__body .post__content .post__header .post-meta .options-toggle {
        --width-height: 28px !important;
        font-size: 14px !important;
    }

    .post .post__footer .post-actions li a {
        column-gap: 0.25rem !important;
        padding: 6px 10px;
        font-size: 14px;
    }

    .post .post__body .post__content .post-comment--actions .post__footer .post-actions .like-btn .like-text {
        display: none;
    }
}