.profile-listing-holder{
    cursor: pointer;
    position: relative;
}

.profile-listing-img-holder {
    width: 100%;
    height: 320px;
    position: relative;
    border-radius: 9px;
    background-color: black;
    overflow: hidden;
}

.profile-listing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    -webkit-mask-image: linear-gradient(to top, rgb(0 0 0 / 50%) 10%, rgba(0, 0, 0, 1));
    transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.13, 1.02) 0s;
}

.profile-listing-holder:hover .profile-listing-img, .category-listing-holder:hover .category-listing-img{
    transform: scale(1.1);
}

.profile-listing-owner-holder {
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: flex;
    align-items: center;
}

.profile-listing-owner-info-holder {
    display: flex;
    flex-direction: column;
}

.profile-listing-owner-name {
    display: flex;
    align-items: center;
    font-size: 80%;
    color: white;
    font-weight: 600;
}

.verified-badge{
    width: 14px;
    margin-left: 4px;
}

.profile-listing-owner-location {
    font-size: 72%;
    color: white;
    font-weight: 300;
    margin-top: 1px;
}

.profile-listing-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2% 0 1% 0;
}

.profile-listing-category {
    color: var(--lightGray);
    font-size: 75%;
}

.profile-listing-price {
    font-weight: 600;
    font-size: 95%;
}

.profile-listing-title {
    font-size: 90%;
    font-weight: 300;
    margin: 0;
    height: 18px;
}

.active-invite-btn{
    background: white !important;
    color: var(--black) !important;
    border: 1px solid var(--black) !important;
    border-radius: 8px !important;
    cursor: default !important;
}

.profile-listing-description {
    font-weight: 300;
    margin-top: 10px;
    font-size: 85%;
    color: gray;
}

.profile-platform-badge {
    height: auto;
    background-color: white;
    width: fit-content;
    padding: 2px 5px;
    border: 1px solid white;
    border-radius: 50px;
    margin-bottom: 4px;
    display: flex;
}

.profile-listing-platform-img {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.profile-listing-followers {
    font-size: 65%;
    font-weight: 600;
}

/* badge */

.profile-listing-img-holder .profile-listing-badge-holder{
    position: absolute;
    top: 10px;
    left: 8px;
    z-index: 99;
    display: flex;
}

.profile-listing-img-holder .profile-listing-badge{
    display: flex;
    align-items: end;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    padding: 5px;
    margin-right: 5px;
    box-shadow: var(--darkBoxShadow);
    border: 1px solid white;
}

.profile-listing-img-holder .profile-listing-badge-img {
    width: 13px;
    margin-right: 3px;
}

.profile-listing-img-holder .profile-listing-badge-title {
    font-weight: 600;
    font-size: 70%;
    color: white;
}

.profile-listing-img-holder .profile-listing-badge-holder .tooltip-txt{
    left: 0 !important;
    width: 125px !important;
    top: 28px !important;
}

/* save btn */

.profile-listing-img-holder .save-btn{
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 99;
    display: flex;
    padding: 6px;
}

.profile-listing-img-holder .save-btn-img{
    display: block;
    fill: rgb(255, 56, 92);
    height: 24px;
    width: 24px;
    stroke: rgb(255, 255, 255);
    stroke-width: 2;
    overflow: visible;
}

.unsaved-btn-img{
    fill: rgba(0, 0, 0, 0.5) !important;
}

.profile-listing-review-holder{
    font-weight: 500;
    display: flex;
    align-items: center;
}

.profile-listing-review-img{
    width: 12px;
    margin: 0 3px 0 7px;
}

.invite-campaign-btn{
    width: 95%;
    background: var(--gradientText);
    padding: 8px 16px;
    margin-top: 15px;
    border-radius: 8px;
    color: white;
    border: none;
    font-size: 110%;
    cursor: pointer;
    transition: opacity 0.4s;
}

.invite-campaign-btn:hover{
    opacity: 0.9;
}


@media only screen and (max-width: 800px) {
    .profile-listing-img-holder {
        height: 250px;
    }
}