*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mainShimmer{
    /* display: none; */
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: 999;
}

.shimmerStyle{
    background-size: 400%;
    background-image: linear-gradient(120deg, #f2f2f2 0%, #f2f2f2 30%, #d9d9d9 45%, #d9d9d9 50%, #f2f2f2 60%, #f2f2f2 100%);
    animation: shimmer 1s linear infinite;
}

@keyframes shimmer {
    0%{
        background-position: 100%;
    }
    100%{
        background-position: 0%;
    }
}

.shimmerbannerImg{
    height: 200px;
}

.shimmertab{
    width: 30%;
}

.shimmeritemCard{
    width: 320px;
}

.shimmercardImg{
    width: 100px;
    height: 100px;
}