html {
    font-size: 75%;
} 

* {
    font-family: Arial, Helvetica, sans-serif;
    /* use in dev to see guidelines for all items */
    /* border-style: dashed;
    border-color: red; */
}

.normal {
    font-weight: normal;
}


.pagecontainer {
    width: 85% !important;
    margin: auto;
}

#header img {
    /* Scale images down to fit container width */
    object-fit: scale-down;
    object-position: left center;
    flex-basis: content;
    min-width: 1%;
    /* Maintain aspect ratio */
    max-height: 60px !important;
}
#navbarimg img {
    /* Scale images down to fit container width */
    object-fit: scale-down;
    object-position: left center;
    flex-basis: content;
    min-width: 1%;
    /* Maintain aspect ratio */
    max-height: 3rem !important;
}
#navbarimg.gap{
    gap: 1rem;
}
.inline {
    display: inline;
}

.center {
    text-align: center;
}

.center, .center2 {
    align-items: center;
    justify-content: center;
}

.center, .vertCenter {
    vertical-align: middle;
}

.padB, .padAB {
    padding-bottom: 1rem;
}

.padA, .padAB {
    padding-top: 1rem;
}

.padB-none {
    padding-bottom: 0rem;
}

.padB-half, .padAB-half {
    padding-bottom: 0.5rem;
}

.padA-half, .padAB-half {
    padding-top: 0.5rem;
}

.margA-none {
    margin-top: 0rem !important;
}

.margB, .margAB, section {
    margin-bottom: 1rem;
}

.margBExtra {
    margin-bottom: 1.5rem;
}

.margA, .margAB, section {
    margin-top: 1rem;
}

.margIS {
    margin-inline-start: 1.2rem;
}

.indent {
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.margB-half, .margAB-half, header {
    margin-bottom: 0.5rem;
}

.margA-half, .margAB-half {
    margin-top: 0.5rem;
}

h1 {
    font-size: 2rem;
    margin: 0;
}

h2 {
    font-size: 1.3rem;
    margin:0;
}

h3 {
    font-size: 1.1rem;
    margin: 0;
}

h4 {
    font-size: 1rem;
    margin: 0;
}

p {
    font-size: 1rem;
}

.bold, header, .invalidError {
    font-weight: bold;
}

.invalidError {
    font-size: 0.9rem;
}

.red, .invalidError {
    color: rgb(179, 0, 0);
}

.blue {
    color: #004ECC;
}

.dtdPurple {
    color: #440099;
}

.italix {
    font-style: italic;
}

.flex, header {
    display: flex;
}

.flexInline {
    display: inline-flex;
}

.flex25 {
    flex-basis: 25%;
}

.flex40 {
    flex-basis: 40%;
}

.flex50 {
    flex-basis: 50%;
}

.flex60 {
    flex-basis: 60%;
}

.flex75 {
    flex-basis: 75%;
}

.flex100 {
    flex-basis: 100%;
}

.column {
    flex-direction: column;
}

.top {
    align-items: flex-start;
}

.bottom {
    align-items: flex-end;
}

.spaceBetween {
    justify-content: space-between;
}

.spaceEven {
    justify-content: space-evenly;
}

.height0-error {
    max-height: 0rem;
}

.height-half {
    max-height: 0.5rem;
}

.gap {
    gap: 1.5rem;
}

.gapHalf {
    gap: 0.5rem;
}

.gridGap {
    gap: .8rem 1rem;
}

.gridSixth {
    grid-column: span 2;
}

.gridFourth {
    grid-column: span 3;
}

.gridThird {
    grid-column: span 4;
}

.gridHalf {
    grid-column: span 6;
}

.grid2Thirds {
    grid-column: span 8;
}

.grid3Fourths {
    grid-column: span 9;
}

.gridFull {
    grid-column: span 12;
}

.grow {
    flex-grow: 1;
}

textarea {
    width: 100%;
    height: 1rem;
    resize: none;
}

.input-validation-error {
    border-bottom: 2px solid #B30000 !important;
}

button {
    border: 2px solid #440099;
    border-radius: 12px;
    background-color: #440099;
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 1em;
    transition-duration: 0.4s;
    cursor: pointer;
}

button.clear {
    background-color: white;
    color: black;
}

button:hover {
    background-color: #36007a;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

/*Bootstrap Nav Bar Styling*/
.navbar {
    --bs-navbar-padding-x: 7%;
    --bs-navbar-padding-y: 0rem;
    --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
    --bs-navbar-hover-color: #440099;
    --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
    --bs-navbar-nav-link-padding-x: 2rem;
    --bs-navbar-brand-padding-y: 1.5rem;
}

.nav-item {
    border-bottom: 0.25rem solid #FFFFFF00;
}

.nav-link {
    padding-top: .9rem;
    padding-bottom: .65rem;
}

.bg-light {
    --bs-bg-opacity: .1;
}

:root, [data-bs-theme=light] {
    --bs-light-rgb: 68, 0, 153;
    --bs-link-color-rgb: 2, 76, 187;
}

.nav-item:hover {
    background-color: #4400990a;
}

.nav-item.active {
    background-color: #44009940;
/*    font-weight: bold;*/
    border-color: #440099;
}

    .nav-item.active:hover {
        color: unset;
        cursor: default;
    }

.nav-link.active:hover {
    cursor: default;
}