﻿
/*
    These are the colors chosen by Marketing. They'll be used throughout
    the site. If one of them needs to be changed due to a Marketing change,
    do a search/replace for the first 3 values, the hue, and do not include
    the alpha so that the hue is changed but the alpha is preserved.
*/

.siteColorList {
    color: rgba(0, 119, 118, 1.0); /* Primary 1   #007776 */
    color: rgba(0, 56, 72, 1.0); /* Primary 2   #003848 */
    color: rgba(114, 133, 146, 1.0); /* Primary 3   #728592 */
    color: rgba(0, 94, 132, 1.0); /* Secondary 1 #005e84 */
    color: rgba(0, 161, 156, 1.0); /* Secondary 2 #00a19c */
    color: rgba(176, 225, 218, 1.0); /* Secondary 3 #b0e1da */
    color: rgba(255, 197, 64, 1.0); /* Secondary 4 #ffc540 */
    color: rgba(63, 84, 100, 1.0); /* Secondary 5 #3f5464 */
}

/*=====( Begin Sticky Footer )===================================================================*/

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px; /* Margin bottom by footer height */
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

/*=====( End Sticky Footer )=====================================================================*/
/*=====( Begin HTML and Body tags )==============================================================*/

html {
    font-size: 16px;
}

body {
    font-family: 'Montserrat';
    color: rgba(63, 84, 100, 1.0);
}

/*=====( End Begin HTML and Body tags )==========================================================*/
/*=====( Begin General )=========================================================================*/

.border-top {
    border-top: 1px solid rgba(114, 133, 146, 0.1);
}

.border-bottom {
    border-bottom: 1px solid rgba(114, 133, 146, 0.1);
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: transparent;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: rgba(114, 133, 146, 1.0);
    content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(114, 133, 146, 1.0);
}

.tooltip {
    background-color: #6c757d;
    border-radius: 4px;
}

.tooltip-inner {
    background-color: #6c757d;
    border-radius: 4px;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #6c757d;
}

fieldset fieldset legend {
    font-size: 20px;
}

/*=====( End General )===========================================================================*/
/*=====( Begin _Layout 'masterpage' )============================================================*/

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

.currentNavItem {
    border-bottom: solid 3px rgba(0, 0, 0, 0.4);
}

/*=====( End _Layout 'masterpage' )==============================================================*/
/*=====( Begin Elements )========================================================================*/

/*-----| Begin Headers */

h1 {
    color: rgba(0, 94, 132, 0.75);
}

h2 {
    color: rgba(0, 94, 132, 0.75);
}

h3 {
    color: rgba(0, 94, 132, 0.75);
}

h4 {
    color: rgba(0, 94, 132, 0.75);
}

h5 {
    color: rgba(0, 94, 132, 0.75);
}

h6 {
    color: rgba(0, 94, 132, 0.75);
}

/*-----| End Headers   */
/*-----| Begin Forms   */

.field-validation-error, .validation-summary-errors {
    font-style: italic;
}

label.error {
    font-style: italic;
    color: #dc3545 !important;
}

/* Change colors of disabled and readonly controls. */
.form-control:disabled, input.form-control:read-only, textarea.form-control:read-only {
    background-color: #FDFDFD;
    color: #A0AFBF;
    border-color: #A0AFBF;
    font-style: italic;
}

/*-----| End Forms     */
/*-----| Begin Buttons */

.btn:focus, .btn:focus, input[type=text]:focus, input[type=text]:focus, input[type=password]:focus, input[type=password]:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(176, 225, 218, 0.2);
}

.btn-submit {
    width: 100%;
    background-color: rgba(0, 56, 72, 1.0);
    color: white;
}

.btn-submit:hover, .btn-submit:focus {
    background-color: rgba(0, 56, 72, 1.0);
    color: white;
}

.btn-primary {
    color: #fff;
    background-color: rgba(0, 56, 72, 1.0);
    border-color: rgba(0, 56, 72, 1.0);
}

.btn-primary:hover {
    color: #fff;
    background-color: rgba(72, 99, 107, 1.0);
    border-color: rgba(72, 99, 107, 1.0);
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(142, 194, 209, 1.0);
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: rgba(0, 56, 72, 1.0);
    border-color: rgba(0, 56, 72, 1.0);
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: rgba(72, 99, 107, 1.0);
    border-color: rgba(0, 36, 48, 1.0);
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(142, 194, 209, 1.0);
}

.btn-secondary {
    color: #fff;
    background-color: rgba(114, 133, 146, 1.0);
    border-color: rgba(114, 133, 146, 1.0);
}

.btn-secondary:hover {
    color: #fff;
    background-color: rgba(84, 98, 107, 1.0);
    border-color: rgba(74, 86, 94, 1.0);
}

.btn-secondary:focus, .btn-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(195, 208, 216, 1.0);
}

.btn-secondary.disabled, .btn-secondary:disabled {
    color: #fff;
    background-color: rgba(114, 133, 146, 1.0);
    border-color: rgba(114, 133, 146, 1.0);
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: rgba(84, 98, 107, 1.0);
    border-color: rgba(60, 70, 76, 1.0);
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-outline-secondary {
    color: rgba(114, 133, 146, 1.0);
    border-color: rgba(114, 133, 146, 1.0);
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: rgba(114, 133, 146, 1.0);
    border-color: rgba(114, 133, 146, 1.0);
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5)
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: rgba(114, 133, 146, 1.0);
    background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: rgba(114, 133, 146, 1.0);
    border-color: rgba(114, 133, 146, 1.0);
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.btn-link {
    font-weight: 400;
    color: rgba(0, 119, 118, 1.0);
    text-decoration: none;
}

.btn-link:hover {
    color: rgba(0, 94, 132, 0.75);
    text-decoration: underline;
}

.btn-link:focus, .btn-link.focus {
    text-decoration: underline;
}

.btn-link:disabled, .btn-link.disabled {
    color: rgba(0, 94, 132, 1.0);
    pointer-events: none;
}

.accordionSectionHeaderButton {
    font-size: 18px;
}

.accordionSectionHeaderButton:hover,
.accordionSectionHeaderButton:focus,
.accordionSectionHeaderButton.focus {
    text-decoration: none;
    color: rgba(0, 94, 132, 0.75);
}

/*-----| End Buttons   */
/*-----| Begin Checkboxes and Radios */

input[type='checkbox'], input[type='radio'] {
    filter: grayscale(1)
}

/*-----| End Checkboxes and Radios */
/*-----| Begin Anchors */

a {
    color: rgba(0, 119, 118, 1.0);
}

a:hover {
    color: rgba(0, 94, 132, 0.75);
}

/*-----| End Anchors */

/*=====( End Elements )==========================================================================*/
/*=====( Begin Kendo )===========================================================================*/

/*-----| Begin Grid */

/* Remove Kendo default hover. This affects column headers as well as rows. */
html .k-grid tr:hover {
    background: transparent;
}

/* Grid itself */
.k-grid {
    background-color: white;
    color: rgba(63, 84, 100, 1.0); /* Text color the whole site uses. */
    border-style: none;
}

/* Grid header */
.k-grid-header-wrap.k-auto-scrollable {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-right-width: 0;
}
.k-grid-header {
    color: rgba(63, 84, 100, 1.0);
}

/* Grid Column Headers */
.k-grid-header th.k-header {
    font-size: 18px;
    background-color: rgba(114, 133, 146, 0.25); /* Primary color #3 */
    border-style: none;
    border-top: solid 1px rgba(114, 133, 146, 0.25); /* Primary color #3 */
    border-bottom: solid 2px rgba(114, 133, 146, 0.25); /* Primary color #3 */
}
.k-grid-header th.k-header:last-child {
    border-right: solid 1px rgba(114, 133, 146, 0.25); /* Primary color #3 */
}
.k-grid-header th.k-header:first-child {
    border-left: solid 1px rgba(114, 133, 146, 0.25); /* Primary color #3 */
}
.k-grid-header th.k-header.k-sorted {
    background-color: rgba(114, 133, 146, 1.0); /* Primary color #3 */
    border-top: solid 1px rgba(114, 133, 146, 1.0); /* Primary color #3 */
    border-bottom: solid 2px rgba(114, 133, 146, 1.0); /* Primary color #3 */
}
th.k-header.k-sorted .k-link {
    color: white;
}
.k-i-sort-asc-sm:before {
    content: "\e004";
    color: white;
}
.k-i-sort-desc-sm:before {
    content: "\e006";
    color: white;
}

/* Grid rows and cells */
.k-grid tr {
    background-color: white;
}
.k-grid tr td {
    border-style: none;
    border-top: 1px solid rgba(114, 133, 146, 0.25); /* Primary color #3 */
}
.k-grid tr:first-child td {
    border-style: none;
}
.k-grid tbody tr:hover {
    color: rgba(63, 84, 100, 1.0); /* Text color the whole site uses. */
    background-color: rgba(114, 133, 146, 0.05); /* Primary color #3 */
}
.k-grid tr td a {
    color: rgba(63, 84, 100, 1.0); /* Text color the whole site uses. */
}
    .k-grid tr td a:hover {
        color: #202B33;
    }

/* Grid pager */
.k-pager-wrap {
    color: rgba(63, 84, 100, 1.0); /* Text color the whole site uses. */
    background-color: rgba(114, 133, 146, 0.25); /* Primary color #3 */
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border: solid 1px rgba(114, 133, 146, 0.25); /* Primary color #3 */
}
a.k-pager-nav > span.k-icon {
    color: rgba(63, 84, 100, 1.0); /* Text color the whole site uses. */
}
a.k-link.k-pager-nav:hover {
    background-color: rgba(114, 133, 146, 0.5);
}

/*-----| End Grid   */

/*=====( End Kendo )=============================================================================*/

ul.ui-autocomplete {
    font-family: 'Montserrat';
    font-size: 15px;
    padding-left: 12px;
}

.accordion-section-header {
    padding: 0.25rem 0.5rem;
}


/* Bootstrap.css Updates */
.dropdown-item {
    color: rgba(0, 0, 0, 0.7);
}

    .dropdown-item:hover, .dropdown-item:focus {
        color: rgba(0, 0, 0, 0.9);
        background-color: #F5F5F5;
    }

    .dropdown-item.active, .dropdown-item:active {
        background-color: rgba(0, 0, 0, 0.3);
    }

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.7);
}

    .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
        color: rgba(0, 0, 0, 0.9);
    }

.blinking {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}
.notify {
    border-color: #FFA500 !important;
}