.ejt-wishlist-delete-button {
    background-color: var(--bricks-color-bsmuou);
    border-radius: 1in;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ejt-wishlist-delete-button i {
    font-size: 1.2em;
    fill: white;
    color: white;
}


.ejt-wishlist-delete-button:hover {
    opacity: 0.8;
}

.ejt-wishlist-delete-button:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.ejt-wishlist-delete-button.is-loading {
    opacity: 0.6;
    pointer-events: none;
    cursor: not-allowed;
}

.ejt-wishlist-delete-button i {
    display: inline-block;
    line-height: 1;
}