﻿.newLoader {
    background-color: #4285F4;
    overflow: hidden;
    min-height: 100%;
    top: 0;
    z-index: 99999999999;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-items: center;
}

    .newLoader svg.plane {
        background-color: #4285F4;
        visibility: visible;
        height: auto;
        width: 100%;
        max-width: 180px;
    }

    .newLoader svg.rotate {
        animation: rotate 2s linear infinite;
        transform-box: fill-box;
        transform-origin: center;
    }

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.loader-logo-container {
    overflow: hidden;
    min-height: 100%;
    top: 0;
    z-index: 9999999999999;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-items: center;
}

.loader-logo {
    visibility: visible;
    width: 100%;
    max-width: 100px;
    height: auto;
}
