/* Preloader style */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #0d0d0e;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader p {
    font-size: 2rem;
    font-weight: 900;
    color: #f072e9;
    text-shadow: 10px 10px 20px rgba(245, 241, 244, 0.5);
}

 .blinking-cursor {
    content: image-set("../img/black.png" 1.8x);
    animation: blink 1s infinite;
    margin-right: 10px;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}



/* Fade-out preloader */
.fade-out {
    opacity: 0;
    visibility: hidden;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #db34c5;
    animation: loadProgress 1.5s ease-in-out forwards;
}

@keyframes loadProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}