@charset "UTF-8";


body.is-birthday .profile-top-card {
    border-color: rgba(255, 143, 192, .34);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .30),
    0 0 0 1px rgba(255, 143, 192, .10),
    0 0 46px rgba(255, 143, 192, .13);
}


body.is-birthday .profile-top-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(120% 70% at 20% -10%, rgba(255, 143, 192, .14), transparent 60%),
    radial-gradient(100% 60% at 85% -5%, rgba(255, 215, 106, .11), transparent 62%);
}


body.is-birthday .profile-top-card__left {
    position: relative;
}

body.is-birthday .profile-top-card__left::after {
    content: "\f79f";
    position: absolute;
    top: -10px;
    right: -8px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8fc0, #ffd76a);
    color: #2a0f1c;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(255, 143, 192, .40);
    animation: sfpdHatWobble 3.2s ease-in-out infinite;
}

@keyframes sfpdHatWobble {
    0%, 100% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(8deg);
    }
}


.bday-banner {
    position: relative;
    overflow: hidden;
    border-color: rgba(255, 143, 192, .34);
    background: linear-gradient(135deg,
    rgba(255, 143, 192, .16), rgba(255, 215, 106, .09) 60%, transparent);
}


.bday-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(100deg, transparent,
    rgba(255, 255, 255, .13), transparent);
    animation: sfpdBdayShine 4.5s ease-in-out infinite;
}

@keyframes sfpdBdayShine {
    0% {
        left: -60%;
    }
    55%, 100% {
        left: 130%;
    }
}

.bday-banner__icon {
    background: linear-gradient(135deg, rgba(255, 143, 192, .28), rgba(255, 215, 106, .20));
    color: #ffb7d5;
}


@media (prefers-reduced-motion: reduce) {
    body.is-birthday .profile-top-card__left::after,
    .bday-banner::after {
        animation: none;
    }

}
