
.loader-overlay {
    background-color: color-mix(in srgb, var(--blue-950) 70%, transparent);
    height: var(--viewport-height, 100vh);
    height: var(--viewport-height, 100dvh);
    width: 100%;
    display: grid;
    place-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1800;
}

.loader-overlay.fill {
    background-color: white;
}

.loader-icon {
    height: 6rem;
    /* width: 6rem;*/
    width: 100%;
  	align-content: center;
  	text-align: center;
}

.loader-icon polygon {
    fill: #f1f7fc;
}

.fill .loader-icon polygon {
    fill: #3276d4;
}

@keyframes loader-animation {
    0% {
        opacity: 100%;
    }

    50% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}

#p6 {
    animation: loader-animation 3s ease infinite;
}

#p5 {
    animation: loader-animation 3s ease infinite 0.5s;
}

#p4 {
    animation: loader-animation 3s ease infinite 1s;
}

#p3 {
    animation: loader-animation 3s ease infinite 1.5s;
}

#p2 {
    animation: loader-animation 3s ease infinite 2s;
}

#p1 {
    animation: loader-animation 3s ease infinite 2.5s;
}