body,
html {
    height: 100vh;
    overflow: hidden;
    margin: 0;
    font-family: Roboto, "Helvetica Neue", sans-serif;
}

.full-loading-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.column {
    display: flex;
    flex-direction: column;
}

.img-div {
    display: flex;
    justify-content: center;
}

.loading-img {
    /* content: url('./assets/images/128x128.png'); */
    animation-name: image_animation;
    transform: scale(0.7);
    animation-iteration-count: infinite;
    animation-duration: 6.5s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
}

.loading-main {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(93, 106, 117, 0.5);
    z-index: 999;
    justify-content: center;
    align-content: center;
    align-items: center;
    display: flex;
}

.loading-card {
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0px 2px 1px -1px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);
    display: flex;
    flex-direction: column;
}

.loading-dots {
    align-self: center;
}

.loading-dots:after {
    content: '.';
    animation: dots 1s steps(5, end) infinite;
}

@keyframes dots {
    0%,
    20% {
        color: rgba(0, 0, 0, 0);
        text-shadow: .25em 0 0 rgba(0, 0, 0, 0), .5em 0 0 rgba(0, 0, 0, 0);
    }
    40% {
        color: black;
        text-shadow: .25em 0 0 rgba(0, 0, 0, 0), .5em 0 0 rgba(0, 0, 0, 0);
    }
    60% {
        text-shadow: .25em 0 0 black, .5em 0 0 rgba(0, 0, 0, 0);
    }
    80%,
    100% {
        text-shadow: .25em 0 0 black, .5em 0 0 black;
    }
}

@keyframes image_animation {
    0% {
        transform: scale(0.7);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(0.7);
    }
}

.svg {
    width: 100px;
    height: 100px;
}

.app-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.square {
    position: relative;
    animation-name: square;
    animation-duration: 4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
}

.cirkel {
    position: relative;
    animation-name: cirkel;
    animation-duration: 4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
    z-index: 1;
}

.triangle {
    position: relative;
    animation-name: triangle;
    animation-duration: 4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    opacity: 0;
}

.text {
    position: relative;
    animation-name: text;
    animation-duration: 4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    width: 100px;
    color: #5D6A75;
    font-size: 70px;
    font-weight: 700;
    opacity: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 0px;
}

@keyframes cirkel {
    0% {
        transform: scale(2) translate(-200px, -150px);
    }
    100% {
        opacity: 1;
        transform: translate(-50px, 30px);
    }
}

@keyframes square {
    0% {
        transform: scale(2) translate(150px, -100px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, 80px);
    }
}

@keyframes triangle {
    0% {
        transform: scale(2) translate(-200px, 50px);
    }
    100% {
        opacity: 1;
        transform: translate(-50px, -20px);
    }
}

@keyframes text {
    0% {
        transform: scale(2) translate(150px, 10px);
    }
    100% {
        opacity: 1;
        transform: translate(50px, -145px);
    }
}