html {
    background: #181A1E;
}

body{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #8F8F8F;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0px;
    background: #181A1E;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

#Debug {
    display: none;
}

#Panels{
    position: fixed;
    overflow: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 60px;
}

#Menu{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 60px;
    font-size: 22px;

    padding-bottom: env(safe-area-inset-bottom);
    padding-bottom: 10px;
}

#Menu>div.selected{
    color: aquamarine;
}

#Output{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 60px;
    width: 150px;
}

#Orientation{
    text-align: left;
}

#Orientation h5{
    margin: 0px;
    margin-bottom: -10px;
}

#Orientation div{
    font-size: 50px;
}

#Location{
    font-size: 12px;
}

#Output small{
    font-size: 12px;
}

.btn{
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: aquamarine;
    color: #12161f;
    font-size: 14px;
}

#SavePointBtn{
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding: 18px;
    background: aquamarine;
    left: 0px;
    right: 0px;
    text-align: center;
    color: #12161f;
    font-size: 16px;
    box-sizing: border-box;
}

#DataCollection input{
    width: 100px;
    margin-bottom: 10px;
}

#Startup{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #12161f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    padding: 30px;
}

.startupBtn{
    width: 120px;
    margin-bottom: 10px;
}


#Panels .view{
    display: none;
    padding: 10px;
}

#Panels .view.show{
    display: block;
}


div#Startup p {
    width: 241px;
    text-align: center;
    margin-bottom: 40px;
}

div#Startup h2 {
    margin-bottom: 0px;
}









.flex {
    display: flex;
}

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

.spaceBetween{
    justify-content: space-between;
    align-items: center;
}

.pointItem {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #ffffff26;
}

.compass {
    height: 20px;
    width: 20px;
    margin-right: 8px;
    border: 1px solid #ffffff57;
    border-radius: 100px;
    position: relative;
    margin-left: -10px;
}

.compass>div {
    height: 20px;
    width: 1px;
    position: absolute;
    top: 0px;
    left: 10px;
    /* background: white; */
}

.compass>div:before {
    content: '';
    position: absolute;
    top: 0;
    height: 10px;
    background: #f44336;
    width: 1px;
}

.deleteBtn {
    margin-left: 10px;
}




























/**************************
        Loading
***************************/
#LoadingScreen{
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #181A1E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

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

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

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

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);
    }
}
