


* {
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

}

h1, h2, h3, h4 {
  font-family: sans-serif;
  text-align: center;
}

h1 {
  font-size: 1.2rem;
  text-align: center;
}


html {
  font-family: sans-serif;
  font-size: 16px;
  background-color: white;
  color: black;
  background: white;
  height: 100%;
  text-align: center;

}


[class^="column-"] {
  display: inline-block;
}

  .column-33 {
    width: 100px;
    padding-bottom: -30px;
  }

  .column-25 {
    width: 25%;
  }

  .label {
    font-family: sans-serif;
    font-weight: bold;
    left: 25px;
    top: -20px;
    position: absolute;
    font-size: 12px;
    text-align: center;
  }


  .datahead{
    font-family: sans-serif;
    font-weight: bold;
    left: 30px;
    top: 40px;
    position: absolute;
    font-size: 10px;
    text-align: center;

  }

.data{
  left: 25px;
  top: 10px;
  position: absolute;
  font-size: 30px;
  text-align: center;

}



body {
  padding: 0;
  margin: 0;
  height: 100%;

}



header {
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;

  transition: -webkit-transform 0.5s ease-out 0s;
  transition: transform 0.5s ease-out 0s;
}





.container {
  overflow: hidden;
  height: 100%;
  transition: -webkit-transform 0.5s ease-out 0s;
  transition: transform 0.5s ease-out 0s;

}





.compass {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

  .compass__rose {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

    .compass__rose__dial {
      height: 100%;
      width: 100%;
    }

  .compass__pointer {
    height: 100%;
    width: 100%;
  }





.btn {
  border: 0;
  color: white;
  cursor: pointer;
  text-align: center;

  height: 4rem;

  background-color: transparent;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto 50%;

  -webkit-tap-highlight-color: transparent;
  outline: none;
}

  .btn svg * {
    transition: fill 0.5s ease-out 0s;
  }

.btn--hide {
  display: none;
}

.btn--hide.show {
  display: inline-block;
}

  .btn:active {
    background-color: rgba(127, 127, 127, 0.5);
  }

  .btn__icon {
    height: 50%;
    width: 100%;
  }

  .btn__icon--active {
    display: none;
  }

  .btn__icon--inactive {
    display: block;
  }

.btn.active .btn__icon--active {
    display: block;
  }

.btn.active .btn__icon--inactive {
    display: none;
  }





.status {
  position: fixed;
  text-align: center;
  left: 0px;
  right: 0px;
  bottom: 5px;
}

.position {
  padding-bottom: 25px;
  text-transform: uppercase;
  align-items: center;
  text-align: center;
  font-size: 30px;
}

.options {

}

  .options__btn {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }





.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;

  background-color: rgba(0, 0, 0, 0.8);
}

.popup.popup--show {
  display: block;
}

  .popup__content {
    max-width: 300px;
    margin: 0 auto;


    background-color: white;
    color: black;
  }

    .popup__contents {
      padding: 1rem;
    }

      .popup__inner {

      }

        .popup__inner--hide {
          display: none;
        }

    .popup__close {
      display: block;
      padding: 1rem;
      text-align: right;
      width: 100%;
      border: 0;
      background: transparent;
      outline: none;
    }

      .popup__close:hover {
        text-decoration: underline;
        cursor: pointer;
      }



html.nightmode {
  background: black;
  color: white;
}

  html.nightmode .container {
    transform: translateY(-2rem);
    -webkit-transform: translateY(-2rem);
  }

  html.nightmode header {
    transform: translateY(-4rem);
    -webkit-transform: translateY(-4rem);
  }

  html.nightmode .label {
    color: rgba(127, 127, 127, 0.8);
  }

  html.nightmode .btn svg * {
    fill: rgba(127, 127, 127, 0.5);
  }
