﻿@font-face {
    font-family: 'Exo';
    src: url('fonts/Exo-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('fonts/Exo-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {

    --small-font: normal 10px Exo,sans-serif;
    --base-font: normal 14px Exo,sans-serif;
    --text-entry-font: normal 16px Exo,sans-serif;
    --medium-font: normal 18px Exo,sans-serif;
    --large-font: normal 22px Exo,sans-serif;
    --title-font: bold 35px Exo,sans-serif;
    --page-bg: #061647;
    --panel-bg: rgba(255, 255, 255, 0.96);
    --panel-border: rgba(0, 208, 224, 0.35);
    --text-dark: #111827;
    --text-muted: #5d667a;
}

.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;
}
    input:focus {
        border-color: var(--quaternary-color);
        outline: none;
        box-shadow: 0 0 0 1px var(--quaternary-color);
    }

select:focus {
    border-color: var(--quaternary-color);
    outline: none;
    box-shadow: 0 0 0 1px var(--quaternary-color);
}

textarea:focus {
    border-color: var(--quaternary-color);
    outline: none;
    box-shadow: 0 0 0 1px var(--quaternary-color);
}


h2 {
    font-family: Exo,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(--quaternary-color);
    border: 1px solid var(--quaternary-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(--quaternary-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: 12px;
    max-width: 900px;
    min-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    overflow: hidden;
    background: var(--app-panel-bg);
    border: 1px solid var(--app-panel-border);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.contentHeader {
    background: linear-gradient( 90deg, var(--app-section-header-bg) 0%, var(--app-section-header-bg-alt) 100% );
    color: var(--app-text-on-dark);
    padding: 10px 12px;
    font: var(--medium-font);
    font-weight: bold;
}

.contentWrapper {
    padding: 12px;
    /*background: var(--app-panel-bg);*/
    background: transparent;
    color: var(--app-text-primary);
}

.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;
}

.clearableInputWrapper {
    position: relative;
    display: inline-block;
}

.clearableInputTextBox {
    padding-right: 25px;
}

.clearInputButton {
    position: absolute;
    top: 50%;
    right: 0.65rem;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #6c7280;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    font-size: 0.95rem;
}

    .clearInputButton:hover {
        color: var(--secondary-color, #00D0E0);
    }

    .clearInputButton:focus {
        outline: none;
        color: var(--secondary-color, #00D0E0);
    }

@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;
    }

    .clearableInputWrapper {
        width: 100%;
    }
}