.preloader {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: "proxima-nova-soft", sans-serif;
    -webkit-user-select: none;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #000;
    top: 0;
    left: 0;
}

.preloader .vertical-centered-box {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}

.preloader .vertical-centered-box:after {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.preloader .vertical-centered-box .content {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
}



.preloader {
    background: linear-gradient(45deg, #0F1425 2%, #10321f 100%);
}

.scan-frame {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 146, 63, 0.3);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0, 146, 63, 0.05);
}

.scan-frame::before,
.scan-frame::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #00923F;
    opacity: 0.8;
}

.scan-frame::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 14px;
}

.scan-frame::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 14px;
}

.preloader-logo {
    display: block;
    width: 52px;
    height: auto;
    position: relative;
    z-index: 1;
}

.scan-line {
    position: absolute;
    left: 4%;
    width: 92%;
    height: 3px;
    border-radius: 2px;
    background: #00923F;
    box-shadow: 0 0 10px 2px rgba(0, 146, 63, 0.9), 0 0 22px 6px rgba(0, 146, 63, 0.5);
    animation: scan-move 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scan-move {
    0% {
        top: 6%;
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    88% {
        opacity: 1;
    }
    100% {
        top: 94%;
        opacity: 0;
    }
}

.floating-docs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.doc-item {
    position: absolute;
    color: #00923F;
    opacity: 0;
    animation-name: doc-float;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.doc-1 { left: 12%; top: 78%; font-size: 26px; animation-duration: 4s; animation-delay: 0s; }
.doc-2 { left: 22%; top: 30%; font-size: 20px; animation-duration: 4.6s; animation-delay: 0.5s; }
.doc-3 { left: 82%; top: 70%; font-size: 22px; animation-duration: 4.2s; animation-delay: 0.2s; }
.doc-4 { left: 78%; top: 22%; font-size: 30px; animation-duration: 5s; animation-delay: 0.8s; }
.doc-5 { left: 8%; top: 15%; font-size: 18px; animation-duration: 3.8s; animation-delay: 1s; }
.doc-6 { left: 88%; top: 45%; font-size: 24px; animation-duration: 4.8s; animation-delay: 0.35s; }
.doc-7 { left: 45%; top: 85%; font-size: 18px; animation-duration: 4.1s; animation-delay: 0.9s; }
.doc-8 { left: 55%; top: 10%; font-size: 22px; animation-duration: 4.4s; animation-delay: 0.1s; }

@keyframes doc-float {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    18% {
        opacity: 0.45;
    }
    50% {
        opacity: 0.65;
    }
    85% {
        opacity: 0.45;
    }
    100% {
        transform: translateY(-60px);
        opacity: 0;
    }
}

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

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

@keyframes fade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}