@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

:root {
    --primary: #000;
    --primaryWcag: #000;
    --background1: #000;
    --background2: #000;
    --highlighted: #f00;
    --ghostColor: #E4E4E4;
    --splashColorBackground: #0032A0;
    --splashColorTxt: #FFFFFF;
    --splashTxt: 'Workspaces';
    --versionText: 'Version 0.2.1';
}

html, body {
    margin: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    position: absolute;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    top: 0;
    left: 0;
}

input {
    outline: none;
    border: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: WPEFont;
    -webkit-tap-highlight-color: transparent;
    hyphens: auto;
}

#app {
    position: relative;
    height: 100%;
    width: 100%;
}

#labelInit:after {
    content: var(--splashTxt);
}

.splash {
    position: fixed;
    inset: 0;
    background: var(--splashColorBackground);
    color: var(--splashColorTxt);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins';
    transition: .2s ease-in-out;
    z-index: 99;
}

.splash .init {
    position: relative;
    font-size: 80px;
    font-weight: 900;
    line-height: 120px;
    font-family: inherit;
}

.splash .info {
    position: relative;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    font-family: inherit;
    animation: 1.2s text-pulse infinite alternate ease-in-out;
}

.splash .info:after {
    position: relative;
    height: 0;
    display: block;
    content: var(--splash-info);
    pointer-events: none;
}

.splash .logo-wrapper {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.splash .logo-wrapper .logo {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.splash .logo-wrapper .version-wrapper {
    position: relative;
    width: 100%;
    padding-top: 4px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #FFF;
    opacity: .35;
}

.splash .logo-wrapper .version-wrapper::before {
    position: relative;
    display: block;
    content: var(--versionText);
    color: #FFF;
    text-align: center;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 0.7px;
}

@keyframes text-pulse {
    0% {
        opacity: 1;
    }

    100% {
        opacity: .4;
    }
}
/*--------*/
/*Skeleton*/
/*--------*/

.skeleton-wrapper-anim {
    position: relative;
    isolation: isolate;
}

.skeleton-wrapper-anim::after {
    position: absolute;
    width: 100%;
    left: -100%;
    top: -100px;
    bottom: -100px;
    background: linear-gradient(270deg, rgba(228, 228, 228, 0.00) 0%, #F9F9F9 43.09%, #F9F9F9 52.98%, rgba(228, 228, 228, 0.00) 100%);
    animation: skeleton-loading 3.2s linear infinite;
    animation-delay: .1s;
    transform: translateX(0) rotate(-5deg);
    z-index: 99;
    pointer-events: none;
    content: '';
}

.skeleton-wrapper {
}

.skeleton-wrapper .skeleton, .skeleton-wrapper.skeleton {
    background: var(--ghostColor) !important;
    color: transparent !important;
}

.skeleton-wrapper .skeleton.skeleton-text, .skeleton-wrapper.skeleton.skeleton-text {
    border-radius: 25px;
}

.skeleton-wrapper .skeleton *, .skeleton-wrapper.skeleton * {
    opacity: 0 !important;
}


@keyframes skeleton-loading {
    0% {
        transform: translateX(0) rotate(-5deg);
    }

    93.75% {
        transform: translateX(200%) rotate(-5deg);
    }

    100% {
        transform: translateX(200%) rotate(-5deg);
    }
}

