body splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1b1c1c;
    color: #f9fafb;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body splash-screen img {
    width: 350px;
    max-width: 350px;
}

body splash-screen .spinner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    width: 56px;
}

body splash-screen .spinner > div {
    width: 12px;
    height: 12px;
    background-color: #51a4b6;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1s infinite ease-in-out both;
    animation: bouncedelay 1s infinite ease-in-out both;
}

body splash-screen .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

body splash-screen .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
    }
}

@keyframes bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

body:not(.splash-screen-hidden) {
    overflow: hidden;
}

body.splash-screen-hidden splash-screen {
    visibility: hidden;
    opacity: 0;
}

body splash-screen .home-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    z-index: 9999;
}

body splash-screen .text-white {
    color: white;
}

body splash-screen .loader-logo {
    width: 350px;
    max-width: 350px;
    margin-bottom: 20px;
}

body splash-screen .progress-bar-container {
    width: 50vw;
    height: 4px;
    position: relative;
    background-color: #c6cce5;
    overflow: hidden;
}

body splash-screen .animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #233396 25%, transparent 25%, transparent 50%, #233396 50%, #233396 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    animation: stripe-animation 1s linear infinite;
    z-index: 3;
}

body splash-screen .loader-progress-bar {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
}

@keyframes stripe-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

body splash-screen progress::-webkit-progress-value {
    background-color: #233396;
}

body splash-screen progress::-moz-progress-bar {
    background-color: #233396;
}
body splash-screen progress::-webkit-progress-bar {
    background-color: #c8cce5;
}
body splash-screen progress::-moz-progress-bar {
    background-color: #c8cce5;
}
body splash-screen progress::-webkit-progress-value {
    transition: width 0.5s ease;
}
