﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/*********************
    Table of Contents

    1 - Reset
    2 - Base Styles
    3 - Links & Buttons -
    Headings
    Lists
    4 - Form Elements -
    5 - Tables -
    6 - Columns -
    7 - Responsive CSS
*/

/**********************
Reset
**********************/
html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    margin: 0px;
    padding: 0px;
}

article,
aside,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

/**********************
Base Styles
**********************/
:root {
    --white: #fff;
    --gray-light: #e5e5e5;
    --gray: #6c757d;
    /*--gray-dark: #343a40;*/
    --blue: #288ace;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    /*--color: #hexvalue    add as needed per client*/
    --black: #000000;
    --gray-dark: #070101;
    --red: #ff0309;
    --gold: #dcc7a2;
    --save: #288ace;
    --cancel: #6c757d;
    --filter: #288ace;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    line-height: 1.5;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100% !important;
}

p {
    margin: 20px 0;
}

blockquote {
    margin: 0 0 1rem;
}

.container {
    width: 94%;
    max-width: 1000px;
    margin: auto;
}

.wide {
    max-width: 2000px;
}

.expanded {
    max-width: 1500px;
}

.thin {
    max-width: 800px;
}

.tinytext {
    font-size: 85%;
}

/**********************
Links & Buttons
**********************/
a {
    color: var(--blue);
}

    a:hover,
    a:focus {
        color: var(--success);
    }

.btn {
    display: inline-block;
    transition: background-color 0.2s ease, color 0.2s ease;
    padding: 7px 12px;
    border: 1px solid var(--gray);
    border-radius: 5px;
}

    .btn:hover {
        background: var(--gray);
        color: var(--white);
    }

.btn-blue {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.btn-submit {
    background: var(--save);
    color: var(--white);
    border-color: var(--save);
}

.btn-cancel {
    background: var(--cancel);
    color: var(--white);
    border-color: var(--cancel);
}

.btn-filter {
    background: var(--filter);
    color: var(--white);
    border-color: var(--filter);
}

/**********************
Headings
**********************/
h1, h2, h3, h4, h5, h6 {
    line-height: normal;
}

h1 {
    font-size: 1.667em; /*30px*/
    font-weight: bold;
    margin: 25px 0;
}

h2 {
    font-size: 1.445em; /*26px*/
    font-weight: bold;
    margin: 20px 0;
}

h3 {
    font-size: 1.334em; /*24px*/
    font-weight: bold;
    margin: 15px 0;
}

h4 {
    font-weight: bold;
    font-size: 1.15em;
    margin: 15px 0;
}

h5 {
    font-weight: bold;
    font-size: 1.1em;
    margin: 10px 0;
}

h6 {
    font-weight: bold;
    font-size: 1em;
    margin: 5px 0;
}

/*****************************
Lists
*****************************/
ul {
    text-align: left;
    list-style-type: disc;
    list-style-position: outside;
    margin: 10px 0 10px 45px;
}

ol {
    text-align: left;
    list-style-type: decimal;
    list-style-position: outside;
    margin: 10px 0 10px 45px;
}

li {
    margin-bottom: 5px;
}

/* Nested Lists*/
ul ul,
ul ul ul,
ol ol,
ol ol ol {
    text-align: left;
    list-style-type: square;
    list-style-position: outside;
    margin: 5px 5px 5px 20px;
}

    ul ul li,
    ul ul ul li,
    ul ol li,
    ul ol ol li {
        margin-bottom: 3px;
    }

/**********************
Form Elements
**********************/
input, select, option, textarea {
    font-family: inherit;
}

.checkbox-btn-label {
    margin: 8px -30px 8px 8px;
    padding: 4px 34px 4px 4px;
    border: 1px solid var(--gray-light);
    background: var(--white);
    color: gray !important;
    border-radius: 5px;
    position: relative;
    z-index: 0;
}

.checkbox-btn-box {
    position: relative;
    z-index: 5;
    margin-top: 5px;
    margin-left: 12px;
    margin-bottom: 5px;
}

.formGroupRowContainer {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

.form-group {
    width: 100%;
    margin: 0 1em 1em;
}

    .form-group:first-of-type {
        margin-left: 0;
    }

    .form-group:last-of-type {
        margin-right: 0;
    }

    .control-label-note {
        display: inline-block;
        font-size: 90%;
        font-style: italic;
    }

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray);
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .form-control:focus {
        color: var(--gray);
        background-color: var(--white);
        border-color: var(--blue);
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

.editPageContainer {
}

.editPageFixedButtonDiv {
    padding: 10px 5px;
    margin-top: 20px;
    margin-left: -20px;
    display: block;
    border-top: 2px solid #000000;
    background-color: #FFFFFF;
    width: 103%;
    position: sticky;
    bottom: 0px;
    left: 0px;
    overflow: visible;
}



.text-danger {
    color: #dc3545 !important;
}

.validation-summary-errors {
    color: red;
    background-color: lavender;
}

/* notification bars */
.notify-bar {
    font-weight: bold;
    position: fixed;
    left: 15%;
    top: 0;
    padding: 5px 15px;
    vertical-align: middle;
    width: 70%;
    text-align: center;
    background-color: #ffffcc;
    opacity: .95;
    filter: alpha(opacity = 95);
}

.notify-bar span {
    font-size: 15px;
}

/*.notify-icon {*/
.notify-bar img {
    padding-right: 5px;
}

.notify-confirm {
}

.notify-info {
    color: #3377cc;
}

.notify-alert {
    color: #cc3300;
    background-color: #fff5f5;
}


/**********************
Tables
**********************/
table {
    border-collapse: collapse;
    width: 100%;
    max-width: 2000px;
    margin: 20px auto;
}

.table-striped tbody tr:nth-of-type(2n+1) {
    background: var(--gray-light);
}

th, td {
    padding: 5px;
}

th {
    font-weight: bold;
}

td {
    border: 1px solid var(--gray-light);
}


/**********************
Columns
**********************/
.columns,
.padded-columns {
    overflow: auto;
    width: 100%;
}

    .columns .half,
    .columns .third,
    .columns .two-thirds,
    .columns .quarter,
    .columns .three-quarters,
    .padded-columns .half,
    .padded-columns .third,
    .padded-columns .two-thirds,
    .padded-columns .quarter,
    .padded-columns .three-quarters {
        float: left;
    }

    .columns .half {
        width: 50%;
    }

    .columns .third {
        width: 33.33%;
    }

    .columns .two-thirds {
        width: 66.66%;
    }

    .columns .quarter {
        width: 25%;
    }

    .columns .three-quarters {
        width: 75%;
    }

    /*Padded Columns*/
    .padded-columns .half,
    .padded-columns .third,
    .padded-columns .two-thirds,
    .padded-columns .quarter,
    .padded-columns .three-quarters {
        margin-right: 5%;
    }

        .padded-columns .half:last-child,
        .padded-columns .third:last-child,
        .padded-columns .two-thirds:last-child,
        .padded-columns .quarter:last-child,
        .padded-columns .three-quarters:last-child {
            margin-right: 0;
        }

    .padded-columns .half {
        width: 47.5%;
    }

    .padded-columns .third {
        width: 30%;
    }

    .padded-columns .two-thirds {
        width: 65%;
    }

    .padded-columns .quarter {
        width: 21.25%;
    }

    .padded-columns .three-quarters {
        width: 70%;
    }

/***********************
Login Screen
***********************/
.login-screen {
    width: 94%;
    max-width: 600px;
    margin: 30px auto;
    border: 1px solid var(--gray-light);
    padding: 30px;
}

.login-logo {
    display: block;
    margin: 0 auto 30px;
}

/***********************
Header
***********************/

/***********************
Navigation
***********************/
.navbar {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5em 1em;
    border-bottom: 1px solid var(--gray-light);
    background: #e5e5e5;
}

    .navbar > .container,
    .navbar > .container-fluid {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}


.navbar-right {
    float: right !important;
    justify-content: flex-end;
    margin-left: auto !important;
}

/***********************
Content
***********************/
/*User Filter Form*/
.userfilterform {
    border: 1px solid var(--gray-light);
    margin: 1em auto;
    padding: 1em;
}

/*Change Password*/
.changepassword {
    max-width: 500px;
}

    .changepassword .form-group {
        margin: 0 0 1em;
    }

/***********************
Footer
***********************/
.footer {
    border-top: 4px solid black;
    background: #e5e5e5;
    color: #808080;
    padding: 1em 0;
    font-size: 85%;
}



