﻿.fh-spinner-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.fh-spinner {
    border: 5px solid #e3eafd;
    border-top: 5px solid #376EB5;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    animation: fh-spin 1.1s linear infinite;
}

@keyframes fh-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
