

/*Загрузка*/
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999;
}

.preloader-custom {
    position: relative;
    width: 200px;
    height: 200px;
}

.loader-circle {
    position: absolute;
    border: 3px dotted transparent;
    border-top-color: #09141A;
    border-radius: 50%;
    animation: rotate linear infinite;
}

.circle-1 {
    width: 180px;
    height: 180px;
    left: 10px;
    top: 10px;
    animation-duration: 3s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    left: 20px;
    top: 20px;
    animation-duration: 2s;
    animation-direction: reverse;
    border-top-color: black;
}

.circle-3 {
    width: 120px;
    height: 120px;
    left: 30px;
    top: 30px;
    animation-duration: 1.5s;
    border-top-color: #2C5668;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
