﻿@keyframes redBlink {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.3);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.6);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.3);
    }
}

.redBlink {
    animation-name: redBlink;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes redBlinkValidation {
    from {
        background-color: #fff;
    }

    to {
        background-color: #dc3545;
    }
}

.redBlinkValidation {
    animation-name: redBlinkValidation;
    animation-duration: 1s;
    animation-iteration-count: 1;
}


.redStar {
    color: red;
}
