#content {
    width: 88% !important;
}

/* search */

.search-form-holder {
    margin: 2% auto 3% auto !important
}

/* search end */

/* listings */

.invite-title{
    font-size: 180% !important;
}

.result-title {
    font-size: 160%;
    font-weight: 600;
    margin: 2% 0;
}

.result-subtitle{
    color: gray;
    font-size: 100%;
    font-weight: 400;
    margin: -1% 0 2% 0;
}

.listing-results {
    display: grid;
    grid-gap: 35px 25px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* listings end */

/* Campaign Invite */
.title-holder{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3% 0 2% 0;
}

.skip-btn{
    display: flex;
    align-items: center;
    font-weight: 500;
    padding: 14px 23px;
    border-radius: 8px;
    border: 1px solid var(--black);
    color: inherit;
    text-decoration: none;
    width: fit-content;
}

.skip-btn-img{
    width: 10px;
    margin-left: 8px;
}

.invite-btn{
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 98;
    width: fit-content;
    top: 5px;
    right: 5px;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    font-size: 85%;
    font-weight: 600;
    padding: 6px 12px;
    box-shadow: var( --darkBoxShadow);
    border: 1px solid white;
}

.invite-btn-img{
    width: 12px;
    margin-left: 9px;
    height: 12px;
    fill: white;
}

.disable-invite-btn{
    pointer-events: none;
}

/* Campaign Invite End */


/* no results */

.no-results {
    display: grid;
    grid-gap: 35px 25px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin: 4% 0 9% 0;
}

.no-results-btn{
    color: inherit;
    border-radius: 8px;
    padding: 18px 10px;
    cursor: pointer;
    border: 2px solid #e9e9e9;
    white-space: nowrap;
    text-decoration: none;
    transition-duration: 0.3s;
    font-weight: 500;
}

.no-results-btn:hover{
    border: 2px solid var(--black);
}

.no-results .no-results-btn:nth-child(n+4) {
    /* Your styling for elements starting from the 4th one goes here */
    display: none;
  }

/* no results end */

.paginator{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 7%;
}

.pagination-arrow-holder{
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    border: 1px solid var(--black);
    border-radius: 8px;
    padding: 12px 14px;
    font-weight: 600;
    margin: 0 5px;
}

.pagination-arrow{
    width: 13px;
}

/* intro */

.intro-holder {
    display: flex;
    margin: 2.5% 0;
    justify-content: space-evenly;
    align-items: center;
}

.intro-txt-holder {
    width: 70%;
}

.intro-title {
    font-size: 180%;
    font-weight: 600;
    margin-bottom: 10px;
}

.intro-subtitle {
    margin: 3% 0 4% 0;
}

.intro-steps-holder {
    display: flex;
    justify-content: space-between;
}

.intro-step-holder {
    width: 30%;
}

.intro-step-num {
    padding: 5px;
    border: 2px solid var(--collabstrDark);
    display: flex;
    border-radius: 50%;
    height: 14px;
    width: 14px;
    justify-content: center;
    font-size: 105%;
    align-items: center;
    font-weight: 600;
    background: var(--gradientText);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-bottom: 10px;
}

.intro-step-title {
    display: flex;
    align-items: center;
    font-size: 110%;
    font-weight: 600;
}

.intro-step-txt {
    font-size: 85%;
    margin-top: 8px;
    line-height: 1.4;
    color: gray;
}

.intro-vid{
    width: 225px;
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .toggle input {
    display: none;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: 0.4s;
    border-radius: 34px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #FFF;
    transition: 0.4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: #060;
  }
  
  input:checked + .slider:before {
    transform: translateX(26px);
  }

@media only screen and (max-width: 1000px) {
    .no-results{
        grid-gap: 25px 25px;
    }
}

@media only screen and (max-width: 800px) {
    #content {
        width: 92% !important;
    }
    .result-title {
        margin: 7% 0 5% 0;
    }

    .result-subtitle{
        margin: 0 0 6% 0;
    }

    .listing-results {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        grid-gap: 40px 25px;
    }

    .profile-listing-img-holder {
        height: 320px !important;
    }

    .paginator{
        margin-top: 16%;
    }

    .intro-holder{
        flex-direction: column-reverse;
    }

    .intro-txt-holder {
        width: 100%;
        margin: 6% 0;
    }

    .intro-steps-holder{
        flex-direction: column;
    }

    .intro-step-holder {
        width: 100%;
        margin: 3% 0;
    }

    .title-holder{
        flex-direction: column;
        align-items: baseline;
        margin: 3% 0 7% 0;
    }

    .title-holder > div{
        width: 100%;
    }
}