@keyframes appear-then-fade {
    0%,
    100% {
        opacity: 0;
    }
    5%,
    60% {
        opacity: 1;
    }
}

@keyframes success {
    25% {
        background-color: var(--bulma-success);
    }
}

@keyframes flash-red {
    0% {
        background-color: pink;
    }
    100% {
        background-color: initial;
    }
}

.animate-fade-in {
    animation: fade-in 0.35s ease-in-out both;
}

.animate-fade-out {
    animation: fade-out 0.15s ease-in-out both;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
