﻿/*Реализация кастомного лоадера*/
.global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6); /* затемнение */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.d-none {
    display: none !important;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #f3f3f3; /* светлая обводка */
    border-top: 6px solid #3498db; /* цветной верх */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

