.favorite_sellers .shop_container {
    flex-direction: column;
    border-bottom: 1px solid #ccc;
    margin-bottom: 8px;
}

.favorite_sellers .shop_info {
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    /* border-top:1px solid #ccc; */
}
.favorite_sellers .shop_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:50%;
    border:1px solid #ccc;
    height:100px;
    width:100px;
}
.favorite_sellers .shop_logo > img {
    width:100%;
    height:100%;
    border-radius: 50%;
    object-fit: cover;
}

.favorite_sellers .no-avatar {
    background: #ccc;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.favorite_sellers .shop_content {
    display:flex;
    flex-direction: column;
    justify-content: center;
    font-size: 12px;
    width: 60%;
    margin-left: 20px;
    color: var(--bs-body-color);
    position: relative;
}

.favorite_sellers .shop_content > p {
    padding: 3px;
    margin: 0;
    word-break: break-all;
}
.favorite_sellers .shop_content .shop_name {
    font-weight: bold;
}

.favorite_sellers .shop_content .shop_address {
    color: #aaa;
    width: 100%;
}
.favorite_sellers .shop_btn > a {
    text-decoration: none;
    border-radius: 5px;
    font-size:11px;
    padding: 8px;
    border: 1px solid rgba(252, 149, 1, 1);
    color: rgba(252, 149, 1, 1);
}
.favorite_sellers .shop_btn > a:hover {
    background: rgba(252, 149, 1, 1);
    color : #ffffff;
    transition: all 0.3s ease-in;
}


.favorite_sellers .shop_content .tf_shop_actions {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.favorite_sellers .shop_content .tf_shop_actions button {
    border: 0;
    background: transparent;
    font-size: 17px;
    color: #000;
}
.favorite_sellers .shop_content .tf_shop_actions button:hover {
    color: #000;
}
.favorite_sellers .shop_content .tf_shop_actions button i {}
.favorite_sellers .shop_content .tf_shop_actions button[data-action="add-to-favorite"] {}
.favorite_sellers .shop_content .tf_shop_actions button[data-action="add-to-favorite"].active i:before {
    font-weight: 600;
}