:root {
    --nb-loader-bg: #ffffffCC;
    --nb-loader-img-max-width: 100px;
}

.nb-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: var(--nb-loader-bg);
    z-index: 99;
}

.nb-loader .nb-img {
    max-width: var(--nb-loader-img-max-width);
}

.nb-loader.nb-loader-product-listing .nb-img {
    position: relative;
    top: 100px;
}

.nb-loader.nb-loader-mini-cart{
    display: flex;
    justify-content: center;
    align-items: center;
}
.nb-loader.nb-loader-mini-cart .nb-img{
    position: relative;
    top: -10%;
}

.nb-loader.nb-loader-cart{
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
