﻿.loading-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--rz-white);
    z-index: 9999;
}

.loading-container img {
    width: 100px;
    height: auto;
    /* additional styles */
}

.loading-cegeka-spinner {
    background-image: url('../images/loading.gif');
    background-size: contain; /* Ensure the gif is fully visible */
    background-repeat: repeat; /* Prevent the gif from repeating */
    width: 100px; /* Set a width for the spinner */
    height: 100px; /* Set a height for the spinner */
}

.loading-spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--rz-primary);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}