@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
#fullScreenModal.fadeOutAnimation {
    animation: fadeOut 0.3s forwards;
}
