/*---====================*** Header CSS Start From Here ***====================--*/
.marketplaceHeader {
    background-color: #fff;
    box-shadow: 0px 3px 6px #0000000F;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    padding: 15px 0;
}

.marketplaceHeader .customLogo {
    max-width: 246px;
    margin: 0 auto;
}

@media (max-width:1399px) {
    .marketplaceHeader {
        padding: 12px 0;
    }

    .marketplaceHeader .customLogo {
        max-width: 225px;
    }
}

@media (max-width:991px) {
    .marketplaceHeader {
        padding: 10px 0;
    }

    .marketplaceHeader .customLogo {
        max-width: 200px;
    }
}

/*---====================*** Header CSS Close From Here ***====================--*/
/*---====================*** Footer CSS Start From Here ***====================--*/
.page-template-template-marketplace {
    position: relative;
    padding-bottom: 70px;
    /* min-height: 75vh; */
    overflow: unset;
}

.page-template-template-marketplace .marketplaceFooter {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.marketplaceFooter {
    border-top: 1px solid rgb(112 112 112 / 50%);
    padding: 26px;
}

.marketplaceFooter .copyRightContent {
    text-align: center;
}

.marketplaceFooter .copyRightContent p {
    margin: 0;
    color: #989898;
    font-size: 13px;
    line-height: 1.3;
}

@media (max-width:991px) {
    .page-template-template-marketplace {
        padding-bottom: 60px;
    }

    .marketplaceFooter {
        border-top: 1px solid rgb(112 112 112 / 50%);
        padding: 20px;
    }
}

/*---====================*** Footer CSS Close From Here ***====================--*/
/*---====================*** Listed Marketplace CSS Start Here***====================--*/
.marketplaceVendorSec {
    padding-top: 200px;
    padding-bottom: 160px;
    position: relative;
    z-index: 1;
    background-image: url(../images/marketplace-left-circle.png), url(../images/marketplace-right-circle.png);
    background-repeat: no-repeat;
    background-size: 19vw 34vw, 9.01vw 16.30vw;
    background-position: left 0 top 260px, right 0 bottom 140px;
    background-attachment: fixed;
    min-height: calc(100vh - 70px);
}

.marketplaceVendorSec .main-heading::after {
    bottom: -10px;
}

.marketplaceVendorSec .marketplace-vendor-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    grid-gap: 30px;
    margin-top: 80px;
}

.marketplace-vendor-inner .filter-container {
    width: 20.232%;
    background-color: #fff;
    box-shadow: 0px 0px 10px #72727229;
    border-radius: 20px;
    padding: 24px 16px;
    position: sticky;
    top: 130px;
    min-width: 250px;
}

/* Filter CSS */
.marketplace-vendor-inner .filter-container .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 10px;
    flex-wrap: wrap;
}

.marketplace-vendor-inner .filter-header .filter-title {
    color: #1A84B4;
    line-height: 1.2;
    font-size: 16px;
    letter-spacing: 0.4px;
}

.marketplace-vendor-inner .filter-header  .filter-clear {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.35px;
    color: #3C3C3C;
    display: flex;
    align-items: center;
    grid-gap: 3px;
}

.marketplace-vendor-inner .filter-header .filter-clear .clear-icon {
    max-width: 16px;
    line-height: 1;
    object-fit: contain;
    object-position: center;
    margin-top: -2px;
}

.marketplace-vendor-inner .filter-container  .filter-section {
    background: #F8FAFB;
    border: 1px solid #E3E4EB;
    border-radius: 12px;
    padding: 12px 12px;
    margin-top: 25px;
}

.marketplace-vendor-inner .filter-section .filter-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    grid-gap: 10px;
    cursor: pointer;
}

.filter-section .filter-section-header .filter-name {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.4px;
    color: #3C3C3C;
}

.filter-section .filter-section-header .filter-arrow {
    width: 13px;
    object-fit: contain;
    margin-bottom: 2px;
    transition: all .5s ease-in-out;
}

.filter-section .filter-section-header.activeFilter .filter-arrow{
    transform: rotate(-180deg);
}

.marketplace-vendor-inner .filter-section  #filterOptions {
    margin-top: 20px;
}

#filterOptions .filterCheckBox:not(:last-child) {
    margin-bottom: 14px;
}

#filterOptions .filterCheckBox input {
    display: none;
}

#filterOptions .filterCheckBox label {
    font-size: 15px;
    line-height: 1.2;
    color: #3C3C3C;
    letter-spacing: 0;
    display: flex;
    grid-gap: 6px;
    align-items: center;
    cursor: pointer;
    width:fit-content;
}

#filterOptions .filterCheckBox label::before {
    content: '';
    display: block;
    --size: 16px;
    width: var(--size);
    min-width: var(--size);
    height: var(--size);
    border: 1px solid #3C3C3C;
    border-radius: 5px;
    cursor: pointer;
    background-image: url(../images/checkbox-check.svg);
    background-repeat: no-repeat;
    background-size: 0;
    background-position: center;
    transition: all .2s ease-in-out;
    margin-top: -3px;
}

#filterOptions .filterCheckBox input:checked + label::before {
    border-color: #14B7FF;
    background-size: 8px;
}

.marketplace-vendor-inner .filter-container .filter-apply {
    display: block;
    width: 100%;
    margin-top: 46px;
    background-color: var(--primary-color);
    border-style: none;
    color: #fff;
    border-radius: 12px;
    letter-spacing: 0.4px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 15px 15px 13px;
    cursor: pointer;
    transition: all .35s ease-in-out;
}

.marketplace-vendor-inner .filter-container .filter-apply:hover {
    background-color: var(--seconday-color);
}

/* Filter Result CSS */
.marketplaceVendorRow {
    flex: 1;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    --gap:30px;
    grid-gap:var(--gap);
}

/* Loader */
.marketplaceVendorRow .loader {
    font-size: 0;
    --size: 38px;
    width: var(--size);
    min-width: var(--size);
    height: var(--size);
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    border-right-color: rgb(244 147 35);
    animation: loader-rotate 1.5s infinite linear;
    margin-inline: auto;
}
@keyframes loader-rotate{
    0%{
        transform:rotate(0deg);
    }
    100%{
        transform:rotate(359deg);
    }
}

/* Not found */
.marketplaceVendorRow .notResultFound {
    border-radius: 10px;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.36px;
    color: var(--seconday-color);
}

.marketplaceVendorRow .marketplaceVendorCol {
    box-shadow: 0px 0px 10px #8484842E;
    border-radius: 30px;
    background-color: #fff;
    width: calc(50% - calc(var(--gap)/2));
    text-align: center;
    padding: 60px;
    display: flex;
    flex-direction: column;
    transition: all .5s linear;
}   

.marketplaceVendorRow .marketplaceVendorCol:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 20px 5px #8484842E;
}

.marketplaceVendorCol .vendorLogo {
    height: 75px;
    max-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.marketplaceVendorCol[href*="posting-pulse"] .vendorLogo {
    max-width: 408px;
}

.marketplaceVendorCol .vendorLogo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.marketplaceVendorCol .vendorData {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.vendorData .vendorTitle {
    letter-spacing: 0.5px;
    color: #003FA5;
    /* text-transform: uppercase; */
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    position: relative;
    padding-bottom: 10px;
    margin: 0 0 24px;
    transition: all .5s ease-in-out;
    text-transform: uppercase;
}

.vendorData .vendorTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 4px;
    background-color: #F59423;
}

.vendorText {
    margin: 0;
    letter-spacing: 0.36px;
    color: #3C3C3C;
    line-height: 1.563;
    font-weight: 400;
    font-size: 18px;
    flex: 1;
    transition: all .5s ease-in-out;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* No Post Found */
.marketplaceVendorSec:has(.noPostFound) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.marketplaceVendorSec .noPostFound {
    font-size: 30px;
    text-align: center;
    margin: 60px 0 0;
    font-weight: 600;
    color: var(--primary-color);
}

/* Load More Button */
.marketplaceVendorSec .marketPlaceBtn {
    width: 100%;
    margin-top: 60px;
    text-align: center;
}

.marketPlaceBtn .marketplaceLoadmoreBtn {
    cursor: pointer;
    border-style: none;
    outline: none;
}

/* Responsive */
@media (max-width:1599px) {
    .marketplaceVendorSec .marketplace-vendor-inner {   
        grid-gap: 25px;
        margin-top: 70px;
    }

    .marketplace-vendor-inner .filter-container {
        padding: 20px 12px;
    }

    .marketplace-vendor-inner .filter-container  .filter-section {
        border-radius: 10px;
        margin-top: 20px;
    }

    .marketplace-vendor-inner .filter-header .filter-title,
    .filter-section .filter-section-header .filter-name {
        font-size: 14px;
    }

    .marketplace-vendor-inner .filter-header  .filter-clear {
        font-size: 12px;
    }

    .marketplaceVendorRow .marketplaceVendorCol {
        padding: 50px
    }

    .marketplace-vendor-inner .filter-header .filter-clear .clear-icon {
        max-width: 14px;
    }

    .filter-section .filter-section-header .filter-arrow {
        width: 11px;
    }

    #filterOptions .filterCheckBox label {
        font-size: 13px;
    }
    #filterOptions .filterCheckBox label::before {
        --size: 14px;
        border-radius: 4px;
    }
    #filterOptions .filterCheckBox input:checked + label::before {
        background-size: 6px;
    }

    .marketplace-vendor-inner .filter-container .filter-apply {
        margin-top: 36px;
        border-radius: 10px;
        font-size: 14px;
        padding: 13px 15px 11px;
    }
}

@media (max-width:1399px) {
    .marketplaceVendorSec {
        padding-top: 160px;
        padding-bottom: 130px;
        background-position: left 0 top 220px, right 0 bottom 120px;
    }

    .marketplaceVendorSec .marketplace-vendor-inner {
        grid-gap:30px 20px;
        margin-top: 60px;
    }

    .marketplaceVendorRow .marketplaceVendorCol {
        padding: 36px
    }

    .marketplaceVendorCol .vendorLogo {
        max-width: 250px;
        margin: 0 auto 30px;
    }

    .marketplaceVendorCol[href*="posting-pulse"] .vendorLogo {
        max-width: 350px;
    }

    .vendorData .vendorTitle {
        font-size: 18px;
        margin: 0 0 20px;
    }

    .vendorText {
        font-size: 16px;
    }
}

@media (max-width:1199px) {
    .marketplaceVendorSec {
        padding-bottom: 102px;
    }

    .marketplaceVendorRow {
        --gap:24px;
    }

    .marketplaceVendorRow .marketplaceVendorCol {
        padding: 30px 25px;
    }
}

@media (max-width:991px) {
    .marketplaceVendorSec {
        padding-top: 135px;
        padding-bottom: 90px;
        background-position: left 0 top 190px, right 0 bottom 100px;
    }

    .marketplaceVendorSec .marketplace-vendor-inner {
        margin-top: 45px;
    }

    .marketplaceVendorRow .marketplaceVendorCol {
        padding: 25px 20px;
        width: 100%;
    }

    .marketplaceVendorCol .vendorLogo {
        max-width: 200px;
        margin: 0 auto 20px;
    }

    .marketplaceVendorCol[href*="posting-pulse"] .vendorLogo {
        max-width: 300px;
    }

    .vendorData .vendorTitle {
        font-size: 16px;
        margin: 0 0 15px;
    }

    .vendorText {
        font-size: 14px;
    }

    .marketplaceVendorSec .marketPlaceBtn {
        padding-top: 40px;
    }
}

@media (max-width:767px) {
    .marketplaceVendorSec {
        padding-top: 135px;
        padding-bottom: 80px;
        background-size: 35vw 55vw, 14vw 25vw;
    }

    .marketplaceVendorRow {
        grid-gap: 20px 0;
    }

    .marketplace-vendor-inner .filter-container {
        width: 100%;
        position: static;
        min-width: 100%;
    }

    .marketplaceVendorCol .vendorLogo {
        height: auto;
        max-height: 85px;
    }

    .marketplaceVendorSec .marketPlaceBtn {
        margin-top: 30px;
    }
}

/*---====================*** Listed Marketplace CSS Close Here***====================--*/