body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    position: relative;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.topbar {
    cursor: pointer;
    overflow: hidden;
    background-color: red;
    padding-top: 12px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 0px;
    margin: 0px;

    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 100px;
}

.footer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 40px;
    background-color: blue;
}

#agespan {
    font-size: 10px;
}

@supports(padding: max(0px)) {
    .topbar {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }
}

.topbar div {
    /* float:left; */
    padding: 0px;
    /* height: 64px; */
}

.showmapbtn {
    cursor: pointer;
    position: absolute;
    top: 100px;
    width: 100%;
    height: 100px;
    /* height: 64px; */
    background-color: gray;
    color: white;
    padding: 0px;
    overflow: auto;
}

.showmapbtn h2 {
    padding: 12px;
    text-align: center;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

#map {
    position: absolute;
    top: 100px;
    bottom: 0px;
    width: 100%;
    min-height: 10px;
    flex-grow: 1;
}

.circle-annotation {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    color: red;
    background-color: rgba(255, 0, 0, 0.5);
    text-align: center;
    line-height: 32px;
}

.courier-location-callout {
    background-color: white;
}

.courier-location-callout h2 {
    text-align: center;
}

.region-label {
    color: lightgray;
    /* opacity: 0.75; */
    font-size: 12px;
    text-align: center;
}

/* ---------------SPINNER-------------- */

.spinner {
    margin: 0px auto;
    width: 40px;
    height: 40px;
    position: relative;
  }

  .cube1, .cube2 {
    background-color: white;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
    animation: sk-cubemove 1.8s infinite ease-in-out;
  }

  .cube2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
  }

  @-webkit-keyframes sk-cubemove {
    25% { -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5) }
    50% { -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg) }
    75% { -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5) }
    100% { -webkit-transform: rotate(-360deg) }
  }

  @keyframes sk-cubemove {
    25% {
      transform: translateX(42px) rotate(-90deg) scale(0.5);
      -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    } 50% {
      transform: translateX(42px) translateY(42px) rotate(-179deg);
      -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
    } 50.1% {
      transform: translateX(42px) translateY(42px) rotate(-180deg);
      -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    } 75% {
      transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
      -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    } 100% {
      transform: rotate(-360deg);
      -webkit-transform: rotate(-360deg);
    }
  }