﻿.fadeInSlideDown {
    animation: fadeInAnimation ease-in-out 0.5s, slideDownAnimation ease-in-out 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.fadeIn {
    animation: fadeInAnimation ease-in-out 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.slideDown {
    animation: slideDownAnimation ease-in-out 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes slideDownAnimation {
    0% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}


@keyframes expandDownAnimation {
    0% {
        height: 0;
    }

    100% {
        height: 20px;
    }
}

