#appcontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  /* padding-top: 100px; */
  /* z-index: 999998; */
  position: relative;
  overflow: hidden;
}


#apptips {
  font-size: 1rem;
  padding-top: 12px;
  color: #002236;
}

#apploading {
  margin-top: 280px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #002236;
  border-bottom: 5px solid #002236;
  /* border-right: 12px solid green;
  border-bottom: 12px solid red;
  border-left: 12px solid pink; */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}