/* This file is to override any Bootstrap native CSS */

* {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* The below two footer items are to mimic the footer of Sharepoint */
footer {
    font-size: .9em;
}

main a,footer a,.alert a {
    color: #34d;
    text-decoration: underline;
}


/* Override for dataTables where the value looks like a number */
table tr td.dt-type-numeric.dt-left, th.dt-type-numeric.dt-left {
    text-align: left;
  }

  table tr td.dt-type-numeric.dt-center, th.dt-type-numeric.dt-center {
      text-align: center;
    }

/* no sort class on DataTables so columns don't offer sort feature */
.no-sort::after { display: none!important; }

.no-sort { pointer-events: none!important; cursor: default!important; }
  

/* Override to push the label down a little bit to make it more centered on the input box */
label {
    margin-top: 5px;
}

/* Override to make the light background just slightly darker */

.bg-light {
    background-color: lightgray !important;
}


/*  Custom Classes  */
.fs-7 {
    font-size: .9em !important;
}

.fs-8 {
    font-size: .8em !important;
}

.w-85 {
    width: 85% !important;
}

.bg-menu {
    background-color: #293352 !important;
}

.emphasisMaroon {
    font-style: italic;
    color: maroon;
}

.text-navy {
    color: navy;
}

.inputRequired {
    border: red 1px solid !important;
}

.form-control-phone {
    display: inline;
    width: 30%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control-required {
    display: inline;
    width: 90%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.dropdown-item {
    padding: 2px 5px;
}

.dt-button-spacer {
    margin: 0px 2px;
}