﻿:root {
    /*--small-font: normal 10px Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
    --base-font: normal 14px Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
    --text-entry-font: normal 16px Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
    --medium-font: normal 18px Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
    --large-font: normal 22px Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
    --title-font: bold 35px Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;*/
    --small-font: normal 10px Inter,sans-serif;
    --base-font: normal 14px Inter,sans-serif;
    --text-entry-font: normal 16px Inter,sans-serif;
    --medium-font: normal 18px Inter,sans-serif;
    --large-font: normal 22px Inter,sans-serif;
    --title-font: bold 35px Inter,sans-serif;
}

.smallFont {
    font: var(--small-font) !important;
}

.mediumFont {
    font: var(--medium-font) !important;
}

.largeFont {
    font: var(--large-font) !important;
}

.titleFont {
    font: var(--title-font) !important;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

input {
    height: 15px;
    padding: 8px;
    font: var(--text-entry-font);
    border: 1px solid black;
    border-radius: 3px;
}

h2 {
    /*font-family: Poppins,Arial,sans-serif;*/
    /*font-family: Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;*/
    font-family: Inter,sans-serif;
}

.label {
    font: var(--base-font);
}

.bold {
    font-weight: bold !important;
}

.largeText {
    font: var(--large-font);
}

.redWarningText {
    color: var(--warning-color) !important;
}

.pageTitle {
    width: 25%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font: var(--title-font);
    color: var(--secondary-color);
    margin-left: auto;
    margin-right: auto;
}

.topBorder {
    border-top: 1px solid var(--secondary-color);
}

.button {
    height: 40px;
    width: 165px;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 3px;
    cursor: pointer;
    font: var(--base-font);
    font-weight: bold;
    padding: 5px;
    box-shadow: none;
    transition: box-shadow 0.05s linear;
    color: white;
}

    .button:hover {
        box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.3), -2px -2px 5px 1px rgba(0, 0, 0, 0.3);
        background-color: var(--secondary-color-highlight);
    }

.buttonInverted {
    height: 40px;
    width: 150px;
    background-color: none;
    border: 1px solid var(--secondary-color);
    border-radius: 3px;
    cursor: pointer;
    font: var(--base-font);
    font-weight: bold;
    padding: 5px;
    box-shadow: none;
    transition: box-shadow 0.05s linear;
    color: black;
}

    .buttonInverted:hover {
        box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.3), -2px -2px 5px 1px rgba(0, 0, 0, 0.3);
        background-color: var(--secondary-color-highlight);
    }

.dropDownList {
    height: 40px;
    width: 150px;
    border: 1px solid black;
    border-radius: 3px;
    background-color: white;
    color: black;
}

.datePicker {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    color: black;
}

.center-text {
    text-align: center !important;
}

.hidden {
    display: none !important;
}

.sectionTitle {
    width: 50%;
    text-align: left;
    font: var(--medium-font);
    font-weight: bold;
}
.sectionSubTitle {
    width: 50%;
    text-align: right;
}

.topPad15 {
    padding-top: 15px;
}

.topPad10 {
    padding-top: 10px;
}

.topPad05 {
    padding-top: 5px;
}

.topMargin15px {
    margin-top: 15px;
}

.width25p {
    width: 25%;
}

.width50p {
    width: 50%;
}

.width75p {
    width: 75%;
}

.width96p {
    width: 96%;
}

.width100p {
    width: 100%;
}

.width25 {
    width: 25px;
}

.width50 {
    width: 50px;
}

.width75 {
    width: 75px;
}

.width100 {
    width: 100px;
}

.width150 {
    width: 150px;
}

.width175 {
    width: 175px;
}

.width200 {
    width: 200px;
}

.width300 {
    width: 300px;
}

.contentContainer {
    border-radius: 5px;
    max-width: 900px;
    min-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    box-shadow: 0.5px 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.3), -0.5px 0px 0.5px 0.5px rgba(0, 0, 0, 0.3);
    overflow: hidden;    
}

.contentHeader {
    background-color: var(--tertiary-color);
    color: white;
    padding: 8px;
}

.contentWrapper {
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
}

.sectionSecondaryTitle {
    width: 50%;
    font: var(--medium-font);
    font-weight: bold;
    text-align: left;
}

.sectionSecondarySubTitle {
    width: 50%;
    text-align: right;
}

.inputError {
    border: 3px solid red !important;
}

.disabledButton {
    background-color: gray !important;
    cursor: default !important;
    border: 1px solid, darkgray !important;
}

    .disabledButton:hover {
        box-shadow: none !important;
    }

.borderBox {
    box-sizing: border-box;
}


@media (max-width: 600px) {
    .contentContainer {
        border-radius: 5px;
        width: 90% !important;
        max-width: none !important;
        min-width: 200px !important;
    }

    .pageTitle {
        width: 90%;
        font-size: 24px !important;
    }

    .sectionTitle {
        width: 80% !important;
    }

    .sectionSubTitle {
        width: 20% !important;
    }

    .mobileW100 {
        width: 100% !important;
    }

    .mobileW90 {
        width: 90% !important;
    }
}