#txtF774, #fCode {
    color: #029cf2;
}

/* --- Стили Прелоадера --- */
#minimal-preloader-2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.rotating-dots-preloader {
    display: flex;
    gap: 8px;
}

.dot-preloader {
    width: 24px;
    height: 6px;
    border-radius: 3px;
    animation: bounce-preloader 1.4s infinite ease-in-out both;
    transform: rotate(45deg);
    transform-origin: center;
}

/* Цвета точек */
.dot-preloader:nth-child(1) {
    background-color: #92E439;
    animation-delay: -0.42s;
}
.dot-preloader:nth-child(2) {
    background-color: #3EA4FF;
    animation-delay: -0.28s;
}
.dot-preloader:nth-child(3) {
    background-color: #FF7A68;
    animation-delay: -0.14s;
}
.dot-preloader:nth-child(4) {
    background-color: #FFFC76;
    animation-delay: 0s;
}

@keyframes bounce-preloader {
    0%, 80%, 100% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    40% {
        width: 24px;
        height: 6px;
        opacity: 1;
    }
}
/* --- Конец Стилей Прелоадера --- */



