/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

#add-to-wishlist {
    margin-top: 30px;
}

#add-to-wishlist button {
    position: relative;
    display: flex;
    align-items: center;
    border: 0;
    background: transparent;
    color: #6f6f6e;
    cursor: pointer;
}

#add-to-wishlist button img {
    width: 30px;
    height: 25px;
    margin-right: 15px;
    object-fit: contain;
    display: flex;
}

#add-to-wishlist button a {
    display: block;
}

.wishlist-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 80%;
    margin: auto;
}

.wishlist-table tr {
    border-bottom: 1px solid #dedede;
    position: relative;
}

.wishlist-table img {
    width: 254px;
    height: 190px;
    object-fit: contain;
}

.wishlist-table td {
    vertical-align: top;
    padding-top: 20px;
    padding-bottom: 10px;
}

.wishlist-table .product-info {
    padding-top: 30px;
}

.wishlist-table .product-bottom {
    padding-top: 30px;
}

.wishlist-table .product-name a {
    color: #1d1d1b;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 18px;
    text-align: left;
    text-transform: uppercase;
}

.wishlist-table .product-status {
    color: #6f6f6e;
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
    margin-top: 33px;
}

.wishlist-table .product-add-to-cart {
    position: absolute;
    bottom: 30px;
}

.wishlist-table .product-add-to-cart a {
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 10px 20px;
    background-color: #00a490;
    border-radius: 0;
    font-size: 12px;
    border: 0;
    color: #f5f5f5;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    font-family: Nexa, sans-serif;
    cursor: pointer;
}

.wishlist-table .product-price {
    position: absolute;
    bottom: 30px;
    right: 0;
    color: #00a490;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: center;
}

.wishlist-table .product-remove {
    text-align: right;
}

.wishlist-table .product-remove button {
    border: 0;
    outline: none;
    box-shadow: none;
    background: transparent;
    cursor: pointer;
}
.wishlist-table .product-thumbnail {
    width: 300px;
}

.wishlist-table.loading {
    opacity: .7;
    pointer-events: none;
}

@media all and (max-width: 768px) {
    .wishlist-table tr {
        display: flex;
        flex-direction: column;
    }
    .wishlist-table .product-price {
        position: unset;
    }
    .wishlist-table .product-add-to-cart {
        position: unset;
    }
    .wishlist-table .product-bottom {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }
    .wishlist-table .product-status {
        padding-bottom: 30px;
    }
    .wishlist-table img {
        margin: auto;
        display: block;
    }
    .wishlist-table .product-thumbnail {
        width: unset;
    }
}



#add-to-wishlist .loader {
    width: 20px;
    height: 20px;
    border: 2px solid #00a490;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-left: 10px;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}