.wishlist_table {
    width:100%;
    position: relative;
}

.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('../images/loading.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 6;
}
/* .woocommerce-js .blockUI.blockOverlay::before,
.ast-quick-view-loader.blockUI.blockOverlay::before
{
    background-image: url('../images/loading.svg') !important;
    background-repeat: no-repeat !important;
    animation: spin 500ms 0ms infinite normal linear !important;
    border: none !important;
} */

.wishlist_table.loading:before {
    animation:loading 500ms 0ms infinite normal linear;
    transform-origin: center;
    opacity: 1;
}

dl.variation {
    line-height: 1.5;
}

.product-add-to-cart
{
    text-align: right;
}

.product-add-to-cart a  {
    font-size: 18px;
    display: inline-block;
    width: 20px;
    height: 20px;
}

.woocommerce-page table.wishlist_table .last-row
{
    text-align: right;
    padding-right: 0;

}

.woocommerce-page table.wishlist_table .last-row .fa-solid
{
    margin-left: 5px;
}

@keyframes loading {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}
