.favorite_button {
    width:30px;
    cursor:pointer;
}
.empty_message_style {
    padding: 8px 35px 8px 14px !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
    background-color: #fcf8e3;
    border: 1px solid #fbeed5;
    border-radius: 8px;
    font-size: 16px;
    color: #c09853;
    margin: 15px 0;
    position: relative;
}
.item_favorite {
    display:grid;
    grid-template-columns: 80px 1fr;
    gap:20px;

    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    position: relative;
    margin-bottom:20px;
}
.item_favorite:hover {
    transition: 0.5s;
    box-shadow: 0 0 20px 0 rgba(50, 50, 50, 0.1);
}
.favorite_img img {
    height:auto;
}
.favorite_img {
    overflow:hidden;
}
.favorite_img img {
    display:block;
    border-radius:10px;
}
.favorite_title {
    font-weight:bold;
    font-size:15px;
    margin-bottom:8px;
}
.favorite_item_field {
    font-size:14px;
    margin-bottom:5px;
}
.delete_item {
    position: absolute;
    color: #83899f;
    width: 20px;
    height: 20px;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.delete_item svg {
    width: 20px;
    height:20px;
    color:#83899f;
    transition: opacity .15s ease;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
    fill:none;
    stroke:#83899f;
}
.delete_item:hover svg {
    stroke: #0b1f33;
}
.favorite_button.article_favorite_button {
    width:auto;
    display:inline-block;
    padding:10px 20px;
    border:1px solid #83899f;
    border-radius:10px;
}
.article_favorite_button .open-tooltip {
    display:grid;
    grid-template-columns: 25px 1fr;
    gap:5px;
    align-items: center;
}
.article_favorite_button .open-tooltip .tooltip {
    left:-10px;
    bottom:calc(100% + 20px);
}
#favorite_list {
    width:480px;
    display:none
}