﻿

@keyframes fadeInAndDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInAndUp {
    from {
        opacity: 0;
        transform: translate3d(0,, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 200, 0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
.di-fadeInAndDown {
    animation: fadeInAndDown 1s ease-in both;
}

.di-fadeInAndUp {
    animation: fadeInAndUp 1s ease-in both;
}

.di-fadeIn {    
    animation: fadeIn 0.6s ease-in both;
}
.di-fadeInSlow {
    animation: fadeIn 1s ease-in both;
}
.di-fadeInQuick {
    animation: fadeIn 0.3s ease-in both;
}
.di-fadeOut {
    animation: fadeOut 1s ease-in both;
}