body.loading-active {
    overflow: hidden;
}

.loading-screen {
    position: fixed;
    inset: 0;
    margin: 0;
    background-color: rgb(86, 86, 86);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    color: #b2ebb2;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 34px;
    z-index: 9999;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.loading-screen.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-screen .loading{
    width: 80%;
    max-width: 80%;
    text-align: left;
    margin-bottom: 8px;
}

.loading-screen .dots{
    display: inline-block;
    width: 1.6em;
}

.loading-screen .border{
    max-width: 80%;
    width: 80%;
    height: 60px;
    border: 2px dashed #b2ebb2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 5px;
    box-sizing: border-box;
    overflow: hidden;
}

.loading-screen .loadingBar{
    display: block;
    width: 100%;
    height: 100%;
    background-color: #b2ebb2;
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}