#app-loader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#app-loader {
    width: 280px;
    position: relative;
    height: 80px;
}

.loader-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/visuals/site-logo.png');
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 10;
    transition: 3s ease;
}

.fill {
    background-image: none;
    background-color: lime;
    -webkit-mask-image: url('/static/visuals/site-logo.png');
    mask-image: url('/static/visuals/site-logo.png');
    -webkit-mask-size: 100%;
    mask-size: 100%;
    z-index: 0;
}

.shrink {
    height: 1%;
}

.is-hidden {
    display: none !important;
    pointer-events: none;
}