.favorite {
    vertical-align: text-bottom;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
}

.white-heart {
    width: 23px;
}

.red-heart {
    width: 23px;
}

.show-div {
    display: flex;
}

.noShowNoFavorite {
    padding: 8px 10px 4px;
    background: #ffffff;
    color: #777777;
    /* margin: 5px 0 15px 0; */
    width: fit-content;
    /* border: solid 1px #d9d9d9; */
    /* margin-left: 3rem; */
    height: 40px;
    display: flex;
}

.show-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    background-color: #A0A0A0;
    padding: 20px;
    border: 1px solid #ccc;
    color: white;
    font-size: 20px;
    border-radius: 1rem;
    width: 45%;
    text-align: center;
    font-family: inter;
}
@media screen and (max-width: 1024px) {
    .show-div {
        display: block;
    }

    /* .noShowNoFavorite {
        padding: 8px 10px 0px;
        background: #ffffff;
        color: #777777;
        margin: 5px 0 15px 0;
        width: fit-content;
        border: solid 1px #d9d9d9;
        margin-left: 0rem;
    } */
    .show-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%);
        background-color: #A0A0A0;
        padding: 20px;
        border: 1px solid #ccc;
        color: white;
        font-size: 13px;
        border-radius: 1rem;
        width: 80%;
        text-align: center;
        font-family: inter;
    }
}