.listing-holder {
    width: 78%;
    margin: 0 auto 4% auto;
}

.btn-row{
    width: 78%;
    margin: 2% auto 1% auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-row-actions-holder{
    display: flex;
    align-items: center;
    flex: 5;
    justify-content: flex-end;
}

.explainer{
    background-color: #FFB87E;
    padding: 8px 16px;
    margin: 10px 0px;
}

.info-holder{
    display: flex;
}

.left-info-holder{
    width: 60%;
}

.right-info-holder{
    background: #fff;
    padding: 20px 0px 20px 32px;
    overflow: visible;
    width: 40%;
}

.row-btn{
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 10px;
    font-size: 90%;
    font-weight: 500;
    cursor: pointer;
    margin: 0 0 0 1%;
    transition-duration: 0.3s;
}

.row-btn:hover{
    opacity: 0.8;
}

.row-btn-img{
    width: 14px;
    margin-right: 6px;
}

.row-btn-save-img{
    fill: white;
    stroke: var(--black);
    stroke-width: 2;
    width: 17px;
}

.row-btn-saved-img{
    fill: rgb(255, 56, 92);
    stroke: none !important;
}

.history{
    margin: auto auto 0 0;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 80%;
    font-weight: 500;
}

.history-succ{
    background-color: var(--green);
}

.history-err{
    background-color: var(--red);
}

/********************** images *************************/

.listing-holder .img-row {
    display: flex;
    height: 30vw;
    max-height: 480px;
    justify-content: space-between;
    position: relative;
}

.listing-holder picture{
    margin: 0 3px;
    width: 100%;
}

.listing-holder picture:first-of-type{
    margin-left: 0;
}

.listing-holder picture:last-of-type{
    margin-right: 0;
}

.listing-holder picture:only-of-type {
    width: 100%;
}

.listing-holder .img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition-duration: 0.3s;
    cursor: pointer;
}

.listing-holder picture:first-of-type .img{
    border-radius: 8px 0 0 8px;
}

.listing-holder picture:last-of-type .img{
    border-radius: 0 8px 8px 0;
}

.listing-holder picture:only-of-type .img{
    border-radius: 8px;
}

.listing-holder .img:hover{
    opacity: 0.7;
}

.show-all-btn{
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    padding: 8px;
    border: 1px solid var(--black);
    font-weight: 600;
    font-size: 82%;
    box-shadow: var(--darkBoxShadow);
    cursor: pointer;
}

.show-all-btn svg{
    margin-right: 6px;
    width: 13px;
    height: 13px;
    fill: var(--black);
}

.show-all-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.show-all-holder-2 .img {
    width: 49%;
    height: 27vw;
    margin-bottom: 2%;
    max-height: 500px;
    object-fit: cover;
}

.show-all-holder-3 .img {
    width: 32%;
    height: 27vw;
    margin-bottom: 2%;
    max-height: 500px;
    object-fit: cover;
}

/********************** images end *********************/

.section-title {
    display: flex;
    align-items: baseline;
    margin: 5% 0 3% 0;
    font-size: 135%;
    font-weight: 600;
}

.listing-description {
    line-height: 1.4;
    font-size: 95%;
    margin-top: 2%;
    font-weight: 300;
    width: 100%;
}


/***************** packages *******************/

.packages-holder{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 12px;
    width: 100%;
    margin-bottom: 10%;
}

.listing-holder .package-holder {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: var(--lightBoxShadow);
    padding: 15px 17px;
    border: 1px solid #EAEAEA;
    cursor: pointer;
}

.listing-holder .package-holder:hover {
    border-color: var(--black);
    box-shadow: var(--darkBoxShadow);
}

.package-holder-selected {
    border-color: var(--black) !important;
    box-shadow: var(--darkBoxShadow) !important;
}

.listing-holder .package-holder-active {
    border: 1px solid var(--black);
}


.packages-holder .package-title{
    font-size: 100%;
    font-weight: 600;
    margin: 0;
    padding-right: 4px;
}

.packages-holder .package-price{
    font-size: 95%;
    font-weight: 600;
}

.package-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 112%;
    font-weight: 600;
}

.package-left-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-right-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.package-checkbox-outer {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #C7C7C7;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filled {
    content: '';
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background: linear-gradient( to right, #FF9191 0%, #B32DC2 47%, #FB669D 100%);
}

.package-desc{
    color: gray;
    font-size: 86%;
    margin-top: 16px;
    font-weight: 300;
}

.see-more-package, .see-less-package{
    color: var(--black);
    text-decoration: underline;
    font-weight: 500;
    margin-left: 4px;
    cursor: pointer;
}

.package-btm-row{
    display: flex;
    justify-content: space-between;
    align-items: end;
    height: auto;
    margin-top: 30px;
    flex-grow: 1;
}

.package-img-holder{
    padding: 5px;
    border-radius: 5px;
}

.package-img-holder-instagram{
    background-color: var(--white);
}

.package-img-holder-tiktok{
    background-color: var(--white);
}

.package-img-holder-youtube{
    background-color: var(--white);
}

.package-img-holder-twitter{
    background-color: var(--white);
}

.package-img-holder-twitch{
    background-color: var(--white);
}

.package-img-holder-amazon{
    background-color: var(--white);
}

.package-img-holder-ugc{
    background-color: var(--white);
}

.package-img{
    width: 22px;
    display: block;
    filter: brightness(0) invert(0);
}

.buy-btn{
    background-color: var(--black);
    color: white;
    padding: 14px 40px;
}

.package-filter-holder{
    display: flex;
    margin-bottom: 3%;
    width: fit-content;
    max-width: 100%;
    border-radius: 8px;
    font-size: 96%;
}

.package-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 8px;
    color: gray;
    cursor: pointer;
    font-weight: 600;
    transition-duration: 0.3s;
    white-space: nowrap;
    min-width: 90px;
    margin-right: 10px;
}

.package-filter-active {
    color: var(--black);
    border-bottom: 3px solid var(--black);
}

.package-filter:hover{
    color: var(--black);
}

/***************** packages end ***************/


/***************** faq ***************/

.faq-holder {
    margin-top: 4%;
    padding-bottom: 2%;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.faq-title-holder{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-btn{
    width: 15px;
    margin-right: 10px;
    transition-duration: 0.3s;
}

.faq-question {
    font-weight: 600;
    font-size: 112%;
    margin: 0;
}

.faq-answer {
    display: none;
    margin-top: 2%;
    font-weight: 300;
    font-size: 95%;
}

/**************** sticky package ************/
.sticky-package-price{
    font-weight: 600;
    font-size: 130%;
}

.sticky-content {
    position: sticky;
}

.sticky-package-select-holder{
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    height: 100%;
}

.with-icon {
    margin-top: 16px;
    padding-right: 25px !important;
    padding-left: 40px !important;
    background-image:
        var(--icon-url, 'none'), /* Left icon */
        url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" xml:space="preserve"><path d="M7.41,8.59L12,13.17l4.59-4.58L18,10l-6,6l-6-6L7.41,8.59z"/><path fill="none" d="M0,0h24v24H0V0z"/></svg>'); /* Right arrow */
    background-position: 
        13px center, /* Left icon position */
        center right; /* Right arrow position */
    background-repeat: no-repeat, no-repeat;
    background-size: 
        17px 17px, /* Left icon size */
        30px 30px; /* Right arrow size */
    font-weight: 600;
    font-size: 100%;
}

.sticky-add-to-cart-btn {
    margin-top: 20px;
    width: 100%;
    background: linear-gradient(
        90deg,
        #FF9191 0%,
        #B32DC2 47%,
        #FB669D 100%
    );
}

.custom-offer-btn-desktop{
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.sticky-custom-offer-desktop{
    text-align: center;
    font-size: 90%;
    margin-top: 20px;
}

.mobile-brand-nav-holder{
    display: none;
}

/**************** end sticky package ************/

/***************** faq end ***************/

/**************** portfolio ************/

.portfolio-holder{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.portfolio-content-holder{
    height: 25vw;
    max-height: 300px;
    position: relative;
    cursor: pointer;
}

.portfolio-content-img, .portfolio-content-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.play-btn-holder{
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to bottom, transparent 0%, #0000009e 100%);
    border-radius: 0 0 8px 8px;
}

.play-btn{
    width: 20px;
    margin-bottom: 11px;
    margin-left: 11px;
}

/**************** profile ********************/

.profile-holder {
    display: flex;
    margin-top: 20px;
}

.profile-info-holder {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.profile-info-review-holder {
    display: flex; 
    align-items: center;
}

.listing-title {
    font-size: 110%;
    font-weight: 600;
    margin: 0;
    word-break: break-word;
}

.creator-title-mobile{
    display: none;
}

.header-title{
    font-size: 135%;
    flex: 6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.profile-name-mobile{
    display: none;
}

.profile-name-desktop{
    display: inline-block;
}

.top-review-mobile{
    display: none;
}

.top-review-desktop > img {
    transform: translateY(-1px);
}

.top-review-desktop{
    margin: 0px 12px !important;
    font-size: 100%;
    margin-right: 4px;
    align-items: flex-start;
}

.top-review-desktop-title{
    color: black; 
    font-weight: 400 !important;
}

.profile-pic {
    min-width: 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name-location {
    color: gray;
    font-size: 90%;
    margin: 5px 0 9px 0;
    display: inline-block;
}

.platform-img-holder {
    display: flex;
    align-items: center;
}

.platform-img-holder-creator {
    font-size: 78%;
    font-weight: 600;
    flex-wrap: wrap;
}

.platform-img-holder-creator .platform-img{
    margin: 0 12px 4px 0;
    padding: 4px 7px;
    border-radius: 8px;
    border: 1px solid var(--lightGray);
    box-shadow: var(--lightBoxShadow);
    width: fit-content;
}

.platform-img-holder-creator a{
    color: cornflowerblue;
    text-decoration: none !important;
}

.platform-img-holder-creator a:hover{
    text-decoration: underline !important;
}


.platform-img-holder-creator img{
    width: 16px !important;
    margin-right: 5px;
}

.platform-img {
    margin: 0 15px 0 0;
    width: 18px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.platform-img img{
    width: 100%;
    height: 100%;
}

.platform-follower-holder{
    color: cornflowerblue;
}

.platform-follower-holder:hover{
    text-decoration: underline;
}

.platform-follower-blur{
    filter: blur(2.5px);
}

.invite-btn{
    background: var(--gradientText);
    color: white;
    border-radius: 8px;
    padding: 8px 10px;
}

.invited-btn::before{
    content:"Invited to Campaign";
}

.invite-btn::before{
    content:"+ Invite to Campaign";
}

/**************** profile end ****************/

.msg-btn-holder{
    margin: 3% 0 6% 0;
    border: 1px solid var(--black);
    width: fit-content;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.msg-btn{
    background-color: var(--black);
    padding: 8px;
    color: white;
    margin-left: 15px;
    min-width: fit-content;
}

.msg-btn:hover{
    opacity: 0.8;
}

.how-it-works-btn{
    font-size: 90%;
    font-weight: 400;
    cursor: pointer;
    margin-left: 14px;
    text-align: center;
    margin-top: 24px;
    color: gray;
}

.how-it-works-btn:hover{
    text-decoration: underline;
}

.how-it-works-btn-img{
    width: 11px;
    max-height: 11px;
    margin-right: 5px;
}

.how-it-works-step{
    display: flex;
    align-items: center;
    margin: 0 auto 10% auto;
}

.how-it-works-img-holder{
    position: relative;
    background-color: #f5f5f5;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.how-it-works-img-holder-after::after{
    height: 125%;
    width: 8px;
    background-color: #f5f5f5;
    content: " ";
    position: absolute;
    bottom: 0;
    transform: translate3d(0px, 100%, 0px);
}

.how-it-works-img{
    width: 25px;
}

.how-it-works-txt{
    font-size: 95%;
}

/**************** recommendations ************/

.profile-strength-holder {
    border-radius: 8px;
    box-shadow: var(--lightBoxShadow);
    width: 78%;
    margin: 0 auto;
}

.strength-bar-holder{
    display: flex;
    align-items: center;
}

.strength-bar {
    position: relative;
    background-color: rgba(191,203,218,.4);
    width: 100%;
    height: 20px;
    border-radius: 8px 8px 0 0;
}

.strength-progress {
    position: absolute;
    height: 100%;
    border-radius: 8px 0 0 0;
    left: 0;
    bottom: 0;
}

.strength-holder{
    display: flex;
    align-items: center;
}

.strength-num-holder{
    padding: 0 60px;
}

.strength-num{
    font-size: 385%;
    font-weight: 600;
}

.strength-title {
    font-size: 115%;
    font-weight: 500;
    margin-top: 5px;
}

.recommendations-holder{
    width: 100%;
}

.recommendation-holder{
    display: flex;
    align-items: center;
    padding: 22px 15px;
    transition-duration: 0.3s;
}

.recommendation-holder:not(:first-child){
    border-top: 1px solid rgba(191,203,218,.4);
}

.js-recommendation-holder:hover{
    background-color: rgba(191,203,218,.2);
}

.js-recommendation-holder{
    cursor: pointer;
}

.recommendation-box{
    position: relative;
    height: 15px;
    width: 15px;
    border-radius: 5px;
    border: 2px solid rgba(191,203,218,.5);
    margin-right: 8px;
}

.recommendation-box-fill{
    height: 100%;
    width: 100%;
    background-color: var(--green);
    border-radius: 5px;
    position: absolute;
    border: 2px solid var(--green);
    top: -2px;
    left: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: green;
}

.recommendation-num{
    padding: 4px 8px;
    background-color: var(--green);
    color: green;
    font-weight: 500;
    border-radius: 8px;
    font-size: 90%;
    margin-left: auto;
}

.recommendation-edit{
    padding: 4px 8px;
    color: gray;
    font-weight: 500;
    text-decoration: underline;
    font-size: 90%;
    margin-left: auto;
}

/************* recommendations end ************/

/************** badge *****************/

.badge-holder{
    display: flex;
    align-items: center;
    margin: 4% 0;
}

.badge-img {
    width: 40px;
    min-width: 40px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.not-earned-badge-img{
    opacity: 0.2;
}

.badge-title {
    font-weight: 600;
    font-size: 105%;
}

.badge-txt{
    color: gray;
    font-size: 90%;
    margin-top: 5px;
    font-weight: 300;
}

.earn-badge{
    font-size: 80%;
    border-radius: 8px;
    margin-left: 6px;
    padding: 5px 7px;
}

.not-earned-badge{
    background-color: var(--red);
    color: red;
}

.earned-badge{
    background-color: var(--green);
    color: green;
}

/************** badge end *****************/

/******************* reviews ******************/

.reviews-holder{
    margin: 6% 0;
}

.bars-holder{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.star-img{
    width: 17px; 
    margin-right: 4px;
}

.bar-row{
    display: flex;
    align-items: center;
    width: 26%;
    margin: 10px 0 0 0;
}

.bar-row-mobile{
    display: none;
}

.bar-row-desktop{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.bar-title{
    font-size: 95%;
}

.bar-holder{
    position: relative;
    width: 100%;
    background-color: gainsboro;
    border-radius: 50px;
    height: 4px;
    margin-left: auto;
}

.bar-progress{
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--black);
    height: 100%;
    border-radius: 50px;
}

.bar-num{
    font-weight: 600;
    font-size: 80%;
}

.reviewer-holder{
    display: flex;
    align-items: center;
}

.review-row{
    margin: 4% 0 6% 0;
}

.reviewer-img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}

.reviewer-info-holder{
    margin-left: 10px;
}

.reviewer-name{
    font-weight: 600;
}

.review-date{
    font-size: 80%;
    color: gray;
    margin: 6px 0;
    font-weight: 300;
}

.review-num{
    display: flex;
    align-items: center;
    font-size: 90%;
    font-weight: 600;
}

.review-star-img{
    width: 14px;
    margin-right: 5px;
}

.review-txt{
    font-weight: 300;
    font-size: 95%;
    line-height: 1.4;
    margin-top: 15px;
}

.review-txt a {
    color: inherit;
    font-weight: 400;
}

/******************* reviews end ******************/

/**************** similar profiles ***********/

.similar-creators-holder{
    margin-bottom: 8%;
}

.similar-creators-title{
    font-size: 145%;
    font-weight: 600;
    margin: 7% 0 4% 0;
}

.listing-row {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    overflow-x: auto;
    overflow-y: hidden;
}

.similar-creators-holder .profile-listing-holder {
    width: 24%;
    min-width: 260px;
}

.related-cats-holder{
    margin-bottom: -6%;
}

.related-cats-title{
    font-weight: 600;
}

.related-item {
    padding: 6px;
    background-color: #f6f6f6;
    display: inline-block;
    color: gray;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 10px;
    margin-right: 8px;
    font-size: 86%;
    border: 1px solid #efefef;
}

.related-item:hover{
    text-decoration: underline;
}

/**************** similar profiles end ***********/

.swiper {
    display: none !important;
    width: 100%;
    height: 77vw;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper picture{
    height: 100%;
    width: 100%;
}

.swiper-slide .img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swipe-num-holder{
    color: white;
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(34, 34, 34, 0.66);
    padding: 3px 10px;
    font-size: 75%;
    border-radius: 4px;
    z-index: 99;
}

/******* ref popup ********/

.ref-popup-holder {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 22px;
    border-radius: 20px;
    background-color: var(--black);
    width: 300px;
    max-width: 80%;
    box-shadow: var(--darkBoxShadow);
    z-index: 9999;
}

.ref-popup-txt {
    color: white;
    font-weight: 600;
    font-size: 120%;
}

.ref-popup-btn {
    background-color: white;
    width: 100px;
    padding: 12px;
    margin-left: auto;
    margin-top: 15px;
}

progress[value] {
    -webkit-appearance: none;
    appearance: none;
    height: 5px;
    position: absolute;
    top: 0;
    width: calc(100% - 44px);
    transition: width 10s linear;
}

progress::-webkit-progress-value {
    background: var(--collabstrDark);
}

progress[value]::-webkit-progress-bar {
    background-color: #545353;
}

.reviews-lock-btn{
    position: absolute;
    border-radius: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--black);
    color: white;
    padding: 24px;
    width: 350px;
    text-align: left;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-size: 120%;
    box-shadow: var(--darkBoxShadow);
    cursor: pointer;
    z-index: 99;
    max-width: 90%;
}

.reviews-lock-img{
    width: 62px;
    margin-right: 15px;
}

.cart-icon-mobile {
    display: none;
}

/* Create Custom Offer Modal */
.create-offer-input{
    width: calc(100% - 10px);
}

select.create-offer-input{
    width: 100%;
}

.create-offer-duration-input{
    width: 60%;
    width: calc(69% - 14px);
}

.create-offer-duration-unit-input{
    width: 30%;
    margin-left: 3px;
}

.input-section{
    margin-bottom: 30px;
}

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

.offer-bottom-txt{
    font-size: 72%;
    margin-bottom: 32px;
    margin-top: -18px;
}

.divider{
    width: 100% !important;
    margin-top: 35px !important; 
}

@media only screen and (max-width: 1200px) {
    .listing-row {
        overflow-x: scroll;
    }
    
    .similar-creators-holder .profile-listing-holder {
        margin: 0 3% 0 0;
    }
}

@media only screen and (max-width: 1000px) {
    .platform-img-holder-creator .platform-img{
        margin: 4px 8px 4px 0;
    }
}

@media only screen and (max-width: 800px) {
    .info-holder{
        width: 92%;
        margin: 0 auto;
    }

    .swiper{
        display: block !important;
    }

    .packages-holder{
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }

    .package-filter-holder {
        overflow-x: scroll;
        margin-bottom: 8%;
    }

    .listing-title{
        font-size: 128%;
        margin-right: 12px;
    }

    .header-title {
        display: none;
    }

    .top-review-desktop{
        display: none;
    }

    .top-review-mobile{
        display: block;
        margin: 0px 0px 10px 5px !important;
        font-size: 90% !important;
        margin-right: 4px !important;
        align-items: flex-start;
    }

    .top-review-mobile-title{
        color: black;
        font-size: 90%;
        margin-top: 1px;
        font-weight: 400;
    }

    .creator-title-mobile{
        display: block;
    }

    .msg-btn-holder {
        margin: 8% 0 14% 0;
    }

    .btn-row{
        width: 95%;
        margin: 0 auto 3% auto;
    }

    .listing-holder {
        width: 100%;
        margin: 0 auto 6% auto;
    }

    .listing-holder .img-row, .show-all-btn {
        display: none;
    }

    .profile-holder {
        margin: 4% 0;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .profile-pic {
        min-width: 50px;
        width: 50px;
        height: 50px;
    }

    .profile-info-holder{
        margin-left: 0;
    }

    .badge-holder{
        margin: 6% 0;
    }

    .section-title {
        margin: 11% 0 6% 0;
        font-size: 128%;
    }

    .portfolio-holder {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }

    .portfolio-content-holder {
        min-height: 255px;
    }

    .bar-row{
        width: 100%;
        margin: 2% 0;
    }

    .bar-num{
        margin-left: 12px;
    }

    .review-row {
        margin: 6% 0 12% 0;
    }

    .reviewer-img {
        width: 60px;
        height: 60px;
    }

    .faqs-holder {
        margin: 25% 0;
    }

    .faq-holder {
        margin-bottom: 10%;
        padding-bottom: 4%;
    }

    .faq-question{
        font-size: 100%;
    }

    .faq-btn{
        width: 12px;
    }

    .profile-strength-holder{
        width: 92%;
        margin: 7% auto;
    }

    .strength-holder{
        flex-direction: column;
    }

    .strength-num-holder {
        padding: 14px 40px;
        display: flex;
        align-items: center;
    }

    .strength-num {
        font-size: 220%;
    }

    .strength-title{
        font-size: 100%;
        margin-left: 10px;
        margin-top: 0;
    }

    .recommendation-holder {
        border-top: 1px solid rgba(191,203,218,.4);
    }

    .row-btn-txt{
        display: none;
    }

    .history{
        display: none;
    }

    .btn-row-mobile{
        position: absolute;
        top: 10px;
        right: 20px;
        width: 52%;
    }

    .row-btn{
        margin: 0 1% 0 0;
    }

    .row-btn-img-mobile {
        width: 18px;
        margin-right: 0;
    }

    .row-btn-save-img{
        width: 21px;
    }

    .package-btm-row {
        margin-top: 22px;
    }

    .similar-creators-holder{
        margin-bottom: -10%;
    }

    .similar-creators-title {
        margin: 24% 0 6% 0;
    }

    .related-cats-holder{
        margin-top: 12%;
    }

    .ref-popup-holder {
        bottom: 80px;
        right: 10px;
    }

    .reviews-lock-btn{
        padding: 24px 20px;
        font-size: 110%;
    }

    .reviews-lock-img{
        width: 50px;
    }

    .cart-icon {
        display: none;
    }

    .cart-icon-mobile {
        display: block;
        margin-left: 16px !important;
        margin-right: 6px;
    }

    .listing-description {
        width: 100%;
    }

    .package-img{
        width: 20px;
    }

    .invited-btn::before{
        content:"Invited";
    }

    .invite-btn::before{
        content:"+ Invite";
    }

    .right-info-holder{
        display: none;
    }

    .left-info-holder{
        width: 100%;
    }

    .mobile-brand-nav-holder{
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 999;
        height: 110px;
        border-top: 1px solid rgb(221, 221, 221);
        background-color: white;
        width: 92%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 85%;
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .mobile-nav-add-to-cart{
        padding: 0px 20px;
        height: 45px;
        background: linear-gradient(
            90deg,
            #FF9191 0%,
            #B32DC2 47%,
            #FB669D 100%
        );
    }

    .with-icon {
        margin-top: 0px;
        width: calc(70% - 20px) !important;
        min-height: 45px !important;
        color: black !important;
    }

    .sticky-custom-offer{
        text-align:right;
        font-size: 85%;
        margin: 16px 4px;
    }

    .custom-offer-btn{
        font-weight: 600;
        text-decoration: underline;
        cursor: pointer;
    }

    .sticky-mob-actions{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 8px;
    }

    .profile-name-mobile{
        display: inline-block;
    }

    .profile-name-desktop{
        display: none;
    }

    .bar-holder{
        width: 45%;
    }

    .bar-row-mobile{
        display: flex;
    }

    .bar-row-desktop{
        display: none;
    }

    .top-review-mobile > img {
        transform: translateY(2px);
    }
    
    /* Remove hover on mobile for creators only */
    .creator-user:hover {
        border: 1px solid #EAEAEA !important;
        box-shadow: none !important;
    }
}