.user_pet_cmp_content{
    
}

.user_pet_cmp_content .user_pet_list{
    
}

.user_pet_cmp_content .user_pet_item{
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--boxBorderColor);
    padding-bottom: 20px;
}

.user_pet_cmp_content .user_pet_item.add_pet_button{
    
}

.user_pet_cmp_content .user_pet_item.add_pet_button .pet_image{
    width: 200px;
    height: 120px;
    background-color: var(--pet-theme-color-0);
    border-radius: 10px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center 36px;
}

.user_pet_cmp_content .user_pet_item.add_pet_button .pet_image:hover{
    background-color: var(--pet-theme-color-0-highlight);
}

.user_pet_cmp_content .user_pet_item.add_pet_button .pet_image p{
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    color: var(--blackTextColor);
}

.user_pet_cmp_content .pet_item_el{
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
}

.user_pet_cmp_content .pet_item_el.pet_image{
    width: 60%;
    height: 260px;
    text-align: right;
    position: relative;
}

.user_pet_cmp_content .user_pet_item .pet_image{
    overflow: hidden;
}

.user_pet_cmp_content .user_pet_item .pet_image img{
    border-radius: 10px;
    height: 100%;
    width: 100%;
    max-width: 320px;
    object-fit: cover;
}

.user_pet_cmp_content .user_pet_item .pet_name{
    
}

.user_pet_cmp_content .user_pet_item .pet_name h4{
    margin-bottom: 0;
}

.user_pet_cmp_content .user_pet_item .pet_category{
    font-weight: var(--p-font-weight-bold);
    color: var(--blackTextColor);
}

.user_pet_cmp_content .user_pet_item .pet_description{
    margin-top: 10px;
}

.user_pet_cmp_content .user_pet_item .pet_description p{
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.user_pet_cmp_content .user_pet_item .pet_description p.private_pet_mark_tips{
    padding-left: 18px;
    background-size: 16px;
    background-position: left;
    background-repeat: no-repeat;
}

.user_pet_cmp_content .user_pet_item .private_pet_mark{
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: var(--pet-theme-color-0-highlight-x);
    color: var(--blackTextColor);
    padding: 2px 6px;
    border-radius: 6px;
}

.widget_content .user_pet_cmp_content{
    overflow-x: auto;
}

.widget_content .user_pet_cmp_content .user_pet_list{
    width: 100%;
    text-align: left;
    width: 100%;
    margin-top: -30px;
}

.widget_content .user_pet_cmp_content .user_pet_item{
    display: inline-block;
    vertical-align: top;
    border-bottom: none;
    margin-bottom: 0;
    margin-right: 24px;
    padding-bottom: 0;
    width: fit-content;
    text-align: center;
    margin-top: 30px;
}

.widget_content .user_pet_cmp_content .pet_item_el.pet_brief{
    display: block;
    width: 100%;
    position: relative;
    margin-top: 16px;
}

.widget_content .user_pet_cmp_content .user_pet_item .pet_category{
    color: white;
    font-weight: normal;
    opacity: 0.8;
}

.widget_content .user_pet_cmp_content .user_pet_item .pet_name a{
    color: var(--primaryButtonColor);
    font-size: 0.8em;
    text-decoration: none;
}

.widget_content .user_pet_cmp_content .user_pet_item .pet_image{
    position: relative;
    width: 145px;
    text-align: center;
    display: block;
    height: 145px;
    border-radius: 50%;
    border: 4px solid white;
    box-sizing: border-box;
}

.widget_content .user_pet_cmp_content .user_pet_item.add_pet_button .pet_image{
    background-position: center;
    position: relative;
}

.widget_content .user_pet_cmp_content .user_pet_item.add_pet_button .pet_image p{
    bottom: 50px;
}

.widget_content .user_pet_cmp_content .user_pet_item .pet_image img{
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget_content .user_pet_cmp_content .user_pet_item .pet_description{
    display: none;
}

.widget_content .user_pet_cmp_content .user_pet_item .pet_name h4{
    padding-bottom: 2px;
}

.widget_content .user_pet_cmp_content .empty_view{
    display: none;
}


.user_pet_cmp_content .empty_list_msg{
    padding: 10px;
}


@media screen and (max-width: 480px){
    
    .widget_content .user_pet_cmp_content .user_pet_list{
        width: 278px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .widget_content .user_pet_cmp_content .user_pet_item{
        margin-right: 10px;
        margin-left: 10px;
    }
    
    .widget_content .user_pet_cmp_content .user_pet_item .pet_image{
        height: 118px;
        width: 118px;
    }
}