.profile-listing-holder, .featured-profile-listing-holder{
    cursor: pointer;
    position: relative;
    padding: 10px 7px;
    background: var(--circleBackground);
    border-radius: 10px;
    width: 24%;
    margin-right: 14px;
    height: 390px;
}
.profile-listing-holder:nth-child(even){
    background:white;
    box-shadow: 0px 0px 10px 0px var(--shadowColor);
    overflow: hidden;
}

.profile-listing-img-holder {
    width: 100%;
    height: 275px;
    position: relative;
    border-radius: 9px;
    background-color: var(--primaryColor);
    overflow: hidden;
}

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

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

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

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

.profile-listing-owner-name {
    display: flex;
    align-items: center;
    font-size: 100%;
    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;
    align-items: center;
    margin: 2% 0;
    height: 70px;
    justify-content: space-between;
}

.profile-listing-category {
    color: var(--subColor);
    font-size: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    column-gap: 10px;
    margin-top: 10px;
}

.profile-listing-price {
    font-weight: 600;
    font-size: var(--bodyFontSize);
    color: var(--primaryColor);
}

.profile-listing-title {
    font-size: 1.2em;
    font-weight: 500;
    margin: 0;
    max-height: 60px;
    height: 60px;
    word-wrap: break-word;
    white-space: nowrap;
    overflow: auto;
    text-overflow: ellipsis;
}


@media only screen and (max-width: 800px) {
    .profile-listing-holder ,.my_ticket_container .profile-listing-holder{
        width: 100% !important;
        max-height: 360px;
        height: 360px;
    }
    .home_provider_holder .home_provider_item , .list_provider_holder .list_provider_item{
        width: 100% !important;
    }
    .profile-listing-img-holder {
        height: 240px;
    }
}

.category_holders {display: flex;width: 100%;flex-wrap: nowrap;flex-direction: row;align-items: center;overflow-y: hidden;justify-content: flex-start;overflow-x: scroll;margin-top: 21px;}

.category_holders .category_item {
    margin: 5px 10px;
    padding: 10px 20px;
    border-radius: 5px;
    background: var(--circleBackground);
    box-shadow: 0px 0px 1px 0px var(--shadowColor);
}
.category_holders .category_item:hover , .category_holders .category_item.selected_tab {
    background: var(--blueColor);
    color: white;
}
.category_holders .category_item:hover a ,.category_holders .category_item.selected_tab a {
    color: var(--darkBlueColor);
}

.category_holders .category_item a {
    text-decoration: none;
    color: var(--primaryColor);
    font-weight: 500;
    font-size: var(--bodyFontSize);
}

.add_item {background: var(--pinkColor);}

.category_holders .add_item.category_item a {
    color: var(--blackText);
}

.btn.btn-info {
    background: var(--primaryColor);
}

.package-holder .package-price {
    color: var(--primaryColor);
}

.form_holder textarea {
    border-radius: 8px;
    padding: 18px 20px 24px 20px;
    margin-bottom: 6%;
    position: relative;
    border: none;
    border-left: 5px solid var(--primaryColor);
    transition-duration: 0.3s;
    width: 100%;
    box-shadow: 0px 0px 2px 0px #808080d9;
    background-color: #ffffff12;
}



.list-btn-holder a.list-btn {
    color: lightcoral;
    border: 0.1px solid;
    padding: 5px 10px;
    margin-bottom: 10px;
    display: block;
    border-radius: 5px;
    transition: 0.5s;
    text-decoration: none;
}

.list-btn-holder {
    text-align: center;
}

.list-btn-holder a.list-btn:hover {
    background: lightcoral;
    color: white;
}

.profile-listing-owner-holder .provider_img img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

.profile-listing-owner-holder .provider_img {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.profile-listing-category img.circle_img {
    width: 35px;
    /* border-radius: 50%; */
    object-fit: cover;
}

.home_provider_holder {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    overflow-x: scroll;
    width: 100%;
    max-width: 100%;
    align-content: center;
    justify-content: flex-start;
    flex-direction: row;
}

.list_provider_holder{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    overflow-x: scroll;
    width: 100%;
    max-width: 100%;
    align-content: center;
    justify-content: flex-start;
    flex-direction: row;
}

.home_provider_holder .home_provider_item  {
    min-width: 250px;
    max-width: 50%;
    flex: 50%;
    overflow: hidden;
    max-height: 380px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    background: white;
    box-shadow: 0px 0px 5px 0px var(--shadowColor);
    border-radius: 10px;
    padding: 10px 7px;
    padding: 0;
    color: var(--primaryColor);
    display: flow;
}

.list_provider_holder .list_provider_item {
    flex: 30%;
    max-width: 33%;
    overflow: hidden;
    max-height: 380px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    background: white;
    box-shadow: 0px 0px 5px 0px var(--shadowColor);
    border-radius: 10px;
    padding: 10px 7px;
    padding: 0;
    color: var(--primaryColor);
    display: flow;
}


.home_provider_holder .home_provider_item img.home_provider_img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: center;
    overflow: hidden;
    z-index: 1;
}

.list_provider_holder .list_provider_item img.list_provider_img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: center;
    overflow: hidden;
    z-index: 1;
}

.home_provider_holder .home_provider_content h1 {
    font-size: 1.2em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list_provider_holder .list_provider_content h1 {
    font-size: 1.2em;
}

.home_provider_img_container {
    background: var(--primaryColor);
    width: 100%;
    height: 100%;
    z-index: 2;
    position: absolute;
    top: 0;
    opacity: 0.45;
    overflow: hidden;
}

.list_provider_img_container {
    background: var(--primaryColor);
    width: 100%;
    height: 100%;
    z-index: 2;
    height: 310px;
    position: absolute;
    top: 0;
    opacity: 0.45;
    overflow: hidden;
}

.event_overlay_image {
    background: var(--primaryColor);
    width: 100%;
    height: 100%;
    opacity: 0.35;
    position: absolute;
    top: 0;
    left: 0;
}

.home_provider_item .home_provider_content {
    margin-top: 10px;
    padding-left: 10px;
}

.list_provider_item .list_provider_content {
    margin-top: 10px;
    padding-left: 10px;
}

.home_provider_image_container {
    height: 310px;
    position: relative;
}

.list_provider_image_container {
    height: 310px;
}

.provider_container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
}

.provider_container .list_provider_container {
    flex: 70%;
}