.busy_screen::-webkit-scrollbar{
    width: 0;
    height: 0;
}

/****************************/
.busy_screen {
    position: absolute;
    position: fixed;
    top: 0;
    width: 100dvw;
    height: 100dvh;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 3;
    transition: background-color 1s, opacity 1s;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 0;
}
.cogs{
    width: 200px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: 20px;

    animation-name: isCogs;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-delay: 0.01s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-direction: normal;
}

@keyframes isCogs{
    0%{
        background-image: url('/assets/images/busy/loading_0.png');
    }
    25%{
        background-image: url('/assets/images/busy/loading_1.png');
    }
    50%{
        background-image: url('/assets/images/busy/loading_0.png');
    }
    75%{
        background-image: url('/assets/images/busy/loading_1.png');
    }
    100%{
        background-image: url('/assets/images/busy/loading_0.png');
    }
}