
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    background-color:#E4E4E4;
    background-image:linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    font-family: system-ui, -apple-system, -apple-system-font, 'Segoe UI', 'Roboto', sans-serif;
    font-size:12px;
    height:100vh;
    margin:0px;
    padding:0px;
    /* Padding to avoid the "unsafe" areas behind notches in the screen */
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-right, 0px);
    /* text-transform:uppercase; */
    width:100%;
}

/* Portrait layout (default) */
.app {
    padding: 15px;
}

/* Landscape layout (with min-width) */
@media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
    .app {
        padding: 15px;
    }
}

h1, h2, h3, h4, h5, h6 {
    color: #14AD87;
    text-transform: uppercase;
}

label {
    text-transform: uppercase;
}



.sub {
    position: fixed;
    overflow-y: scroll;
    left: 0;
    top: 0;
    padding: 15px;
    padding-bottom: 66px!important;
    width: 100%;
    height: 100%;
}


.wrap,
.page-wrap {
    width: 100%;
    height: 100%;
}

.page-wrap {
    position: fixed;
    padding: 15px;
    box-sizing: border-box;
}

.page-title {
    text-align: center;
}

.btn-home {
    display: block;
    padding: 0;
    margin: 0;
    border: 0;
    height: 33.333333%;
    width: 100%;
    font-size: 20px;
}

.btn-green {
    background: #036646;
    color: #fff;
}

.btn-blue {
    background: #14ADEB;
    color: #fff;
}

.btn-grey {
    background: #707070;
    color: #fff;
}

.page-loading,
.full-loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-loading {
    background: rgba(0, 0, 0, 0.5);
}

.full-loading:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #073D2F;  /* url(../img/Hawk-Mountain-Labs-Logo.jpg) center center no-repeat; */
    background-size: 250px;
}

.page-loading:after,
.full-loading:before {
    content: "";
    position: absolute;
    width: 64px;
    height: 64px;
    bottom: 0px;
    margin-bottom: 64px;
    left: 50%;
    margin-left: -32px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top-color: rgba(255, 255, 255, 0.65);
    z-index: 3;
    border-radius: 1000px;
    animation: rotate 1s infinite linear;
}

.page-loading:after {
    margin-bottom: auto;
    top: 50%;
    margin-top: -32px;
}

.footer-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: auto;
    background: #aaa;
    left: 0;
    padding: 10px;
    max-height: 51px;

}

@keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(90deg);
    }
    50% {
      transform: rotate(180deg);
    }
    75% {
      transform: rotate (270deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }