.loader-background {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.315);
    opacity: 0;
    transition: opacity 1s;
}

.loader {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s;
}

.loader-active,
.loader-background-active {
    opacity: 1;
    transition: opacity 1s;
}

.loader-els {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.loader .loader-text {
    white-space: nowrap;
    width: 500px;
    text-align: center;
    font-size: 20px;
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.loader-map {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

.loader-info {
    width: 50px;
    height: 50px;
    position: inherit;
    flex-shrink: 0;
    transition: 0;
    opacity: 1;
}

.loader .loader-els .loader-el {
    width: 20%;
    height: 20%;
    border-radius: 50%;
    background-color: #6FB1F6;
    box-shadow: 0 0 3pt 1pt #ffffff;
    animation: pop 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

.loader .loader-els .loader-el:nth-child(1) {
    animation-delay: 0.05s;
}

.loader .loader-els .loader-el:nth-child(2) {
    animation-delay: 0.1s;
}

.loader .loader-els .loader-el:nth-child(3) {
    animation-delay: 0.15s;
}

.loader .loader-els .loader-el:nth-child(4) {
    animation-delay: 0.2s;
}

@keyframes pop {
    0% {
        transform: scale(0.7);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.7);
    }
}