@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.flashing {
    animation: flash 3s infinite;
}

/*Use this file to add a custom css*/