.wishlist-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    margin: 0 10px;
}
.wishlist-heading{
    padding: 15px;
    background-color: #f7f8fa;
    margin-bottom: 15px;
    height: 100px;
    display: block;
    text-align: center;
}
.wishlist-heading h1{
    font-size: 24px;
    padding: 20px 0;
}
.wishlist-container .wishlist-list{
    max-width: 150px;
    margin: 5px;
    margin-bottom: 10px;
    position: relative;  
}

.wishlist-container .wishlist-desc a{
    color: #999;
    position: relative;
    line-height: 14px;
    font-size: 12px;
    padding-right: 10px;
    height: 30px;
    white-space: normal;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    text-decoration: none;
}

.wishlist-container .wishlist-desc a:hover{
    white-space: normal;
    overflow: visible;
}

.wishlist-container .wishlist-remove{
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(255,255,255,0.9);
    width: 25px;
    height: 25px;
    font-size: 16px;
    color:#666;
    text-align: center;
    border-radius: 50%;
    line-height: 26px;
    cursor: pointer;
    -webkit-box-shadow: 0 5px 5px 0 rgb(0 0 0 / 10%);
    box-shadow: 0px 5px 5px 0 rgb(0 0 0 / 10%);
}

.wishlist-container .wishlist-image img{
    width: 100%;
    height: auto;
    background-color: #f7f7f7;
}
.wishlist-container .wishlist-image img:hover{
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}


