body {
    overflow: hidden;
}

#root {
    height: 100vh;
}

.splash {
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, #F5F5FD 0%, #FFFFFF 69.79%);
    z-index: 999;
    transition: all 1s ease-in-out;
    visibility: visible;
    opacity: 1;
}

body#app.loaded  {
    overflow-y: auto;
}

body#app.loaded.p-overflow-hidden {
    overflow: hidden;
}

#app.loaded .splash {
    visibility: hidden;
    opacity: 0;
}

.splash-brand {
    box-shadow: 2px 2px 130px #3d84ce8c;
    border-radius: 8px;
    width: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.splash-brand img {
    width: 80px;
}

.app-version {
    position: absolute;
    bottom: 20px;
    color: var(--bluegray-400);
    font-weight: 300;
}
