/*************************************************************
    NOTE THAT INVOICE AND PAYMENT PAGES DO NOT LOAD STYLE.CSS!
**************************************************************/

/*-------------------------------------
 *   web fonts loaded from MEDIA_URL
 *-------------------------------------*/
 @font-face{
    font-family: 'CCWebsymbols';
    src: url('/media/fonts/websymbols-regular-webfont.eot');
    src: url('/media/fonts/websymbols-regular-webfont.eot?#iefix') format('embedded-opentype'),
    url('/media/fonts/websymbols-regular-webfont.woff') format('woff'),
    url('/media/fonts/websymbols-regular-webfont.ttf') format('truetype'),
    url('/media/fonts/websymbols-regular-webfont.svg#FontomasCustomRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}


html, body {
    /*Fixed footer for billing pages: http://www.cssplay.co.uk/layouts/basics2.html*/
    height: 100%;
    padding: 0;
    margin: 0;
}

body{
    font-family: Verdana,Arial,sans-serif;
    font-size: 14px;
    color: #333;
    margin:0;
}

kbd {
    padding: .1em .6em;
    border: 1px solid #ccc;
    background-color: #f7f7f7;
    box-shadow: 0 1px 0 rgba(0,0,0,0.2),0 0 0 2px #fff inset;
    border-radius: 3px;
    display: inline-block;
    margin: 0 .1em;
    text-shadow: 0 1px 0 #fff;
    white-space: nowrap;
}

*:focus {outline: none;}

a,
body #title a,
body .ui-widget-content a {
    color: #2E6E9E;
    text-decoration: none;
}

a[disabled] {
    pointer-events: none;
    color:#d3d3d3;
}

.alert a {
    text-decoration: underline;
}

.overridden-rates-tip img {
    margin-top: 3px;
    margin-left: -5px;
}

.overridden-rates-tip img:hover {
    cursor: pointer;
}

.custom-tiered-rate-alert img{
    margin-top: 3px;
    margin-left: -5px;
}

.custom-tiered-rate-alert img:hover {
    margin-top: 3px;
    margin-left: -5px;
}

a:hover, body #title a:hover {
    text-decoration: underline;
}

.hide { display: none; }
.cl { clear: both; }

img {
    border: none;
}

/* EVV Parent Payer Form */
td.left-column {
    float: right;
    margin-right: -435px;
}

th.center, td.center {
    text-align: center;
}

td.right {
    text-align: right;
}

.green {
    color: green;
}

.red {
    color: red !important;
}

.block{
    border: 1px solid #AAAAAA;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.inline-block {
    display: inline-block;
}
.padded-block {
    padding: 10px 20px;
}

div.dialog {
    display: none;
    max-width: 600px;
}

.copy-authorization-dialog {
    z-index: 3500 !important;
}

.hidden {
    display: none;
}

.nowrap, .nobr {
    white-space: nowrap;
}

div.fc-event-title div.task {
    margin: 0;
    font-size: 12px;
    padding: 2px 5px;
    border-bottom: 1px dotted #FFF;
}

div.ot-auth-info {
    width: 450px;
}

/* print _settings */
@media print {
    body {
        background-color: transparent;
    }

    ._no_print {
        display: none;
    }


    /* hide zenbox and walkme tabs on printouts */
    #zenbox_tab, #custom-walkme-tab, #walkme-menu-closed, #walkme-menu-open {
        display: none!important;
    }
}

@media print{
    ._no_print{
        display: none;
    }
}

@media screen{
    ._print_only{
        display: none;
    }
}

/* filter forms in the left column on a list like the e_payments page */
/* TODO: use these styles for the filters in the receivables page too */
._left_column_filter_form{
    float: left;
    width: 190px;
}
._left_column_filter_form h3{
    font-size: 13px;
    font-weight: bold;
    margin: 5px 0;
    padding: 0;
}
._left_column_filter_form h4{
    font-size: 11px;
    font-weight: bold;
    margin: 5px 0;
    padding: 0;
}

._left_column_filter_form select,
._left_column_filter_form input,
._left_column_filter_form .chzn-container{
    margin-bottom: 8px;
}
._left_column_filter_form select{
    width: 180px;
}
._left_column_filter_form .dates input{
    width: 74px;
}

/* paginator widget */
._paginator {
    display: block;
    margin: 20px 0;
    padding: 0;
    overflow: hidden;
}
._paginator li{
    list-style: none;
    display: inline;
}
._paginator a{
    background-color: #dfeffc;
    border: 1px solid #c5dbec;
    color: #2e6e9e;
    font-weight: bold;
    border-radius: 3px;
    display: block;
    float: left;
    line-height: 20px;
    margin: 1px 2px;
    padding: 0 4px 3px;
    text-decoration: none;
    text-align: center;
    width: 1em;
}
._paginator a:hover{
    background-color: #cfdfec;
}
._paginator a.active{
    background-color: #2e6e9e;
    color: white;
}
._paginator .spacer{
    float: left;
}

/* apply '_small_chzn' class to a parent of a chosen.js widget to make the widget smaller */
._small_chzn .chzn-container {
    font-size: 10px;
}
._small_chzn .chzn-container .chzn-choices {
    line-height: 12px;
}
._small_chzn .chzn-container .chzn-results li {
    padding-left: 3px;
}


/* a tooltip icon */
._tip_icon {
    background-color: #000066;
    color: transparent;
    border-radius: 50%;
    display: inline-block;
    height: 16px;
    width: 16px;
    position: relative;
    margin: 3px;
}
._tip_icon:after {
    color: white;
    content: "?";
    font: bold 12px/14px Helvetica,Arial,sans-serif;
    left: 0;
    position: absolute;
    text-align: center;
    top: 2px;
    width: 100%;
}

/* Override jquery pagination styles */
body .pagination .current {
    background: none repeat scroll 0 0 #D0E5F5;
    color: #2E6E9E;
    font-weight: bold;
    /*  border: 1px solid #C5DBEC;*/
    border: 1px solid #AAAAAA;
}

body .pagination span.prev,
body .pagination span.next {
    opacity: .37;
}

body .pagination a,
body .pagination .current.prev,
body .pagination .current.next {
    color: #2E6E9E;
    border: 1px solid #C5DBEC;
    font-weight: bold;
    background-color: #DFEFFC;
}

body .pagination a:hover {
    background-color: #D0E5F5;
    border: 1px solid #79B7E7;
    color: #2E6E9E;
}

body .pagination .active a {
    background-color: #c5e0f0;
    border: 1px solid #79B7E7;
    color: #2E6E9E;
}

div#ajax-loading {
    position: fixed;
    z-index: 9999;
    width:100%;
    height:100%;
    background-color: rgba(255, 255, 255, 0.50);
    display: none;
}

div#search-loader {
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.50);
    display: none;
    text-align: center;
}

div#search-loader img {
    position: absolute;
    top: 4px;
    width: 22px;
    height: 22px;
}

div#ajax-loading div#ajax-loading-horizontal {
    height: 1px;
    overflow: visible;
    position: absolute;
    top: 50%;
    text-align: center;
    width: 100%;
}

div#ajax-loading div#ajax-loading-horizontal img {
    position: absolute;
    margin-left: -30px;
    top: -25px;
    left: 50%;
}

div#notifications {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 105;
    text-align: center;
    font-weight: bold;
    font-size: 100%;
    color: white;
    padding: 10px 0px 10px 0px;
    background-color: #E17009;
    display: none;
}
div#notifications span {
    text-align: center;
    width: 95%;
    float: left;
}

div#notifications .close-notify {
    white-space: nowrap;
    float: right;
    margin-right: 10px;
    color: #fff;
    text-decoration: none;
    border: 2px #fff solid;
    padding-left: 3px;
    padding-right: 3px
}
@media print {
    div#notifications {
        display: none !important;
    }
}

body.login-forms #main {
    background-color: #FFF;
    padding: 15px 38px;
    display: block;
    height: 100%;
    max-height: 100%;
    /* overflow: auto; removed for CC-4290 */
    position: relative;
}
@media print {
    /* otherwise this in combination with height _settings breaks page-break css on Chrome */
    #main{
        overflow: inherit;
    }
}

#logo{
    display:block;
    width: 100px;
}
#logo {
    height: 100px;
    outline:0;
}

#logo img{
    max-height: 100px;
    padding-bottom: 15px;
}

body.login-forms div#title {
    border-top-left-radius: 5px;
}
body.login-forms div.block {
    padding: 10px;
}
body.login-forms h3 {
    color: #2E6E9E;
}

/* CC-34602
WellSky Rebranding Phase One
Base class for ClearCare Online         login-forms
Base class for WellSky Personal Care    login-forms-rebranded

Controlled by env var WELLSKY_REBRAND_PHASE_ONE
*/

body.login-forms, body.login-forms-rebranded {
    display: none;
}

body.login-forms-rebranded {
    background-color: #d6d2c4;
    background-repeat: no-repeat;
    background-size: 1000px;
    font-family: Roboto, sans-serif;
    font-weight: 100;
}

body.login-forms-rebranded #main {
    background-color: none;
}

body.login-forms-rebranded #main #content .block h3 {
    background: #FFFFFF;
    height: 40px;
    width: 380px;
    padding: 10px;
    margin-left: 5px;
    text-align: center;
    font-family: Roboto, sans-serif;
    font-weight: 50;
    border-radius: 5px;
    border-color: #878787;
}

body.login-forms-rebranded #main #content .block .grid_10 {
    width: 400px;
    border: 1px #878787;
    background-color: #FFFFFF;
}

body.login-forms-rebranded .container_24 #main #content .block {
    margin: auto;
    width: 400px;
    padding: 10px;
    margin-top: 50px;
    border: none;
}

body.login-forms-rebranded .container_24 #main #content .block .grid_10 {
    padding: 0;
    padding-bottom: 50px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #878787;
    background-color: #FFFFFF;
}

body.login-forms-rebranded .login-wellsky-logo {
    display: block;
}

body.login-forms-rebranded .login-wellsky-logo img {
    height: 50px;
    margin-top: 40px;
}

body.login-forms-rebranded .login-wellsky-logo span {
    text-align: center;
    font-size: 32px;
}

body.login-forms-rebranded #main #content .block #id_form #empty_field_sso {
    width: 400px;
    margin-bottom: 0px;
}

body.login-forms-rebranded #main #content .block #id_form #div_username,
body.login-forms-rebranded #main #content .block #id_form #div_password {
    color: black;
    text-align: center;
}

body.login-forms-rebranded #main #content .block #id_form #div_username label,
body.login-forms-rebranded #main #content .block #id_form #div_password label {
    text-align: left;
    margin-right: 280px;
    font-size: 14px;
    color: #878787;
    background: #FFFFFF;
    position: relative;
    bottom: -8px;
    padding-left: 5px;
    padding-right: 5px;
}

body.login-forms-rebranded #main #content .block #id_form #div_username input,
body.login-forms-rebranded #main #content .block #id_form #div_password input {
    width: 355px;
    text-align: left;
    border: 1px solid #878787;
    border-radius: 5px;
    border-width: 2px;
    padding: 10px;
}

body.login-forms-rebranded #main #content .block #id_form #div_username input:focus ,
body.login-forms-rebranded #main #content .block #id_form #div_password input:focus {
    border-color: #28939D;
}

body.login-forms-rebranded #content .form_login .login-buttons {
    margin-top: 20px;
}

body.login-forms-rebranded #content .form_login .login-buttons input {
    background-color: #28939D;
    color: #FFFFFF;
    border: none;
    padding: 0px;
    margin: 0px;
    width: 380px;
    height: 45px;
    border-radius: 5px;
    font-family: Roboto, sans-serif;
}

body.login-forms-rebranded #main #content .block #login-forgot-password {
    text-align: right;
    margin-right: 15px;
}

body.login-forms-rebranded #main #content .block #login-forgot-password a {
    color: #823C14;
    font-size: 14px;
    font-weight: 100;
}

body.login-forms-rebranded #main-footer-demo-link {
    margin-top: 40px;
    margin-bottom: -30px;
    font-size: 12px;
    color: #005D6F;
}

body.login-forms-rebranded #main-footer-demo-link a {
    color: #005D6F;
}

body.login-forms-rebranded #main #title,
body.login-forms-rebranded #main .float_right_top,
body.login-forms-rebranded #main #powered-by,
body.login-forms-rebranded #main #logo,
body.login-forms-rebranded #footer,
body.login-forms #main #content .block #login-forgot-password {
    display: none;
}

/*
End of CC-34602
*/

#logout{
    float:right;
}

#powered-by {
    float: right;
    position: relative;
    z-index: 21;
    margin-bottom: -12px;
}

#powered-by.rebranding-img {
    width: 14%;
    bottom: 5px;
}
#powered-by.rebranding-img img {
    width: 100%;
}

#title{
    padding: 10px;
    position: relative;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#title_page h1{
    margin: 0 0 5px 0;
    color: #2E6E9E;
}

#title_page h3{
    margin: 13px 0px 0px;
}

#title_page .deactivated_user {
    color: darkred;
    font-weight: bold;
}

#breadcrumbs {
    padding-left: 2px;
    color: #2E6E9E;
}

#breadcrumbs .crumb{
    color: #2E6E9E;
    font-weight: normal;
    font-size: 12px;
}
#breadcrumbs span.crumb{
    color: #E17009;
}


#path{
    color: #6f6f6f;
    padding-top: 5px;
}

#menu{
    padding: 10px 10px 10px 0;
}

#menu a .current{
    color: #333;
}

div#super_menu {
    padding: 0;
    position: relative;
    z-index: 20;
}

div#super_menu ul.ui-tabs-nav {
    padding: 0;
    top: 1px;
}

div#super_menu ul.ui-tabs-nav li.ui-tabs-selected {
}

div#super_menu ul.ui-tabs-nav li.ui-tabs-selected a{
    cursor: pointer;
}

div#super_menu ul.ui-tabs-nav li {
    position: relative;
}
/*Note: the .hover hack is to fix menu for touch devices.  See bottom of common.js*/
div#super_menu ul.ui-tabs-nav li.hover span.helper,
div#super_menu ul.ui-tabs-nav li:hover span.helper{
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: #EDEDED;
}
div#super_menu ul.ui-tabs-nav li.ui-tabs-selected ul{
    border-top: none !important;
    border-color: #aaa !important;
}
div#super_menu ul.ui-tabs-nav li.hover ul ,
div#super_menu ul.ui-tabs-nav li:hover ul {
    left: -1px;
    border-color: #D3D3D3;
}

div#super_menu ul.ui-tabs-nav li ul {
    z-index: 1000;
    position: absolute;
    padding: 5px 5px;
    top: 33px;
    list-style: none;
    left: -9999px;
    min-width: 110px;
    background-color: #EDEDED;
    border-left: 1px solid #AAAAAA;
    border-right: 1px solid #AAAAAA;
    border-bottom: 1px solid #AAAAAA;
    -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px; -khtml-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; -khtml-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px;
}

div#super_menu ul.ui-tabs-nav li.ui-tabs-selected ul {
    background-color: #FFF;
}

div#super_menu ul.ui-tabs-nav li ul li {
    clear: left;
    width: 100%;
}
div#super_menu ul.ui-tabs-nav li ul li.hover,
div#super_menu ul.ui-tabs-nav li ul li:hover{
    background-color: #FFF;
}
div#super_menu ul.ui-tabs-nav li.ui-tabs-selected ul li.hover,
div#super_menu ul.ui-tabs-nav li.ui-tabs-selected ul li:hover{
    background-color: #E6E6E6;
}

div#super_menu ul.ui-tabs-nav li ul li a {
    padding: 3px 10px;
    cursor: pointer;
    color: #555;
    width: 100%;
    display: flex;
    align-items: center;

}

div#super_menu div.submenu_sublevel_helper{
    height:35px;
    width:100%;
    border-left:1px #EDEDED solid;
    position:absolute;
    left:-1px; top:0px;
}

div#super_menu .ui-state-active div.submenu_sublevel_helper{
    border-left-color:white;
}

div#super_menu ul.ui-tabs-nav li.hover ul li ul,
div#super_menu ul.ui-tabs-nav li:hover ul li ul{
    display:none;
}

div#super_menu ul.ui-tabs-nav li ul li.hover ul,
div#super_menu ul.ui-tabs-nav li ul li:hover ul{
   display:block;
   position:absolute;
   top:-6px;
   left:100%;
}

div#super_menu ul.ui-tabs-nav li ul li.first a {
    color: #E17009;
    font-weight: bold;
}

#content{
    min-height: 300px;
}

#footer{
    width: 100%;
    text-align: center;
    padding: 10px 0;
    color: #AAA;
    font-size: 11px;
}
#footer a{
    color: #AAA;
}


body.dashboard #menu {
    padding-top: 0;
}

.dashboard ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard .block{
    min-height: 200px;
    padding: 5px 0 10px 8px;
    margin-bottom: 10px;
}

.dashboard .left-column {
    width: 190px;
    float: left;
}

.dashboard .right-column {
    margin-left: 10px;
    width: 730px;
    float: left;
}

.dashboard h4{
    margin: 0 0 5px 0;
    color: #E17009;
    font-size: 16px;
    margin-bottom: 10px;
}

.dashboard .block ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.dashboard .block a {
    font-size: 12px;
}

.dashboard div.block#open_shifts {
    min-height: 20px;
}
.dashboard #open_shifts li#see-all {
    margin-top: 10px;
}

.dashboard #open_shifts li#see-all a{
    color: #E17009;
}

.dashboard #recent {
    min-height: 160px;
    margin-bottom: 10px;
}
.dashboard #recent ul li{
    margin: 0;
    padding: 0;
    overflow: hidden;
    margin-right:10px;
}
.dashboard #recent .activity {
    display: block;
    line-height: 16px;
    margin-top: 5px;
}
.dashboard #recent .activity div{
    position: relative;
    overflow: hidden;
}
.dashboard #recent .activity i{
    float: left;
    width: 20px;
    background: url("../img/sprites/tall_skinny_sprite.png") no-repeat 0 -2px;
}
.dashboard #recent .caregiver .activity {
    color: #63BB44;
}
.dashboard #recent .client  .activity{
    color: #E17009;
}
.dashboard #recent .client  .activity i{
    background-position: 1px -27px;
}
.dashboard #recent .referral-source  .activity{
    color: #2E6E9E;
}
.dashboard #recent .referral-source  .activity i{
    background-position: 1px -49px;
}

.dashboard #recent a{
    position: relative;
    top: -2px;
}
.dashboard #recent img{
}
.dashboard #key_documents .spinner {
    position: absolute;
    top: -10;
    right: 0;
    display: block;
    width: 20px;
    height: 20px;
}
.dashboard #key_documents {
    min-height: 150px;
    position: relative;
}
.dashboard #key_documents ul li {
    padding: 1px 0 3px 3px;
}

.dashboard #key_documents a.download,
.dashboard #key_documents a.delete,
.dashboard #key_documents a.secure {
    float: right;
}

.dashboard #key_documents img{
    position: relative;
    top: 2px;
    margin-right: 5px;

}
.dashboard #key_documents a#add-new-document {
    color: #E17009;
}

.dashboard #alerts-filter-background {
    float: right;
    margin: 0 0 20px 20px;
    visibility: hidden;
    width: 190px;
    height: 340px;
}

.dashboard #alerts-filter {
    position: absolute;
    right: 30px;
    top: 10px;
    width: 190px;
    margin: 0 0 20px 20px;
    z-index: 100;
}

.dashboard #tasks #tasks-scrollable{
    max-height: 210px;
    overflow: auto;
}

.dashboard .notification {
    -webkit-font-smoothing: subpixel-antialiased;
    background-clip: padding-box;
    background: rgb(220, 13, 23) linear-gradient(to bottom, rgb(250, 60, 69), rgb(220, 13, 23));
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.701961) 0 1px 1px 0;
    color: rgb(255, 255, 255);
    cursor: pointer;
    direction: ltr;
    display: none;
    font-family: 'helvetica neue', helvetica, arial, sans-serif;
    font-size: 10px;
    height: 13px;
    line-height: normal;
    list-style-type: none;
    min-height: 13px;
    padding: 2px 3px 0;
    position: absolute;
    text-align: left;
    text-shadow: rgba(0, 0, 0, 0.4) 0 -1px 0;
    width: 5px;
    zoom: 1;
    top: -7px;
}

.dashboard #tasks span.due-date-notable{
    font-weight: bold;
}

.dashboard #tasks span.overdue{
    color: red;
}

#care-alerts-table p{
    margin-block-start: 4px !important;
    margin-block-end: 4px !important;
}

#care-alerts-table
{
    margin-left: 7px
}

.controls  .filter_form{
    margin: 10px 0px 5px 0px;
}

span.the-rest {
    display: none;
}

.dashboard #tasks a.edit-activity:hover,
.dashboard #tasks a.edit-activity,
a.edit-qoc-activity:hover,
a.edit-qoc-activity,
a.edit-safety-task:hover,
a.edit-safety-task
{
    color: #000;
    text-decoration: none;
}

.dashboard #alerts {
    position: relative;
    min-height: 340px;
}

label[for=id_assignees] {
    margin-bottom: 5px;
}

.dashboard .tasks-header {
    color: #2E6E9E;
    cursor: pointer;
    font-weight: 100;
}

.dashboard #tasks.block {
    min-height: 100px;
}

.dashboard #tasks div.dashboard-pagination, .dashboard #alerts div.dashboard-pagination {
    margin-top: 10px;
}
.dashboard #tasks div.dashboard-pagination a, .dashboard #alerts div.dashboard-pagination a {
    padding: 2px 6px;
    margin-right: -0.1em !important;
}

.dashboard #tasks p,
.dashboard #alerts .dashboard-alert,
.dashboard #alerts p.empty {
    position: relative;
    margin: 10px 10px 0 0px;
    font-size: 12px;
    /*display: none;*/
}
div #tasks-content table tbody td {
    padding-top:3px;
    padding-bottom:3px;
  }


.new-table-view .table-headder-tasks{
    font-weight: bolder;
}
.tasks-scrollable .new-table-view{
    margin-left: 10px;
}

.new-table-view .wordwrap-table{
    word-wrap: break-word;
}


.table-location-sub-header{
    font-size: 18px !important;
    font-weight: bold;
}

span.mp3_track{width:410px;height:27px;display:block;float:left; background: url("../js/packages/audiojs/player_screenshot.png") no-repeat scroll 0 0 transparent;}
span.mp3_track.playing{display:none;}
/* audio related end*/

.dashboard p.empty {
    color: #CCC;
}

.dashboard #tasks select {
    margin-left: 15px;
    margin-top: 3px;
    width: 128px;
}

.dashboard #tasks select.task-filter {
    margin-right: 10px;
    width: 162px;
}

.dashboard ul#dashboard-task-nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.dashboard ul#dashboard-task-nav li {
    cursor: pointer;
    font-weight: 100;
    display: inline;
    font-size: 16px;
    margin-left: 5px;
    position: relative;
}

.dashboard ul#dashboard-task-nav li a {
    font-size: 16px;
    cursor: pointer;
    margin-left: 5px;
    font-weight: 100;
    color: #2E6E9E;
    text-decoration: none;
}

.dashboard ul#dashboard-task-nav li a:hover {
    text-decoration: underline;
}

.dashboard ul#dashboard-task-nav li a.active {
    color: #E17009;
    font-size: 16px;
    display: inline;
    font-weight: 100;
    text-decoration: none;
}

.dashboard li#qoc-task-item,
.dashboard li#safety-task-item,
.dashboard div#qoc-modal,
.dashboard div#qoc-tasks {
    display: none;
}

.dashboard div#tasks-panel {
    float: right;
}

.dashboard #tasks p.task {
    position: relative;
    margin-left: 20px;
}
.dashboard #tasks p.task input{
    position: absolute;
    left: -22px;
    top: -2px;
}
.dashboard #tasks p.task span.profile {
    color: #2E6E9E;
}

.dashboard #tasks a.add-task {
    color: #E17009;
    font-size: 12px;
}

.dashboard #alerts p span.dt{
}

.dashboard #alerts p span.desc{
    font-weight: bold;
}

.dashboard #alerts p span.comment,
.dashboard #alerts p object{
    display: block;
}

.dashboard #alerts p span.comment{
    font-weight: bold;
    margin-left: 20px;
}
.dashboard #alerts p.alert_typ_1 span.dt,
.dashboard #alerts p.alert_typ_9 span.dt {
    color: red;
    font-weight: bold;
}

.dashboard div#alerts-filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dashboard div#alerts-filter ul li{
    border-bottom: 1px solid #e5e5e5;
    padding: 3px 0;
    position: relative;
}
.dashboard div#alerts-filter ul li a{
    font-size: 12px;
    display: block;
    position: absolute;
    left: 20px;
    top: 3px;
}
.dashboard div#alerts-filter ul li img{
    height: 15px;
    visibility: hidden;
}
.dashboard div#alerts-filter ul li.selected img{
    visibility: visible;
}

#unsupported_browser_dialog{
    display: none;
    font-size: 12px;
}

#vnotes {
    position: relative;
}

#vnotes #edit-carelog-task {
    position: absolute;
    z-index: 2;
    left: 35px;
    top: 128px;
    background-color: #FFF;
    border: 1px solid #CCC;
    width: auto;
}

#vnotes #edit-carelog-task td,
#vnotes #edit-carelog-task th{
    border: none;
    padding: 0 4px;
}

#vnotes .day_schedule .tasks{
    overflow-y: scroll;
    overflow-x: hidden;
}

#vnotes .task_title{
    position: relative;
}

#vnotes .task_title .show_on_hover{
    position: absolute;
    left: -80px;
    top: 0px;
    width: 30px;
    display: none;
    color: #900;
    font-weight: bold;
}

#vnotes .task_record:hover .task_title .show_on_hover{
    display: block;
}

div.day_schedule .link-out {
    float: right;
    /*position: absolute;*/
    /*right: 20px;*/
    font-size: 12px;
}


div.day_schedule div.tasks {
    padding: 0 15px;
    min-height: 250px;
    max-height: 300px;
    overflow: scroll;
}

/*new*/
/*--------------------------------*/
div.day_schedule .task_record:hover{
    background-color: #eee;

}

/* styles in the popup when you change task status */
.change_task_status .choices {
    list-style: none;
    line-height: 28px;
    margin-top: 0;
}
.change_task_status .choice img {
    height: 20px;
    position: relative;
    top: 5px;
}
.change_task_status .choice.selected{
    background-color: #e8e8e8;
}
.change_task_status .choice{
    cursor: pointer;
}
.change_task_status .choice:hover{
    background-color: #ddd;
}

.change_task_status .note {
    margin-top: 3px;
    display: block;
    margin-left: 41px;
    resize: none;
    width: 300px;
    height: 66px;
    font-size: 13px;
}

div#tasks_mini_calendar .ui-accordion .ui-accordion-header a {
    padding-bottom: 0.2em;
}

div.day_schedule p.complete-datetime {
    padding: 0 0 0 20px;
    margin: 0;
    font-weight: bold;
    font-size: 0.8em;
    color: #6F6F6F;
}

div.day_schedule table{
    width: 505px;
    margin: 10px 0px 0px 20px;
}

div.day_schedule table th.time{
    width: 70px;
}

body div.day_schedule table td,
body div.day_schedule table th {
    padding: 0;
    margin: 0;
    font-size: .8em;
    border-bottom: 1px dashed #E17009;
    height: 22px;
}
body div.day_schedule table .task {
    width: 370px;
}
body div.day_schedule table .icon {
    text-align: center;
    min-height:18px;
}

body div.day_schedule table td.icon img {
    height: 18px;
}

div.day_schedule table th{
    color: #6f6f6f;
    text-align: left;
}

div.day_schedule div.mileage {
    font-weight: bold;
    font-size: 0.8em;
    color: #6F6F6F;
    margin: 0 0 0 20px;
}
div.day_schedule div.mileage a{
    color: #6F6F6F;
}

div#daily-logs p.day-buttons a {
    width: 268px;
    margin-bottom: 10px;
}

.tasklogForm th {
    color: #6f6f6f;
    text-align: left;
}

.tasklogForm table {
    font-size: .8em;
    margin: 10px;
}

.tasklogForm textarea {
    height: 40px;
    width: 304px;
}
.tasklogForm .show-comment {
    text-align: right;
    font-size: .7em;
}

.tasklogForm .delete-comment{
    display: none;
    position: absolute;
    left: -5px;
    padding: 0 10px;
    color: #900;
    font-weight: bold;
}
.tasklogForm tr:hover .delete-comment{
    display: inline;
}

div.day-items {
    font-size: 11px;
}
div.day-items h4 {
    border-bottom: 1px black solid;
    margin-bottom: 5px;

}
div.day-items div.one,
div.day-items div.two,
div.day-items div.three {
    float: left;
    display: block;
}
div.day-items div.one {
    width: 80px;
}
div.day-items div.two {
    width: 150px;
}
div.day-items div.three {
    width: 270px;
}
div.day-items div.full {
    clear: both;
    width: 100%;
}
div.day-items hr {
    border: 0;
    width: 100%;
    background-color: #EEE;
    height: 1px;
}
/* common */

.float_right{
    float: right;
}

.float_right_top{
    color: #6F6F6F;
    float: right;
}

.float_right_top a{
    font-size: 12px;
}

.float_left{
    float: left;
}

.bold{
    font-weight: bold;
    color: #6f6f6f;
}

.align_right{
    text-align: right;
}

img.profile_image {
    width: 100px;
    height: 100px;
}
a#upload-profile-image {
    display: block;
    width: 100px;
    height: 1px;
    position: relative;
    top: -100px;
}
a#upload-profile-image div.qq-upload-button{
    background: none;
    width: 100px;
    height: 100px;
}
.qq-upload-list, .qq-upload-drop-area{
    display: none;
}

/* Agency Patient Details */

hr {
    border: 1px 0 0 0 solid #EEE;
}

#personal_info {
    padding: 1em;
    min-height: 100px;
    font-size: 14px;
    margin-bottom: 20px;
}

#personal_info .profile-image {
    float: left;
    width: 100px;
    margin: 0 1em 0 0;
}
#personal_info .headers,
#personal_info .middle {
    float: left;
    width: 475px;
}

#personal_info .left-column{
    max-width: 50%;
    min-width: 235px;
    overflow: hidden;
    float: left;
}

#personal_info .right-column {
    max-width: 50%;
    overflow: hidden;
    position: relative;
}

#personal_info .bottom-column {
    clear: both;
}

#personal_info .extra{
    float: left;
    width: 475px;
}

#personal_info div#status {
    float: right;
    width: 310px;
    font-size: 13px;
}

#personal_info div#status div.ui-widget-header{
    padding: 5px;
    color: #555;
    border-bottom: none;
}

#personal_info div#status ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#personal_info div#status ul li.current {
    color: #E17009;
    font-weight: bold;
}
#personal_info div#status span.date {
    font-size: 11px;
    color: #aaa;
    font-weight: normal;
}

#personal_info h2 {
    margin: 0 0 .1em 0;
    font-size: 1.6em;
    color: #E17009;
}

#personal_info h3 {
    margin: 0 0 .1em 0;
    font-size: 14px;
    color: #2E6E9E;
}
#personal_info p {
    /*    color: #2E6E9E;*/
    margin: 3px;
}

#personal_info .caregiver_rating{
    display: none;
}
#personal_info .caregiver_rating._stars{
    display: inline-block;
}
#personal_info .emergency_button {
    position: relative;
    top: 7px;
    left: 3px;
    width: 30px;
}
#personal_info .emergency_button:hover {
    opacity: 0.6;
}

a#convert-to-client, a#convert-to-caregiver {
    float:right;
    margin: 11px 40px 0 0;
    min-width: 164px;
    min-height: 20px;
}
div#daily-logs, div#visit-notes{
    min-height: 310px;
}
div#daily-logs #controls, div#visit-notes #controls {
    width: 270px;
    float: right;
}
.task-table-audio-player .audiojs .scrubber {
    width: 190px;
}
.task-table-audio-player .audiojs {
    width: 370px;
}
div#daily-logs div#log-datepicker, div#visit-notes div#note-datepicker{
    margin-top: 20px;
}
div#daily-logs div.ui-datepicker, div#visit-notes div.ui-datepicker {
    display: block;
}
div#daily-logs div#logs h3.the-date, div#visit-notes div#vnotes h3.the-date {
    padding: 0.5em 0.5em 0.5em 0.7em;
    font-size: 1em;
    margin: 0;
    line-height: 1.4em;
}
div#visit-notes div#vnotes .ui-button{
    margin:0.5em 0.5em 0.5em 0;
}
div#daily-logs div#logs, div#visit-notes div#vnotes {
    width: 570px;
}
.visit-note-form #id_bill_rate_instance, .visit-note-form #id_pay_rate_instance{
    float:left;
    width:150px;
}
.visit-note-form #id_bill_rate, .visit-note-form #id_pay_rate{
    float:left;
    width:40px;
    margin-left:10px;
    visibility:hidden;
}
.navigation_menu {
    margin: 0px;
    font-size: 14px;
    color:#6666FE;
    padding: 0px;
}

.navigation_menu li {
    display: inline;
    padding: 2px 5px 0 0;
    margin: 5px 0;
}

.navigation_menu li:last-child{
    padding: 2px 0px 0 0; /*iOS Safari fix, or put 14px as padding in the previous */
}

#client_date_time { margin: -15px 0 10px 0;}
#open_shifts_date_time {padding-left:25px ; padding-bottom:5px ; }
.openshift_title .title {
    float: none !important;
}


/* Message */
.message{
    background: #fff url("../img/back_form.png") repeat-x bottom;
    padding-bottom: 10px;
}

.message h2{
    color:#54133E;
    font-size:17px;
    margin:0;
    padding-left:10px;
    padding-right:10px;
    padding-top:5px;
}

.message p{
    padding: 10px;
    margin: 0;
}

ul.messages {
    list-style-type: none;
    padding: 0;
    margin: 5px 0;
}
ul.messages li {
    margin: 0;
    padding: 0;
}
ul.messages li.success {
    color: green;
}

ul.messages li.error {
    color: red;
}

.error_container, .error, .errorlist li, .warning {
    margin: 0;
    padding: 0;
    color: red;
    /*  padding: 0 10px;*/
}

.errorlist{
    margin: 0;
    padding: 3px 0 0;
    list-style-type: none;
}


#id_self_payor{
    margin: 0;
}


/* Paginator */

.pagination{
    margin: 20px 0;
    clear: both;
    display: block;
    margin: 20px 0;
    overflow: hidden;
}


.pagination a:hover, .pagination .current{
    background-color: #555;
    border-color:#c6c8ca;
    color:#FFFFFF;
    text-decoration:none;
}

.pagination a, .pagination span{
    border:1px solid #DDDDDD;
    display:block;
    float:left;
    line-height:20px;
    margin:1px 2px;
    padding:0 4px;
    color: #6F6F6F;
    text-decoration:none;
    padding:0 4px 3px;
    -moz-border-radius:2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}



#id_time_start_container select, #id_time_end_container select
{
    width:50px;
}

#form_search{
    float: right;
    position: relative;
    top: -70px;
}

#form_search input{
    background: url(../img/search.png);
    border: medium none;
    line-height: 15px;
    padding: 8px 10px 8px 30px;
    width: 188px;
}



/*REPORT Tab*/
div.envelope.not-first{
    page-break-before: always;
}
div#the_report .profile.not-first{
    page-break-before: always;
}
div#the_report .calendar{
    border-width:3px;
    border-color:red;
    page-break-after: always;
}

div#the_report .calendar.last{
    page-break-after: auto;
}
div#the_report .assessment{
    page-break-before: always;
}
div#the_report .assessment.first{
    page-break-before: auto;
}

/* The form for editing or selecting an adjustment batch */
.m.adj_batch {
    width: 725px;
    margin: 0 auto;
}
.m.adj_batch .helptext {
    font-size: 12px;
    font-style: italic;
    color: #999;
    padding-left: 6px;
}
.m.adj_batch h3 {
    margin: 33px 0 2px 0;
}
.m.adj_batch label {
    font-weight: bold;
}
.m.adj_batch [name="name"] {
    width: 200px;
    margin-left: 6px;
}
.m.adj_batch ._button.continue {
    margin-left: 54px;
}
.m.adj_batch .batches td {
    font-weight: bold;
    padding-left: 16px;
    padding-bottom: 6px;
}

/* agency_event_popup */
.m.agency_event_popup{
    min-height: 116px;
    padding: 3px 11px;
}

.m.agency_event_popup h4{
    font-size: 12px;
    line-height: 15px;
}

/* the actions at the bottom of the batch adjust page */
.m.batch_adjust_actions ._paginator{
    float: right;
    margin: 0;
}
.m.batch_adjust_actions ._paginator a{
    line-height: 28px;
    width: 28px;
}
.m.batch_adjust_actions .save {
    float: right;
    background-color: #3e8c8a;
    border: 1px solid #3e8c8a;
    border-radius: 3px;
    color: white;
    display: block;
    font-weight: bold;
    line-height: 20px;
    padding: 6px 12px;
    margin: 0 00px 0 6px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
.m.batch_adjust_actions .save:hover {
    background-color: #4e9c9a;
}


/* batch adjustment page filter form */
.m.batch_adj_filters {
    width: 237px;
    float: left;
    font-size: 12px;
}
.m.batch_adj_filters h3 {
    font-size: 13px;
    margin-bottom: 0;
}
.m.batch_adj_filters h3.first {
    margin-top: 0;
}
.m.batch_adj_filters ._button {
    margin-top: 12px;
}

/* the list on the batch adjustment page */
.m.batch_adj_list {
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}
.m.batch_adj_list tr {
    border-bottom: 1px solid #ccc;
}
.m.batch_adj_list ._paginator {
    float: right;
    line-height: 18px;
}
.m.batch_adj_list .money [type="text"] {
    width: 70px;
    text-align: right;
}
.m.batch_adj_list .n_of_m {
    font-weight: bold;
    padding: 0 0 6px;
    text-align: right;
}

/* page head on batch adj page */
.m.batch_adj_page_head {
    margin-top: 12px;
    height: 28px;
}
.m.batch_adj_page_head h2{
    float: left;
}
.m.batch_adj_page_head .zero_out_all{
    float: right;
    position: relative;
    top: 3px;
}


/* authorization popup */
.m.client_authorization {
    padding: 5px 0;
    width: 800px;
}
.m.client_authorization .main .opt {  /* these deal with conditional fields, based on invoice type */
    display: none;
}

.m.client_authorization .splitmainform .opt {
    display: none;
}

.m.client_authorization .main.ub04 .opt.ub04,
.m.client_authorization .main.i837 .opt.i837,
.m.client_authorization .main.standard .opt.standard,
.m.client_authorization .main.cms1500 .opt.cms1500,
.m.client_authorization .main.p837 .opt.p837 {
    display: inline-block;
}

.m.client_authorization .splitmainform.ub04 .opt.ub04,
.m.client_authorization .splitmainform.i837 .opt.i837,
.m.client_authorization .splitmainform.standard .opt.standard,
.m.client_authorization .splitmainform.cms1500 .opt.cms1500,
.m.client_authorization .splitmainform.p837 .opt.p837 {
    display: inline-block;
}

.m.client_authorization h4{
    margin: 16px 0 8px 14px;
    padding: 0;
    clear:both;
    width: 100%;
}
.m.client_authorization .help {
    display: block;
    margin-left: 150px;
}
.m.client_authorization label {
    padding-left: 5px;
}
.m.client_authorization label.fixed {
    float: left;
    width: 140px;
    text-align: right;
    margin-right: 5px;
    padding-top: 3px;
}

.m.client_authorization select,
.m.client_authorization textarea,
.m.client_authorization input[type="text"] {
    display: inline;
    text-align: left;
    padding-left: 2px;
    width: 184px;
    border-radius: 3px;
    border: 1px solid #aaa;
}
.m.client_authorization div.date input {
    width: 75px;
}
.m.client_authorization textarea {
    height:  36px;
    resize: none;
    font-family: arial,sans-serif;
    font-size: 11px;
    padding: 1px;
    border-radius: 3px;
}
.m.client_authorization .control-group {
    display: inline-block;
    vertical-align: top;
    min-height: 38px;
    width: 380px;
}
.m.client_authorization .control-group.override-eclaim-validation-err {
    margin-left: 150px;
}
.m.client_authorization .control-group.override-eclaim-validation-err.hide {
    display: none;
}
.m.client_authorization .control-group.override-eclaim-validation-err label {
    color: #333;
}
.m.client_authorization ul.errorlist {
    list-style: none;
}
.m.client_authorization ul.errorlist li {
    max-width: 550px;
}
.m.client_authorization .supplemental_icd9,
.m.client_authorization .supplemental_icd10 {
    width: 800px;
}
.m.client_authorization .supplemental_icd9 select,
.m.client_authorization .supplemental_icd10 select {
    width: 140px;
    margin-right: 17px;
}
.m.client_authorization div.hours select {
    width: 57px;
}
.m.client_authorization .split-payers {
    clear: both;
    margin-left: 160px;
    position: relative;
    top: -8px;
}
.m.client_authorization .split-payers small{
    display: block;
}
.m.client_authorization input[name^="modifier"] {
    width: 37px;
    margin-right: 1px;
}
.m.client_authorization .control-group.mileage { /* so it doesn't bounce up and down when you show/hide the $ field */
    line-height: 30px;
    position: relative;
    top: -8px;
}
.m.client_authorization input[name="bill_mileage_rate"]{
    width: 45px;
    float: none;
}
.m.client_authorization .icd9,
.m.client_authorization .icd10 {
    clear: left;
}
.m.client_authorization input[name="icd9_code"],
.m.client_authorization input[name="icd10_code"] {
    width: 500px;
}
.m.client_authorization input[name="units"] {
    width: 60px;
    margin-right: 5px;
}
.m.client_authorization select[name="split_payer"] {
    width: 120px;
}
.m.client_authorization input[name="split_units"] {
    width: 80px;
    margin-right: 5px;
    text-align: right;
}
.m.client_authorization select[name="split_range"] {
    width: 70px;
}
.m.client_authorization select[name="split_units_type"] {
    width: 70px;
}
.m.client_authorization input[name="split_limit"] {
    width: 80px;
    text-align: right;
}
.m.client_authorization [name="referrer"]{
    width: 111px;
}
.m.client_authorization input[name="referring_provider_id"]{
    width: 60px;
}
.m.client_authorization .revenue_code {
    width: 100%;
}
.m.client_authorization select[name="revenue_code_item"] {
    width: 90px;
}
.m.client_authorization input[name="hipps_code"] {
    width: 104px;
}
.m.client_authorization input[name="revenue_code_desc"]{
    width: 160px;
}
.m.client_authorization .rc_hipps,
.m.client_authorization .rc_desc{
    width: 270px;
}
.m.client_authorization .ub_04_patient_fields div {
    display: inline-block;
}
.m.client_authorization .ub_04_patient_fields input{
    width: 10px;
}
.m.client_authorization .ub_04_patient_fields input[name="patient_status"]{
     width: 17px;
 }
.m.client_authorization .box_58_alt {
    height: 45px;
}
.m.client_authorization .treatment_codes{
    clear: left;
    height: 60px;
}
.m.client_authorization p.warning, .m.client_authorization p.eclaim_warning{
    margin: 8px 0 8px 150px;
    color: #900;
}

.m.client_authorization #id_auth_minimum_minutes {
    width: 85px;
}
.m.client_authorization .policy_group,
.m.client_authorization .insurance_plan_or_program_name,
.m.client_authorization .is_other_plan,
.m.client_authorization .parent_auth_opt,
.m.client_authorization .other_insured_name,
.m.client_authorization .other_insured_last_name,
.m.client_authorization .other_policy_number,
.m.client_authorization .billing_provider_taxonomy_code,
.m.client_authorization .caregiver_taxonomy_code,
.m.client_authorization .other_plan_name, .m.client_authorization .caregiver_patient_relation {
    width: 100%;
}

.m.client_authorization .policy_group label,
.m.client_authorization .insurance_plan_or_program_name label,
.m.client_authorization .is_other_plan label,
.m.client_authorization .parent_auth_opt label,
.m.client_authorization .other_insured_name label,
.m.client_authorization .other_insured_last_name label,
.m.client_authorization .other_policy_number label,
.m.client_authorization .billing_provider_taxonomy_code label,
.m.client_authorization .caregiver_taxonomy_code label,
.m.client_authorization .other_plan_name label, .m.client_authorization .caregiver_patient_relation label {
    width: 50%;
}

.m.client_authorization .leave_box_76_empty {
    padding: 3px 0 10px 0;
}

.m.client_authorization .policy_group {
    padding-top: 5px;
}

.m.client_authorization .policy_group ul.errorlist li,
.m.client_authorization .insurance_plan_or_program_name ul.errorlist li,
.m.client_authorization .is_other_plan ul.errorlist li,
.m.client_authorization .parent_auth_opt ul.errorlist li,
.m.client_authorization .other_insured_name ul.errorlist li,
.m.client_authorization .other_insured_last_name ul.errorlist li,
.m.client_authorization .other_policy_number ul.errorlist li,
.m.client_authorization .billing_provider_taxonomy_code ul.errorlist li,
.m.client_authorization .caregiver_taxonomy_code ul.errorlist li,
.m.client_authorization .other_plan_name ul.errorlist li {
    margin: 0 0 0 410px;
}
.m.client_authorization .caregiver_patient_relation ul.errorlist li {
    margin: 0 0 0 410px;
}
.m.client_authorization .patient_condition {
    text-align: right;
    margin-left: 76%;
    width: 100%;
    margin-top: -25px;
}

/* Starts - alignment for therap_fields */
.m.client_authorization .main.cms1500 .therap_fields,
.m.client_authorization .main.p837 .therap_fields {
    width: 100%;
}
.m.client_authorization .main.cms1500 .therap_fields label,
.m.client_authorization .main.p837 .therap_fields label {
    width: 50%;
}
.m.client_authorization .main.i837 .therap_fields {
    position: relative;
    top: -129px;
    left: 383px;
    width: 350px;
}
.m.client_authorization .main.i837 .therap_fields label {
    width: 140px;
}
.m.client_authorization .main.i837 .therap_fields input {
    width: 132px;
}

/* Ends - alignment for therap fields */

/* Re-alignment for 837i */
.m.client_authorization .main.i837 {
    margin-bottom: -90px;
    /**Linux behaves wierdly on MS fonts unless MSfonts are installed explicitly on system**/
    /**Adding Garuda to fix the error**/
    /** TODO: Load fonts explicitly **/
    font-family: Verdana,Garuda,Arial,sans-serif;
}
.m.client_authorization .main.i837 .box_59 {
    position: relative;
    z-index: 1;
    top: 55px;
}
.m.client_authorization .main.i837 .box_59.has-error {
    margin-top: -30px;
}
.m.client_authorization .main.i837 .notes {
    position: relative;
}
.m.client_authorization .main.i837 .three_across.revenue_code label.revenue_code_item_label {
    width: 88px;
}
.m.client_authorization .main.i837 .three_across.revenue_code select[name="revenue_code"] {
    width: 52px;
}
.m.client_authorization .main.i837 .three_across.revenue_code input[name="revenue_code_desc"] {
    width: 100px;
}
.m.client_authorization .main.i837 .three_across.revenue_code label.procedure_code_label {
    width: 101px;
}
.m.client_authorization .main.i837 .three_across.revenue_code input[name="hipps_code"] {
    width: 60px;
}
.m.client_authorization .main.i837 .three_across {
    width: 517px;
}
.m.client_authorization .main.i837 .three_across label{
    padding-left: 0px;
}
.m.client_authorization .main.i837 .three_across.revenue_code .revenue_code_desc ul.errorlist li {
    width: 144px;
    margin: 0;
}
.m.client_authorization .main.i837 .three_across.revenue_code .hipps_code ul.errorlist li {
    width: 172px;
    margin: 0;
}
.m.client_authorization .main.i837 .modifiers {
    position: relative;
    bottom: 150px;
    left: 513px;
}
.m.client_authorization .main.i837 .modifiers ul.errorlist li{
    margin: 0 0 0 10px;
}

.m.client_authorization .main.i837 .modifiers label {
    width: 62px;
}
.m.client_authorization .main.i837 .modifiers input {
    width: 30px;
    margin-right: 1px;
}
.m.client_authorization .main.i837 div.attending_provider,
.m.client_authorization .main.i837 div.referrer,
.m.client_authorization .main.i837 div.rendering_provider {
    width: 52%;
}
.m.client_authorization .main.i837 .treatment_codes {
    position: relative;
    bottom: 300px;
}
.m.client_authorization .main.i837 .claim_frequency_code {
    position: relative;
    top: -336px;
    left: -392px;
}

.m.client_authorization .main.i837 .billing_provider_taxonomy_code {
    width: 380px;
    position: relative;
    top: -142px;
}
.m.client_authorization .main.i837 .billing_provider_taxonomy_code label {
    width: 140px;
}
.m.client_authorization .main.i837 .billing_provider_taxonomy_code select {
    margin-top: 20px;
}
.m.client_authorization .main.i837 div.attending_provider {
    position: relative;
    top: 115px;
}
.m.client_authorization .main.i837 div.referrer {
    position: relative;
    top: 115px;
}
.m.client_authorization .main.i837 div.rendering_provider {
    position: relative;
    top: 115px;
}
.m.client_authorization .main.i837 div.ub_04_patient_fields {
    position: relative;
    left: 33px;
    bottom: 120px;
}
.m.client_authorization .main.i837 div.ub_04_patient_fields label {
    width: 140px;
    text-align: right;
}
.m.client_authorization .main.i837 div.ub_04_patient_fields input {
    width: 30px;
    text-align: left;
}
.m.client_authorization .main.i837 div.ub_04_patient_fields div {
    width: 380px;
    padding-bottom: 2px;
}
.m.client_authorization .main.i837 [name="attending_provider"],
.m.client_authorization .main.i837 [name="referrer"],
.m.client_authorization .main.i837 [name="rendering_provider"] {
    width: 111px;
}
.m.client_authorization .main.i837 input[name="attending_provider_profile_id"],
.m.client_authorization .main.i837 input[name="referring_provider_id"],
.m.client_authorization .main.i837 input[name="rendering_provider_profile_id"] {
    width: 60px;
}

.m.client_authorization .main.i837 .admission_timestamp {
    position: relative;
    left: 417px;
    top: -105px;
}
.m.client_authorization .main.i837 .admission_timestamp input {
    width: 132px;
}

.m.client_authorization .main.i837 .suppress_admit_dx {
    position: relative;
    top: 40px;
    margin-left: 100px;
}
.m.client_authorization .main.i837 .suppress_admit_dx input {
    width : 30px;
}

.m.client_authorization .main.i837 .admission_date,
.m.client_authorization .main.i837 .admission_time,
.m.client_authorization .main.i837 .discharge_time {
    padding: 2px 0px;
}

.m.client_authorization .main.i837 h4.subscriber-info-title {
    position: relative;
    bottom: 130px;
}
.m.client_authorization .main.i837 .i837.subscriber-information {
    position: relative;
    bottom: 130px;
}
.m.client_authorization .main.i837 .i837.subscriber-information.show-default > .non-self {
    display: none;
}
.m.client_authorization .main.i837 .i837.subscriber-information.show-default > .default {
    position: relative;
    width: 100%;
    left: 48%;
}
.m.client_authorization .main.i837 .i837.subscriber-information select#id_subscriber_name,
.m.client_authorization .main.i837 .i837.subscriber-information select#id_subscriber_state,
.m.client_authorization .main.i837 .i837.box_59 select#id_person_relationship,
.m.client_authorization .main.i837 .i837.subscriber-information select#id_subscriber_gender {
    width: 189px;
}

/* report */
.m.client_authorizations_report{
    font-size:11px;
}

.m.client_authorizations_report table{
    width: 100%;
}

.m.client_authorizations_report .client{
    font-weight: bold;
    font-size: 14px;
    height: 24px;
    vertical-align: bottom;
}

.m.client_authorizations_report .client a{
    color: black;
}

.m.client_authorizations_report .authorization{
    font-weight: bold;

}

.m.client_authorizations_report .colheads td{
    background-color: #888;
    color: white;
    padding: 2px 4px;
    border-left: 1px solid white;
    height: 18px;
    text-align: right;
}

.m.client_authorizations_report .colheads td:first-child{
    text-align: left;
}

.m.client_authorizations_report .dates{
    padding: 2px 4px;
}

.m.client_authorizations_report .hrs,
.m.client_authorizations_report .total{
    text-align: right;
    padding: 2px 4px;
}

.m.client_authorizations_report .thermometer {
    display: inline-block;
    margin-left: 12px;
    width: 60px;
    height: 11px;
    border: 1px solid #c4c4c4;
    border-radius: 4px;
    position: relative;
    top: 2px;
    background-color: #cecece;
    overflow: hidden;
}

.m.client_authorizations_report .thermometer .mercury{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 4px;
    background-color: #2a8987;
    text-indent: -2000px;
}

.m.client_authorizations_report .thermometer.over .mercury{
    background-color: red;
}

/* client emergency info in popup */
/* this is also styled for mobiel in mobile.css!! */
.m.emergency_info{
    padding: 0 12px 12px 12px;
}
.m.emergency_info h2 {
    color: #cc0000;
}
.m.emergency_info h3{
    margin-bottom: 0;
    color: #e17009;
}
.m.emergency_info .emergency_icon {
    position: relative;
    top: 7px;
    margin-right: 3px;
    width: 27px;
}
.m.emergency_info .contact{
    margin-bottom: 12px;
}
.m.emergency_info .contact .contact_name{
    font-weight: bold;
}
.m.emergency_info .contact .contact_name .relationship{
    font-weight: normal;
}

/* fancy notification banner that displays on marketing notifications */
@media print {
    .m.fancy_notifications {
        display: none !important;
    }
}
.m.fancy_notifications {
    width: 100%;
    padding: 0;
    margin: 0;
    display: none;
    position: relative;
}
.m.fancy_notifications .graphic,
.m.fancy_notifications .content {
    position: relative;
    min-height: 110px;
    color: #554f45;
    overflow: hidden;
}
.m.fancy_notifications .graphic {
    height: 110px;
    width: 25%;
    float: left;
}
.m.fancy_notifications .content {
    padding-right: 200px;
}
.m.fancy_notifications .title {
    font-family: "Roboto", Verdana, Geneva, sans-serif;
    font-size: 26px;
    padding: 10px 10px 0 10px;
}
.m.fancy_notifications .subtitle {
    font-family: "RobotoLight", Verdana, Geneva, sans-serif;
    font-size: 15px;
    padding: 10px;
}
.m.fancy_notifications .subtitle ._button{
    margin-top: 20px;
    font-family: Helvetica, Arial, sans-serif;
}
.m.fancy_notifications .xclose{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 140px;
    height: 110px;
    cursor: pointer;
    text-indent: -5000px;
    background-position: right 54% top 25px;
    background-color: transparent;
    background-repeat: no-repeat;
}

.m.fancy_notifications.info {  /* info-specific styles */
    background-color: #fcf0ab;
}
.m.fancy_notifications.info .graphic:after {
    /*background: transparent url("../img/fancy_notifications/icon-alert.png") no-repeat;*/
    content: '\24D8';
    font-family: Georgia, serif;
    color: white;
    font-size: 84px;
    line-height: 110px;
    margin-left: 44%;
    margin-top: 20%;
    font-weight: bold;
}
.m.fancy_notifications.info .content {
    background-color: #fcf8e2;
}
.m.fancy_notifications.info .xclose {
    background-image:  url("../img/fancy_notifications/close-info.png");
}

.m.fancy_notifications.marketing {  /* marketing-specific styles */
    background-color: #56c3c6;
}
.m.fancy_notifications.marketing .graphic {
    background: transparent url("../img/fancy_notifications/icon-marketing.png") no-repeat;
    background-position: right 22% top 8px;
}
.m.fancy_notifications.marketing .content {
    background-color: #98d8e2;
}
.m.fancy_notifications.marketing ._button {
    color: #f8f8f8;
    text-shadow: none;
    background-color: #f27630;
    background-image: none;
    border: none;
    line-height: 28px;
}
.m.fancy_notifications.marketing ._button:hover{
    background-color: #f97e39;
}
.m.fancy_notifications.marketing .xclose {
    background-image: url("../img/fancy_notifications/close-marketing.png");
}

.m.fancy_notifications.warning {  /* warning-specific styles */
    background-color: #c66055;
}
.m.fancy_notifications.warning .graphic {
    background: transparent url("../img/fancy_notifications/icon-alert.png") no-repeat;
    background-position: right 45% top 27px;
    background-size: 55px;
}
.m.fancy_notifications.warning .content {
    background-color: #e29a98;
}
.m.fancy_notifications.warning .xclose {
    background-image: url("../img/fancy_notifications/close-warning.png");
}

/* top links on the hsa page */
.m.hsa_head .hidden{
    display: none;
}
.m.hsa_head .top_link {
    font-weight: bold;
    padding-right: 25px;
    cursor: pointer;
}
.m.hsa_head .drop a {
    font-size: 12px;
}
.m.hsa_head .menu .top_link:hover{
    text-decoration: none;
}

/* the main body of the hsa page */
.m.hsa_page {
    background-color: #ececec;
    background: -moz-linear-gradient(top, #eeeeee, #e0e0e0, #eeeeee);
    background: -webkit-linear-gradient(top, #eeeeee, #e0e0e0, #f6f6f6);
    background: linear-gradient(top, #eeeeee, #e0e0e0, #eeeeee);
    border: 1px solid #aaa;
    border-radius: 5px;
    margin-top: 20px;
}
.m.hsa_page ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.m.hsa_page .nav {
    float: left;
    padding: 10px;
    width: 200px;
    font-size: 12px;
}
.m.hsa_page .nav .link {
    display: block;
    margin-bottom: 14px;
}
.m.hsa_page .nav .link:before {
    content: '\2713';
    padding-right: 5px;
    color: transparent;
    font-weight: bold;
    height: 2em;
    width: 10px;
    float: left;
}
.m.hsa_page .nav .link.complete:before{
    color: #029648;
}
.m.hsa_page .nav .link.warn_ing:before{
    content: ' ';
    background: url("/media/img/icon_warning.gif") no-repeat 0 2px;
}
.m.hsa_page .nav .link.does_not_exist:before{
    content: '\2013';
    color: #999;
}
.m.hsa_page .nav .link.selected {
    color: #e17009;
}
.m.hsa_page .nav .prev_next {
    margin-top: 20px;
}
.m.hsa_page .nav .prev_next .go{
    display: inline-block;
}
.m.hsa_page .questions {
    overflow: hidden;
}
.m.hsa_page .questions .section {
    display: none;
}
.m.hsa_page .questions .section.current {
    display: block;
}
.m.hsa_page .q_blocks {
    margin-bottom: 10px;
}
.m.hsa_page .q_module{
    background-color: white;
    border-radius: 7px;
    margin: 10px 10px 0 0;
    min-height: 42px;
    padding: 12px;
    position: relative;
}
/* stuff below makes all the custom inputs work -- you hide the actual input and then style the label */
.m.hsa_page .q_module input[type="radio"],
.m.hsa_page .q_module input[type="checkbox"]{
    display: none;
}
.m.hsa_page .q_module label{
    position: absolute;
    cursor: pointer;
    height: 40px;
    width: 40px;
    top: 12px;
    line-height: 40px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #333;
}
.m.hsa_page .q_module input:disabled + label{
    cursor: default;
}
.m.hsa_page .q_module input[value="True"] + label,
.m.hsa_page .q_module.backwards input[value="False"] + label{
    right: 180px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-right: none;
}
.m.hsa_page .q_module input[value="False"] + label,
.m.hsa_page .q_module.backwards input[value="True"] + label{
    right: 140px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-right: 1px solid #333;
}
.m.hsa_page .q_module input[name="answer_na"] + label{
    right: 80px;
}
.m.hsa_page .q_module input[value="True"]:checked + label,
.m.hsa_page .q_module.backwards input[value="False"]:checked + label{
    background-color: #019648;
    color: white;
}
.m.hsa_page .q_module input[value="False"]:checked + label,
.m.hsa_page .q_module.backwards input[value="True"]:checked + label{
    background-color: #f37520;
    color: white;
}
.m.hsa_page .q_module input[name="answer_na"]:checked + label{
    background-color: #999;
    color: white;
}
/* have to hide the input and stick in a fake button as internet explorer will not let you style a file input */
.m.hsa_page .q_module input[type="file"] {
    display: none;
}
.m.hsa_page .q_module .file_upload_button {
    right: 20px;
    padding: 7px 0 0 7px;
    border: 1px solid #333;
    border-radius: 4px;
    cursor: pointer;
    height: 34px;
    position: absolute;
    top: 12px;
}
.m.hsa_page .q_module .file_upload_button.disabled {
    opacity: 0.6;
    cursor:default;
}
.m.hsa_page .q_module .q_text {
    width: 470px;
}
.m.hsa_page .q_module.all_safe {
    margin-top: -4px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-top: 2px solid #ddd;
}
.m.hsa_page .q_module .answer_form {
    width: 68%;
    display: inline-block;
}
.m.hsa_page .q_module .images {
    width: 100%;
    margin-top: 12px;
}
.m.hsa_page .add_notes {
    font-style: italic;
}
.m.hsa_page .q_module textarea {
    color: #2e6e9e;
    border: none;
    background-color: transparent;
    width: 100%;
    font-size: 12px;
    resize: none;
    font-family: Verdana, Arial, sans-serif;
    border-radius: 3px;
    margin-top: 14px;
    font-weight: bold;
}
.m.hsa_page .q_module textarea:focus {
    color: #333;
    border: 1px solid #333;
}
.m.hsa_page .q_module textarea::-webkit-input-placeholder {color: red; font-weight: normal;}
.m.hsa_page .q_module textarea:-webkit-input-placeholder {color: red; font-weight: normal;}
.m.hsa_page .q_module textarea::-moz-placeholder {color: red; font-weight: normal;}
.m.hsa_page .q_module textarea:-moz-placeholder {color: red; font-weight: normal;}
.m.hsa_page .q_module textarea:-ms-input-placeholder {color: red; font-weight: normal;}
.m.hsa_page .q_module textarea:placeholder-shown {color: red; font-weight: normal;}
.m.hsa_page .section.does_not_exist_in_home .all_safe,
.m.hsa_page .section.does_not_exist_in_home .q_blocks {
    display: none;
}
.m.hsa_page .section.does_exist_in_home .q_module.exists_in_home {
    padding-bottom: 22px;
}
.m.hsa_page .q_block textarea {
    display: none;
}
.m.hsa_page .q_block.show_notes textarea {
    display: block;
}
.m.hsa_page .q_block.show_notes .add_notes {
    display: none;
}
.m.hsa_page .q_block .char_counter{
    display: none;
    font-size: 11px;
}
.m.hsa_page.locked .inp {
    opacity: 0.5;
}
.m.hsa_page.locked .q_module {
    background-color: #fbfbfb;
}
.m.hsa_page.locked .q_module textarea{
    color: #333;
}
.m.hsa_page .image_link {
    display: inline-block;
    margin: 5px 5px 0 5px;
    vertical-align: top;
}
.m.hsa_page .image_link img {
    border: 1px solid #ccc;
    line-height: 50px;
    text-align: center;
    font-size: 10px;
}
.m.hsa_page .image_link .delete_me {
    color: #aaa;
    font-size: 26px;
    line-height: 50px;
    float: left;
    cursor: pointer;
    padding: 0 4px;
}
.m.hsa_page .update_message {
    font-size: 11px;
    color: #999;
}

/* the popup print/email dialog on the hsa page */
.m.hsa_print_email {
    font-size: 12px;
}
.m.hsa_print_email ul {
    list-style: none;
    padding: 0;
}
.m.hsa_print_email .include_images {
    position: relative;
    top: -13px;
}
.m.hsa_print_email #id_mode li {
    display: inline-block;
}
.m.hsa_print_email label {
    font-weight: bold;
    font-size: 13px;
}
.m.hsa_print_email label span {
    display: block;
    font-size: 11px;
    font-weight: normal;
    margin: 0 0 10px 28px;
}
.m.hsa_print_email textarea {
    font-size: 12px;
    padding: 1%;
    width: 98%;
    height: 120px;
    resize: none;
    margin-bottom: 16px;
}
.m.hsa_print_email input[type="checkbox"]{
    margin-top: 14px;
}

.m.hsa_print_email textarea#id_to {
    min-height: 20px;
    height: 100%;
    width: 100%;
    position: absolute;
    overflow: auto;
    font-size: 12px;
}
.m.hsa_print_email div#to_resizer {
    max-height: 100px;
    visibility: hidden;
    padding: 6px;
    padding-bottom: 1.15em;
    font-size: 12px;
}
.m.hsa_print_email a#to_header {
    text-decoration: underline;
}
.m.hsa_print_email #to_container {
    position: relative;
    margin-top: 3px;
}

div.envelope .return_address{
    height: auto;
    width: 50%;
    margin-left: 25px;
    padding-top: 0px;
    /*	background-color:red;*/
}
div.envelope .return_address h3, div.envelope .return_address p{
    font-size: 1.2em;
}
div.envelope .address{
    padding-left: 40%;
    margin-top: 5em;
}
div.envelope .address h3, div.envelope .address p{
    font-size: 1.5em;
}

#print_schedule_dialog fieldset {
    border: none;
}
#print_schedule_dialog input {
    margin-bottom: 10px;
}
#print_schedule_dialog label {
    display: block;
    width: 50px;
    margin-bottom: 10px;
    float: left;
    clear: both;
}

div.time-picker {
    position: absolute;
    height: 191px;
    width: 4em; /* needed for IE */
    overflow: auto;
    background: #fff;
    border: 1px solid #aaa;
    z-index: 9999;
    margin: 0;
}
div.time-picker-12hours {
    width: 6em; /* needed for IE */
}

div.time-picker ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
div.time-picker li {
    cursor: pointer;
    height: 10px;
    font: 12px/1 Helvetica, Arial, sans-serif;
    padding: 4px 3px;
}
div.time-picker li.selected {
    background: #0063CE;
    color: #fff;
}

/* shifts.css */
div.shift-form {
    padding-bottom: 10px;
}

div.shift-form div.change-list {
    display: none;
}
div.shift-form a.change-history {
    float: right;
}
div.shift-form a.change-history img {
    height: 20px;
    margin: 3px 10px 0 0;
}

div.shift-form .rate_category {
    margin-left: 17px;
}

div.shift-form .bad_rate_warning {
    display: none;
    color: red;
    margin-left: 20px;
}

div.shift-form .tiered_type_label {
    float: right;
    margin-top: 8px;
    margin-right: 20px;
    font-style: italic;
}

div.history-tooltip div.ui-tooltip-content {
    max-height: 350px;
    overflow-y: auto;
}
div.history-tooltip.ui-tooltip {
    max-width: 320px;
}

div.right_column {
    width: 49%;
    float: right;
    /*    height: 300px;*/
}

div.left_column {
    width: 49%;
    /*    height: 300px;*/
    float: left;
}
div.shift-form .left_column {
    width: 380px;
}
div.shift-form .right_column {
    width: 320px;
}
div.shift-form hr {
    clear: both;
    width: 95%;
    margin-left: 10px;
    color: #CCC;
    background-color: #CCC;
    height: 3px;
    border: 0;
}

div.shift-form p.tool {
    margin: 0 0 0 20px;
    text-align: left;
}
div.shift-form p.shift-confirmations{
    margin: 3px 0 3px 20px;
}
div.custom-bill-pay-hours {
    clear: both;
    margin: 3px 0 3px 20px;
}
div.is-fcss-enabled {
    display: inline-flex;
    margin-left: 5px;
}
div.shift-form p.shift-confirmations label, div.shift-form div.custom-bill-pay-hours label {
    float: none;
    display: inline;
    margin: 0;
}

div.shift-form .custom-bill-pay-hours-form p {
    margin: 2px 10px 10px 20px;
}

div.shift-form .custom-bill-pay-hours-form p label {
    display: block;
    float: none;
    width: 100%;
}

div.shift-form .custom-bill-pay-hours-form p select {
    display: block;
    float: none;
}

div.shift-form div#times {
    margin: 0 0 5px 10px;
}

div.shift-form #id_date_end, div.shift-form #id_date_end_fancy,
div.shift-form #id_date_start, div.shift-form #id_date_start_fancy{
    width: 80px;
    margin-right: 5px;
}
div.shift-form #id_time_start,
div.shift-form #id_time_end {
    width: 60px;
}
div.shift-form h3 {
    padding-left: 0;
}
div.shift-form h4 {
    padding-left: 0;
    color: #000;
    font-size: 12px;
}

div.shift-form input#id_all_day {
    margin-top: 5px;
}

div.shift-form label {
    display: block;
    clear: left;
    color: #727272;
    width: 110px;
    float: left;
    margin: 4px 10px 0 10px;
    height: 20px;
}

div.caregiver-schedule-form label {
    clear: left;
    margin: 10px 10px 5px 10px;
    font-size: 1.2em;
    color: #000;
    width: 70px;
}

div.caregiver-schedule-form p {
    font-size: 1.2em;
    color: #000;
    margin-left: 10px;
}

div.caregiver-schedule-form div.dates {
    display: none;
}

div.caregiver-schedule-form div.errors {
    margin-left: 20px;
    width: 340px;
}

div.caregiver-schedule-form form.times {
    margin-left: 100px;
}

div.caregiver-schedule-form div.footer {
    margin-top: 25px;
    margin-left: 250px;
}

div.shift-form div#recurrence {
    display: none;
}
div.shift-form input#id_all_day,
div.shift-form input#id_repeat_until,
div.shift-form input#id_repeat_until_fancy,
div.shift-form select {
    float: left;
}

div.shift-form select#id_frequency {
    width: 100px;
}

div.shift-form select#id_interval {
    width: 50px;
}
div.shift-form span#interval_units {
    float: left;
    margin: 3px 10px;
}

div.shift-form input#id_repeat_until,
div.shift-form input#id_repeat_until_fancy {
    width: 100px;
}

div.shift-form div#repeat_on div,
div.shift-form div#repeat_on div,
div.shift-form div#repeat_on div label,
div.shift-form div#repeat_on div input {
    float: left;
    margin: 0;
    padding: 0;
}


div.shift-form div#repeat_on div label {
    width: 30px;
}

div.shift-form div.rate_type {
    clear: left;
    padding: 0 0 0 20px;
    margin: 0;
}

div.shift-form div.rate_controls {
    margin-left: 20px;
}

div.shift-form div.rate_type div {
    float: left;
}

div.rates_section > label {
    font-weight: bold;
}

.rates_section .chzn-container {
    margin-left: 20px;
}

div.shift-form div.community_task_sets p {
    margin: 5px 0 0 10px;
    padding: 0;
    font-size: 12px;
    color: #727272;
}

select#id_community_task_sets {
	width: 256px;
}

div#rates p.warn {
    color: #E17009;
    margin-left: 10px;
    margin-right: 10px;
}

div.shift-form div.rate_type div label {
    width: auto;
    margin-left: 0;
}

div.shift-form select#id_caregiver_rate,
div.shift-form select#id_client_rate,
div.shift-form select#id_client_authorization {
    width: 255px;
}

div.shift-form .custom {
    display: none;
    float: right;
    margin-right: 10px;
}

div.shift-form .prorate {
    display: none;
    margin-top: 5px;
    margin-left: 20px;
    clear: both;
}
div.shift-form .prorate label{
    display: inline;
    float: none;
    margin: 0 0 0 5px;
}

div.shift-form .prorate input{
    width: auto;
}

div.shift-form .custom input {
    width: 75px;
    margin-left: 10px;
}


/*Tasks*/
div.shift-form div#tasks {
    background-color: #FFF;
    max-height: 290px;
    overflow: auto;
}

div.shift-form div.right_column h4 {
    border-bottom: 5px solid #53CDFF;
    margin: 0 10px 0 0 ;
}

div.shift-form div.right_column h4 a {
    float: right;
    color: #FFF;
    background-color: #53CDFF;
    text-decoration: none;
    padding: 2px 4px 0 4px;
}

div.shift-form div#tasks ul {
    margin: 0 10px;
    padding: 10px 0;
    list-style-type: disc;
    list-style-position: inside;
}

div.shift-form div#tasks ul.with-times {
    list-style-type: none;
    border-top: 1px solid #CCC;
}

div.shift-form div#tasks ul li a {
    display: block;
    width: 20px;
    height: 15px;
    float: right;
    background-repeat: no-repeat;
    text-decoration: none;
}

div.shift-form div#tasks ul li{
    text-indent: -1.5em;
    margin: 1px 0 0 1.5em;
}
div.shift-form div#tasks ul li .task_days{
    font-size: 10px;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 4px;
    text-indent: -3px;
}
div.shift-form div#tasks .task_time {
    font-size: 10px;
    font-style: italic;
    font-weight: bold;
    padding-right: 2px;
}
div.shift-form div#tasks ul li a.delete-task {
    background-image: url('../img/delete_todo.png');
}
div.shift-form div#tasks ul li a.edit-task {
    background-image: url('../img/edit.png');
}
div.shift-form div#tasks label {
    margin: 5px 5px 0 0;
    text-align: right;
    width: 71px;
}
div.shift-form div#tasks input[type="text"],
div.shift-form div#tasks textarea {
    margin: 5px 0 5px;
    border: 1px solid #CCC;
}
div.shift-form div#tasks input#id_title {
    width: 218px;
}
div.shift-form div#tasks .extra_links span{
    color: #2e6e9e;
    cursor: pointer;
}
div.shift-form div#tasks .extra_links span:hover {
    text-decoration: underline;
}
div.shift-form div#tasks .extra_links span.finished{
    float: right;
    padding-right: 20px;
}
div.shift-form div#tasks textarea {
    width: 218px;
    height: 55px;
    resize: none;
    font: 11px/13px Verdana, Arial, sans-serif
}
div.shift-form div#tasks input#id_task_time_start{
    width: 60px;
}
div.shift-form div#tasks input#cancel,
div.shift-form div#tasks input#save {
    float: right;
    padding: 2px 4px;
    margin: 8px 10px 0 0;
}
div.shift-form div#tasks input#cancel {
    clear: none;
}
div.shift-form div#tasks .available_tasks ul{
    max-height: 225px;
    min-height: 30px;
    overflow-y: auto;
    overflow-x: hidden;
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

div.shift-form div#tasks .available_tasks li{
    font-size: 10px;
    padding: 2px 2px 2px 8px;
}
div.shift-form div#tasks label[for="id_weekday_filter_0"]{
    margin-top: 12px;
}
div.shift-form div#id_weekday_filter {
    display: grid;
    grid-template-columns: repeat(5, 62px);
    grid-auto-rows: 30px;
    grid-gap: 0px;
    width: 360px;
    align-items: self-end;
}

div.shift-form div#id_weekday_filter label[for="id_weekday_filter_7"] {
    width: 100px;
}

div.shift-form h5{
    margin: 10px 0 3px 0;
    font-size: inherit;
}

div.shift-form .chzn-results{
    height: 160px;
}
div.shift-form .people_picker .chzn-results{
    height: auto;
}

div.shift-form .active-result,
div.shift-form .chzn-single {
    font-size: 11px;
}
div.shift-form .read_only_caregiver {
    left: -11px;
    position: relative;
    top: 4px;
}

body #fancybox-content {
    overflow: visible;
}
div.shift-form .errorlist {
    margin: 8px 10px;
}
.colorpicker {
    z-index: 10000;
}
div#color_legend div {
    margin-bottom: 10px;
    font-size: 12px;
}
div#color_legend div span {
    float: left;
}
div#color_legend a {
    text-decoration: none;
    width: 12px;
    height: 12px;
    display: block;
    float: left;
    border: 2px solid #999;
    margin-right: 6px;
}
div#color_legend p.title {
    font-size: 14px;
    color: #000;
}
/* end shifts.css */
/* scheduling_tool.css */
#schedules_tool_table, div.shift-form-tool table {
    text-align: left;
    /* border-collapse: collapse;
    */
    background-color: #fff;
    /* width:100%;*/
}
#schedules_tool_table_wrapper thead div.distance{
    position:absolute;
    bottom: 3px;
    right: 3px;
    font-size: 10px;
    font-weight: normal;
}
#schedules_tool_table_wrapper tbody div.distance{
    float: right;
    clear: none;
    font-size: 10px;
    margin: 4px 1px 0;
}
#schedules_tool_table_wrapper div.caregiver_and_checkbox{
    float: left;
    max-width: 90%;
    overflow: hidden;
    width: 205px;
}
#schedules_tool_table_wrapper tr.odd td.sorting_1,
#schedules_tool_table_wrapper tr.even td.sorting_1{
    background-color: white;
}
div.shift-form-tool #recurrence{
    display:none;
}
div.shift-form-tool .chzn-container-single .chzn-single{
    height: inherit;
    line-height:inherit;
}
div.shift-form-tool #id_patient, div.shift-form-tool #id_patient_chzn{
    width:300px;
}
div.shift-form-tool th.row1, div.shift-form-tool th.row2 {
    text-align: center;
}
div.shift-form-tool table td, div.shift-form-tool table th {
    border-bottom: 1px solid #CCCCCC;
    border-right: 2px solid #878787;
}
div.shift-form-tool table .thead_class tr {
    height: 33px;
}
/*div.shift-form-tool table .row2 {
    background-color: #fdffdd;
}

div.shift-form-tool td.row2, th.row2 {
    background-color: #fdffdd;
}*/
/*#table_holder #schedules_tool_table_paginate{
 margin-top:5px;
}
#table_holder #schedules_tool_table_paginate span{
 padding:0px 2px;
 margin:1px 3px;
}*/
div.shift-form-tool table tr {
    background-color: white;
}

/*div.shift-form-tool table tr.even {
    background-color: white;
}*/

div.shift-form-tool .available_caregiver a{
    color: green;
    font-weight: bold;
}
div.shift-form-tool .not_available_caregiver a{
    color: #d01100;
    /* font-weight: bold;*/
}
div.shift-form-tool .available_caregiver.not_passing_careneeds,
div.shift-form-tool .not_available_caregiver.not_passing_careneeds{
    background: #F08080;
}

div.shift-form-tool .brdr.available_caregiver .preferred_caregiver,
div.shift-form-tool .brdr.not_available_caregiver .preferred_caregiver
{
    background-image: url('../img/icon-green-tick-small.png');
    background-repeat: no-repeat;
    background-position: right;
    padding-right: 20px !important;
}

div.shift-form-tool div.brdr {
    overflow: hidden;
    white-space: nowrap;
    float:left;
}
div.shift-form-tool .caregiver_text {
    margin: 13px 0 0 0;
    font-size: 15px;
    color: #333;
    font-weight: normal;
    display: inline;
}
div.shift-form-tool .first_col {
    font-size: 12px;
    overflow: hidden;
    height: 21px;
}

div.shift-form-tool .date_text {
    font-size: 15px;
    font-weight: normal;
}

div.shift-form-tool #left-side {
    width: 440px;
    padding-right: 20px;
    padding-left:10px;
    float: left;
    display: inline;
}
div.shift-form-tool #right-side {
    width: 450px;
    float: right;
    display: inline;
}

div.shift-form-tool div#panel {
    background-color: #F5F8F9;
}

div.unavailability-dialog #id_date_start,
div.unavailability-dialog #id_date_end,
div.unavailability-dialog #id_repeat_until {
    width: 100px;
}
div.unavailability-dialog #id_time_start,
div.unavailability-dialog #id_time_end {
    width: 80px;
}
div.unavailability-dialog .field {
    margin-bottom: 5px;
    clear: left;
}
div.unavailability-dialog label {
    display: block;
    width: 120px;
    float: left;
    clear: both;
}
div.unavailability-dialog div#repeat_on li label {
    width: 41px;
    float: none;
}
div.unavailability-dialog div#repeat_on li label input {
    margin: 0;
}
div.unavailability-dialog div#repeat_on ul {
    margin: 0;
    padding: 0;
}
div.unavailability-dialog div#repeat_on li {
    list-style-type: none;
    float: left;
}

div#table_holder {
    border: 1px solid #AAAAAA;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 10px /* 10px 30px 10px;*/ ;
}

#table_holder * {
    margin: 0;
    padding: 0;
}

#table_holder th {
    padding-top: 5px;
}

div.shift-form-tool table * {
    border: 0 none;
}

table#schedules_tool_table {
    visibility:hidden;
}
div.shift-form-tool div#schedules_tool_table_wrapper input{
    margin-right: 10px;
}
#schedules_tool_table div#container {
    position: relative;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    top: 80px;
    width: 250px;
}


/* BULLET GRAPH */
#schedules_tool_table div.box-wrap {
    position: relative;
    height: 21px;
    top: 0;
    left: 0;
    margin: 0 2px 0 0;
    padding: 0;
}

/* CHANGE THE WIDTH AND BACKGROUND COLORS AS NEEDED */

#schedules_tool_table div.current_event {
    position: absolute;
    height: 21px;
    background-color: #80b500;
    opacity: 0.7;
    z-index: 1;
    font-size: 0;
    border-right-width: 1px;
    border-left-width: 1px;
    border-color: #80b500;
    border-style: solid;
}
/* TWO SEGMENTS */
#schedules_tool_table div.new_event {
    background-color: #d2d8ff;
    border-right-width: 1px;
    border-left-width: 1px;
    border-color: #697aff;
    border-style: dashed;
    position: absolute;
    height: 21px;
    font-size: 0;
    z-index: 0;
    font-size: 0;
}


div.shift-form-tool #id_repeat_until,
div.shift-form-tool #id_date_start,
div.shift-form-tool #id_date_end {
    width: 75px;
}

div.shift-form-tool #id_time_start, div.shift-form-tool #id_time_end {
    width: 60px;
}

div.shift-form-tool label#id_frequency {
    clear: left;
    display: block;
    float: left;
    width: 100px;
}
div.shift-form-tool label {
    clear: left;
    /* color: #727272;*/
    display: block;
    float: left;
    height: 15px;
    margin: 0px 10px 10px 0;
    /* width: 100px;*/
}

div.shift-form-tool #careneeds_filter label {
    clear: left;
    /* color: #727272;*/
    display: inline;
    float: none;
    height: 15px;
    margin: 0px 10px 6px 0;
}
#careneeds_filter{
    /*	background-color: #f0ebd9;
        height:25em;*/
    margin: 0px 5px 10px 5px;
    padding: 10px;
}

/*#panel {
    display: none;
}*/

#careneeds_filter .careneeds_subsection{
    /*    background-color:white;*/
    float:left;
    /*    height: 16em;*/
    font-size:12px;
    padding-left:20px;
    margin:0px;

}

#careneeds_filter h3{
    margin: 0 -19px 5px;
    font-size:14px;
}
#careneeds_filter center{
    height:2.5em;
    /*	font-size:10px;*/
    font-weight: bold;
    display:block;
}
#careneeds_filter .careneeds_subsection.level1{
    width:28%;
    border-right:1px solid #cdc7a8;
}
#careneeds_filter .careneeds_subsection.level2{
    width:31%;
    border-left:1px solid white;
    border-right:1px solid #cdc7a8;
}
#careneeds_filter .careneeds_subsection.level3{
    width:33%;
    border-left:1px solid white;
}

#careneeds_filter p {
    clear: both;
    margin: 0 0 0 24px;
    padding-top: 10px;
    font-size: 12px;
}

#careneeds_filter #id_max_client_weight {
    width: 60px;
}
#careneeds_filter #id_languages{
    height: 4em;
}
div.shift-form-tool input {
    position: relative;
    text-align: left;
}

div.shift-form-tool div#repeat_on li label {
    width: 30px;
}
div.shift-form-tool div#repeat_on ul, div.shift-form-tool div#repeat_on li, div.shift-form-tool div#repeat_on li label, div.shift-form-tool div#repeat_on li input {
    float: left;
    margin: 0;
    padding: 0;
}
div.shift-form-tool form ul {
    list-style: none outside none;
}
div.shift-form-tool .error_container,
div.shift-form-tool .error,
div.shift-form-tool .errorlist li,
div.shift-form-tool .warning {
    padding: 0 0 2px;
}

form#message-caregivers input#id_subject {
    width: 324px;
    margin: 4px 0 0 0;
    /*	border: 1px inset #ccc;*/
}
form#message-caregivers textarea#id_message {
    width: 324px;
    margin: 4px 0 0 0;
    resize: none;
    font-family: 'lucida grande',tahoma,verdana,arial,sans-serif;
    font-size: 12px;
    /*	border: 1px inset #ccc;*/
    /*	border:1px inset #F0F0F0;*/
}
form#message-caregivers label{
    width: 70px;
}
/* scheduling_tool.css end */
div#weekly_reports_container {
}



/***** Edit Carelog Form******/
div.carelog_popup {
    overflow: visible; /* let client/caregiver selectors expand past bottom of popup */
}

div#carelog-form {
    max-height: 400px;
}

div.carelog-form .errors {
    line-height: 16px;
    margin: 4px 0 4px 28px;
}

.carelog-form .highlight-official input {
    background: #CEF;
}

div.carelog-form div.left-times,
div.carelog-form div.right-times {
    float: left;
    width: 161px;
}
div.carelog-form .quick-times {
    font-size: 10px;
    margin-top: 2px;
}

div.carelog-form .quick-times .selected {
    font-weight: bold;
    color: #1E7EAE;
}

div.carelog-form .children-legend {
    margin-left: 65px;
    margin-bottom: -7px;
}
div.carelog-form form input.hasDatepicker {
    width: 75px;
}

div.carelog-form input[name*="time"] {
    width: 60px;
}

div.carelog-form input[name*="hours"] {
    width: 50px;
}

div.carelog-form p, div.mileage-form {
    margin: 0 0 7px 0;
}
div.carelog-form p label,
div.mileage-form p label,
div.expense-form p label,
div.visit-note-form p label {
    display: block;
    width: 74px;
    margin-right: 10px;
    float: left;
    font-weight: bold;
    text-align: right;
}
div.carelog-form .rate_category{
    padding-top: 6px;
    clear: both;
}
div.carelog-form .bad_rate_warning{
    display: none;
    color: red;
}
div.carelog-form input.ui-autocomplete-input.form-txt {
    width: 178px;
}
div.carelog-form fieldset.two-column {
    border: 1px solid #AAA;
    float: left;
    margin-bottom: 0;
    padding: 5px 10px;
}
div.carelog-form fieldset.two-column legend {
    font-size: 14px;
    margin-bottom: 0;
}
div.carelog-form fieldset.two-column label{
    float: none;
    text-align: left;
}
div.carelog-form div.change-list {
    display: none;
}
div.carelog-form a.change-history {
    float: right;
}
div.carelog-form a.change-history img {
    height: 20px;
}
div.carelog-form fieldset input#id_pay_rate_custom_amount,
div.carelog-form fieldset input#id_bill_rate_custom_amount {
    width: 65px;
}
div.carelog-form fieldset span.prorate,
div.carelog-form fieldset span.prorate label,
div.carelog-form fieldset span.prorate input {
    float: left;
    margin-right: 8px;
}
div.carelog-form fieldset span.prorate {
    padding-top: 6px;
}
div.carelog-form a.why-disabled {
    display: none;
    clear: both;
    float: left;
}
div.carelog-form fieldset.mileage {
    width: 452px;
}
div.carelog-form table#mileage {
    width: 100%;
}
div.carelog-form .mileage tfoot{
    display: none;
}
div.carelog-form .mileage th {
    text-align: left;
}
div.carelog-form .mileage td.miles input {
    width: 35px;
}
div.carelog-form .mileage .miles {
    width: 60px;
}
div.carelog-form .mileage .bill {
    width: 175px;
}
div.carelog-form .mileage .bill,
div.carelog-form .mileage .pay {
    text-align: left;
}
div.carelog-form a.extra_link {
    margin: 5px 0;
    float: left;
}
div.carelog-form a.extra_link.right {
    float: right;
}
div.carelog-form .bulk_only {
    display: none;
}

div.carelog-form .bill-pay-automation {
    max-width: 445px;
    margin: 10px 20px 10px 20px;
    padding: 8px 8px 12px 8px;
    border: 1px solid #AAA;
    border-radius: 5px;
}

div.carelog-form .bill-pay-automation .hour-override {
    float: left;
    width: 210px;
}

div.carelog-form .bill-pay-automation .quick-times {
    margin: 2px 0 0 0;
    overflow: visible;
    white-space: nowrap;
}

div.carelog-form .bill-pay-automation .bill-pay-hours .input {
    width: 45px;
}

div.carelog-form .bill-pay-automation label {
    margin: 11px 9px 0 0;
    text-align: left;
}

div.carelog-form fieldset.services-and-taxes {
    padding: 10px;
    margin: 0;
}

div.carelog-form div.services-and-taxes {
    margin: 0px 10px;
}

div.carelog-form div.services-and-taxes label {
    color: #727272;
    font-size: 12px;
    font-weight: bold;
    float: left;
    margin-top: 7px;
    margin-right: 10px;
}

div.carelog-form #bill_pay_rounding_rules {
    color: #13C;
    position: absolute;
    top: 6px;
    right: 55px;
}

div.carelog-form .override-not-equal {
    background: #FF9;
}

div.carelog-form #reason_code table tr td {
    padding: 0 0 7px 0;
}

/***** End Edit Carelog Form******/

div.change-list-container {
    overflow-y: scroll;
    max-height: 500px;
}


div.expense-form{
    min-height:200px; /*chosen opens*/
}
div.mileage-form #id_miles, div.expense-form #id_pay_amount{
    width:60px;
}
div.visit-note-form p label, div.expense-form p label {
    width:100px;
}
div.visit-note-form #id_start_time, div.visit-note-form #id_end_time{
    float:left;
    width: 80px;
    margin-right:20px;
}
div.visit-note-form #time label{
    float:left;
    width:80px;
}
div.visit-note-form #id_visit_note{
    width:450px;
    resize:none;
}
div.visit-note-form{
    width:650px;
}
div.mileage-form, div.expense-form{
    width:500px;
}
div.mileage-form p label {
    width:100px;
}

/***** Item Dialogs ******/
div.form.items div.left-column,
div.form.items div.right-column {
    width: 232px;
    float: left;
}
div.form.items div.left-column {
    margin-right: 10px;
}
div.form.items fieldset {
    min-height: 115px;
}
div.form.items fieldset label {
    width: 50px;
}
div.form.items label {
    font-weight: bold;
    min-width: 85px;
    height: 20px;
    display: inline-block;
}
div.form.items form p#the-date input {
    width: 85px;
}

div.items.form form p#description input {
    width: 380px;
}

div.items.form form input#id_miles {
    width: 50px;
}
div.items.form form input#id_bill_rate,
div.items.form form input#id_pay_rate {
    width: 110px;
}

div.items.form form p#amount input {
    width: 50px;
}
div.items.form form img {
    width: 18px;
    position: relative;
    top: 4px;
}
div.items.form input#id_total_time {
    width: 65px;
}
div.items.form textarea#id_visit_note {
    width: 383px;
    height: 40px;
}
div.form.items.carelog-item fieldset {
    min-height: 145px;
}
div.form.items.travel-item label {
    width: 120px;
    margin-right: 10px;
    text-align: right;
}
div.form.items.travel-item {
    min-width: 440px;
}
div.form.items.travel-item input#id_minutes {
    width: 50px;
}
div.form.items.travel-item .bad-addresses {
    color: #E17009;
}
div.form.travel-item div#travel-map {
    width: 440px;
    height: 220px;
}

/***** End Item Dialogs ******/

/* Reason dialog form */
.reason-code-form {
  width: 610px;
  border: 1px solid #a5a0a0;
  padding: 10px;
}
.reason-code-form .reason-form-group {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
}
.reason-code-form .reason-col-20,
.reason-code-form .reason-col-25,
.reason-code-form .reason-col-30,
.reason-code-form .reason-col-50,
.reason-code-form .reason-col-75,
.reason-code-form .reason-col-80 {
  padding-right: 5px;
  padding-left: 5px;
}
.reason-code-form .reason-col-20 {
  flex-basis: 20%;
  max-width: 20%;
    flex: 1;
}
.reason-code-form .reason-col-25 {
  flex-basis: 25%;
  max-width: 25%;
    flex: 1;
}
.reason-code-form .reason-col-30 {
  flex-basis: 30%;
  max-width: 30%;
    flex: 1;
}
.reason-code-form .reason-col-50 {
  flex-basis: 50%;
  max-width: 50%;
    flex: 1;
}
.reason-code-form .reason-col-75 {
  flex-basis: 75%;
  max-width: 75%;
    flex: 1;
}
.reason-code-form .reason-col-80 {
  flex-basis: 80%;
  max-width: 80%;
    flex: 1;
}
.reason-form-group .text-label-right {
  text-align: right;
  display: block;
}

.reason-code-form .reason-form-group .form-reason {
    width: 100%;
    border: 1px solid #bdbcbc;
    padding: 4px 0px 4px 5px;
    border-radius: 3px;
    height: auto;
}

.reason-code-form .exception-message {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  position: relative;
  padding: 0.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.reason-code-form .exception-message span {
  border: 1px solid #ff9292;
  border-radius: 15px;
  padding: 2px 10px;
  display: inline-block;
  background: #ffb6b6;
}
.reason-code-form .reason-label {
  text-align: right;
}
.reason-code-form #attest_label {
  margin-top: 10px;
  display: block;
  cursor: pointer;
}

.reason-actions {
  text-align: right;
  margin-top: 10px;
}
.reason-actions button {
  text-align: center;
  border: 1px solid transparent;
  padding: 0.25rem 0.75rem;
  font-size: 14px;
  border-radius: 0.25rem;
  cursor: pointer;
}
.reason-actions button.add:hover {
  background: rgb(8, 145, 3);
}
.reason-actions button.reset:hover {
  background: rgb(236, 142, 142);
}
.reason-actions button:hover {
  background: #cfcfcf;
}

.reason-table table {
  width: 100%;
  max-width: 100%;
  margin-top: 1rem;
  background-color: transparent;
  border-collapse: collapse;
}

.reason-table table thead tr {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#cbcbcb),
    to(#e9e9e900)
  );
  background: -o-linear-gradient(top, #cbcbcb, #e9e9e900);
  background: linear-gradient(180deg, #cbcbcb, #e9e9e900);
}
.reason-table table th,
.reason-table table td {
  vertical-align: top;
  border-bottom: 2px solid #dee2e6;
  padding: 0.3rem;
  text-align: left;
}

.reason-table table thead tr th:nth-child(2) {
    width: 90px;
}

.reason-table table thead tr td:nth-child(2) {
    word-break:normal;
}

.attestation{
    text-align: center!important;
}
.attestation input[type="checkbox"]:disabled {
    position: relative;
}
.attestation input[type="checkbox"]:disabled:checked::before {
    position: absolute;
    width: 100%;
    text-align: center;
    content: '\F00C';
    font-family: FontAwesome;
    color: #4d4d4d;
}
.reason-delete{
    text-align: center!important;
}

.reason-table table td span {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.reason-table .reason-delete i {
  color: red;
  cursor: pointer;
}
/* End Reason form */

div#weekly_reports_container ul,
ul#weekly_reports_container {
    list-style-type: none;
    margin: 10px 0;
    padding: 0;
}
#weekly_report textarea {
    width: 100%;
    height: 300px;
}
#weekly_report span.help {
    font-size: small;
    margin-left: 25px;
    display: block;
    font-style: italic;
}

a.report.complete {
    color: green;
}

div#bubble, img#bubble_arrow {
    display: none;
}

body .dataTables_wrapper {
    min-height: 0px;
}
.dataTables_filter {
    width: 60%;
}
#statusFilter{
    margin-right:5px;
}

table.list {
    table-layout: fixed;
}

.col-count-13 table.list,
.col-count-12 table.list,
.col-count-11 table.list{
    font-size: 10px;
}

.col-count-10 table.list,
.col-count-9 table.list,
.col-count-8 table.list,
.col-count-7 table.list{
    font-size: 11px;
}

table.list img.check {
    height: 15px;
}
table.list a.delete {
    display: none;
}

table.list tr.odd {
    background-color: white;
}

table.list tr.even {
    background-color: #E6E6E6;
}

table.list tr.row_selected td{
    background-color: #9FAFD1;
}
table.list tr.odd.row_selected td.sorting_1,
table.list tr.odd.row_selected td.sorting_2 {
    background-color: #9FAFD1;
}

table.list tr.even.row_selected td.sorting_1,
table.list tr.even.row_selected td.sorting_2 {
    background-color: #B0BED9;
}

table.list tr.odd td.sorting_1,
table.list tr.even td.sorting_1,
table.list tr.odd td.sorting_2,
table.list tr.even td.sorting_2 {
    background-color: inherit;
}
table.list thead th {
    text-align: left;
}

table.list a {
    color: #2E6E9E;
    text-decoration: none;
}

table.list td{
    overflow: hidden;
}

table.list td.center-text {
    text-align: center;
}

table.list a:hover {
    text-decoration: underline;
}

table.list tbody td:first-child {
    border-left: 1px solid #E6E6E6;
}
table.list tbody td:last-child {
    border-right: 1px solid #E6E6E6;
}

div#leads p {
    margin: 0 0 .5em 0;
    color: #2E6E9E;
}

div.dataTables_wrapper {
    font-size: 13px !important;
}

table.dataTable td.no-wrap {
    white-space: nowrap;
}

/*Select All button*/
div.dataTables_wrapper div.dataTables_length label.ui-button {
    font-size: 13px !important;
    margin-left: 20px;
}
div.dataTables_wrapper div.dataTables_length label.ui-button .ui-button-text{
    padding: 2px 6px;
    line-height: 17px;
}
body ul.ui-autocomplete.ui-menu .ui-menu-item a {
    padding:.2em .2em;
    line-height:1.1;
    font-size: 12px;
}

/* Tags button */
div.dataTables_wrapper div.dataTables_length label[for$=tags_select] {
    font-size: 13px !important;
    margin-left: 10px;
}

div.activity-taxble {
    width: 860px;
}

span.tag {
    color: #555;
    font-size: 10px;
    border: 1px solid #D3D3D3;
    padding: 1px 2px;
    margin-right: 5px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #E6E6E6;
}

span.tag-state {
    color: #fff;
    font-size: 10px;
    padding: 1px 2px;
    margin-right: 5px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #FAA732;
    background-color: #FAA732;
    font-weight: bold;
}

span.tag-state-notsent {
    background-color: #FF0000;
    border: 1px solid #FF0000;
}
span.tag-state-bounced {
    background-color: #FF0000;
    border: 1px solid #FF0000;
}
span.tag-state-dropped {
    background-color: #FF0000;
    border: 1px solid #FF0000;
}
span.tag-state-spamreport {
    background-color: #FF0000;
    border: 1px solid #FF0000;
}

span.tag-state-delivered {
    background-color: #339900;
    border: 1px solid #339900;
}

span.tag-state-clicked {
    background-color: #339900;
    border: 1px solid #339900;
}

span.tag-state-opened {
    background-color: #339900;
    border: 1px solid #339900;
}


/* the activity panel on the client/caregiver profile page */
.m.activity_panel {
    min-height: 200px;
}

.m.activity_panel .dataTables_wrapper {
    min-height: inherit;
}
.m.activity_panel h3 {
    margin-bottom: 0;
    color: #555;
}

.m.activity_panel .activity_filter {
    width: 23%;
    float: left;
}
.m.activity_panel .activity_filter ul{
    margin: 0;
    padding: 5px;
    list-style-type: none;
}
.m.activity_panel .activity_filter li{
    font-size: 11px;
}

.m.activity_panel .activity_filter ul ul{
    margin-left: 15px;
    padding: 0;
}

.m.activity_panel .activity_table {
    width: 75%;
    float: right;
}

.m.activity_panel .activity_table table.list tr.even {
    background-color: #FFF;
}
.m.activity_panel .activity_table table.list tr td {
    border-bottom: 1px solid #E6E6E6;
    vertical-align: top;
}
.m.activity_panel .activity_table table.list span.smaller {
    font-size: 10px;
}


/* bulk-add carelogs page */
.m.bulk_add_carelogs {
    margin-top: 14px;
}
.m.bulk_add_carelogs .form_container {
    position: relative;
}
.m.bulk_add_carelogs .form_container .scrim {
    background-color: #eee;
    opacity: 0.5;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.m.bulk_add_carelogs .carelog {
    border-bottom: 1px solid #ccc;
    padding: 6px 0 11px 0;
    position: relative;
}
.m.bulk_add_carelogs .carelog .times_and_status{
    float: left;
    width: 356px;
}
.m.bulk_add_carelogs .carelog .person{
    float: left;
    width: 250px;
}
.m.bulk_add_carelogs .carelog .edit{
    float: right;
    margin-top: 4px;
}
.m.bulk_add_carelogs button {
    width: 80px;
}
.m.bulk_add_carelogs .carelog .name {
    font-weight: bold;
}
/* here's where we beat up on the carelog-form to get it to display how we want it */
.m.bulk_add_carelogs .carelog-form {
    position: relative;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    padding: 6px 4px 0px 16px;
    background-color: #eee;
    min-height: 170px;
}
.m.bulk_add_carelogs .carelog-form .bulk_only {
    display: inline;
}
.m.bulk_add_carelogs .carelog-form h4{
    font-size: 20px;
    font-weight: bold;
    margin: 3px 0;
}
.m.bulk_add_carelogs .carelog-form fieldset {
    border: none;
}
.m.bulk_add_carelogs .carelog-form .butns{
    position: absolute;
    right: 20px;
    top: 38px;
}
.m.bulk_add_carelogs .carelog-form .butns ._button{
    display: block;
    width: 100px;
    margin-bottom: 3px;
}
.m.bulk_add_carelogs .carelog-form .status_and_times {
    float: left;
    position: relative;
    width: 340px;
}
.m.bulk_add_carelogs .carelog-form .status {
    position: relative;
    top: 39px;
}
.m.bulk_add_carelogs .carelog-form .start_end {
    position: relative;
    top: -21px;
}
.m.bulk_add_carelogs .carelog-form .mileage_link {
    position: absolute;
    left: 20px;
    top: 100px;
}
.m.bulk_add_carelogs .carelog-form fieldset.mileage {
    border: 1px solid #aaa;
    padding: 0 9px;
    position: absolute;
    top: 93px;
    white-space: nowrap;
    width: 308px;
}
.m.bulk_add_carelogs .carelog-form.has_errors {
    min-height: 190px;
}
.m.bulk_add_carelogs .carelog-form.has_errors .mileage_link {
    top: 120px;
}
.m.bulk_add_carelogs .carelog-form.has_errors fieldset.mileage {
    top: 113px;
}
.m.bulk_add_carelogs .carelog-form fieldset.mileage table {
    margin: -4px 0 5px 0;
}
.m.bulk_add_carelogs .carelog-form fieldset.mileage legend {
    margin: 0;
    font-size: 14px;
}
.m.bulk_add_carelogs .carelog-form fieldset.mileage td,
.m.bulk_add_carelogs .carelog-form fieldset.mileage th {
    width: auto;
}
.m.bulk_add_carelogs .carelog-form select {
    background-color: white;
}
.m.bulk_add_carelogs .carelog-form .cl,
.m.bulk_add_carelogs .carelog-form .why-disabled,
.m.bulk_add_carelogs .carelog-form .change-history,
.m.bulk_add_carelogs .carelog-form .quick-times,
.m.bulk_add_carelogs .carelog-form .children-legend,
.m.bulk_add_carelogs .carelog-form .status label,
.m.bulk_add_carelogs .carelog-form .extra_link,
.m.bulk_add_carelogs .carelog-form .start_end label{
    display: none !important;
}
.m.bulk_add_carelogs .carelog-form .bill-pay-automation {
    float: left;
}
.m.bulk_add_carelogs .carelog-form .bulk-add-hidden {
    display: none;
}

/* ddb telephony logs page -- most of the css is inline in the page */
.m.telephony_logs .at_bottom.busy {
    height: 40px;
    background: url("../img/full-screen-ajax-loading.gif") no-repeat scroll center 50% #fff;
}

#activity-form textarea,
#activity-form select#id_related_to,
#activity-form select#id_assignees,
#activity-form select#id_tags {
    width: 310px;
}

#activity-form select#id_assignees {
    height: 80px;
}

#activity-form ul.errorlist {
    margin-left: 135px;
}

#activity-form.call #id_status_container {
    display: none;
}

#activity-form div.label, #cic-activity-form div.label {
    width: 90px;
}

#activity-form .include_in_fields {
    margin-left: 96px;
}

#activity-form .include_in_fields span{
    color: #727272;
    font-size: 11px;
    padding-top: 4px;
    white-space: nowrap;
    line-height: 20px;
}

#activity-form #id_related_to_container .search-field input {
    width: auto !important;  /* this seems to be a good overall fix to the chosen.js multiselect cut-off text problem */
}

#activity-form .suggestions .label{
    position: relative;
    top: -3px;
}

#activity-form .suggestions a{
    padding-right: 6px;
}

#activity-form .activity_locked {
    font-style: italic;
    font-weight: bold;
    color: #E17009;
}

div.task-table {
    width: 860px;
}

div#task-table td.description {
    width: 40%;
}

div#files-table {
    margin-top: 10px;
}

div#personnel-table {
    margin-top: 10px;
}
.client_status_date {border:0;color:#306E9E;}
.client_status_date:hover {text-decoration:underline;cursor:pointer;}


/*Send mail dialog*/
div#send-email {
    min-height: 570px;
    overflow: hidden;
}
div#send-email textarea{
    resize: none;
}

form#send-mail-form div.label{
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}

form#send-mail-form #sms-limit {
    font-size: 80%;
    font-style: italic;
    text-align: center;
    display: none;
    opacity: 0.7;
    cursor: pointer;
}

form#send-mail-form #message-preview {
    font-size: 80%;
    text-align: left;
    padding: 10px;
    border: 1px solid #005D6F;
    border-radius: 10px;
    color: #FFF;
    background: #3E5EEE;
    display: none;
    width: 550px;
    position: absolute;
    z-index: 12001;
    top: 55%;
    left: 50%;
    margin-top: -275px;
    margin-left: -275px;
    white-space: pre-wrap;
    box-shadow: 0px 0px 10px #000;
}

form#send-mail-form .hipaa-warning {
    font-size: 80%;
    font-style: italic;
    text-align: center;
}

form#send-mail-form #to_container {
    position: relative;
}

form#send-mail-form ul.errorlist li {
    padding: 0;
}
form#send-mail-form #no-results {
    color: red;
    margin-top: 10px;
    font-size: 12px;
}
form#send-mail-form textarea#id_to {
    min-height: 20px;
    height: 100%;
    width: 100%;
    position: absolute;
    overflow: auto;
    font-size: 12px;
}

form#send-mail-form div#to_resizer {
    max-height: 100px;
    visibility: hidden;
    padding: 6px;
    padding-bottom: 1.15em;
    font-size: 12px;
}

form#send-mail-form select#id_recipient_profiles,
form#send-mail-form select#id_reply_to,
form#send-mail-form select#id_mail_related_to,
form#send-mail-form input#id_subject,
form#send-mail-form textarea#id_message,
form#send-mail-form textarea#id_signature {
    width: 100%;
    font-size: 12px;
    padding: 3px;
}

form#send-mail-form span#recipient_profiles_header,
form#send-mail-form a#to_header {
    text-decoration: underline;
}
/* the email and sms widgets in the Send-to selector */
form#send-mail-form .widg {
    display: inline-block;
    font-family: FontAwesome;
    margin-left: 3px;
    padding: 2px 3px 4px 4px;
    color: #f47521;
    cursor: pointer;
    position: relative;
    box-shadow: inset 0px -2px 2px rgba(0, 0, 0, 0.45), 0px 0 2px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
}
form#send-mail-form .widg:hover {
    opacity: 0.75;
}
form#send-mail-form .widg[state="disabled"] {
    opacity: 0.5;
}
form#send-mail-form .widg[state="on"] {
    box-shadow: 0 -2px 2px rgba(255, 255, 255, 1) inset, 0 0 2px rgba(0, 0, 0, 0.9) inset;
}

#send-mail-form #id_related_to_container div {
    width: 100% !important;  /* this seems to be a good overall fix to the chosen.js multiselect cut-off text problem */
}

div#attach-files {
    display: none;
    height: 300px;
    overflow: auto;
}

div.attachments {
    display: none;
}

.attached-files tbody tr:first-child {
    border-bottom: 1px solid #AAA;
}

.attached-files tbody td.filename {
    width: 425px;
}

.attached-files tbody {
    display: block;
    margin-top: 20px;
    max-height: 525px;
    overflow: auto;
    width: 569px;
}

.attachment-upload-form {
    display: none;
}

.upload-attachment-option {
    display: none;
}

.upload-attachment-option:hover {
    cursor: pointer;
}

.upload-attachment-modal {
    display: none;
}

.upload-attachment-location div {
    float: left;
}

.upload-attachment-location div:first-child {
    border-right: 1px solid #AAA;
    margin-right: 20px;
    width: 225px;
}

.upload-attachment-location div:first-child button {
    margin-left: 35px;
}

.upload-attachment-location div:nth-child(2) {
    margin-left: 10px;
    width: 175px;
}

.upload-attachment-location div:nth-child(2) button {
    margin-left: 15px;
}

input#search-attach-files {
    width: 425px;
}

a.btn-pekeupload {
    left: 0px;
    bottom: 0px;
}

button.button-search span.ui-button-text {
    padding: 1px 12px;
}

div#edit-mileage-dialog{
    font-size: 12px;
}

div#edit-mileage-dialog p label {
    font-weight: bold;
    float: left;
    width: 80px;
}

div#edit-mileage-dialog p input {
    width: 100px;
}

/* scroll bar on very long autocomplete */
.ui-autocomplete {
    max-height: 300px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding to account for vertical scrollbar */
    padding-right: 20px;
}

/* invite dialog popup */
a.showInviteOptions {
    color: #2E6E9E;
    font-weight: normal;
    font-size: 12px;
}

div.inviteOptions {
    font-weight: normal;
    font-size: 12px;
}

#family-invite-form .history{
    position: relative;
    top: -8px;
    left: 64px;
    width: 75%;
    font-size: 12px;
}
#family-invite-form .spacer{
    display: inline-block;
    width: 20px;
}

#the-list  .last-log{
    /*
    text-indent: -5000px;
    display: inline-block;
    */
}

/* agency admin page */

#agency_admins {
    position: relative;
    padding: 10px 20px;
}

#agency_admins .deactivated{
    padding-left: 1px;
    font-style: italic;
    font-size: 11px;
    color: #666;
}

#agency_admins h3{
    border-bottom: thin solid #D3D3D3;
    color: #2E6E9E;
    margin: 0 0 5px;
    padding-bottom: 7px;
}

#agency_admins .admins{
    list-style: none;
    padding: 0;
    margin: 0;
}

._map_link:before{
    background: url("img/glyphicons-halflings.png") no-repeat scroll 0px -24px transparent;
    content: " ";
    display: inline-block;
    width: 16px;
    height: 15px;
    position: relative;
    top: 2px;
}

#profile-gmap {
    color: #2E6E9E;
    text-decoration: none;
}

#profile-gmap:hover {
    text-decoration: underline;
}

._ok_link:before{
    background: url("img/glyphicons-halflings.png") no-repeat scroll 0px -288px transparent;
    content: " ";
    display: inline-block;
    width: 16px;
    height: 15px;
    position: relative;
    top: 2px;
}

._remove_link:before{
    background: url("img/glyphicons-halflings.png") no-repeat scroll 0px -312px transparent;
    content: " ";
    display: inline-block;
    width: 16px;
    height: 15px;
    position: relative;
    top: 2px;
}

/* a shift calendar style */
#calendar ._pop_note{
    position: absolute;
    top: -4px;
    right: -4px;
    z-index: 10;
}

#calendar .print_button{
    width: 16px;
    color: transparent;
    background: url(../img/glyphicons-halflings.png) no-repeat -85px -42px;
}

#calendar .fc-view-month .fc-event-time{
    font-weight: normal;
    display: block;
}

#calendar .auth{
    cursor: pointer;
}

#calendar .fc-agenda .auth{
    margin-bottom: 3px;
}

#calendar .fc-agenda-allday .fc-agenda-axis{
    white-space: normal;
    font-size: 10px;
}

#calendar .auth {
    font-size: 10px;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #999 !important;
}

#calendar .fc-event-title{
    font-size: 11px;
}

.ui-dialog{
    /* override jq ui dynamic z-index setter that keeps covering calendar */
}

.ui-dialog .ui-dialog-content{
    overflow: visible; /* chosen.js tag picker was getting cut off in the edit profile popup */
}

.ui-widget-overlay{
}

.ui-dialog-buttonpane{  /* border above buttons was going too high */
    clear: both;
}

/*------------------------------------------
 *   global classes marked with '_' prefix
 *-----------------------------------------*/
/* message stripe at the top of the page */
._alert{
    background-color: #FCF8E3;
    border: 1px solid #FBEED5;
    border-radius: 4px;
    color: #C09853;
    margin-bottom: 20px;
    padding: 8px 35px 8px 14px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

._alert.alert_success {
    background-color: #DFF0D8;
    border-color: #D6E9C6;
    color: #468847;
}
._alert.alert_success a.bold-green {
    color: #468847;
    font-weight: bold;
    text-decoration: underline;
}

._alert.alert_info {
    background-color: #D9EDF7;
    border-color: #BCE8F1;
    color: #3A87AD;
}

/* bootstrap-like form fields  */
._bs_form {
    font-size: 14px;
    line-height: 20px;
}

._bs_form select,
._bs_form textarea,
._bs_form input[type="text"]{
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
    width: 72%;
}

._bs_form input[type="text"]{
    padding: 3px 2px;
}

._bs_form select{
    border-radius: 4px;
    color: #555555;
    margin-bottom: 10px;
    padding: 4px 6px;
    vertical-align: middle;
    background-color: white;
    border: 1px solid #ccc;
}

._bs_form textarea{
    border: 1px solid #CCCCCC;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    resize: none;
}

._bs_form input.dollars{
    text-align: right;
    width: 100px;
}

._bs_form ._button{
    line-height: 20px;
}

._bs_form select:focus,
._bs_form textarea:focus,
._bs_form input[type="text"]:focus,
._bs_form input[type="password"]:focus {
    border-color: rgba(82, 168, 236, 0.8);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

._bs_form .chzn-choices input[type="text"]:focus{
    box-shadow: none; -moz-box-shadow:none; -webkit-box-shadow:none;
}

._bs_form input[type="file"]:focus,
._bs_form input[type="radio"]:focus,
._bs_form input[type="checkbox"]:focus {
    outline: thin dotted #333;
    outline-offset: -2px;
}

/* a standard clearfix for floated elements */
._clearfix:after{
    content: '.';
    font-size: 1px;
    color: transparent;
    display: block;
    clear: both;
}

/* layout for full-width page - don't do overflow:hidden per CC-4290 */
._content{
    background-color:white;
    min-width: 960px;
    margin:0 20px;
    padding: 20px;
}


/* the matching criteria form -- used on care-finder, caregiver skills, caregiver apply and client assessment pages */
/* (hmm.. would maybe make more sense as a module...?*/
._match_criteria_form h4 {
    font-size: 12px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 4px 0;
    clear: both;
}

._match_criteria_form .criteria {
    font-size: 11px;
    display: block;
    position: relative;
    margin-right: 22px;
    padding-bottom: 6px;
    clear: both;
}

._match_criteria_form .criteria_name{
    overflow: hidden;
    display: block;
    padding: 3px 0 3px 4px;
}

._match_criteria_form .need_setter, .need_setter{
    float: left;
    display: inline-block;
    border: 1px solid #999;
    width: 13px;
    height: 13px;
    text-align: center;
    font-weight: bold;
    background-color: white;
    border-radius: 3px;
    cursor: pointer;
    font-size: 11px;
    position: relative;
    top: 2px;
    line-height: 13px;
}

._match_criteria_form .description .need_setter, .need_setter{
    float: none;
    top: -1px;
}

._match_criteria_form .need_setter[value="1"], .need_setter[value="1"]{ /* preferred */
    background-color: yellow;
    color: #666;
}

._match_criteria_form .need_setter[value="2"], .need_setter[value="2"]{ /* required */
    background-color: red;
    color: white;
}

._match_criteria_form [type="checkbox"]{
    display: block;
    float: left;
    margin: 1px 6px 4px 0px;
}

._match_criteria_form .column{
    width: 33%;
    float: left;
    position: relative;
    left: 6px;
    padding-top: 8px;
}

/* the bootstrap-esque full-page-dialog styles as used on the Payment page */
body.pg_dialog {
    height: auto;
    background-color: #e6e7e8;
}

._pg_dialog {
    height: 100%;
    padding-bottom: 100px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

._pg_dialog h4{
    margin: 12px 0;
    padding: 0;
}

._pg_dialog .navbar {
    background-color: #58595B;
    border-bottom: 1px solid #999999;
    box-shadow: 0 2px 8px #999999;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    position: fixed;
    z-index: 100;
    color: #eeeeee
}

._pg_dialog .navbar .content{
    position: relative;
    width: 940px;
    margin: 0 auto;
}

._pg_dialog .content_well{
    padding: 72px 20px 20px 20px;
    box-shadow: 0 2px 8px #999999;
    margin: 0 auto;
    width: 960px;
    background-color: #FFFFFF;
    color: #333333;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 20px;
    min-height: 700px;
}

._pg_dialog .floating_actions{
    background-color: white;
    border-top: 1px solid #AAAAAA;
    bottom: 0;
    height: 45px;
    left: 0;
    padding-top: 10px;
    position: fixed;
    width: 100%;
}

._pg_dialog .floating_actions .actions{
    margin: 0 auto;
    text-align: right;
    width: 1008px;
}

._pg_dialog .floating_actions .return{
    float: left;
    font-size: 16px;
    line-height: 32px;
}

/* popup note icon */
._pop_note {
    display: inline-block;
    width: 12px;
    height: 12px;
    text-indent: -1000px;
    background: url("../img/assessment/iconNote.png") no-repeat 0 0;
}


/* generic schedule form, used in new scheduler page and in office calendar */
._schedule_form label{
    clear: left;
    display: block;
    float: left;
    height: 16px;
    margin: 4px 10px 0;
    width: 110px;
    font-size: 12px;
    text-align: right;
}

._schedule_form .help_text{
    font-size: 10px;
    color: #666;
}

._schedule_form [name="time_start"],
._schedule_form [name="time_end"]{
    width: 56px;
}

._schedule_form [name="date_start"],
._schedule_form [name="date_end"]{
    width: 70px;
}

._schedule_form .repeat_on ul{
    margin: 0; padding: 0;
}

._schedule_form .repeat_on li{
    display: inline-block;
}

._schedule_form .repeat_on li input{
    margin: 0;
}

._schedule_form .repeat_on li label{
    width: auto;
    margin: 4px 4px 0 0;
}


/* _stages widget with right-pointing boxes */
._stages{
    list-style: none;
    margin: 0;
    line-height: 33px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #c7c7c7;
    border-radius: 4px;
    color: #666;
}

._stages li{
    float: right;
    position: relative;
    padding: 0 30px;
    background-color: #e8e8e8;
    background-image: linear-gradient(top , #fafafa, #e2e2e2);
    background-image: -webkit-linear-gradient(top , #fafafa, #e2e2e2);
    background-image: -moz-linear-gradient(top , #fafafa, #e2e2e2);
}

._stages li.selected {
    background-color: #fd8d0a;
    background-image: linear-gradient(top , #fca809, #fc5409);
    background-image: -webkit-linear-gradient(top , #fca809, #fc5409);
    background-image: -moz-linear-gradient(top , #fca809, #fc5409);
    color: white;
}
._stages li:after {
    background-color: #e8e8e8;
    background-image: linear-gradient(left top , #fafafa, #e2e2e2);
    background-image: -webkit-linear-gradient(left top , #fafafa, #e2e2e2);
    background-image: -moz-linear-gradient(left top , #fafafa, #e2e2e2);
    border: solid #c7c7c7;
    border-width: 1px 1px 0 0;
    border-radius: 3px;
    content: '';
    display: block;
    height: 23px;
    width: 23px;
    top: 4px;
    right: -12px;
    position: absolute;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

._stages li.selected:after {
    background-color: #fd8d0a;
    background-image: linear-gradient(left top , #fca809, #fc5409);
    background-image: -webkit-linear-gradient(left top , #fca809, #fc5409);
    background-image: -moz-linear-gradient(left top , #fca809, #fc5409);
}

._stages li:first-child:after{
    display: none;
}

/* ratings stars from jquery.starRating.js */
._stars {
    font-size: 13px;
    position: relative;
    border-radius: 3px;
    padding: 3px;
}
@-moz-document url-prefix() {
    /* firefox for some reason displays stars really small */
    ._stars {
        font-size: 19px;
        padding-top: 0;
    }
}
._stars a.star{
    cursor: pointer;
    color: #E17009;
}
._stars:hover{
    background-color: #ddd;
}
._stars a.star:hover{
    color: white;
    background-color: #ccc;
    text-decoration: none;
    font-weight: bold;
}

/* Username drop-down (at top right) */
._user_menu {
    display: inline-block;
    position: relative;
}

._user_menu .fullname._button {
    position: relative;
    padding: 3px 20px 2px 10px;
    font-size: 12px;
}

._user_menu ul,
._user_menu ul li {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    list-style-type: none;
}

._user_menu .menu .dcaret {
    position: absolute;
    top: 10px; right: 8px;
    width: 0; height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #f67615;
}

._user_menu .menu .drop {
    position: absolute;
    right: 0;
    overflow: hidden;
    min-width: 120px;
    border: 1px solid #ccc;
    height: auto;
    opacity: 1;
    background-color: #eee;
    border-radius: 3px;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

._user_menu .menu._hover .drop{
    display: block;
}

._user_menu .menu .drop li {
    line-height: 20px;
}

._user_menu .menu .drop li a {
    display: block;
    padding: 4px 10px;
    color: #333;
    white-space: nowrap;
}

._user_menu .menu .drop li a h3 {
    width: 300px;
    margin: 0;
    font-size: 1.17em;
    line-height:20px;
}

._user_menu .menu .drop li a span {
    white-space: normal;
}

._user_menu .menu .drop li a:hover {
    text-decoration: none;
    background-color: #0081c2;
    color: #fff;
}

/* filters on the e_payment list page in receivables */
.m.epayments {
    position: relative;
    overflow: hidden;
}
.m.epayments .pag {
    margin: 10px 0;
    float: right;
}
.m.epayments ._paginator {
    display: inline-block;
    margin: 0;
}
.m.epayments .pag label{
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    margin-right: 6px;
    position: relative;
    top: -8px;
}
.m.epayments ._cc_table {
    font-size: 11px;
}

/* filters on the fcfs list page in scheduling */
.m.fcfs {
    position: relative;
    overflow: hidden;
}
.m.fcfs .pag {
    margin: 10px 0;
    float: right;
}
.m.fcfs ._paginator {
    display: inline-block;
    margin: 0;
}
.m.fcfs .pag label{
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    margin-right: 6px;
    position: relative;
    top: -8px;
}
.m.fcfs ._cc_table {
    font-size: 11px;
}

.m.fcfs ._cc_table th {
    min-width: 85px;
}

/* invoice popup on billing page */
.m.invoice_popup .ab_clients_only_msg {
    left: 23px;
    position: relative;
    top: -15px;
}

/* payment page module; pretty much the whole page */
.m.payment_page .p_form{
    background-color: #F3F3F3;
    border: 1px solid #CCCCCC;
    padding: 0px;
    margin: 0;
    font-size: 14px;
    line-height: 20px;
}

.m.payment_page .p_form .fields{
    margin: 0;
}

.m.payment_page .p_form .fields>li{
    display: inline-block;
    vertical-align: top;
    width: 300px;
    margin-bottom: 14px;
}

.m.payment_page .p_form label{
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: bold;
}
.m.payment_page .p_form .fields > .wide-li {
    margin-bottom: 5px;
    width: 500px;
}
.m.payment_page .p_form .inline-label {
    display: inline-block;
    padding-right: 12px;
    text-align: right;
    width: 200px;
}
.m.payment_page .p_form .indented {
    margin-left: 25px;
}
.m.payment_page .p_form .inner-fields {
    list-style-type: none;
}
.m.payment_page .p_form .right-side {
    display: inline-block;
    margin-left: 20px;
    margin-top: -1.2em;
}
.m.payment_page .p_form h4 {
    margin-top: 0;
}
.m.payment_page .p_form.form_no_bg {
    background: none;
    border: none;
}
.m.payment_page .p_form.form_no_bg label {
    margin-bottom: 0;
}
.m.payment_page .p_form .new-section {
    margin-top: 10px;
}

.m.payment_page .p_form select{
    padding: 3px;
}

.m.payment_page input[name="pmt"]{
    width: 75px;
}

.m.payment_page .remaining{
    position: absolute;
    top: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    padding: 7px 8px;
    color: #333;
}

.m.payment_page .unallocated{
    margin-top: 30px;
    width: 400px;
}

.m.payment_page .epay_notice {
    margin: 0 40px 20px;
    text-align: center;
}

/* Refund Page (mostly uses above Payment Page CSS plus the below) */
.refundQBNote {
    text-align: center;
    font-weight: bold;
    padding-bottom: 5px;
}

/* printable calendar header */
.m.print_calendar_report_head {
    width: 96%;
    position: relative;
    padding: 0 20px;
}

.m.print_calendar_report_head h1{
    margin: 10px 100px 10px 0;
    font-size: 20px;
}

.m.print_calendar_report_head .powered_by{
    position: absolute;
    right: 22px;
    top: -10px;
}

/* printable calendar month view  */
.m.print_calendar_month li,
.m.print_calendar_month ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.m.print_calendar_month {
    width: 96%;
    position: relative;
    margin: 0 20px;
    overflow: hidden;
    padding-bottom: 0px;
}

.m.print_calendar_month .banner{
    clear: both;
    width: 100%;
    position: relative;
    left: 1px;
}

.m.print_calendar_month .banner li{
    float: left;
    width: 14%;
    height: 18px;
    border: 1px solid black;
    border-bottom: none;
    background-color: #eee;
    text-align: center;
    margin-left: -1px;
}

.m.print_calendar_month .days {
    clear:both;
    position: relative;
    left: 1px;
}

.m.print_calendar_month .days:after{ /* bottom border of calendar */
    content: '.';
    display: block;
    height: 0;
    clear: both;
    border-top: 1px solid black;
    width: 98.5%;
}

.m.print_calendar_month .day {
    float: left;
    width: 14%;
    border: 1px solid black;
    font-size: 14px;
    margin-left: -1px;
    border-bottom: none;
    position: relative;
    height: 102px;
}

.m.print_calendar_month.messy .day{
    height: auto;
    min-height: 45px;
}

.m.print_calendar_month .day:before{ /* calendar vertical borders */
    position: absolute;
    left:-1px;
    top: 1px;
    width: 1px;
    height: 1000px;
    border-left: 1px solid black;
    content: ' ';
}

.m.print_calendar_month .day:last-child:after{ /* calendar vertical borders */
    position: absolute;
    right:-2px;
    top: -900px;
    width: 1px;
    height: 1000px;
    border-left: 1px solid black;
    content: ' ';
}

.m.print_calendar_month .day_info{
    text-align: left;
    font-weight: bold;
    position: relative;
    margin: 0 6px;
    color: #999;
}

.m.print_calendar_month .day_info .total{
    color: #333;
    font-size: 10px;
    position: absolute;
    right: 0;
    top: 4px;
}

.m.print_calendar_month .event{
    border-top: 1px dotted #CCCCCC;
    font-size: 9px;
    line-height: 10px;
    height: 12px;
    overflow: hidden;
    padding: 2px 8px;
    text-align: left;
    white-space: nowrap;
    position: relative;
}

.m.print_calendar_month.messy .event{
    height: auto;
    white-space: normal;
}

.m.print_calendar_month .event_content{
    overflow: hidden;
}

.m.print_calendar_month .event:after{
    content: " ";
    position: absolute;
    right: -3px;
    bottom: 4px;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left-color: #999;
    display: none;
}

.m.print_calendar_month .event:before{
    content: " ";
    position: absolute;
    left: -3px;
    bottom: 5px;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-right-color: #999;
    display: none
}

.m.print_calendar_month .event.right:after,
.m.print_calendar_month .event.both:after{
    display: block;
}

.m.print_calendar_month .event.left:before,
.m.print_calendar_month .event.both:before{
    display: block;
}

.m.print_calendar_month .title{
    display: inline-block;
}

.m.print_calendar_month.messy .title{
    display: inline;
}

.m.print_calendar_month .contd{
    border-top: 1px dotted #CCCCCC;
    text-align: center;
    font-size: 10px;
}


/* printable calendar week view */
.m.print_calendar_week li,
.m.print_calendar_week ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.m.print_calendar_week {
    width: 96%;
    position: relative;
    padding: 0 20px;
}

.m.print_calendar_week .days {
    clear:both;
    margin-top: 12px;
}

.m.print_calendar_week .day {
    float: left;
    width: 14%;
    border: 1px solid black;
    font-size: 14px;
    margin-left: -1px;
    border-bottom: none;
}

.m.print_calendar_week .day_info{
    border-bottom: 1px solid black;
    text-align: center;
    background-color: #eee;
    font-weight: bold;
}

.m.print_calendar_week .day_info .total{
    font-size: 11px;
}

.m.print_calendar_week .event{
    position: relative;
    border-bottom: 1px solid black;
    font-size: 10px;
    text-align: center;
    padding: 4px 0;
}

.m.print_calendar_week .event .title{
    padding-left: 4px;
    font-size: 12px;
}

.m.print_calendar_week .event:after{
    content: " ";
    position: absolute;
    right: -3px;
    bottom: 4px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-left-color: #999;
    display: none;
}

.m.print_calendar_week .event:before{
    content: " ";
    position: absolute;
    left: -3px;
    bottom: 5px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-right-color: #999;
    display: none
}

.m.print_calendar_week .event.right:after,
.m.print_calendar_week .event.both:after{
    display: block;
}

.m.print_calendar_week .event.left:before,
.m.print_calendar_week .event.both:before{
    display: block;
}

.m.print_calendar_week .contd{
    text-align: center;
    font-size: 11px;
}

/* adjustments for day view */
.m.print_calendar_week.actually_day .day{
    width: 40%
}

.m.print_calendar_week.actually_day .day .event .title{
    display: inline;
}

/* scheduled payments grid */
.m.sched_payments {
    overflow: hidden;
    position: relative;
}

.m.activate_deactivate_dialog input.deactivation-date {
    height: 13px;
    font-size: 11px;
    width: 117px;
}


/* the agency calendar */
.m.agency_calendar  ul,
.m.agency_calendar  li{
    list-style: none;
}

.m.agency_calendar {
    position: relative;
    margin-top: -8px;
}

.m.agency_calendar  .types{
    position: relative;
    top: 10px;
    left: 0;
    padding: 0;
    margin: 0;
}

.m.agency_calendar  .types .type{
    text-align: center;
    display: inline-block;
    margin: 0 0 16px 4px;
    background-image: none;
    font-size: 11px;
    line-height: 16px;
    padding: 0 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid #aaa;
    cursor: pointer;
}

.m.agency_calendar  .types .type:first-child{
    margin-left: 0;
}

.m.agency_calendar  .types .selected{
    border-color: black;
    font-weight: bold;
}

.m.agency_calendar .picker_container{
    position: relative;
    z-index: 10;
    display: inline-block;
    left: 671px;
}

.m.agency_calendar .user_picker{
    width: 260px;
}

.m.agency_calendar .picker_container .chzn-single{
    height: 27px;
    line-height: 26px;
    border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px;
}

.m.agency_calendar .fc-header{
    position: absolute;
    top: 0;
}

.m.agency_calendar .fc-header-left{
    width: 33%;
}

.m.agency_calendar .fc-view-month .fc-event-time{
    font-weight: normal;
    display: block;
    font-size: 10px;
}

.m.agency_calendar .fc-content{
    top: 8px;
}

.m.agency_calendar .fc-state-highlight{
    background-color: #f8f8f8;
}

/* the popup on the agency calendar */
.m.agency_calendar_popup li, .m.agency_calendar_popup ul{
    list-style: none;
}

.m.agency_calendar_popup ._button{
    float: right;
    margin: 10px 0 0 8px;
}

.m.agency_calendar_popup h3{
    border-bottom: 4px solid #CCCCCC;
    margin: 20px 0 8px 0;
}

.m.agency_calendar_popup label{
    clear: left;
    color: #727272;
    display: block;
    float: left;
    height: 20px;
    margin: 4px 10px 0;
    width: 110px;
    font-size: 12px;
    text-align: right;
}

.m.agency_calendar_popup label[for="id_notify_participants"]{
    visibility: hidden;
}

.m.agency_calendar_popup .helptext{
    font-size: 12px;
}

.m.agency_calendar_popup .form_bod{
    line-height: 20px;
    min-width: 520px;  /* to fit the "Include In" checkbox set */
}

.m.agency_calendar_popup .r_setting {
    position: relative;
}

.m.agency_calendar_popup .form_bod p{
    margin: 8px 0;
}

.m.agency_calendar_popup .form_bod input,
.m.agency_calendar_popup .form_bod select{
    margin: 6px 2px;
}

.m.agency_calendar_popup select[name="interval"]{
    width: 54px;
    color: transparent;
}
.m.agency_calendar_popup select[name="interval"] option{
    color: black;
}
.m.agency_calendar_popup .interval_freeform {
    border: medium none;
    left: 134px;
    padding: 0;
    position: absolute;
    top: 2px;
    width: 26px;
    background-color: transparent;
}
/* chrome and IE issue */
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
    .m.agency_calendar_popup .interval_freeform {
        background-color: white;
    }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .m.agency_calendar_popup .interval_freeform {
        background-color: white;
    }
}

.m.agency_calendar_popup p input[type="text"]{
    width: 248px;
}

.m.agency_calendar_popup textarea{
    width: 248px;
    height: 48px;
    resize: none;
    font: 12px  Verdana,Arial,sans-serif;
    padding: 2px;
}

.m.agency_calendar_popup .add_message .helptext{
    font-size: 11px;
    display: block;
    margin: -6px 0 0 130px;
}

.m.agency_calendar_popup ._schedule_form {
    border-top: 4px solid #CCCCCC;
}
.m.agency_calendar_popup ._schedule_form .times {
    margin-left: 130px;
}

.m.agency_calendar_popup #id_participants,
.m.agency_calendar_popup #id_related_profiles{
    width: 258px;
}

.m.agency_calendar_popup .instance_only{
    clear: both;
    text-align: right;
    font-size: 12px;
    padding-top: 8px;
}

.m.agency_calendar_popup .checkbox_list span{
    font-size: 11px;
}

/* recruiting page -- mostly just contains an iframe */
.m.recruiting iframe {
    width:100%;
    height:400px;
    border: none;
}

/* the new "Care Finder" scheduler (module covers basically the whole page) */
body.scheduling_dashboard{  /* body background for this page */
    background-color: #595959
}

.m.scheduler{
    width: 100%;
    position: relative;
    top: -8px;
}

.m.scheduler b{
    font-weight: bold;
}

.m.scheduler h2{
    font: bold 14px/16px Verdana,Arial,sans-serif;
    padding-bottom: -12px;
    position: absolute;
    top: -9px;
    left: 13px;
    background: url(../img/1x1_white.png) repeat-x 0 8px; /* legend-like border blocker */
}

.m.scheduler .pod{
    position: relative;
    border: 1px solid #AAAAAA;
    border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
    padding: 10px 16px 8px 16px;
    margin-top: 22px;
    background: linear-gradient(top, #e0e0e0, #f6f6f6);
    background: -moz-linear-gradient(top, #e0e0e0, #f6f6f6);
    background: -webkit-linear-gradient(top, #e0e0e0, #f6f6f6);
}

.m.scheduler .pod .notice{
    margin: 0 0 4px 0;
}

.m.scheduler .col_1{
    float: left;
    width: 35%;
    position: relative;
}

.m.scheduler .col_2{
    float: left;
    margin-left: 2%;
    width: 63%;
    position: relative;
}

.m.scheduler .cols:after{  /* a clearfix */
     content: '.';
     font-size: 1px;
     color: transparent;
     display: block;
     clear: both;
 }

.m.scheduler .client .choose_client{
    width: 250px;
}

.m.scheduler .client .static_client{
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    line-height: 24px;
    margin-left: 6px;
    color: #333;
}

.m.scheduler .personal_info{  /* hard to position this any other way because adjacent chosen.js is funky */
    position: absolute;
    left: 280px;
    top: 13px;
    font-size: 12px;
}

.m.scheduler .personal_info.static{
    display: inline-block;
    margin-left: 11px;
    position: static;
}

.m.scheduler .personal_info span{
    padding-left: 4px;
}

.m.scheduler .personal_info .link{
    position: relative;
    top: 2px;
    margin-right: -2px;
}

.m.scheduler .personal_info .location{
    font-weight: bold;
}

.m.scheduler .schedule,
.m.scheduler .filters{
    min-height: 178px;
}

.m.scheduler .filters p{
    display: inline-block;
    min-width: 45%;
    clear: both;
    line-height: 16px;
    font-size: 12px;
    margin-top: 4px;
    vertical-align: middle;
    position: relative;
}

.m.scheduler .filters [type="checkbox"]{
    position: absolute;
    top: 0;
    left: 0;
}

.m.scheduler .filters label{
    margin-left: 20px;
}

.m.scheduler .filters label[for="id_rating"],
.m.scheduler .filters label[for="id_has_tags"],
.m.scheduler .filters label[for="id_location"]{
    width: 230px;
    margin-left: 0;
    display: inline-block;
    text-align: right;
}
.m.scheduler .filters label[for="id_has_tags"],
.m.scheduler .filters label[for="id_location"]{
    position: relative;
    top: -12px;
}
.m.scheduler .filters [name="has_tags"],
.m.scheduler .filters [name="location"]{
    width: 300px;
    margin-left: 6px;
}

.m.scheduler .filters p:has(.new-line-element){
    display: block;
}

.m.scheduler ._match_criteria_form .column{
    width: 24%;
    display: none;
}
.m.scheduler .client_criteria.open ._match_criteria_form .column{
    display: block;
}

.m.scheduler .client_criteria .instruction{
    display: none;
    padding-top: 4px;
 }
.m.scheduler .client_criteria.open .instruction{
      display: block;
}

.m.scheduler .client_criteria h2{
    cursor: pointer;
}

.m.scheduler  ._match_criteria_form h4{
    margin-top: 6px;
}

.m.scheduler .client_criteria h2:after{
    content: '\25BC';
    padding-left: 3px;
    font-size: 11px;
}

.m.scheduler .client_criteria.open h2:after{
    content: '\25B2';
}

.m.scheduler .buttons{
    float: right;
    margin-top: -5px;
}

.m.scheduler .button_holder{
    text-align: right;
    margin: 8px 0;
}

.m.scheduler .no_caregivers ._button.find_caregivers,
.m.scheduler .yes_caregivers .buttons ._button{
    color: white;
    text-shadow: none;
    background-color: #D88200;
    background-image: -moz-linear-gradient(center top , #FF9900, #D88200);
    background-image: -webkit-linear-gradient(top , #FF9900, #D88200);
    background-image: linear-gradient(center top , #FF9900, #D88200);
}

.m.scheduler .sched_results.pod{
    padding-bottom: 25px;
}

.m.scheduler .sched_results .result_block{
    border: 1px solid black;
    background-color: #fff;
    margin-top: 10px;
    padding: 0;
    clear: both;
    position: relative;max-height: 450px;
    overflow-y: scroll;
    text-align: left;
    max-height: 450px;
    overflow-y: scroll;
}

.m.scheduler .sched_results .result_block.no_results{
    font-size: 14px;
    text-align: center;
    line-height: 36px;
    color: #fc5009;
}

.m.scheduler .sched_results ._stars{
    font-size: 10px;
}

.m.scheduler .sched_results ._stars .star:not(.selected){
    color: transparent;
}

.m.scheduler .sched_results tr{
    border-bottom: 1px solid #aaa;
    line-height: 21px;
}

.m.scheduler .sched_results tbody tr{
    height: 28px;
}

.m.scheduler .sched_results thead tr{
    height: 28px;
}

.m.scheduler .sched_results .schedules tbody tr{
    height: 28px;
}

.m.scheduler .sched_results td{
    border-right: 1px solid #000;
    padding: 0;
    position: relative;
}

.m.scheduler .sched_results .caregivers{
    width: 400px;
    float: left;
    position: relative;
    border-right: 2px solid #000;
}

.m.scheduler .sched_results .caregivers.added_match_score_column{
    width: 520px;
}

.m.scheduler .sched_results .caregivers.added_match_score_column th.match_score{
    min-width: 90px;
}

.m.scheduler .sched_results .caregivers td{
    padding: 0 4px;
}

.m.scheduler .sched_results th{
    font-weight: bold;
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    border-right: 1px solid #000;
    padding: 0 4px;
}

@media all and (device-width: 768px) and (device-height: 1024px){  /* this kinda sucks -- ipad style */
    .m.scheduler .sched_results .schedules td>div {height: 27px;}
    .m.scheduler .sched_results .result_block {max-height: 1000000px;}
}

.m.scheduler .sched_results .caregivers .name{
    width: 150px;
}

.m.scheduler .sched_results .caregivers .name a{
    white-space: nowrap;
    display: block;
    position: absolute;
    left: 4px;
    top: 0;
    background: white;
    max-width: 100%;
    overflow: hidden;
    z-index: 5;
}

.m.scheduler .sched_results .caregivers .name a:hover{
    z-index: 20;
    max-width: 500px;
}

.m.scheduler .statuses{
    background-color: white;
    position: absolute;
    right: 0;
    top: 1px;
    height: 22px;
    z-index: 10;
}

.m.scheduler .sched_results .caregivers .name a:hover{
    max-width: 500px;
    background-color: #fff;
    z-index: 20;
}

.m.scheduler .sched_results .caregivers .unavailable, .match_criteria_not_met{
    color: red;
}

.m.scheduler .sched_results .caregivers th{
    cursor: pointer;
}

.m.scheduler .sched_results .caregivers th:hover{
    background-color: #e8e8e8;
}

.m.scheduler .sched_results .schedules_container{
    position: relative;
    overflow: auto;
}

.m.scheduler .sched_results .schedules{
    width: 2296px;
    position: relative;
}

.m.scheduler .sched_results .schedules th{
    text-align: center;
    white-space: nowrap;
}


.m.scheduler .sched_results .schedules .event{
    display: block;
    position: absolute;
    top: 0px;
    overflow: hidden;
    height: 75%;
    opacity: 0.5;
}

.m.scheduler .sched_results .schedules .event.proposed{
    background-color: #d2d9fd;
    border-left: 1px dashed #6b7dfb;
    border-right: 1px dashed #6b7dfb;
    height: 100%;
    opacity: 1;
}
.m.scheduler .notify_msg{
    width: 50%;
    position: relative;
}

.m.scheduler .show-timezone-cg-results{

    position: relative;
    width: fit-content;
}

.m.scheduler .show_more{
    margin-top: 10px;
}

/* facilities overtime popup */
.m.facility_ot {
    font-size: 12px;
    line-height: 15px;
    max-width: 702px;
}
.m.facility_ot .field-container {
    margin: 5px;
    padding-left: 10px;
}

.m.facility_ot [type="number"]{
    margin: 0 6px;
    width: 60px;
}

.m.facility_ot select{
    margin: 0 6px;
}

.m.facility_ot .field{
    float: left;
    padding-top: 12px;
    position: relative;
}

.m.facility_ot .field.even{
    clear: left;
    padding-left: 15px;
}

.m.facility_ot .description{
    clear: left;
    font-weight: bold;
    margin-bottom: 0;
}

.m.facility_ot .help_text{
    font-size: 10px;
    color: #666;
    clear: left;
    padding-left: 24px;
}

.m.facility_ot label{
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    position: relative;
    top: 2px;
}

.m.facility_ot .buttons{
    clear: both;
}

.m.facility_ot .buttons ._button{
    float: right;
    margin: 10px 0 10px 14px;
}

.m.facility_ot label[for="id_facility_pay_threshold"]{
    max-width: 240px;
}

/* the wide header currently used on the scheduler page */
.m.widehead{
    position: relative;
    height: 70px;
}

.m.widehead .logo{
    float: left;
    height: 70px;
    overflow: hidden;
    padding-right: 10px;
    border-right: 3px solid #ccc;
    margin-right: 10px;
}

.m.widehead .logo img{
    max-height: 70px;
}

.m.widehead h1{
    color: #2E6E9E;
    font: bold 28px/32px Verdana,Arial,sans-serif;
    position: relative;
    top: 4px;
}

.m.widehead .powered_by{
    display: inline-block;
    position: relative;
}

.m.widehead .helpmenus{
    float: right;
    position: relative;
    top: -34px;
}

.m.widehead .form-builder-link {
    display: inline-block;
    width: 100%;
    min-height: 25px;
    top: -30px;
    position: relative;
  }

.m.widehead .form-builder-link > a {
    float: right;
    font-size: 20px;
    text-decoration: underline;
}

.m.widehead .rebranding-img {
    width: 10.5%;
}

/* quickbooks install instructions */
.quickbooks-integration .instructions li{
    margin-top: 12px;
}

div.ar-scheduling-limit {
    border: 1px solid #333;
    padding: 10px;
}

div.ar-scheduling-limit p {
    color: #000;
}

div.ar-scheduling-limit input {
    float: right;
}

.zentab {
    background-color: #53B7B7;
    border-color: #53B7B7;
    display: block;
    border: 1px solid;
    cursor: pointer;
    position: fixed;
    top: 23%;
    z-index: 10000;
    top: 200px !important;
    border-radius: 6px 0 0 6px;
    box-shadow: 0 0 5px #222222;
    height: 74px;
    width: 30px;
    background-position: left 0;
    right: 0;
}

.zentab:hover {
    text-decoration: none;
}

.zentab span {
    color: #FFFFFF;
    display: block;
    font-style: normal;
    padding-left: 1.8rem;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    cursor: pointer;
}

@media print {
    .zentab{
        display: none;
    }
}

/* beta label and ribbon */
.beta-label {
    color: #fff;
    background-color: #F90;
    border-color: #eea236;
    font-size: 9px;
    font-weight: bolder;
    padding: 3px 8px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-shadow: none;
    margin-left: 5px;
    line-height: normal;
}

.preview-label {
    color: #fff;
    background-color: #090;
    border: none;
    font-size: 7px;
    font-weight: bolder;
    padding: 2px 2px 2px 4px;
    border-radius: 0;
    border-bottom-left-radius: 15px;
    line-height: normal;
    position: absolute;
    top: 0;
    right: 0;
}

.ribbon-wrapper-beta {
  width: 85px;
  height: 88px;
  overflow: hidden;
  position: fixed;
  top: -3px;
  right: -3px;
  z-index: 1024;
}

.ribbon-beta {
  font: bold 15px Sans-Serif;
  color: #333;
  text-align: center;
  -webkit-transform: rotate(45deg);
  -moz-transform:    rotate(45deg);
  -ms-transform:     rotate(45deg);
  -o-transform:      rotate(45deg);
  position: relative;
  padding: 7px 0;
  left: -5px;
  top: 15px;
  width: 120px;
  background-color: #F90;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#F90), to(#F90));
  background-image: -webkit-linear-gradient(top, #F90, #F90);
  background-image:    -moz-linear-gradient(top, #F90, #F90);
  background-image:     -ms-linear-gradient(top, #F90, #F90);
  background-image:      -o-linear-gradient(top, #F90, #F90);
  color: white;
  -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
  -moz-box-shadow:    0px 0px 3px rgba(0,0,0,0.3);
  box-shadow:         0px 0px 3px rgba(0,0,0,0.3);
}

.ribbon-beta:before, .ribbon-beta:after {
  content: "";
  border-top:   3px solid #6e8900;
  border-left:  3px solid transparent;
  border-right: 3px solid transparent;
  position:absolute;
  bottom: -3px;
}

.ribbon-beta:before {
  left: 0;
}
.ribbon-beta:after {
  right: 0;
}

form#salesforce-auth-form {
    display: none;
}

/* Stricly for NPS survey on /dashboard */
.m.recommend_clearcare_survey {
    overflow-y: auto;
}
.m.recommend_clearcare_survey .clear {
    clear: both;
}
.m.recommend_clearcare_survey .required_marker {
    color: #B61111;
}
.m.recommend_clearcare_survey li {
    float: left;
}
.m.recommend_clearcare_survey li.first,
.m.recommend_clearcare_survey label {
    padding-right: 15px;
}
/* End NPS survey CSS */

ul#id_observations {
    display: inline-block;
    width: 75%;
}
a.qoc_button {
    background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    color: #111 !important;
    display: block;
    padding: 10px;
    width: 43%;
    text-align: center;
}

a.is_disabled {
    color:#d3d3d3 !important;
    pointer-events: none !important;
}

.hsp-form #id_hsp-description {
	width: 200px;
}

/* Quality of Care CSS */

.m.qoc.cic-form #qoc_observations_group {
	margin-left: 95px;
	max-width: 309px;
}

.m.qoc.cic-form input[type="text"],
.m.qoc.cic-form textarea {
	width: 294px;
}
.m.qoc.cic-form select {
	width: 300px;
}

.m.qoc.cic-form #qoc_observations_group fieldset {
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-top: 0;
}

.m.qoc.cic-form #qoc_observations_group .legend {
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(244,244,244,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(244,244,244,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(244,244,244,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(244,244,244,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(244,244,244,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(244,244,244,1) 100%);
	border-left: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	border-top: 1px solid #f1f1f1;
	border-bottom: 1px solid #bababa;
	color: #554f45;
	cursor: pointer;
	font-weight: bold;
	margin-bottom: 0;
	padding: 1em;
	position: relative;
}

.m.qoc.cic-form #qoc_observations_group .expanded .legend {
	border-top: 1px solid #fefefe;
	background: rgba(244,244,244,1);
	background: -moz-linear-gradient(top, rgba(244,244,244,1) 0%, rgba(239,239,239,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(244,244,244,1)), color-stop(100%, rgba(239,239,239,1)));
	background: -webkit-linear-gradient(top, rgba(244,244,244,1) 0%, rgba(239,239,239,1) 100%);
	background: -o-linear-gradient(top, rgba(244,244,244,1) 0%, rgba(239,239,239,1) 100%);
	background: -ms-linear-gradient(top, rgba(244,244,244,1) 0%, rgba(239,239,239,1) 100%);
	background: linear-gradient(to bottom, rgba(244,244,244,1) 0%, rgba(239,239,239,1) 100%);
}


.m.qoc.cic-form #qoc_observations_group ul {
	border-top: 1px solid #f1f1f1;
	margin-top: 4px;
	margin-bottom: 4px;
}

.m.qoc.cic-form #qoc_observations_group li {
	border-bottom: 1px solid #eaeaea;
	border-left: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	color: #968c7d;
	padding: 1em;
}
.m.qoc.cic-form #qoc_observations_group li.last {
	border-bottom: 1px solid #b1b1b1;
}

.m.qoc.cic-form #qoc_observations_group input {
	margin-right: .3em;
}

.m.qoc.cic-form #qoc_observations_group .qoc_observations_toggle {
	color: #aaa;
	font-size: 1.3em;
	font-weight: bold;
	position: absolute;
	right: 2em;
	top: 0.5em;
}

.button-check-box {
    background: #eee;
    border: 1px solid #666;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
}
.button-check-box.on {
    background: #ddd;
}

/* Badges */
.badge {
  border-radius: 5px;
  padding: 3px 8px;
  font-size: .75em;
}

.badge.red {
  color: white !important;
  background-color: #C50514;
}

/* Employment Screening */

.registered-users-table {
    margin: 5px;
    font-size: 1.0em;
    font-style: normal;
    border: none;
}

.registered-users-table th {
    font-size: 1.0em;
    font-style: normal;
    font-weight: normal;
    border: none;
}

.registered-users-table tr td {
    background: none;
}

.registered-users-table tr:hover td {
    background: rgba(0,0,0,0.025);
}

.registered-users-table td {
    padding: 3px 6px;
    font-weight: normal;
}

.registered-users-table .ng-submitted.ng-invalid-required{
  border: 1px solid red;
}

form.ng-submitted .ng-invalid-required {
  border: 1px solid red;
}

.employment-screening-packages{
    margin: 15px 0px;
}

.employment-screening-packages .header{
    margin: 10px 0px 5px;
}

.employment-screening-packages .help-text{
    width: 650px;
}

.employment-screening-packages .title{
    font-weight: bold;
}

.select2-results .select2-disabled {
    background: #f4f4f4;
    display: list-item;
    cursor: default;
    color: #ccc;
}

.employment-screening-error-box {
    background: #ecc8c5;
    margin: 5px;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    color: rgb(166, 0, 0);
}

.order-form{
  position: relative;
  font-size: 0.85em;
}

.order-form .left{
  float: left;
  width: 50%;
}

.order-form .right{
  float: right;
  width: 50%;
}

.order-form .field{
  margin: 5px 0px;
}

.order-form .label{
  display: inline;
  margin: 0px 3px;
}

.order-form legend {
    margin-left: 0px;
}

.form-seperator{
   padding: 10px 0px;
   border-bottom: #CCC 1px solid;
}

.order-form label, .order-form input {
    /* in order to define widths */
    display: inline-block;
}

.order-form label {
    width: 30%;
    /* positions the label text beside the input */
    text-align: right;
}

.dialog .ab_start_end_fields input[type="text"][disabled] {
    color: white;
}

.esm-button{
  background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
  align-items: flex-start;
  text-align: center;
  cursor: pointer;
  padding: 2px 6px 3px;
  border: none;
  background-color: none;
}

.careguard, .wotc{
    padding: 5px 8px;
    color: white;
    font-size: 1.0em;
    font-weight: bold;
    border-radius: 15px;
}

.careguard.enabled, .wotc.enabled{
   background: #008000;
}

.careguard.disabled, .wotc.disabled{
   background: #ddd;
   color: #666;
}

.loading-glass-white {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.85);
}

.arrow_box_right {
	position: relative;
	background: #fff;
	border: 1px solid #f5892a;
}
.arrow_box_right:after, .arrow_box_right:before {
	left: 100%;
	top: 25px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box_right:after {
	border-color: rgba(255, 255, 255, 0);
	border-left-color: #fff;
	border-width: 10px;
	margin-top: -10px;
}
.arrow_box_left.comments:before {
    top: 18px;
}
.arrow_box_left.comments:after {
    top: 18px;
}

.arrow_box_right:before {
	border-color: rgba(245, 137, 42, 0);
	border-left-color: #f5892a;
	border-width: 11px;
	margin-top: -11px;
}

.arrow_box_left {
	position: relative;
	background: #fff;
	border: 1px solid #f5892a;
}
.arrow_box_left:after, .arrow_box_left:before {
	right: 100%;
	top: 25px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box_left:after {
	border-color: rgba(255, 255, 255, 0);
	border-right-color: #fff;
	border-width: 10px;
	margin-top: -10px;
}

.arrow_box_left:before {
	border-color: rgba(245, 137, 42, 0);
	border-right-color: #f5892a;
	border-width: 11px;
	margin-top: -11px;
}

.employment-screening-report-tooltip{
  z-index: 10;
  padding: 5px;
  position: absolute;
  left: -180px;
  top: -10px;
  width: 165px;
  height: auto;
  font-size: 0.80em;
  border-radius: 3px;
}

.employment-screening-report-tooltip.right{
  left: 110px;
  top: -10px;
  width: 165px;
}
.employment-screening-report-tooltip.comments{
  left: 40px;
  top: -10px;
  padding-top: 10px;
  min-height: 20px;
  width: 165px;
}

.fade-in-out {
  opacity: 1;
}

.fade-in-out.ng-hide-add.ng-hide-add-active,
.fade-in-out.ng-hide-remove.ng-hide-remove-active {
  -webkit-transition: all linear 0.5s;
  transition: all linear 0.5s;
}

.fade-in-out.ng-hide {
  opacity: 0;
}

.fade-in-out-tooltip {
  opacity: 1;
}

.fade-in-out-tooltip.ng-hide-add.ng-hide-add-active{
  -webkit-transition: all linear 0.5s;
  transition: all linear 0.2s;

  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
  opacity: 0;
}

.fade-in-out-tooltip.ng-hide-remove.ng-hide-remove-active {
  -webkit-transition: all linear 0.1s;
  transition: all linear 0.1s;

}

.fade-in-out-tooltip.ng-hide {

}

.status-tag{
  cursor:pointer;
  margin: 3px;
  padding: 3px 8px;
  border-radius: 3px;
  text-decoration: none;
  background-color: rgba(46, 115, 158, 0.85);
  color: #FFFFFF;
}
.comments-tag{
  position: relative;
  cursor: pointer;
  display: inline-block;
  height: 12px;
  width: 40px;
}
.green-status-tag{
  background-color: rgba(53, 158, 46, 0.85);
}

.red-status-tag{
  background-color: #9E2E2E;
}

.yellow-status-tag{
  background-color: #ffd442;
  color: #000;
}

.gray-status-tag{
  background-color: #ccc;
  color: #000;
 }

.blue-status-tag{
  background-color: rgba(46, 115, 158, 0.85);
  color: #fff;
 }

.basic-table {
  width: 100%;
  margin: 10px 0px;
  font-size: 0.85em;
  border: 1px solid #d3d3d3;
}

.basic-table thead{
  border: 1px solid #d3d3d3;
  background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
  font-weight: normal;
}

.basic-table th{
  border: 1px solid #d3d3d3;
  text-align: left;
  padding: 4px;
  padding-left: 8px;
  font-weight: normal;
}

.basic-table tbody tr:hover{
  background: rgba(255, 255, 0, 0.10);
}

.basic-table tbody td{
  padding: 3px;
  padding-left: 8px;
}

.basic-table tbody tr:nth-child(even){
  background: #ededed;
}

.basic-table tbody tr:nth-child(even):hover{
  background: rgba(255, 255, 0, 0.10);
}

.repeat-animation.ng-enter, .repeat-animation.ng-move {
  -webkit-transition:0.5s linear all;
  -moz-transition:0.5s linear all;
  -o-transition:0.5s linear all;
  transition:0.5s linear all;
  opacity:0;
}


/*
 The ng-enter-active and ng-move-active
 are where the transition destination properties
 are set so that the animation knows what to
 animate.
*/
.repeat-animation.ng-enter.ng-enter-active,
.repeat-animation.ng-move.ng-move-active {
  opacity:1;
}

/*
  We're using CSS keyframe animations for when
  the leave event is triggered for the element
  that has the .repeat-animation class
*/
.repeat-animation.ng-leave {
  -webkit-animation:0.5s my_animation;
  -moz-animation:0.5s my_animation;
  -o-animation:0.5s my_animation;
  animation:0.5s my_animation;
}

.repeat-animation.ng-enter-stagger,
.repeat-animation.ng-leave-stagger,
.repeat-animation.ng-move-stagger {
  /* notice how we're using animation instead of transition here */
  -moz-animation-delay:0.15s;
  -webkit-animation-delay:0.15s;
  animation-delay:0.15s;

  /* yes we still need to do this too */
  -moz-animation-duration:0;
  -webkit-animation-duration:0;
  animation-duration:0;
}

@keyframes my_animation {
  from { opacity:1; }
  to { opacity:0; }
}

/*
  Unfortunately each browser vendor requires
  its own definition of keyframe animation code...
*/
@-webkit-keyframes my_animation {
  from { opacity:1; }
  to { opacity:0; }
}

@-moz-keyframes my_animation {
  from { opacity:1; }
  to { opacity:0; }
}

@-o-keyframes my_animation {
  from { opacity:1; }
  to { opacity:0; }
}

.input-min-max-number.ng-invalid-min {
    border-color: #e9322d;
    -webkit-box-shadow: 0 0 6px #f8b9b7;
    -moz-box-shadow: 0 0 6px #f8b9b7;
    box-shadow: 0 0 6px #f8b9b7;
}

.input-min-max-number.ng-invalid-max {
    border-color: #e9322d;
    -webkit-box-shadow: 0 0 6px #f8b9b7;
    -moz-box-shadow: 0 0 6px #f8b9b7;
    box-shadow: 0 0 6px #f8b9b7;
}

.input-error-container {
    border: 1px solid transparent;
}
.input-error-chrome{
    border: 1px solid red;
}

.staff-screen-delete {
    position: relative;
    left: -200px;
}

.toast {
    opacity: 1 !important;
}

/*We'd better move the below CSS rules for worksafe in their own file*/
#worksafe-central-page {
    padding: 10px 20px;
}

#worksafe-central-page h4,
#worksafe-central-page h4 a {
    margin-bottom: 0;
    color: #E17009;
    font-size: 12pt;
    font-family: Verdana, Arial, sans-serif;
}

#worksafe-central-page div {
    color: #2E6E9E;
    font-size: 10pt;
    font-family: Verdana, Arial, sans-serif;
}


#fcfs-footer .italicize-message {
    font-size:10px;
}

#fcfs-footer .content {
	border: solid 1px black;
    font-size:12px;
    padding: 3px;
}

#fcfs-footer .content .italicize {
    font-style: italic;
}

.fcfs-message{
    color: #D88200;
}

input[type=checkbox].label_right {
    float: left;
}

.marginTop5p {
    margin-top: 5px !important;
}

._ptip.width300P {
    width: 300px;
}

.btn-run-new-report{
    display: block;
    width: 185px;
    height: 25px;
    line-height: 25px;
    background: #4E9CAF;
    text-align: center;
    border-radius: 5px;
    border: none;
    color: #fff;
    font-weight: bold;
}
.btn-run-new-report:hover{
    text-decoration: none;
}

.btn-synzi {
    display: block;
    width: 115px;
    height: 20px;
    background: #4E9CAF;
    text-align: center;
    border-radius: 5px;
    color: white;
    font-size: smaller;
    font-weight: bold;
    padding: 2px;
}

.btn-synzi:hover{
    text-decoration: none;
}

.btn-synzi span {
    position: relative;
    bottom: 4px;
}

.btn-synzi .material-icons {
    font-size: 1.2rem;
}

#bulk-invite a:not([disabled]){
    color: #D88200;
    animation: blinker 1s linear;
    animation-iteration-count: 3;
}

.stopwatch-color{
    width: 15px;
    height: 15px;
    vertical-align: middle;
}
.fc-event-title i.stopwatch-white{
    display: inline-block;
    background: url("../img/stopwatch-white.svg") no-repeat top left;
    width: 10px;
    height: 10px;
    vertical-align: middle;
}

.tag-mapping-wizard-title {
    background: #FFB;
    border: none;
    border-bottom: 1px solid #AAA;
    background: 0;
    border-radius: 0;
}

.tag-mapping-wizard-title .tag-mapping-wizard-new {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 85%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    vertical-align: baseline;
    border-radius: .25em;
    background-color: #2A2;
}

@keyframes blinker {
  50% { opacity: 0; }
}
/* Fixes IE adding giant 'X' button to inputs */
::-ms-clear { display: none; }


.referral-notifications {
    position: absolute;
    visibility: hidden;
    display: block;
    height: 14px;
    line-height: 14px;
    padding: 0 4px;
    border-radius: 2px;
    color: #fff;
    right: -5px;
    top: -3px;
    font-size: 11px;
    text-align: center;
    background: -webkit-linear-gradient(-45deg, #ff5b8f 0%, #ff1a1a 100%);
    background: linear-gradient(135deg, #ff5b8f 0%, #ff1a1a 100%);
    z-index: 1;
}

/* Patient Profile Community Room Details */
#_patientProfileRoomDetails p:nth-child(odd) {
    margin-top: 20px;
}

._picture_management_list {
    margin-top: .5em;
    padding: 0;
    border: 1px solid #aaa;
    border-radius: 5px;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 300px;
}

._picture_management_list_item {
    padding: 15px;
    list-style-type: none;
    overflow: auto;
}

._picture_shown {
    max-width: 150px;
    max-height: 100px;
    border: 1px solid #aaa;
    padding: 5px;
    background-color: rgb(165, 244, 247);
}

._picture_hidden {
    max-width: 150px;
    max-height: 100px;
    border: 1px solid #aaa;
    padding: 5px;
    background-color: rgb(255, 167, 109);
}

._picture_management_list_item {
    font-size: 0.9em;
}

._picture_management_list_item:nth-child(even) {
    background-color: #f0f0f0;
}

._picture-post-left, ._picture-post-right {
}

._picture_comment {
    display: inline-block;
    width: inherit;
    text-align: center;
    font-size: 12px;
    margin: 3px;
}

._picture-post-left {
    width: 160px;
    float: left;
    margin-right: 5px;
    text-align: center;
}

._picture-post-left a {
    padding: 0;
    margin: 0;
}

._picture-post-right p {
    text-align: center;
}

.set-picture-hidden {
    color: #2E6E9E;
    text-align: center;
    cursor: pointer;
}

._picture_loading {
    text-align: center;
    margin-top: 50px;
    font-size: 1.5em;
    color: #409595;
}

/* Pure CSS loading dots : Jeff Codling */
._picture_loading:after {
    content: ' .';
    animation: dots 1s steps(5, end) infinite;}

  @keyframes dots {
    0%, 20% {
      color: rgba(0,0,0,0);
      text-shadow:
        .25em 0 0 rgba(0,0,0,0),
        .5em 0 0 rgba(0,0,0,0);}
    40% {
      color: #409595;
      text-shadow:
        .25em 0 0 rgba(0,0,0,0),
        .5em 0 0 rgba(0,0,0,0);}
    60% {
      text-shadow:
        .25em 0 0 #409595,
        .5em 0 0 rgba(0,0,0,0);}
    80%, 100% {
      text-shadow:
        .25em 0 0 #409595,
        .5em 0 0 #409595;}}

a.daily-logs-nav-disabled, a.edit-expense-disabled {
    display: block;
    pointer-events: none !important;
    color: #333 !important;
}
  .chat-btn-wrapper{
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 70%), 0 2px 4px -1px rgb(0 0 0 / 6%);
    border-radius: 0.5rem;
    opacity: 1;
    background-color: #228189 !important;
    bottom: 0px;
    margin-right: 10px;
    margin-bottom: 10px;
    right: 0px;
    position: fixed;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    display: none;
    border-radius: 50%;
  }
  .chat-btn-wrapper .notification-icon{
    position: relative;
    top: -22px;
    right: -24px;
    background: rgb(210, 38, 40);
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    color: rgb(255, 255, 255);
    font-weight: 500;
    text-align: center;
    font-size: 12px;
    display: none
}
.chat-btn-wrapper.clicked .notification-icon{
    display: none !important;
}

svg.iconButton {
    color: white;
    height: 20px;
    width: 18px;
}

@media only screen and (min-width: 1745px) and (min-height: 490px){
    svg.iconButton {
        height: 28px;
        width: 26px;
    }

    .chat-btn-wrapper{
        width: 60px;
        height: 60px;
    }
}
.message-icon{
    position: absolute;
    opacity: 1;
    transform: translate3d(0px, 0%, 0px) scale(1) rotate(0deg);
    transition: .4s;
}
.chat-btn-wrapper .down-arrow{
    position: absolute;
    opacity: 0;
    transform: translate3d(0,-100%,0) scale(0) rotate(45deg);
    transition: .4s;

}
.chat-btn-wrapper.clicked .down-arrow{
    position: absolute;
    opacity: 1;
    transform: translate3d(0px, 0%, 0px) scale(1) rotate(0deg);
}
.chat-btn-wrapper.clicked .message-icon{
    position: absolute;
    opacity: 0;
    transform: translate3d(0,-100%,0) scale(0) rotate(45deg);


}
.holds-the-iframe{
    display: none;
    position: fixed;
    z-index: 999;
    bottom:90px;
    right:20px;
    border:none;
    width: 365px;
    height:700px;
    max-height: 75%;
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    background-color: white !important;

}
#chat-container{
    display: none;
    position: relative;
    width:100%;
    border:none;
    height: 100%;

}


#profile-merge-dialog {
    padding: 0.5em;
}
#profile-merge-dialog .profile-merge-title {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 21px;
    margin-top: 10px;
}
#profile-merge-dialog #profile-merge-list-wrapper {
    padding: 0.5em;
}
#profile-merge-dialog #profile-merge-list-wrapper #profile-merge-list .profile-merge-row {
    padding: 16px 15px;
    float: left;
    margin-bottom: 20px;
    display: table-row;
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(245, 245, 245, 0.62);
    border-radius: 2px;
}
#profile-merge-dialog #profile-merge-list-wrapper #profile-merge-list .profile-merge-row .profile-name-wrapper {
    padding-left: 10px;
    color: #2e6e9e;
    font-weight: 700;
    font-size: 14px;
}
#profile-merge-dialog #profile-merge-list-wrapper #profile-merge-list .profile-merge-row .profile-name-wrapper a:hover{
    text-decoration: underline;
}
#profile-merge-dialog #profile-merge-list-wrapper #profile-merge-list .profile-merge-row .last-update-wrapper {
    padding-left: 21px;
    font-size: 12px;
    font-weight: 400;
    font-size: 12px;
    color: #3d5463;
    float: right;
}
#profile-merge-dialog #profile-merge-tabs {
    border: none;
    padding: 0;
    height: 100%;
}
#profile-merge-dialog #profile-merge-tabs .tab-data {
    box-sizing:border-box;
    height: calc(100% - 35px);
    overflow: auto;
    padding: 0.5em;
}
#profile-merge-dialog #profile-merge-tabs .tab-data .content-wrapper{
   float: left;
   width: 100%;
   box-sizing: border-box;
}
#profile-merge-dialog #profile-merge-tabs .tab-data table {
    width: 100%;
    font-size: 12px;
}
#profile-merge-dialog #profile-merge-tabs .tab-data table thead {
    background: #d9d9d9;
}
#profile-merge-dialog #profile-merge-tabs .tab-data table thead th {
    padding: 7px;
    font-style: normal;
    font-weight: 700;
    border-bottom: 1px solid #d9d9d9;
}
#profile-merge-dialog #profile-merge-tabs .tab-data table thead th:nth-child(2) {
    border-right: 1px solid rgba(61, 84, 99, 0.5);
    border-collapse: collapse;
}
#profile-merge-dialog #profile-merge-tabs .tab-data table tbody tr td {
    padding: 7px;
}
#profile-merge-dialog #profile-merge-tabs .tab-data table tbody tr td:nth-child(2) {
    border-right: 1px solid rgba(61, 84, 99, 0.5);
    border-collapse: collapse;
}
#profile-merge-dialog #profile-merge-tabs .tab-data table tbody tr:nth-child(even) {
    background: #f8f8f8;
}
#profile-merge-dialog #profile-merge-tabs .ui-tabs-nav {
    background: none;
    border: none;
}
#profile-merge-dialog #profile-merge-tabs .ui-tabs-nav li {
    color: #3d5463;
    font-size: 14px;
    background: none;
    border: none;
    border-bottom: 1px solid #e4e7e9 !important;
    margin: 0;
    padding-bottom: 0;
    border-radius: 0;
}
#profile-merge-dialog #profile-merge-tabs .ui-tabs-nav li a {
    padding: 1em;
}
#profile-merge-dialog #profile-merge-tabs .ui-tabs-nav li.ui-tabs-selected {
    font-weight: 500;
    font-size: 14px;
    color: #228189;
    border-bottom: 1px solid #228189 !important;
    background: #e4e7e9;
}
#profile-merge-dialog #profile-merge-tabs .ui-tabs-nav li.ui-tabs-selected a {
    color: #228189;
}
#profile-merge-next:disabled {
    opacity: 0.5;
}

#profile-merge-skills .cert-wrapper {
    border: 1px solid rgba(118, 118, 118, 0.5);
    border-radius: 2px;
    padding: 6px 5px;
    padding-bottom: 15px;
}
#profile-merge-skills .cert-wrapper .label-cert {
    font-weight: 700;
    font-size: 13px;
    color: #585858;
    padding: 5px 0px 10px 0px;
}
#profile-merge-skills .cert-wrapper table {
    border: 1px solid #b4b3b4;
}
#profile-merge-skills .cert-wrapper table th {
    text-align: left;
    border: none !important;
}
#profile-merge-skills .cert-wrapper table tr {
    border-bottom: 1px solid #b4b3b4;
}
#profile-merge-skills .cert-wrapper table td {
    border: none !important;
}


#profile-merge-skills .employment-wrapper {
    border: 1px solid rgba(118, 118, 118, 0.5);
    border-radius: 2px;
    padding: 6px 5px;
    margin-top: 20px;
    margin-bottom: 20px;
    float: left;
    width: 100%;
    box-sizing: border-box;
}

#profile-merge-skills .employment-wrapper .label {
    font-weight: 700;
    font-size: 13px;
    color: #585858;
    padding: 5px 0px 10px 0px;
}
#profile-merge-skills .employment-wrapper .row-wrapper{
    margin-bottom: 10px;
    float:left;
    width: 100%;
}
#profile-merge-skills .employment-wrapper .employment-row {
    display: table-row;
    background: #F6F7F7;
    border-radius: 2px;
}
#profile-merge-skills .employment-wrapper .employment-row .employment-col {
    display: table-cell;
    padding: 10px 0px;
    vertical-align: top;
}
#profile-merge-skills .employment-wrapper .employment-row .employment-col .employment-form-item {
    width: 15%;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
    vertical-align: top;
}
#profile-merge-skills .employment-wrapper .employment-row .employment-col .employment-form-item .employment-form-label {
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    color: #666;
    margin-bottom: 5px;
}
#profile-merge-skills .employment-wrapper .employment-row .employment-col .employment-form-item .employment-form-value {
    background: #e4e7e9;
    border-radius: 2px;
    color: #4a4a4a;
    font-size: 13px;
    padding: 6px 12px;
    min-height: 16px;
}
#profile-merge-files .content-wrapper table {
    border: 1px solid #b4b3b4;
}
#profile-merge-files .content-wrapper table th {
    text-align: left;
    border: none !important;
}
#profile-merge-files .content-wrapper table tr {
    border-bottom: 1px solid #b4b3b4;
}
#profile-merge-files .content-wrapper table td {
    border: none !important;
}
#profile-merge-applicants .content-wrapper table th,#profile-merge-applicants .content-wrapper table td{
    border:none !important;
    padding-left: 30px !important;
    text-align: left;
}

#profile-merge-applicants .content-wrapper table th:first-child{
    border-right:1px solid rgba(61, 84, 99, 0.5) !important;
}
#profile-merge-applicants .content-wrapper table td:first-child{
    border-right:1px solid rgba(61, 84, 99, 0.5) !important;
}

form #profile_certifications.aligned .apply-cert-reqd-fields label {
    width: auto;
}
form #profile_certifications.aligned ul {
    margin-left: 0;
    padding-left: 0;
}
form #profile_certifications.aligned  .type-display{
    padding-left: 20px;
}
.profile-certification-apply-tbl thead tr{
    height: 44px;
    background: #D7D7D7;
}
.profile-certification-apply-tbl .certification-row .active-chkbox{
    vertical-align: top;
    padding-top: 10px;
}
.profile-certification-apply-tbl .certification-row .profile-cert{
    vertical-align: top;
    padding-top: 10px;
    padding-bottom: 10px;
}
.profile-certification-apply-tbl .certification-row .profile-cert{
    vertical-align: top;
    padding-top: 10px;
    padding-bottom: 10px;
}
.profile-certification-apply-tbl .certification-row {
    border: 1px solid #F0F0F0;
}
.profile-certification-apply-tbl .certification-row .profile-cert-mand-fiels{
    vertical-align: top;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
}
.profile-certification-apply-tbl .certification-row .apply-cert-reqd-fields{
    margin-right: 10px;
}

.form.carelog-form .static-schedule-display{
    font-weight: 700;
    color: black;
    margin: 10px 0px;
    padding-left: 85px;
    width: 600px;
    box-sizing: border-box;
}
.form.carelog-form .static-schedule-display span{
    color: #727272;
    font-size: 12px;
    font-weight: 400;
}

.m.bulk_add_carelogs .show-timezone-enabled .static-schedule-display{
    position: relative;
    top:-21px;
    padding-left: 0px;
    padding-left: 0px;
    display: inline-block;
    width: auto;
    margin: 0;
    height: 40px;
    display: none;
}
 .m.bulk_add_carelogs .carelog-form.show-timezone-enabled .tz-display{
    padding:0px !important;
}
.m.bulk_add_carelogs .carelog-form.show-timezone-enabled .status {
    position: relative;
    top: 55px;
}
.m.bulk_add_carelogs .carelog-form.show-timezone-enabled .mileage_link {
    top: 170px;
}

.m.bulk_add_carelogs .carelog-form.has_errors.show-timezone-enabled .mileage_link {
    top: 225px;
}
.caregiver-rate-loader,.client-rate-loader{
    display: none;
}
.clearcare-ava-embed{
            width:100%;
            height: 100%;
        }

.hide-min-char-wrapper{
    display: none;
}
label[for='id_client_shift_notes_min_char_len']{
    color: #333 !important
}

.client_notes{
    min-height: 200px;
}
.client-notes-header{
    width:100%;
    margin-bottom: 10px
}
.client-notes-action {
    float: left;
}

.client_notes .client_notes_table {
    width: 75%;
    float: right;
}
.client_notes .client_notes_table table.list span.smaller {
    font-size: 10px;
}
.client-notes-deleted{
    opacity: 0.5;
    pointer-events: none;
}
.client_notes .client-notes-deleted .action-btn{
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: #333;
}
.related-to-value {
    height: 22px;
    border: 1px solid #aaa;
    width: 200px;
    padding: 0px 2px;
    display: inline-block;
    font-size: 1em;
    line-height: 22px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
#id_is_visible_to_caregiver{
    margin-top: 6px;
}
#client-notes-form #client-note-form .errorlist{
    padding-left: 155px;
}
.client_notes .activity_filter {
    width: 23%;
    float: left;
}
.client_notes .activity_filter ul{
    margin: 0;
    padding: 5px;
    list-style-type: none;
}
.client_notes .activity_filter li{
    font-size: 11px;
}

.client_notes .activity_filter ul ul{
    margin-left: 15px;
    padding: 0;
}
.client_notes .action-btn {
    height: 24px;
    width: 28px;
    padding: 0;
}
td.visible_to_caregiver, td.action_buttons, th.visible_to_caregiver, th.action_buttons{
    text-align: center !important;
}
.client-note-filter-wrapper{
    float: right;
}
.client-note-filter-wrapper label {
    top: -2px;
    position: relative;
}
#remaining-character-wrap{
    float: right;
    padding-right: 21px;
    position: relative;
    display: block;
    clear: both;
    width: 100%;
    text-align: right;
    color:#727272
}
#client-notes-form #id_date_lable{
    cursor: default;
    background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(59, 59, 59, 0.3));
    color: light-dark(rgb(84, 84, 84), rgb(170, 170, 170));
    border-color: rgba(118, 118, 118, 0.3);
    height: 22px;
    border: 1px solid #aaa;
    width: 200px;
    padding: 0 2px;
    display: inline-block;
    font-family: Verdana, Arial, sans-serif;
    font-size: 1em;
    line-height: 22px;

}

.eligible_to_hire_icon_wrapper{
    float: left;
    cursor: pointer;
}

.tags-preselected{
    pointer-events: none !important;
}

.tags-preselected .search-choice-close{
    display: none !important;
}

.m.client_authorization #auth_schedule_table .weekdays{
    width: 100px;
}

.m.client_authorization #auth_schedule_table .weekdays div div{
    padding-bottom: 5px;
}


.m.client_authorization #auth_schedule_table .weekdays-time-schedule input{
    width: 85px;
    height: 18px
}

#id_preferred_method {
    padding-left:0px;
}


#id_repeat_on {
    display:inline-flex;
}

#auth_schedule_table .weekdays #id_repeat_on.repeat_on{
    display: inline-block;
}

#id_allow_ad_hoc_telephony, #id_allow_ad_hoc_mobile, #id_allow_ad_hoc_carelogs {
   display: inline-flex;
}
._schedule_form #id_repeat_on.repeat_on{
    display: inline-block ;
    width: calc(100% - 150px);
}
._schedule_form #id_repeat_on.repeat_on div{
    float: left;
}

._schedule_form #id_repeat_on.repeat_on label{
    width: auto;
    display: inline-block;
    margin: auto;
    margin-top: 8px;
}
.clock_in_out.chbox_list #id_send_missed_clock_out_alerts, 
.questions.accounting #id_yes_to_overtime,
.invoicing.chbox_list.group_w_prev #id_invoice_summarize_community_care,
.invoicing.chbox_list.group_w_prev #id_invoicing_compact_layout,
.invoicing.chbox_list #id_invoicing_add_surcharge,
.invoicing.chbox_list #id_invoicing_charge_interest,
.invoicing.chbox_list #id_invoicing_tax_carelogs,
.invoicing.chbox_list #id_invoicing_allow_email_option,
.invoicing.chbox_list #id_enable_agency_address,
.clock_in_out.chbox_list #id_forbid_mobile_clock_in,
.clock_in_out.chbox_list #id_allow_caregiver_mobile_phone_clockins,
.clock_in_out.chbox_list #id_tomorrow_shifts_emails{
    display: inline-flex;
}

.chbox_right li.optional{
    display: inline-block;
    clear: both;
    float: left;
}
.chbox_right li.optional label{
    float: right;
}
.chbox_left{
   
    float: left;
}
