/* Module Custom Styles */


/* Shimmer animation */
@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

.shimmer {
    animation: shimmer 2s infinite linear;
    background: linear-gradient( to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33% );
    background-size: 200% 100%;
}

.skeleton-line {
    height: 20px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.fullscreen-loader {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}
