.contentSourceLoading{
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    cursor: default;
}

.preLoader{
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 9999999999999;
    background-color: var(--commuters-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.preLoader .loaderStatus{
    color: var(--commuters-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin: 0;
    padding: 0;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Barlow Condensed", sans-serif;
}

.loading{
    animation: breath 1s infinite linear;
}

.loading img{
    height: 25vh;
}


.fadeOut {
    -webkit-animation: fadeOut 2s cubic-bezier(0.83, -0.25, 1, -0.31) forwards;
    -moz-animation: fadeOut 2s cubic-bezier(0.83, -0.25, 1, -0.31) forwards;
    -o-animation: fadeOut 2s cubic-bezier(0.83, -0.25, 1, -0.31) forwards;
    animation: fadeOut 2s cubic-bezier(0.83, -0.25, 1, -0.31) forwards;
}


@keyframes animatedBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 0;
    }
}

@keyframes breath {
    0% {
        animation-timing-function: cubic-bezier(0.9647,0.2413,-0.0705,0.7911);
        transform: scale(0.9099999999999999);
    }
    51% {
        animation-timing-function: cubic-bezier(0.9226,0.2631,-0.0308,0.7628);
        transform: scale(1.02994);
    }
    100% {
        transform: scale(0.9099999999999999);
    }
}

@-webkit-keyframes breath {
    0% {
        -webkit-animation-timing-function: cubic-bezier(0.9647,0.2413,-0.0705,0.7911);
        -webkit-transform: scale(0.9099999999999999);
    }
    51% {
        -webkit-animation-timing-function: cubic-bezier(0.9226,0.2631,-0.0308,0.7628);
        -webkit-transform: scale(1.02994);
    }
    100% {
        -webkit-transform: scale(0.9099999999999999);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}