 /* Favorite Button styles */

img.favorite_icon {
    width: 40px;
    position: absolute;
    top: 20px;
    right: 40px;
    padding: 7px;
    background-color: #ffffff85;
    border-radius: 8px;
cursor: pointer;
}

div.add_to_fav_div {

    border-radius: 15px;
    display: flex;
    gap: 10px;
    font-family: inherit;
    font-weight: bold;
    position: absolute;
    right: 0;
    background-color: var(--global-palette8);
    padding: 15px;
}

div.add_to_fav_div.top {
    top: 30px;
}
div.add_to_fav_div.bottom {
    bottom: 270px;
}

div.add_to_fav_div span.fav_text {
    opacity: 0.9;
}

div.add_to_fav_div img {
    
    width: 30px !important;
    height: 30px;
    align-self: center;

}

.add_to_fav_div {
    cursor: pointer;
}

.show_my_fav_div {

    text-align: center;
    display: flex;
    justify-content: center;
    background-color: var(--global-palette-btn-bg);
    padding: 10px;
    width: 250px;
    border-radius: 15px;
    color: white !important;
    margin-left: auto;
    margin-right: auto;

}

.show_my_fav_div:hover {
    background-color: var(--global-palette-btn-bg-hover);
}

.show_my_fav_div a {
    
    text-decoration: none !important;
    color: white !important;
    font-weight: bold !important;
}

 /* -- Favorite Button styles ends here -- */
