﻿
#app .loadingUtama {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    user-select: none;
}
#app .loadingUtama .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 350px;
    text-align: center;
}
#app .loadingUtama img {
    width: 55px;
    height: 55px;
    margin-bottom: 2rem;
}
#app .loadingUtama p:nth-of-type(1) {
    color: #555;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
}
#app .loadingUtama p:nth-of-type(2) {
    color: grey;
    font-size: .85rem;
    margin-bottom: 0;
}

#app .loadingUtama .movingDot {
    position: relative;
    width: 220px;
    min-height: 15px;
    border-radius: 1rem;
    margin-bottom: 1rem;
}
#app .loadingUtama .movingDot:before,
#app .loadingUtama .movingDot:after {
    content: '';
    position: absolute;
    left: 2px;
    border-radius: 50%;
    animation: kananKirii 1.8s ease-in-out infinite;
}
#app .loadingUtama .movingDot:before {
    top: 2px;
    bottom: 2px;
    width: 13px;
    height: 13px;
    background-color: #4caf50d4;
}
#app .loadingUtama .movingDot:after {
    top: 3px;
    bottom: 3px;
    width: 11px;
    height: 11px;
    background-color: #4caf508f;
    animation-delay: .1s
}
@keyframes kananKirii {
    0% {
        left: 2px;
    }
    50% {
        left: 206px;
    }
}
#app .loadingUtama .nama-asset {
    color: var(--primer);
    font-size: .7rem;
    margin-top: 1.3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}