/* =========================================
   BASE
========================================= */

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

    overflow: hidden;
}

body {
    min-height: 100%;
}

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

/* =========================================
   LOADING SCREEN
========================================= */

#app-loading {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    margin: 0;
    padding: 0;

    background: #ffffff;

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.2s ease;
}


#app-loading.app-loading--visible {
    opacity: 1;

    pointer-events: auto;
}


.app-loading__logo {
    display: block;

    width: 72px;
    height: 72px;

    margin: 0;

    object-fit: contain;
}