.logo-placeholder-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    width: 100%;
}

.logo-placeholder {
    margin-bottom: 50px;
    background: url(../assets/assets/sequences/splash/001.png) no-repeat center;
    background-size: contain;
}

.progress-bar {
    position: absolute;
    top: 70vh;
    left: calc(50% - 75px);
    height: 3px;
    background-color: #ffffff33;
    width: 150px;
    overflow: hidden;
    transition: opacity 0.5s;
}

.progress-bar-value {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    animation: indeterminateAnimation 1.2s infinite linear;
    transform-origin: 0% 50%;
}

@keyframes indeterminateAnimation {
    0% {
        transform: translateX(0) scaleX(0);
    }
    20% {
        transform: translateX(0) scaleX(0.4);
    }
    70% {
        transform: translateX(100%) scaleX(0.6);
    }
    100% {
        transform: translateX(100%) scaleX(0.6);
    }
}