@-webkit-keyframes app-circular-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes app-circular-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: Noto Sans, Roboto, sans-serif;
}

#root {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.app-ldr-nd.hide {
    opacity: 0;
    visibility: hidden;
}

.app-ldr-nd.hide.invisible {
    display: none;
}

.app-ldr-nd {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    background: #fff;
    opacity: 1;
    transition: all .5s ease;
    z-index: 9999999;
}

.app-ldr {
    margin: auto;
    width: 240px;
    height: 240px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-ldr > img {
    width: 180px;
}

.app-crl {
    border-radius: 50%;
    border: solid transparent;
    position: absolute;
    transform: translateZ(0);
    animation: app-circular-rotate 1.1s infinite linear;
}

.app-crl-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation-duration: 0.7s;
    border-left-color: #E40421;
    border-width: 5px;
}

.app-crl-2 {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    top: 10px;
    left: 10px;
    animation-duration: 0.9s;
    border-width: 4px;
    border-bottom-color: #E40421;
}

.app-crl-3 {
    width: calc(100% - 36px);
    height: calc(100% - 36px);
    top: 18px;
    left: 18px;
    animation-duration: 1.1s;
    border-width: 3px;
    border-right-color: #E40421;
}
