﻿.scale-in-center {
    animation: scale-in-center .5s cubic-bezier(.25,.46,.45,.94) both
}

@keyframes scale-in-center {
    0% {
        transform: scale(0.75);
        opacity: 1
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.slide-in-right {
    animation: slide-in-right .5s cubic-bezier(.25,.46,.45,.94) both
}

.fade-in {
    animation: fade-in 1.2s cubic-bezier(.39,.575,.565,1.000) both
}

@keyframes slide-in-right {
    0% {
        transform: translateX(100px);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        opacity: 1
    }
}
