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

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

.row-btn{
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 10px 18px;
    font-size: 90%;
    font-weight: 600;
    cursor: pointer;
    margin: 0 0 0 1%;
    box-shadow: var(--lightBoxShadow);
    border-radius: 8px;
    transition-duration: 0.3s;
}

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

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

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

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

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

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

.listing-holder .img-row {
    display: flex;
    height: 440px;
    justify-content: space-between;
}

.listing-holder .primary-img {
    width: 57%;
}

.listing-holder .img-col {
    display: flex;
    flex-direction: column;
    width: 42%;
    justify-content: space-between;
}

.listing-holder .img-row-sq {
    display: flex;
    height: 50%;
    margin-bottom: 2%;
}

.listing-holder .img-row-sq .file-area {
    width: 100%;
}

.listing-holder .img-row-sq .file-area:first-child {
    margin-right: 2.5%;
}

.listing-holder .file-area {
    height: 100%;
    border-radius: 8px;
    transition-duration: 0.3s;
    cursor: pointer;
}

.listing-holder .file-area:hover {
    opacity: 0.7;
}

.listing-holder .img {
    overflow: hidden;
    object-fit: contain;
    height: auto;
    width: 100%;
    max-height: 200px;
}

.listing-holder .img1 {
    border-radius: 8px 0 0 8px;
}

.listing-holder .img3 {
    border-radius: 0 8px 0 0;
}

.listing-holder .img4 {
    border-radius: 0 0 8px 0;
}

.listing-holder .file-area4 {
    height: calc(220px - 2%);
}

.listing-holder .img-row-full {
    height: 100%;
    margin-bottom: 0;
}

.listing-holder .img-row-full .img3 {
    border-radius: 0 8px 8px 0;
}

.listing-holder .primary-img1 {
    width: 100%;
}

.listing-holder .primary-img1 .img1 {
    border-radius: 8px;
}


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

.listing-cols {
    display: flex;
    justify-content: space-between;
    margin-top: 3%;
}

.listing-col-l {
    width: 65%;
}

.listing-col-r {
    width: 30%;
}

.listing-title {
    font-size: 125%;
    font-weight: 600;
    margin: 0;
}

.section-title {
    display: flex;
    align-items: center;
    margin: 6% 0 4% 0;
    font-size: 120%;
    font-weight: 600;
}

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


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

.filter-input {
    margin-left: 12px;
    width: 165px;
    height: 28px;
    min-height: 28px !important;
}

.listing-holder .package-holder {
    border-radius: 8px;
    box-shadow: var(--lightBoxShadow);
    padding: 18px 20px 24px 20px;
    margin-bottom: 6%;
    position: relative;
    border-left: 8px solid var(--primaryColor);
    cursor: pointer;
    transition-duration: 0.3s;
}

.listing-holder .package-holder:hover {
    background-color: #141414;
}

.package-category {
    font-size: 100%;
    color: var(--lightGray);
    margin-bottom: 3px;
}

.package-title{
    font-size: 100%;
    font-weight: 600;
    margin: 0;
}

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

.package-btn-holder {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.package-btn {
    margin-left: 12px;
    border: 1.5px solid rgb(255 255 255);
    border-radius: 50%;
    width: 11px;
    height: 11px;
}

.package-active {
    border-left: 8px solid var(--purple) !important;
}

.btn-active {
    background-color: var(--purple);
}

.package-description {
    line-height: 1.4;
    margin-top: 3%;
    font-size: 100%;
    font-weight: 300;
    padding-bottom: 2%;
}

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



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

.profile-holder {
    margin-bottom: 9%;
}

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

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

.profile-name {
    display: flex;
    align-items: center;
    margin: 1% 0;
    font-weight: 600;
    transition-duration: 0.3s;
    color: var(--primaryColor);
    font-size: var(--primaryFontSize);
    text-decoration: none;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
}

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

.profile-location {
    color: var(--subColor);
    font-size: var(--subFontSize);
    margin-top: 5px;
    margin-bottom: 10px;
}

.platform-img-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2% 0;
    width: 100%;
}

.platform-img {
    margin: 0 2%;
    width: 18px;
    cursor: pointer;
    position: relative;
}

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

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


/**************** checkout ***************/

.checkout-area{
    position: sticky;
    box-shadow: 0px 0px 2px var(--lightBoxShadow);
    top: 80px;
    padding: 25px 20px;
    border-radius: 10px;
    background: var(--circleBackground);
}

.checkout-holder {
}

.checkout-title {
    font-size: 115%;
    font-weight: 600;
}

.checkout-holder .input {
    margin: 5% 0;
    height: 50px;
    width: 100%;
}

.checkout-price {
    font-size: 160%;
    font-weight: 300;
}

.checkout-description-holder {
    font-size: 80%;
    font-weight: 300;
    margin: 3% 0;
}

.checkout-holder .btn {
    margin: 10% auto 0 auto;
    width: 100%;
    padding: 15px;
    color: white;
}

.msg-btn{
    font-weight: 300;
    text-align: center;
    font-size: 85%;
    margin-top: 4%;
    margin-bottom: -5px;
    cursor: pointer;
}

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

.how-it-works-btn{
    display: flex;
    align-self: center;
    justify-content: center;
    font-size: 100%;
    margin-top: 6%;
    cursor: pointer;
}

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


/**************** checkout end ***************/

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

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

.listing-row {
    display: flex;
    justify-content: space-between;
    margin-top: 1%;
}

.featured-profile-listing-holder {
    width: 24%;
    min-width: 160px;
}

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

@media only screen and (max-width: 1000px) {
    .listing-row {
        overflow-x: scroll;
    }

    .featured-profile-listing-holder {
        margin: 3% 3% 0 0;
    }
}

@media only screen and (max-width: 800px) {
    .btn-row{
        width: 92%;
        margin: 4% auto 3% auto;
    }
    .history{
        padding: 8px 10px;
        font-size: 65%;
    }


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

    .listing-holder .img-row {
        height: fit-content;
        flex-direction: column;
    }

    .listing-holder .primary-img, .img-col {
        width: 100% !important;
    }

    .listing-holder .img-col {
        height: 200px;
    }

    .listing-holder .img, .file-area {
        border-radius: 8px !important;
    }
    .listing-holder .img-row-sq {
        margin: 2% 0;
        height: 100%;
    }

    .listing-holder .primary-img, .img-row-sq {
        height: 210px;
    }

    .listing-holder .file-area4 {
        display: none;
    }

    .listing-cols {
        flex-direction: column;
        margin-top: 6%;
    }

    .listing-col-l, .listing-col-r {
        width: 100%;
        margin-bottom: 5%;
    }

    .checkout-area{
        position: initial;
        top: 0;
    }

    .section-title {
        margin: 8% 0 6% 0;
    }

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

    .filter-input {
        width: 100%;
    }
}

.event .profile-name , .product .profile-name {
    padding: 10px;
    color: var(--lightText);
    font-size: 20px;
    text-transform: capitalize;
}

.event .profile-name span ,.product .profile-name span {
    padding-right: 10px;
}

.event .profile-location ,.product .profile-location {
    font-size: 100%;
}

.event .checkout-description-holder {
    font-size: 100%;
    color: var(--pinkColor);
}

.content_profile_video_container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    margin-top: 24px;
}

.content_profile_video_container .video_item {
    width: 30%;
    margin-right: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--lightBoxShadow);
}
.section_gallery {
     box-shadow: 0px 0px 0px 0px;
     margin-top: 20px;
}
.portfolio_gallery {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    flex: 100%;
    margin-top: 17px;
    overflow-x: scroll;
    overflow-y: hidden;
    align-items: center;
    align-content: center;
}

.portfolio_gallery .portfolio_item {
    flex: 50%;
    max-width: 50%;
    margin-right: 10px;
    border-radius: 5px;
    /* overflow: hidden; */
}
.portfolio_gallery .video_item {
   flex: 40%;
    max-width: 40%;
    margin-right: 10px;
    border-radius: 5px;
    overflow: hidden; 
}

h1.listing-title {
    font-size: 27px;
    text-transform: capitalize;
}

h2.description_title {
    color: var(--lightText);
    font-size: 20px;
    text-transform: capitalize;
}

.section_gallery h1.listing-title {
    color: var(--primaryColor);
    font-size: var(--primaryFontSize);
}

.checkout-holder a.btn.btn-danger {
    color: white;
}

.tab_events_content .profile-listing-holder {
    width: 45%;
}