﻿/*#fast-preloader {
    position: fixed;
    inset: 0;
    background: #14346c;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .4s ease, visibility .4s ease;
}

    #fast-preloader.hide {
        opacity: 0;
        visibility: hidden;
    }

    #fast-preloader .loader {
        width: 90px;
        height: 90px;
        border: 6px solid rgba(255,255,255,.3);
        border-top-color: #fff;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        position: relative;
    }

    #fast-preloader .percent {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 600;
        font-size: 14px;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
*/