/* ************************************************************
***************************************************************
***************************************************************
 GLOBAL CLASSES
***************************************************************
***************************************************************
************************************************************* */
h3 { font-size: 1.25rem; margin: 0px; }
.taCenter { text-align: center; }
.mt1rem { margin-top: 1rem; }
.mt2rem { margin-top: 2rem; }

.onlyMobileBlocker {
  position: fixed;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 0.5rem;
  background-color: rgba(0,0,0,1);
  z-index: 100000;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.onlyMobileBlocker > div:nth-child(1) {
  font-size: 1.8rem;
  font-weight: bold;
}
.onlyMobileBlocker > div:nth-child(2) {
  font-size: 1em;
  margin-top: 0.5rem;
}

@media screen and (min-width: 414px) {
  .onlyMobileBlocker {
    display: flex !important;
  }
}
