html {
  font-size: 16px; /* Sets the root font size to 16 pixels */
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/* font-size: 1rem; */
body {
    margin: 0;
    overflow-x: hidden;
    height: 100%;
}

#app {
    position: relative;
    margin: 0;
    width: 100%;
}

.baseflex {
    position: relative;
    margin: auto;
    width: 100%;
    min-width: 100vw;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width:576px) {
    html {
        font-size: 0.85rem;
    }
}

.boxapp {
    position: relative;
    top: 0;
    height: 100vh;
    width: 100vw;
}

.showloading {
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.showbox {
    display: flex;
}

.hidebox {
    display: none;
}