.wallet {
    --bg-color: var(--2);
    --bg-color-light: var(--4);
    --text-color-hover: #fff;
    --box-shadow-color: rgba(206, 178, 252, 0.48);

}

.card-heart.disabled{
    opacity: 0!important;
    transform: scale(0.8) translateX(100px);


}
.card-heart {
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, rgba(176, 197, 255, 0.05), rgba(253, 189, 90, 0.2));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 14px 26px rgba(241, 0, 0, 0.04);
    transition: all 0.2s ease-in, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
    border: 4px solid #fff !important;
    transform: scale(1) translateX(100px);
    opacity: 0;


}
.card-heart.visible {
    transform: translateX(0);
    opacity: 1;


}

.card-heart:hover {
    border: 4px solid #fff !important;
    transform: translateY(-5px) scale(1.005) ;
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11),
    0 24px 46px var(--box-shadow-color);
    cursor: pointer;
    background: rgba(4, 61, 165, 0.62) url("../images/neon-background.svg") no-repeat bottom left;
    background-size: 35%;
    transition: all 0.5s ease-in-out;



}

.card-heart:hover .circle {
    border-color: var(--bg-color-light);
    background: #fff;
    color: #000!important;

}

.card-heart:hover .circle:after {
    background: var(--bg-color-light);
}

.card-heart:hover p {
    color: var(--text-color-hover);

}

.card-heart p {
    font-size: 17px;
    color: #4c5656;
    margin-top: 30px;
    transition: color 0.3s ease-out;
}

.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease-out;
}

.circle:after {
    content: "";
    width: 90px;
    height: 90px;
    display: block;
    position: absolute;
    background: var(--bg-color);
    border-radius: 50%;
    top: 7px;
    left: 7px;
    transition: opacity 0.3s ease-out;

}

.circle i {
    transform: translateZ(20px);
    color: #000;
    z-index: 2;
}


.card-heart-project{
    border: 5px solid #fff !important;
    transform: translateY(-5px) scale(1.005) translateZ(0);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11),
    0 24px 46px var(--box-shadow-color);
    cursor: pointer;
    background: var(--bg-color) url("../images/neon-background.svg") no-repeat bottom left;
    background-size: 35%;
    transition: color 0.5s ease-in-out;
    color: #fff;

}

.card-heart-project:hover{
    border: 5px solid var(--2) !important;
    width: 100%;
    height: auto;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 14px 26px rgba(241, 0, 0, 0.04);
    transition: all 0.3s ease-out;
    text-decoration: none;
    transform: translateY(-5px) scale(1.08) translateZ(0);


}

.card-heart-project:hover p {
    color: #4c5656;

}

.card-heart-project p {
    font-size: 17px;
    color: #e6ffff;
    margin-top: 30px;
    transition: color 0.3s ease-out;
}

.card-heart-project:hover .circle:after {
    background: var(--2);

}

