/* Investment page css start */

.filter-dropdown { position: relative; display: inline-block; }
.dropdown-content {
    display: none; 
    position: absolute; 
    overflow-y: auto;
}
.filter-dropdown.open .dropdown-content { display: block; }
.inv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
}

.investments-filter-wrapper-mobile .inv-mobile-search-wrapper .inv-mobile-search-box .inv-mobile-search-btn:focus svg path {
    stroke: unset;
}

@media (max-width: 992px) {
    .inv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .inv-grid {
        grid-template-columns: 1fr;
    }
}
.inv-card {
    background: var(--e-global-color-82d6c03);
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.inv-thumb-wrapper { position: relative;}
.load-more-btn { border: none;}
.closed-offering-greyed-out {
    background-color: var(--e-global-color-a84f92c);
    opacity: 1;
}

.closed-offering-greyed-out h3,
.closed-offering-greyed-out .inv-content,
.closed-offering-greyed-out ul,
.closed-offering-greyed-out .inv-thumb-wrapper img,
.closed-offering-greyed-out .offering-tags {
    filter: grayscale(100%);
    opacity: 0.6;
}

.closed-offering-greyed-out .button.alt-button {
    filter: none;
    opacity: 1;
}

#invcard-popup{
    padding-top: 10%;
}

.investments-filter-wrapper .inv-grid {
    gap: 24px;
}

.investments-filter-wrapper .inv-card {
    background: var(--e-global-color-a84f92c);
    border: 1px solid rgba(133, 144, 153, 0.5);
    padding: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

.investments-filter-wrapper .inv-card .inv-thumb-wrapper {
    order: -1;
    padding-top: 56.457%;
    margin: 0;
}

.investments-filter-wrapper .inv-card .inv-thumb-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.investments-filter-wrapper .inv-card .inv-thumb-wrapper .offering-tags {
    background: #C5ECEA;
    position: absolute;
    top: 16px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    padding: 6px 16px;
    left: 16px;
}

.investments-filter-wrapper .inv-card .inv-thumb-wrapper .offering-tags span {
    background: no-repeat;
    color: var(--e-global-color-5eb75c4);
    padding: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    margin: 0;
    display: inline-block;
    font-size: var(--e-global-typography-4aa9b92-font-size);
    line-height: var(--e-global-typography-4aa9b92-line-height);
    font-family: var( --e-global-typography-4aa9b92-font-family ), sans-serif;
    font-weight: var(--e-global-typography-4aa9b92-font-weight);
}


.active-bg {
    position: absolute;
    top: 14px;
    left: 0px;
    height: calc(100% - 28px);
    background: var(--e-global-color-primary);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    transition: all 0.1s ease;
    z-index: 1;
}

.investments-filter-wrapper .filter-section {
    margin: 0px 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px 38px;
    flex-wrap: wrap;
}

.investments-filter-wrapper .filter-section .filter-options {
    width: calc(100% - 143px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.investments-filter-wrapper .applied-filters {
    width: calc(100% - 143px);
    margin-left: auto;
    margin-bottom: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.investments-filter-wrapper .applied-filters ul {
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.investments-filter-wrapper .applied-filters ul li {
    padding: 7px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #E2E2E2;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    font-size: var(--e-global-typography-4aa9b92-font-size);
    line-height: var(--e-global-typography-4aa9b92-line-height);
    font-family: var(--e-global-typography-4aa9b92-font-family), Sans-serif;
    font-weight: var(--e-global-typography-4aa9b92-font-weight);
    color: var(--e-global-color-5eb75c4);
}

.investments-filter-wrapper .applied-filters ul li .clear-filter-item-btn {
    font-weight: 600;
    font-size: var(--e-global-typography-4aa9b92-font-size);
    line-height: 1;
    cursor: pointer;
}

.investments-filter-wrapper .applied-filters .clear-all-filter-items-btn {
    color: #C15E0D;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.investments-filter-wrapper .applied-filters .clear-all-filter-items-btn:hover {
    color: var(--e-global-color-primary);
}

.investments-filter-wrapper .filter-section h5 {
    color: var(--e-global-color-5eb75c4);
}

.investments-filter-wrapper .filter-section .dropdown-toggle,
.investments-filter-wrapper .filter-section .dropdown-toggle:focus,
.investments-filter-wrapper .filter-section .dropdown-toggle:hover {
    background: var(--e-global-color-a84f92c);
    border: 1px solid var( --e-global-color-8acbc55 );
    padding: 19px 20px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    cursor: pointer;
    font-size: var(--e-global-typography-8d587e8-font-size);
    line-height: var(--e-global-typography-8d587e8-line-height);
    font-family: var( --e-global-typography-8d587e8-font-family ), Sans-serif;
    color: var( --e-global-color-5eb75c4 );
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.investments-filter-wrapper .filter-section .dropdown-toggle:focus,
.investments-filter-wrapper .filter-section .dropdown-toggle:hover,
.investments-filter-wrapper .inv-card:hover {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.08);
}

.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-toggle:before {
    display: inline-block;
    margin-right: 12px;
    width: 30px;
    height: 30px;
    content: '';
    background-size: 30px;
    background-repeat: no-repeat;
}

.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-toggle:after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="9" viewBox="0 0 14 9" fill="none"><path d="M12.75 0.75L6.75 7.75L0.75 0.75" stroke="%2350585F" stroke-width="1.5" stroke-linecap="round"/></svg>');
    display: inline-block;
    width: auto;
    height: auto;
    position: absolute;
    right: 26px;
    transition: all 0.5s ease;
}

.investments-filter-wrapper .filter-section .filter-dropdown.open .dropdown-toggle:after {
    transform: rotate(180deg);
}

.investments-filter-wrapper .filter-section .filter-dropdown:first-child .dropdown-toggle:before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M16.3516 8.91737L14.9609 0.764189C14.9609 0.764189 25.5063 0.0617762 29.329 8.54108C33.4074 17.5974 27.4146 25.2237 27.4146 25.2237L21.6773 19.4099C21.6773 19.4099 23.6729 16.1612 21.8581 12.5613C19.8875 8.654 16.3455 8.91109 16.3455 8.91109L16.3516 8.91737Z" stroke="%23343A40" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.096 19.6975C10.096 19.6975 11.4032 22.2444 14.4702 22.7823C17.644 23.3396 19.5796 21.9333 19.5796 21.9333L25.2234 27.8436C25.2234 27.8436 19.6299 31.9457 12.5344 30.4034C4.6659 28.699 2.32812 22.4453 2.32812 22.4453L10.096 19.6975Z" stroke="%23343A40" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.83612 16.0723C8.83612 16.0723 8.57461 14.3454 9.44989 12.4827C10.3252 10.62 12.5924 9.51597 12.5924 9.51597L11.2796 1.54102C11.2796 1.54102 4.94601 3.08915 2.50251 7.96786C-0.560986 14.0801 1.32334 18.9095 1.32334 18.9095L8.83612 16.0723Z" stroke="%23343A40" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.investments-filter-wrapper .filter-section .filter-dropdown:nth-child(2) .dropdown-toggle:before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="43" height="32" viewBox="0 0 43 32" fill="none"><path d="M7.83803 20.9272C11.7526 20.9272 14.9256 17.7538 14.9256 13.8392C14.9256 9.92466 11.7526 6.75122 7.83803 6.75122C3.92344 6.75122 0.75 9.92466 0.75 13.8392C0.75 17.7538 3.92344 20.9272 7.83803 20.9272Z" stroke="%23343A40" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M5.47266 13.6056L7.1453 15.2782L10.0434 12.3801" stroke="%23343A40" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M27.5117 9.55362L21.8477 3.88989" stroke="%23343A40" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M21.8477 9.55362L27.5117 3.88989" stroke="%23343A40" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M22.0456 30.7503C23.8657 30.7503 25.3411 29.2748 25.3411 27.4547C25.3411 25.6346 23.8657 24.1592 22.0456 24.1592C20.2255 24.1592 18.75 25.6346 18.75 27.4547C18.75 29.2748 20.2255 30.7503 22.0456 30.7503Z" stroke="%23343A40" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M22.2038 17.9455C22.2038 17.9455 29.5439 19.1336 34.7862 13.0657C40.0286 6.99783 38.3132 0.750181 38.3132 0.750181" stroke="%23343A40" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.investments-filter-wrapper .filter-section .filter-dropdown:last-child .dropdown-toggle:before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M14.0833 19.9173C14.0833 22.2173 17.815 24.084 22.4167 24.084C27.0183 24.084 30.75 22.2173 30.75 19.9173M0.75 11.584C0.75 13.884 4.48167 15.7507 9.08333 15.7507C10.96 15.7507 12.6917 15.4407 14.0833 14.9173M0.75 17.4173C0.75 19.7173 4.48167 21.584 9.08333 21.584C10.96 21.584 12.69 21.274 14.0833 20.7507M22.4167 17.4173C17.815 17.4173 14.0833 15.5507 14.0833 13.2507C14.0833 10.9507 17.815 9.08398 22.4167 9.08398C27.0183 9.08398 30.75 10.9507 30.75 13.2507C30.75 15.5507 27.0183 17.4173 22.4167 17.4173Z" stroke="%23343A40" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M0.75 4.91602V23.2493C0.75 25.5493 4.48167 27.416 9.08333 27.416C10.96 27.416 12.69 27.106 14.0833 26.5827M14.0833 26.5827V13.2493M14.0833 26.5827C14.0833 28.8827 17.815 30.7494 22.4167 30.7494C27.0183 30.7494 30.75 28.8827 30.75 26.5827V13.2493M17.4167 9.91602V4.91602" stroke="%23343A40" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.08333 9.08333C4.48167 9.08333 0.75 7.21667 0.75 4.91667C0.75 2.61667 4.48167 0.75 9.08333 0.75C13.685 0.75 17.4167 2.61667 17.4167 4.91667C17.4167 7.21667 13.685 9.08333 9.08333 9.08333Z" stroke="%23343A40" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content {
    width: 100%;
    border: 1px solid var(--e-global-color-8acbc55);
    background: var(--e-global-color-a84f92c);
    box-shadow: 0px 4px 12.3px 5px #85909926;
    border-radius: 12px;
    padding: 32px;
    z-index: 2;
    margin-top: 4px;
    max-height: 555px;
}

.investments-filter-wrapper .inv-card h4 {
    color: var( --e-global-color-primary );
    margin: 12px 0 18px;
}

.investments-filter-wrapper .inv-card .type-tags .tag-label {
    font-size: var(--e-global-typography-4aa9b92-font-size);
    line-height: var(--e-global-typography-4aa9b92-line-height);
    font-weight: var(--e-global-typography-4aa9b92-font-weight);
    color: var( --e-global-color-5eb75c4 );
    font-family: var( --e-global-typography-4aa9b92-font-family ), Sans-serif;
    display: block;
    padding-left: 51px;
    position: relative;
}

.investments-filter-wrapper .inv-card .type-tags .tag-label:before {
    content: '';
    width: 43px;
    height: 2px;
    background-color: var(--e-global-color-544fcd6);
    position: absolute;
    left: 0;
    top: 9px;
}

.investments-filter-wrapper .inv-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.investments-filter-wrapper .inv-card ul li:first-child {
    border-top: 1px solid rgba(133, 144, 153, 0.5);
}

.investments-filter-wrapper .inv-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(133, 144, 153, 0.5);
    color: var( --e-global-color-5eb75c4 );
    font-family: var( --e-global-typography-8d587e8-font-family ), Sans-serif;
    text-transform: capitalize;
}
.investments-filter-wrapper .inv-card ul li h6 {
    display: flex;
    justify-content: space-between;
    font-size: var(--e-global-typography-a0afab5-font-size);
    line-height: var(--e-global-typography-a0afab5-line-height);
}
.investments-filter-wrapper .inv-card ul li .inv-value {
    color: #C15E0D;
}

.investments-filter-wrapper .inv-card .alt-button {
    padding: 23px 12px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    align-self: start;
    background: var( --e-global-color-secondary );
    width: 100%;
    text-align: center;
    font-size: var(--e-global-typography-8d587e8-font-size);
    line-height: var(--e-global-typography-8d587e8-line-height);
    color: var( --e-global-color-5eb75c4 );
    font-family: var( --e-global-typography-8d587e8-font-family ), Sans-serif;
    transition: all 0.3s ease;
}

.investments-filter-wrapper .inv-card .alt-button:hover,
.investments-filter-wrapper .inv-card .alt-button:focus {
    background-color: var( --e-global-color-primary );
    color: var( --e-global-color-82d6c03 );
}

.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .filter-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    gap: 19px;
    margin-top: 26px;
}

.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .filter-actions button {
    cursor: pointer;
    background-color: transparent;
    flex: 0 0 calc(50% - 10px);
    max-height: 62px;
}
.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .filter-actions button.apply-filter {
    background: var( --e-global-color-secondary );
    border-color: var( --e-global-color-secondary );
}

.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .filter-actions button:hover,
.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .filter-actions button:focus,
.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .filter-actions button.apply-filter:hover,
.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .filter-actions button.apply-filter:focus {
    background-color: var( --e-global-color-primary );
    color: var( --e-global-color-82d6c03 );
    border-color: var( --e-global-color-primary );
}

.investments-filter-wrapper .inv-card-body {
    padding: 32px 32px 0;
}
.investments-filter-wrapper .inv-card-footer {
    padding: 0 32px 32px;
    margin-top: auto;
}
.investments-filter-wrapper .inv-card-footer .elementor-button{
    width: 100%;
}

.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list label {
    display: block;
    font-size: var(--e-global-typography-a0afab5-font-size);
    line-height: var(--e-global-typography-a0afab5-line-height);
    border: 1px solid var(--e-global-color-8acbc55);
    border-radius: 8px;
    padding: 12.5px 16px;
    margin: 0;
    font-family: var(--e-global-typography-8d587e8-font-family), Sans-serif;
    color: var(--e-global-color-5eb75c4);
    font-weight: 600;
}

.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list .custom-checkbox input[type="checkbox"]:checked {
    background: #4BAFB8;
    border-color: #4BAFB8;
}

.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list .custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    user-select: none;
}

.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list .custom-checkbox img {
    margin-left: auto;
    max-width: 24px;
    height: auto;
}

.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list .custom-checkbox:hover {
    background: var( --e-global-color-82d6c03 );
}

.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list .custom-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    flex: 0 0 20px;
    border: 1px solid #859099;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: 0.2s ease;
    outline: none;
}

/* .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list .custom-checkbox input[type="checkbox"]:hover {
    border-color: var( --e-global-color-5eb75c4 );
} */

.investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list .custom-checkbox input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 2px;
    width: 5px;
    height: 11px;
    border: solid var(--e-global-color-82d6c03);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.investments-filter-wrapper {
    position: relative;
}


.investments-filter-wrapper #closeBtn {
    position: absolute;
    right: 20px;
    z-index: -1;
    cursor: pointer;
}

.investments-filter-wrapper .card-content p {
    font-size: var(--e-global-typography-8d587e8-font-size);
    line-height: var(--e-global-typography-8d587e8-line-height);
    color: var( --e-global-color-text );
    font-family: var( --e-global-typography-8d587e8-font-family ), Sans-serif;
    font-weight: 300;
}

.investments-filter-wrapper #investment-filter .search-btn svg {
    height: 32px;
    width: 32px;
}
.investments-filter-wrapper #investment-filter .search-btn:focus,
.investments-filter-wrapper #investment-filter .search-btn:hover {
      background: #EDEDED;
}

.investments-filter-wrapper #investment-filter .search-btn:focus svg path {
    stroke: unset;
}

.inv-filter {
    position: fixed;
    z-index: 999;
    background-color: #F8F8F8;
    inset: 0;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    transform: translateX(-100%);
    transition: 0.5s;
}

.inv-filter-header {
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 11px 10px 16px;
    border-bottom: 1px solid #E2E2E2;
}

.inv-filter-header .inv-filter-header-close-btn {
    padding: 0;
    background: transparent !important;
    border: 0;
    font-size: 22px;
    color: #0F3B57;
    font-family: var(--e-global-typography-ce5bb60-font-family), Sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inv-filter-header .inv-filter-header-clear-btn {
    border: 0;
    padding: 0;
    text-decoration: underline;
    color: #C15E0D !important;
    background: transparent !important;
    font-size: 14px;
}

.inv-filter-header .inv-filter-header-close-btn svg {
    height: 15px;
}

.inv-filter-footer {
    margin-top: auto;
    padding: 15px 16px;
    border-top: 1px solid #E2E2E2;
    text-align: center;
}

.inv-filter-footer .inv-filter-footer-btn {
    border: 0;
    width: 100%;
}

.investments-filter-wrapper-mobile .inv-mobile-filterby .active-filter-count {
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--e-global-color-secondary);
    color: var(--e-global-color-82d6c03);
    border-radius: 10px;
    font-size: 12px;
    font-family: var(--e-global-typography-a0afab5-font-family);
    margin-left: -4px;
}

.inv-filter-mid {
    display: flex;
    height: 100%;
}

.inv-filter-mid .inv-filter-left {
    padding: 0;
    margin: 0;
    flex: 0 0 147px;
    width: 147px;
    background: #F5F5F5;
    height: 100%;
}

.inv-filter-mid .inv-filter-left li {
    padding: 13px 16px;
    position: relative;
    color: #343A40;
    font-size: 16px;
}

.inv-filter-mid .inv-filter-left li.active {
    background: #E2E2E2;
    color: #0F3B57;
}
.inv-filter-mid .inv-filter-left li.active-item:before {
    width: 5px;
    height: 5px;
    content: '';
    background: var(--e-global-color-secondary);
    z-index: 3;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
}
.inv-filter-mid .inv-filter-left li.active:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #C15E0D;
    border-radius: 0 8px 8px 0;
}

.inv-filter-right {
    padding: 13px 16px;
    flex: 1;
}

.inv-filter.active {
    transform: translateX(0px);
}

.inv-filter-tabs {
    display: none;
}

.inv-filter-tabs.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inv-filter-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    color: #50585F;
    font-size: 16px;
}

.inv-filter-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    height: 19px;
    width: 19px;
    flex: 0 0 19px;
    border: 1px solid #859099;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: 0.2s ease;
    outline: none;
}
.inv-filter-checkbox input[type="checkbox"]:checked {
    background: #4BAFB8;
    border-color: #4BAFB8;
    
}
.inv-filter-checkbox input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.load-more-btn {
    justify-content: center;
    margin-top: 60px;
}
.load-more-btn button svg {
    rotate: 90deg;
    transform: translateX(2px);
}
.investments-filter-wrapper-mobile{
    display: none;
}



.investments-filter-wrapper-mobile .inv-mobile-filterby {
    background: #F5F5F5 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    border-color: #85909980;
    color: #343A40;
    font-size: 14px;
    border-radius: 8px;
    width: 100%;
    height: 40px;
}

.investments-filter-wrapper-mobile .inv-mobile-filterby svg:last-child {margin-left: auto;}


.investments-filter-wrapper-mobile .inv-mobile-filterby-wrapper {
    flex: 1;
}

.investments-filter-wrapper-mobile .inv-mobile-search-wrapper {
    flex: 1;
}

.investments-filter-wrapper-mobile .inv-mobile-search-wrapper .inv-mobile-search-box {
    display: flex;
    border: 1px solid #85909980;
    border-radius: 8px;
    padding: 5px 6px;
    background: #F5F5F5;
}

.investments-filter-wrapper-mobile .inv-mobile-search-wrapper .inv-mobile-search-box .inv-search-input {
    font-size: 16px;
    padding: 0 10px 0 0;
    border: 0;
    background: transparent !important;
    height: auto;
    box-shadow: none !important;
    outline: none !important;
    width: 100%;
}

.investments-filter-wrapper-mobile .inv-mobile-search-wrapper .inv-mobile-search-box .inv-mobile-search-btn {
    padding: 5px;
    border: 0;
    border-radius: 6px;
    background: #EDEDED;
    height: 28px;
    width: 28px;
    flex: 0 0 28px;
}

.investments-filter-wrapper-mobile .inv-mobile-search-wrapper .inv-mobile-search-box .inv-mobile-search-btn svg {
    height: 18px;
    width: 18px;
}
.join-ignite-modal .modal-content {
    max-width: 620px;
    padding: 0;
    background: #0F3B57;
}

.join-ignite-modal .join-ignite-modal-form {
    padding: 27px 34px;
}

.join-ignite-modal h3 {
    background: #0F3B57;
    text-align: center;
    padding: 28px 10px;
    color: #fff;
    font-size: var(--e-global-typography-677ff03-font-size);
    line-height: var(--e-global-typography-677ff03-line-height);
}

.join-ignite-modal .close-modal-btn {
    padding: 0;
    background: transparent;
    color: #fff;
    font-size: 25px;
    position: absolute;
    top: 10px;
    right: 10px;
}

@media (min-width: 1920px) {
    .load-more-btn {
        margin-top: 80px;
    }

}

@media (max-width:1680px) {
    .investments-filter-wrapper .filter-section .filter-options {
        width: calc(100% - 146px);
        gap: 30px;
    }
    .investments-filter-wrapper .applied-filters {
        width: calc(100% - 146px);
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-toggle:before {
        width: 29px;
        height: 29px;
        background-size: 29px;
    }
    .investments-filter-wrapper .inv-card-body {
        padding: 26px 30px 0;
    }
    .investments-filter-wrapper .inv-card .type-tags .tag-label:before {
        width: 38px;
    }
    .investments-filter-wrapper .inv-card .type-tags .tag-label {
        padding-left: 51px;
    }
}

@media (max-width:1366px) {
    .investments-filter-wrapper .inv-card .inv-thumb-wrapper .offering-tags {
        padding: 4px 16px;
    }
    .investments-filter-wrapper .filter-section {
        gap: 24px 0;
    }
    .investments-filter-wrapper .filter-section h5 {
        width: 110px;
    }
    .investments-filter-wrapper .filter-section .filter-options {
        width: calc(100% - 110px);
        gap: 24px;
    }
    .investments-filter-wrapper .applied-filters {
        width: calc(100% - 110px);
    }
    .investments-filter-wrapper .inv-grid {
        gap: 20px;
    }
    .investments-filter-wrapper .inv-card-body {
        padding: 24px 24px 0;
    }
    .investments-filter-wrapper .inv-card-footer {
        padding: 0 24px 32px;
        margin-top: auto;
    }
    .investments-filter-wrapper .inv-card h4 {
        margin: 2px 0 20px;
    }
    .investments-filter-wrapper .card-content p {
        font-size: 18px;
        line-height: 25px;
    }
    .investments-filter-wrapper .inv-card .alt-button {
        padding: 21px 12px;
        font-size: 16px;
        line-height: 20px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-toggle:before {
        width: 26px;
        height: 26px;
        background-size: 26px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content {
        border: 1px solid var( --e-global-color-8acbc55 );
        border-radius: 10px;
        padding: 24px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list {
        gap: 8px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list .custom-checkbox {
        gap: 10px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list label {
        padding: 10px 18px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list .custom-checkbox input[type="checkbox"] {
        height: 16px;
        width: 16px;
        flex: 0 0 16px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list .custom-checkbox input[type="checkbox"]:checked::after {
        left: 4px;
        top: 2px;
        width: 5px;
        height: 8px;
    }
    .active-bg {
        height: calc(100% - 18px);
        top: 9px;
    }
    .load-more-btn {
        margin-top: 40px;
    }
}

@media (max-width:1024px) {

    .active-bg {
        border-radius: 10px;
        top: 7px;
        height: calc(100% - 14px);
    }

    .investments-filter-wrapper .filter-section {
        margin: 0 0 32px;
    }
    .investments-filter-wrapper .filter-section h5 {
        width: 85px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-toggle:before {
        margin-right: 6px;
        width: 18px;
        height: 18px;
        background-size: 18px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-toggle:after {
        right: 11px;
        transform: scale(0.6);
    }
    .investments-filter-wrapper .filter-section .filter-dropdown.open .dropdown-toggle:after {
        transform: rotate(180deg) scale(0.6);
    }
    .investments-filter-wrapper .filter-section .filter-options {
        width: calc(100% - 85px);
        gap: 10px;
    }
    .investments-filter-wrapper .applied-filters {
        width: calc(100% - 85px);
    }
    .investments-filter-wrapper .inv-grid {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }
    .investments-filter-wrapper .inv-card {
        border-radius: 10px;
    }
    .investments-filter-wrapper .inv-card h4 {
        margin: 2px 0 16px;
    }
    .investments-filter-wrapper .inv-card .alt-button {
        padding: 17px 12px;
        font-size: 14px;
        line-height: 20px;
    }
    .investments-filter-wrapper .card-content p {
        font-size: 16px;
        line-height: 22px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content {
        padding: 14px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .filter-actions {
        gap: 3px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list .custom-checkbox {
        gap: 5px;
        padding: 6px 9px;
    }
    .load-more-btn {
        margin-top: 30px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list .custom-checkbox img {
        max-width: 15px;
    }
}

@media (max-width:991px) {
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .filter-actions button.unselect-all,
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .filter-actions button.select-all {
        padding: 0px;
        border: 0;
        text-align: left;
    }
}

@media (max-width:880px) {
    .investments-filter-wrapper .filter-section .dropdown-toggle, 
    .investments-filter-wrapper .filter-section .dropdown-toggle:focus, 
    .investments-filter-wrapper .filter-section .dropdown-toggle:hover {
        padding: 12px 12px;
    }
    .investments-filter-wrapper .filter-section h5 {
        width: 75px;
    }
    .investments-filter-wrapper .filter-section .filter-options {
        width: calc(100% - 75px);
        gap: 6px;
    }
    .investments-filter-wrapper .applied-filters {
        width: calc(100% - 75px);
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-toggle:before {
        width: 15px;
        height: 15px;
        background-size: 15px;
    }
    .investments-filter-wrapper .inv-card-body {
        padding: 20px 20px 0;
    }
    .investments-filter-wrapper .inv-card .type-tags .tag-label {
        padding-left: 40px;
    }
    .investments-filter-wrapper .inv-card .type-tags .tag-label:before {
        width: 27px;
    }
    .investments-filter-wrapper .inv-card h4 {
        margin: 6px 0 20px;
    }
    .investments-filter-wrapper .inv-card .alt-button {
        padding: 12px 12px;
    }

    .investments-filter-wrapper .search-input {
        padding: 0 20px 0 50px;
        font-size: 14px;
        line-height: 20px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content {
        border-radius: 10px;
        padding: 20px 10px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .filter-actions {
        margin-top: 16px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list label {
        padding: 6px 12px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list .custom-checkbox input[type="checkbox"] {
        height: 12px;
        width: 12px;
        flex: 0 0 12px;
        border-radius: 3px;
        align-self: start;
        margin-top: 5px;
    }
    .investments-filter-wrapper .filter-section .filter-dropdown .dropdown-content .checkbox-list .custom-checkbox input[type="checkbox"]:checked::after {
        left: 3px;
        top: 1px;
        width: 4px;
        height: 7px;
    }
    .active-bg {
        border-radius: 4px;
        top: 8px;
        height: calc(100% - 16px);
    }
    .investments-filter-wrapper .search-box .close-btn{
        display: none;
    }
    .investments-filter-wrapper .search-box.active .close-btn{
        display: block;
    }
    .investments-filter-wrapper .search-box.active .search-btn{
        left: 12px;
    }
    .investments-filter-wrapper .search-box.active .search-input{
        padding-left: 50px;
    }
    .investments-filter-wrapper .search-box{
        width: 36px;
        height: 36px;
    }
    .investments-filter-wrapper #investment-filter .search-btn svg {
        height: 16px;
        width: 16px;
    }
    .investments-filter-wrapper .search-box.active{
        width: 300px;
    }
    .investments-filter-wrapper #closeBtn {
        right: 10px;
    }
}

@media (max-width:767px) {

    .investments-filter-wrapper .inv-card ul li {
        padding: 10px 0;
    }

    .investments-filter-wrapper .filter-section {
        flex-direction: column;
        align-items: start;
        margin: 16px 0 28px;
    }
    .investments-filter-wrapper .filter-section .filter-options {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .investments-filter-wrapper .applied-filters {
        width: 100%;
        display: none;
    }
    .investments-filter-wrapper .inv-grid {
        gap: 10px;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .investments-filter-wrapper .inv-card .inv-thumb-wrapper{
        padding-top: 210px;
    }
    .investments-filter-wrapper .inv-card .inv-thumb-wrapper .offering-tags{
        border-radius: 4px;
        left: 12px;
        top: 12px;
        padding: 7px 9px;
    }
    .investments-filter-wrapper-mobile {
        display: flex;
        gap: 17px;
        margin-bottom: 28px;
    }
    .investments-filter-wrapper .filter-section{
        display: none;
    }
    .investments-filter-header{
        padding: 8px 9px;
    }
    .investments-filter-wrapper .inv-card-footer{
        padding: 0 20px 20px;
    }
    .investments-filter-wrapper .inv-card h4 {
        margin: 8px 0 16px;
    }
    .investments-filter-wrapper .inv-card ul {
        margin-bottom: 16px;
    }
    .investments-filter-wrapper .inv-grid{
        gap: 16px;
    }

}

