﻿.loader-outer[is-loading='True'] {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(0 0 0 / 30%);
    backdrop-filter: blur(2px);
    pointer-events: unset;
    cursor: wait;
    z-index: 1000;
}

.loader-outer {
    display: none;
    
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
}

.loader-outer > img {
    height: 7vh;
}