.load-screen-container {
    position: relative;
}

.load-screen-container .loader__block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

.load-screen-container .loader__block .bubbles {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.load-screen-container .loader__block .bubble {
    padding: 0 30px;
}

.load-screen-container .loader__block .bubble .circle {
    width: 30px;
    height: 30px;
}

.load-screen-container .bubble {
    display: inline-block;
    padding: 0 5px; }
.load-screen-container .bubble:nth-of-type(1) .circle {
    animation-delay: 0.2s; }
.load-screen-container .bubble:nth-of-type(2) .circle {
    animation-delay: 0.4s; }
.load-screen-container .bubble:nth-of-type(3) .circle {
    animation-delay: 0.6s; }
.load-screen-container .bubble:nth-of-type(4) .circle {
    animation-delay: 0.8s; }

.load-screen-container .bubble .circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ed4457;
    animation: pulse 1.5s infinite; }

@keyframes pulse {
    0% {
        transform: scale(1); }
    50% {
        transform: scale(1.9); }
    100% {
        transform: scale(1); } }