body {
    margin: 0;
    padding: 0;
    font-family: Lato, Arial, Helvetica, Verdana, sans-serif;
    box-sizing: border-box;
}

body *::-webkit-scrollbar,
html *::-webkit-scrollbar {
    width: 8px;
}

body *::-webkit-scrollbar-thumb,
html *::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #ddd;
    border: 1px solid #ccc;
}

.splash-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.splash-screen .header {
    position: relative;
    width: 100%;
    height: 40.49px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
}

.splash-screen.tictap .header {
    background: #00b0ff;
}

.splash-screen.vcards .header {
    background: #153b44;
}

.splash-screen.man .header {
    background: #303c49;
}

.splash-screen.koni .header {
    background: #000;
}

.splash-screen.schneider .header {
    background: #3dcd58;
}

.splash-screen.tapinpack .header {
    background: #5d5fef;
}

.splash-screen .header .enterprise-logo {
    padding: 6px 15px;
}

.splash-screen .header .enterprise-logo {
    /*Generic logo and styles applied across all brands*/
    width: 25px;
    height: 28px;
    background-size: 25px 28px;
    background-repeat: no-repeat;
    background-position: left;
    background-image: url("tictap-logo.png");
}

.splash-screen.tictap .header .enterprise-logo {
    background-image: url("tictap-logo.png");
}

.splash-screen.schneider .header .enterprise-logo {
    background-image: url("schneider-stamp.png");
}

.splash-screen.vcards .header .enterprise-logo {
    background-image: url("vcards-stamp.png");
}

.splash-screen.tapinpack .header .enterprise-logo {
    background-image: url("tapinpack-stamp.png");
}

.splash-screen.smartassets .header .enterprise-logo {
    background-image: url("smartassets-stamp.png");
}

.splash-screen .content {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.splash-screen .menu {
    position: absolute;
    top: 6px;
    left: 9px;
    width: 56px;
    height: calc(100vh - 12px - 40.49px);
    color: rgb(72, 72, 72);
    background-color: white;
    border: 1px solid #00b0ff;
    border-radius: 20px;
    /* display: flex; */
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.splash-screen .body-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.splash-screen .body-container .spinner-container {
    transform: translateY(-10vh);
}

.splash-screen .body-container .spinner-container img {
    width: 50px;
    height: 50px;
}
