﻿/* Karen v16.2.7.3 - product wishlist heart */
.product-details__purchase-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.product-details__wishlist-fallback-wrap {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 6px;
}

.product-details__btn-favorite {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #d7d7d7;
    border-radius: 50%;
    background: #fff;
    color: #555;
    cursor: pointer;
    line-height: 1;
    vertical-align: middle;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color .16s ease, color .16s ease, background-color .16s ease, transform .16s ease, opacity .16s ease;
}

.product-details__btn-favorite:hover,
.product-details__btn-favorite:focus {
    border-color: #e21f2f;
    color: #e21f2f;
    background: #fff7f8;
    text-decoration: none;
}

.product-details__btn-favorite:focus {
    outline: 2px solid rgba(226, 31, 47, .22);
    outline-offset: 2px;
}

.product-details__btn-favorite:active {
    transform: scale(.94);
}

.product-details__btn-favorite.is-active {
    border-color: #e21f2f;
    background: #fff;
    color: #e21f2f;
}

.product-details__btn-favorite.is-loading {
    opacity: .55;
    pointer-events: none;
}

.product-details__btn-favorite .js__wishlist-icon {
    font-size: 23px;
    line-height: 1;
}

.product-details__btn-favorite.is-active .js__wishlist-icon {
    color: #e21f2f;
}

.product-details__wishlist-fallback-wrap .js__wishlist-message,
.product-details__purchase-actions + .js__wishlist-message,
.js__btn-favorite + .js__wishlist-message {
    display: none;
    width: 100%;
    margin-top: 2px;
    color: #8c1b24;
    font-size: 12px;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .product-details__btn-favorite {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }
}
