﻿.vendloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with 50% opacity */
    z-index: 9999; /* Ensure it sits on top of other content */
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: visible; /* Default: visible */
}

@keyframes vendloader {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}