﻿.wish-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 12px;
    color: #fff;
    line-height: 32px;
}

.wish-list i {
    font-size: 18px;
    vertical-align: middle;
}

.w-l-holder {
    display: none;
    border-radius: 3px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    width: 380px;
    margin: 20px 0;
    position: absolute;
    z-index: 7000;
    right: -10px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(221, 221, 221, 1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(221, 221, 221, 1);
    box-shadow: 0px 0px 5px 0px rgba(221, 221, 221, 1);
}

.w-l-d {
    position: relative;
}

.w-l-d .w-l-d-header {
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 15px
}

.w-l-d .w-l-d-header .w-l-d-total {
    float: right
}

.w-l-d .w-l-d-items {
    padding: 20px 0 0 0;
    margin: 0;
    list-style: none
}

.w-l-d .w-l-d-items li {
    margin-bottom: 18px;
    list-style: none
}

.w-l-d .w-l-d-items img {
    float: left;
    margin-right: 12px;
    max-width: 48px
}

.w-l-d .w-l-d-items .item-name {
    display: block;
    padding-top: 5px;
    font-size: 14px
}

.w-l-d .w-l-d-items .item-detail {
    color: #222;
    margin-right: 8px
}

.w-l-d .w-l-d-items .remove {
    float: right;
    font-size: 12px;
    color: #ae0f0f;
    cursor: pointer
}

.w-l-d:after,
.w-l-d:before {
    top: -41px;
    left: 95%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.w-l-d:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 10px;
    margin-left: -10px;
    top: -39px;
}

.w-l-d:before {
    border-color: rgba(221, 221, 221, 0);
    border-bottom-color: #ddd;
    border-width: 11px;
    margin-left: -11px;
}

.wish-list .wish-list-icon {
    -webkit-mask: url(icon/Heart.svg) no-repeat 100% 100%;
    mask: url(icon/Heart.svg) no-repeat 100% 100%;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: #fff;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.w-l-holder .wish-list-recyclebin {
    -webkit-mask: url(icon/RecycleBin.svg) no-repeat 100% 100%;
    mask: url(icon/RecycleBin.svg) no-repeat 100% 100%;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: #f00;
    display: inline-block;
    width: 18px;
    height: 18px;
}

.ecommerceWishList {
    svg {
        fill: #fff;
    }
}