section#wishlist_heading {
    border-bottom: 1px solid var(--pearl-dark);
    margin-bottom: 20px;
    padding: 10px 0px;
}
.share_wishlist_header button {
    background: var(--pearl);
    border: 1px solid var(--pearl-dark);
    border-radius: 4px;
    padding: 8px 15px;
    display: inline-block;
}
.share_wishlist_header svg{
    margin-top: -2px;
}
.wishlist_graphic {
    margin: 10px 0px;
}

li.da_product_card{
    background: #fff;
}
a.card_button {
    border: 1px solid var(--jade);
    background: var(--jade);
    color: var(--pearl);
    padding: 10px 0px;
    display: inline-block;
    width: calc(100% - 30px);
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 5px;
}
a.card_button:hover{
    background: #223832;
    color: var(--tourmaline);
}

.ellipses::after {
  display: inline-block;
  animation: dotty steps(1,end) 1s infinite;
  content: '';
  position: absolute;
}


.share-wishlist-modal .modal_header{
    border-bottom: 0px;
}
.share-wishlist-modal h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.share-wishlist-modal label {
    position: relative;
    display: block;
    color: var(--onyx-light);
    margin-top: 20px;
}
.share-wishlist-modal input {
    width: 100%;
    padding-right: 85px;
    text-overflow: ellipsis;
}
.share-wishlist-modal label span {
    background: var(--jade);
    color: var(--pearl);
    padding: 7px 0px;
    width: 70px;
    display: block;
    text-align: center;
    border-radius: 4px;
    position: absolute;
    bottom: 8px;
    right: 10px;
    cursor: pointer;
}
.share-wishlist-modal p.confirmed{
    opacity: 0%;
    transition: opacity .3s linear;
    display: block;
    margin: auto;
    padding: 4px 8px;
    color: var(--pearl);
    background-color: #0f0e0dcc;
    margin-top: 10px;
    margin-bottom: 0px;
    width: fit-content;
    border-radius: 4px;
}

/*mobile only*/
@media (max-width: 991px){
    .woocommerce .product_card_container ul.products li.product {
        width: 48%;
        margin: 3px;
        display: inline-block;
    }
}

@keyframes dotty {
    0%   { content: ''; }
    25%  { content: '.'; }
    50%  { content: '..'; }
    75%  { content: '...'; }
    100% { content: ''; }
}