/* COPY - NO SELECT + HIGHLIGHT COLOR */
* {
    user-select: none;
}

    *::selection {
        background: none;
    }

    *::-moz-selection {
        background: none;
    }
/* Vars */
* {
    --primaryBGColor: #306BAC;
}

body {
    background-color: #EEEEEE;
    padding-top: 60px;
    font-size: 14px;
    color: #424242;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

p {
    color: #777;
}

a, a:hover, a:focus {
    color: var(--primaryBGColor);
}

h1, h2, h3, h4, h5, h6 {
    color: #424242;
}

h1 {
    font-weight: 300;
    font-size: 40px;
}

.tableSmall > thead > tr > th, .tableSmall > tbody > tr > th, .tableSmall > tfoot > tr > th, .tableSmall > thead > tr > td, .tableSmall > tbody > tr > td, .tableSmall > tfoot > tr > td {
    padding: 1px;
    line-height: 1.42857143;
    vertical-align: top;
    text-align: center;
    border: 1px solid #ddd;
}

.tableSmall > thead > tr > th {
    border-bottom: 1px solid #e6e7e8;
    vertical-align: middle;
    text-align: center;
    height: 50px;
    padding: 8px;
}


h2 {
    font-weight: 300;
    margin-bottom: 20px;
}

h3, h4 {
    font-weight: 300;
}

.alignRight {
    text-align: right;
}

.large {
    font-size: 2em;
}

.text-muted {
    color: #c5c7cc;
}

.color-gray {
    color: #424242;
}

.color-blue {
    color: var(--primaryBGColor);
}

.color-teal {
    color: #1ebfae;
}

.color-orange {
    color: #ffb53e;
}

.color-red {
    color: #f9243f;
}

.no-padding {
    padding: 0;
    margin: 0;
}

.fa-xl {
    font-size: 2em;
}

input[type='radio'],
input[type='checkbox'] {
    margin-right: 5px !important;
}

input.form-control {
    border: 1px solid #ddd;
    box-shadow: none;
    height: 46px;
}

.bootstrap-table input.form-control {
    height: 34px;
}

.input-group-btn .btn {
    height: 46px;
}

.form-control:focus {
    border: 1px solid var(--primaryBGColor);
    outline: 0;
    box-shadow: inset 0px 0px 0px 1px var(--primaryBGColor);
}

.is-ami-edit{
    background-color: bisque;
}

.is-ami-edit-readonly {
    background-color: bisque;
    pointer-events: none;
    user-select: none;
}

.has-success .form-control {
    border: 1px solid #8ad919;
}

.has-warning .form-control {
    border: 1px solid #ffb53e;
}

.has-error .form-control {
    border: 1px solid #f9243f;
}

.has-success .form-control:focus {
    border: 1px solid #8ad919;
    box-shadow: inset 0px 0px 0px 1px #8ad919;
}

.has-warning .form-control:focus {
    border: 1px solid #ffb53e;
    box-shadow: inset 0px 0px 0px 1px #ffb53e;
}

.has-error .form-control:focus {
    border: 1px solid #f9243f;
    box-shadow: inset 0px 0px 0px 1px #f9243f;
}

.navbar-custom {
    background: #333;
    height: 60px;
}

.navbar-header .navbar-brand {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    height: 60px;
    padding-top: 18px;
}

    .navbar-header .navbar-brand span {
        color: var(--primaryBGColor);
    }

.navbar-toggle {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    margin-top: 10px;
}

    .navbar-toggle:hover {
        background: rgba(255, 255, 255, 0.05);
    }

.navbar-default .navbar-nav > li > a {
    color: #fff;
}

.welcome {
    display: inline-block;
    color: #fff;
    background-color: #333;
    margin-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
}

.pwStrengthBar {
    display: inline-block;
    width: 200px;
    height: 20px;
    background-color: lightgray;
    border-radius: 10px;
    margin-left: 5px;
    margin-right: 5px;
    border-width: 1px;
    border-color: gray;
    border-style: solid;
    overflow: hidden;
}

    .pwStrengthBar div {
        display: inline-block;
        position: relative;
        height: 20px;
        background-color: rgb(100,100,100,.8);
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        background: linear-gradient(90deg,red,orange,green) left/calc(100% - 150px) 100%;
        background-size: 200px;
    }

.icon-bar {
    background: #fff;
}

.dropdown {
    background: rgba(255, 255, 255, 0.1);
    float: left;
    margin: 10px 8px;
    padding: 0px;
    border-radius: 4px;
}

    .dropdown a.dropdown-toggle {
        color: #fff;
        height: 40px;
        min-width: 40px;
        padding-top: 11px;
        padding-left: 9px;
    }

    .dropdown:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.2);
    }

    .dropdown .label {
        top: -4px;
        left: 22px;
        padding-top: 4px;
        padding-bottom: 4px;
        position: absolute;
        border-radius: 9999px;
    }

.navbar-top-links li:last-child {
    margin-right: 15px;
}

.nav > li > a:hover, .nav > li > a:focus, .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.2);
    background: none;
}

.dropdown-messages {
    border: 1px solid #fff;
    width: 360px;
    background: rgba(255, 255, 255, 0.9);
    color: #444;
    font-size: 0.9em;
}

    .dropdown-messages img {
        margin: 5px 10px;
        float: left;
    }

    .dropdown-messages .message-body {
        margin: 5px;
        float: left;
        width: 280px;
    }

.dropdown small {
    color: #999;
}

.dropdown em {
    margin: 0 5px;
}

.dropdown-menu > li > a {
    padding: 5px 10px;
}

.dropdown-menu li .message-body a {
    color: #444;
}

.dropdown-menu li a:hover {
    color: var(--primaryBGColor);
    text-decoration: none;
    background: none;
}

.divider, .clear {
    clear: both;
}

.dropdown-alerts {
    border: 1px solid #fff;
    width: 260px;
    background: rgba(255, 255, 255, 0.9);
    color: #444;
    font-size: 0.9em;
}

.all-button a {
    text-align: center;
    color: #444;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
}

a.btn:hover, button:hover {
    opacity: 0.8;
}

a.btn:active, button:active {
    box-shadow: inset 0px 0px 500px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.btn-primary, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary, .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
    background-color: var(--primaryBGColor) !important;
    border-color: var(--primaryBGColor) !important;
}

.btn-success, .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success, .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active {
    background-color: #8ad919;
    border-color: #8ad919;
}

.btn-warning, .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning, .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active {
    background-color: #ffb53e;
    border-color: #ffb53e;
}

.btn-danger, .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger, .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active {
    background-color: #f9243f;
    border-color: #f9243f;
}

.btn-link, .page-link, .text-primary {
    color: var(--primaryBGColor) !important;
}

    .btn-link:focus, .btn-link:hover, .page-link:focus, .page-link:hover, a.text-primary:focus, a.text-primary:hover {
        color: #50b3ff !important;
    }

.btn-circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    border-radius: 50%;
}

.btn-lg {
    font-size: 15px;
    height: 44px;
}

.btn-margins button.btn {
    margin: 0 4px 6px 0 !important;
}

.bg-primary {
    color: #1b3548;
    background-color: #e9ecf2;
}

a.bg-primary:hover {
    background-color: #e9ecf2;
}

.bg-success, .bg-green {
    color: #fff;
    background-color: #8ad919;
}

a.bg-success:hover, a.bg-green:hover {
    background-color: #8ad919;
}

.bg-success a, .bg-green a {
    color: rgba(255, 255, 255, 0.75);
}

.bg-teal {
    color: #fff;
    background-color: #1ebfae;
}

a.bg-teal:hover {
    background-color: #1ebfae;
}

.bg-teal a {
    color: rgba(255, 255, 255, 0.75);
}

.bg-info, .bg-blue {
    color: #fff;
    background-color: var(--primaryBGColor);
}

a.bg-info:hover, a.bg-blue:hover {
    background-color: var(--primaryBGColor);
}

.bg-info a, .bg-blue a {
    color: rgba(255, 255, 255, 0.75);
}

.bg-warning, .bg-orange {
    color: #fff;
    background-color: #ffb53e;
}

a.bg-warning:hover, a.bg-orange:hover {
    background-color: #ffb53e;
}

.bg-warning a, .bg-orange a {
    color: rgba(255, 255, 255, 0.75);
}

.bg-danger, .bg-red {
    color: #fff;
    background-color: #f9243f;
}

a.bg-danger:hover, a.bg-red:hover {
    background-color: #f9243f;
}

.bg-danger a, .bg-red a {
    color: rgba(255, 255, 255, 0.75);
}

a.label:hover, a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.label:empty {
    display: none;
}

.btn .label {
    position: relative;
    top: -1px;
}

.label-default {
    background-color: #777;
}

    .label-default[href]:hover, .label-default[href]:focus {
        background-color: #5e5e5e;
    }

.label-primary {
    color: #fff;
    background-color: var(--primaryBGColor);
}

    .label-primary[href]:hover, .label-primary[href]:focus {
        background-color: var(--primaryBGColor);
    }

.label-success {
    background-color: #8ad919;
}

    .label-success[href]:hover, .label-success[href]:focus {
        background-color: #8ad919;
    }

.label-info {
    background-color: var(--primaryBGColor);
}

    .label-info[href]:hover, .label-info[href]:focus {
        background-color: var(--primaryBGColor);
    }

.label-warning {
    background-color: #ffb53e;
}

    .label-warning[href]:hover, .label-warning[href]:focus {
        background-color: #ec971f;
    }

.label-danger {
    background-color: #f9243f;
}

    .label-danger[href]:hover, .label-danger[href]:focus {
        background-color: #f9243f;
    }

/*.panel {
  border: 0; }*/

.panel-container {
    padding-top: 20px;
}

.panel-heading .fa-toggle-up, .panel-heading .fa-toggle-down {
    font-size: 17px;
}

.panel-primary > .panel-heading {
    background-color: #223166;
    color: #fff;
    border: none;
}

.panel-success > .panel-heading {
    background-color: #8ad919;
    color: #fff;
    border: none;
}

.panel-info > .panel-heading {
    background-color: var(--primaryBGColor);
    color: #fff;
    border: none;
}

.panel-warning > .panel-heading {
    background-color: #ffb53e;
    color: #fff;
    border: none;
}

.panel-danger > .panel-heading {
    background-color: #f9243f;
    color: #fff;
    border: none;
}

.panel-primary .panel-settings, .panel-primary .panel-toggle, .panel-success .panel-settings, .panel-success .panel-toggle, .panel-info .panel-settings, .panel-info .panel-toggle, .panel-warning .panel-settings, .panel-warning .panel-toggle, .panel-danger .panel-settings, .panel-danger .panel-toggle {
    border: none;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
}

    .panel-primary .panel-settings:hover, .panel-primary .panel-toggle:hover, .panel-success .panel-settings:hover, .panel-success .panel-toggle:hover, .panel-info .panel-settings:hover, .panel-info .panel-toggle:hover, .panel-warning .panel-settings:hover, .panel-warning .panel-toggle:hover, .panel-danger .panel-settings:hover, .panel-danger .panel-toggle:hover {
        border: none;
        color: #fff;
        background-color: rgba(255, 255, 255, 0.4);
    }

.panel-blue {
    background: var(--primaryBGColor);
    color: #fff;
}

.panel-teal {
    background: #1ebfae;
    color: #fff;
}

.panel-orange {
    background: #ffb53e;
    color: #fff;
}

.panel-red {
    background: #f9243f;
    color: #fff;
}

.dark-overlay {
    background: rgba(0, 0, 0, 0.05);
}

.panel-blue p, .panel-teal p, .panel-orange p, .panel-red p {
    color: rgba(255, 255, 255, 0.75);
}

.panel-heading {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.025em;
    /*height: 60px;*/
    line-height: 38px;
}

.panel-default .panel-heading {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    color: #424242;
    margin-top: 10px;
}

.panel-primary .panel-heading {
    margin-top: 10px;
}

.panel-footer {
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.panel-widget {
    padding: 10px 0;
    position: relative;
    box-shadow: none;
    border-radius: 0;
    background: none;
    text-align: center;
    color: #333;
}

    .panel-widget .panel-footer {
        border: 0;
        text-align: center;
    }

.panel-footer .input-group {
    padding: 0px;
    margin: 0 -5px;
}

.panel-footer .input-group-btn:last-child > .btn, .panel-footer .input-group-btn:last-child > .btn-group {
    margin: 0;
}

.panel-widget .panel-footer a {
    color: #999;
}

    .panel-widget .panel-footer a:hover {
        color: #666;
        text-decoration: none;
    }

.panel-widget .text-muted {
    margin-top: -6px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8em;
}

.panel-widget .large {
    color: #373b45;
    font-size: 3em;
}

.panel-settings {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .panel-settings .dropdown a.dropdown-toggle, .panel-settings a {
        padding: 0;
        background: none;
        color: #7c7c7c;
    }

    .panel-settings a, .panel-toggle {
        width: 40px;
        padding: 2px 0 0 0;
    }

        .panel-settings:hover, .panel-toggle:hover, .panel-settings .dropdown a.dropdown-toggle:hover, .panel-settings:active, .panel-toggle:active, .panel-settings .dropdown a.dropdown-toggle:active, .panel-settings:focus, .panel-toggle:focus, .panel-settings .dropdown a.dropdown-toggle:focus {
            background: #f7f7f7;
            color: #424242;
        }

.panel-settings, .panel-toggle {
    display: inline-block;
    margin: -1px -5px 0 15px !important;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #f0f0f0;
    color: #7c7c7c;
    background: #fff;
    width: 42px;
}

.panel-settings {
    width: 42px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

    .panel-settings li.dropdown {
        margin: 0;
        padding: 0;
    }

.dropdown-settings {
    border: 1px solid #fff;
    width: 220px;
    font-size: 0.9em;
    padding: 0;
}

    .dropdown-settings li {
        list-style: none;
        padding: 0 10px;
        width: 220px;
        height: 26px;
        line-height: 26px;
    }

    .dropdown-settings .divider {
        margin: 7px 0;
    }

    .dropdown-settings li a {
        padding: 0;
        margin: 0;
        display: inline-block;
        width: 100%;
        color: #424242;
    }

.clickable {
    cursor: pointer;
}

.panel-heading span {
    margin: 0px;
    font-size: 14px;
}

.panel-button-tab-right {
    margin-left: 4px !important;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.panel-button-tab-left {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.border-top {
    border-top: 1px solid #dadbda;
}

.border-right {
    border-right: 1px solid #dadbda;
}

.border-bottom {
    border-bottom: 1px solid #dadbda;
}

.border-left {
    border-left: 1px solid #dadbda;
}

.panel .border-top, .panel .border-right, .panel .border-bottom, .panel .border-left {
    border-color: #f0f0f0;
}

.medical-panel .panel-heading {
    height: inherit;
    border: 1px solid;
    border-color: #eee;
}

    .medical-panel .panel-heading a,
    .medical-panel .panel-heading a:hover,
    .medical-panel .panel-heading a:focus {
        color: #fff;
        text-decoration: none;
    }

.medical-panel .panel-title {
    font-weight: bold;
}

.article {
    padding: 10px 0;
}

    .article:first-child {
        padding: 0 0 10px 0;
    }

    .article h4 {
        margin-bottom: 10px;
    }

    .article .date {
        text-align: center;
        margin: 5px auto;
        display: block;
    }

        .article .date .text-muted {
            margin-top: -5px;
        }

.timeline {
    list-style: none;
    padding: 20px 0 20px;
    position: relative;
}

    .timeline:before {
        top: 0;
        bottom: 0;
        position: absolute;
        content: " ";
        width: 2px;
        background-color: #f0f0f0;
        left: 25px;
        margin-right: -1.5px;
    }

    .timeline > li {
        margin-bottom: 20px;
        position: relative;
    }

        .timeline > li:before, .timeline > li:after {
            content: " ";
            display: table;
        }

        .timeline > li:after {
            clear: both;
        }

        .timeline > li > .timeline-panel {
            width: calc( 100% - 65px );
            float: right;
            border: 1px solid #edeeed;
            border-radius: 2px;
            padding: 10px 20px;
            position: relative;
            box-shadow: none;
        }

            .timeline > li > .timeline-panel:before {
                position: absolute;
                top: 26px;
                left: -11px;
                display: inline-block;
                border-top: 11px solid transparent;
                border-right: 11px solid #edeeed;
                border-left: 0 solid #edeeed;
                border-bottom: 11px solid transparent;
                content: " ";
            }

            .timeline > li > .timeline-panel:after {
                position: absolute;
                top: 27px;
                left: -10px;
                display: inline-block;
                border-top: 10px solid transparent;
                border-right: 10px solid #fff;
                border-left: 0 solid #fff;
                border-bottom: 10px solid transparent;
                content: " ";
            }

        .timeline > li > .timeline-badge {
            color: #fff;
            width: 46px;
            height: 46px;
            line-height: 51px;
            font-size: 1.4em;
            text-align: center;
            position: absolute;
            top: 16px;
            left: 0px;
            margin-right: -25px;
            background-color: #999999;
            z-index: 100;
            border-radius: 9999px;
        }

.timeline-badge.primary {
    background-color: var(--primaryBGColor) !important;
}

.timeline-badge.success {
    background-color: #8ad919 !important;
}

.timeline-badge.warning {
    background-color: #ffb53e !important;
}

.timeline-badge.danger {
    background-color: #f9243f !important;
}

.timeline-badge.info {
    background-color: var(--primaryBGColor) !important;
}

.progress {
    height: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f2f3f2;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: var(--primaryBGColor);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: width .6s ease;
    transition: width .6s ease;
}

.progress-bar-success {
    background-color: #8ad919;
    background-image: none;
}

.progress-bar-info, .progress-bar-blue {
    background-color: var(--primaryBGColor);
    background-image: none;
}

.progress-bar-warning, .progress-bar-orange {
    background-color: #ffb53e;
    background-image: none;
}

.progress-bar-danger, .progress-bar-red {
    background-color: #f9243f;
    background-image: none;
}

.progress-bar-teal {
    background-color: #1ebfae;
    background-image: none;
}

.jumbotron {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    color: #424242;
}

.panel .tabs {
    margin: 0;
    padding: 0;
}

.nav-tabs {
    background: #f2f3f2;
    border: 0;
}

    .nav-tabs li a:hover {
        background: #fff;
    }

    .nav-tabs li a, .nav-tabs li a:hover, .nav-tabs li.active a, .nav-tabs li.active a:hover {
        border: 0;
        padding: 10px 10px;
    }

    .nav-tabs li.active a {
        color: var(--primaryBGColor);
    }

    .nav-tabs li a:hover {
        background-color: #2382BD;
    }

    .nav-tabs li a {
        color: #fff;
        background-color: #223166;
    }

.nav-pills {
    padding: 15px;
    padding-bottom: 0;
}

    .nav-pills li a, .nav-pills li a:hover, .nav-pills li.active a, .nav-pills li.active a:hover {
        border: 0;
        padding: 7px 15px;
    }

        .nav-pills li.active a, .nav-pills li.active a:hover {
            background: var(--primaryBGColor);
        }

.tab-content {
    padding: 15px;
}

.navbar {
    border: 0;
}

    .navbar input {
        border: 0;
        background: #444;
        color: #fff;
    }

        .navbar input:focus {
            color: #fff;
            background: #555;
            border: 1px solid var(--primaryBGColor);
            outline: 0;
            box-shadow: inset 0px 0px 0px 1px var(--primaryBGColor);
        }

.user-menu {
    display: inline-block;
    margin-top: 14px;
    margin-right: 10px;
    float: right;
    list-style: none;
    padding: 0;
}

    .user-menu a {
        color: #fff;
    }

        .user-menu a:hover, .user-menu a:focus {
            text-decoration: none;
        }

.sidebar {
    display: block;
    padding: 0;
    display: none;
    box-shadow: none;
    background: #fff;
}

    .sidebar ul {
        margin: 20px 0px;
    }

    .sidebar form {
        padding: 10px 0 0 0;
        margin: 10px 10px 20px 10px;
    }

li.othertop {
    display: none;
}

.navbar-nav {
    margin: 0;
}

@media (min-width: 768px) {
    .sidebar {
        display: block;
        position: fixed;
        top: 60px;
        bottom: 0;
        left: 0;
        z-index: 1000;
        display: block;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .navbar-header {
        width: 100%;
    }

    .navbar-nav li.othertop {
        padding-top: 5px;
    }

        .navbar-nav li.othertop input[type=submit] {
            margin-top: 5px;
            min-height: 40px;
        }

        .navbar-nav li.othertop a:hover {
            color: #ddd;
        }

    li.othertop {
        display: inherit;
    }
}

.sidebar ul.nav a:hover, .sidebar ul.nav li.parent ul li a:hover {
    text-decoration: none;
    background-color: var(--primaryBGColor);
    color: #fff;
}

.sidebar ul.nav .active a, .sidebar ul.nav li.parent a.active, .sidebar ul.nav .active > a:hover, .sidebar ul.nav li.parent a.active:hover, .sidebar ul.nav .active > a:focus, .sidebar ul.nav li.parent a.active:focus, .sidebar ul.nav ul.children li.active a {
    color: #fff;
    background-color: var(--primaryBGColor);
}

.sidebar ul.nav ul, .sidebar ul.nav ul li {
    list-style: none;
    list-style-type: none;
}

.sidebar ul.nav li a {
    min-height: 50px;
    font-size: 15px;
    line-height: 2em;
    color: #424242;
}

.sidebar ul.nav ul.children {
    width: auto;
    padding: 0;
    margin: 0;
    background: #f9f9f9;
}

    .sidebar ul.nav ul.children li a {
        min-height: 40px;
        background: #f7f7f7;
        color: #424242;
    }

.sidebar ul.nav li.current a {
    background-color: var(--primaryBGColor);
    color: #fff !important;
}

.sidebar ul.nav li.parent ul li a {
    min-height: 50px;
    border: none;
    display: block;
    padding-left: 30px;
    padding-bottom: 10px;
    padding-top: 10px;
    line-height: 2em;
    border-radius: 0;
}

.sidebar ul.nav li.divider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0px 0;
}


.othertop .color-red {
    color: #f9243f !important;
}

.profile-sidebar {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.indicator {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 9999px;
    margin-right: 5px;
}

.profile-userpic img {
    float: left;
    margin: 10px 0px 0px 15px;
    width: 50px;
    height: 50px;
    border-radius: 9999px !important;
}

.profile-usertitle {
    float: left;
    text-align: left;
    margin: 10px 0 0 12px;
}

.profile-usertitle-name {
    font-size: 20px;
    margin-bottom: 0px;
}

.profile-usertitle-status {
    text-transform: uppercase;
    color: #AAA;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.breadcrumb {
    border-radius: 0;
    padding: 10px 15px 10px 15px;
    background: #f0f0f0;
    margin: 0;
}

h1.page-header {
    margin-top: 20px;
    border-bottom: 0;
}

.chart {
    background: #fff;
}

.easypiechart-panel {
    text-align: center;
    padding: 1px 0;
    margin-bottom: 20px;
}

.placeholder h2 {
    margin-bottom: 0px;
}

.donut {
    width: 100%;
}

.easypiechart {
    position: relative;
    text-align: center;
    width: 120px;
    height: 120px;
    margin: 20px auto 10px auto;
}

    .easypiechart .percent {
        display: block;
        position: absolute;
        font-size: 26px;
        top: 38px;
        width: 120px;
    }

#easypiechart-blue .percent {
    color: var(--primaryBGColor);
}

#easypiechart-teal .percent {
    color: #1ebfae;
}

#easypiechart-orange .percent {
    color: #ffb53e;
}

#easypiechart-red .percent {
    color: #ef4040;
}

#calendar, .datepicker-inline {
    width: 100%;
}

    #calendar table {
        width: 100%;
    }

.datepicker-switch {
    font-size: 16px;
    height: 46px !important;
}

.datepicker table tr td.old, .datepicker table tr td.new {
    color: #c5c7cc;
}

.datepicker table tr td {
    padding: 10px !important;
}

    .datepicker table tr td.active, .datepicker table tr td.active:hover, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active:focus, .datepicker table tr td.active:hover:focus, .datepicker table tr td.active.disabled:focus, .datepicker table tr td.active.disabled:hover:focus, .datepicker table tr td.active:active, .datepicker table tr td.active:hover:active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:hover.active, .open .dropdown-toggle.datepicker table tr td.active, .open .dropdown-toggle.datepicker table tr td.active:hover, .open .dropdown-toggle.datepicker table tr td.active.disabled, .open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
        color: #ffffff;
        background-color: var(--primaryBGColor);
        text-shadow: none;
        border-color: #285e8e;
    }

    .datepicker table tr td span:hover, .datepicker thead tr:first-child th:hover, .datepicker tfoot tr th:hover, .datepicker table tr td.day:hover, .datepicker table tr td.day.focused {
        background: rgba(0, 0, 0, 0.05);
    }

.todo-list {
    padding: 0;
    margin: -15px;
    background: #fff;
    color: #424242;
}

    .todo-list .checkbox input[type=checkbox] {
        margin: 0;
    }

    .todo-list .checkbox {
        display: inline-block;
        margin: 0px;
    }

.panel-body input[type=checkbox]:checked + label {
    color: #777;
}

.checkboxresponserequired input[type=checkbox]:checked + label {
    color: green;
}

.greenify {
    color: green;
    font-weight: bold;
}

.pinkify {
    color: indigo;
    background-color: gold;
    font-weight: bold;
}

.todo-list-item {
    list-style: none;
    line-height: 0.9;
    padding: 14px 15px 8px 15px;
}

    .todo-list-item:hover, a.todo-list-item:focus {
        text-decoration: none;
        background-color: #f6f6f6;
    }

.todo-list .fa-trash {
    color: #424242;
}

    .todo-list .fa-trash:hover {
        color: #ef4040;
    }

.chat .panel-body ul {
    list-style: none;
    margin: -15px;
    padding: 15px;
}

    .chat .panel-body ul li {
        margin-bottom: 10px;
        padding: 15px 5px;
        border-bottom: 1px solid #f0f0f0;
    }

.chat ul li.left .chat-body {
    margin-left: 80px;
}

.chat ul li.right .chat-body {
    margin-right: 80px;
}

.chat ul li .chat-body p {
    margin: 0;
}

.chat .panel-body {
    overflow-y: scroll;
    height: 300px;
}

.chat-body small {
    margin-left: 5px;
}

.table {
    background: #fff;
}

.fixed-table-container {
    border: 1px solid #f0f0f0;
}

    .fixed-table-container thead th {
        background: #f7f7f8;
        border-color: #ddd;
        color: #424242;
        font-weight: 300;
        font-size: 16px;
    }

    .fixed-table-container tbody td {
        border: 1px solid #f0f0f0;
    }

        .fixed-table-container tbody td:last-child {
            border-right: none;
        }

.table > thead > tr > th {
    border-bottom: 1px solid #e6e7e8;
    vertical-align: middle;
    height: 50px;
    padding: 8px;
}

.fixed-table-pagination .pagination {
    margin-top: 10px;
    margin-bottom: 0px;
}

.fixed-table-pagination .pagination-detail {
    margin-top: 20px;
}

p.back-link {
    text-align: center;
    margin-bottom: 20px;
    font-size: 12px;
    text-transform: uppercase;
}

.login-panel .btn {
    display: block;
    width: 100%;
}

.login-panel .btn-lg {
    font-size: 15px;
    height: 44px;
}

.error-page h1 {
    font-size: 72px;
}

.error-page h3 {
    color: #7c7c7c;
}

.error-page p {
    margin: 30px 0;
}

.error-page .btn-lg {
    font-size: 15px;
    height: 44px;
}

.search-result-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

    .search-result-item .search-result-title {
        margin-top: 0;
        margin-bottom: 0;
    }

    .search-result-item .search-result-image {
        margin-bottom: 10px;
    }

.chart-purple {
    filter: hue-rotate(60deg) saturate(40%);
}

/*Font Awesome List*/
ul.font-awesome-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    ul.font-awesome-list li {
        border: 1px solid #f7f7f7;
        float: left;
        width: 20%;
        height: auto;
        text-align: center;
    }

        ul.font-awesome-list li i {
            display: block;
            font-size: 32px;
            margin: 20px auto;
        }

        ul.font-awesome-list li span.icon-name, ul.font-awesome-list li .glyphicon-class {
            color: var(--primaryBGColor);
            font-size: 13px;
            font-weight: bold;
        }

        ul.font-awesome-list li span.icon-value {
            display: block;
            color: #7c7c7c;
            font-size: 12px;
            margin-bottom: 15px;
        }

label {
    font-weight: normal;
}

.pullfix .control-label.text-left {
    text-align: left !important;
}


/* Calendar */
.ajax__calendar_container {
    border: 1px solid rgb(68, 68, 68);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    border-radius: 4px;
    /*background:url(calendar.png) no-repeat;*/
    background: white;
    color: #424242;
    font-size: 9pt;
    margin: 0px;
    z-index: 1000;
}

    .ajax__calendar_container * {
        margin: 0px;
    }

    .ajax__calendar_container td {
        padding: 0px;
        margin: 0px;
        background: rgb(255, 255, 255);
        color: rgb(68, 68, 68);
    }

.ajax__calendar_active .ajax__calendar_day,
.ajax__calendar_active .ajax__calendar_month,
.ajax__calendar_active .ajax__calendar_year {
    color: rgb(68, 68, 68);
    padding: 0px;
    margin: 0px;
    background: rgb(255, 255, 255);
}

.ajax__calendar_other .ajax__calendar_day {
    color: rgb(68, 68, 68);
    background: rgb(255, 255, 255);
}

.ajax__calendar_day,
.ajax__calendar_month,
.ajax__calendar_year {
    color: rgb(68, 68, 68);
    background: rgb(255, 255, 255);
}

    .ajax__calendar_day:hover,
    .ajax__calendar_month:hover,
    .ajax__calendar_year:hover {
        color: #fff;
        background: var(--primaryBGColor);
        border: 1px solid #fff;
    }

.calOnlyOneDay .ajax__calendar_header .ajax__calendar_title {
    background: #fff;
}

.calOnlyOneDay .ajax__calendar_days td {
    padding: 0px 150px 0px 65px;
    text-align: center;
}

.calOnlyOneDay .ajax__calendar_day, .ajax__calendar_month, .ajax__calendar_year {
    background: var(--primaryBGColor);
    color: #FFFFFF;
}

.calOnlyOneDay .ajax__calendar_other .ajax__calendar_day {
    background: #999999;
}

.calOnlyOneDay .ajax__calendar_hover .ajax__calendar_day, .ajax__calendar_other .ajax__calendar_day:hover {
    background: var(--primaryBGColor);
}

.calOnlyOneDay .ajax__calendar_today {
    color: #FFFFFF;
    margin: 0 0 0 -1450px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border: 1px solid #ddd;
}

.tablePadded th, .tablePadded td {
    padding: 5px;
}

.adminApproved {
    background-color: lightyellow;
}

.pending {
    background-color: #cc0099 !important;
    color: white;
}

    .pending a {
        background-color: #cc0099 !important;
        color: white;
    }


.wait {
    position: fixed;
    top: 50%;
    bottom: 50%;
    left: 50%;
    right: 50%;
    margin: auto;
    z-index: 10003;
    background: url(../images/ajax-loader2.gif);
    height: 47px;
    width: 47px;
    border-radius: 25px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

.waitHide {
    display: none;
}



.popUp {
    color: #000000;
    background-color: #FCF9DC;
    padding: 1px 10px 1px 10px;
    border-style: solid;
    border-left-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-top-width: 1px;
    border-color: #000000;
    width: 600px;
    height: 500px;
    top: 30px;
}

.popUpBlue {
    color: #FCF9DC;
    background: #f2f2f2;
    padding: 1px 10px 1px 10px;
    border-style: solid;
    border-left-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-top-width: 1px;
    border-radius: 2px;
    border-color: #ddd;
}

.popUp2 {
    color: #FCF9DC;
    background: #f2f2f2;
    padding: 1px 10px 1px 10px;
    border-style: solid;
    border-left-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-top-width: 1px;
    border-radius: 10px;
    border-color: blue;
}

.popupHeader {
    width: 90%;
    white-space: nowrap;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.call, .othertop.call:active, .othertop a.call:hover, .othertop a.active {
    margin: 10px 0 0 0;
    padding: 5px 0 0 0;
    width: 32px;
    height: 32px;
    background-image: url(../images/phoneBlue32x32.png) !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
}

.notepad, .othertop.notepad:active, .othertop a.notepad:hover, .othertop a.active {
    margin: 10px 0 0 0;
    padding: 5px 0 0 0;
    width: 32px;
    height: 32px;
    background-image: url(../images/notepad32x32.png) !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
}

.amiContact, .othertop.amiContact:active, .othertop a.amiContact:hover, .othertop a.active {
    margin: 10px 0 0 2px;
    padding: 5px 0 0 0;
    width: 32px;
    height: 32px;
    background-image: url(../images/phoneYellow32x32.png) !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
}



.CompletionListCssClass {
    cursor: default;
    padding: 0px;
    border: 1px solid gray;
    background: #fff;
    float: left;
    z-index: 1000;
    position: absolute;
    margin-left: 0px;
    list-style: none;
}

.nameHighlight {
    color: #008000;
    font-weight: bold;
}

.error {
    color: #FF0000;
}

.success {
    color: Green;
}

.noticeColor {
    color: #ff8000;
}

.tableExceptionReport #colhead2 span {
    margin-right: 30px;
}

.tableExceptionReport #colhead4 span {
    margin-right: 40px;
}

.tableExceptionReport #colhead6 span {
    margin-right: 40px;
}

.tableExceptionReport #colhead7 span {
    margin-right: 150px;
}

.tableExceptionReport #colhead8 span {
    margin-right: 50px;
}

.tableExceptionReport #colhead9 span {
    margin-right: 50px;
}

.tableExceptionReport #colhead10 span {
    margin-right: 50px;
}

.tableExceptionReport #colhead12 span {
    margin-right: 50px;
}

.tableExceptionReport #colhead13 span {
    margin-right: 50px;
}

.tableExceptionReport #colhead15 span {
    margin-right: 50px;
}

.tableExceptionReport #colhead17 span {
    margin-right: 50px;
}

.tableExceptionReport #colhead18 span {
    margin-right: 50px;
}

.tableExceptionReport #colhead21 span {
    margin-right: 50px;
}

.tableExceptionReport #colhead22 span {
    margin-right: 50px;
}

.tableExceptionReport #colhead23 span {
    margin-right: 50px;
}

.tableExceptionReport #colhead25 span {
    margin-right: 30px;
}

.tableExceptionReport #colhead27 span {
    margin-right: 50px;
}

.tableExceptionReport #colhead28 span {
    margin-right: 50px;
}

.tableExceptionReport #colhead30 span {
    margin-right: 50px;
}

.tableExceptionReport #colhead31 span {
    margin-right: 50px;
}

.painradiospacing input[type=radio] {
    margin-left: 20px;
}

.paincontainer {
    width: 90%;
}

.painspan1 {
    margin-left: 80px;
}

.painspan3 {
    margin-left: 60px;
}

.painspan1plus {
    margin-left: 100px;
}

.painspan3plus {
    margin-left: 70px;
}

.ui-dialog-titlebar-close:after {
    content: 'X';
}

.sbox-content-iframe {
    overflow: scroll !important;
    resize: both !important;
}

.infobtn {
    color: #fff;
    background-color: #33adff;
    border-color: #33adff;
}

.warnbtn {
    color: #fff;
    background-color: #C75F09;
    border-color: #C75F09;
}

.caseDrop {
    width: 50%;
}

.caseInline {
    display: inline-block;
}

.caseMLeft15 {
    margin-left: 15px;
}

.caseRadioList input[type="radio"] {
    vertical-align: top;
}

.caseicd10text {
    margin-left: 15px;
    Width: 70%;
    display: inline-block;
}

.caseNote {
    Height: 100px !important;
    Width: 650px;
}

.caseDateText {
    width: 200px;
    display: inline-block;
    margin-left: 15px;
}

.reviewSearch {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    padding-left: 200px;
    flex-direction: column;
}

    .reviewSearch input {
        margin: 5px;
    }

.searchBox {
}

.small-textbox {
    width: 75px;
}

.large-textbox {
    height: 200px;
    width: 500px;
    border: solid 1px black;
    display: inline-block;
}

.cssPager td {
    padding-left: 4px !important;
    padding-right: 4px !important;
}

.cssPager span {
    background-color: #ccccff !important;
}

.bdr-blk {
    border: 1px solid black;
}

.pad-l {
    padding-left: 10px;
}

.grv_yearStats th {
    text-align: center;
    width: 100px;
}

    .grv_yearStats th:nth-child(1) {
        width: 260px;
    }

.grv_yearStats td {
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
}

    .grv_yearStats td:nth-child(1) {
        text-align: left;
        font-weight: normal;
        padding-left: 10px;
        font-size: 1em;
    }




.txt-cent {
    text-align: center;
}

.perfcol1 {
    width: 250px;
}

.perfcol2 {
    width: 120px;
}

.perfcol3 {
    width: 150px;
}

.headColor {
    background-color: #1F497D;
    color: white;
    text-align: center !important;
}

.flex-cent {
    display: flex;
    align-items: center;
}

.backGrey {
    background-color: #D9D9D9;
}

.boldFont {
    font-weight: bold;
    font-size: 1.2em;
}

.requires-response {
    color: #008000;
    font-weight: bold;
}

    .requires-response ul {
        color: black;
    }


.case-messages label {
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 2px;
}

.case-messages li {
    list-style: none;
}

.case-messages > li {
    border: 1px solid lightblue;
}

.caseMessageDiv {
    display: flex;
}

    .caseMessageDiv div {
        padding: 10px;
    }

.case-reply-text {
    width: 400px;
    height: 150px;
}

.samlForm {
    width: 50%;
    margin: auto;
    padding-top: 100px;
}

    .samlForm input {
        margin: 5px;
    }

.dashboard-message {
    background-color: yellow;
}

.csLabel {
    width: 140px;
    display: inline-block;
    margin-left: 5px;
}

.csText {
    width: 200px;
    display: inline-block;
    margin-right: 10px;
}

.csButton {
    margin-bottom: 30px;
}

.csError {
    margin-left: 150px;
    color: red;
}

.maintenancePopup {
    width: 500px;
    padding: 5px;
}

    .maintenancePopup * {
        margin: 5px 0px;
    }

.perfContainer {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: 350px 350px auto;
    grid-template-areas: "Adherence PatientList" "Summaries PatientList" ". PatientList";
    grid-row-gap: 20px;
    grid-column-gap: 20px;
    margin-top: 30px;
}

.item-Adherence {
    grid-area: Adherence;
}

.item-PatientList {
    grid-area: PatientList;
}

.item-Summaries {
    grid-area: Summaries;
}

.AdhFlex {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.AdhAlignEnd {
    align-self: flex-end;
}

.marLeft10 {
    margin-left: 10px;
}

.marLeft60 {
    margin-left: 60px;
}

.adhContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 30px 30px 30px 30px 30px 30px;
    grid-template-areas: "Adh1 Adh1 Adh1" "Adh2 Adh2 Adh2" "Adh3 Adh4 Adh4" "Adh5 Adh6 Adh7" "Adh8 Adh9 Adh10" "Adh11 Adh11 Adh11";
    grid-row-gap: 15px;
    grid-column-gap: 10px;
}

.item-Adh1 {
    grid-area: Adh1;
    justify-self: center;
}

.item-Adh2 {
    grid-area: Adh2;
    justify-self: center;
}

.item-Adh3 {
    grid-area: Adh3;
    justify-self: right;
    align-self: end;
}

.item-Adh4 {
    grid-area: Adh4;
    justify-self: left;
    width: 200px;
}

.item-Adh5 {
    grid-area: Adh5;
    justify-self: right;
    align-self: end;
}

.item-Adh6 {
    grid-area: Adh6;
    justify-self: left;
    align-self: start;
    width: 200px;
}

.item-Adh7 {
    grid-area: Adh7;
    justify-self: left;
    width: 80px;
}

.item-Adh8 {
    grid-area: Adh8;
    justify-self: right;
    align-self: end;
}

.item-Adh9 {
    grid-area: Adh9;
    justify-self: left;
    align-self: start;
    width: 200px;
}

.item-Adh10 {
    grid-area: Adh10;
    justify-self: left;
    width: 80px;
}

.item-Adh11 {
    grid-area: Adh11;
    justify-self: center;
}


.summaryContainer {
    display: grid;
    grid-template-columns: .3fr .7fr;
    grid-template-rows: 30px 30px 30px 30px;
    grid-template-areas: "Sum1 Sum2" "Sum3 Sum4" "Sum5 Sum6" "Sum7 ." "Sum8 .";
    grid-row-gap: 15px;
    grid-column-gap: 10px;
}

.item-Sum1 {
    grid-area: Sum1;
    justify-self: right;
    align-self: end;
}

.item-Sum2 {
    grid-area: Sum2;
    justify-self: left;
}

.item-Sum3 {
    grid-area: Sum3;
    justify-self: right;
    align-self: end;
}

.item-Sum4 {
    grid-area: Sum4;
    justify-self: left;
}

.item-Sum5 {
    grid-area: Sum5;
    justify-self: right;
    align-self: end;
}

.item-Sum6 {
    grid-area: Sum6;
    justify-self: left;
    align-self: start;
}

.item-Sum7 {
    grid-area: Sum7;
    justify-content: left;
    min-width: 160px;
}

.item-Sum8 {
    grid-area: Sum8;
    justify-content: left;
}

.sumDrop {
    width: 170px;
}

.sumText {
    width: 370px;
}

.patListContainer {
    display: grid;
    grid-template-columns: .3fr .7fr;
    grid-template-rows: 30px 30px 30px 30px 30px 30px auto;
    grid-template-areas: "PatList1 PatList1" "PatList1a PatList1b" "PatList2 PatList3" "PatList3a PatList3b" "PatList4 PatList5" "PatList6 PatList7" "PatList7a PatList7b" "PatList8 PatList8" "PatList9 PatList9";
    grid-row-gap: 15px;
    grid-column-gap: 10px;
}

.item-PatList1 {
    grid-area: PatList1;
    justify-self: center;
}

.item-PatList1a {
    grid-area: PatList1a;
    justify-self: right;
    align-self: end;
}

.item-PatList1b {
    grid-area: PatList1b;
    justify-self: left;
}

.item-PatList2 {
    grid-area: PatList2;
    justify-self: right;
    align-self: end;
}

.item-PatList3 {
    grid-area: PatList3;
    justify-self: left;
}

.item-PatList3a {
    grid-area: PatList3a;
    justify-self: right;
    align-self: end;
}

.item-PatList3b {
    grid-area: PatList3b;
    justify-self: left;
}

.item-PatList4 {
    grid-area: PatList4;
    justify-self: right;
    align-self: end;
}

.item-PatList5 {
    grid-area: PatList5;
    justify-self: left;
}

.item-PatList6 {
    grid-area: PatList6;
    justify-self: right;
    align-self: end;
}

.item-PatList7 {
    grid-area: PatList7;
    justify-self: left;
}

.item-PatList7a {
    grid-area: PatList7a;
    justify-self: right;
    align-self: end;
}

.item-PatList7b {
    grid-area: PatList7b;
    justify-self: left;
}

.item-PatList8 {
    grid-area: PatList8;
    justify-content: left;
    margin-left: 100px;
    margin-top: 20px;
}

.item-PatList9 {
    grid-area: PatList9;
    justify-self: center;
    margin-top: 30px;
    width: 60%;
}

.cpt4-violations {
    padding: 10px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}



    .cpt4-violations input[type=submit] {
        border: none;
        color: blue;
        text-decoration: underline;
    }

    .cpt4-violations div {
        padding: 5px;
        background-color: white;
        border: 1px solid black;
        width: 150px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .cpt4-violations .header {
        font-weight: 700;
    }

    .cpt4-violations .count {
        background-color: white;
    }

.statsClaimDiv {
    display: inline-block;
    width: 39%;
    height: 230px;
    border: 1px solid gray;
    vertical-align: top;
}

.statsClaimContainer {
    display: flex;
    flex-direction: column;
}

.statsClaimRow {
    align-self: center;
    width: 80%;
}

.statsClaimRowStart {
    margin-top: 20px;
}

.statsBtnRow {
    display: flex;
    flex-direction: column;
}

.statBtn {
    align-self: center;
}

.statsDDL {
    display: inline;
    width: 150px;
}

.statsYear {
    display: inline;
    width: 80px;
}

.baseline-div {
    margin-left: 100px;
}

.statsh3 {
    text-align: center;
}

.statsh3 {
    text-align: center;
}

.patientHistoryCol {
    float: none;
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    padding-bottom: 5px;
}

.patientHistoryPlanTable {
    max-width: 600px;
}

.tablesmall td, th {
    padding: 5px;
}

.patientHistoryRow:after {
    content: "";
    display: table;
    clear: both;
}

.greyOutDisable {
    pointer-events: none;
    opacity: .5;
}


.memberIDHide {
    opacity: 0;
}

.memberIDHoverLabel {
    color: green;
}

    .memberIDHoverLabel:hover + .memberIDHide {
        opacity: 1;
        transition: opacity 2s;
        color: black;
        padding: 5px;
        margin: 5px;
    }

.perfDiv {
    height: auto;
    min-height: 500px;
    border: solid 1px black;
    padding: 2%;
}

.flex-perf {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

.chartDiv {
    width: 850px;
    height: auto;
    min-height: 500px;
}

    .chartDiv img {
        max-width: 100% !important;
        min-width: 100% !important;
        max-height: 350px !important;
        min-height: auto !important;
    }

.theChart {
    width: 770px !important;
    height: 350px !important;
}

.colorSwatch {
    background-color: goldenrod;
    width: 30px;
    height: 20px;
    border: none;
}

.typeDiv {
    flex-wrap: nowrap;
    display: inline-block;
}

.leftMar15 {
    margin-left: 15px;
}

.alertsInactiveStrikeThrough {
    text-decoration: line-through;
}

.leftPadding15 {
    padding-left: 15px;
}

.plusMsg {
    font-size: .75em;
    margin-left: 20px;
}

.boldBlue {
    font-weight: bold;
    color: darkblue;
}

.inServ {
    float: right;
    margin-right: 50px;
}

.inServDate {
    margin-left: 5px;
}

.inServNote {
    font-size: .8em;
    float: left;
}

.inServMsg {
    font-weight: bold;
}

.surgeryRadioButtonList label {
    margin-right: 15px;
}

.surgeryDisplay {
    display: inline-block;
    vertical-align: top;
}

.top20 {
    margin-top: 20px;
}

.left20 {
    margin-left: 20px;
}

.left30 {
    margin-left: 30px;
}

.bottom10 {
    margin-bottom: 10px;
}

.vtop {
    vertical-align: top;
}

.fAssessLblTitle {
    margin-left: 25%;
    font-size: 20px;
    font-weight: 600;
}

.fAssessLbl {
    margin-left: 15%;
    margin-right: 10px;
}

.fAssessBold {
    font-weight: 600;
}

.trywidth {
    min-width: 80px;
}

.footCol2 {
    column-width: 350px;
}

.quickReferenceContainer {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.vidDiv {
    width: 250px;
    margin: 20px;
    text-align: center;
}

    .vidDiv .thumb {
        width: 200px;
        height: 150px;
        margin: 0px;
        margin-left: auto;
        margin-right: auto;
        background-color: #223166;
        padding: 2px;
        border-radius: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    .vidDiv img {
        width: 150px;
        filter: invert(1);
        padding-bottom: 5px;
    }

    .vidDiv .thumb a {
        width: 200px;
        height: 150px;
        padding-left: 5px;
        padding-right: 5px;
        color: #fff;
        display: table-cell;
        vertical-align: middle;
        text-decoration: none;
    }

p.indent {
    text-indent: 20px;
}

.grvPgr td {
    padding-left: 4px !important;
    padding-right: 4px !important;
}

.extMessage {
    margin-left: 405px;
    Font-Size: .75em;
}

.oatWarning {
    margin-left: 405px;
    display: inline-block;
    Font-Size: 1em;
    color: red;
}

.spacyList {
    list-style-type: none;
}

    .spacyList li b {
        width: 400px;
        display: flex;
        justify-content: space-between;
    }

.medDirectorGoalLabel {
    width: 450px;
    text-align: left !important;
    padding-top: 0px;
}

.closeFormGroup {
    margin-top: 0px;
    margin-bottom: 0px
}

.inlineDropdown {
    display: inline;
    margin-right: 10px;
    width: auto;
}

.inlineLabel {
    display: inline-block;
    width: 125px;
    text-align: center;
}

.medDirectorGoalsGrid {
    width: 850px;
}

.medDirectorGoalsRow {
    line-height: 1 !important;
}

.medDirectorPracticesGrid {
    width: 90vw;
}

table.medDirectorPracticesGrid {
    border-collapse: separate !important;
    border-radius: 5px !important;
    box-shadow: -5px 5px 0px 5px rgba(255, 255, 255, 0.4), 0px 4px 5px rgba(0, 0, 0, 0.92);
}

    table.medDirectorPracticesGrid tr:hover {
        background-image: linear-gradient(rgba(255, 255, 255,.5), rgba(255, 255, 255,.5));
    }

.medDirectorPracticesRow {
    line-height: 1 !important;
}

.medDirectorPracticeGridHeader {
    font-size: 15px !important;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 60px;
}

    .medDirectorPracticeGridHeader th {
        background-color: #eee !important;
    }

.medDirectorProviderRow {
    line-height: 25px;
}

.practiceInfoWatchList, .medColorSelector .practiceInfoWatchList input[type="checkbox"]:checked {
    background-color: #FCE4D6 !important;
}

.practiceInfoConfirmedInservice, .medColorSelector .practiceInfoConfirmedInservice input[type="checkbox"]:checked {
    background-color: #6cf59e !important;
}

.practiceInfoMDInservice, .medColorSelector .practiceInfoMDInservice input[type="checkbox"]:checked {
    background-color: #fffd8d !important;
}

.practiceInfoPRInService, .medColorSelector .practiceInfoPRInService input[type="checkbox"]:checked {
    background-color: #ddddff !important;
}

.practiceInfoInactive, .medColorSelector .practiceInfoInactive input[type="checkbox"]:checked {
    background-color: #ffb84d !important;
}

.practiceInfoOver2Weeks {
    -webkit-box-shadow: 5px 0px 3px red inset, -5px 0px 3px red inset;
    -moz-box-shadow: 5px 0px 3px red inset, -5px 0px 3px red inset;
    box-shadow: 2px 0px 3px red inset, -3px 0px 3px red inset, 0 1px 4px rgb(0 0 0 / 0.2) !important;
}

.providerInfoLabel {
    width: 100px;
    padding-top: 0px;
}

.inlineproviderInfoLabel {
    display: inline-block;
    width: 75px;
}

.inServiceFieldSet {
    border: 2px black solid;
    padding: 15px;
    float: right;
    width: 200px;
    margin: 5px;
}

.providerInfoFieldSet {
    border: 2px black solid;
    padding: 15px;
    float: right;
    width: 325px;
    margin: 5px;
}

.providerInfoLegend {
    width: auto;
    font-weight: bold;
    border-bottom: none;
    padding: 0px 5px 0px 5px;
    margin: 5px;
}

.required:after {
    content: "";
    position: relative;
    top: -30px;
    float: right;
    width: 0px;
    height: 0px;
    display: block;
    border-left: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-top: 10px solid var(--primaryBGColor);
    border-top-right-radius: 3px;
}

.success {
    color: Green;
}

.warning {
    background: #FED1D1;
    color: #FF0000;
    border-color: #FF0000;
}

.message {
    display: block;
    position: relative;
    padding: 10px;
    border: 1px solid black;
    color: #800000;
    margin: 10px 0;
    border-radius: 5px;
}

    .message.success {
        background: #ACF392;
        color: #01580A;
        border-color: #01580A;
    }

    .message.alert, .message.warning {
        background: #eee;
        color: #FF0000;
        border-color: #FF0000;
    }

.networkText {
    background-color: lightgray;
    padding: 0px 2px;
    border-radius: 3px;
}

.btnLink {
    display: inline-block;
    margin-top: 5px;
    background-color: var(--primaryBGColor);
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border: 1px solid transparent;
    border-radius: 3px;
}

    .btnLink:hover {
        color: #fff;
        text-decoration: none;
    }

    .btnLink:focus, .btnLink:active {
        color: #fff;
        text-decoration: none;
    }

.rbl input[type="radio"] {
    margin-left: 10px;
    transform: scale(1.2);
}

.medColorSelector table {
    border-spacing: 3px;
    border-collapse: separate;
}

    .medColorSelector table td:nth-child(n+2):nth-child(-n+8) {
        border-radius: 4px;
        border-color: #ccc;
        border-style: solid;
        border-width: 1px;
        box-shadow: 0 1px 4px rgb(0 0 0 / 0.2);
        padding-left: 5px;
    }

.medColorSelector input[type="checkbox"] {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    background: #eee;
    height: 20px;
    width: 20px;
    border: 1px solid white;
    border-radius: 4px;
}

    .medColorSelector input[type="checkbox"]:after {
        content: ' ';
        position: relative;
        left: 32%;
        top: 10%;
        width: 40%;
        height: 65%;
        border: solid #424242;
        border-width: 0 2px 2px 0;
        transform: rotate(40deg);
        display: none;
    }

    .medColorSelector input[type="checkbox"]:checked:after {
        display: block;
    }

.tieringPeriodTable td {
    padding: 5px;
}

/*Link Button Revoke*/
.lbrvk {
    text-decoration: none;
    color: grey;
}

    .lbrvk:hover, .lbrvk:active, .lbrvk:focus {
        text-decoration: none;
        color: grey;
    }

/*Link Button Delete*/
.lbdel {
    text-decoration: none;
    
}
    .lbdel:hover, .lbdel:active, .lbdel:focus {
        text-decoration: none;
    }
.lbMedMessage {
    text-decoration: none;
    font-size:larger;
}
    .lbMedMessage:hover, .lbMedMessage:active, .lbMedMessage:focus {
        text-decoration: none;
    }
.modalBackground {
    background-color:gray;
    opacity:.5;
}

.copyToClip {
    background-color: var(--primaryBGColor);
    color: #fff;
}

    .copyToClip:hover {
        background-color: #5facff;
        color: #fff;
    }
    .copyToClip:active {
        background-color: #a3cfff;
        color: #fff;
    }
    .copyToClip:focus {
        color:#fff;
        animation: copyTransitionFoc .5s;
    }
@keyframes copyTransitionFoc {
    0% {
        background-color: #a3cfff;
        color: #244569;
    }
    100% {
        background-color: var(--primaryBGColor);
        color: #fff;
    }
}

.toggle-eye-orbit {
    position: relative;
}

.toggle-eye {
    position: absolute;
    right: 10px;
    top: 11px;
    cursor: pointer;
    width: 25px;
    height: 25px;
}