#ajax_wishlist_loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 300px;
    min-height: 150px;
    box-shadow: 0 0 5px #ddd;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms;
}
.ajwl_show:after {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background-color: #000;
    content: "";
    opacity: 0.7;
}
#ajax_wishlist_loading._show {
    opacity: 1;
    visibility: visible;
}
.ajax_wishlist_loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    background-image: url(../images/oval.svg);
    background-position: center;
    background-repeat: no-repeat;
    z-index: 5;
}
.ajax_wishlist_loading._hide {
    z-index: 1;
}
.ajax_wishlist_success._show {
    z-index: 6;
}
.ajax_wishlist_success .content {
    text-align: center;
    width: 100%;
}
.ajax_wishlist_success .content .text-content {
    padding: 10px;
    background-color: #00b700;
    color: #fff;
    border-radius: 3px;
    margin-bottom: 10px;
}
.ajax_wishlist_false .content {
    padding: 10px;
    background-color: #ff7736;
    color: #fff;
    border-radius: 3px;
    text-align: center;
    margin-bottom: 10px;
}
#ajax_wishlist_loading .action-close {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    width: 30px;
    text-align: center;
    color: #2f2f2f;
    z-index: 8;
    font-weight: bold;
    font-size: 23px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
#ajax_wishlist_loading .action-close:after {
    content: "x";
}
.ajax_wishlist_false, .ajax_wishlist_success {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 10px;
    flex-wrap: wrap;
}
.ajax_wishlist_false {
    z-index: 3;
    position: absolute;
}
#guest_wishlist_list.products {
    margin-top: 0;
}
.products-grid.wishlist .product-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    grid-gap: unset;
}
.products-grid.wishlist .product-item {
    display: flex;
    flex-direction: column;
    max-width: calc(33.33% - 30px);
    margin: 0 15px 30px;
    flex: unset;
    width: 100%;
}
.products-grid.wishlist .product-item .product-item-info {
    order: -1;
    padding-bottom: 0;
}
.products-grid.wishlist .product-item button.remove {
    width: 30px;
    height: 30px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -1px;
    right: -1px;
    left: auto;
}
.products-grid.wishlist .product-item button.remove span {
    line-height: 1;
}
.products-grid.wishlist .product-item button.remove span::before {
    content: "+";
    display: inline-block;
    transform: rotate(45deg);
    font-size: 20px;
    line-height: 1;
}
.products-grid.wishlist .product-item input.qty {
    margin: 0 15px 20px;
    max-width: calc(100% - 85px);
    border-radius: 0;
    text-align: center;
    font-size: 16px;
    border-color: #dcdcdc;
}
.products-grid.wishlist .product-item .product-item-actions button {
    width: 40px;
    height: 40px;
    border: 0;
    position: absolute;
    bottom: 140px;
    right: 15px;
    left: auto;
}
.products-grid.wishlist .product-item-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.products-grid.wishlist .product-item-comment {
    margin-bottom: 0;
}
.products-grid.wishlist .product-item-comment {
    border-radius: 0;
    display: block;
    border-color: #f0f0f0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    height: 120px;
    overflow: hidden;
    overflow-y: auto;
}
.products-grid.wishlist #update_all_wishlist {
    height: 50px;
    padding: 0 25px;
    border: 0;
    background: #111;
    color: white;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    transition: .3s;
    margin: 20px 0 50px;
}
.products-grid.wishlist #update_all_wishlist:hover {
    background: #CF9683;
}
@media (max-width: 1199px) {
    .products-grid.wishlist .product-items {
        margin: 0 -8px;
    }
    .products-grid.wishlist .product-item {
        margin-left: 8px;
        margin-right: 8px;
        margin-bottom: 15px;
        max-width: calc(33.33% - 16px);
    }
}
@media (max-width: 767px) {
    .products-grid.wishlist .product-item {
        max-width: calc(50% - 16px);
    }
}
@media (max-width: 479px) {
    .products-grid.wishlist .product-item {
        max-width: calc(100% - 16px);
        margin-bottom: 30px;
    }
}
