.favorite2 {
    height: 40px;
    width: 40px;
    display: inline-flex;
    justify-content: center;
    padding: 10px 15px;
    column-gap: 5px;
    color: #ffffff;
    background-color: rgba(255,255,255,0.6); 
    border-radius: 4px;
    cursor: pointer;
    transition: background-color .25s;
    align-items: center;
    box-shadow:0 0 5px rgb(0,0,.25s);
    border: 2px solid #eee;
    font-size: 24px;
}

.favorite {
    display: inline-flex;
    justify-content: center;
    padding: 10px 15px;
    color: #A9A9A9;
    background-color: rgba(255,255,255); 
    border-radius: 20px;
    border: 2px solid #eee;
    cursor: pointer;
    align-items: center;
    font-size: 24px;
}

.favorite:hover{
    background-color: #e6e6e6;
}

.favorite:focus i {
    animation: ribbon .25s cubic-bezier(.77 , 0 , 0.17, 1) forwards;
}

.favorite-inactive {
	color: #A9A9A9 !important;
}

.favorite-active {
	color: #ff1493 !important;
}

@keyframes ribbon {
    0%{
        transform: scaleY(.1);
    }
    25%{
        transform: scaleY(.1);
    }
    100%{
        color: #ff1493;
    }
}