body .btn-wishlist {
    width: 16px;
    height: 16px !important;
    background: transparent url(../icon/empty-bookmark.svg) no-repeat center;
    background-size: contain;
    text-indent: -999em;
    padding: 0rem;
    font-size: 15px;
    text-align: center;
    margin-bottom: 0;
    border: none;
    text-transform: uppercase;
    font-weight: bolder;
    line-height: 0.8rem;
    z-index: 3;
    transition: transform 0.2s ease;
    cursor: pointer;
        box-shadow: none;
}

body button.btn-wishlist:hover {
    background: transparent url(../icon/full-bookmark.svg) no-repeat center;
    transform: scale(1.1);
        box-shadow: none;
}

body .btn-wishlist.active {
    background: transparent url(../icon/full-bookmark.svg) no-repeat center;
        box-shadow: none;
}



.modal-login-required {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow: hidden;

}

.modal-login-required.active {
    display: flex;
    justify-content: center;
}

.modal-login-required_content {
    margin-top: 180px;
    padding: 20px;
    border-radius: 8px;
    z-index: 1001;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    height: 160px;
}

.modal-login-required_content .close-require {
    position: absolute;
    top: 0px;
    right: -20px;
    line-height: 0px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 1002;
}

.modal-login {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    width: 325px;
    border-radius: 5px;
    position: relative;
}


.modal-title {
    background-color: #c6b7d9;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
    padding: 10px;
    height: 20%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.modal-login>p {
    padding: 10px;
    font-size: 15px;
}

body .wishlist-item .wp-post-image:hover {
    opacity: 1;
}