
body.page-loading{
    overflow: hidden;
}
.page-loader{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 99999;
    background-color: black;
    background-image: url(/public/img/bg_1.svg), url(/public/img/bg_2.svg), url(/public/img/bg_3.svg);
    background-repeat: repeat;
}
.page-loader > div{
    width: 1090px;
    height: 40px;
    background: var(--gray-bg-gradient);
    box-shadow: -1px -1px 1px 1px rgba(209, 209, 209, 0.3), 1px 1px 1px 1px rgba(188, 188, 188, 0.05), 0px 0px 16px 4px rgba(255, 255, 255, 0.32);
    border-radius: 8px;

    position: relative;

    box-sizing: border-box;
    padding: 14px;
}
.page-loader > div::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 2px;
    background: black;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.page-loader > div > div{
    margin-right: auto;
    height: 12px;
    border-radius: 2px;
    background: #2C98F7;
    box-sizing: border-box;
    border-top: 2px solid rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
    transition: all 0.15s ease-in-out;
}
.page-loader span{
    font-size: 50px;
    font-family: "spaceranger";
}
@media screen and (max-width: 1320px) {
    .page-loader > div{
        width: 720px;
    }
}
@media screen and (max-width: 720px) {
    .page-loader > div{
        width: calc(100% - 40px);
    }
    .page-loader span{
        font-size: 40px;
    }
}