.text-shadow-none {
    text-shadow: none !important;
}
.text-shadow {
    text-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.text-shadow-sm {
    text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.text-shadow-lg {
    text-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.text-shadow-inset {
    text-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075) !important;
}

label.is-invalid {
    font-size: 0.75rem;
    position: absolute;
    padding-inline-start: 0.5rem;
    color: var(--bs-danger);
}

.blink {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
} 
