/* Lista de Desejos - Guarnieri Móveis */
.wishlist-btn { cursor: pointer; transition: all 0.2s; }
.wishlist-btn i { transition: all 0.2s; }
.wishlist-btn.active i { color: #e74c3c; }
.wishlist-btn:hover i { color: #e74c3c; }
.wishlist-pulse { animation: wishlistPulse 0.6s ease; }
@keyframes wishlistPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.3); }
    100% { transform: scale(1); }
}
.wishlist-count {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    font-size: 9px;
    min-width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    padding: 0 2px;
    position: relative;
    top: -8px;
    margin-left: -5px;
    vertical-align: top;
}
.wishlist-link { position: relative; display: inline-block; }
.wishlist-link i#wishlistHeaderIcon,
.wishlist-link i.fa-heart-o,
.wishlist-link i.fa-heart {
    font-size: 28px;
}
