.lds-ellipsis,
.lds-ellipsis div {
    box-sizing: border-box;
}
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 20px;
}
.lds-ellipsis div {
    position: absolute;
    width: 13.33333px;
    height: 13.33333px;
    border-radius: 50%;
    background: #636363;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s linear infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s linear infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s linear infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s linear infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

.loadingScreen {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #333;
    font-family: Arial, sans-serif;

    & .new__bg {
        position: absolute;
        top: 50%;
        translate: 0 -50%;
        height: 100%;
        width: 100%;
        min-height: 500px;
        display: flex;
        justify-content: center;
        z-index: 12;
    }
    & .hello__div {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: 0 auto;
        text-align: center;
        width: 70%;
        max-width: 600px;
    }
    & .hello__svg {
        fill: none;
        stroke: #ffffff;
        stroke-linecap: round;
        stroke-miterlimit: 10;
        stroke-width: 48px;
        stroke-dasharray: 5800px;
        stroke-dashoffset: 5800px;
        animation: anim__hello linear 5s forwards;
        width: 100%;

        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: 0 auto;
        text-align: center;
    }
}
.loadingScreen .webName {
    color: #fff;
    font-size: 34px;
    font-family: "Kanit", sans-serif;
    font-weight: bold;
}
.loadingScreen .version {
    color: #464646;
    font-size: 11px;
    margin-bottom: 10px;
    font-weight: bold;
    opacity: 0;
}
.loadingScreen .loadingLogo {
    opacity: 0;
    transform-origin: top;
}
