﻿
#preloader {
    background: #ffffff;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Logo */
#preloader img {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
}

/* Bar çerçevesi */
.loader-bar {
    width: 200px;
    height: 8px;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

/* Bar animasyonu */
.loader-bar-inner {
    height: 100%;
    width: 0%;
    background-color: #DA0D15;
    animation: loadBar 2s ease-in-out infinite;
}

/* Bar dolma animasyonu */
@keyframes loadBar {
    0% {
        width: 0%;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}
