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

}

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

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