﻿/***** FONTS *****/
/* #region */
@font-face {
    font-family: 'Roboto-Regular';
    src: url('/fonts/Roboto-Regular.ttf');
    src: url('/fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Light.ttf');
    src: url('/fonts/Roboto-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-Narrow';
    src: url('/fonts/RobotoCondensed-Light.ttf');
    src: url('/fonts/RobotoCondensed-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url('/fonts/Roboto-Bold.ttf');
    src: url('/fonts/Roboto-Bold.ttf') format('truetype');
}

.font-weight-normal {
    font-weight: normal !important;
}

.font-weight-bold {
    font-weight: bold !important;
}

.font-weight-900 {
    font-weight: 900 !important;
}

.font-size-normal {
    font-size: 16px !important;
}

.line-height-double {
    line-height: 2 !important;
}

.line-height-normal {
    line-height: normal !important;
}
/* #endregion */


.clickable {
    cursor: pointer;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #555555;
    min-width: 600px;
    background-color: rgb(0, 126, 198);
}

    body.white-bg {
        background-color: #fff;
    }

.container {
    max-width: 1040px;
    min-width: 690px;
    margin: 0 auto;
}

.table > tbody > tr > td {
    border: 0;
}

.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: 10px 8px;
}

.table.table-default > tbody > tr > td, .table.table-default > tbody > tr > th, .table.table-default > tfoot > tr > td, .table.table-default > tfoot > tr > th, .table.table-default > thead > tr > td, .table.table-default > thead > tr > th {
    border-top: 1px solid #ddd;
    padding: 2px 8px 6px;
}

.table.table-default > thead {
    background-color: #aaa;
    border: 0;
}

.small {
    font-size: 0.8em !important;
}

.smallest {
    font-size: 0.65em !important;
}

@media (max-width: 800px) {
    .wide-mode-only {
        display: none !important;
    }

    .device-mode-only {
        display: inline;
    }

    .device-mode-bold {
        font-weight: bold;
    }

    .device-mode-hide-header thead {
        display: none;
    }

    .stats-button-top-margin {
        margin-top: -10px;
    }
}

@media (min-width: 800px) {
    .container {
        width: auto;
    }

    .wide-mode-only {
        display: inline;
    }

    tr.wide-mode-only {
        display: table-row;
    }

    .stats-button-top-margin {
        margin-top: -50px;
    }

    .device-mode-only,
    div.device-mode-only .btn,
    input.device-mode-only,
    .device-mode-only * {
        display: none !important;
    }
}

@media (min-width: 1120px) {
    .container-xl,
    .header-xl .container {
        max-width: 90%;
    }

    .container-xl-w {
        max-width: 98%;
    }

    .container-l {
        max-width: 80%;
    }
}

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#patientOrderListItem .panel-group, #patientsViewParent .panel-group {
    margin-bottom: 0;
}

    #patientOrderListItem .panel-group .panel-heading, #patientsViewParent .panel-group .panel-heading {
        border-top: 0;
    }

#patientOrderListItem tr:nth-child(odd) .panel-group .panel-heading, #patientsViewParent tr:nth-child(odd) .panel-group .panel-heading {
    background-color: #E1E8F6;
}

#patientOrderListItem .panel-body label, #patientsViewParent .panel-body label {
    width: 180px;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -16px; /* Half the height */
    margin-left: -16px; /* Half the width */
    z-index: 1001;
    border-radius: 15px;
    border: 1px solid darkgrey;
    background: whitesmoke;
    padding: 30px;
}

.or-container {
    position: relative;
    text-align: center;
    border-bottom: 2px solid #007EC6;
    margin-bottom: 10px;
}

label.or {
    padding: 0 20px;
    background: #fff;
    position: relative;
    top: 10px;
}

.form-control {
    padding: 8px 15px 8px 15px;
    height: 40px;
    border-radius: 0px;
    border: 2px solid #9C9B9B;
}

.control-label {
    padding-top: 7px;
    line-height: 24px;
    font-weight: 200;
    font-size: 14px;
}

@media (max-width: 799px) {
    .col-one-mobile {
        width: 33.33333333%;
        float: left;
    }

    .col-two-mobile {
        width: 25%;
        float: left;
    }

    .col-three-mobile {
        width: 50%;
        float: left;
    }

    .col-four-mobile {
        width: 15%;
        float: left;
    }
}

.xl-only {
    display: none;
}

@media (min-width:1400px) {
    .col-xl-1 {
        width: 8.33333333%;
    }

    .col-xl-2 {
        width: 16.66666667%;
    }

    .col-xl-3 {
        width: 25%;
    }

    .col-xl-4 {
        width: 33.33333333%;
    }

    .col-xl-5 {
        width: 41.66666667%;
    }

    .col-xl-6 {
        width: 50%;
    }

    .col-xl-7 {
        width: 58.33333333%;
    }

    .col-xl-8 {
        width: 66.66666667%;
    }

    .col-xl-9 {
        width: 75%;
    }

    .col-xl-10 {
        width: 83.3333333%;
    }

    .col-xl-11 {
        width: 91.6666667%;
    }

    .col-xl-12 {
        width: 100%;
    }

    .hide-xl {
        display: none !important;
    }

    .xl-only {
        display: table-row;
    }
}

.img-responsive {
    width: 100%;
}

input[type="radio"] {
    display: none;
}

    input[type="radio"] + label {
        color: #777 !important;
        margin: 0 !important;
    }

.disabled-class {
    opacity: .5 !important;
    margin: 0 !important;
}

.radio-small-border {
    padding-left: 10px !important;
}

input[type="radio"] + label span {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    cursor: pointer;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

input[type="radio"] + label span {
    background-color: #bbb;
    border: 8px solid #bbb;
    transition: all .3s ease;
}

input[type="radio"]:checked + label span {
    background-color: #3C3C3B;
    border: 4px solid #bbb;
}

label {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0px;
}

    label .radio-inline {
        font-size: 14px;
    }

.radio-inline, .radio-inline + .radio-inline {
    margin-top: 0px;
}

.no-placeholder::-webkit-input-placeholder {
    color: white;
}

.no-placeholder:-moz-placeholder { /* Firefox 18- */
    color: white;
}

.no-placeholder::-moz-placeholder { /* Firefox 19+ */
    color: white;
}

.no-placeholder:-ms-input-placeholder {
    color: white;
}

.caps-only {
    text-transform: uppercase;
}

.lowercase-only {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

select.form-control {
    font-family: Roboto-Bold, Helvetica, Arial, sans-serif;
    padding: 3px 12px 3px 2px;
    height: 40px;
    border-radius: 0px;
    line-height: 34px;
}

select.short {
    width: 125px;
}

@media (min-width: 990px) {
    .margin-top-desktop {
        margin-top: 35px;
    }

    .container {
        width: auto;
    }
}

.input-group-btn > select.form-control {
    width: 100px;
}

input[type=checkbox].form-control {
    width: 40px;
}

input.form-control-number {
    max-width: 100px;
}

input.form-control-number-sm {
    max-width: 75px;
}

input.form-control-telephone {
    max-width: 133px;
}

input.form-control-zip {
    max-width: 120px;
}

input.form-control-datetime {
    max-width: 150px;
}

input.form-control-initial {
    max-width: 50px;
}

a.no-underline,
a.no-underline:hover {
    text-decoration: none;
}

.radio-inline input[type=radio] {
    position: relative;
}

.div-data {
    padding-left: 0;
}

    .div-data > input[type=checkbox] {
        height: 35px;
        width: 35px;
        box-shadow: none;
    }

.form-input {
    border-radius: 0;
}

.form-input-size-30 {
    width: 30% !important;
}

.form-input-size-70 {
    width: 70% !important;
}

.form-input-alert-address {
    max-width: 522px;
    border-radius: 0;
}

.clear-form-input-btn {
    position: absolute;
    top: 35px;
    right: 25px;
    cursor: pointer;
}

.add-on-input {
    max-width: 462px;
}

.input-alert-icon {
    position: relative;
}

    .input-alert-icon span,
    .input-alert-icon i {
        position: absolute;
        right: 0;
        top: 0;
        padding: 8px 10px;
        font-weight: bold;
        font-size: 20px;
    }

    .input-alert-icon .greencheck {
        color: #2dab66;
    }

    .input-alert-icon .orange {
        color: #f8b133;
    }

.box-shadow-lg {
    box-shadow: 0px 0px 30px #DDD;
}

.container-nav-limited {
    background: white;
    box-shadow: none;
    border: 0;
    padding-top: 0;
    margin-top: 100px;
}

:focus {
    outline: none !important;
}

.small-checkbox {
    position: absolute;
    padding: 3px;
    border: 2px solid #9c9c9b;
    border-radius: 4px;
}

    .small-checkbox input[type=checkbox] {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2000;
        height: 13px;
        width: 13px;
        margin: 0;
        opacity: 0;
    }

    .small-checkbox label {
        cursor: pointer;
        display: block;
        width: 10px;
        height: 10px;
        background-color: #e1e8f5;
    }

        .small-checkbox label:after {
            content: '';
            opacity: 0;
            position: absolute;
            width: 7px;
            height: 4px;
            background: transparent;
            top: 6px;
            left: 5px;
            border: 2px solid #007ec6;
            border-top: none;
            border-right: none;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

    .small-checkbox input[type=checkbox]:checked + label:after {
        opacity: 1;
    }

.big-checkbox {
    position: absolute;
    padding: 3px;
    border: 2px solid #9c9c9b;
    border-radius: 4px;
}

    .big-checkbox input[type=checkbox] {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2000;
        height: 26px;
        width: 26px;
        margin: 0;
        opacity: 0;
    }

    .big-checkbox label {
        cursor: pointer;
        display: block;
        width: 20px;
        height: 20px;
        background-color: #e1e8f5;
    }

        .big-checkbox label:after {
            content: '';
            opacity: 0;
            position: absolute;
            width: 14px;
            height: 8px;
            background: transparent;
            top: 7px;
            left: 6px;
            border: 4px solid #007ec6;
            border-top: none;
            border-right: none;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

    .big-checkbox input[type=checkbox]:checked + label:after {
        opacity: 1;
    }

.update-patient-checkbox {
    position: absolute;
    left: 50%;
}

    .update-patient-checkbox .big-checkbox {
        position: relative;
        left: -50%;
    }

/***** GLYPHICON HELPERS *****/
/* #region */
.caret-large {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 8px solid #000000;
}

.icon {
    color: #729bd3;
    position: relative;
}

    .icon .glyphicon {
        position: absolute !important;
        left: 2px;
        top: 0;
    }

.icon-label {
    position: absolute;
    left: 22px;
    bottom: 18px;
    font-weight: normal;
}

    .icon-label span,
    .container .row-pv-icons .icon-label.overlap span {
        font-size: 12px !important;
        font-weight: normal;
    }

.white-text {
    color: #fff;
}



/* #endregion */


/***** POSITION HELPERS *****/
/* #region */
.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-clear {
    float: none !important;
}

.clear {
    clear: both;
}

.position-fixed-header-default {
    position: fixed;
    top: 0px;
}

.zindex-top {
    z-index: 1000;
}
/* #endregion */

/***** DISPLAY HELPERS *****/
/* #region */
.inline-block {
    display: inline-block;
}

.full-width {
    width: 100%;
}
/* #endregion */


/***** PADDING HELPERS *****/
/* #region */
.margin-top-lg {
    margin-top: 15px !important;
}

.margin-top-md {
    margin-top: 10px;
}

.margin-top-sm {
    margin-top: 5px;
}

.margin-top-none {
    margin-top: 0px !important;
}

.margin-top-neg {
    margin-top: -5px;
}

.margin-right-sm-neg {
    margin-right: -5px
}

body.modal-open {
    //padding-right: 0px !important;
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: !important;
}

@media (min-width: 768px) {
    .patient-modal {
        height: 750px;
        overflow: auto;
    }

    .clinicalNotes-modal {
        height: 750px;
        overflow: auto;
    }

    .callEmailRecipientList-modal {
        height: 600px;
        overflow: auto;
        position: relative;
        background-color: #fff !important;
        border: 8px solid rgb(0, 126, 198) !important;
        border-radius: 15px !important;
    }

    .editCallEmailRecipient-modal {
        max-height: 768px;
        width: 600px !important;
        overflow: auto;
        position: relative;
        background-color: #fff !important;
        border: 8px solid rgb(0, 126, 198) !important;
        border-radius: 15px !important;
    }

    .editCallEmailRecipient-modal .editCallEmailRecipient-modal-body {
        margin: 20px;
    }

    .patientCallNotesHistory-modal {
        max-height: 768px;
        overflow: auto;
        position: relative;
        background-color: #fff !important;
        border: 8px solid rgb(0, 126, 198) !important;
        border-radius: 15px !important;
    }

    .patientCallNotesHistory-modal .patientCallNotesHistory-modal-body {
        /*margin: 20px;*/
        overflow-x: hidden;
        overflow-y: auto;
    }

    .notes-modal-hr {
        width: 90%
    }

    .sendCallDetailsEmail-modal {
        max-height: 768px;
        width: 600px !important;
        overflow: auto;
        position: relative;
        background-color: #fff !important;
        border: 8px solid rgb(0, 126, 198) !important;
        border-radius: 15px !important;
    }

    .sendCallDetailsEmail-modal .sendCallDetailsEmail-modal-body {
        margin: 20px;
    }

    .patient-modal-mini {
        height: 450px;
        overflow: hidden;
        position: relative;
        background-color: #fff !important;
        border: 8px solid rgb(0, 126, 198) !important;
        border-radius: 15px !important;
    }

    .startdate-modal-mini {
        height: 500px;
        overflow: hidden;
        position: relative;
        background-color: #fff !important;
        border: 8px solid rgb(0, 126, 198) !important;
        border-radius: 15px !important;
    }
}


@media (max-width: 800px) {
    .margin-top-lg-mobile {
        margin-top: 20px;
    }

    .margin-top-md-mobile {
        margin-top: 10px;
    }
}

.margin-right-large {
    margin-right: 15px;
}

.margin-right-md {
    margin-right: 10px;
}

.margin-right-sm {
    margin-right: 5px;
}

.margin-right-none {
    margin-right: 0px;
}

.margin-bottom-large {
    margin-bottom: 15px;
}

.margin-bottom-md {
    margin-bottom: 10px;
}

.margin-bottom-sm {
    margin-bottom: 5px;
}

.margin-bottom-none {
    margin-bottom: 0px !important;
}

.margin-left-xl {
    margin-left: 40px !important;
}

.margin-left-lg {
    margin-left: 20px;
}

.margin-left-md {
    margin-left: 15px;
}

.margin-left-sm {
    margin-left: 5px;
}

.margin-left-none {
    margin-left: 0px !important;
}

.margin-left-30 {
    margin-left: 30px !important;
}

.margin-sm {
    margin: 5px;
}

.margin-md {
    margin: 10px;
}

.margin-lg {
    margin: 15px;
}

.padding-none {
    padding: 0px !important;
}

.padding-right-none {
    padding-right: 0px !important;
}

.padding-right-sm {
    padding-right: 5px !important;
}

.padding-right-md {
    padding-right: 10px !important;
}

.padding-right-lg {
    padding-right: 15px !important;
}

.padding-right-xl {
    padding-right: 35px !important;
}

.padding-left-none {
    padding-left: 0px !important;
}

.padding-left-sm {
    padding-left: 5px !important;
}

.padding-left-md {
    padding-left: 10px !important;
}

.padding-left-lg {
    padding-left: 15px !important;
}

.padding-left-lg-xl {
    padding-left: 25px !important;
}

.padding-left-xl {
    padding-left: 35px !important;
}

.padding-top-md {
    padding-top: 10px !important;
}

.padding-top-none {
    padding-top: 0px !important;
}

.padding-md {
    padding: 10px;
}

.padding-sm {
    padding: 5px;
}

.padding-xs {
    padding: 4px !important;
}

.padding-lg {
    padding: 25px !important;
}

.padding-mid {
    padding: 12px !important;
}

.padding-left-large {
    padding-left: 25px !important;
}

.padding-top-large {
    padding-top: 15px;
}

.padding-top-sm {
    padding-top: 5px !important;
}

.padding-top-xs {
    padding-top: 4px;
}

.padding-bottom-sm {
    padding-bottom: 5px;
}

.padding-bottom-md {
    padding-bottom: 10px;
}

.padding-bottom-none {
    padding-bottom: 0px !important;
}

.margin-none {
    margin: 0px !important;
}

.padding-bottom-large {
    padding-bottom: 15px;
}

.padding-bottom-xl {
    padding-bottom: 35px;
}

.position-right-md {
    right: 10px;
}

/* #endregion */

/***** BORDER HELPERS *****/
/* #region */
.border-gray-md {
    border: solid 3px #CCCCCC;
}

.border-gray-sm {
    border: solid 1px #9C9B9B;
}

.border-bottom-gray-sm {
    border-bottom: solid 1px #ccc;
}

.border-none {
    border: none !important;
}

.border-bottom-none {
    border-bottom: none !important;
}

.border-top-none {
    border-top: none !important;
}

.border-collapse {
    border-collapse: collapse;
}
/* #endregion */


/***** WIDTH HELPERS *****/
/* #region */
.width-half {
    width: 50% !important;
}

.width-whole {
    width: 100% !important;
}

.width-90 {
    width: 90%;
}

.width-85 {
    width: 85%;
}

.width-40 {
    width: 40%;
}

.width-15 {
    width: 15%;
}

.width-10 {
    width: 10%;
}

.width-auto {
    width: auto !important;
}
/* #endregion */


/***** FONT HELPERS *****/
/* #region */
.bold {
    font-family: Roboto-Bold, Helvetica, Arial, sans-serif;
}

.italic {
    font-style: italic;
}

.text-left {
    text-align: left !important;
}

.text-top {
    vertical-align: top;
}

.text-label {
    padding-top: 7px;
    line-height: 24px;
}



label {
    font-weight: normal;
}

.text-md {
    font-size: 14px;
}

.text-sm {
    font-size: 12px !important;
}

.text-data {
    line-height: 20px !important;
    margin-left: 5px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #3C3C3B;
}

.text-data-sm {
    line-height: 20px !important;
    margin-left: 5px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #3C3C3B;
}

.text-data-no-color {
    line-height: 16px !important;
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.text-data-no-margin {
    line-height: 16px !important;
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #3C3C3B;
}

.text-between {
    text-align: center;
    width: 100%;
    display: block;
    padding: 5px 0;
    margin: 0;
}

.label-chart-list {
    color: rgb(0, 126, 198);
    font-weight: bold;
}

.grid-data {
    font-family: Arial, sans-serif;
    font-size: 14px;
}

    .grid-data .fa {
        height: 14px !important;
        font-size: 14px !important;
    }

.text-data .glyphicon {
    font-size: 24px;
    padding-top: -7px;
    text-align: left;
}

.glyphicon-ban-circle {
    color: #b05151;
}

.glyphicon-ok-circle {
    color: #63b051;
}

.glyphicon-ok-blue {
    color: #007EC6;
    margin-right: 5px;
}

.glyphicon-remove-gray {
    color: #BBB;
    margin-right: 5px;
    margin-left: 20px;
}

.glyphicon-remove-black {
    color: #333;
    margin-right: 5px;
}

table .text-data .glyphicon-ban-circle {
    font-size: 16px;
    line-height: 24px;
    padding-top: -9px;
    color: #b05151;
}

table .text-data .glyphicon-ok-circle {
    font-size: 16px;
    line-height: 14px;
    padding-top: -9px;
    color: #63b051;
}

/* #endregion */

/***** HEADER HELPERS *****/
/* #region */

.header-patient-name img {
    width: 70px;
    height: 70px;
}

.h4-head {
    color: rgb(0, 126, 198);
    font-weight: bold;
    border-bottom: 2px solid rgb(145, 177, 221);
    padding-bottom: 4px;
}

.h4-head-noline {
    color: rgb(0, 126, 198);
    font-weight: bold;
}

.patient-header {
    border: solid 2px #007EC6;
    background-color: #fff;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
    overflow: hidden;
}

.patient-consent-add-wrapper .patient-header {
    padding: 15px;
}

.m-signature-pad {
    border: 0 !important;
}

.patient-consent-add-wrapper .patient-header .alert-footer, .patient-modal .alert-footer {
    border: 0;
    position: absolute;
    top: 10px;
    right: 25px;
}

    .patient-consent-add-wrapper .patient-header .alert-footer button, .patient-modal .alert-footer button {
        background-color: transparent !important;
        color: #555 !important;
        border: 0 !important;
        font-weight: 600;
        position: relative;
        top: 20px;
    }

.m-signature-pad--body {
    font-weight: 600;
}

.patient-consent-add-wrapper .patient-header .alert-footer button:hover, .patient-modal .alert-footer button:hover {
    background-color: transparent !important;
    color: #333 !important;
    border: 0 !important;
}

.patient-header label {
    color: #007EC6;
    font-weight: bold;
}

.padding-for-nav-limited-header {
    padding-top: 110px;
}

.header-default-wrapper {
    background: white;
    margin-bottom: 15px;
    border-top: solid 8px #007EC6;
    z-index: 100;
}

.header-default {
    padding-top: 5px;
    font-size: 14px;
    color: #818181;
}

.navbar-default {
    background: transparent;
    border: none;
    top: 5px;
}

    .navbar-default ul.collapsable {
    }

.loading-panel {
    background-color: #fff;
    border: 2px solid rgb(0, 126, 198);
    margin-bottom: 15px;
    padding: 15px;
}


@media (max-width: 800px) {
    .nav-brand {
        width: 115px;
        float: left;
    }

    .navbar-header {
        float: none;
    }

    .navbar-left, .navbar-right {
        float: none !important;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }

    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-nav {
        float: none !important;
        margin-top: 7.5px;
        text-align: right;
    }

        .navbar-nav > li {
            float: none;
        }

            .navbar-nav > li > a {
                padding-top: 10px;
                padding-bottom: 10px;
            }

    .collapse.in {
        display: block !important;
    }

    .navbar-collapse.in {
        overflow-y: auto !important;
    }

    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }

        .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
            padding: 5px 15px 5px 25px;
        }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #999;
    }

        .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
        .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
            color: #fff;
            background-color: transparent;
            background-image: none;
        }
}


.navbar-default .navbar-nav > li > a, .navbar-default .navbar-nav > li > a:hover {
    font-size: 15px;
    font-weight: 600;
    color: #616161 !important;
    width: auto;
    padding-left: 7px !important;
    padding-right: 8px !important;
    padding-top: 5px;
    padding-bottom: 5px;
}

@media (max-width: 800px) {
    .navbar-default .navbar-nav > li > a, .navbar-default .navbar-nav > li > a:hover {
        padding-left: 15px !important;
    }
}

.header-default-wrapper .user-options > div > div,
.header-default-wrapper .dropdown {
    padding: 5px 5px 7px 5px;
    float: right;
    border: solid 2px transparent;
}

.header-default-wrapper .user-options div.open {
    background: rgba(0, 126, 198, 1);
    border-color: #91B1DD;
    color: #fff;
}

    .header-default-wrapper .user-options div.open > a {
        color: white;
    }

        .header-default-wrapper .user-options div.open > a .caret-large {
            border-top-color: white;
        }

    .header-default-wrapper .user-options div.open ul {
        color: #616161 !important;
    }

.header-default-wrapper .navbar-default .navbar-nav > .open > a,
.header-default-wrapper .navbar-default .navbar-nav > .open > a:hover,
.header-default-wrapper .navbar-default .navbar-nav > .open > a:focus {
    background: transparent !important;
    color: #ffffff;
}

.header-default-wrapper .user-options > div > div.open ul {
    color: #666666;
}

.header-default-wrapper .user-options > div > div.open > a > .caret {
    border-top: 8px solid #ffffff;
}

.header-default-wrapper .user-options > div > div.open > a {
    color: white !important;
}

.header-default-wrapper .dropdown-toggle {
    height: 60px;
    padding-top: 5px;
}

.header-default-wrapper .dropdown-menu,
.facilities .dropdown-menu {
    border: solid 2px #91B1DD;
    border-radius: 0;
    margin: 0 -2px;
    padding: 0;
}

    .header-default-wrapper .dropdown-menu .divider,
    .facilities .dropdown-menu .divider {
        margin: 0;
        background-color: #91B1DD;
    }

        .header-default-wrapper .dropdown-menu .divider:last-child,
        .facilities .dropdown-menu .divider:last-child {
            height: 0;
        }

    .header-default-wrapper .dropdown-menu li:nth-child(4n+3),
    .facilities .dropdown-menu li:nth-child(4n+3) {
    }

    .header-default-wrapper .dropdown-menu li a,
    .facilities .dropdown-menu li a {
        padding: 8px 16px;
        transition: all .3s ease;
    }

        .header-default-wrapper .dropdown-menu li a:hover,
        .facilities .dropdown-menu li a:hover {
            background-color: rgb(145, 177, 221);
        }

.header-default-wrapper a.logout {
    padding-top: 8px;
    text-decoration: none;
    color: #818181;
    font-size: 14px;
}

.header-default-wrapper .frc-name {
    position: relative;
    top: -6px;
    right: 10px;
}



.header-default-wrapper .dropdown-menu li img.loading-spinner {
    height: 18px;
    width: 18px;
    margin-top: -3px;
    margin-left: 5px;
    margin-right: 5px;
}

.header-default .nav-pills li {
    width: auto;
    margin-top: 4px;
}

    .header-default .nav-pills li a {
        font-size: 17px;
        color: #000000 !important;
        width: auto;
        padding-left: 6px !important;
        padding-right: 6px !important;
        padding-top: 5px;
        padding-bottom: 5px;
    }

.navbar-nav.navbar-right:last-child {
    margin-right: 0px;
}

.header-default ul.collapsable {
    float: right;
}



.header-default .nav-pills li.last a {
    padding-right: 0px;
}

.header-default .nav-pills li a.active,
.navbar-right li a.active {
    color: #007EC6 !important;
    background: transparent;
}

.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a:hover {
    color: #000000;
}

#navbar .open {
    background-color: rgba(0, 126, 198, 1);
}

    #navbar .open .adminMenu {
        color: white !important;
    }

        #navbar .open .adminMenu .caret {
            border-top-color: white;
        }

#navbar .adminMenu + ul li {
    width: 100%;
    text-align: right;
}

.header-default .dropdown-toggle {
    color: #616161 !important;
    padding-top: 0px;
}

.facilitiesNotesIcon {
    width: 18px;
    float: right;
    text-align: center;
}

#facilitiesNotesIconAnchor {
    width: 50px;
    float: right !important;
    margin-right: -20px;
    padding-left: 5px;
}

#quickAddForm-FacilityLabel {
    position: absolute;
}

#quickAddForm-facilitiesNotesIcon {
    width: 21px;
    float: right;
}

#quickAddForm-facilitiesNotesIconAnchor {
    position: absolute;
    width: 45px;
    float: right !important;
    margin-top: 24px;
    margin-left: -5px;
}

#quickAddForm-facilitiesNotesLabel {
    position: absolute;
    font-size: 9px;
    margin-top: 58px;
    margin-left: -3px;
}

#quickAddForm-facilitiesNotes {
    height: 149px;
    width: 610px;
    max-width: 610px;
    min-width: 610px;
}

#quickAddForm-informationPng {
    width: 75%;
}

#quickAddForm-selectedSearchFacility {
    padding-top: 25px;
}

#informationPng {
    width: 20px;
    position: absolute;
}

.nav .dropdown,
.facilities .dropdown {
    color: #616161;
    font-size: 14px;
    top: 2px;
}

    .nav .dropdown a,
    .facilities .dropdown a {
        color: #616161;
    }

.nav div.open > a,
.nav div.open > a:hover {
    background: transparent;
}

.dropdown > .btn {
    color: black !important;
}

.dropdown-menu.dropdown-menu-infu {
    border-radius: 0;
    box-shadow: none;
    border: 2px solid rgb(156, 155, 155);
    margin-top: -2px;
    margin-left: -2px;
    padding: 0;
}

    .dropdown-menu.dropdown-menu-infu a {
        padding: 6px 15px;
    }

.header-limited {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    min-height: 84px;
    padding: 15px;
    background: #fff;
    margin-bottom: 0px;
    border-top: solid 8px #007EC6;
    border-bottom: solid 16px #007EC6;
}

    .header-limited > .container {
        position: relative;
        line-height: 100%;
    }

        .header-limited > .container > h3 {
            background-color: #fff;
            border: 2px solid rgb(0, 126, 198);
            padding: 14px;
            font-weight: bold;
        }

    .header-limited .user-name {
        display: block;
    }

    .header-limited .facility-id, .header-limited .frc-name {
        font-size: 12px;
    }

    .header-limited .facility-id {
        display: block;
    }

    .header-limited button {
        padding: 0;
    }

.padding-for-limited-header {
    padding-top: 84px;
}

.collection-padding-for-limited-header {
    padding-top: 127px !important;
}

.header-limited a {
    text-decoration: none;
    color: #007EC6;
    font-size: 14px;
    text-align: center;
}

.header-back-only {
    background: #007EC6;
    padding: 5px 5px 5px 5px;
    text-align: center;
    color: white;
}

    .header-back-only a {
        color: white;
    }

    .header-back-only .title {
        font-size: 30px;
        line-height: 70px;
    }

.header {
    background-color: #F7F8F8 !important;
}

.header-return-and-home,
.header-cancel-and-save {
    padding-top: 5px;
    background: #999999;
    margin-bottom: 15px;
    border-top: solid 8px #007EC6;
    border-bottom: solid 1px #CCCCCC;
}

    .header-return-and-home a,
    .header-cancel-and-save a {
        color: #007EC6;
        text-decoration: none;
    }

    .header-return-and-home .container,
    .header-cancel-and-save .container {
        padding-left: 5px;
        padding-right: 0;
    }

    .header-return-and-home .title,
    .header-cancel-and-save .title {
        font-size: 30px;
        line-height: 70px;
    }
/* #endregion */


/***** ALIGNMENT HELPERS *****/
/* #region */
.align-content-right {
    text-align: right;
}

.align-content-center {
    text-align: center;
}

@media (min-width: 800px) {
    .align-center-wide-only {
        text-align: center;
    }
}

/* #endregion */

/***** CONTAINERS HELPERS *****/
/* #region */

.padding-for-nav-limited-header {
    padding-top: 110px;
}

.facility-list-wrapper > .container,
.facility-wrapper > .container {
    background: Transparent;
    font-size: 14px;
}

.facility-list-wrapper .table {
    background: white;
    border: solid 1px #cccccc;
}

/* #endregion */

/***** CURSORS *****/
/* #region */
.cursor-arrow {
    cursor: default;
}

.cursor-pointer {
    cursor: pointer;
}

a {
    cursor: pointer;
}

    /* #endregion */

    /***** BUTTONS *****/
    /* #region */
    button, a.btn {
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        background-color: rgb(0, 126, 198);
        border: none;
        color: white !important;
        padding: 5px;
    }

.last_pwo_text {
    color: #729bd3 !important;
}

.btn.btn-dropdown-addon {
    border: 2px solid rgb(156, 155, 155);
    border-radius: 0;
    border-left: 0;
    padding: 8px 12px;
    color: #666 !important;
}

.btn.btn-dropdown-addon-lg {
    border: 2px solid rgb(156, 155, 155);
    border-radius: 0;
    border-left: 0;
    padding: 9px 12px;
    color: #666 !important;
}

.btn.btn-dropdown-addon:hover {
    background-color: #E1E8F6;
}

.btn.transparent-blue {
    background-color: transparent;
    color: #729bd3 !important;
}

.transparent-blue-label {
    color: #729bd3 !important;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn.no-bg {
    background-color: transparent;
    color: #729bd3 !important;
    line-height: 1;
    margin-top: -2px;
    margin-left: 15px;
    padding: 0;
    font-size: 11px;
    font-weight: bold;
    position: relative;
    text-transform: uppercase;
}

.collection-action-delete {
    background-color: transparent;
    padding: 0px;
}

.btn.no-bg i {
    font-size: 24px;
    position: absolute;
    left: -24px;
    top: 0;
}

    .btn.no-bg i.font-32 {
        font-size: 32px;
    }

    .btn.no-bg i.status-edit {
        left: 24px;
    }

    .btn.no-bg i.no-position {
        position: static;
    }

.btn.no-bg.treatment-tag i {
    left: -14px;
    top: 1px;
}

.btn.no-bg-blue {
    background-color: transparent;
    color: #007EC6 !important;
    font-size: 24px;
    padding: 2px 15px 0px 15px;
}

.btn.btn-big {
    font-family: Arial;
    font-weight: 600;
    font-size: 22px;
    padding: 8px 24px;
    border-radius: 10px;
    font-style: normal;
}

.btn.btn-md {
    font-family: Arial;
    font-weight: 600;
    font-size: 18px;
    padding: 8px 24px;
    border-radius: 10px;
    font-style: normal;
}

.btn-table-image {
    font-size: 12px;
    background-color: transparent;
    color: #007EC6 !important;
}

    .btn-table-image > img {
        width: 40px;
    }

.btn-blue {
    color: #fff;
    text-align: center;
    background-color: #007EC6;
}

.btn-white, a.btn-white {
    color: #007EC6 !important;
    text-align: center;
    background-color: #FFF;
    background-image: -moz-linear-gradient(top, #FFF, #CCC);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#FFF), to(#CCC));
    background-image: -webkit-linear-gradient(top, #FFF, #CCC);
    background-image: -o-linear-gradient(top, #FFF, #CCC);
    background-image: linear-gradient(to bottom, #FFF, #CCC);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff006599', GradientType=0);
    border-color: #aaa #aaa #00334d;
    border-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.4);
    border-style: solid !important;
    border-width: 1px !important;
}

.btn-red {
    color: #ffffff;
    text-align: center;
    background-color: #c22020;
    background-image: -moz-linear-gradient(top, #c22020, #981e1e);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#c22020), to(#981e1e));
    background-image: -webkit-linear-gradient(top, #c22020, #981e1e);
    background-image: -o-linear-gradient(top, #c22020, #981e1e);
    background-image: linear-gradient(to bottom, #c22020, #981e1e);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c22020', endColorstr='#981e1e', GradientType=0);
    border-color: #CCC #CCC #890f0f;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.btn-header {
    color: #007EC6 !important;
    background: #EEE;
    font-size: 14px;
}

.btn-white:hover {
    color: #007EC6;
}


.btn-alert, a.btn-alert {
    color: #555 !important;
    text-align: center;
    background-color: #FFF;
    background-image: -moz-linear-gradient(top, #FFF, #ddd);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#FFF), to(#ddd));
    background-image: -webkit-linear-gradient(top, #FFF, #ddd);
    background-image: -o-linear-gradient(top, #FFF, #ddd);
    background-image: linear-gradient(to bottom, #FFF, #ddd);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff006599', GradientType=0);
    border-color: #aaa #aaa #00334d;
    border-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.4);
    border-style: solid !important;
    border-width: 1px !important;
    border-right: none;
}

.btn-success,
.btn-warning,
.btn-danger {
    color: #fff !important;
}

.btn-width-100 {
    width: 100px;
}

th button {
    color: #333 !important;
}

td button {
    color: #333 !important;
}

.btn-primary {
    color: white !important;
}

.btn-secondary {
    color: #fff !important;
    background-color: #91B1DD;
}

    .btn-secondary:hover {
        background-color: #C2D2EC;
    }

.btn-datepicker {
    width: auto;
    height: 40px;
}

    .btn-datepicker .btn-datepicker-sm {
        width: initial;
        height: initial;
    }

.btn-number {
    width: auto;
    height: 40px;
}

.btn-edit {
    font-style: normal;
    text-align: left;
    margin-right: 20px;
}

.btn.no-bg.btn-edit i {
    top: -2px;
    left: initial;
}

.btn-icon-xsm {
    height: 20px;
}

.btn-icon-sm {
    height: 35px;
}

.btn-full-width {
    width: 100%;
}

.btn-retrieve {
    font-style: normal;
    text-align: left;
}

    .btn-retrieve i {
        position: static !important;
        left: initial !important;
    }

    .btn-retrieve span {
        font-size: medium;
    }

.input-group-btn .btn-datepicker {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    background-color: transparent;
    z-index: 99;
}

    .input-group-btn .btn-datepicker > .glyphicon {
        color: rgb(85,85,85);
    }

/*This should be removed if/when bootstrap UI is upgraded from v0.11; Future versions allow for configuring alignment */
.input-group.right-date .dropdown-menu {
    left: -140px !important;
}


.disabled-button {
    opacity: .5;
}

.left-nav-button {
    margin-left: 0px;
}

    .left-nav-button span {
        padding-right: 4px;
    }

.right-nav-button {
    margin-right: 0px;
    margin-left: 15px;
}

.btn-dashboard, a.btn-dashboard {
    width: 100%;
    font-size: 16px;
    font-weight: 900;
    font-family: Arial;
    background-color: #91B1DD;
    text-align: right;
    text-transform: uppercase;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 10px 35px 10px 5px;
    color: #4d4d4d !important;
    margin-bottom: 2px !important;
    position: relative;
    transition: all .3s ease;
}

.btn-dashboard-emr, a.btn-dashboard-emr {
    margin-top: 15px;
    margin-left: -10px;
    font-size: 10px;
    background-color: transparent;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    color: #4d4d4d !important;
}

.btn-dashboard:hover, a.btn-dashboard:hover {
    background-color: rgb(182, 199, 232);
}

.btn-dashboard .badge {
    position: absolute;
    top: 3px;
    right: 3px;
    font-size: 10px;
    background-color: rgb(250, 46, 46);
    padding: 3px 5px;
}

.btn-dashboard-emr .badge {
    font-size: 10px;
    padding: 3px 5px;
    background-color: rgb(250, 46, 46);
}

.nav .badge {
    position: absolute;
    top: -3px;
    right: -10px;
    font-size: 9px;
    background-color: rgb(250, 46, 46);
}

.btn-dashboard-blue {
    margin-bottom: 0px;
}
/* #endregion */

/*****  NAVIGATION ****/
/* #region */
.navbar-fixed-top {
    background-color: #F7F8F8;
}
/* #endregion */

count p {
    margin: 0;
}

select {
    padding: 8px 15px;
    background-color: #fff;
    border: 2px solid #9C9B9B;
}

.fa.fa-long-arrow-up, .fa.fa-long-arrow-down {
    font-size: 20px;
    padding: 0 4px;
}

@media (max-width: 800px) {
    count p {
        margin-top: 12px;
    }

    .container {
        width: initial;
    }

    .fa.fa-long-arrow-up, .fa.fa-long-arrow-down {
        font-size: 22px;
        color: #fff;
        padding: 0 8px;
        position: relative;
        top: 3px;
    }
}

.select-sort {
    font-weight: bold;
}

.sort-by {
    padding: 5px;
    color: #aaa;
}

a.sort-order,
a.sort-order:hover .selected-sort {
    color: #fff;
}

.selected-sort-label {
    position: relative;
}

.selected-sort-arrow {
    position: absolute;
    left: 100%;
    top: initial;
    bottom: 4px;
}

/***** BORDERS *****/
/*#region BORDERS*/

.border-right {
    border-right: solid 1px;
}
/*#endregion*/

/***** ALERT BOXES *****/
/* #region */
.required-alert {
    padding: 9px 15px;
    background-color: rgb(225, 232, 246);
    font-weight: bolder;
    font-size: 14px;
    border: 1px solid rgb(145, 177, 221);
}

.alert-success {
    background-color: #2DAB66;
}

.alert-footer {
    border-top: solid 1px rgb(229, 229, 229);
    height: 50px;
}

.alert-footer-button {
    cursor: default;
    height: 100%;
    width: 50%;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    padding-right: 0px;
    padding-left: 0px;
}

/*To avoid alert-footer-button nth-child conflicts*/
.alert-footer-button-new {
    cursor: default;
    height: 100%;
    width: 50% !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    border-radius: 0px;
    padding-right: 0px;
    padding-left: 0px;
}

.alert-footer-button-full {
    cursor: default;
    height: 100%;
    width: 100%;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    padding-right: 0px;
    padding-left: 0px;
}

.alert-footer-button:nth-child(1) {
    background-color: #BBBBBB; /* color pulled from angular filter for boolean data - false value */
    border-color: #BBBBBB;
}

.alert-footer-button:nth-last-child(1) {
    background-color: #007EC6; /* color pulled from angular filter for boolean data - true value */
    border-color: #007EC6;
}

.alert-footer-button-new:nth-last-child(1) {
    background-color: #007EC6; /* color pulled from angular filter for boolean data - true value */
    border-color: #007EC6;
}

.alert-footer-button-full:nth-child(1) {
    background-color: #BBBBBB; /* color pulled from angular filter for boolean data - false value */
    border-color: #BBBBBB;
}

.alert-footer-button-full:nth-last-child(1) {
    background-color: #007EC6; /* color pulled from angular filter for boolean data - true value */
    border-color: #007EC6;
}

.alert-footer-col {
    padding-right: 0px;
    padding-left: 0px;
}

    .alert-footer-col:nth-child(1) {
        padding-right: 0px;
        padding-left: 0px;
        width: 33%;
    }

    .alert-footer-col:nth-last-child(1) {
        padding-right: 15px;
        padding-left: 0px;
    }

    .alert-footer-col:nth-child(1) .alert-footer-button {
        -webkit-border-radius: 0px 0px 0px 5px;
        -moz-border-radius: 0px 0px 0px 5px;
        border-radius: 0px 0px 0px 5px;
    }

    .alert-footer-col:nth-last-child(1) .alert-footer-button {
        -webkit-border-radius: 0px 0px 5px 0px;
        -moz-border-radius: 0px 0px 5px 0px;
        border-radius: 0px 0px 5px 0px;
    }

.alert .modal-body {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.alert .modal-body-nocenter {
    padding-top: 10px;
    padding-bottom: 50px;
}

.alert .modal-body-nopad {
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: center;
}

.alert .modal-header-limited {
    z-index: 100;
    width: 100%;
    padding-top: 5px;
    background: #EEE;
    margin-bottom: 0px;
    border-bottom: solid 1px #CCCCCC;
    text-align: center;
    font-size: 24px;
}

.alert .padding-for-nav-limited-header {
    padding-top: 0px;
}

.alert {
    border-radius: 0;
    border: 0;
    padding: 15px 30px;
    color: rgb(86, 86, 86);
    font-weight: bold;
    font-size: 15px;
    font-style: italic;
}

.alert-warning {
    background-color: #FFCE00;
}

.alert-error {
    background-color: #FFFF00;
}

.alert-dismissable {
    background-color: #00ff00;
}

/* #endregion */


/***** MODALS *****/
/* #region */
.modal-dialog {
    margin: 0 auto;
    padding-top: 30px;
}

.modal-right-pad {
    padding-right: 50px;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 32px;
    line-height: .5;
}

.search-close {
    position: absolute;
    top: 10px;
    right: 60px;
    z-index: 1001;
}

.grid-wrapper .close {
    top: 10px;
    color: #000 !important;
}

.modal-fullwidth.modal-dialog {
    position: fixed;
}

.modal-open #pdfViewModal.modal {
    overflow: visible;
    /* z-index fixes ie only issue where certain elements were bleeding into PDF Modal */
    z-index: 10001;
}

#pdfViewModal .modal-content > .patient-modal {
    padding: 60px !important;
    /* z-index fixes ie only issue where certain elements were bleeding into PDF Modal */
    z-index: 10002;
}

#pdfViewModal .patient-modal > .close {
    top: 2px;
    right: 2px;
}

.modal-fullwidth .close {
    top: -20px;
    right: -20px;
    font-size: 32px;
    background-color: #fff;
    border-radius: 50px;
    opacity: 1;
    padding: 5px;
    color: #555;
    border: 5px solid #007ec6;
}

    .modal-fullwidth .close:hover {
        opacity: 1;
    }

.modal-dialog.modal-fullwidth {
    width: 90%;
}

@media (min-width: 800px) {
    .emailRecipient-modal > .modal-sm .modal-content {
        width: 400px;
    }

    .modal-dialog {
        width: 680px;
    }

    .modal-lg {
        width: 900px;
    }

    .modal-dialog.modal-fullwidth {
        width: 90% !important;
    }
}

.modal-header {
    height: 55px;
}

.modal-body > h3 {
    margin-top: 0;
}

.modal input[type="checkbox"] + label span {
    background-color: #e1e8f5;
    border-color: #e1e8f5;
    box-shadow: 0 0 0 1px gray;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    cursor: pointer;
}

.modal .input[type="checkbox"]:checked + label span {
    background-color: #3c3c3b;
    border: 4px solid #e1e8f5;
}
/* #endregion */


/***** PANELS *****/
/* #region */

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 2px solid rgb(0, 126, 198);
    border-radius: 0;
    box-shadow: none;
}

    .panel .panel-body {
        padding: 30px;
    }

.pumpAssignment .panel-body {
    padding-top: 15px !important;
}

.panel-blue {
    border: solid 1px #CCC;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

    .panel-blue > .panel-heading {
        background-color: #007EC6;
        color: white;
        font-family: Roboto-Bold, Helvetica, Arial, sans-serif;
        font-size: 20px;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .panel-blue > .panel-body {
        padding: 10px 10px 5px 10px;
    }

.panel-heading a,
.panel-heading a:hover {
    color: white;
}

.panel-title .row.has-input > .title {
    top: 8px;
}

.supplyorderModal .panel-body .panel-body {
    border: 0px solid #fff !important;
}

.modal-header {
    height: 55px;
}

.modal-body > h3 {
    margin-top: 0;
}
/* #endregion */



/***** VIDEO JS PLAYER *****/
/* #region */
.vjs-control-bar {
    height: 50px !important;
    font-size: 20px !important;
    line-height: 20px !important;
}
/* #endregion */


/***** SIGNATURE PAD MODALS *****/
/* #region */
.m-signature-pad {
    border: 1px solid #999;
}

    .m-signature-pad .signature-canvas-wrapper {
        margin: 15px;
        overflow: hidden;
    }

    .m-signature-pad canvas {
        background: Transparent;
        background-image: url('/Images/sign-here.png');
        background-repeat: no-repeat;
        background-position: left bottom;
    }

.signature-modal .modal-body {
    padding: 0px !important;
}

.signature-button {
    margin: 0;
    height: 100%;
}

.patient-modal .m-signature-pad {
    border: 2px solid #007EC6 !important;
}

    .patient-modal .m-signature-pad canvas {
        width: 100%;
        height: 300px;
    }

    .patient-modal .m-signature-pad canvas {
        width: 100%;
        height: 300px;
    }

/* #endregion */

/***** INPUT GROUP TEMPLATE*****/
/* #region */
.patient-search > .input-group-addon {
    border-radius: 0px;
    background: #007EC6;
    color: #C6C6C5;
    font-weight: 800;
    font-size: 17px;
    border: 2px solid rgb(0, 126, 198);
    font-family: Arial;
}

.patient-search.input-group-sm > .input-group-addon {
    font-size: 12px;
    padding: 2px 6px;
}

.patient-search .form-control {
    border-color: rgb(0, 126, 198) !important;
}

.patient-search .glyphicon-search {
    font-size: 22px;
    font-weight: 800;
}

.patient-search .form-control.facility-search {
    border-top: 2px solid rgb(0, 126, 198) !important;
}

.input-group-selected-item {
    display: inline-block;
    padding: 10px 16px;
    border: 2px solid rgb(0, 126, 198);
    font-weight: bold;
    font-size: 14px;
}

    .input-group-selected-item .clear-btn {
        color: #777;
        cursor: pointer;
        margin-left: 10px;
    }

        .input-group-selected-item .clear-btn:hover {
            color: #222;
        }

.search-endcap {
    border-radius: 0px;
    background: #007EC6;
    color: White;
}

.input-group > .input-label {
    border: none;
    background: transparent;
    color: #555555;
    padding-bottom: 5px;
}

/* #endregion */
.input-scrollTo {
    background: #007EC6;
    color: #C6C6C5;
    font-weight: 800;
    font-size: 17px;
    font-family: Arial;
    display: inline;
    margin: 0;
    height: 40px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: top;
}


/***** DASHBOARD STYLES*****/
/* #region */
.table-wrapper {
    border: solid 2px #91B1DD;
}

    .table-wrapper .table > tbody > tr > td {
        border-top: 2px solid #91B1DD;
        padding: 12px 6px;
    }

    .table-wrapper .table > tbody > tr:first-child > td {
        border-top: 0;
    }

@media (max-width: 989px) {
    .dashboard-row-wrapper {
        padding: 0 100px;
    }
}

.dashboard-box-wrapper {
    margin-bottom: 25px;
}

    .dashboard-box-wrapper .box-top {
        background: #E1E8F6;
        border: solid 2px #91B1DD;
    }

        .dashboard-box-wrapper .box-top > .row {
            padding: 0;
            margin-bottom: 10px;
        }

            .dashboard-box-wrapper .box-top > .row:nth-child(2) {
                padding-left: 15px;
                margin-bottom: 0;
            }

    .dashboard-box-wrapper > hr {
        border-top-color: #CCCCCC;
    }

    .dashboard-box-wrapper .count {
        border-top-color: #CCCCCC;
        font-family: Roboto-Narrow, Helvetica, Arial, sans-serif;
        font-size: 70px;
        line-height: 65px;
        margin-right: 5px;
    }

    .dashboard-box-wrapper .count-label {
        text-align: right;
        width: 100%;
        line-height: 18px;
        padding-top: 0;
    }


    .dashboard-box-wrapper button {
        border: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
        padding: 0 5px 5px;
        position: relative;
        overflow: hidden;
        transition: all .3s ease;
    }

        .dashboard-box-wrapper button:hover {
            opacity: 0.8;
        }

        .dashboard-box-wrapper button .btn-icon {
            position: absolute;
            top: 0;
            left: 0;
            width: 40%;
        }

        .dashboard-box-wrapper button .count {
            font-family: Arial;
            font-size: 70px;
            color: rgb(225, 232, 245);
            line-height: 65px;
            margin-right: 0;
            margin-left: 0;
        }

        .dashboard-box-wrapper button .count-label {
            text-align: right;
            width: 100%;
            line-height: 18px;
            font-weight: bold;
            padding-top: 0;
            color: rgb(225, 232, 245);
        }

        .dashboard-box-wrapper button.btn-white .count,
        .dashboard-box-wrapper button.btn-white .count-label {
            color: #666;
        }

        .dashboard-box-wrapper button.btn-white {
            padding: 4px;
        }

    .dashboard-box-wrapper a img {
        height: 25px;
        width: 25px;
    }

    .dashboard-box-wrapper .title {
        font-size: 17px;
        line-height: 20px;
        margin: 5px 5px 20px 0;
        display: inline-block;
        font-weight: 900;
        font-family: Arial;
        float: right;
    }

    .dashboard-box-wrapper .button-area {
        margin: 0;
        padding: 0;
    }

        .dashboard-box-wrapper .button-area > div {
            padding: 0;
        }

.dashboard-img-stats-empty-height {
    height: 88px;
}

.dashboard-height100 {
    height: 100%;
}

.dashboard-box-wrapper-retail-nwpt-additions {
    min-width: 196px;
    padding-left: 3px;
    padding-right: 3px;
}

.infuSystem-mobile-img-dashboard-box {
    position: absolute;
    width: 40px !important;
    height: 40px !important;
    left: 5px !important;
    top: 0px !important;
}

.infuSystem-mobile-img-pwo-list {
    position: relative;
    margin: -10px 0px -10px 15px;
    width: 40px !important;
    height: 40px !important;
}

#infuSystem-mobile-img-page-center {
    margin-top: 1em;
    width: 60px;
    height: 60px;
}

#infuSystem-covid19-img {
    margin-top: 1em;
    width: 60px;
    height: 60px;
}

#infuSystem-covid19-link {
    text-transform: uppercase;
    font-size: 17px;
    line-height: 16px;
    color: #ff0000;
    position: relative;
    top: 6px;
    font-weight: bold;
}

/* #endregion */




/***** FACILITY STYLES *****/
/* #region */
.facility-list table {
    border: solid 1px #CCCCCC;
    background: White;
    box-shadow: 0px 0px 30px #DDD;
}

.facility-result-info .text-data {
    line-height: 22px !important;
}

.facility-result-settings {
    line-height: 32px;
}

    .facility-result-settings .glyphicon-remove-gray {
        color: #333;
    }

.facility-wrapper.patient-modal {
    padding: 0 2em;
}

    .facility-wrapper.patient-modal label {
        font-size: 16px;
    }

.facility-wrapper h1,
.facility-wrapper h3 {
    color: #007ec6;
    font-weight: bold;
}

.facility-wrapper hr {
    border-top: #007ec6 solid 2px;
    margin-top: 0;
}
/* #endregion */


/***** TITLE ABOVE SEARCH STYLES*****/
/* #region */

.title-above-search {
    margin-bottom: 0;
    position: relative;
}

    .title-above-search .quick-add-header {
        position: absolute;
        top: 4px;
        right: 34px;
    }

        .title-above-search .quick-add-header.two-icons {
            position: static;
            margin-top: -10px;
        }

    .title-above-search .filter-header.two-icons i {
        position: static;
        font-size: 32px;
        margin-top: -4px;
    }
/* #endregion */


/***** SEARCH STYLES*****/
/* #region */
.search {
    margin: 0 !important;
    width: 100%;
}

    .search .input-group {
        padding-bottom: 0px;
    }

    .search div:not(.patient-form) .input-group-addon,
    .search div:not(.patient-form) .form-control {
        border-top: 0;
    }

.search-result-count {
    font-size: 16px;
    font-weight: 600;
    font-family: Arial;
    margin-top: 0;
}

.search-result-wrapper {
    background: white;
    box-shadow: 0px 0px 30px #DDD;
    padding: 10px;
}

    .search-result-wrapper .list-group .list-group-item {
        border: none !important;
        border-radius: 0px !important;
        border-bottom: solid 1px #CCCCCC !important;
    }

    .search-result-wrapper .list-group > div:last-of-type .list-group-item {
        border-bottom: none !important;
    }

    .search-result-wrapper > ul.pagination {
        margin-bottom: 0;
        margin-top: 0;
    }

    .search-result-wrapper .pagination {
        margin-top: 10px;
    }

.collapsing-search-results .accordion-toggle,
.collapsing-search-results .accordion-toggle:hover,
#collapsing-search .accordion-toggle {
    color: #666666;
}

    .collapsing-search-results .accordion-toggle .btn,
    #collapsing-search .accordion-toggle .btn {
        margin-top: -4px;
        margin-left: 8px;
    }

    .collapsing-search-results .accordion-toggle .btn-xs,
    #collapsing-search .accordion-toggle .btn-xs {
        margin-top: 0px;
        margin-left: 4px;
    }
/* #endregion */

/***** TOAST STYLES*****/
/* #region */
.ng-toast .alert-info,
.ng-toast .alert-success,
.ng-toast .alert-warning,
.ng-toast .alert-danger {
    background: white;
    border-radius: 0px;
}

.ng-toast .alert-info {
    border: solid 1px #007EC6;
    border-left: solid 5px #007EC6;
}

    .ng-toast .alert-info > .close {
        color: #007EC6 !important;
        opacity: 1;
    }

.ng-toast .alert-success {
    border: solid 1px #339f16;
    border-left: solid 5px #339f16;
    color: rgb(102, 102, 102) !important;
}

    .ng-toast .alert-success > .close {
        color: #339f16 !important;
        opacity: 1;
    }

.ng-toast .alert-warning {
    border: solid 1px #f3af1b;
    border-left: solid 5px #f3af1b;
}


    .ng-toast .alert-warning > .close {
        color: #f3af1b !important;
        opacity: 1;
    }

.ng-toast .alert-danger {
    border: solid 1px #c22020;
    border-left: solid 5px #c22020;
}

    .ng-toast .alert-danger > .close {
        color: #c22020 !important;
        opacity: 1;
    }

.ng-toast-normal-text {
    font-size: 15px;
    font-weight: 700;
}

.grid-wrapper .pagination {
    margin-bottom: 0;
    margin-top: 0;
}
/* #endregion */


/***** GRID STYLES*****/
/* #region */
.grid-wrapper {
    margin-top: 20px;
    overflow: hidden;
    top: 20px;
    left: 184px;
    right: 51px;
    position: absolute;
    z-index: 999;
    background-color: white;
}

    .grid-wrapper.patient-search {
        left: 15px;
        right: 16px;
        top: 0px;
        margin-top: 0px;
    }

    .grid-wrapper .pagination {
        margin-bottom: 0;
        margin-top: 0;
    }

.table-striped > tbody > tr {
    cursor: pointer;
    transition: all .3s ease;
    border-top: 1px solid #9C9B9B;
}

    .table-striped > tbody > tr:first-child {
        border-top: 0;
    }

.table-striped .table-list-label {
    display: block;
    color: #007ce6;
    font-weight: bold;
    text-transform: uppercase;
}

    .table-striped .table-list-label.no-break {
        display: inline;
    }

.table-striped .table-list-label,
.table-striped .table-list-data {
    font-size: 14px;
}

.table-striped.light > tbody > tr {
    border: 2px solid #c3d3ec !important;
}

    .table-striped.light > tbody > tr:nth-of-type(odd), .table-striped.light > tbody > tr:nth-of-type(odd) .panel-heading {
        background-color: #e1e8f5 !important;
    }

.table-striped > tbody > tr:hover,
.table-striped > tbody > tr:nth-of-type(odd):hover,
.table-striped > tbody > tr.selected,
.table-striped > tbody > tr.selected:nth-of-type(odd) {
    background-color: #C3D3EC !important;
}

.list-group > div:nth-child(odd) .list-group-item {
    background-color: #C3D3EC !important;
}

.list-group {
    margin: 0;
}

    .list-group .list-group-item {
        border-radius: 0;
        padding: 8px;
    }

.table-striped > tbody > tr:nth-of-type(odd), .table-striped > tbody > tr:nth-of-type(odd) .panel-heading {
    background-color: #C6C6C5 !important;
}

.table-striped > tbody > tr:nth-of-type(even) .panel-heading {
    background-color: #fff !important;
}

.table-striped > tbody > tr .panel-heading {
    transition: all .3s ease;
    border-top: 1px solid #9C9B9B !important;
}

.table-striped > tbody > tr:first-child .panel-heading {
    border-top: 0 !important;
}

.table-striped > tbody > tr .panel-heading:hover {
    background-color: #C3D3EC !important;
}

.table-striped.not-clickable > tbody > tr {
    cursor: auto;
}

    .table-striped.not-clickable > tbody > tr:nth-of-type(odd):hover {
        background-color: #E1E8F6 !important;
    }

@media (min-width: 1400px) {
    .table > tbody > tr > td.table-column-extra {
        position: relative;
        padding-bottom: 40px;
    }

        .table > tbody > tr > td.table-column-extra:after {
            content: "";
            width: 100%;
            height: 30px;
            background-color: rgba(0,0,0,.05);
            position: absolute;
            bottom: 0;
            left: 0;
        }

    .table-column-extra .extra {
        position: absolute;
        bottom: 5px;
        z-index: 1;
    }
}



/* #endregion */


/***** COLLAPSE STYLES*****/
/* #region */
.accordion-with-error > .panel-heading {
    background-color: #F8B133 !important;
    border-color: #eea236 !important;
}

.panel-title > .accordion-toggle,
.panel-title > .accordion-toggle:hover {
    text-decoration: none;
}

.panel-heading-warning {
    color: #FFFFFF !important;
    background-color: #F8B133 !important;
    border-color: #eea236 !important;
}

.panel-heading-light {
    color: #FFFFFF !important;
    background-color: #a8b5c5 !important;
    border-color: #a8b5c5 !important;
}


.panel-warning {
    text-align: right;
    font-size: 16px;
}

.collapse-wrapper .panel-heading {
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 2px;
    background: #f5f5f5;
    border-color: #ddd;
    color: #666;
    height: 37px;
}

    .collapse-wrapper .panel-heading a {
        color: #666;
    }
/* #endregion */

/*patient Quick Add*/
/*#region*/
/*.patientQuickAdd {
    background: white;
}*/

.quick-add-header img {
    width: 46px;
    height: 46px;
}
/*#endregion*/

/***** PATIENT CHART *****/
/* #region */
.patient-chart-wrapper > .container {
    background: #91B1DD;
    padding-top: 0;
    margin-top: 100px;
}

.patient-chart-wrapper .alert {
    margin-bottom: 5px;
}

.patient-chart-wrapper .panel-heading h4 .fa-exclamation-triangle, .patient-chart-wrapper .panel-heading h4 .fa-check {
    font-size: 28px !important;
    margin-top: -5px;
}

.patient-chart-wrapper .alert-warning {
    box-shadow: 0px 0px 0px 2px #FFCE00;
}

.patient-chart-wrapper .alert-success {
    box-shadow: 0px 0px 0px 2px #2DAB66;
}

.patient-chart-collapse .panel-body {
    padding: 0 15px 15px !important;
}


.h3-panel, .container h3, .h3-panel-centered {
    background-color: white;
    border: 2px solid rgb(0, 126, 198);
    padding: 15px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 20px;
    font-family: Arial;
}

    .h3-panel span, .container h3 span {
        text-transform: initial;
        font-size: 15px;
        font-style: italic;
    }

    .h3-panel-bold span, .container h3 span {
        text-transform: initial;
        font-size: 15px;
        font-weight: bold;
    }

    .h3-panel .fa-user-plus {
        font-size: 34px;
        color: #729bd3;
        margin-top: 2px;
        margin-right: -6px;
        transition: all .3s ease;
    }

.h3-panel-centered {
}

    .h3-panel-centered :first-child {
        width: 15px;
        white-space: nowrap;
        line-height: 20px;
    }

    .h3-panel-centered :last-child {
        width: 15px;
        white-space: nowrap;
    }

.container .panel,
.modal .panel {
    border: 0;
    border-radius: 0;
    border-color: initial;
    box-shadow: none;
}

    .container .panel + .panel {
        margin-top: 15px;
    }

    .modal .panel + .panel {
        margin-top: 10px;
    }


.container .panel-heading,
.modal .panel-heading {
    background-color: #E1E8F6;
    color: rgb(102, 102, 102);
    padding: 0;
    border-radius: 0;
    height: auto;
    font-family: Arial;
    font-weight: 800;
}

    .container .panel-heading h4 a {
        display: block;
        padding: 15px;
    }

    .modal .panel-heading h4 a {
        display: block;
        padding: 10px;
    }

        .container .panel-heading h4 a > i,
        .modal .panel-heading h4 a > i {
            margin-right: 10px;
        }

.container .panel-title {
    font-size: 16px;
    font-weight: bolder;
    text-transform: uppercase;
}

.modal .panel-title {
    font-size: 14px;
    font-weight: bolder;
    text-transform: uppercase;
}

    .modal .panel-title a,
    .modal .panel-title a:hover {
        color: rgb(102, 102, 102);
    }

.container .panel-body {
    position: relative;
    padding: 15px 30px;
    border: 2px solid rgb(0, 126, 198) !important;
}

.modal .panel-body {
    position: relative;
    padding: 0;
    border: 2px solid rgb(0, 126, 198) !important;
}

.container .accordion-list .panel-heading,
.modal .accordion-list .panel-heading {
    background-color: transparent;
}

.container .accordion-list .panel-body,
.modal .accordion-list .panel-body {
    border: 0 !important;
}

.readonly-accordion .panel-heading {
    background-color: #d6d6d6;
}

.readonly-accordion .panel-body {
    border: 1px solid #ddd !important;
}

.container .selection-panel {
    margin: 15px 0 0;
    padding-bottom: 15px;
    border: 2px solid #007ec6;
}

.selection-panel h3 {
    padding: 0;
    color: #007ec6;
    font-weight: bold;
    text-transform: capitalize;
    border: 0;
}

.selection-panel h4 {
    padding: 0;
    color: #007ec6;
    font-weight: bold;
    text-transform: capitalize;
    border: 0;
}

.selection-panel hr {
    margin-bottom: 5px;
}

.selection-panel .form-control {
    height: 30px;
}

.selection-panel label {
    display: block;
    color: #007ec6;
    font-weight: bold;
}

.selection-panel select {
    width: 100%;
}

.patient-chart-wrapper.pre-auth-wrapper .container .panel-body {
    padding: 0 !important;
    border: 0 !important;
}

.patient-chart-wrapper.pre-auth-wrapper .patient-chart-info {
    padding: 15px 30px 40px;
    border: 2px solid rgb(0, 126, 198) !important;
    border-top: none !important;
}

.patient-chart-wrapper.pre-auth-wrapper .panel-collapse .alert {
    margin-bottom: 0;
}

.patient-chart-wrapper.pre-auth-wrapper .container .patient-chart-table-header {
    background-color: #fff !important;
    color: rgb(136, 136, 136) !important;
    font-size: 14px;
}

    .patient-chart-wrapper.pre-auth-wrapper .container .patient-chart-table-header a {
        color: rgb(136, 136, 136) !important;
    }

.container .panel-body h4 {
    color: rgb(0, 126, 198);
    font-weight: bold;
    font-size: 16px;
}

.patient-chart-wrapper.pre-auth-wrapper .container .panel-body h4 {
    font-size: inherit;
}

    .patient-chart-wrapper.pre-auth-wrapper .container .panel-body h4.blue {
        color: #007ec6;
    }

.patient-chart-wrapper.pre-auth-wrapper .container .panel-body label {
    color: rgb(0, 126, 198);
}

.container .panel-body hr {
    border-top: 2px solid rgb(0, 126, 198);
}

.container .panel-body label {
    font-weight: bold;
    color: #888;
}

.container .panel-body label-blue {
    color: rgb(0, 126, 198);
    font-weight: bold;
    width: 180px !important;
}



.patient-chart-wrapper .container .panel-body label-width {
    color: #888;
    font-weight: bold;
}

.patient-info {
    border: 2px solid #CCCCCC;
    margin: 0px 10px 0 90px;
    min-height: 70px;
    padding: 5px;
}

.patient-status {
    color: #007EC6;
    font-size: 16pt;
    font-style: italic;
}

button.patient-consent-collapse-btn {
    width: 100%;
    text-align: left;
}

.patient-insurance-table {
    font-size: 14px !important;
}

.clinicalNotes-modal {
    position: relative;
    background-color: #fff !important;
    border: 8px solid rgb(0, 126, 198) !important;
    border-radius: 15px !important;
    min-height: 450px;
}

.patient-modal, .supplyorderconfirm-modal {
    position: relative;
    background-color: #fff !important;
    border: 8px solid rgb(0, 126, 198) !important;
    border-radius: 15px !important;
    min-height: 600px;
}

.ehr-patient-modal {
    position: relative;
    background-color: #fff !important;
    border: 8px solid rgb(0, 126, 198) !important;
    border-radius: 15px !important;
    max-height: 600px;
    padding: 2em;
}

.patient-modal .form-input, .patient-modal .form-control, .patient-modal .required-group, .patient-modal .btn.btn-dropdown-addon, .patient-modal .dropdown-menu.dropdown-menu-infu a {
    background-color: #fff;
}

.patient-modal .form-input-sm {
    width: 52px;
    height: 30px;
    text-align: right;
    padding: 0px 4px;
}

.modal-content.patient-modal {
    padding: 15px;
}

.modal-content.patient-modal .m-signature-pad {
    border: 0 !important;
}

.modal-content.patient-modal .m-signature-pad--body canvas {
    width: 100%;
    height: 300px;
}

.modal-content.patient-modal .alert-footer {
    border: 0;
    position: absolute;
    top: 10px;
    right: 25px;
}

.modal-content.patient-modal .alert-footer button {
    background-color: transparent !important;
    color: #555 !important;
    border: 0 !important;
}

.patient-modal label,
.filter-modal label,
.supplyorderconfirm-modal label {
    color: rgb(0, 126, 198);
    font-weight: bold;
    font-size: 15px;
}

.patient-modal-wrapper {
    max-width: 800px;
    margin: 30px auto 0;
}

.physician-modal-wrapper {
    max-width: 800px;
    margin: 30px auto 0;
}
/* #endregion */


/***** PATIENT EDIT INSURANCE MODAL *****/
/* #region */

.insurance-modal {
    margin: 40px 40px 0px 40px;
}

.insurance-toggle .col-xs-6.first {
    padding-right: 5px;
}

.insurance-toggle .col-xs-6.second {
    padding-left: 5px;
}

.insurance-toggle .btn {
    width: 100%;
    font-size: 24px !important;
    font-weight: bold;
    text-align: right;
    border-radius: 0;
    box-shadow: none;
    background-color: #007ec6;
}

.insurance-toggle .disabled-button .btn {
    background-color: #91b1dd;
}

.insurance-modal .effective-date.input-group,
.insurance-modal .effective-date.input-group .form-control,
.insurance-modal .ending-date.input-group,
.insurance-modal .ending-date.input-group .form-control {
    width: 100%;
    max-width: none;
}

.insurance-submit {
    float: right;
    margin: 1em 0;
}
/* #endregion */

/***** PATIENT EDIT DEMOGRAPHIC MODAL *****/
/* #region */

.patient-demo-wrapper.patient-modal {
    padding: 0 2em;
}

.demo-modal .dob.input-group,
.demo-modal .dob.input-group .form-control {
    width: 100%;
    max-width: none;
}

.demo-submit {
    float: right;
    margin: 1em 0;
}

/* #endregion */

/***** PATIENT NEXT STEP MODAL *****/
/* #region */

.next-step-wrapper.patient-modal {
    padding: 2em;
}

.next-step-header {
    color: #337ab7;
    padding-bottom: 10px;
    font-weight: bold;
}

    .next-step-header span {
        color: initial;
    }

.next-step-sub-head {
    font-weight: bold;
    font-style: italic;
    border-bottom: 2px solid #337ab7;
}

.next-step-links {
    margin: 2em auto;
}

    .next-step-links .btn {
        width: 100%;
        margin: 1em 0;
    }

#next-step-mobile {
    margin-top: 0;
}

/* #endregion */


/***** ADD PATIENT CONSENT PAGE *****/
/* #region */

.patient-Consent-Cursor {
    cursor: pointer;
}

.patient-consent-search {
    padding-top: 30px;
    padding-bottom: 30px;
}

.patient-consent-divider {
    height: 1px;
    background-color: lightgray;
}

.patient-consent-info {
    margin: 0px 90px 0 10px;
    min-height: 70px;
    padding: 5px;
}

.patient-consent-list {
    background: White;
}

    .patient-consent-list label {
        color: #007EC6;
        font-weight: bold;
        /*text-transform: uppercase;*/
    }

    .patient-consent-list > .row {
        border-top: solid 1px #CCCCCC;
    }

        .patient-consent-list > .row:nth-child(1) {
            border-top: none;
        }

        .patient-consent-list > .row:nth-child(odd) {
            background-color: #eef1f4;
        }

        .patient-consent-list > .row:nth-child(even) {
            background-color: #ffffff;
        }

.patient-consent-padding-left-none .container {
    padding-left: 0 !important;
}

.patient-consent-col {
    padding-right: 30px !important;
}

.patient-consent-new-wrapper {
    min-height: 200px;
    box-shadow: none;
    border: 0;
    background: #91B1DD;
    padding-top: 0;
    margin-top: 100px;
}

.clinicalNotes-wrapper {
    height: 450px;
    box-shadow: none;
    border: 0;
    background: #91B1DD;
    padding-top: 0;
    margin-top: 100px;
}

@media (max-width: 990px) {
    .patient-consent-add-wrapper, .patient-consent-new-wrapper, .clinicalNotes-wrapper {
        margin-left: 15px;
        margin-right: 15px;
        width: auto;
    }

        .patient-consent-add-wrapper.patient-modal, .patient-consent-new-wrapper.patient-modal, .clinicalNotes-wrapper.clinicalNotes-modal {
            margin-left: -15px;
            margin-right: -15px;
        }
}

.patient-consent-new-wrapper .panel label {
    color: rgb(0, 126, 198);
    font-weight: bold;
    font-size: 14px;
}

.patient-consent-add-wrapper {
    box-shadow: none;
    border: 0;
    background: #91B1DD;
    padding-top: 0;
    margin-top: 100px;
}

.patient-consent-list .row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

    .patient-consent-list .row .row {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }

.addPatientConsentDatPicker {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.patient-consent-new-radiobutton {
    padding: 8px 15px 8px 0px;
    height: 40px;
    border-radius: 0px;
}

.pumpDeliveredDate {
    max-width: 280px;
}
/* #endregion */

/***** PATIENT VIEW PAGE *****/
/* #region */
.patient-view-list .table-header {
    padding-top: 10px;
}

.patient-view-col {
    font-size: 10px;
    text-align: center;
}

    .patient-view-col:not(.with-padding) {
        padding: 0;
    }

.infinite-scroll-wrapper .patient-view-col,
.infinite-scroll-wrapper .patient-view-col label {
    font-size: 12px;
    line-height: 14px;
}

    .infinite-scroll-wrapper .patient-view-col .clickable {
        color: #007ce6;
    }

    .infinite-scroll-wrapper .patient-view-col label {
        padding-right: 5px;
    }

.scrollable {
    height: 375px;
    overflow: scroll;
}

.patient-view-col .patient-name {
    font-size: 16px;
}

.row-pv-icons .patient-view-col {
    height: 82px;
    line-height: 82px;
    border-left: 1px solid gray;
    border-bottom: 1px solid gray;
}

.patient-view-colGrid {
    height: 82px;
    line-height: 82px;
    border-left: 1px solid gray;
    border-bottom: 1px solid gray;
}

.patient-view-treatment-colGrid {
    height: 82px;
    border-left: 1px solid gray;
    border-bottom: 1px solid gray;
    font-weight: 600;
    padding-top: 4px;
}


.row-pv-icons .patient-view-col.no-line-height {
    line-height: normal;
}

.row-pv-icons .patient-view-col-with-bottom {
    height: 82px;
    line-height: 82px;
    border-left: 1px solid gray;
    border-bottom: 1px solid gray;
}

    .row-pv-icons .patient-view-col-with-bottom.no-line-height {
        line-height: normal;
    }

.row-pv-icons span:not(.text-data) {
    position: relative;
    top: 8px;
    font-size: 32px !important;
}

.row-pv-icons .missing-text {
    position: relative;
    top: 8px;
    font-size: 12px !important;
}

.patient-view-col .text-data {
    font-size: 12px;
    text-transform: uppercase;
}

.patient-view-col-with-bottom .text-data {
    font-size: 12px;
    text-transform: uppercase;
}

.patient-view-col .glyphicon-arrow-up,
.patient-view-col .glyphicon-arrow-down {
    font-size: 16px;
}

.patient-view-radial {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}

    .patient-view-radial input[type="radio"] + label span {
        background-color: #91b1dd;
        border-color: #91b1dd;
    }

patient-view-radial input[type="radio"]:checked + label span {
    background-color: #e1e8f5;
    border-color: #91b1dd;
}

.patient-dc-status {
    line-height: 12px !important;
    display: block;
}

@media (min-width: 800px) {
    .patient-view-list.row {
        margin: 0;
    }

    .infinite-scroll-wrapper .patient-view-col label {
        color: inherit;
    }
}

@media (max-width: 799px) {
    .patient-view-list .row-sort {
        margin-right: 0;
        margin-left: 0;
    }

    .patient-view-list count p {
        margin-top: 0;
    }

    .patient-view-list .table-header.right {
        padding-bottom: 14px;
    }

    .patient-view-list .table-header .patient-view-col {
        font-size: 10px;
    }

    .patient-view-list tr,
    .patient-view-list .table-striped > tbody > tr:nth-of-type(odd),
    .patient-view-list .table-striped > tbody > tr:nth-of-type(odd) .panel-heading,
    .patient-view-list .table-striped > tbody > tr:hover,
    .patient-view-list .table-striped > tbody > tr:nth-of-type(odd):hover {
        background-color: #e1e8f5 !important;
    }

    .patient-view-list .row-chart {
        margin: 0;
    }

    .patient-view-list .row-pv-icons {
        margin-bottom: 15px;
        background-color: white;
        border-width: 0;
        border-style: solid;
        border-color: gray;
    }

        .patient-view-list .row-pv-icons.left {
            margin-left: 0;
            border-bottom-width: 1px;
            border-top-width: 1px;
        }

        .patient-view-list .row-pv-icons.right {
            margin-right: 0;
            border-bottom-width: 1px;
            border-right-width: 1px;
            border-top-width: 1px;
        }

    .patient-view-list .row-submit {
        margin-right: 0;
        margin-left: 0;
    }
}

.patient-view-procedure-note {
    padding-right: 20px;
    font-weight: bold;
}

.PatientViewHeaderWideMode-NpwtWide {
    width: 61%;
}

.PatientViewHeaderWideMode-NpwtNarrow {
    width: 25%;
}

.PatientViewHeaderWideMode-Left40 {
    left: 40px;
}

.PatientViewHeaderWideMode-LeftNeg12 {
    left: -12px;
}

.PatientViewWideMode-RetailNpwtNorrow {
    width: 8%;
}

.PatientViewWideMode-RetailNpwtWide {
    width: 66%;
}

.PatientViewWideMode-GroupPosition {
    width: 30%;
    padding-left: 0px;
    padding-right: 0px;
    left: 63px;
}

.PatientViewWideMode-Width120 {
    width: 120%;
}

.PatientViewWideMode-Height0 {
    height: 0px;
}

.PatientViewWideMode-NoBorder {
    border-style: none !important;
}

.PatientViewDeviceMode-StatusWidth {
    width: 25%;
}

.PatientViewDeviceMode-GroupWidth {
    width: 72.9%;
}

.PatientViewDeviceMode-Width33 {
    width: 33%;
}

.PatientViewHeaderDeviceMode-TreatmentCell {
    width: 33%;
    left: 7px;
}

.PatientViewHeaderDeviceMode-InfoCell {
    width: 33%;
    left: 13px;
}

.PatientViewHeaderDeviceMode-PumpCell {
    width: 33%;
    left: 12px;
}

.PatientViewDeviceMode-PumpCell {
    width: 34%;
    border-right: 1px solid gray;
}

.PatientViewHeaderDeviceMode-StatusCell {
    width: 25%;
    left: 7px;
}

.PatientViewHeaderDeviceMode-GroupWidth {
    width: 75%;
}

.PatientViewHeaderDeviceMode-Width {
    width: 33%;
}

/* #endregion */
/***** PATIENT ADD DUPLICATE *****/
.patient-duplicates h4,
.patient-duplicates h2 {
    font-weight: bold;
    font-style: italic;
}

.patient-duplicates h2 {
    text-transform: uppercase;
}

/* #endregion */


/***** PATIENT PRE-AUTHORIZATION PAGE *****/
/* #region */
.patient-auth-list .table > tbody > tr > td {
    vertical-align: middle;
}

.patient-auth-list .glyphicon {
    font-size: 35px;
}

.patient-chart-wrapper.pre-auth-wrapper .container .accordion-in-accordion .panel-body {
    padding: 15px !important;
    border: 2px solid rgb(0, 126, 198) !important;
}

    .patient-chart-wrapper.pre-auth-wrapper .container .accordion-in-accordion .panel-body label {
        color: #888;
    }

.patient-auth-form .template-text {
    margin-left: -8px;
}

.patient-auth-form .error-container {
    background-color: #e1e8f5;
    border: 2px solid #c3d3ec;
    padding: .45em;
}

.btn.delete-img {
    border: none;
}

@media (min-width:800px) {
    .patient-auth-list table > tbody > tr > td {
        line-height: 35px !important;
    }
}


/* #endregion */

/***** TREATMENT DATE VIEW *****/
/* #region */
@media (max-width:800px) {
    .treatment-icons-device-mode {
        padding-top: 36px !important;
    }
}
/* #endregion */

/***** USER SECURITY ADMIN *****/
/* #region */

.row-selections:nth-child(odd) {
    background-color: #c6c6c5;
}

hr {
    border-top: 2px solid #007ec6;
}

.user-facility-search {
    border-top: 2px solid #007ec6;
}

.add-facility-input {
    position: relative;
}

.btn.no-bg.btn-input-plus {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 24px;
}

/* #endregion */

/***** CSR *****/
/* #region */

@media (max-width: 1000px) {
    .csr-table-head td {
        font-size: 11px;
    }
}

.addPatient {
    top: 10px;
    position: relative;
}

/* #endregion */

/***** CSR *****/
/* #region */

.test-wrapper {
    background-color: #91B1DD;
}

    .test-wrapper .h1-blue {
        color: #007ec6;
        font-weight: bold;
        font-size: 24px;
    }

.blue-panel {
    background-color: #c3d3ec;
    border: 0;
}

/* #endregion */


/*callouts*/ /* #region */
.bs-callout {
    padding: 10px 20px 20px 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

    .bs-callout h4 {
        margin-top: 0;
        margin-bottom: 5px;
    }

    .bs-callout p:last-child {
        margin-bottom: 0;
    }

    .bs-callout code {
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
    }

    .bs-callout + .bs-callout {
        margin-top: -5px;
    }

.bs-callout-default {
    border-left-color: #777;
}

    .bs-callout-default h4 {
        color: #777;
    }

.bs-callout-primary {
    border-left-color: #007EC6;
}

.bs-callout-success {
    border-left-color: #5cb85c;
}

.bs-callout-danger {
    border-left-color: #d9534f;
}

    .bs-callout-danger h3 {
        color: #d9534f;
    }

.bs-callout-warning {
    border-left-color: #F8B133;
}

.bs-callout-info {
    border-left-color: #5bc0de;
}
/* #endregion*/

/*form validation*/ /* #region */

input.ng-invalid,
select.ng-invalid,
.search .facility-search.ng-invalid {
    /* doesn't match new ui - border: solid 2px #d9534f;*/
    border-left: solid 4px #d9534f !important;
}

input.ng-billing,
input.ng-valid.green-accent,
select.ng-billing {
    border-left: solid 4px #528033 !important;
}


.billing-error-summary > .error {
    color: #528033;
}

input.ng-valid-required,
select.ng-valid-required {
    border-left: 2px solid #9C9B9B !important;
}

    input.ng-valid-required.not-required {
        border-left: 2px solid #9C9B9B !important;
    }

span.required-group {
    border: solid 2px #9C9B9B;
    background: #fff;
    margin-left: 0px;
    padding: 6px 20px 8px 0;
    width: auto;
    display: block;
}

span.required-group-small {
    border: solid 2px #9C9B9B;
    background: #fff;
    margin-left: 0px;
    padding: 6px 10px 8px 0;
    width: auto;
    display: block;
}

span.required-group > div {
    display: inline;
}

.required-group-block {
    border: solid 2px #9C9B9B;
    margin-left: 0px;
    border-left: solid 4px #d9534f !important;
    padding: 6px 0 0;
}

.required-group-inline {
    border: solid 2px #9C9B9B;
    margin-left: 0px;
    border-left: solid 4px #d9534f !important;
    padding: 6px 0;
}

.error-container {
}

.error {
    color: #d9534f;
}

.errorMessageColor {
    color: #d9534f;
}

.alertBorder {
    border-top-color: #d9534f;
}

.required-billing {
    border-left: 4px solid #F8B133 !important;
}

.billing {
    color: #F8B133;
}


/* #endregion*/

/***** PAGINATION STYLES *****/
/* #region */
.pagination {
    margin-top: 5px;
}

    .pagination > li > a,
    .pagination > li > span {
        padding: 15px 21px 15px 21px;
    }


/* #endregion*/



/***** PATIENT SIGNATURE PAGE *****/
/* #region */

.patient-signature-wrapper {
    min-height: 400px;
    background: white;
    box-shadow: 0px 0px 30px #DDD;
    border: solid 1px #CCCCCC;
    border-top: none;
}

    .patient-signature-wrapper a {
        text-decoration: underline;
    }

.signature-email-textarea {
    padding-left: 64px;
}

.signaturePageTitle {
    text-align: center;
}

#signature-pad.modal-dialog {
    width: 700px;
}

.signHere {
    margin-top: 100px;
}

.signaturePageTitle {
    text-align: center;
}

#signature-pad.modal-dialog {
    width: 700px;
    /*width: 95%;
margin-top: 50px;*/
}

.signHere {
    margin-top: 100px;
}
/* #endregion*/

/***** App bar directive *******/
.app-bar .title {
    float: left;
    line-height: 48px;
    font-size: 20px;
    margin-left: 20px;
}

.input-group-eom {
    position: relative;
    display: table;
    border-collapse: separate;
}

    .input-group-eom .dropdown-menu {
        left: -90px !important;
    }

.eom-red {
    color: #c22020 !important;
}

.status-red {
    color: #c22020 !important;
}
/***** End App bar directive*/

/******* PWO *********/
/*.pwo-note p {
    font-family: 'Roboto';
    font-weight: 300;
    padding: 15px;
    margin: 20px 0;
    background-color: #007dc3;
    color: #ddd;
}

.pwo-note strong {
    color: #fff;
}

.pwo-content .form-group label {
    font-size: 12px;
    font-weight: 500;
}

.pwo-content .form-control {
    padding: 6px 12px;
    height: 34px;
}

.pwo-content select.form-control {
    font-family: "Roboto-Regular";
    max-width: initial;
}

.pwo-content input {
    font-size: 16px;
}

.pwo-content .checkbox-inline input[type="checkbox"],
.pwo-content .radio-inline input[type="radio"] {
    opacity: 0;
}

.pwo-content .checkbox-inline, .pwo-content .radio-inline {
    position: relative;
}

    .pwo-content .checkbox-inline label,
    .pwo-content .radio-inline label {
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
    }

        .pwo-content .checkbox-inline label:before {
            font-family: "Glyphicons Halflings";
            content: "\e157";
            position: absolute;
            top: 0;
            left: 0;
        }

    .pwo-content .checkbox-inline input[type="checkbox"]:checked + label:before {
        content: "\e067";
    }

    .pwo-content .radio-inline label:before,
    .pwo-content .radio-inline label:after {
        content: '';
        position: absolute;
        left: -3px;
        top: -1px;
        margin: 4px;
        width: 16px;
        height: 16px;
        z-index: 0;
        -webkit-transition: 0.28s ease;
        -moz-transition: 0.28s ease;
        -o-transition: 0.28s ease;
        -ms-transition: 0.28s ease;
        transition: 0.28s ease;
        border-radius: 50%;
        border: 2px solid #5a5a5a;
    }

    .pwo-content .radio-inline label:after {
        border-radius: 50%;
        border: 2px solid #5a5a5a;
        z-index: -1;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }

    .pwo-content .radio-inline input[type="radio"]:checked + label:before {
        border-radius: 50%;
        border: 2px solid transparent;
    }

    .pwo-content .radio-inline input[type="radio"]:checked + label:after {
        border-radius: 50%;
        border: 2px solid #0f9d58;
        background-color: #0f9d58;
        z-index: 0;
        -webkit-transform: scale(1.02);
        -moz-transform: scale(1.02);
        -ms-transform: scale(1.02);
        -o-transform: scale(1.02);
        transform: scale(1.02);
    }

.pwo-content .form-group label.radio-inline {
    padding-top: 0;
}

.pwo-content .form-input {
    max-width: initial;
}


.pwo-content .input-group-btn button {
    color: #333 !important;
}

.pwo-content .alert-danger {
    border-radius: 0;
    background-color: #a94442;
}

.pwo-content .ng-active div {
    font-size: 12px;
    padding: 4px 0;
    color: #a94442;
}

.pwo-content .alert-danger.ng-inactive {
    display: none;
}

.pwo-content .alert-danger.ng-active div {
    font-size: 12px;
    color: #fff;
}

.pwo-content input.ng-touched.ng-invalid, .pwo-content input.ng-dirty.ng-invalid {
    border-color: #ccc;
    border-bottom: 2px solid #a94442;
}

    .pwo-content .ng-touched.ng-invalid ~ .input-group-btn button {
        border-bottom: 2px solid #a94442;
        padding-bottom: 5px;
    }

.pwo-content h1 small {
    font-size: 16px;
    font-family: "Roboto-Regular";
    font-weight: 500;
    line-height: 22px;
    border-bottom: 1px dotted #3F51B5;
}*/
/******* End PWO*/
/******* localized dashbaord in 'localeTest' folder -- old dashboard localized example *********/
#localizedDashboard .patientChart {
    background-image: url("/Images/IT21/PatientChart.png");
    height: 60px;
    width: 54px;
    float: left;
    margin: 20px;
}

#localizedDashboard .search {
    margin: 20px;
}

#localizedDashboard .border {
    border: 2px solid black;
}

#localizedDashboard .search input {
    width: 80%;
    max-width: none;
}

#localizedDashboard .search button {
    width: 5%;
    background-image: url("/Images/btn_search25x25.png");
    width: 14px;
    height: 27px;
    border: 2px solid black;
    margin-left: 10px;
}

#localizedDashboard .dashboardBlock .col-md-3 {
    margin-top: 20px;
    margin-right: 15px;
    padding: 0px;
}

#localizedDashboard .divider {
    width: 100%;
    height: 2px;
    background-color: black;
}

#localizedDashboard .fullWidth {
    width: 100%;
}

#localizedDashboard .blueBG {
    background-color: lightblue;
}

#localizedDashboard .dashboardDiv {
    min-height: 60px;
    line-height: 60px;
    text-align: center;
    margin: 5px;
}

    #localizedDashboard .dashboardDiv span {
        display: inline-block;
        vertical-align: middle;
        line-height: normal;
    }

#localizedDashboard .newPatient {
    background-image: url("/Images/IT21/newpatient.png");
    width: 40px;
    height: 40px;
    margin: 10px;
}

#localizedDashboard .addPatient {
    background-image: url("/Images/IT21/addconsent.png");
    width: 40px;
    height: 37px;
    margin: 10px;
}

#localizedDashboard .addTreatments {
    background-image: url("/Images/IT21/addtreatments.png");
    width: 40px;
    height: 40px;
    margin: 10px;
}

#localizedDashboard .bulk {
    background-image: url("/Images/IT21/addbulk.png");
    width: 40px;
    height: 40px;
    margin: 10px;
}

#localizedDashboard .addOrder {
    background-image: url("/Images/IT21/addorder.png");
    width: 37px;
    height: 37px;
    margin: 10px;
}

#localizedDashboard .regimens {
    background-image: url("/Images/IT21/regiments.png");
    width: 37px;
    height: 37px;
    margin: 10px;
}

#localizedDashboard .padding10 {
    padding: 10px;
}

#localizedDashboard .patients {
    text-align: center;
    padding: 10px;
    font-size: 15pt;
}

#localizedDashboard .minHeights150 {
    min-height: 150px;
}

#localizedDashboard .dashNumber {
    width: 15%;
    font-size: 30pt;
}

#localizedDashboard .width80 {
    width: 80%;
}

#localizedDashboard .width39 {
    width: 39%;
}

#localizedDashboard .width35 {
    width: 35%;
}
/******* End localized dashbaord in 'localeTest' folder*/
.modal-content {
    border-radius: 20px;
}

#pwoTemplateParent .collapsing-search-results > div:last-child .panel-group {
    margin-bottom: 0;
}

.pwoTemplateDetail .modal-dialog {
    width: 100%;
}

.pwoTemplateDetail .dl-horizontal dt {
    width: 350px;
}

.pwoTemplateDetail .dl-horizontal dd {
    margin-left: 370px;
}

.pwoTemplateHelp .modal-dialog {
    width: 100%;
}

/* Unauthorized Page*/
.displayBlock {
    display: block;
}

#userAdmin {
    border: none;
    position: absolute;
    top: 128px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding-top: 0px;
}

    #userAdmin iframe > .container {
        padding-top: 10px;
    }




.physician-list-wrapper {
    border: solid 1px #CCCCCC;
    background: white;
    margin-top: -16px;
    z-index: 0;
    box-shadow: 0px 10px 15px #DDD;
}


/*infinite scroll spinner and header move*/
.infinite-scroll-wrapper {
    /*height: 400px;*/
    overflow: scroll;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: #fff;
    /*min-height:300px;*/
    /*max-height:300px;*/
}

    .infinite-scroll-wrapper .fixed-table-header {
        color: red;
        position: relative;
        top: 0;
        width: 100%;
    }

    .infinite-scroll-wrapper label,
    .panel-body .infinite-scroll-wrapper label {
        color: #007EC6;
        font-weight: bold;
    }

.infinite-scroll-static-header,
.table-header {
    padding-right: 23px;
    background-color: #007EC6;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    color: #C6C6C5 !important;
}

    .infinite-scroll-static-header div,
    .table-header div,
    .infinite-scroll-static-header a,
    .table-header a {
        color: #C6C6C5 !important;
        font-weight: 800;
        font-family: Arial, sans-serif;
    }

    .infinite-scroll-static-header.patient-view-scroll-header div,
    .infinite-scroll-static-header.patient-view-scroll-header a {
        font-weight: 700;
        font-size: 12px;
    }

    .infinite-scroll-static-header.patient-view-scroll-header .tooltip .tooltip-inner {
        font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
        font-size: 12px;
        font-weight: 400;
        text-transform: none;
    }

    .infinite-scroll-static-header.patient-view-scroll-header .fa.fa-long-arrow-up,
    .infinite-scroll-static-header.patient-view-scroll-header .fa.fa-long-arrow-down {
        font-size: 12px;
    }

.table-head-vert-center {
    line-height: 36px;
}

.infinite-scroll-wrapper > table {
    border-right: solid 1px #9C9B9B;
    margin-bottom: 0px;
}


.infinite-scroll-wrapper .spinner {
    margin-top: 10px;
    position: relative;
    width: 8%;
    height: 8%;
}

.infinite-scroll-wrapper-control-template {
    height: 400px;
}

.facility-list-wrapper .spinner {
    margin-top: 10px;
    position: relative;
    width: 90px;
    height: 8%;
}

.infinite-scroll-spinner {
    background: #EEE;
}

    .infinite-scroll-spinner div.spinner {
        position: relative;
        width: 90px;
        height: 25px;
        background: none;
        border: none;
        top: -15px;
    }

.inline-spinner {
    position: relative;
    width: 100%;
    height: 30px;
    background: none;
    border: none;
    top: 0px;
    text-align: center;
}

.list-spinner {
    position: relative;
    width: 100%;
    height: 50px;
    background-color: #fff;
    border: none;
    top: 0px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-right: solid 1px #CCC;
    border-top: solid 1px #CCC;
}

.blocking-spinner {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.5);
    border: none;
    z-index: 4000;
    text-align: center;
}

.blocking-spinner-1000z {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.5);
    border: none;
    z-index: 1000;
    text-align: center;
}

.blocking-spinner img {
    position: relative;
    top: 40%;
    background: #eee;
    padding: 20px;
    border-radius: 10px;
    border: solid 1px #666;
}

#saveModal .modal-dialog.modal-lg {
    width: 1024px;
}

#saveModal .modal-dialog.modal-sm {
    width: 340px;
}

    #saveModal .modal-dialog.modal-sm .modal-body {
        padding-top: 15px;
        padding-bottom: 15px;
    }

        #saveModal .modal-dialog.modal-sm .modal-body .save-message {
            margin-top: 10px;
            color: #007EC6;
        }

        #saveModal .modal-dialog.modal-sm .modal-body .btn {
            background-color: transparent;
        }

        #saveModal .modal-dialog.modal-sm .modal-body .fa {
            color: #CCCCCC;
        }

.pdf-blocking-spinner img {
    position: absolute;
    top: 20%;
    left: 50%;
    background: #eee;
    padding: 20px;
    border-radius: 10px;
    border: solid 1px #666;
}

.facilitiesHeader {
    transition: top 0.2s ease-in-out;
}

.nav-up {
    top: -172px; /*-138px*/
    position: absolute;
}

.nav-down {
    top: 0;
    z-index: 10001;
    position: fixed;
    width: 100%;
}

/*.facility-list-wrapper > .container {
    padding-top: 153px;
}*/

.header-default-wrapper-none {
    visibility: hidden;
}

.facilitiesHeader .header-default-wrapper {
    position: fixed;
    width: 100%;
}

.infiniteSquare {
    height: 50px;
    margin-bottom: 10px;
}
/*end of infinite scroll spinner*/

/*infinite scroll grip wrapper*/

.infinite-scroll-wrapper-patient-consent {
    overflow: scroll;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 600px;
}


.infinite-scroll-wrapper-facilities {
    overflow: scroll;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 750px;
}

.infinite-scroll-wrapper-quick-add {
    overflow: scroll;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 200px;
}

/*end of infinite scroll grip wrapper*/

/* #region horizontal scrolling updates*/
.scrolling-notification {
    position: fixed;
    bottom: 0;
    padding: 5px;
    width: 100%;
    background-color: #b568ce;
    color: #FFF;
}

/* #endregion*/

/*  #region test harness*/
#pills a.active {
    color: #fff;
    background-color: #428bca;
}
/* #endregion*/



/*  #region carousels*/
.carousel {
    background: #fff;
}

.carousel-control .carousel-prev {
    bottom: 10px;
}

.carousel .content-left {
    padding: 10px;
    padding-left: 20px;
    height: 341px;
}

.carousel-indicators {
    bottom: 0px;
    margin-bottom: 5px;
}

    .carousel-indicators li {
        border: solid 1px #428bca !important;
    }

        .carousel-indicators li.active {
            background: #428bca !important;
        }

.carousel-control {
    background: transparent !important;
    width: 30px;
    display: none;
}

.carousel-inner img {
    width: 100%;
}

/* #endregion*/

#dashboard-carousel .carousel-indicators {
    /*display: none;*/
}

.column-left-labels label {
    width: 120px !important;
}

@media (max-width: 800px) {
    .column-left-labels label {
        width: 180px !important;
    }
}

#patientsViewParent .icon-button-wrapper {
    width: 14.2%;
    margin-right: 0px;
    float: left;
    text-align: center;
}

#patientsViewParent hr {
    margin-top: 10px;
    margin-bottom: 10px;
    border-top-color: #ddd;
}

#patientsViewParent .icon-button-wrapper span {
    padding-right: 4px;
}

#patientsViewParent img.clickable {
    height: 25px;
    width: 25px;
}

#patientsViewParent .icon-label {
    font-size: 11px;
    font-weight: bold;
}

#patientViewListItem .panel-heading {
    padding-left: 10px;
    padding-right: 10px;
}

#patientViewListItem .panel-group {
    margin-bottom: 0px;
}

.patient-status-green {
    color: #2DAB66;
    font-size: 20px !important;
}

.patient-intake-status .patient-status-green {
    color: #2DAB66;
    font-size: 32px !important;
    margin-top: -10px;
}

.patient-status-green-text {
    color: #2DAB66;
    font-size: 11px !important;
    padding-top: 10px;
    line-height: 12px !important;
}

.patient-status-yellow {
    color: #F8B133;
    font-size: 20px !important;
}

.patient-status-yellow-small {
    color: #F8B133;
    font-size: 20px !important;
}

.patient-status-yellow-text {
    color: #F8B133;
    font-size: 12px !important;
    padding-top: -10px;
}

.patient-intake-status .patient-status-yellow {
    color: #F8B133;
    font-size: 32px !important;
    margin-top: -10px;
}

.patient-status-red {
    color: #c22020;
    font-size: 20px !important;
}

.patient-status-black {
    font-size: 20px !important;
}

.callschedule-legend i {
    padding-top: 8px;
}

.callschedule-legend .callschedule-legend-text {
    font-size: 12px;
}

/*.callschedule-legend {
}
i.callschedule-legend {
    padding-top: 8px;
}
span.callschedule-legend {
    font-size: 12px;
}*/


.patient-status-emr {
    background: url('/Images/EMR-small.png') no-repeat;
    height: 21px;
    width: 56px;
}


.chart-label-blue {
    color: rgb(0, 126, 198);
    font-weight: bold;
    width: 180px !important;
}


/*  #region template*/

.template-panel {
    background-color: #c3d3ec;
}

.color-panel {
    text-align: center;
    color: #fff;
    padding: 20px;
    margin-top: 25px;
}

.blackText {
    color: #333 !important;
}

.blueText {
    color: #007ec6 !important;
}

.greenText {
    color: #2DAB66 !important;
}

.redText {
    color: #d9534f !important;
}

.blue {
    background-color: #007ec6;
}

.icon-blue-old {
    background-color: #91b1dd;
}

.icon-blue {
    background-color: #729bd3;
}

.mid-blue {
    background-color: #c3d3ec;
    border: 1px solid #91b1dd;
}

.lt-blue {
    background-color: #e1e8f5;
}

.dk-gray {
    background-color: #3c3c3b;
}

.mid-gray {
    background-color: #9c9b9b;
}

.lt-gray {
    background-color: #c6c6c5;
}

.lter-gray {
    background-color: #e1e1de;
}

.white-background {
    background-color: #ffffff;
}

.green {
    background-color: #2dab66;
}

.yellow {
    background-color: #f8b133;
}

.yellow-text {
    background-color: #f29100;
}

.color-panel + span {
    font-weight: bold;
    font-size: 12px;
    display: block;
    line-height: normal;
    font-style: italic;
    padding: 5px 0;
}

.modal-input {
    background-color: #e1e8f5;
}

/*.modal {
    -webkit-transform: translateZ(0px);
    -webkit-transform: translate3d(0,0,0);
    -webkit-perspective: none;
  }
.modal:before {
content:'';
width: 1px;
float: left;
height: calc(100% + 1px);
margin-left: -1px;
display: block;

}
modal:after{
content:'';
width: 100%;
clear: both;
display: block;
}*/
/* #endregion*/


/*  #region inactive pumps */

@media (min-width:1400px) {
    .infinite-scroll-static-header span {
        font-size: 12px;
    }

    .btn.no-bg.btn-retrieve {
        position: static;
    }

        .btn.no-bg.btn-retrieve i {
            font-size: 20px;
        }

    .btn-retrieve span {
        font-size: 12px;
    }

    .text-data {
        margin: 0;
    }
}

/* #endregion */

/*  # new spinner */

.loading-bg {
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2000;
}

.loading-cont {
    width: 400px;
    height: auto;
    margin: 300px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
}

.loading {
    float: left;
    width: 40px;
    height: 40px;
    position: relative;
    margin: 5px 30px;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #91b0dc;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0);
    }

    50% {
        -webkit-transform: scale(1.0);
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.loading-title {
    color: #007fc6;
    font-size: 48px;
    float: left;
    margin: 0;
}

.loading-text {
    clear: both;
    display: block;
    font-size: 12px;
    text-align: center;
}
/* #endregion */

.marginLeft5 {
    margin-left: 5px;
}

.pad10 {
    padding: 10px;
}

.padTop10 {
    padding-top: 10px;
}

.padRight10 {
    padding-right: 10px;
}

.padBottom10 {
    padding-bottom: 10px;
}

.padLeft10 {
    padding-left: 10px;
}


.padLeft5 {
    padding-left: 5px;
}

.padRight5 {
    padding-right: 5px;
}


.pad20 {
    padding: 20px;
}

.padTop20 {
    padding-top: 20px;
}

.padRight20 {
    padding-right: 20px;
}

.padBottom20 {
    padding-bottom: 20px;
}

.padLeft20 {
    padding-left: 20px;
}

.inline-count .search-result-count {
    display: inline;
    margin-right: -4px;
}

.modalInputField {
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    width: 80%;
}

.pointer {
    cursor: pointer;
}


.closeModalX {
    padding: 10px 20px 0px 0px;
    cursor: pointer;
}

.treatment-text {
    font-size: 12px !important;
    font-weight: bold !important;
}

.treatment-min-date-width {
    min-width: 75px;
}

#treatmentNote textarea {
    height: 150px;
    font-size: 18px;
}

#caseManagementNote textarea {
    height: 150px;
    font-size: 18px;
}

#caseManagementNote .casemgmt-body {
    font-weight: bold;
    font-style: italic;
    text-align: center;
}

.csrmarquee {
    margin-top: -25px;
}



/*.marquee {
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    animation: marquee 50s linear infinite;
}

@keyframes marquee {
    0%   { text-indent: 0em }
    100% { text-indent: -105em }
} */

/*.ticker{
    -webkit-animation-name: ticker;
    -webkit-animation-timing-function: linear;
    -webkit-animation-duration:10s;
    -webkit-animation-iteration-count: infinite;
    padding: 0;
    display: inline-block;
    white-space: nowrap;
    font-size: 12px;
    margin-top: -25px;
    margin-right: 20px;
    margin-left: 20px;
}


@-webkit-keyframes ticker{
    0%{
        text-indent: 60%;
}
    100%{
        text-indent: -60%;  
    }
}*/

.ticker-wrap {
    /*position: fixed;*/
    bottom: 0;
    width: 80%;
    overflow: hidden;
    height: 4rem;
    padding-left: 100%;
}

.ticker {
    display: inline-block;
    height: 4rem;
    white-space: nowrap;
    padding-right: 100%;
    animation-iteration-count: 1;
    /*animation-timing-function: linear;
    animation-name: ticker;
    animation-duration: 15s; 
    animation-fill-mode: forwards; */
    animation: tickerSecond 6s linear 2s forwards;
}

.ticker-small {
    display: inline-block;
    height: 4rem;
    white-space: nowrap;
    padding-right: 100%;
    animation-iteration-count: 1;
    animation: tickerFourth 6s linear 2s forwards;
}

.ticker__item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 16px;
    margin-top: -25px !important;
}

@keyframes tickerFirst {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-330%, 0, 0);
    }
}

@keyframes tickerSecond {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-125%, 0, 0);
    }
}

@keyframes tickerThird {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-330%, 0, 0);
    }
}

@keyframes tickerFourth {
    0% {
        transform: translate3d(-10%, 0, 0);
    }

    100% {
        transform: translate3d(-105%, 0, 0);
    }
}

/* Facility Dashboard Ticker */
.ticker-wrap-dashboard-message {
    bottom: 0;
    overflow-x: hidden;
    margin-bottom: 25px;
    text-align: center;
}

    .ticker-wrap-dashboard-message div {
        display: inline-block;
    }

.ticker-animation-dashboard-message {
    animation-iteration-count: 1;
    animation: animation-dashboard-message 6s linear 0s forwards;
}

.ticker-animation-small-dashboard-message {
    animation-iteration-count: 1;
    animation: animation-small-dashboard-message 5s linear 0s forwards;
}

.ticker-item-dashboard-message {
    display: inline-block;
    padding: 0rem 2rem;
    font-size: 16px;
}

@keyframes animation-dashboard-message {
    0% {
        transform: translate3d(150%, 0, 0);
    }

    100% {
        transform: translate3d(0%, 0, 0);
    }
}

@keyframes animation-small-dashboard-message {
    0% {
        transform: translate3d(100%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}
/* Facility Dashboard Message ticker end */

#toTop {
    text-decoration: none;
    border: none;
    overflow: hidden;
    font-size: 22px;
    text-align: center;
    position: fixed;
    z-index: 999;
    bottom: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    line-height: 38px;
    color: #fff;
    background: rgba(0,0,0,.3);
}

    #toTop:hover {
        background: rgba(0, 126, 198,0.3);
    }

.disclaimer {
    color: #000000 !important;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif !important;
    font-size: 14px !important;
    font-weight: normal !important;
    margin-bottom: 3px !important;
    padding-right: 15px;
    text-align: justify;
    vertical-align: middle !important;
}

.pwoToolLabel {
    color: #007EC6;
    font-weight: bold;
    font-size: 16px;
}

/* Mobile Edit Form */
.mobile-form-btn span {
    font-size: 13px !important;
    margin-top: 5px;
}

.mobile-form-btn i {
    font-size: 26px !important;
}

#mobile-form label {
    color: rgb(0, 126, 198);
    font-size: 16px;
    font-weight: bold;
}

#mobile-treatment-info label {
    font-size: 14px;
}

/* Recert Sheet Styles - Located on Facility Equipment View*/
.recertText {
    top: -10px;
    right: 50px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    position: relative;
}

.recertPdf {
    position: absolute;
    height: 35px;
    width: 35px;
    right: 10px;
    top: 10px;
}

.clinicalNotes-label {
    font-weight: bold;
    font-size: 14px;
}

.clinicalNotes-data {
    color: rgb(0, 126, 198);
    font-weight: bold;
    font-size: 14px;
}

.clinicalNotes-data-email {
    font-weight: bold;
    font-size: 14px;
    font-style: italic;
}

.clinicalNotes-title {
    text-transform: initial;
    background-color: white;
    font-weight: 800;
    font-size: 20px;
    font-family: Arial;
}

.big-checkbox-right {
    padding: 3px;
    border: 2px solid #9c9c9b;
    border-radius: 4px;
}

    .big-checkbox-right input[type=checkbox] {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2000;
        height: 26px;
        width: 26px;
        margin: 0;
        opacity: 0;
    }

    .big-checkbox-right label {
        cursor: pointer;
        display: block;
        width: 20px;
        height: 20px;
        background-color: #e1e8f5;
    }

        .big-checkbox-right label:after {
            position: absolute;
            content: '';
            opacity: 0;
            width: 14px;
            height: 8px;
            background: transparent;
            top: 7px;
            left: 6px;
            border: 4px solid #007ec6;
            border-top: none;
            border-right: none;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

    .big-checkbox-right input[type=checkbox]:checked + label:after {
        opacity: 1;
    }

/* Insurance Verification Center */
#insuranceVerificationContainer {
    background: #ffffff;
    width: 98%;
    margin: 0 auto;
    padding: 15px;
    margin-top: 100px;
    border: 1px solid black;
}

.insuranceDisabled {
    opacity: 0.5;
}

.divideColumn {
    border-right: 2px solid #007ec6;
}

.infuForm label {
    color: rgb(0, 126, 198);
    font-weight: bold;
    font-size: 15px;
}

.infuForm .disabled-button {
    cursor: not-allowed;
}

fieldset:disabled .required-group {
    background-color: #eee;
}

.disableNumberSpinner::-webkit-outer-spin-button, .disableNumberSpinner::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.disableNumberSpinner input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

.insuranceVerification .input-group-addon {
    background-color: #007ec6;
    color: #fff;
    font-weight: bold;
}

.debugContainerSize {
    border: 1px solid red !important;
}

.h4-head-wayStar {
    color: rgb(199, 70, 13);
    font-weight: bold;
    border-bottom: 2px solid rgb(199, 70, 13);
    padding-bottom: 4px;
}

.patient-search.input-group-sm > .input-group-addon-wayStar {
    font-size: 12px;
    padding: 2px 6px;
}

.btn.no-bg-wayStar {
    background-color: transparent;
    color: #c7460d !important;
    line-height: 1;
    margin-top: -2px;
    margin-left: 15px;
    padding: 0;
    font-size: 11px;
    font-weight: bold;
    position: relative;
    text-transform: uppercase;
}

    .btn.no-bg-wayStar i {
        font-size: 24px;
        position: absolute;
        left: -24px;
        top: 0;
    }

.wayStarPanel {
    border: 2px solid rgb(199, 70, 13) !important;
}

.patient-search > .input-group-addon-wayStar {
    background: #3C3C3B;
    color: #C6C6C5;
    border: 2px solid #3C3C3B;
}

.patient-search.input-group-sm > .input-group-addon-wayStar {
    font-size: 12px;
    padding: 2px 6px;
}

.input-group-wayStar > .input-label {
    border: none;
    background: transparent;
    color: #555555;
    padding-bottom: 5px;
}

.search .input-group-wayStar {
    padding-bottom: 0px;
}

.search div:not(.patient-form) .input-group-addon-wayStar,
.search div:not(.patient-form) .form-control-wayStar {
    border-top: 0;
}

.wayStarTextColor {
    color: #c7460d !important;
}

.wayStarButtonColor {
    background-color: #c7460d !important;
    border-color: #c7460d !important;
}

.patient-search .form-control-wayStar {
    border-color: #3C3C3B !important;
}

.required-alert-wayStar {
    padding: 9px 15px;
    background-color: #C6C6C5;
    font-weight: bolder;
    font-size: 14px;
    border: 1px solid rgb(199, 70, 13);
}

.table-striped-wayStar > tbody > tr:hover,
.table-striped-wayStar > tbody > tr:nth-of-type(odd):hover,
.table-striped-wayStar > tbody > tr.selected,
.table-striped-wayStar > tbody > tr.selected:nth-of-type(odd) {
    background-color: #DB8762 !important;
}

.insurance-verification-accordion .panel-group .panel-heading {
    background-color: #FFFFFF;
    border-color: #eea236;
}

#waystar-accordion .panel-group .panel-heading {
    background-color: #f5f5f5 !important;
}

#billingNotes {
    resize: vertical;
    max-height: 500px;
    min-height: 50px;
    height: 10em;
    width: 100%;
}

/* Clinical Calls Styles */
.form-label {
    color: rgb(0, 126, 198) !important;
    font-size: 16px;
    font-weight: bold;
}

.noteBody {
    border: 1px solid #007ec6;
    border-radius: 7px;
    background-color: #eee;
    padding: .5em;
    color: #333;
}

.newNote textarea {
    border: 1px solid #007ec6;
    border-radius: 7px;
    padding: .5em;
    resize: vertical;
    max-height: 500px;
    min-height: 40px;
    height: 5em;
    width: 100%;
    color: #333;
}

    .newNote textarea:focus::-webkit-input-placeholder {
        color: transparent;
    }

.preserveLineBreaks {
    white-space: pre-wrap;
}

#callHistoryNav a {
    border: 1px solid #9C9B9B;
    color: #007ec6;
}

#callHistoryNav .active a {
    background-color: #EEE;
    color: #333;
}

#callHistoryContainer {
    max-height: 400px;
    overflow: auto;
    overflow-x: hidden;
}

.cc-panel-centered {
    background-color: white;
    border: 2px solid rgb(0, 126, 198);
    padding: 15px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 20px;
    font-family: Arial;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .cc-panel-centered h3 {
        border: none;
        padding: 0px;
        margin-top: 5px;
        margin-bottom: 0px;
    }

    .cc-panel-centered a {
        vertical-align: middle;
    }

#pumpHistoryBtn {
    position: absolute;
    top: -15px;
    right: 15px;
}

.patient-caregiver-modal {
    height: 400px;
    min-height: 400px;
}

    .patient-caregiver-modal .caregiver-modal-body {
        margin: 20px 20px 0px 20px;
    }

.caregiver-submit {
    float: right;
}

.patient-caregiver-modal .new-agency {
    position: relative;
    top: 28px;
    margin-left: -15px !important;
    font-size: 13px;
    text-transform: none;
}

.callschedule-followupdates-modal {
    height: 380px;
    min-height: 380px;
}

    .callschedule-followupdates-modal .callschedule-followupdates-modal-body {
        margin: 20px 20px 0px 20px;
    }

    .callschedule-followupdates-modal .callschedule-followupdates-submit {
        float: right;
    }

    .callschedule-followupdates-modal .infuForm label {
        font-size: 18px;
    }

.callschedule-calldate {
    margin-left: 5px;
}

.callschedule-newcall {
    vertical-align: bottom
}

.nursing-agency-modal {
    height: 665px;
}

    .nursing-agency-modal .error-container {
        position: absolute;
        margin-left: 190px;
    }

.nursing-agency-list-container {
    min-height: 403px;
    border: solid 2px #CCCCCC;
    padding: 0px;
    overflow: auto;
    height: 403px;
}


.nursing-agency-list {
}

    .nursing-agency-list > tbody tr {
        border-bottom: solid 1px #C5D4EC;
    }

    .nursing-agency-list > tbody > tr:nth-child(1) {
        border-top: none;
    }

    .nursing-agency-list > tbody > tr:nth-child(odd) {
        background-color: #E1E8F5;
    }

    .nursing-agency-list > tbody > tr:nth-child(even) {
        background-color: #ffffff;
    }

    .nursing-agency-list > tbody > tr:hover {
        background-color: #CCCCCC;
    }


.document-handle-list-container {
    min-height: 100px;
    padding: 0px;
    overflow: auto;
    height: 100px;
}

#patient-schedule-tabs {
    position: absolute;
    top: 29px;
    margin-left: 10px;
}

#patient-schedule-tabs .nav-tabs {
    border-bottom: none;
}

#patient-schedule-tabs .nav-tabs > li.active > a,
#patient-schedule-tabs .nav-tabs > li.active > a:focus,
#patient-schedule-tabs .nav-tabs > li.active > a:hover {
    background-color: #E5E5E5;
    font-weight: bold;
}

#patient-schedule-tabs .nav-tabs > li > a {
    border: 1px solid #E5E5E5;
}

#patient-schedule-tabs .nav-tabs > li#pumprecovery {
    left: -130px;
    text-align: center;
}

#patient-schedule-tabs .nav-tabs > li#billing {
    left: 95px;
    text-align: center;
}

.text-bolder {
        font-weight: bolder;
    }

.infinite-scroll-static-header.patient-view-scroll-header.callemail-view-scroll-header {
    padding-left: 3px;
}

#recipientsParent .text-data {
    margin: 0;
}

.text-warning {
    color: #F8B133;
}

.text-ok {
    color: #2DAB66;
}

.text-blue {
    color: #337ab7;
}

.text-lg {
    font-size: 18px !important;
}

.border-bold-black {
    border: solid 2px silver;
}

.text-size15 {
    font-size: 15px !important;
}

.text-size16 {
    font-size: 16px !important;
}


.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

.text-truncate2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text-truncate-oneline {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.text-untruncate {
    overflow: visible;
}


.row-expander {
    background-color: #FFFFFF;
}

.row-expander-alert-icon {
    position: absolute;
    left: 35px;
    top: 3px;
}

.row-expander .popover {
    width: 800px !important;
}

.row-expander .popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 14px;
    background-color: #f7f7f7;
    border: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}

.popover-host .popover {
    width: 800px !important;
    margin-top: 20px;
}

.popover-host .popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 12px;
    background-color: #f7f7f7;
    border: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}

.row-expander .popover-content {
    padding: 9px 14px;
}

.row-cell-spinner img {
    height: 25px;
    left: 7px;
    top: 3px;
    position: relative;
}

#casemanagement-tabs .nav-tabs > li.active > a,
#casemanagement-tabs .nav-tabs > li.active > a:focus,
#casemanagement-tabs .nav-tabs > li.active > a:hover {
    background-color: #E5E5E5;
    font-weight: bold;
}

#casemanagement-tabs {
    position: absolute;
    top: 29px;
    margin-left: 10px;
}

    #casemanagement-tabs .nav-tabs > li > a {
        border: 1px solid #E5E5E5;
    }

    #casemanagement-tabs .nav-tabs > li#tasks {
        left: 520px;
        width: 130px;
        text-align: center;
    }

    #casemanagement-tabs .nav-tabs > li#all {
        left: 520px;
        width: 130px;
        text-align: center;
    }

.casemanagement-list-icon {
    position: relative;
    left: 25px;
    top: -2px;
    font-size: 20px !important;
}

.casemanagement-calllist-phone-icon {
    position: relative;
    top: 2px;
    font-size: 20px !important;
}

.casemanagement-list-check-icon {
    font-size: 20px !important;
}

.casemanagement-list-phone-status {
    font-size: 10px;
    position: relative;
    top: 8px;
    left: 2px;
}

.notes {
    color: #007ec6;
}

.casemanagement-modal .modal-body {
    margin: 20px 20px 0px 20px;
}

.modal-md {
    width: 500px !important;
}

input[name="editable-time-select"]:disabled {
    background-color: #ffffff;
}

.time-select-drop-down {
    height: 70px;
    overflow: auto;
}

    .time-select-drop-down:hover {
        cursor: pointer;
    }

    .time-select-drop-down li {
        padding-left: 10px;
    }

        .time-select-drop-down li:hover {
            background-color: #eeeeee;
        }

.clearable-filter-field {
    display: flex;
    flex-direction: row;
    border: 2px solid #9C9B9B;
    padding: 0px;
}

    .clearable-filter-field input {
        flex-grow: 2;
        border: none;
        height: 37px;
    }

        .clearable-filter-field input.clr-small {
            flex-grow: 0;
            border: none;
            height: 26px;
        }

    .clearable-filter-field button.clr-small {
        border: 0px;
        background: none;
        line-height: 1;
        font-size: 10px;
    }

    .clearable-filter-field input:focus {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .clearable-filter-field button {
        border: 0px;
        background: none;
    }

        .clearable-filter-field button i {
            color: black;
        }

.physician-lookup-error {
    font-size: 14px;
    font-weight: bold;
}

.scrollable-menu {
    height: auto;
    width: auto;
    max-height: 200px;
    overflow-x: hidden;
    text-wrap: avoid;
}

.multipleSelectionDropdown {
    border: 2px solid #9C9B9B;
    width: 100%;
}

    .multipleSelectionDropdown input[type='text'] {
        background-color: #fff;
        border: none;
        height: 37.5px;
    }

.multiple-selection-small .multipleSelectionDropdown input[type='text'] {
    height: 25px;
    font-size: 12px;
}

.multipleSelectionDropdown .input-group-addon {
    background-color: #fff;
    border: none;
}

.multipleSelectionDropdown ul {
    min-width: 218px;
}

.multipleSelectionDropdown li {
    padding-left: 10px;
    padding-right: 10px;
}

    .multipleSelectionDropdown li button {
        margin-top: 5px;
    }

.multipleSelectionDropdown li {
    padding-left: 10px;
    padding-right: 10px;
}

.multipleSelectionDropdown input[type='checkbox'] {
    margin-right: 5px;
}

.multipleSelectionDropdown > ul > li > a {
    margin: 0px;
    padding: 5px;
}

.multipleSelectionDropdown input:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn.docusign {
    border-radius: 0;
    box-shadow: none;
    color: #575757 !important;
}

.small-inline-spinner {
    height: 15px;
    width: 15px;
    margin-left: 5px;
}

.medium-inline-spinner {
    height: 25px;
    width: 25px;
}

.header-logo {
    width: 230px;
}

.patientProcedurePanel {
    margin-left: 5px;
    margin-top: 25px;
    margin-right: 5px;
}

    .patientProcedurePanel .panel-body {
        padding: 0px 0px 0px 0px !important;
        border: 1px solid rgb(0, 126, 198) !important;
    }

.text-ban-circle {
    font-size: 25px !important;
    color: red !important;
}

#blueDividingBar {
    background-color: #007EC6;
    height: 38px;
    border-bottom: solid 2px gray;
}

#survey-notes-tabs .nav-tabs > li.active > a,
#pain-call-center-tabs .nav-tabs > li.active > a,
#survey-notes-tabs .nav-tabs > li.active > a:focus,
#pain-call-center-tabs .nav-tabs > li.active > a:focus,
#survey-notes-tabs .nav-tabs > li.active > a:hover,
#pain-call-center-tabs .nav-tabs > li.active > a:hover {
    background-color: #E5E5E5;
    font-weight: bold;
}

#survey-notes-tabs .nav-tabs > li > a,
.nav-tabs > li > a {
    border: 1px solid #E5E5E5;
}

.btn.square {
    border-radius: 0;
    box-shadow: none;
    color: #575757 !important;
}

.selected-item {
    background: #2DAB66;
    padding: 3px;
    color: white;
    border-radius: 4px;
}

.line-height-sm {
    line-height: 16px !important;
}

.procedure-view-data .row {
    margin-left: -50px !important;
    line-height: 16px !important;
    font-size: 14px;
    color: gray;
}

.procedure-view-data-tight .row {
    margin-left: -60px !important;
    line-height: 16px !important;
    font-size: 14px;
    color: gray;
}

.procedure-view-list {
    line-height: 16px !important;
    font-size: 14px;
    color: gray;
}

.text-black {
    color: #000000 !important;
    font-weight: bold !important;
}

.text-green {
    color: #2DAB66 !important;
    font-weight: bold !important;
}

.text-amber {
    color: #F8B133 !important;
}

.text-bronze {
    color: #994d00 !important;
}

.text-red {
    color: red !important;
}

.text-red-bold {
    color: red !important;
    font-weight: bold !important;
}

.text-silver {
    color: silver !important;
}

.procedure-view-phone-icon {
    color: black !important;
    margin-left: 10px;
    position: absolute;
    cursor: pointer;
    line-height: 16px !important;
    font-size: 18px !important;
}

.pumpProgram {
    border: solid 2px #9C9B9B;
    margin-bottom: 15px;
}

.pumpProgramFieldSuffix {
    top: 9px;
    position: relative;
    line-height: 20px !important;
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #3C3C3B;
}

.pumpProgram-numberfield-sm {
    width: 45px;
    padding: 0px 0px 0px 5px;
    height: 30px;
}

.pumpProgram-numberfield-md {
    width: 65px;
    padding: 0px 0px 0px 5px;
    height: 30px;
}

.pumpProgram-numberfield-lg {
    width: 80px;
    padding: 0px 0px 0px 5px;
    height: 30px;
}

.pumpProgram label {
    font-size: 14px !important;
}

.pumpProgram .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: gray;
    top: 0px;
    left: 0px;
    opacity: .7;
    z-index: 1;
}

.pumpProgram p.deleting {
    position: absolute;
    left: 145px;
    top: 80px;
    width: 45%;
    border-radius: 5px;
    padding: 5px;
    opacity: 1;
    z-index: 2;
}

.flex-vertical-align {
    display: flex;
    align-items: center;
}

.freeze-panel-table-container {
    width: 100%;
    height: 500px;
    overflow: scroll;
    position: relative;
}

.freeze-panel-table {
    position: absolute;
}

    .freeze-panel-table .cross {
        position: relative;
        z-index: 1;
    }

    .freeze-panel-table thead {
        padding-right: 23px;
        background-color: #007EC6;
        font-weight: 800;
        font-size: 15px;
        text-transform: uppercase;
        font-family: Arial, sans-serif;
        color: #C6C6C5 !important;
    }

        .freeze-panel-table thead tr th {
            font-weight: 700;
            font-size: 12px;
            box-sizing: border-box;
            width: 100px;
            text-align: center;
        }

    .freeze-panel-table tbody tr td {
        box-sizing: border-box;
        width: 100px;
        text-align: center;
    }

    .freeze-panel-table .headercolumn {
        width: 150px;
        max-width: 150px;
        min-width: 150px;
        text-align: left;
        background: #007EC6;
    }

    .freeze-panel-table th {
        background-color: #007EC6;
    }

    .freeze-panel-table > tbody > tr:nth-of-type(odd) td {
        background-color: #e1e8f5 !important;
    }

    .freeze-panel-table > tbody > tr:nth-of-type(even) td {
        background-color: #FFFFFF !important;
    }

.patient-procedure-survey-freeze-pane {
    height: 500px !important;
}

.remove-bold-text {
    font-weight: unset !important;
}

.rating {
    /*color: #a9a9a9;*/
    color: rgb(209,209,209);
    margin: 0;
    padding: 0;
}

ul.rating {
    display: inline-block;
}

.rating li {
    list-style-type: none;
    display: inline-block;
    padding: 1px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

    .rating li span {
        font-size: 20px;
    }

    .rating li .bubblenumber span {
        font-size: 11px;
        font-weight: lighter;
        color: rgb(209,209,209);
    }

.rating .filled {
    color: rgb(0,117,255);
}

.pumpserial-display {
    border: 2px solid rgb(0, 126, 198);
    padding: 8px 15px 8px 15px;
}

.invalid-required-group {
    border-left: 4px solid #D9534F !important;
}

.text-nowrap {
    white-space: nowrap;
}

.text-gray {
    color: #9C9B9B;
}

.pain-center-container {
    padding: 16px 32px;
}

#pain-call-center-date-filter {
    /*    background: white;
*/ /*    border: 2px solid rgb(0, 126, 198);
    padding: 0 16px;
    height: 70px;
*/
}

    #pain-call-center-date-filter label {
        /*    font-size: 14px;
    font-weight: bold;
*/
    }

#painSummary {
    background: white;
    border: 2px solid rgb(0, 126, 198);
    padding: 8px;
    height: 135px
}

    #painSummary table td {
        font-size: 1.5em;
    }


.pain-checkbox {
    display: block;
    position: relative;
    margin: auto;
    cursor: pointer;
    font-size: 22px;
    line-height: 25px;
    height: 25px;
    width: 25px;
    clear: both;
}

    .pain-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .pain-checkbox span {
        position: absolute;
        top: 0px;
        left: 0px;
        height: 25px;
        width: 25px;
        background-color: transparent;
        border-radius: 5px;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        border: 2px solid #007EC6;
    }


    .pain-checkbox input:checked ~ span {
        background-color: #007EC6;
        border-radius: 5px;
        -webkit-transform: rotate(0deg) scale(1);
        -ms-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
        opacity: 1;
        border: 2px solid #007EC6;
    }


    .pain-checkbox span::after {
        position: absolute;
        content: "";
        left: 12px;
        top: 12px;
        height: 0px;
        width: 0px;
        border-radius: 5px;
        border: solid #009BFF;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(0deg) scale(0);
        -ms-transform: rotate(0deg) scale(0);
        transform: rotate(0deg) scale(0);
        opacity: 1;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }


    .pain-checkbox input:checked ~ span::after {
        -webkit-transform: rotate(45deg) scale(1);
        -ms-transform: rotate(45deg) scale(1);
        transform: rotate(45deg) scale(1);
        opacity: 1;
        left: 8px;
        top: 3px;
        width: 6px;
        height: 12px;
        border: solid #FFFFFF;
        border-width: 0 3px 3px 0;
        background-color: transparent;
        border-radius: 0;
    }

.date-calendar-only[readonly] {
    background-color: white;
}

.date-calendar-error-adjust {
    margin-top: -10px;
}

.blue-radio-input input[type="radio"] + label span {
    background-color: white;
    border: 2px solid #007ec6;
    transition: all .3s ease;
}

.blue-radio-input input[type="radio"]:checked + label span {
    background-color: #007ec6;
    border: 4px solid #007ec6;
}

.blue-radio-input input[type="radio"] + label {
    color: #007ec6 !important;
    margin: 0 !important;
}

.small-checkbox-list {
    border: 2px solid #757373;
    min-height: 100px;
    max-height: 300px;
    width: 560px;
    overflow: auto;
}

    .small-checkbox-list ul {
        list-style-type: none;
        padding-top: 6px;
    }

        .small-checkbox-list ul li {
            margin-top: -5px;
            margin-bottom: -10px;
        }

    .small-checkbox-list label {
        position: relative;
        cursor: pointer;
        font-size: 15px;
        line-height: 15px;
        height: 15px;
        width: 15px;
    }

        .small-checkbox-list label input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

        .small-checkbox-list label .tiny-checkbox {
            position: absolute;
            top: 0px;
            left: 0px;
            height: 15px;
            width: 15px;
            background-color: transparent;
            border-radius: 2px;
            transition: all 0.3s ease-out;
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -ms-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            border: 2px solid #757373;
        }

        .small-checkbox-list label input:checked ~ .tiny-checkbox {
            background-color: #757373;
            border-radius: 2px;
            -webkit-transform: rotate(0deg) scale(1);
            -ms-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
            opacity: 1;
            border: 2px solid #757373;
        }


        .small-checkbox-list label .tiny-checkbox::after {
            position: absolute;
            content: "";
            left: 12px;
            top: 12px;
            height: 0px;
            width: 0px;
            border-radius: 2px;
            border: solid #009BFF;
            border-width: 0 2px 2px 0;
            -webkit-transform: rotate(0deg) scale(0);
            -ms-transform: rotate(0deg) scale(0);
            transform: rotate(0deg) scale(0);
            opacity: 1;
            transition: all 0.3s ease-out;
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -ms-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
        }


        .small-checkbox-list label input:checked ~ .tiny-checkbox::after {
            -webkit-transform: rotate(45deg) scale(1);
            -ms-transform: rotate(45deg) scale(1);
            transform: rotate(45deg) scale(1);
            opacity: 1;
            left: 3px;
            top: 0px;
            width: 5px;
            height: 10px;
            border: solid #FFFFFF;
            border-width: 0 2px 2px 0;
            background-color: transparent;
            border-radius: 0;
        }

    .small-checkbox-list .tiny-checkbox-text {
        color: #757373 !important;
        font-size: 14px;
        position: relative;
        top: -3px;
    }

.survey-panel.panel .panel-body {
    border: 1px solid lightgray !important;
}

.survey-wrapper {
    border: 1px solid lightgray !important;
    padding: 15px;
    margin-bottom: 15px;
}

.PURCHSUPPLY .panel-title {
    background: antiquewhite;
}

.painPumpRecoveryFilters {
    background: white;
    border: 2px solid rgb(0, 126, 198);
    padding: 8px;
    height: 62px;
}

.isminor {
    font-size: 18px !important;
    font-weight: bold;
    color: darkred !important;
}

.text-medium-gray {
    color: #616971 !important;
}

.text-purple {
    color: purple !important;
}

.text-orange {
    color: #CC6500 !important;
}

.sidebar {
    box-shadow: 0px 0px 30px gray;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
}

    .sidebar .sidebarContent {
        padding: 20px;
    }

.facility-datepicker {
    position: relative;
}

.facility-datepicker .dropdown-menu {
    left: auto !important;
    right: 0px;
}

.facility-datepicker-form-signed {
    position: relative;
}

.facility-form-signed-datepicker .dropdown-menu {
    left: auto !important;
}

#caseManagementModalContent {
    height: 910px;
}

#pwoTemplateSelection .panel-body {
    border: 0px !important;
}

#pwoTemplateSelection .pwoTemplate .panel-body {
    border: 2px rgb(0, 126, 198) solid !important;
    padding-left: 10px;
}

.pwoTemplate .panel-body label {
    font-size: 14px;
    color: #888;
}

.pwoTemplate .modal-body {
    font-size: 16px !important;
}

.grid-filter-header {
    background-color: white;
    border: none;
    padding: 5px 20px 5px 20px;
    margin: 0;
}

    .grid-filter-header h3 {
        border: none;
        padding: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
        background-color: transparent;
    }

.ar-list .row select {
    border-radius: 0;
    padding: 0px;
    background-color: transparent;
}

.ar-list .row .header-filter {
    color: #C6C6C5 !important;
    border-color: #C6C6C5 !important;
    height: 22px;
}

    .ar-list .row .header-filter option {
        color: #000 !important;
        border-color: #000 !important;
    }

.multiselect-scrollable-menu {
    height: auto;
    width: auto;
    max-height: 600px;
    overflow-x: hidden;
    text-wrap: avoid;
}

.collections-panel-centered {
    background-color: white;
    border: 2px solid rgb(0, 126, 198);
    padding: 5px;
    font-weight: 800;
    font-size: 20px;
    font-family: Arial;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 0.5;
}

    .collections-panel-centered h3 {
        border: none;
        padding: 0px;
        margin-top: 5px;
        margin-bottom: 0px;
    }

    .collections-panel-centered select {
        min-width: 100%;
    }

#list-infinite-scroll-wrapper {
    max-height: 60vh;
    overflow-y: scroll;
    overflow-x: hidden;
}


.btn-textbox-icon {
    width: auto;
}

.input-group-btn .btn-textbox-icon {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    background-color: transparent;
    z-index: 99;
}

    .input-group-btn .btn-textbox-icon > .glyphicon {
        color: rgb(85,85,85);
    }

.form-control.form-control-compact {
    height: 28px;
}

.modal-body.denied-adjustment-modal-body {
    padding: 20px 20px 0px 20px;
}

    .modal-body.denied-adjustment-modal-body textarea {
        height: 100px;
    }

.infinite-scroll-wrapper.claim-mgmt {
    overflow-y: scroll;
    max-height: 550px;
}

.no-spinner input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.rowOdd {
    background-color: #eef1f4;
}

.rowEven {
    background-color: #ffffff;
}

.input-hidden {
    height: 0;
    width: 0;
    visibility: hidden;
    padding: 0;
    margin: 0;
}

.pwoNPWTHeaderNPI {
    float: right !important;
    font-style: normal !important;
    font-size: 12px !important;
    line-height: 20px !important;
    top: -10px !important;
    position: relative !important;
}

.pwoNPWTCheckboxLabel {
    margin-left: -10px !important;
}


.pwo-npwt-alt-form-style label {
    line-height: 20px !important;
    margin-left: 5px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #3C3C3B;
}

    .pwo-npwt-alt-form-style label.small {
        font-size: 10px;
    }


.pwo-npwt-alt-form-style .form-control {
    border: none;
    background: transparent;
    border-bottom: 1px solid black;
    outline: none;
    padding: 0px;
    height: 20px;
    border-radius: 0px;
    box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
}

.pwo-npwt-alt-form-style input[type="checkbox"] + label span,
.pwo-npwt-alt-form-style input[type="radio"] + label span {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    cursor: pointer;
    border-radius: unset;
    border: 1px solid black;
    background-color: white;
}

.not-allowed {
    cursor: not-allowed !important;
}

.pwo-npwt-alt-form-style input[type="checkbox"]:checked + label span,
.pwo-npwt-alt-form-style input[type="radio"]:checked + label span {
    background-color: #3C3C3B;
    border: 3px solid #3C3C3B;
}

.pwo-npwt-alt-form-style .order-header {
    font-weight: 900 !important;
    font-size: 12px !important;
}

.pwo-npwt-alt-form-style .order-body {
    font-size: 13px !important;
}

.pwo-npwt-alt-form-style input.ng-valid-required {
    border-left: 0px !important;
}

.pwo-npwt-alt-form-style input[type="checkbox"] {
    display: none;
}

.border-bottom {
    border-bottom: solid 1px black;
}

.border-right-thick {
    border-right: solid 4px black;
}

.signature-date-picker > p > ul {
    left: -50px !important;
}

.checkbox-checked {
    border: solid 2px silver;
    color: white;
    background-color: #007EC6;
}

.checkbox-unchecked {
    border: solid 2px silver;
    color: white;
    background-color: white;
}

.tiny-square-checkbox {
    position: absolute;
    padding: 0px;
    border: 1px solid black;
    border-radius: 0;
    height: 15px;
    width: 15px;
}

    .tiny-square-checkbox input[type=checkbox] {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2000;
        height: 15px;
        width: 15px;
        margin: 0;
        opacity: 0;
    }

    .tiny-square-checkbox label {
        cursor: pointer;
        display: block;
        margin-left: 18px;
        margin-top: -4px;
    }

        .tiny-square-checkbox label:after {
            content: '';
            opacity: 0;
            position: absolute;
            width: 7px;
            height: 4px;
            background: black;
            top: 0px;
            left: 0px;
            border: 7px solid black;
            transition: all .3s ease;
        }

    .tiny-square-checkbox input[type=checkbox]:checked + label:after {
        opacity: 1;
    }

.clinical-notes-upload-modal {
    min-height: 250px !important;
    height: 250px;
}

    .clinical-notes-upload-modal .modal-body {
        margin: 20px 20px 0px 20px;
    }

.text-oblique {
    font-style: oblique !important;
}

.color777 {
    color: #777 !important;
}

.pwoNpwtDatePickerWrapperHeight {
    height: 20px;
}

.pwoNpwtDatePickerLeft > p > ul {
    left: -180px !important;
}

.pwoToolOverrideInput {
    padding-left: 3px !important;
    padding-right: 3px !important;
    left: -1px;
}

.agedArFilterWide {
    width: 184%;
}

.agedArMultiselectDropDown .multipleSelectionDropdown .input-group-addon {
    padding: 0px;
}

.agedArMultiselectDropDown .multiple-selection-text, .multipleSelectionDropdown ul li div label {
    font-size: 12px;
    line-height: initial;
}

.max-height-28 {
    max-height: 28px;
}

@media (min-width: 950px) {
    .other-therapies-other {
        position: relative;
        left: -60px;
    }
}

@media (min-width: 990px) {
    .other-therapies-other {
        position: relative;
        left: -80px;
    }
}

.home-search-row-icon {
    float: left;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
    padding-right: 10px;
}

.collections-follow-up-date .dropdown-menu {
    top: -125px !important;
    left: 150px !important;
}

.pain-center-container .btn.btn-sm.btn.btn-primary.send-survey {
    background-color: #2DAB66;
    border-color: #2DAB66;
    padding: 2px 10px;
    font-size: 10px;
}

.pain-center-container .sms-date {
    font-size: 10px;
}

.collections-clear-filter {
    margin-top: 23px;
    margin-left: -6px;
    height: 28px;
    text-align: center;
    line-height: 17px;
}

.collections-filter-panel select {
    width: 100% !important;
}

.collection-detail-money {
    padding-left: 2px;
    padding-right: 2px;
}

.collection-detail-form-control {
    height: 20px !important;
    border: 1px solid #9C9B9B;
}

.collections-detail-refresh-btn {
    left: -27px;
    top: -2px !important;
    font-size: 11px;
}

.patient-lookup-edit-left {
    padding-right: 33px;
}

.patient-lookup-edit-right {
    padding-right: 10px;
}

.pain-cc-panel {
    background-color: white;
    border: 2px solid rgb(0, 126, 198);
    padding: 5px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 0.5;
}

    .pain-cc-panel .pain-cc-datepicker {
        line-height: 1.0;
    }

    .pain-cc-panel h3 {
        border: none;
        padding: 0px;
        margin-top: 5px;
        margin-bottom: 0px;
    }

    .pain-cc-panel .row select {
        border-radius: 0;
        padding: 0px;
        background-color: transparent;
        width: 100%;
    }

.fcm-filter-panel {
    background-color: white;
    border: 2px solid rgb(0, 126, 198);
    padding: 5px;
    width: 100% !important;
    height: 50px;
}

.fcm-filter {
    height: 26px;
    padding-left: 3px;
    padding-right: 3px;
    margin-top: 6px;
}

.fcm-filter-input {
    height: 100% !important;
}

.fcm-filter select {
    height: 100% !important;
    font-family: inherit;
}

.fcm-filter button {
    border: 0px;
    background: none;
    line-height: 1;
    font-size: 10px;
    float: right;
    margin-top: -24px;
    color: #333 !important;
}

.fcm-clear-filter {
    margin-top: 6px;
    margin-left: -1px;
    height: 26px;
    text-align: center;
    line-height: 12px;
}

.cursor-inherit {
    cursor: inherit;
}

.facility-admin-label-small {
    font-weight: normal !important;
    font-size: 12px !important;
}

.facility-color-tip label {
    padding-left: 12px;
}

.agedar-small-checkbox {
    position: absolute;
    padding: 3px;
    border: 1px solid #9c9c9b;
}

.agedar-small-checkbox input[type=checkbox] {
    position: absolute;
    z-index: 2000;
    opacity: 0;
}

.agedar-small-checkbox label {
    cursor: pointer;
    display: block;
    width: 6px;
    height: 6px;
}

.agedar-small-checkbox label:after {
    content: '';
    opacity: 0;
    position: absolute;
    width: 7px;
    height: 4px;
    background: transparent;
    top: 4px;
    left: 3px;
    border: 2px solid;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.agedar-small-checkbox input[type=checkbox]:checked + label:after {
    opacity: 1;
}

.agedAr-checkbox-filter-parent {
    float: right;
    margin-top: 5px;
}

.agedAr-checkbox-filter {
    padding-top: 10px;
}

.facilities-filter-select {
    padding: 5px;
    color: #555;
    font-family: Roboto-Bold, Helvetica, Arial, sans-serif;
}

.npwt-filter {
    border: 2px solid rgb(0, 126, 198) !important;
}

#patientCareCoordinatorFilter .multipleSelectionDropdown input[type='text'] {
    height: inherit;
}

.npwt-filter .patient-coordinator-filter-label {
    line-height: 40px !important;
}

.col-npwt-11 {
    width: 11.11%;
}

.col-npwt-top-5 {
    margin-top: -5px;
}

.btn-npwt-image {
    font-size: 14px;
    background-color: transparent;
    color: #007EC6 !important;
}

.white-space-pre-line {
     white-space: pre-line;
}

#patientNote {
    resize: vertical;
    max-height: 500px;
    min-height: 50px;
    height: 8em;
    width: 100%;
}

.patient-quick-add-modal-datepicker > ul {
    left: -134px !important;
}

.col-ehr-patients-12 {
    width: 12.16%;
}

.ehr-patient-patient-table-row {
    cursor: default !important;
}

.ehr-patient-doc-table-row {
    cursor: default !important;
}

#ehr-patient-table > tbody > tr > td > div {
    display: flex;
}

.ehr-patient-padding {
    padding-left: 10px;
    padding-right: 0px;
}

.col-ehr-patients-radio {
    width: 2%;
    padding-left: 0px;
}

.ehr-patient-radio {
    display: inline-block !important;
    margin-top: 15px !important;
    cursor: pointer;
}

.ehr-doc-check {
    cursor: pointer;
}

.ehr-patient-submit {
    margin-top: 25px;
}

.underline {
    text-decoration: underline;
}

.disabled-background {
    background-color: #eee !important
}

.gender-radio-group label {
    padding-left: 5px;
}

.gender-unselect {
    cursor: pointer;
    color: gray;
    font-size: initial;
    margin-left: 7px;
    top: 4px;
}

.col-Width-8 {
    width: 8%;
}

.col-Width-9 {
    width: 9%;
}

.col-Width-12 {
    width: 12%;
}

.col-Width-14 {
    width: 14%;
}

.col-Width-532 {
    width: 53.2%;
}

.col-Width-293 {
    width: 29.33%;
}


.col-Width-54 {
    width: 54%;
}

.insurance-auth-grand-total {
    margin-top: 22px;
    border: 2px solid #007ec6;
    font-weight: bold;
    overflow: hidden;
}

.insurance-auth-vs-pump {
    margin-left: 61px;
    width: 253px;
    padding-left: 0px;
    padding-right: 0px;
}

.insurance-auth-currency {
    padding-right: 5px;
    overflow: hidden;
}

.insurance-auth-input {
    padding: 0px 5px 0px 5px
}


#line-items > div > div {
    padding: 0px 0px 0px 0px
}

#line-items > div > div > div {
    padding: 0px 5px 0px 5px
}

.insurance-auth-header-padding-sm {
    padding-left: 10px;
}

.insurance-auth-header-padding-md {
    padding-left: 20px;
}

.collection-detail-selectAll-checkbox {
    margin-left: 7px !important;
    accent-color: white;
}