/*/ Place all the styles related to the tree_editor controller here.*/
/*/ They will automatically be included in application.css.*/
/*/ You can use Sass (SCSS) here: http://sass-lang.com/*/

body {
    margin: 0;
    font-family: Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;
    font-size: 14px;
    color: #333;
    height: 100%;
    background-color: #fff;
}

.pull-right {
    float: right;
}

.flex-right {
    margin-left: auto;
}

.text-right {
    text-align: right;
}

.bold {
    font-weight: bold;
}

a.bold {
    color: black;
}

#editor {
    border: 1px solid #e4e4e4;
    clear: both;
    background-color: #ffffff;
    padding: 50px 5px;
}

ul.tree li .dragger {
/ / position: relative;
/ / float: right;
}

ul.tree li {
    list-style: none;
    cursor: pointer;
    margin-left: 10px;
}

ul.tree ul.compressed {
    display: none;
}

ul.tree span.expander {
    font-family: icomoon;
    cursor: pointer;
}

.symbol {
    font-family: icomoon;
    color: black;
}

ul.tree .adder {
    font-style: normal;
    text-decoration: none;
    font-size: 10px;
    color: #73c5eb;
}

ul.tree .adder .symbol {
    color: #73c5eb;
}

.small {
    font-size: 9px;
}

.sections {
    margin-top: 5px;
}

.editor-column .section {
    background-color: #f2f2f2;
    border: 1px solid #e5e5e5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    /*  behavior: url(/www_ps/assets/css/css3pie.htc); */
}

.section > .title {
    color: #dd4814;
    padding-left: 3px;
    font-weight: bold;
    margin-top: 7px;
    display: inline-block;
    margin-bottom: 3px;
}

.section .title.Medical, .section .title.Social, .section .title.Medications {
    text-decoration: underline;
}

.section .title.Social, .section .title.Medications {
    margin-top: 20px;
}

.section .questions.indented .question:not(:first-child) .title {
    margin-left: 10px;
}

.section .investigation-section-header {
    background-color: #a1a1a1;
    color: white;
    font-size: 12px;
}

.section .question {
    min-height: 22px;
    clear: both;
}

.section > .add, .section > .quick-question {
    display: none;
}

.section:hover > .add, .section:hover > .quick-question {
    display: inline-block;
}

.section .hidden .title, .section .hidden .title a, .section .hidden .name, .section .hidden .details, .section .hidden .tips {
    color: gray;
}

.section .hidden .answer, .section .hidden .answer a {
    color: gray;
}

.answer .message {
    /*  behavior: url(/www_ps/assets/css/css3pie.htc); */
    border-radius: 4px;
    background-color: red;
    color: #f8f8ff;
    font-size: 13px;
    font-weight: normal;
    margin-top: 3px;
    margin-bottom: 3px;
    display: none;
    padding: 5px;
    width: 400px;
    float: right;
}

.answer .has-message {
    border-bottom-color: red;
    border-bottom-style: dashed;
    border-bottom-width: 1px;
}

.answer .has-conditional-flag {
    border-bottom-color: yellow;
    border-bottom-style: dashed;
    border-bottom-width: 1px;
}

.section .questions .question .expanded_info {
    display: none;
    border: 1px solid #cccccc;
    background-color: white;
    padding: 7px;
}

.section .questions .question .expanded_info li {
    list-style: none;
}

.section .questions .question .parent-question {
    display: block;
    margin: 10px;
    border: 1px solid #f2f2f2;
    font-size: 12px;
    padding: 7px;
    background-color: #f2f2f2;
}

.section .questions .question .parent-question .title {
    color: #450077;
    font-size: 13px;
}

.section .questions .question .answer-details {
    display: block;
    margin: 10px;
    border: 1px solid #f2f2f2;
    font-size: 13px;
    padding: 7px;
    background-color: #f2f2f2;
}

.section .questions .question:hover .answer-details .title {
    color: #450077;
    font-size: 13px;
}

.section .questions .question .answer-details .add-sub {
    display: none;
}

.section .questions .question .answer-details li:hover .add-sub {
    display: inline;
}

.section .questions .question .options {
    text-align: right;
    position: absolute;
    float: right;
    width: 125px;
    font-size: 13px;
    display: none;
    margin-right: 3px;
    font-family: icomoon;
    right: 2px;
}

.section .questions .question .options a,
.section .questions .question .options span,
.section-options a {
    text-decoration: none;
}

.section .question-wrapper:hover {
    background-color: #eee;
}

.section .questions .question:hover .options {
    display: inline-block;
    margin-right: 3px;
}

.section .answers > .answer {
    display: inline;
}

.section .one-answer-per-line .answer {
    display: block;
}

.section .question-edit {
    display: block;
}

.section .answer .answer-edit {
    display: block;
    vertical-align: middle;
}

.section .answer .answer-edit .message {
    margin-top: 22px;
}

.section .question .results {
    width: 100%;
    height: 50px;
}

/** Question/Answer Editor Layout Styles **/
.question-creator {
    background-color: #f1f1f1;
    padding: 7px;
}

.question-creator .line {
    margin-top: 11px;
}

.question-creator .question-name {
    width: 70%;
}

.question-creator .answers {
    list-style: none;
    background-color: white;
    padding: 7px;
    border: 1px solid #cfcfcf;
    overflow: auto;
    max-height: 400px;
}

.question-creator .answers li {
    list-style: none;
    padding: 3px;
    border-bottom: 1px solid #c3c3c3;
    margin-left: 1px;
}

.question-creator .answers li:nth-child(odd) {
    background-color: #f3f3f3;
}

.question-creator .conditional-additional {
    visibility: hidden;
}

.question-creator .conditional-additional .instruction {
    font-size: 10px;
}

.question-creator .handle {
    display: inline-block;
    border: 1px solid #c3c3c3;
    padding: 1px;
    position: relative;
    margin: 7px;
    float: left;
    cursor: pointer;
    font-size: 16px;
    font-family: icomoon;
}

.questions .handle {
    font-family: icomoon;
    font-size: 13px;
    cursor: pointer;

}

.questions:hover .handle {
    display: inline-block;
}

.questions .handle {
    display: none;
}

.question-creator .answers label {
    margin-left: 11px;
}

.question-creator .answer_label {
    width: 70%;
}

.question-creator .note {
    font-size: 11px;
}

.question-creator .no-answers-necesary, .question-creator .auto-complete-configuration {
    display: none;
}

.question-creator .tips, .question-creator .details, .question-creator .clinic-code, .question-creator .clinic-name {
    width: 80%;
}

.notes-container {
    padding-left: 3px;
}

.notes-container .notes {
    width: 450px;
}

.node-config .line {
    margin-left: 3px;
}

.node-config a:not(.chosen-single) {
    text-decoration: none;
    font-family: icomoon;
}

.node-config .name {
    width: 70%;
}

.node-config .tags {
    width: 70%;
}

.node-config .message {
    width: 80%;
}

/* Risk - Assessment Dialog */
.risk-list {
    /*width: 150px;*/
    font-size: 10px;
}

.risk-list .risk-list-title {
    font-weight: bold;
    margin-bottom: 7px;
    color: #a0a0a0;
}

.risk-list .risk-item {
    display: block;
    clear: both;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.risk-list .risk-item .risk-item-title {
    /*display:block;*/
    /*width: 150px;*/
    /*float:left;*/
}

.risk-list .risk-item input {
    /*float:right;*/
}

.risk-pane, .risk-pane-bottom {
    border: 1px solid #c0c0c0;
    position: relative;
    padding: 7px;
}

.risk-pane .risk-pane-title {
    font-size: 12px;
    font-weight: bold;
    color: #247d95;
    clear: both;
}

.risk-pane .left-column {
    /*border-right: 1px solid #c0c0c0;*/
    padding: 7px;
    /*float:left;*/
    /*width:150px;*/
}

.risk-pane .right-column {
    padding: 7px;
    /*float:right;*/
    /*width:150px;	*/
}

.risk-assessment-blue {
    color: #0f3fc4;
}

.ra-dialog {
    position: relative;
    /*overflow:scroll;*/
    /*height: 400px;*/
}

.ra-dialog .ra-scroll-contain {
    height: 80%;
    position: relative;
    overflow: auto;
}

.ra-dialog .ra-question {
    clear: both;
    height: 10%;

}

.ra-dialog .ra-dialog-left {
    /*float:left;*/
    /*width:370px;*/
    margin-bottom: 10px;
}

.ra-dialog .ra-dialog-right {
    /*float:right;*/
    /*width:370px;*/
    margin-bottom: 10px;
}

.ra-dialog .ra-dialog-bottom {
    clear: both;
    position: relative;
}

.risk-pane-bottom {
    float: left;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.risk-pane-bottom .left-column, .risk-pane-bottom .right-column {
    float: left;
}

.info-list {
    width: 330px;
    margin-right: 20px;
}

.info-list li {
    /*list-style-position: inside;*/
    margin-left: 15px;
}

.info-list .info-list-title {
    font-size: 11px;
    font-style: italic;
    font-weight: bold;
    color: #2249c7;
}

.info-list .info-list-items {
    color: #2249c7;
}

.info-list .info-item {
    font-size: 11px;
}

.info-list .info-item-title {
    color: black;
    font-size: 10px;
}

.final-notice {
    /*float:right;*/
    /*width:213px;*/
    /*border-left: 1px solid #c0c0c0;*/
    /*padding-left:7px;*/
}

.final-notice .title {
    font-size: 10px;
    font-weight: bold;
    color: #a0a0a0;
}

.final-notice .message {
    font-size: 10px;
    margin-top: 10px;
    /*margin-bottom:20px;*/
}

.final-notice label {
    font-size: 11px;
}

.explanation-dialog textarea {
    width: 88%;
    height: 170px;
}

.patient-banner {
    /*background-color:*/
}

.proforma-selection .inner {
    position: relative;
}

.proforma-selection .header {
    font-size: 12pt;
    color: #6c006b;
    background-color: transparent;
    padding: 10px;
    height: 18px;
    font-weight: bold;
}

.proforma-selection .diagnosis-body {
    background-color: #f2f2f2;
    border: 1px solid #dddddd;
    border-radius: 5px;
    margin-top: 3px;
    padding: 5px;
}

.proforma-selection a {
    text-decoration: none;
}

.proforma-selection li {
    margin-left: 10px;
    list-style: none;
}

.quick-proforma-search {
    font-size: 16px;
    color: white;
    font-weight: bold;
}

.visual-proforma-search, .proforma-choices, .proforma-diagnoses {
    background-color: white;
    border: 1px solid #dddddd;
    height: 320px;
    overflow: scroll;
    margin-bottom: 5px;
}

.proforma-choices {
    width: 585px;
    float: right;
}

.proforma-diagnoses {
    height: 73px;
    margin-bottom: 0px;
    width: 585px;
    clear: right;
    float: right;
}

.visual-proforma-search {
    height: 500px;
    width: 295px;
    margin-bottom: 0px;
    overflow: hidden;
    text-align: center;
    margin-left: 0px;
    float: left;
}

.proforma-choices ul {
    margin-left: 0px;
    list-style: none;
}

.diagnosis-header {
    position: relative;
    background-color: #081D3E; /*url(/www_ps/assets/images/progress_bg.png) repeat-x;*/
    height: 34px;
    padding-top: 4px;
    line-height: 30px;
    vertical-align: middle;
}

.diagnosis-header .count {
    float: left;
    margin-left: 7px;
    border-radius: 4px;
    background-color: #f2f2f2;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    width: 35px;
    text-align: center;
    padding-left: 4px;
    padding-right: 4px;
    /*  behavior: url(/www_ps/assets/css/css3pie.htc); */
}

.diagnosis-header .title {
    float: left;
    width: 600px;
    font-size: 16px;
    font-weight: bold;
    margin-left: 20px;
    color: #f2f2f2;
}

.diagnosis-header .quick {
    float: right;
    margin-right: 20px;
    font-size: 14px;
    margin-top: 0px;
}

.proforma-selection .dent-manikin-viewer > div > div {
    margin: auto;

}

.question .answers .answer .longtext {
    resize: both;
    width: 99%;
    height: 69px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid lightgrey;
    padding: 5px;
    background: white;
    border-radius: 4px;
}

.proforma .question .answers .answer .text {
    width: 240px;
}

.section .notes-container .notes {
    width: 580px;
    height: 60px;
}

.proforma .question .results {
    width: 100%;
    height: 50px;
}

.outcome-container {
    width: 300px;
}

.outcome {
    clear: both;
    margin: 20px;
}

.outcome .title {
    background-color: black;
    padding-left: 10px;
    color: white;
    font-weight: bold;
    font-size: 14px;

}

.next-back {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 5px;
    margin-bottom: 10px;
    z-index: 90;
}

.next-back .next {
    float: right;
}

.next-back .back {
    float: left;
}

.record-options .cancel {
    margin-left: 5px;
}

.completer {
    float: right;
    z-index: 100;
}

.completer .button {
    margin-left: 5px;
}

.proforma-choice, .proforma-choice-container {
    background-color: white;
}

.proforma-selection .next-button {
    text-align: right;
    margin-top: 7px;
    margin-bottom: 10px;
    width: 50%;
    float: right;
}

.proforma-selection .cancel-button {
    margin-top: 7px;
    margin-bottom: 10px;
    width: 40%;
    float: left;
}

.proforma .question .answers .answer .open-calendar {
    color: black;
    font-size: 17px;
    vertical-align: bottom;
    margin-left: 3px;
    background-color: #fcfcfc;
}

.proforma-switcher {
    padding-left: 20px;
    background-color: #c0c0c0;
    border-bottom: 1px solid #c3c3c3;
}

.proforma-switcher .title {
    font-size: 1.2em;
    font-weight: bold;
    color: #062730;
}

.proforma-switcher .subtitle {
    color: white;
}

.proforma-switcher .proforma-handle {
    padding: 3px;
    background-color: white;
    border: 1px solid #1f1f1f;
    width: 400px;
    margin-bottom: 7px;
    font-size: 0.9em;
}

.proforma-switcher .proforma-selector {
    text-decoration: none;
    font-size: 1.3em;
    width: 300px;
    display: inline-block;
    color: #1f1f1f;
}

.proforma-switcher .selected {
    font-weight: bold;
}

.report-list {
    background-color: white;
}

.report-list .reports-table-headers {
    background-color: #5e2750;
    color: white;
    font-size: 11px;
}

.report-list .title {
    width: 200px;
    clear: both;
    margin-left: 20px;
    padding-top: 7px;
    font-size: 16px;
    font-weight: bold;
}

.report-list .sort-controls label {
    margin-top: 10px;
}

.report-list .sort-controls .detail span {
    display: inline-block;
    height: 20px;
    border: 1px solid #aea79f;
    background-color: #aea79f;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    margin-right: 5px;
}

.report-list .sort-controls .detail-round {
    width: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.report-list .sort-controls .detail-bar {
    width: 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.report-list .sort-controls .status-filter {
    width: 350px;
    margin-bottom: 10px;
}

.report-list .sort-controls .status-filter label {
    width: 170px;
    display: inline-block;
    margin-top: 0px;
}

.report-list .reports-table {
    background-color: white;
    color: #010101;
    line-height: 28px;
    border-bottom: 2px solid lightgrey;
    margin-bottom: 5px;
    padding-bottom: 2px;
}

.report-list .reports-table .case-number {
    text-align: right;
}

.reports-table .reports-row .emphasis a {
    font-weight: bold;
    color: #ff0000 !important;
}

.patient-column a {
    color: #009DDA !important;
    text-decoration: none;
}

.table-row {
    padding: 3px 7px;
}

.report-list .reports-table a {
    text-decoration: none;
    color: #77216f;
}

.table .zebra {
    background-color: #f0f0f0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.reports-table .referral-date {
    text-align: center;
}

.reports-table .referral-time {
    text-align: right;
}

.reports-table-headers {
    clear: both;
    padding-left: 7px;
    padding-right: 7px;
}

.reports-table .column, .reports-table-headers .column {
    float: left;
    margin-right: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.reports-table .show-more .column {
    overflow: visible;
    white-space: pre-wrap;
}

.reports-table .column .more {
    display: none;
}

.reports-table .show-more .column .more {
    display: block;
}

.reports-table .patient-column, .reports-table-headers .patient-column, .reports-table .referrer-column, .reports-table-headers .referrer-column {
    width: 10%;
}

.reports-table .nhsnum-column, .reports-table-headers .nhsnum-column, .outcome-column {
    width: 10%;
}

.reports-table .clinician-column, .reports-table-headers .clinician-column {
    width: 9%;
}

.reports-table .areas-column, .reports-table-headers .areas-column {
    width: 12%;
}

.reports-table .diagnosis-column, .reports-table-headers .diagnosis-column {
    width: 13%;
}

/*.reports-table .injury-days-column,.reports-table-headers .injury-days-column {*/
/*width:6%;*/
/*}*/
.reports-table .referral-date-column, .reports-table-headers .referral-date-column, .reports-table .received-date-column, .reports-table-headers .received-date-column {
    width: 9%;
}

.reports-table .referrer-type-column {
    width: 3%;
}

.reports-table .status-column, .reports-table-headers .status-column {
    width: 25%;
    border-right: none;
}

.reports-table .urgency-column, .reports-table-headers .urgency-column {
    width: 50px;
}

.reports-table .action-column, .reports-table-headers .action-column {
    width: 30px;
    border-right: none;
}

.reports-table .diagnosis-column {
    font-weight: bold;
}

.pager-control {
    margin: auto;
    text-align: center;
    line-height: 20px;
    vertical-align: middle;
    padding: 10px;
}

.pager-control a {
    color: #009DDA;
    width: 30px;
    height: 30px;
    background-color: white;
    display: inline-block;
    border: 1px solid lightgrey;
    text-decoration: none;
    line-height: 30px;
}

.pager-control a.selected {
    background-color: lightgrey;
    color: black;
}

.sort-controls {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.sort-controls .search-ui {
    /*width:40%;*/
    /*float:left;*/
}

.sort-controls .search-button .diagnosis-button {
}

.sort-controls .search-terms {
    width: 250px;
}

.reports-table-headers .sorter {
    font-family: icomoon_2;
    font-size: 6pt;
    display: block;
    float: right;
    margin-right: 5px;
    margin-top: 2px;
}

.patient-search {
    border-left: 0;
    border-right: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    min-height: 50px;
    overflow: auto;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    line-height: 40px;
    background-color: #ededed;
    margin-bottom: 10px;
    /*  behavior: url(/www_ps/assets/css/css3pie.htc); */
}

.patient-search input {
    width: 270px;
    height: 30px;
    border-radius: 17px;
    outline: none;
    padding-left: 30px !important;
    border: 1px solid grey;
}

.patient-search i {
    position: relative;
    right: 15px;
    font-size: 15px;
    color: grey;
}

.patient-search i.fa-times-circle-o {
    right: 42px;
    font-size: 20px;
    top: 2px;
}

.patient-search i.fa-search {
    right: 262px;
}

.patient-search img {
    position: relative;
    right: 30px;
}

.patient-search .manual-add, .next-button, .select-pathway-dialog .ui-button-text-only, .button-purple {
    float: right;
    background: #4D384B;
    color: white;
    text-decoration: none;
    padding: 5px 30px;
    line-height: 20px;
    border: 1px solid white;
    margin-top: 5px;
    cursor: pointer;
}

.patient-search-results, .patient-search-results li {
    list-style: none;
    margin-left: 0px;
}

.patient-search-results {
    border: 1px solid #e0e0e0;
    margin-left: 0px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

.patient-search-results li {
    display: block;
    padding-left: 20px;
    font-size: 14px;
    text-decoration: none;
    color: #3f3f3f;
    border-bottom: 1px solid #e0e0e0;
}

.patient-search-results li a {
    text-decoration: none;
    color: #3f3f3f;
}

.patient-search-results li:hover {
    background-color: #fefefe;
}

.patient-search-results li .new-referral {
    margin-left: 10px;
    margin-right: 10px;
}

.patient-search-results li .button {
    float: right;
    margin-top: 10px;
}

/** Scheduling interface **/

.schedule-clinic .summary {
    background-color: #081D3E;
    padding: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
    font-size: 11pt;
    margin-top: 10px;
    margin-bottom: 10px;
}

.schedule-clinic .summary .title, .schedule-clinic .recommendation .title {
    font-weight: bold;
}

.schedule-clinic .summary .button-right {
    text-align: right;
    float: right;
}

.schedule-clinic .recommendation {
    padding: 20px;
    color: #333;
    font-size: 11pt;
    margin-top: 10px;
    margin-bottom: 10px;
}

.schedule-clinic .recommendation .info {
    font-weight: bold;
    color: #0c0c0c;
}

.schedule-clinic .appointment {
    padding: 20px;
    color: #0e0e0e;
    font-size: 10pt;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
}

.schedule-clinic .appointment .title {
    margin-bottom: 10px;
}

.schedule-clinic .appointment .clinic-code {
    width: 100px;
}

.schedule-clinic .appointment .email {
    width: 180px;
}

.schedule-clinic .buttons {
    text-align: right;
}

.schedule-clinic .buttons .cancel {
    background-color: #dedede;
    color: #7f7f7f !important;
    border-color: #7f7f7f;
}

/** Copy To Patient Record **/

.patient-record-codes textarea {
    width: 300px;
    height: 55px;

}

.patient-record-codes .copy {
    float: right;
    /*margin-top:11px;*/
}

/** Main Menu **/

.main-menu .menu-item {
    margin: 7px;
    background: #f5f5f5;
    font-size: 18pt;
    border: 2px solid #b3b3b3;
    text-align: center;
    font-weight: bold;
    border-radius: 7px;
    /*  behavior: url(/www_ps/assets/css/css3pie.htc); */
}

.main-menu .menu-item:hover {
    border: 2px solid #ccc;
}

.main-menu .menu-item a {
    padding-top: 20px;
    padding-bottom: 20px;
    text-decoration: none;
    display: block;
    color: #4e4e4e;
}

.main-menu .menu-item a:hover {
    text-decoration: none;
    color: #333;
    background: rgb(194, 232, 255); /*fallback for ie7*/
    background: rgba(20, 103, 151, 0.07);
}

/** Settings UI **/
.settings-page #content {
    margin: 10px;
}

.setting div {
    float: left;
    overflow: hidden;
    padding-left: 2px;
}

.setting div textarea {
    width: 96%;
}

.setting {
    clear: both;
    float: left;
    width: 100%;
}

.setting .save {
    color: green;
    font-size: 1.2em;
}

.setting .delete {
    color: red;
    font-size: 1.2em;
}

/** General Page Layout Styles **/
.table .zebra {
    background-color: #f0f0f0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.good {
    color: green;
}

.bad {
    color: red;
}

.glyph {
    font-family: icomoon;
    font-size: 14px;
    font-style: normal;
    text-decoration: none;
}

.maincontent {
    background-color: #f2f2f2;
}

.containedtext {
    margin-left: 15px;
    float: left;
    position: absolute;
    max-width: calc(100vw - 600px);
    text-overflow: ellipsis;
}

.header-options {
    text-align: right;
    margin-right: 15px;
}

.header-options a {
    color: white;
    text-decoration: none;
    font-weight: normal;
}

.header {
    overflow: auto;
    background-color: #2C001E;
    color: white;
    padding: 7px;
    font-size: 14px;
    font-weight: bold;
}

.header p {
    overflow: hidden;
    display: block;
    white-space: nowrap;
}

.header p .user {
}

.headersub {
    color: white;
    font-size: 27px;
    background-color: #5e2750;
    min-height: 50px;
    vertical-align: middle;
    line-height: 50px;
    padding-top: 11px;
    margin-bottom: 20px;
}

.patient-banner {
    /*  background-color: #062730; */
    background-color: #5e2750;
    color: white;
    margin-bottom: 1px;
    /* padding-bottom: 1px; */
    position: relative;
    /*height:60px;*/
}

.patient-banner .group {
    vertical-align: middle;
    font-size: 10pt;
    position: relative;
}

.patient-banner .data-pair {
    white-space: nowrap;
}

.patient-banner .label {
    margin-left: 22px;
}

.patient-banner .data {
    font-weight: bold;
    font-style: normal;
    margin-left: 7px;
}

.patient-banner .name {
    font-size: 15pt;
    /*line-height:40px;*/
    padding-top: 12px;
    padding-bottom: 12px;
    float: left;
    /* width: 40%; */
}

.patient-banner .name .all-caps {
    padding-left: 21px;
    text-transform: uppercase;
}

.patient-banner .personal-data {
    font-size: 11pt;
    /* vertical-align: middle; */
    line-height: 48px;
    float: right;
    position: relative;
    /* width: 55%; */
    text-align: right;
    margin-right: 21px;
}

.patient-banner .new-line {
    clear: both;
    display: block;
    border-bottom: 1px solid white;
}

.patient-banner .contact-info {
    font-size: 10pt;
    float: right;
    clear: right;
    text-align: right;
    margin-right: 21px;
}

.patient-banner .address {
    float: left;
    clear: left;
    white-space: nowrap;
    overflow: hidden;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
}

.subheader {
    background-color: #3d8d98;
    border: 1px solid;
    border-color: #797979;
    border-radius: 5px 5px 0px 0px;
    overflow: hidden;
    margin-bottom: 1px;
    /*  behavior: url(/www_ps/assets/css/css3pie.htc); */
}

.subheader > .title {
    font-size: 14px;
    font-weight: bold;
    color: white;
    margin-left: 20px;
    margin-top: 3px;
}

.subsubheader {
}

.subsubheader div {
    background-color: #333333;
    color: white;
    font-size: 12px;

}

.tableborders {
    border-color: #e4e4e4;
}

.zebra {
    background-color: #eeeeee;
}

.largetext {
    font-size: 26px;
}

#undoer {
    background-color: #ffd884;
    padding: 2px;
}

/** end general page layout styles **/

/*override text.css*/
ul {
    margin-bottom: 0px;
}

p {
    margin-bottom: 0px;
}

.helpers-editor .list > div, .helpers-editor .adder {
    border-bottom: 1px solid #c1c1c1;
    padding-top: 7px;
    padding-bottom: 7px;
}

.helpers-editor .list .buttons {
    vertical-align: middle;
    text-align: right;
    margin-top: 20px;
}

.helpers-editor .list .keywords {
    vertical-align: middle;
    line-height: 50px;
    font-size: 20px;
}

.helpers-editor .list .images {
    vertical-align: middle;
    text-align: center;
    line-height: 50px;
    background-color: #c1c1c1;
}

.helpers-editor .list .text {
    vertical-align: middle;
    color: #939393;
    font-style: italic;
}

.line {
    margin: 7px 0px;
}

.drop-on-me {
    border-bottom: 3px dashed green;
    height: 15px;
}

.message {
    /*  behavior: url(/www_ps/assets/css/css3pie.htc); */
    border-radius: 4px;
    background-color: #016a00;
    color: #f8f8ff;
    font-size: 13px;
    font-weight: normal;
    margin-top: 3px;
    margin-bottom: 3px;
    padding: 5px;
    display: block;
    clear: both;
}

.not-answered {
    color: red;
    font-weight: bold;
}

.not-answered .add-attachment {
    color: red;
}

.unanswered-questions-notice {
    text-align: center;
    font-size: 1.1em;
    color: red;
    font-weight: bold;
    margin-top: 7px;
}

.float-anchor {
    clear: both;
    line-height: 1px;
}

#feedback {
    background-color: rgb(100, 27, 85);
    background-color: rgba(100, 27, 85, 0.76);
    color: white;

}

.user-creator input, .user-creator select, .user-creator textarea {
    width: 90% !important;
}

.user-creator .dob select {
    width: 27% !important;
    margin-right: 5px;
}

/** Notification **/
.notifier {
    position: fixed;
    top: 0;
    left: 40%;
    background-color: #ffefa3;
    border-radius: 4px;
    width: 20%;
    text-align: center;
    padding-bottom: 3px;
    padding-top: 3px;
    font-size: 8pt;
}

.notifier .close {
    /*display:block;*/
    /*float:right;*/
    position: fixed;
    top: 0;
    right: 40%;
    margin-right: 5px;
}

.error-notifier {
    position: fixed;
    top: 0;
    left: 40%;
    background-color: red;
    color: white;
    border-radius: 4px;
    width: 20%;
    text-align: center;
    padding-bottom: 3px;
    padding-top: 3px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 8pt;
}

.error-notifier .urgent {
    /*display:block;*/
    /*float:right;*/
    position: fixed;
    top: 0;
    left: 40%;
    margin-left: 5px;
    color: white;
}

.error-notifier .close {
    /*display:block;*/
    /*float:right;*/
    position: fixed;
    top: 0;
    right: 38%;
    margin-right: 5px;
    color: white;
}

.feedback {
    text-align: center;
}

.feedback .label {
}

.feedback textarea {
    width: 90%;
    height: 150px;
    margin: auto;
}

.translation-creator, .autocompleter-creator {
    border: 1px solid #c2c2c2;
    background-color: #cccccc;
    padding: 10px;
    margin-bottom: 10px;
}

.autocompleter-creator {
    overflow: auto;
}

.translation-creator label span {
    width: 100px;
    display: inline-block;
}

.translation-creator label input[type=text] {
    width: 80%;
}

.directive .title {
    font-size: 13px;
    font-weight: 700;
    color: #8C223E;
    margin-left: -5px;
}

.preview-list {
    height: 100%;
    overflow: scroll;
    position: relative;
}

.image-thumbnail-pane {
    margin-bottom: 7px;
    display: block;
    position: relative;
    float: left;
}

.image-thumbnail-pane .delete {
    float: right;
    color: grey;
    margin-right: 5px;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
}

.image-thumbnail-pane .delete .glyph {
    font-size: 14pt;
    color: red;
}

#tab_options {
    width: 68%;
    height: 480px;
}

.question .attachments {
    clear: both;
}

.attachments {
    /* width: 100%; */
}

.add-attachment {
    display: block;
    clear: both;
}

.image-preview-dialog .image-title {
    border: 1px solid darkorange;
    padding: 5px;
    margin: 7px;
    font-size: 12pt;
    background-color: #f3f3f3;
}

.question .attachments .image-thumbnail-pane {
    display: inline;
    margin: 3px;
    width: 325px;
    overflow: hidden;
    border: 1px solid lightgrey;
    padding: 1px;
    border-radius: 2px;
    background: white;
}

.question .attachments .image-thumbnail-pane input {
    width: 299px;
    border-radius: 5px;
    border: 1px solid lightgrey;
}

.question .attachments .image-thumbnail-pane [type=radio] {
    width: 12px;
    top: 2px;
    position: relative;
    margin-left: 6px;
}

.question .attachments .image-thumbnail-pane .date {
    height: 29px;
    width: 224px;
    margin: 0px;
    font-size: 14px !important;
}

.question .attachments .image-thumbnail-pane .dateWrapper {
    font-size: 14px;
    font-weight: bold;
    top: 5px;
    position: relative;
}

.question .attachments .image-thumbnail-pane .dateWrapper a {
    background: #E0E1E2;
    padding: 10px;
    color: darkslategrey;
    border-radius: 5px;
    text-decoration: none;
}

.question .attachments .image-thumbnail-pane .dateText {font-weight: bold;}

.question .attachments .image-thumbnail-pane img {height: 244px;width: 100%;object-fit: cover;font-family: 'object-fit: cover;';}

.question .attachments .delete {
    /*display:none;*/
}

.helper .helper-link {
    text-decoration: none;
}

.countdown-container {
    margin-top: 10px;
    background-color: #ffffff;
    border: 1px solid #aaa;
    height: 50px;
}

.countdown {
    background-color: red;
    height: 50px;
    color: white;
    font-size: 22pt;
    font-weight: bold;
}

.big-button {
    padding: 12px 21px;
    color: white;
    border-radius: 3px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
}

.ers-button.big-button {
    background-color: #bdb9f0;
    border: 1px solid #aa99ff;
}

.status-button {
    background-color: #4D384B !important;
    color: white !important;
}

.content.autocompleters {
    width: 1340px;
    margin: auto;
}

.autocompleters .backgrid-filter.form-search {
    margin: 0px;
}

.autocompleters .controls {
    margin: 20px 0px;
}

.editor .new {
    width: 1294px;
    margin-top: 5px;
    height: 20px;
}

.selectize {
    width: 412px;
    display: inline-block;
    margin-right: 10px;
}

.editor .deleteAll {

    bottom: 12px;

    position: relative;
}

.overflow .ui-dialog-content {
    overflow: visible !important
}

.moveUp {
    margin-top: 20px;
}

.template label {
    width: 140px;
    display: inline-block;
    margin-right: 10px;
}

.template .days {
    width: 30px;
}

.template .subject {
    width: 100%;
}

.template .left {
    float: left;
    width: 729px;
}

.template .box {
    border: 1px solid grey;
    padding: 10px;
    height: 400px;
    overflow-y: scroll;
}

.template .right {
    float: right;
    width: 209px;
}

.conditional-box {
    background-color: white;
    display: inline-block;
    border: 2px solid cadetblue;
    padding: 0px 2px;
    float: left;
}

.dashboard {
    height: 100vh;
    width: 100vw;
}

.subrules .selectize-control {
    width: 400;
    display: inline-block;
}