@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
        
    }
    to {
        opacity: 1;
        transform: translateX(0);
        
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
        
    }
    to {
        opacity: 1;
        transform: translateX(0);
        
    }
}

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
        
    }
    to {
        opacity: 1;
        transform: translateY(0);
        
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(20px);
        
    }
    to {
        opacity: 1;
        transform: translateY(0);
        
    }
}

.hidden {
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
}

.animation-show-left.visible {
    animation: slideInLeft 0.5s forwards ease-out;
    
}

.animation-show-right.visible {
    animation: slideInRight 0.5s forwards ease-out;
        
}

.animation-show-top.visible {
    animation: slideInTop 0.5s forwards ease-out;
        
}

.animation-show-bottom.visible {
    animation: slideInBottom 0.5s forwards ease-out;
        
}

.animation-load-opacity.visible {
    animation: fadeIn 0.1s forwards ease;
        
}