
.catur.tabs.products {
    position: relative;
    overflow: hidden;
    background-color: hsl(var(--muted));
    border-radius: 0.4rem;
    height: 2.3rem;
    width: 100%;
}

.catur.tabs.products::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    height: 100%;
    width: 150%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    animation: shimmer-tabs 1.5s infinite;
    border-radius: 0.4rem;
}

@keyframes shimmer-tabs {
    0% {
        left: -150%;
    }
    
    100% {
        left: 100%;
    }
}

@media (min-width: 768px) {
    .catur.tabs.products {
        position: relative;
        overflow: hidden;
        background-color: hsl(var(--muted));
        border-radius: 0.4rem;
        height: 2.3rem;
        width: 6.2rem;
    }
}
