.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 18, 30, 0.52);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2000;
    transition: opacity 180ms ease;
}

.loader-container::before {
    content: none;
}

.loader-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader {
    position: relative;
    width: 62px;
    height: 62px;
    margin: auto;
    display: grid;
    place-items: center;
}

.loader-spinner {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--bs-primary);
    box-shadow: 0 0 12px rgba(83, 129, 255, 0.18);
    animation: loader-spin 0.9s linear infinite;
}

@keyframes loader-spin {
    to {
        transform: rotate(360deg);
    }
}