.loading-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    flex-direction: column;
    user-select: none;
}

.loading-circle {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 2px solid transparent;
    border-left-color: #ababab;
    animation: circleanimation .45s linear infinite
}

.loading-text {
    margin-top: 15px;
    color: #808080;
    font-size: 12px;
    text-align: center;
}

@keyframes circleanimation {
    from {
        transform: rotateZ(0deg);
    }
    to {
        transform: rotateZ(360deg);
    }
}

.v-spinner .v-dot {

}

.v-spinner .v-dot1 {

    -webkit-animation: v-dotRotate 2s 0s infinite linear;
    animation: v-dotRotate 2s 0s infinite linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.v-spinner .v-dot2 {

    -webkit-animation: v-dotBounce 2s 0s infinite linear;
    animation: v-dotBounce 2s 0s infinite linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    position: absolute;
    top: 0;
    bottom: auto;
}

.v-spinner .v-dot3 {
    -webkit-animation: v-dotBounce 2s -1s infinite linear;
    animation: v-dotBounce 2s -1s infinite linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    position: absolute;
    top: auto;
    bottom: 0;
}

@-webkit-keyframes v-dotRotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes v-dotRotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes v-dotBounce {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

@keyframes v-dotBounce {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}
