.rmt-wishlist-container {
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
}

.rmt-wishlist-link {
    display: flex;
    position: relative;
    color: inherit;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rmt-wishlist-link:hover {
    color: #e74c3c;
}

.rmt-wishlist-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rmt-wishlist-icon-wrap i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.rmt-wishlist-icon-wrap svg {
    display: inline-flex;
    width: 100%;
    height: 100%;
}

/* The Red Badge */
.rmt-wishlist-count {
    position: absolute;
    top: -9px;
    right: -10px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-family: sans-serif;
    font-weight: bold;
    min-width: 17px;
    height: 17px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 17px;
    padding: 0;
    z-index: 5;
    pointer-events: none;
    box-sizing: border-box;
}

/* Show badge when has .show class */
.rmt-wishlist-count.show {
    display: flex;
}
