/* ============= Loading Screen Stuff Start ============= */
.loader__logo {
    display: inline-block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 30px;
    z-index: 10000;
}

#status {
    width: 300px;
    height: 300px;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    -o-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -150px 0 0 -150px;
    text-align: center;
}

.radar {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    width: 300px;
    height: 300px;
}

.radar__ring {
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: pulse 8s ease-out infinite;
}


.radar__ring--2 {
    animation-delay: 2000ms;
}

.radar__ring--3 {
    animation-delay: 4000ms;
}

.radar__ring--4 {
    animation-delay: 6000ms;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 2px rgba(3, 169, 244, 1);
        transform: scale(0);
        opacity: 0;
    }

    25% {
        box-shadow: 0 0 0 2px rgba(3, 169, 244, 0.66);
        opacity: 1;
    }

    50% {
        box-shadow: 0 0 0 2px rgba(3, 169, 244, 0.33);
    }

    100% {
        box-shadow: 0 0 0 2px rgba(3, 169, 244, 0);
        transform: scale(1);
    }
}

/* ============= Loading Screen Stuff End ============= */
#loadingScreen {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: #fff;
    display: none;
}

div#loadingScreen > h5 {
    margin-top: 50%;
}