/* ************************************************************
***************************************************************
***************************************************************
 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;
  }
}






/* Better Convert to Geese -> */
[data-datepickerBx] {
  z-index: 5000;
  padding: 10px;
  background-color: black;
  position: absolute;
  left: 0px;
  top: 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 8px;
  color: #fff;
  font-family: Helvetica;
  padding: 1rem;
  display: none;
}
[data-datepickerBx] .headline {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1.25em;
}
[data-datepickerBx] .headline .monthYear {
  flex-grow: 1;
}
[data-datepickerBx] .headline .monthSteerings {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
[data-datepickerBx] .headline .monthSteerings .prev,
[data-datepickerBx] .headline .monthSteerings .next {
  width: 1em;
  height: 1em;
  cursor: pointer;
}
[data-datepickerBx] .headline .monthSteerings .prev {
  margin-right: 1.5625em
}
[data-datepickerBx] .headline .monthSteerings .prev:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='red'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none' opacity='.87'/%3E%3Cpath d='M17.51 3.87L15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z'/%3E%3C/svg%3E");
  width: 100%;
  height: 100%;
  color: var(--fiery_3);
}
[data-datepickerBx] .headline .monthSteerings .next:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 24 24' viewBox='0 0 24 24' fill='red'>%3Cg%3E%3Cpath d='M0,0h24v24H0V0z' fill='none'/%3E%3C/g%3E%3Cg%3E%3Cpolygon points='6.23,20.23 8,22 18,12 8,2 6.23,3.77 14.46,12'/%3E%3C/g%3E%3C/svg%3E");
  width: 100%;
  height: 100%;
  color: var(--fiery_3);
}
[data-datepickerBx] .tableBox table thead {
  font-size: 0.75em;
  font-weight: bold;
  color: rgba(255,255,255,0.30);
}
[data-datepickerBx] .tableBox table tbody {
  font-size: 0.875em;
}
[data-datepickerBx] .tableBox table td {
  padding: 0.5em;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
}
[data-datepickerBx] .tableBox table tbody td:hover {
  background-color: rgba(255,0,0,0.10);
  color: orange;
}
[data-datepickerBx] .tableBox table tbody td.active {
  background-color: rgba(255,0,0,0.25);
  color: var(--fiery_3);
}
