<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* LOADER */

#loader {
    z-index: 10000;
    display: flex;
    position: fixed;
    background-color: black;
    top: 0;
    left: 0;
    min-height: 100%;
    width: 100%;
    min-height: 100vh!important;
    align-items: center!important;
}

.lds-load {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin-right: auto;
    margin-left: auto;
}

.lds-load div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: white;
    -webkit-animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-load div:nth-child(1) {
    left: 8px;
    -webkit-animation-delay: -0.24s;
    animation-delay: -0.24s;
}

.lds-load div:nth-child(2) {
    left: 32px;
    -webkit-animation-delay: -0.12s;
    animation-delay: -0.12s;
}

.lds-load div:nth-child(3) {
    left: 56px;
    -webkit-animation-delay: 0;
    animation-delay: 0;
}

@-webkit-keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px;
    }
    50%,
    100% {
        top: 24px;
        height: 32px;
    }
}

@keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px;
    }
    50%,
    100% {
        top: 24px;
        height: 32px;
    }
}</pre></body></html>