html {
    background: #12161f;
    /* background: #1e343b; */
}

body{
    font-family: 'Nunito', sans-serif;
    color: #8F8F8F;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0px;

    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);

}

.textLight {
    color: #999999;
}

.bold {
    font-weight: bold;
}

div#Menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 24px;
    height: 50px;
    box-shadow: 0px 0px 12px -2px #00000063;
    padding: 8px 0px;
    padding-bottom: 25px;
    z-index: 10;
    background: #07080a;
}

div#Menu>div.selected {
    color: #52C1FF;
}

div#Menu>div {
    cursor: pointer;
}

div#MainContent {
    max-height: calc(100% - 83px);
    overflow: auto;
    padding: 12px;
}

div#LoginScreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10000;
    padding: 60px;
}

.flexCenter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.smallHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}

.smallHeader h5 {
    margin: 0px;
}

div#AddGroupBtn {
    height: 20px;
    width: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff24;
    cursor: pointer;
}

div#AddGroupBtn:hover {
    background: #ffffff75;
    color: black;
}

div#MyTasksBtn.selected {
    color: #52c2ff;
}

div#MainContent>section {
    display: none;
}







/**************************
        Loading
***************************/
#LoadingScreen{
    position: fixed;z-index: 10000;left: 0;right: 0;top: 0;bottom: 0;background: rgb(14, 16, 23);display: flex;align-items: center;justify-content: center;color: #333;
}

#LoadingScreen h3 {
    margin-bottom: 0px;
}

div#LoadingScreen img {
    height: 180px;
    animation: breathing 2s ease-out infinite normal;
}

div#LoadingScreen h5 {
    margin-top: 20px;
    color: #999;
}

div#LoadingScreen>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@-webkit-keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    25% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    25% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
}