﻿html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    position: relative;
}

table.table > tbody > tr:nth-child(odd) {
    background-color: white;
}

table.table > tbody > tr:nth-child(even) {
    background-color: whitesmoke;
}


body {
    height: 100%;
}

/* #region Standard Colors */
/*Palleton Colors: http://paletton.com/#uid=23A0u0krZVfgmX6mrWbBOTfPnCI */
/*primary color: #2E8DEF */
/*primary text color: #ffff (White)*/
/*complementary-color CC1 (darkest): #055FBB;*/
/*complementary-color CC2 (darker): #0E7AE9;*/
/*complementary-color CC3 (lighter): #55A2F2;*/
/*complementary-color CC4 (lightest): #81B9F4;*/
/*complementary-color to CC4: #E6F2FE;*/
/*complement for white: WhiteSmoke*/
/*alternative offsetting primary color: #FFA620*/
/* #endregion */

/* #region Override for portal conversion conflicts */

#admintop {
    background-color: rgba(46,141,239,0.25);
}
/* #endregion */

/* #region Bootstrap Overrides */
.btn {
    border-radius: 0;
}

.btn-primary {
    background-color: #2E8DEF;
    border-color: #2E8DEF;
}

.btn-outline-primary {
    color: #2E8DEF;
    border-color: #2E8DEF;
}

.btn-danger {
    background-color: #f00;
    border-color: #f00;
}

.btn-outline-danger {
    color: #f00;
    border-color: #f00;
}

.row {
    margin-right: inherit;
    margin-left: inherit;
}

/* #endregion */

/* #region Page, Navbar, Sidebar, Content and Footer Elements*/

#fullpage {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer {
    position: absolute;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 40px;
    background-color: #2E8DEF;
    color: #fff;
    padding-left: 90px;
}

footer.footer div.container {
    width: 100%;
    padding-left: 30px;
}

.navbar-static-top {
    margin-bottom: 0px;
    background-color: #2E8DEF;
    border: 0;
}

.navbar-right.navbar-appuser {
    margin-top: 5px;
    margin-right: 25px;
    margin-left: 25px;
}

.navbar-brand {
    padding-left: 33px;
    padding-top: 10px;
}

    .navbar-brand img {
        height: 35px;
    }

.badge-notify {
    background-color: #F00;
    color: #FFF;
    position: absolute;
    right: 20px;
    bottom: 25px;
}

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: hidden;
}

#page-content-wrapper {
    padding: 15px 15px 0px 15px;
    width: 100%;
}

div#body-container {
    height: 100%;
    width: 100%;
    margin: auto;
    display: table-row;
}

div#body-container-left {
    background-color: #2E8DEF;
    height: 100%;
    width: 120px;
    display: table-cell;
}

div#body-container-left-wl {
    background-color: #2E8DEF;
    height: 100vh;
    width: 120px;
    display: table-cell;
}

div#body-container-right {
    height: 100%;
    width: 100%;
    margin-left: 120px;
    display: table-cell;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}

div#body-container-right-wl {
    height: 100vh;
    width: 100%;
    margin-left: 120px;
    display: table-cell;
}

#sidebar-wrapper {
    z-index: 1000;
    min-height: calc(100vh - 90px);
    /*overflow-y: auto;*/
    background-color: #2E8DEF;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

div#sidebar-wrapper div.list-group a.list-group-item {
    color: #fff;
    background-color: #2E8DEF;
    border: 0;
    padding-right: 0px;
    padding-left: 0px;
}

.list-sidebar .list-group-item:first-child {
    border-top-right-radius: 0px !important;
    border-top-left-radius: 0px !important;
}

.list-sidebar .list-group-item:last-child {
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 120px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 2px;
}

    .sidebar-nav li {
        text-indent: 15px;
        line-height: 40px;
    }

        .sidebar-nav li a {
            display: block;
            text-decoration: none;
            color: #fff;
        }

            .sidebar-nav li a:hover {
                text-decoration: none;
                color: #ccc;
                background: rgba(255,255,255,0.2);
                border-left: red 2px solid;
            }

            .sidebar-nav li a:active,
            .sidebar-nav li a:focus {
                text-decoration: none;
            }

    .sidebar-nav > .sidebar-brand {
        height: 65px;
        font-size: 18px;
        line-height: 60px;
    }

        .sidebar-nav > .sidebar-brand a {
            color: #fff;
        }

            .sidebar-nav > .sidebar-brand a:hover {
                color: #ccc;
                background: none;
            }

.no-margin {
    margin: 0;
}

/* #endregion */

/* #region Custom Checkboxes */

input[type=checkbox] {
    display: none;
}
    /*to hide the checkbox itself */
    input[type=checkbox] + label:before {
        font-family: FontAwesome;
        display: inline-block;
    }

    input[type=checkbox] + label:before {
        content: "\f096";
    }
    /*unchecked icon*/
    input[type=checkbox] + label:before {
        letter-spacing: 7px;
    }
    /*space between checkbox and label*/

    input[type=checkbox]:checked + label:before {
        content: "\f046";
    }
    /*checked icon*/
    input[type=checkbox]:checked + label:before {
        letter-spacing: 5px;
    }
    /*allow space for check mark*/

    input[type=checkbox]:disabled + label {
        opacity: 0.5;
    }

        input[type=checkbox]:disabled + label:before {
            opacity: 0.5;
        }

label:disabled {
    opacity: 0.5;
}
/* #endregion */

/* #region Accordions */
.accordionHeader {
    border: 1px solid #2E8DEF;
    color: white;
    background-color: #2E8DEF;
    font-family: Arial, Sans-Serif;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    margin-top: 5px;
    cursor: pointer;
}

    .accordionHeader a {
        color: #FFFFFF;
        background: none;
        text-decoration: none;
    }

        .accordionHeader a:hover {
            background: none;
            text-decoration: underline;
        }

.accordionHeaderSelected {
    border: 1px solid #2E8DEF;
    color: white;
    background-color: #2E8DEF;
    font-family: Arial, Sans-Serif;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    margin-top: 5px;
    cursor: pointer;
}

    .accordionHeaderSelected a {
        color: #FFFFFF;
        background: none;
        text-decoration: none;
    }

        .accordionHeaderSelected a:hover {
            background: none;
            text-decoration: underline;
        }

.accordionContent {
    background-color: whitesmoke;
    border: 1px solid #2E8DEF;
    border-top: none;
    padding: 5px;
    padding-top: 10px;
}

.accordionLink {
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* #endregion */

/* #region Ajax Calendar Overrides */
.AjaxCalendar .ajax__calendar_container {
    border: 1px solid #646464;
    background-color: white;
    color: black;
    width: 210px;
    height: 250px;
}

.AjaxCalendar .ajax__calendar_other .ajax__calendar_day,
.AjaxCalendar .ajax__calendar_other .ajax__calendar_year {
    color: #CCC;
}

.AjaxCalendar .ajax__calendar_hover .ajax__calendar_day,
.AjaxCalendar .ajax__calendar_hover .ajax__calendar_month,
.AjaxCalendar .ajax__calendar_hover .ajax__calendar_year {
    color: red;
}

.AjaxCalendar .ajax__calendar_active .ajax__calendar_day,
.AjaxCalendar .ajax__calendar_active .ajax__calendar_month,
.AjaxCalendar .ajax__calendar_active .ajax__calendar_year {
    color: black;
    font-weight: bold;
}

/* #endregion */

/* #region DataGrid */
.datagrid {
    border: outset 1px red;
}

.datagridheader {
    background-color: rgba(46,141,239,0.25);
    font-size: 12px;
    color: #055FBB;
    font-weight: bold;
    padding: 10px 10px;
    text-align: left;
    height: 40px;
    margin: 2px 2px 0px 2px;
}

/* #endregion */

/* #region Item, Alternating Item, and Selected Item Styles */
.altitem {
    background-color: whitesmoke;
    vertical-align: top;
    padding: 0px 2px 0px 2px;
}

.selecteditem {
    background-color: #E6F2FE;
    vertical-align: top;
    padding: 0px 2px 0px 2px;
    border: solid 1px black;
}

.item {
    background-color: White;
    vertical-align: top;
    padding: 0px 2px 0px 2px;
}
/* #endregion */

/* #region DataTable */

.dataTable {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
}

    .dataTable tbody td {
        padding: 5px 5px;
        background-color: #fff;
        border-bottom: none;
        color: #2E8DEF;
        text-align: left;
    }

    .dataTable tr:hover {
        background-color: #fff;
    }

        .dataTable tr:hover td {
            background-color: #fff;
        }

    .dataTable:hover {
        background-color: #fff;
    }

    .dataTable .label {
        font-weight: bold;
        font-size: 1em;
    }

    .dataTable input, select {
        color: #2E8DEF;
        border: inset 1px #055FBB;
        font-size: 1em;
    }

    .dataTable a {
        font-weight: bold;
        color: #2E8DEF;
        text-decoration: underline;
    }

/* #endregion */

/* #region DataList*/
.datalist {
    color: #2E8DEF;
    font-size: 1em;
    text-align: left;
}

    .datalist input, select {
        color: #2E8DEF;
        border: inset 1px #055FBB;
        font-size: 1em;
    }

    .datalist .label {
        color: #2E8DEF;
        font-weight: bold;
        font-size: 1em;
    }

/* #endregion */

/* #region Information Boxes */
.error-box {
    background: url("../images/error-box-bg.gif") repeat-x scroll 0 0 #FD1A0B;
    border: 1px solid #B9130C;
    color: #FFFFFF;
    height: 100px;
    vertical-align: top;
    margin-bottom: 20px;
    padding: 24px 30px 24px 110px;
    position: relative;
    width: 650px;
}

    .error-box p.icon {
        position: absolute;
        left: 34px;
        top: 24px;
        margin: 0;
    }

.info-box {
    border: 1px solid #2772ad;
    padding: 24px 30px 24px 110px;
    color: #fff;
    margin-bottom: 20px;
    background: url("../images/info-box-bg.gif") repeat-x scroll 0 0 #206ba6;
    position: relative;
    height: 1%;
}

    .info-box p.icon {
        position: absolute;
        left: 34px;
        top: 24px;
        margin: 0;
    }

.download-box {
    border: 1px solid #79ac03;
    padding: 24px 30px 24px 110px;
    color: #fff;
    margin-bottom: 20px;
    background: url("../images/download-box-bg.gif") repeat-x scroll 0 0 #6a9f03;
    position: relative;
    height: 1%;
}

    .download-box p.icon {
        position: absolute;
        left: 34px;
        top: 24px;
        margin: 0;
    }

.notification-box {
    border: 1px solid #ee9219;
    padding: 24px 30px 24px 110px;
    color: #fff;
    margin-bottom: 20px;
    background: url("../images/notification-box-bg.gif") repeat-x scroll 0 0 #e4730b;
    position: relative;
    height: 1%;
}

    .notification-box p.icon {
        position: absolute;
        left: 34px;
        top: 24px;
        margin: 0;
    }

/* #endregion */

/* #region Message Configuration Tables */
.messageconfigurationtable thead {
    /*background: none repeat scroll 0 0 transparent;*/
    background-color: rgba(46,141,239,0.25);
    border: 0 none;
    font-size: 100%;
    margin: 0;
    outline: 0 none;
    padding: 0;
    vertical-align: top;
}

    .messageconfigurationtable thead th {
        /*background: none repeat scroll 0 0 #D7D7D7;*/
        padding: 15px 20px;
        text-align: left;
        color: #2E8DEF;
        font-weight: bold;
    }

.messageconfigurationtable tbody td {
    background: none repeat scroll 0 0 #FFFFFF;
    border-bottom: 1px solid #055FBB;
    padding: 10px;
    text-align: left;
}

/* #endregion */

/* #region Patient Table */
.patienttable thead {
    background-color: #2E8DEF;
    border: 0 none;
    font-size: 100%;
    margin: 0;
    outline: 0 none;
    padding: 0;
    vertical-align: top;
}

    .patienttable thead th {
        padding: 15px 20px;
        text-align: left;
        color: #fff;
        font-weight: bold;
    }

.patienttable tbody td {
    background: none repeat scroll 0 0 #FFFFFF;
    border-bottom: 1px solid #055FBB;
    padding: 10px;
}

/* #endregion */

/* #region Popup Panel */

.ProgressBackgroundFilter {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-color: #2E8DEF;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; /* first! */
    filter: alpha(opacity=50); /* second! */
    /*-moz-opacity: 0.5;*/ /* third! */
    opacity: 0.5; /* last! */
    z-index: 10000;
}

.ProcessMessage {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 300px;
    margin-left: -150px;
    height: 100px;
    margin-top: -50px;
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    background-color: #2E8DEF;
    border: 5px solid white;
    color: white;
    border-radius: 10px;
    z-index: 1001;
}

.PopupPanel {
    background-color: #fff;
    border: solid 2px #000;
    padding: 3px;
    /*width:250px;*/
    z-index: 999;
}

.PopupHeader {
    color: #fff;
    background-color: whitesmoke;
    border: solid 1px #CFDCE6;
    height: 30px;
}

    .PopupHeader TD {
        color: #000;
        background-color: whitesmoke;
        border: solid 0px #000000;
        padding: 5px 5px;
    }

/* #endregion */

/* #region Modal Popup */
.CMDModalBackground {
    background-color: Gray;
    filter: alpha(opacity=70);
    opacity: 0.7;
}

.CMDModalPopup {
    background-color: whitesmoke;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    padding: 3px;
    width: 250px;
}

.CMDModalHeader {
    color: #DDE4EC;
    background: url("../images/bg.png") repeat scroll left top transparent;
    border: solid 1px navy;
}

.CMDModalErrorTitle {
    color: Red;
    font-weight: bold;
}

.CMDModalErrorText {
    color: Red;
}
/* #endregion */

/* #region Table Styles */

/*Added table-repsonsive to select only the responsive tables*/

.table tbody {
    width: 100%;
}

.table thead tr {
    /*background-color: #055FBB;*/
}

.table tr {
    vertical-align: top;
    /*background: whitesmoke;*/
}

.table td {
    font-size: 1rem;
    border-top: none;
}

    .table td input {
        font-weight: 100;
        border-radius: 2px;
    }

/*New Classes*/
.payer-row {
    background-color: #81B9F4; /*light-bg*/
    vertical-align: top;
    font-size: 1rem;
    padding: 0px 5px 0px 5px;
}

/*Input Styles*/

/*.input-group-addon 
{
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    background-color: #eee;
    border: none;
    border-radius: 4px;
    display: table-cell;
}*/

/*input styling*/
.input-group > .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group-addon, input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

.input-group, form-comtrol {
    position: relative;
    z-index: auto;
    float: left;
    width: 100%;
    margin-bottom: 0;
}

/*Row Styling*/
.table-striped tbody tr:nth-of-type(odd) {
    /*background-color: #81B9F4;*/
}

/*#endregion*/

/*#region BS4 Tabs Styling*/

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #2E8DEF;
    border-color: #dee2e6 #dee2e6 #fff;
}

/*#endregion*/

/* #region Nested Datagrid Styles */
.dgheader {
    font-size: 12px;
    font-weight: bold;
    text-align: left;
    margin: 2px 2px 0px 2px;
    background-color: #03406A;
    color: White;
    border: 1px solid white;
    padding: 2px 2px 2px 2px;
}

.dgfooter {
    font-size: 12px;
    font-weight: bold;
    padding: 10px 10px;
    text-align: left;
    margin: 2px 2px 0px 2px;
    background-color: #03406A;
    border: 1px solid white;
    color: white;
}

tr.dgrow, .dgrow {
    background-color: rgba(245, 245, 245, 1) !important;
    font-size: 10pt;
    padding: 0px 2px 0px 2px;
    border: solid 1px white;
}

tr.errorrow, .errorrow {
    background-color: whitesmoke;
    vertical-align: top;
    font-size: 10pt;
    padding: 0px 2px 0px 2px;
    color: red;
    border: solid 1px white;
}

tr.dgrow span, .dgrow span, label {
    color: Black;
}

.errorrow span, tr.errorrow span {
    color: red;
}

.dgaltrow, tr.dgaltrow {
    background-color: gainsboro;
    vertical-align: top;
    font-size: 10pt;
    padding: 0px 2px 0px 2px;
    border: solid 1px white;
}

.erroraltrow, tr.erroraltrow {
    background-color: gainsboro;
    vertical-align: top;
    font-size: 10pt;
    padding: 0px 2px 0px 2px;
    color: red;
    border: solid 1px black;
}

.erroraltrow span, tr.erroraltrow span {
    color: red;
}

tr.dgaltrow span, .dgaltrow span {
    color: Black;
}

tr.dgrow a, .dgrow a {
    color: Black;
}

tr.selectedrow td, .selectedrow td {
    background-color: #00733E;
    vertical-align: top;
    font-size: 10pt;
    padding: 0px 2px 0px 2px;
    border: solid 1px white;
    color: white;
}

tr.selectedrow a, .selectedrow a {
    color: White;
}

/*#region Legacy Styles*/
.headerlevel1 th {
    font-size: 1.15rem;
    font-weight: 700;
    text-align: left;
    margin: 5px 2px;
    background-color: #055FBB; /*dark-bg*/
    color: White; /*light-text*/
    padding: 10px;
    border-bottom: none;
}

.footerlevel1 {
    font-size: 1rem; /**/
    font-weight: bold;
    padding: 10px;
    text-align: left;
    margin: 2px;
    background-color: #055FBB; /*dark-bg*/
    color: White; /*light-text*/
}

.rowlevel1 {
    /*background-color: #81B9F4; light background color*/
    vertical-align: top;
    padding: 0px 5px 0px 5px;
    color: Black; /*dark-text*/
}

.altrowlevel1 td tr {
    /* background-color: #24577B; light-background color*/
    vertical-align: top;
    padding: 0px 5px 0px 5px;
    color: Black; /*dark-text*/
}

.rowlevel1 a {
    color: Black;
    text-decoration: none;
}

/*Style for altrowlevel1 a*/
.altrowlevel1 a {
    color: Black;
    text-decoration: none;
}

/*Hover Effect for a elements inside PayerTable*/
.rowlevel1 a:hover {
    color: #055FBB; /*darkest blue*/
    text-decoration: none;
}

.altrowlevel1 a:hover {
    color: #055FBB;
    text-decoration: none;
}

.selectedrowlevel1 td {
    background-color: #055FBB; /*Change this to match the darkest current color*/
    vertical-align: top;
    font-size: 1rem;
    /*padding: 0px 5px 0px 5px;*/
    color: white;
}

.selectedrowlevel1 a {
    color: White;
}

    .selectedrowlevel1 a:hover {
        text-decoration: none;
    }
/*#endregion*/

.headerlevel2 th {
    font-size: 12px;
    font-weight: bold;
    text-align: left;
    margin: 2px 2px 0px 2px;
    padding: 2px 2px 2px 2px;
    background-color: #0A64A4;
    color: White;
}

.altrowlevel2 td tr {
    background-color: #0A64A4;
    vertical-align: top;
    font-size: 10pt;
    padding: 0px 2px 0px 2px;
}

.selectedrowlevel2 td {
    background-color: #00B060;
    vertical-align: top;
    font-size: 10pt;
    padding: 0px 2px 0px 2px;
    color: Black;
}

.selectedrowlevel2 a {
    color: Black;
}

.rowlevel2 {
    background-color: #0A64A4;
    vertical-align: top;
    font-size: 10pt;
    padding: 0px 2px 0px 2px;
    color: White;
}

    .rowlevel2 a {
        color: white;
    }

.headerlevel3 th {
    font-size: 12px;
    font-weight: bold;
    text-align: left;
    margin: 2px 2px 0px 2px;
    background-color: #3E94D1;
    color: white;
    padding: 2px 2px 2px 2px;
}

.altrowlevel3 td tr {
    background-color: #3E94D1;
    vertical-align: top;
    font-size: 10pt;
    padding: 0px 2px 0px 2px;
    color: Black;
}

.selectedrowlevel3 td {
    background-color: #36D88E;
    vertical-align: top;
    font-size: 10pt;
    padding: 0px 2px 0px 2px;
    color: Black;
}

.rowlevel3 td {
    background-color: #3E94D1;
    vertical-align: top;
    font-size: 10pt;
    padding: 0px 2px 0px 2px;
    color: black;
}

.rowlevel3 a {
    color: White;
}

.headerlevel4 th {
    font-size: 12px;
    font-weight: bold;
    text-align: left;
    margin: 2px 2px 0px 2px;
    background-color: #65A5D1;
    color: white;
    padding: 2px 2px 2px 2px;
}

.altrowlevel4 td {
    background-color: gainsboro;
    vertical-align: top;
    font-size: 10pt;
    padding: 0px 2px 0px 2px;
    color: Black;
}

.selectedrowlevel4 td {
    background-color: gainsboro;
    vertical-align: top;
    font-size: 10pt;
    padding: 0px 2px 0px 2px;
    color: Black;
}

.rowlevel4 td {
    background-color: gainsboro;
    vertical-align: top;
    font-size: 10pt;
    padding: 0px 2px 0px 2px;
    color: Black;
}
/* #endregion */

/* #region Media Queries */

/*@media(min-width:300px) {
    #sidebar-wrapper {
        width: 40px;
    }

    .navbar-right.navbar-appuser {
        margin-top: 5px;
        margin-right: auto;
        margin-left: auto;
        max-width: 300px;
    }

    div#sidebar-wrapper div.list-group a.list-group-item {
        font-size: .75em;
        padding-left: 0px;
    }

    div#sidebar-wrapper div.list-group a.list-group-item span {
        display: none;
    }

    div#body-container-left {
        width: 50px;
    }

    div#body-container-right {
        margin-left: 50px;
    }
}*/

@media(min-width:768px) {
    #sidebar-wrapper {
        width: 120px;
    }

    div#sidebar-wrapper div.list-group a.list-group-item {
        font-size: 1em;
    }

        div#sidebar-wrapper div.list-group a.list-group-item span {
            display: inherit;
        }

    div#body-container-left {
        width: 120px;
        height: 100%;
    }

    div#body-container-right {
        margin-left: 120px;
        width: 100%;
        height: 100%;
    }

    div#body-container-left-wl {
        width: 120px;
        height: 100vh;
    }

    div#body-container-right-wl {
        width: 100%;
        height: 100vh;
    }
}

/* #endregion */

/* default layout */
.ajax__tab_default .ajax__tab {
    display: block;
    float: left;
    height: 36px !important;
    margin-top: 1px;
    background-color: whitesmoke !important;
    margin-right: 2px !important;
}

.ajax__tab a {
    color: #333 !important;
}

.ajax__tab_active a {
    color: white !important;
}

.ajax__tab_default .ajax__tab_header {
    white-space: normal !important;
}

.ajax__tab_default .ajax__tab_outer {
    display: inline-block;
}

.ajax__tab_default .ajax__tab_inner {
    display: inline-block;
}

.ajax__tab_default .ajax__tab_tab {
    display: inline-block;
    overflow: hidden;
    text-align: center;
    outline: none;
}

.ajax__tab_xp .ajax__tab_disabled {
    color: #A0A0A0;
    cursor: default;
}

/* xp theme top / default */
.ajax__tab_xp .ajax__tab_header {
    background-position: bottom;
    background-repeat: repeat-x;
    font-family: inherit !important;
    font-size: 18px !important;
}

    .ajax__tab_xp .ajax__tab_header:before, .ajax__tab_xp .ajax__tab_header:after {
        content: "";
        display: table;
    }

    .ajax__tab_xp .ajax__tab_header:after {
        clear: both;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_outer {
        background-position: right;
        background-repeat: no-repeat;
        height: 36px !important;
        padding-right: 4px;
        border-top: 1px solid gainsboro !important;
        border-right: 1px solid gainsboro !important;
        border-left: 1px solid gainsboro !important;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_inner {
        background-repeat: no-repeat;
        padding-left: 3px;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_tab {
        background-repeat: repeat-x;
        margin: 0;
        padding: 4px;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_hover .ajax__tab_outer {
        background-position: right;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_hover .ajax__tab_inner {
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_hover .ajax__tab_tab {
        background-repeat: repeat-x;
        cursor: pointer;
    }
    /*.ajax__tab_xp .ajax__tab_header .ajax__tab_active { margin-top: 1px; } */
    .ajax__tab_xp .ajax__tab_header .ajax__tab_active .ajax__tab_outer {
        background-position: right;
        background-repeat: no-repeat;
        background-color: #2E8DEF !important;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_active .ajax__tab_inner {
        background-repeat: no-repeat;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_active .ajax__tab_tab {
        background-repeat: repeat-x;
    }

.ajax__tab_xp .ajax__tab_body {
    background-color: #ffffff;
    border: 1px solid gainsboro !important;
    border-top: 0;
    font-family: verdana,tahoma,helvetica;
    font-size: 10pt;
    padding: 8px;
}

/* xp theme vertical left */
.ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab {
    float: none;
}

.ajax__tab_xp .ajax__tab_header_verticalleft {
    background-position: right;
    background-repeat: repeat-y;
    font-family: verdana,tahoma,helvetica;
    font-size: 11px;
}

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_outer {
        background-position: right;
        background-repeat: no-repeat;
        height: 36px !important;
        padding-right: 4px;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_inner {
        background-repeat: no-repeat;
        padding-left: 3px;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_tab {
        background-repeat: repeat-x;
        margin: 0;
        padding: 4px;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_hover .ajax__tab_outer {
        background-position: right;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_hover .ajax__tab_inner {
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_hover .ajax__tab_tab {
        background-repeat: repeat-x;
        cursor: pointer;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_active:not(:first-child) {
        margin-top: 1px;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_active .ajax__tab_outer {
        background-position: right;
        background-repeat: no-repeat;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_active .ajax__tab_inner {
        background-repeat: no-repeat;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_active .ajax__tab_tab {
        background-repeat: repeat-x;
    }

.ajax__tab_xp .ajax__tab_body_verticalleft {
    background-color: #ffffff;
    border: 1px solid gainsboro !important;
    border-left: 0;
    font-family: verdana,tahoma,helvetica;
    font-size: 10pt;
    padding: 8px;
}

/* xp theme vertical right */
.ajax__tab_xp .ajax__tab_header_verticalright {
    background-position: left;
    background-repeat: repeat-y;
    font-family: verdana,tahoma,helvetica;
    font-size: 11px;
}

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_outer {
        background-position: right;
        background-repeat: no-repeat;
        height: 36px !important;
        padding-right: 4px;
    }

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_inner {
        background-repeat: no-repeat;
        padding-left: 3px;
    }

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_tab {
        background-repeat: repeat-x;
        margin: 0;
        padding: 4px;
    }

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_hover .ajax__tab_outer {
        background-position: right;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_hover .ajax__tab_inner {
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_hover .ajax__tab_tab {
        background-repeat: repeat-x;
        cursor: pointer;
    }

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_active {
        margin-top: 1px;
    }

        .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_active .ajax__tab_outer {
            background-position: right;
            background-repeat: no-repeat;
        }

        .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_active .ajax__tab_inner {
            background-repeat: no-repeat;
        }

        .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_active .ajax__tab_tab {
            background-repeat: repeat-x;
        }

.ajax__tab_xp .ajax__tab_body_verticalright {
    background-color: #ffffff;
    border: 1px solid gainsboro !important;
    border-right: 0;
    font-family: verdana,tahoma,helvetica;
    font-size: 10pt;
    padding: 8px;
}

/* header on bottom */
.ajax__tab_xp .ajax__tab_header_bottom {
    background-position: top;
    background-repeat: repeat-x;
    font-family: verdana,tahoma,helvetica;
    font-size: 11px;
}

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_outer {
        background-position: right;
        background-repeat: no-repeat;
        height: 36px !important;
        padding-right: 4px;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_inner {
        background-repeat: no-repeat;
        padding-left: 3px;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_tab {
        background-repeat: repeat-x;
        height: 17px;
        margin: 0;
        padding: 0 4px 4px 4px;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_hover .ajax__tab_outer {
        background-position: right;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_hover .ajax__tab_inner {
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_hover .ajax__tab_tab {
        background-repeat: repeat-x;
        cursor: pointer;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_active .ajax__tab_outer {
        background-position: right;
        background-repeat: no-repeat;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_active .ajax__tab_inner {
        background-repeat: no-repeat;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_active .ajax__tab_tab {
        background-repeat: repeat-x;
    }

.ajax__tab_xp .ajax__tab_body_bottom {
    background-color: #ffffff;
    border: 1px solid gainsboro !important;
    border-bottom: 0;
    font-family: verdana,tahoma,helvetica;
    font-size: 10pt;
    padding: 8px;
}

/* scrolling */
.ajax__scroll_horiz {
    overflow-x: scroll;
}

.ajax__scroll_vert {
    overflow-y: scroll;
}

.ajax__scroll_both {
    overflow: scroll;
}

.ajax__scroll_auto {
    overflow: auto;
}

.ajax__scroll_none {
    overflow: hidden;
}

/* plain theme */
.ajax__tab_plain .ajax__tab_outer {
    border: 2px solid gainsboro !important;
    text-align: center;
    vertical-align: middle;
}

.ajax__tab_plain .ajax__tab_inner {
    text-align: center;
    vertical-align: middle;
}

.ajax__tab_plain .ajax__tab_body {
    text-align: center;
    vertical-align: middle;
}

.ajax__tab_plain .ajax__tab_header {
    text-align: center;
    vertical-align: middle;
}

.ajax__tab_plain .ajax__tab_active .ajax__tab_outer {
    background: #FFFFE1;
}

.ajax__tab_xp .ajax__tab_header {
    background-image: none !important;
}

    .ajax__tab_xp .ajax__tab_header .ajax__tab_outer {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_inner {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_tab {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_hover .ajax__tab_outer {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_hover .ajax__tab_inner {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_hover .ajax__tab_tab {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_active .ajax__tab_outer {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_active .ajax__tab_inner {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header .ajax__tab_active .ajax__tab_tab {
        background-image: none !important;
    }

.ajax__tab_xp .ajax__tab_header_verticalleft {
    background-image: none !important;
}

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_outer {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_inner {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_tab {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_hover .ajax__tab_outer {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_hover .ajax__tab_inner {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_hover .ajax__tab_tab {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_active .ajax__tab_outer {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_active .ajax__tab_inner {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalleft .ajax__tab_active .ajax__tab_tab {
        background-image: none !important;
    }

.ajax__tab_xp .ajax__tab_header_verticalright {
    background-image: none !important;
}

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_outer {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_inner {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_tab {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_hover .ajax__tab_outer {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_hover .ajax__tab_inner {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_hover .ajax__tab_tab {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_active .ajax__tab_outer {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_active .ajax__tab_inner {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_verticalright .ajax__tab_active .ajax__tab_tab {
        background-image: none !important;
    }

.ajax__tab_xp .ajax__tab_header_bottom {
    background-image: none !important;
}

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_outer {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_inner {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_tab {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_hover .ajax__tab_outer {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_hover .ajax__tab_inner {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_hover .ajax__tab_tab {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_active .ajax__tab_outer {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_active .ajax__tab_inner {
        background-image: none !important;
    }

    .ajax__tab_xp .ajax__tab_header_bottom .ajax__tab_active .ajax__tab_tab {
        background-image: none !important;
    }

.ajax__calendar .ajax__calendar_container {
    position: absolute;
}

.link-tile-header hr {
    margin: 0 0 5px 0;
}

.link-tile-row {
    display: inline-flex;
    flex-wrap: wrap;
}

.link-tile {
    width: 160px;
    margin: 5px;
}

    .link-tile a {
        height: 160px;
        padding: 5px;
    }

        .link-tile a i {
            color: #2E8DEF;
            margin: 5px;
        }

        .link-tile a span {
            color: #2E8DEF;
        }

.link-tile-description {
    font-size: x-small;
    color: #888;
    margin-top: 5px;
}

#orderTable {
    width: 100% !important;
}

#admintop2 {
    margin-top: -50px !important;
    background-color: rgba(46,141,239,0.25);
}

.disabledPrevious:not(:enabled) {
    color: #fff;
    text-decoration: none;
}

.sidebar {
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100; /* Behind the navbar */
    /*padding: 90px 0 0; /* Height of navbar */
    background-color: #2E8DEF;
    width: 150px;
}

@media (min-width: 576px) {
    [role="main"] {
        padding-right: 20px;
        padding-left: 170px; /* 150 + 20 */
    }

        [role="main"].noSidebar {
            padding-right: 20px;
            padding-left: 20px;
        }
}

@media (max-width: 575px) {
    .sidebar {
        width: 100%;
    }
}

#sidebar a:hover {
    text-decoration: none;
}

.sidebar-sticky {
    position: relative;
    top: 0;
    /*height: calc(100vh - 48px);*/
    padding-top: 0;
    /*overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
    .sidebar-sticky {
        position: -webkit-sticky;
        position: sticky;
    }
}

/* Bubble with a right triangle
    ------------------------------------------ */
.triangle-right {
    position: relative;
    padding: 15px;
    margin: 1em 0 1em;
    color: #fff;
    background: #075698; /* default background for browsers without gradient support */
    /* css3 */
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#2e88c4), to(#075698));
    background: -moz-linear-gradient(#2e88c4, #075698);
    background: -o-linear-gradient(#2e88c4, #075698);
    background: linear-gradient(#2e88c4, #075698);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

    .triangle-right:after {
        content: "";
        position: absolute;
        bottom: -20px; /* value = - border-top-width - border-bottom-width */
        left: 45%; /* controls horizontal position */
        border-width: 20px 0 0 20px; /* vary these values to change the angle of the vertex */
        border-style: solid;
        border-color: #075698 transparent;
        /* reduce the damage in FF3.0 */
        display: block;
        width: 0;
    }

/* Bubble with a right triangle
    ------------------------------------------ */
.triangle-left-side {
    position: relative;
    padding: 15px;
    margin: 1em 0 1em;
    color: #fff;
    background: #075698; /* default background for browsers without gradient support */
    /* css3 */
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#2e88c4), to(#075698));
    background: -moz-linear-gradient(#2e88c4, #075698);
    background: -o-linear-gradient(#2e88c4, #075698);
    background: linear-gradient(#2e88c4, #075698);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

    .triangle-left-side:after {
        content: "";
        position: absolute;
        top: 96px; /* value = - border-top-width - border-bottom-width */
        left: -6%; /* controls horizontal position */
        border-width: 20px 0 0 20px; /* vary these values to change the angle of the vertex */
        border-style: solid;
        border-color: #1e73b2 transparent;
        /* reduce the damage in FF3.0 */
        display: block;
        width: 0;
    }


/* Radio Switch
    ------------------------------------------ */

.switch-field {
    font-family: "Lucida Grande", Tahoma, Verdana, sans-serif;
    overflow: hidden;
}

.switch-title {
    margin-bottom: 6px;
}

.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
    float: left;
}

.switch-field label {
    display: inline-block;
    width: 75px;
    background-color: #e4e4e4;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    text-shadow: none;
    padding: 6px 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    /*-ms-transition: all 0.1s ease-in-out;*/
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

    .switch-field label:hover {
        cursor: pointer;
    }

.switch-field input:checked + label {
    background-color: #2E8DEF;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
}

.switch-field label:first-of-type {
    border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
    border-radius: 0 4px 4px 0;
}

.shadow-tile {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}


/*BOOTSTAP OVERRIDES*/

.text-primary {
    color: #2e8def !important;
}

.bg-portal {
    background-color: #2E8DEF !important;
}

i.fg-portal:hover {
    color: #15487d !important;
}

/*.fg-portal {
    color: #2E8DEF !important;
}*/

.bg-adjustment {
    background-color: #1c4880 !important;
}

.border-adj-x {
    border-right: 1px solid #1c4880 !important;
    border-left: 1px solid #1c4880 !important;
}

.border-adj-right {
    border-right: 1px solid #1c4880 !important;
}

.border-adj-bottom {
    border-bottom: 1px solid #1c4880 !important;
}

/*.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #2e8def !important;
    color: #ffffff !important;
}*/

a {
    color: #2e8def;
}

.dropdown-item.active {
    background-color: #2e8def !important;
    color: #ffffff !important;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    color: #ffffff !important;
    background-color: #2e8def !important;
    border-color: #2e8def !important;
}

.btn-primary {
    color: #ffffff !important;
    background-color: #2e8def !important;
    border-color: #2e8def !important;
}

.btn-outline-primary:hover {
    color: #ffffff;
    background-color: #2e8def;
    border-color: #2e8def;
}

.btn-outline-primary {
    border-color: #2e8def;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS styles go here */
    .ieWidthFix {
        width: 100%;
    }
}


/* BS4 Search UI Styles */
.disabledStyle:disabled, .disabledConditional:disabled {
    background: whitesmoke;
    color: silver;
}

div.input-group-text.btn.rounded {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

select.dropdownOption {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    height: auto !important;
}

div .dropdownOption {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
    margin-top: .7rem;
    margin-right: 5px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 13px;
        width: 13px;
        left: 2px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #1a75bd;
}

input:checked + .slider-success {
    background-color: #28a745;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:focus + .slider-success {
    box-shadow: 0 0 1px #28a745;
}

input:checked + .slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.INVITModalBackground {
    background-color: Gray !important;
    filter: alpha(opacity=70);
    opacity: 0.7;
}

.INVITModalPopup {
    background-color: whitesmoke;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    padding: 3px;
    width: 850px;
}

.INVITModalHeader {
    background-color: #1892DE;
    color: White;
    text-align: center;
    font-weight: bold;
}

.sf-adjust {
    display: inline-block;
    padding: 0px;
    font-size: 14px;
    line-height: 1.42857143;
    background-color: #fff;
    border: none;
    box-shadow: none;
    width: 100%;
    border-radius: 2px;
}

    .sf-adjust.e-ddl {
        min-height: 39px !important;
        max-width: max-content;
        min-width: auto;
    }

    .sf-adjust:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 4px;
    }


#ddlOption_popup_list_wrapper {
    border-style: solid;
    border-width: 1px;
    border-color: #66afe9;
    border-radius: 0px;
}


#ddlOption_container:focus {
    border-color: #66afe9 !important;
    border: 1px;
    border-style: solid;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}

#ddlOption_wrapper:focus {
    border-color: #66afe9 !important;
    border: 1px;
    border-style: solid;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}

.e-check-input {
    display: none !important;
}

.labelCorner {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.e-corner {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

.conditionalCorner {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.dateBox:disabled {
    background: whitesmoke;
    color: silver;
}

.ticketHeader {
    background-color: #686c71;
    color: #fff;
}

.headerlevel {
    background-color: #1892DE;
    color: White;
    font-size: 10pt;
}

.rowlevel {
    background-color: whitesmoke;
    font-size: 10pt;
    padding-left: 2px;
}

.altrowlevel {
    background-color: gainsboro;
    font-size: 10pt;
    padding-left: 2px;
}

.selectedrowlevel {
    background-color: Yellow;
    font-size: 10pt;
    padding-left: 2px;
}

td div .claimsCheckBox input[type=checkbox] {
    display: block !important;
}

.divInline {
    display: inline-block;
    margin-right: 5px;
    margin-top: 5px;
}

.evenRow {
    background-color: whitesmoke;
}

tr.evenRow {
    background-color: whitesmoke !important;
}

tr.oddRow {
    background-color: white !important;
}


.modal-footer {
    background-color: whitesmoke;
}

.oddRow {
    background-color: white;
}

.ajax__tab_body input, .ajax__tab_body select {
    font-size: 14px !important;
}

.btn-outline-portal {
    color: #2E8DEF;
    background-color: transparent;
    background-image: none;
    border-color: #2E8DEF;
}

    .btn-outline-portal:hover {
        color: #ffffff;
        background-color: #2E8DEF;
        border-color: #2E8DEF;
    }

.click-pointer {
    cursor: pointer;
}

.mutedText {
    color: #495057 !important;
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .modal-lg, .modal-xl {
        max-width: 800px;
    }
}

.eobTransactionEven {
    background-color: #255b92;
}

.eobTransactionOdd {
    background-color: #226ab5;
}

.sidebar {
    min-height: calc(100vh - 115px);
}

.smallText {
    font-size: .85rem !important;
}

.formGroupSmall, .formGroupSmall > .input-group {
    margin-bottom: .25rem !important;
}

.formControlSmall {
    height: calc(1.75rem + 2px);
    font-size: .75rem !important;
}

.formGroupSmall > label {
    font-size: .75rem !important;
}

.formGroupSmall .form-control {
    height: calc(1.75rem + 2px);
    font-size: .75rem !important;
}

.formGroupSmall .input-group-btn .btn {
    height: calc(1.75rem + 2px);
    font-size: .60rem !important;
}

.prependBorderButton {
    outline: 1px solid #ced4da;
    height: 36px;
    margin-top: 1px;
}

.portal-duotone-fill {
    --fa-primary-color: #2e8def;
    --fa-primary-opacity: 0.3;
    --fa-secondary-opacity: 1.0;
}

.break-word {
    word-break: break-all;
}

.portalIconButton {
    color: #fff;
}

.fa-stack[data-count]:after {
    position: absolute;
    right: 0%;
    top: 1%;
    content: attr(data-count);
    font-size: 30%;
    padding: .6em;
    border-radius: 999px;
    line-height: .75em;
    color: white;
    background: rgba(255,0,0,.85);
    text-align: center;
    min-width: 2em;
    font-weight: bold;
}

/* Custom Font Awesome Sizes */
.fa-stack-1.5x {
    font-size: 1.25em;
}

.bg-gray {
    background-color: gainsboro;
}

/* Opacity helpers */

.opacity-0 {
    opacity: 0 !important;
}

.opacity-1 {
    opacity: 0.2 !important;
}

.opacity-2 {
    opacity: 0.4 !important;
}

.opacity-3 {
    opacity: 0.6 !important;
}

.opacity-4 {
    opacity: .8 !important;
}

.opacity-5 {
    opacity: 1 !important;
}

.modal-height-constraint {
    max-height: 60vh;
    overflow-y: auto;
}

.pointer-events-none {
    pointer-events: none;
}

.validsumm:before {
    font-family: FontAwesome;
    content: "\f057";
    margin-right: .5rem;
    font-size: 1rem;
}

a.overridehover:hover {
    text-decoration: none;
    color: transparent;
}

a.danger:hover {
    text-decoration: none;
    color: var(--danger);
}

a.danger {
    text-decoration: none;
    color: var(--danger);
}

.inactiveAttachment {
    background-color: var(--danger);
    color: var(--danger);
}

.inactiveAttachment > td > input {
    pointer-events: none;
    color: grey;
    border-color: grey;
}

.inactiveAttachment > td > select {
    pointer-events: none;
    color: grey;
    border-color: grey;
}

.no-border {
    border: none;
}

.no-border:hover {
    border: none;
}

.no-border::selection {
    border: none;
}

.no-border:focus {
    border: none;
}

.no-border:focus-visible {
    border: none;
}

.notify {
    top: -0.95em;
    left: -0.4em;
}

.username {
    width: clamp(6rem, 8rem, 9rem);
    overflow: hidden;
    text-overflow: ellipsis;
}

.rolename {
    width: clamp(3rem, 5rem, 10rem);
    overflow: hidden;
}

.settings {
    position: absolute;
    min-width: clamp(15rem, 17rem, 18rem);
    max-width: clamp(18rem, 19rem, 21rem);
    box-shadow: 1em 1em 2em grey;
}

.announcements {
    top: 100% !important;
    min-width: clamp(18em, 20em, 22em);
    max-width: clamp(23em, 24em, 26em);
    box-shadow: 1em 1em 2em grey;
}

.subheader {
    font-size: 90%;
}

.setting-header {
    background-color: rgba(0,0,0,.03);
}

.profileOpacity {
    background-color: rgba(0,0,0,0.3);
}

.user-profile:hover {
    background-color: rgba(0,0,0,0.3);
}

#caretRoles {
    width: 10px;
}

user-profile:hover > span::after {
    background-image: none;
}

.username:hover::after {
    background-image: none;
}

.profile {
    min-width: clamp(22em,25em,27em);
    max-width: clamp(27em,28em,29em);
    position: absolute;
    box-shadow: 0.5em 0.5em 0.75em grey;
    width: initial;
    z-index: 1050;
}

.profileImage {
    min-height: clamp(2em, 4em, 6em);
    min-width: 4em;
}

.img-round {
    border-radius: 50%;
    width: 1em;
    height: 1em;
    padding: .25em;
    background-color: #212121;
    margin-left: auto;
    margin-right: auto;
}

.nav-link:hover {
    background-color: rgba(0,0,0,0.3);
}

.messages {
    min-width: clamp(16em, 22em, 23em);
    max-width: clamp(25em, 26em, 27em);
    top: 100% !important;
    position: absolute;
    box-shadow: 1em 1em 2em grey;
    width: initial;
}

.message-user-img {
    font-size: 2.75em !important;
}

.nav-message {
    font-size: .8rem;
    /*font-size: .75rem;*/ /*too small*/
}

/*.truncate {
    width: clamp(5rem, 7rem, 8rem);
    overflow: hidden;
    text-overflow: ellipsis;
}*/

.alerts {
    min-width: clamp(12vw, 17vw, 20vw);
    max-width: clamp(22vw, 25vw, 27vw);
    position: absolute;
    box-shadow: 1em 1em 2em grey;
    width: initial;
}

.notifications {
    min-width: clamp(12vw, 17vw, 20vw);
    max-width: clamp(22vw, 25vw, 27vw);
    position: absolute;
    box-shadow: 1em 1em 2em grey;
    width: initial;
}

.usernav {
    cursor: pointer;
    user-select: none;
}

#nav-user-icon {
    font-size: 1.5em;
}

.cursor-auto {
    cursor: auto;
}

.disabled {
    color: grey;
    user-select: none;
    pointer-events: none;
}

.embed-modal .modal, .embed-modal .modal-xl {
    display: block;
    position: relative;
    margin: 0px;
    padding: 0px;
    max-width: none;
    z-index: 0;
}

.embed-modal .modal-header {
    display: none;
}

.embed-modal .modal-dialog {
    max-width: none;
}

.squared .modal-content {
    border-radius: 0px;
}

.border-rounded-top {
    border: 1px solid rgba(0,0,0,.2);
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

.cursor-alias {
    cursor: alias;
}

.external-provider-table {
    min-width: max-content;
}

.external-provider-table > tbody > tr {
    vertical-align: top;
    font-size: 10pt;
    padding: 0px 2px 0px 2px;
    border: solid 1px white;
}

.external-provider-table > tbody > tr.disabled {
    background-color: silver;
}

.external-provider-table > tbody > tr.disabled > td {
    padding: .3rem;
}

.external-provider-table > tbody > tr.disabled > span {
    text-decoration: underline;
    font-size: 1rem;
}

.external-provider-table > tbody > tr:not(.disabled):nth-child(even) {
    background-color: whitesmoke;
}

.external-provider-table > tbody > tr:not(.disabled):nth-child(odd) {
    background-color: gainsboro;
}

.external-provider-table > tbody > tr[header] {
    color: white;
    background-color: var(--primary, --wl-primary-color);
}

.external-provider-table > tbody > .load-more-results {
    cursor: pointer;
    color: black;
    background-color: var(--warning) !important;
    user-select: none;
}

[imagehover] {
    cursor: pointer;
}

[imagehover]:hover {
    background: var(--wl-primary-color);
    color: white;
}

.imagehover-dialog {
    max-width: 90vw;
    width: 90vw;
}

.imagehover {
    z-index: 1147483647;
    flex: 1 1 auto;
    height: 100%;

}

.imagehover-body {
    height: 90vh;
    display: flex;
    align-self: center;
}

.imagehover-image {
    margin: auto;
    cursor: zoom-in;
    width: auto;
    height: 100%;
}

.imgHoverModal {
    z-index: 1147483646;
}

.close-image-hover {
    color: var(--danger);
    position: absolute;
    right: 0;
    top: 0;
    margin: 1rem;
    z-index: 1;
}

.close-image-hover:hover {
    color: var(--wl-primary-color);
}

.img-magnifier-glass {
    position: absolute;
    border: 1px solid #000;
    /*Set the size of the magnifier glass:*/
    width: 20vw;
    height: 20vw;
    z-index: 2147483647;
    cursor: zoom-out;
}

.width-auto {
    width: auto;
}

.modal-xxl {
    max-width: none;
    padding-left: 17px;
}

.form-control-nofill {
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.no-margin > label {
    margin: 0px;
}

.lblTableHeader {
    font-weight: bold;
}

.table-striped.container-fluid {
    border: 1px solid #dee2e6 !important;
    padding: 0px;
}

.table-striped.container-fluid > .row:nth-child(1) {
    background-color: gainsboro;
    font-weight: bold;
}

.table-striped.container-fluid > .row:nth-child(even) {
    background-color: whitesmoke;
}

option[HeaderInfo="true"] {
    background-color: white;
    font-size: small;
    color: silver;
}

table.table > thead > tr:nth-child(1) {
    background-color: gainsboro;
    font-weight: bold;
}

table.table {
    border: 1px solid #dee2e6 !important;
    padding: 0px;
}

table.table tbody th {
  border: none;
}

table.table tbody tr td {
  border: none;
}

.fa-custom-stack-small {
    font-size: 1.55em;
    margin-bottom: 0.5rem;
}

.fa-custom-stack-padding-small {
    padding-right: 0.6rem;
    font-size: smaller;
    top: -0.3rem;
}