﻿#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ebebeb;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.splash-content img {
    width: 200px;
    margin-bottom: 20px;
}

.splash-content h2 {
    color: #333;
    margin-bottom: 20px;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.loader-bar {
    width: 150px;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

    .loader-bar::before {
        content: '';
        position: absolute;
        height: 100%;
        width: 40%;
        background-color: #00bfff;
        animation: loadingBar 1.5s infinite ease-in-out;
    }

@keyframes loadingBar {
    0% {
        left: -40%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: -40%;
    }
}
