﻿/* BEGIN:  Colors */

.background-color-darkblue {
    background-color: rgb(15, 45, 82);
}

.background-color-lightblue {
    background-color: rgb(0, 174, 239);
}

.background-color-mediumblue {
    background-color: rgb(0, 112, 185);
}

.background-color-darkgray {
    background-color: rgb(99, 100, 103);
}

.background-color-mediumgray {
    background-color: rgb(147, 149, 152);
}

.color-darkblue {
    color: rgb(15, 45, 82);
}

.color-lightblue {
    color: rgb(0, 174, 239);
}

.color-mediumblue {
    color: rgb(0, 112, 185);
}

.color-darkgray {
    color: rgb(99, 100, 103);
}

.color-mediumgray {
    color: rgb(147, 149, 152);
}

/* END:  Colors */


html {
    min-height: 100%;
    position: relative;
}

body {
    font-family: Arial;
    margin-bottom: 100px; /* Margin for footer height */
    padding-top: 71px
}

footer {
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.25);
    padding-top: 20px;
    
    background-color: rgb(15, 45, 82);
    bottom: 0;
    height: 100px; /* Fixed height of footer */
    position: absolute;
    width: 100%;
}

    footer > .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    footer p {
        margin-bottom: .25rem;
    }

.body-content {
    background-color: #fff;
    overflow: hidden;
}

.jumbotron {
    margin-bottom: 0px;
}

.container-single-page {
    padding: 80px 40px 80px 40px;
}

.form-title {
    color: black;
    font-size: 24px;
    margin-bottom: 40px;
}

table thead th {
    font-size: 13px;
    font-weight: 700;
}

.required-field-note {
    color: red;
    font-size: 13px;
    margin-bottom: 20px;
}

.control-label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
    margin-left: 5px;
}

input.form-control,
select.form-control {
    font-size: 16px;
    /*height: 40px;*/
}

/* Override the default placeholder color */
.form-control::-webkit-input-placeholder {
    color: #c8c8c8;
}

.form-control::-moz-placeholder {
    color: #c8c8c8;
}

.form-control:-moz-placeholder {
    color: #c8c8c8;
}

.form-control:-ms-input-placeholder {
    color: #c8c8c8;
}

.form-check {
    margin-left: 4px;
}

.form-check-label {
    font-size: 14px;
}

.form-check-input:valid ~ .form-check-label {
    color: black !important;
}






@media (max-width: 991.98px) {
    .alert {
        font-size: 14px;
    }

    .field-validation-error {
        font-size: 14px;
    }

    input.form-control,
    select.form-control {
        font-size: 14px !important;
    }
}




@media (max-width: 767px) {
    table {
        font-size: 12px;
    }
}









    .bg-dark {
        background-color: rgb(15, 45, 82) !important;
    }

    .navbar {
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
        /*background-color: #000;*/
    }

    /* For preventing datatable cell content from wrapping */
    td.nowrap {
        white-space: nowrap;
    }

    .btn {
        border-radius: 0px;
        margin-right: 8px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .form-control {
        border-radius: 0px;
    }
    /*Overrides Bootstrap*/
    .page-header {
        background-color: #282828;
        border-bottom: 0px;
        border-left: 10px solid #f05223;
        margin-bottom: 0px;
        /*margin-left: -15px;
    margin-right: -15px;*/
        margin-top: 0px;
        padding-bottom: 15px;
        padding-top: 15px;
        position: fixed;
        width: 100%;
        z-index: 1020;
    }

    .page-title {
        color: #fff;
        font-size: 34px;
        margin-bottom: 30px;
        padding-bottom: 5px;
        padding-left: 16px;
        padding-top: 10px;
        /*text-transform: uppercase;*/
        vertical-align: middle;
    }

    @media (max-width: 767px) {
        .page-title {
            font-size: 5.3vw;
        }
    }

    .page-title-primary {
        font-size: 40px;
        text-transform: uppercase;
    }

    .page-title-secondary {
        color: #6c757d;
        font-size: 22px;
        margin-bottom: 16px;
    }

    @media (max-width: 767px) {
        .page-title-primary {
            font-size: 24px;
        }

        .page-title-secondary {
            font-size: 14px;
        }
    }

    h1, h2, h3, h4, h5, h6, .PageTitle, .PanelTitle, .SectionTitle, .SectionLabel, .SectionLabelSmaller {
        /*color: #00509f;*/
        /*margin: 1em 0 .4em;*/
        text-transform: uppercase;
    }

    .required:after {
        color: #dc3545;
        content: " *";
    }

    .modal-header-danger {
        color: #fff;
        padding: 9px 15px;
        border-bottom: 1px solid #eee;
        background-color: #dc3534;
        -webkit-border-top-left-radius: 5px;
        -webkit-border-top-right-radius: 5px;
        -moz-border-radius-topleft: 5px;
        -moz-border-radius-topright: 5px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .modal-header-primary {
        color: #fff;
        padding: 9px 15px;
        border-bottom: 1px solid #eee;
        background-color: #007bff;
        -webkit-border-top-left-radius: 5px;
        -webkit-border-top-right-radius: 5px;
        -moz-border-radius-topleft: 5px;
        -moz-border-radius-topright: 5px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .modal-header-success {
        color: #fff;
        padding: 9px 15px;
        border-bottom: 1px solid #eee;
        background-color: #5cb85c;
        -webkit-border-top-left-radius: 5px;
        -webkit-border-top-right-radius: 5px;
        -moz-border-radius-topleft: 5px;
        -moz-border-radius-topright: 5px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .modal-title {
        color: white;
        font-size: 22px;
        text-transform: uppercase;
    }
    /*a:hover,
a:focus {
    text-decoration: underline;
}*/
    /*a {
    color: #000000;
    text-decoration: none;
}

    a:hover,
    a:focus {
        color: #2a6496;
        text-decoration: underline;
    }*/
    /* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
    .dl-horizontal dt {
        white-space: normal;
    }

    input:valid,
    select:valid,
    textarea:valid {
        
    }

    /*.form-control:invalid {
        border-color: red;
    }*/

    .form-control:valid {
        border-color: rgb(206, 212, 218);
        color: black;
    }

    .table-row-disabled {
        color: rgb(128, 128, 128);
        font-style: italic;
    }

    .table-striped tbody tr:nth-child(odd) td {
        background-color: rgba(73, 139, 202, 0.40);
    }

    .child-section {
        /*border: 1px solid #ddd;*/
        background-color: #fff;
        margin-left: 0px;
        margin-bottom: 20px;
    }

        .child-section .child-section-header {
            /*background-color: #e8e5e3;*/
            border-bottom: solid 1px #ddd;
            margin-bottom: 8px;
            padding-bottom: 12px;
            padding-left: 20px;
            padding-right: 10px;
            padding-top: 12px;
        }

            .child-section .child-section-header .child-section-title {
                color: #484848;
                font-size: 24px;
                font-weight: bold;
                text-transform: uppercase;
            }

    .child-section-subtitle {
        color: #444;
        font-size: 14px;
    }

    .child-section .child-section-body {
        padding: 10px 20px 20px 20px;
    }

    /*TODO:  this isn't working */
    .auto-ellipsis {
        width: 250px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }




    .entry-page-body {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 40px;
    }








    .page-body {
        padding-left: 20px;
        padding-top: 0px;
    }

    .page-body-title {
        color: #000;
        font-size: 34px;
        /*text-transform: uppercase;*/
    }

    .page-body-subtitle {
        color: #555;
        font-size: 16px;
        margin-bottom: 30px;
        margin-top: 0px;
    }

    .page-body-help {
        background-color: #e8e8e8;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
    }

    @media (min-width: 768px) {
        .page-body-content {
            padding-bottom: 20px;
            padding-left: 30px;
            padding-right: 30px;
            padding-top: 20px;
        }

        .page-body-help {
            border-left: 1px solid #d8d8d8;
        }
    }

    @media (max-width: 767px) {
        .entry-page-body {
            padding-left: 20px;
            padding-right: 20px;
            padding-top: 20px;
        }

        .page-body-content {
            padding-bottom: 20px;
            padding-left: 30px;
            padding-right: 30px;
            padding-top: 20px;
        }

        .page-body-help {
            border-top: 1px solid #d8d8d8;
        }
    }

    .page-body-help-content {
        color: #484848;
        font-size: 14px;
    }

    .page-body-help-title {
        color: #000;
        font-weight: bold;
        text-transform: uppercase;
    }

    .page-body-help > ul {
        list-style-type: none;
    }

        .page-body-help > ul li {
            padding-bottom: 20px;
        }







    .section-tile {
        background-color: #fff;
        border: 1px solid rgba(0, 0, 0, 0.25);
        border-radius: 3px;
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
        margin-bottom: 0px;
        margin-top: 20px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .section-tile-header {
        background-color: #00509e;
        margin-left: 0px;
        margin-right: 0px;
        padding: 10px 10px 10px 20px;
    }

    .section-tile-subheader {
        background-color: #0070b9;
        margin-left: 0px;
        margin-right: 0px;
        padding: 10px 20px 10px 5px;
    }

    .section-tile-header-title {
        color: #fff;
        font-size: 18px;
    }

    .section-tile-body {
        margin-right: 0px;
    }

    .section-tile-body-help-content {
        color: #484848;
    }

    .section-tile-header-subtitle {
        color: #eee;
        font-size: 14px;
    }

    .section-tile-body-help {
        background-color: #e8e8e8;
        padding-right: 20px;
    }

    .section-tile-body-help-title {
        color: #000;
        font-weight: bold;
        text-transform: uppercase;
    }

    .section-tile-body-help > ul {
        list-style-type: none;
        padding-left: 20px;
    }
        /*.section-tile-body-help > ul li:not(:last-child) {*/
        .section-tile-body-help > ul li {
            padding-bottom: 20px;
        }

    @media (min-width: 768px) {
        .section-tile-body-content {
            padding-bottom: 20px;
            padding-left: 30px;
            padding-right: 30px;
            padding-top: 20px;
        }

        .section-tile-body-help {
            border-left: 1px solid #d8d8d8;
            padding-top: 20px;
        }
    }

    @media (max-width: 767px) {
        .section-tile-body-content {
            padding-bottom: 20px;
            padding-left: 30px;
            padding-right: 30px;
            padding-top: 20px;
        }

        .section-tile-body-help {
            border-top: 1px solid #d8d8d8;
            padding-top: 20px;
        }
    }

    /* BEGIN:  Tooltips */
    .tooltip {
        z-index: 99999999 !important;
    }

    .tooltip-icon {
        color: rgb(66, 134, 244);
        cursor: pointer;
        margin-left: 10px;
    }
    /* END:  Tooltips */

    /* BEGIN:  Overlay */
    
    .overlay {
        background-color: rgb(0, 0, 0);
        background-color: rgba(0, 0, 0, 0.6);
        height: 100%;
        left: 0;
        overflow-x: hidden;
        position: fixed;
        top: 0;
        transition: 0.5s;
        width: 100%;
        z-index: 1050;
    }

    .overlay-content {
        background-color: rgb(255, 255, 255);
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
        min-width: 400px;
        position: relative;
        top: 10%;
        width: 80%;
    }

    .overlay-header {
        background-color: rgb(233, 236, 239);
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
        padding: 35px 40px 30px 40px;
    }

    .overlay-header-title {
        color: #000;
        font-size: 32px;
        text-transform: uppercase;
    }

    .overlay-header-subtitle {
        color: #555;
        font-size: 16px;
        margin-bottom: 0px;
        margin-top: 0px;
    }

    .overlay-body {
        padding: 40px 40px 20px 40px;
    }

    .overlay-footer {
        /*background-color: rgb(242, 242, 242);*/
        padding: 20px 40px 40px 40px;
    }

    .overlay a {
        color: #818181;
        display: block;
        font-size: 36px;
        padding: 8px;
        text-decoration: none;
        transition: 0.3s;
    }

        .overlay a:hover, .overlay a:focus {
            color: #f1f1f1;
        }

    .overlay .overlay-close-button {
        color: rgb(128, 128, 128);
        font-size: 72px;
        position: absolute;
        right: 10px;
        top: -20px;
    }

    @media screen and (max-width: 767px) {
        .overlay-header-title {
            font-size: 24px;
        }

        .overlay .overlay-close-button {
            font-size: 40px;
            right: 0px;
        }
    }

    /* END:  Overlay */
    
    /* BEGIN:  Action tile */

    a.card {
        color: rgb(63, 66, 69);
    }
    
    .card-box-shadow {
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
        -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

        .card-box-shadow:hover {
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4);
            -webkit-transform: scale(1.04, 1.04);
            transform: scale(1.04, 1.04);
        }

    .action-tile {
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
        /*margin-bottom: 50px;*/
        -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

        .action-tile:hover {
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4);
            -webkit-transform: scale(1.04, 1.04);
            transform: scale(1.04, 1.04);
        }

        a:active, a:link, a:visited {
            text-decoration: none;
        }

    .action-tile-header {
        padding: 50px;
        text-align: center;
    }

    .action-tile-header-image {
        color: white;
        font-size: 64px;
    }

    .action-tile-body {
        background-color: white;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px;
    }


    .action-tile-body-title {
        color: rgb(99, 100, 103);
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .action-tile-body-text {
        color: #555;
        font-size: 16px;
    }

    .action-tile-body-footer {
        margin-top: 40px;
        text-transform: uppercase;
    }
    /* END:  Action tile */
    /* BEGIN:  Material switch */
    .custom-control.material-switch {
        /*--color: #1a9d45;*/
        --color: #28a745;
        padding-left: 0;
    }

        .custom-control.material-switch.material-switch-inverted {
            /*--color: #1a9d45;*/
            --color: #ff0000;
            padding-left: 0;
        }

        .custom-control.material-switch .material-switch-control-input {
            display: none;
        }

            .custom-control.material-switch .material-switch-control-input:checked ~ .material-switch-control-indicator::after {
                background-color: var(--color);
                left: 17px;
            }

        .custom-control.material-switch .material-switch-control-indicator {
            display: inline-block;
            position: relative;
            margin: 0 10px;
            top: 4px;
            width: 32px;
            height: 16px;
            background: #ddd;
            border-radius: 16px;
            transition: 0.2s;
        }

            .custom-control.material-switch .material-switch-control-indicator::after {
                content: '';
                display: block;
                position: absolute;
                width: 18px;
                height: 18px;
                border-radius: 50%;
                transition: 0.2s;
                top: -1px;
                left: -1px;
                background: #fdfdfd;
                box-shadow: 0 2px 10px #aaa;
            }

/* END:  Material switch */


/*BEGIN: prevent datatables from places double sorting arrows*/

table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting:before,
table.dataTable thead .sorting:after {
    content: '' !important;
}

/*END: prevent datatables from places double sorting arrows*/
