.wishlist-toggle {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    outline: none;
    border:none;
}
 
.wishlist-title {
    display: none;
}
 
.entry-summary .wishlist-toggle {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 8px;
}
 
.entry-summary .wishlist-title {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 8px;
}
 
.wishlist-toggle:focus {
    outline: none;
    border:none;
}
 
.wishlist-toggle svg {
    fill:var(--dark-text);
    transition: all 200ms ease-out;
}
 
.wishlist-toggle:hover svg,
.wishlist-toggle.active svg,
.wishlist-toggle.loading svg {
    fill:var(--dark-text);
}
 
.wishlist-toggle svg .loading,
.wishlist-toggle svg .check,
.wishlist-toggle svg .heart-filled {
    opacity: 0;
}
 
.wishlist-toggle.complete svg .check {
    opacity: 1;
}

.wishlist-toggle.active:not(.complete):not(.loading) svg .heart-filled {
    opacity: 1;
}
 
.wishlist-toggle.active svg .heart {
    opacity: 0;
}
 
.wishlist-toggle.loading svg .loading,
.wishlist-table.loading:before {
    animation:loading 500ms 0ms infinite normal linear;
    transform-origin: center;
    opacity: 1;
}
 
.wishlist-toggle.loading svg .heart, .wishlist-toggle.complete svg .heart {
    opacity:0;
}
 
@keyframes loading {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}



/* Wishlist Table */

.wishlist-table {
    width:100%;
    position: relative;
    border-spacing: 12px;
}
 
.wishlist-table.loading:after {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: #ffffff;
    opacity: 0.5;
    z-index: 5;
}
 
.wishlist-table.loading:before {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top:-12px;
    margin-left:-12px;
    content: "";
    background-image: url('../../../Brist-MFG-eCommerce-master/includes/brist-store-templates/wishlist/loading.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 6;
}

.wishlist-table tr {
    position: relative;
    opacity: 1;
    transform: scaleY(1);
    transition: .3s;
}

.wishlist-table tr:not(.wishlist-header) {
    border-radius: 8px;
    box-shadow:
        0 0px 0.7px rgba(0, 0, 0, 0.016),
        0 0px 2.2px rgba(0, 0, 0, 0.024),
        0 0px 10px rgba(0, 0, 0, 0.04)
    ;
}
 
.wishlist-table td {
    position: relative;
    text-align: center;
    text-transform: capitalize;
}

.wishlist-table td.wishlist-remove-cell {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    padding-left: 12px;
    background: #f1f1f1;
    border-radius: 8px 0 0 8px;
    pointer-events: none;
    transition: .3s;
    transition-timing-function: cubic-bezier(0.55, 0.09, 0.68, 0.53);
    z-index: 1;
}

.wishlist-table td.wishlist-remove-cell:hover, .wishlist-table tr.removing td.wishlist-remove-cell {
    background: #CB6658;
}

.wishlist-table tr.removing td.wishlist-remove-cell {
    width: 100%;    
}

.wishlist-table tr.removing {
    opacity:.2;
    transform: scaleY(.7);
}

.wishlist-table a.wishlist-remove {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('../../../Brist-MFG-eCommerce-master/includes/brist-store-templates/wishlist/remove.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    pointer-events: auto;
    border:none;
}

.wishlist-table td.wishlist-image {
    width: 250px;
}

.wishlist-table td.wishlist-image img {
    max-width: 200px;
    margin: 24px 0 0 50px;
}

.wishlist-table .details {
    color: var(--dark-text);
    font-size: 1.1rem;
    font-weight: 700;
}

.wishlist-table .wishlist-price {
    font-weight: 600;
}