label {
    display: flex;
    position: relative;
    justify-content: center;
    font-weight: bold;
}

label > span {
    position: absolute;
    text-align: end;
    transform: translate(-115%,100%);
    width: 12rem;
    z-index: 0;
}

label > span::after {
    content: ':';
}

.requiredspan::before {
    content: '*';
    color: red;
}
  
input {
    width: 14rem;
    padding: 5px;
    margin: 1rem 0;
    text-align: center;
    background-color: white;
}

.miniinput {
  width: 4rem !important;
}

.shortinput {
  width: 6rem !important;
}

.smallinput {
  width: 8rem !important;
}

.mediuminput {
  width: 10rem;
}

textarea {
    resize: none;
    width: 14rem;
    padding: 0.5rem;
    margin: 1rem 0;
    border-top: 2px solid black;
    border-left: 2px solid black;
    border-right: 2px solid grey;
    border-bottom: 2px solid grey;
    overflow: hidden;
    text-align: center;
}

textarea:focus {
    border: 2px solid black;
}

textarea + span {
  transform: translate(-115%, 0%);
}

label > .errorMessage {
    position: absolute;
    bottom: 0rem;
    font-size: 0.8rem;
}

.primaryButton {
    min-width: 10rem;
    height: 3rem;
    font-size: 2rem;
}

.leftformhalf {
    float: left;
    width: 35%;
    margin-left: 15%;
}
  
.rightformhalf {
    float: left;
    width: 35%;
    margin-right: 15%;
}

.formsplit {
    float: left;
    width: 33%;
}
  
.columnlayout:after {
    content: "";
    display: block;
    clear: both;
}
  
.pickerdiv {
    position: relative;
}

.inputpopup {
  position: absolute;
  width: 100%;
  top: 2.9rem;
  background-color: white;
  border: 1px solid black;
  z-index: 100;
}

.datepickerselectdiv {
  display: flex;
}

.datepickerselect {
  position: relative;
  bottom: 0.2rem;
  background: transparent;
  border: 1px solid transparent;
  font-weight: bold;
  margin: 0;
  font-size: 1.1rem;
}

.datepickerselectmonth {
  width: 6.3rem;
}

.datepickerselectyear {
  width: 3.5rem;
}

.datepickerselectyeardiv {
  margin-right: 0.4rem;
}

.datepickerselectdiv .dropdownarrow {
  top: 0.5rem;
  z-index: 100;
}

.datepickerselectdiv .selectoptions {
  top: 2rem;
}

.datepickerarrow {

  height: 1.2rem;
  position: relative;
  top: 0.3rem;
}

.datepickerselect:focus {
  border: 1px solid transparent;
}

.datepickercalendar {
  border-top: 1px solid black;
}

.blankdatepicker {
  background-color: white;
  color: white;
  height: initial !important;
}

.datepickercell {
  background-color: white;
  height: initial !important;
}

.datepickercell:hover {
  background-color: #FFF1C8 !important;
}

.pickericon {
  position: absolute;
  height: 1.4rem;
  right: 0.2rem;
  top: 1.2rem;
}

.selectoptions {
    position: absolute;
    top: 2.9rem;
    text-align: center;
    background-color: white;
    max-height: 50vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 25;
}

.menuitem {
  display: block;
  width: 100%;
  padding: 1rem 0.2rem;
  text-align: center;
  background: none;
  border: none;
  text-decoration: none;
  color: black;
  font-family: inherit;
  font-size: inherit;
  font-weight: normal;
  transition: background-color 1s;
}

.selectedmenuitem {
  background-color: #6eb06e;
  cursor:  wait;
}

.menuitem:hover {
  background-color: #a4c2f4
}

.stylizedtable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.stylizedtable th {
    border: 1px solid black;
    background-color: #cfe2f3;
    border-left: none;
    position:-webkit-sticky;
    position:sticky;
    top:2rem;
    z-index:1;
  }

  .nonsticky th {
    position: initial;
  }

  .stylizedtable tr:nth-child(odd) {
    background-color: #d0e0e3;
    border-width: thin;
  }

  .stylizedtable td {
    border: 1px solid black;
    border-top: none;
    border-left: none;
    padding: 0.1rem;
    height: 35px;
  }

  .stylizedtable .FirstTableCell {
    border-left: 1px black solid;
  }

@media only screen and (max-width: 750px) {
    label > span {
      position: absolute;
      text-align: center;
      transform: translate(0);
      top: -0.25rem;
      padding-top: 0 !important;
    }
  
    .formsplit {
      float: initial;
      width: initial;
    }
  
    .leftformhalf {
      float: initial;
      width: initial;
      margin-left: initial;
    }
  
    .rightformhalf {
      float: initial;
      width: initial;
      margin-right: initial;
    }
  }