﻿@font-face {
    font-family: 'ProximaNova-Thin';
    src: url('../webfonts/2C2BFB_0_0.eot');
    src: url('../webfonts/2C2BFB_0_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/2C2BFB_0_0.woff') format('woff'),url('../webfonts/2C2BFB_0_0.ttf') format('truetype');
}

@font-face {
    font-family: 'ProximaNova';
    font-weight: normal;
    font-style: italic;
    src: url('../webfonts/2C2BFB_1_0.eot');
    src: url('../webfonts/2C2BFB_1_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/2C2BFB_1_0.woff') format('woff'),url('../webfonts/2C2BFB_1_0.ttf') format('truetype');
}

@font-face {
    font-family: 'ProximaNova';
    font-weight: normal;
    font-style: normal;
    src: url('../webfonts/2C2BFB_2_0.eot');
    src: url('../webfonts/2C2BFB_2_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/2C2BFB_2_0.woff') format('woff'),url('../webfonts/2C2BFB_2_0.ttf') format('truetype');
}

@font-face {
    font-family: 'ProximaNova';
    font-weight: bold;
    font-style: italic;
    src: url('../webfonts/2C2BFB_3_0.eot');
    src: url('../webfonts/2C2BFB_3_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/2C2BFB_3_0.woff') format('woff'),url('../webfonts/2C2BFB_3_0.ttf') format('truetype');
}

@font-face {
    font-family: 'ProximaNova';
    font-weight: bold;
    font-style: normal;
    src: url('../webfonts/2C2BFB_4_0.eot');
    src: url('../webfonts/2C2BFB_4_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/2C2BFB_4_0.woff') format('woff'),url('../webfonts/2C2BFB_4_0.ttf') format('truetype');
}

@font-face {
    font-family: 'ProximaNova-Regular';
    src: url('../webfonts/2C2BFB_5_0.eot');
    src: url('../webfonts/2C2BFB_5_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/2C2BFB_5_0.woff') format('woff'),url('../webfonts/2C2BFB_5_0.ttf') format('truetype');
}

/* BEGIN USER CSS */
/* CSS Variables */
:root {
    --flow-space: 1em;
    --jbu-dark-blue: #003767;
    --jbu-dark-blue-hover: #5C6BC0;
    --jbu-light-blue: #009ddc;
    --warning-yellow: #fdca44;
    --error-red: #b00020;
    --valid-green: #20b000;
    --star-stroke-width: 1px;
    --star-stroke-color: #565656;
}

html {
    background-color: #f5f5f6;
    font-family: ProximaNova, Roboto, serif;
    font-size: 16px;
}

body {
    color: #000;
    font-weight: normal;
    font-style: normal;
    line-height: 162%;
    margin: 0;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    background-color: white;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--jbu-dark-blue);
}

h3 {
    font-size: 120%;
    font-weight: bold;
}

.jbu-dark-blue {
    color: var(--jbu-dark-blue);
}

.jbu-light-blue {
    color: var(--jbu-light-blue);
}

.error-red {
    color: var(--error-red);
}

.valid-green {
    color: var(--valid-green);
}

/* https://24ways.org/2018/managing-flow-and-rhythm-with-css-custom-properties/ */
.flow > * + * {
    margin-top: var(--flow-space);
}

.hidden {
    display: none;
}

.full-width {
    width: 100%;
}

.no-top-margin {
    margin-top: 0;
}


*[id] {
    scroll-margin-top: 56px;
}

/*Get rid of the padding MudBlazor wants to put at the top of the form*/
.mud-main-content {
    padding-top: 0px;
}

/* Hide login since this is on info */
.master-header-login {
    display: none;
}

.jbu-text-field {
    /*border: 2px solid black;*/
    height: 56px;
    border-radius: 5px;
}

button.mud-button-root.mud-button.mud-button-outlined {
    border-color: lightgray;
}

ul.jbu-links {
    list-style: none;
    padding-left: 20px;
    line-height: 150%;
}

    ul.jbu-links li {
        color: var(--jbu-dark-blue);
        text-decoration-line: underline;
    }

.maintenance-button {
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}


/* ------------------- XSMALL SCREEN ------------------- */
@media screen and (max-width: 599px) {
    html {
        font-size: 14px;
    }
}

/* ------------------- SMALL SCREEN ------------------- */
@media screen and (min-width: 600px) {
    *[id] {
        scroll-margin-top: 64px;
    }
}

/* ------------------- MEDIUM SCREEN ------------------- */
@media screen and (min-width: 960px) {
    html {
        font-size: 18px;
    }
}

/* ------------------- LARGE SCREEN ------------------- */
@media screen and (min-width: 1280px) {
}

/* ------------------- XLARGE SCREEN ------------------- */
@media screen and (min-width: 1920px) {
}
