/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 12 2026 | 03:37:19 */
label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sabor-especial-label {
    margin-left: auto;
    font-weight: bold;
    color: #ffd400;
    font-size: 12px;
    text-transform: uppercase;
    animation: blinkSpecial 1.2s infinite;
	white-space: nowrap;
	filter: drop-shadow(0 0 6px rgba(255, 212, 0, 0.35));
}

@keyframes blinkSpecial {
    0% {
        opacity: 1;
        text-shadow:
            0 0 6px rgba(255, 212, 0, 0.45),
            0 0 14px rgba(255, 212, 0, 0.35),
            0 0 26px rgba(255, 212, 0, 0.25),
            0 0 40px rgba(255, 212, 0, 0.18);
        filter: drop-shadow(0 0 6px rgba(255, 212, 0, 0.35));
    }

    50% {
        opacity: 0.35;
        text-shadow:
            0 0 4px rgba(255, 212, 0, 0.25),
            0 0 10px rgba(255, 212, 0, 0.18),
            0 0 18px rgba(255, 212, 0, 0.12);
        filter: drop-shadow(0 0 2px rgba(255, 212, 0, 0.2));
    }

    100% {
        opacity: 1;
        text-shadow:
            0 0 6px rgba(255, 212, 0, 0.45),
            0 0 14px rgba(255, 212, 0, 0.35),
            0 0 26px rgba(255, 212, 0, 0.25),
            0 0 40px rgba(255, 212, 0, 0.18);
        filter: drop-shadow(0 0 6px rgba(255, 212, 0, 0.35));
    }
}
