/*
.wishlist__items{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.wishlist__items .product-miniature{
    margin: 0 .8125rem;
}
.header-wishlist {
    display: flex;
    margin: auto 14px;
    position: relative;
}
.show_auth_popup{
    margin: auto;
}
.wishlist-iconHolder i{
    top:2px;
}
.wishlist-header-counter {
    position: absolute;
    top: 11px;
    right: 3px
}
.wishlist-header-counter{
    position: absolute;
    top: 0px;
    right: 2px;
}
.wishlist-counter__wrapper {
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50px;
    display: flex
}

.wishlist-counter__amount {
    margin: auto;
    font-size: 8px
}
.product-like{
    position:absolute;
    top: 10px;
    right: 30px;
}
.product-like:hover {
    cursor:pointer;
    
}
.js-to-favorite .pm-heart {
    opacity: 1;
    color: #000;
    position:absolute;
}

.js-to-favorite .pm-heart_on {
    -webkit-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    color: #ff560f;
    opacity: 0;
    position:absolute;
}

.js-to-favorite.active .pm-heart_on {
    opacity: 1
}
.js-to-favorite.active .pm-heart {
    opacity: 0;
    transform: scale(1.5);
}
.wishlist-wrapper{
    position: relative;
    display:flex;
}
.wishlist-counter {
    margin: auto;
    color: #676767;
    font-size: 10px;
    right: -15px;
    bottom: -21px;
    position: absolute;
}   
.js-to-favorite.active .wishlist-counter {
    color: #fff;
}
.product-like-btn{
    padding: .5rem 1.25rem;
}    
.btn-like-wrapper{
    position:relative;
}
*/