/* Minification failed. Returning unminified contents.
(386,1): run-time error CSS1019: Unexpected token, found '@import'
(386,9): run-time error CSS1019: Unexpected token, found 'url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&family=Quicksand:wght@500;700&display=swap")'
(392,1): run-time error CSS1019: Unexpected token, found '@import'
(392,9): run-time error CSS1019: Unexpected token, found 'url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&family=Quicksand:wght@500;700&display=swap")'
(2326,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(2327,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '50%'
(2337,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(2338,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '50%'
(3369,1): run-time error CSS1019: Unexpected token, found '@import'
(3369,9): run-time error CSS1019: Unexpected token, found 'url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&family=Quicksand:wght@500;700&display=swap")'
 */
@charset "UTF-8";
/* Imports */
@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&family=Quicksand:wght@500;700&display=swap");
/* Fonts */
/* Colors */
/* Sizes */
/* Mixins */
/* Custom Width Via Percentage */
.w-10 {
  width: 10%;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-90 {
  width: 90%;
}

/* Custom Width Via Pixels */
.width-10 {
  width: 10px;
}

.width-50 {
  width: 50px;
}

.width-75 {
  width: 75px;
}

.width-100 {
  width: 100px;
}

.width-125 {
  width: 125px;
}

.width-150 {
  width: 150px;
}

.width-175 {
  width: 175px;
}

.width-200 {
  width: 200px;
}

.width-250 {
  width: 250px;
}

.width-300 {
  width: 300px;
}

.width-350 {
  width: 350px;
}

.width-500 {
  width: 500px;
}

/* Font Coloring */
.bg-col {
  min-width: 800px;
}

.sm-col {
  min-width: 75px;
}

/* Used to cap tables in Protocols */
.mw-table {
  min-width: 768px;
}

.mw-0 {
  min-width: 0px;
}

/* Font Coloring */
.white {
  color: #fff;
}

.black {
  color: #000;
}

.green {
  color: #237ABC;
}

.dgrey {
  color: #555;
}

.lgrey {
  color: #aaa;
}

.grey {
  color: #666;
}

.dred {
  color: #a60000;
}

.red {
  color: #c00;
}

.blue {
  color: #237ABC;
}

.orange {
  color: #f1872e;
}

/* Background Colors */
.bg-lgrey {
  background-color: #f1f1f1;
}

.bg-orange-tr {
  background-color: rgba(255, 153, 0, 0.2);
}

/* Max Width 1px Class to Help Truncation */
.mw-1px {
  max-width: 1px;
}

/* Truncate */
.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Span Heading Style */
.heading-font {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Break Word */
.word-break {
  word-break: break-all;
}

/* Used in TDM to prevent double click while saving */
.disable-select {
  pointer-events: none;
}

/* Class For Errors */
.errorClass {
  background-color: #f2dede;
  border-color: #ebccd1;
  margin: 0.5em 0;
  border-radius: 0.5em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.errorClass label:first-child, .errorClass strong:first-child {
  color: #a94442;
}

/* Imported Protocol Answer Styling */
.imported-protocol-answer input[type=radio]:checked + label {
  background: url("/Content/images/imported-radio.png") no-repeat 0 0px;
  background-size: 14px;
  font-weight: bold;
  color: #f1872e;
}

.imported-protocol-answer input[type=checkbox]:checked + label {
  background: url("/Content/images/imported-checkbox.png") no-repeat 0 0px;
  background-size: 14px;
  font-weight: bold;
  color: #f1872e;
}

.imported-protocol-medical-condition {
  font-weight: bold;
  color: #f1872e;
}

.imported-protocol-answer input:first-of-type, .imported-protocol-answer select:first-of-type, .imported-protocol-answer textarea:first-of-type {
  font-weight: bold;
  color: #f1872e;
  border: solid 2px #f1872e;
}

/* Override Padding Classes */
.paddingleft {
  padding-left: 15px !important;
}

.paddingright {
  padding-right: 15px !important;
}

.paddingtop {
  padding-top: 0.25em !important;
}

.paddingbottom {
  padding-bottom: 0.25em !important;
}

.paddingFix {
  padding-left: 0 !important;
}

/* Override Margin Classes */
.marginleft {
  margin-left: 0.5em !important;
}

.marginright {
  margin-right: 0.5em !important;
}

.margintop {
  margin-top: 0.5em !important;
}

.marginbottom {
  margin-bottom: 0.5em !important;
}

.nomargin {
  margin: 0 !important;
}

.no-row-margins {
  margin-left: 0;
  margin-right: 0;
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

/* Corner Rounding */
.rounded-corners {
  border-radius: 0.35em !important;
}

.rounded-top-corners {
  border-radius: 0.35em 0.35em 0 0 !important;
}

.rounded-bottom-corners {
  border-radius: 0 0 0.35em 0.35em !important;
}

/* Font Size For Primary Classification In Patient Header */
.reset-font-size {
  font-size: 0.9rem;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px; /* for vertical scrollbars */
  height: 15px; /* for horizontal scrollbars */
  -webkit-transition: width linear 0.5s;
  transition: width linear 0.5s;
}

body::-webkit-scrollbar:hover {
  width: 15px;
}

::-webkit-scrollbar-track {
  background: #555;
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  border-radius: 2em;
  background: #fff;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);
}

.noScrollBars {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

/* Smaller Scrollbars Within Divs */
div::-webkit-scrollbar, textarea::-webkit-scrollbar, ul::-webkit-scrollbar {
  width: 8px; /* for vertical scrollbars */
  height: 8px; /* for horizontal scrollbars */
}

/* Remove focus outline */
*:focus {
  outline: none !important;
}

/* Remove X and ▼ from inputs */
*::-ms-clear {
  display: none;
}

*::-ms-expand {
  display: none;
}

/* Change Selection Color */
::-moz-selection {
  background: #237ABC;
}
::selection {
  background: #237ABC;
}

/* Remove Text Highlighting */
.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
           supported by Chrome and Opera */
}

/* Selectable Table */
.table-selectable tbody tr:not(.selected-table-row):hover {
  background: #eee;
}

.table-selectable tbody tr:not(.selected-table-row):hover td {
  border: none;
}

/* Selected Row Styling */
.selected-table-row td {
  font-weight: bold;
  background: #f1f1f1;
  border: none;
}/*# sourceMappingURL=utils.css.map */
@charset "UTF-8";
/*  © Copyright 2021 ScriptPro | All Rights Reserved  */ /* Imports */
@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&family=Quicksand:wght@500;700&display=swap");
/* Fonts */
/* Colors */
/* Sizes */
/* Mixins */
/* Imports */
@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&family=Quicksand:wght@500;700&display=swap");
/* Fonts */
/* Colors */
/* Sizes */
/* Mixins */
/*********************** Globals ***********************/
/* High Level Elements */
html {
  position: relative;
  min-height: 100%;
}

body {
  overflow-x: hidden;
  margin-bottom: 60px;
  font-family: "Quicksand", Helvetica, Arial, sans-serif;
  position: relative;
  background: #fff;
  background-size: cover;
  background-attachment: fixed;
  font-size: 14px;
  font-weight: 600;
}

div[ui-view] {
  position: absolute;
  top: 9em;
  padding-left: 35px;
  padding-right: 30px;
  padding-bottom: 5em !important;
  width: 100%;
}

.container {
  padding: 0 30px 40px 30px;
  margin: 0;
}

.modal-container {
  padding: 5px 15px 0px 15px;
}

/* Links */
a {
  color: #237ABC;
  text-decoration: none;
}
a[disabled=disabled] {
  pointer-events: none;
  color: #aaa;
  font-style: italic;
}

a:hover, a:active {
  text-decoration: none !important;
  color: #f1872e;
}

/* Lists */
ol {
  list-style-type: disc;
}

ul, li {
  list-style-type: none;
}

/* Dividers */
hr {
  border-color: #ccc;
}

/* Inputs */
label {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8c8c8c;
  font-size: 0.85em;
  font-weight: bold;
  margin-bottom: 0;
  padding-top: 0.5em;
}

/* Disable the label when input is disabled */
.disabledLabel {
  color: #aaa !important;
  cursor: not-allowed !important;
}

/* Remove Font Weight */
.lightLabel {
  font-weight: 600;
}

label.clickable:hover {
  color: #237ABC;
}

input:disabled + label.clickable:hover {
  color: #aaa !important;
}

input, select {
  border-radius: 0.35em;
  max-width: 100%;
}

/* Checkboxes within a table cell */
td input[type=checkbox] {
  margin-top: 0;
  margin-left: 5px;
}

input[type=checkbox], input[type=radio] {
  cursor: pointer;
  margin: 0;
  opacity: 0;
  padding: 0;
  width: 1em;
}
input[type=checkbox] + label, input[type=radio] + label {
  color: #555;
  display: inline-flex;
  font-weight: bold;
  margin-left: -14px;
  padding-left: 14px;
  padding-top: 0;
}

input[type=checkbox] + label {
  background: url("/Content/images/checkbox.png") no-repeat 0px 0px;
  background-size: 14px;
}

input[type=checkbox]:checked + label {
  background: url("/Content/images/checked.png") no-repeat 0 0px;
  background-size: 14px;
}

input[type=radio] + label {
  background: url("/Content/images/radio.png") no-repeat 0px 0px;
  background-size: 14px;
}

input[type=radio]:checked + label {
  background: url("/Content/images/selectedradio.png") no-repeat 0 0px;
  background-size: 14px;
}

input[type=checkbox]:disabled + label, input[type=radio]:disabled + label {
  opacity: 0.5;
  cursor: not-allowed;
}

.tdmradio input[type=radio] + label {
  background-size: 10px;
  background-position: 0px 2px;
  color: #666;
  height: auto;
  min-height: auto;
  margin-top: 6px;
  padding-left: 1.35em;
}

select:disabled {
  background-image: none !important;
  background-color: #efefef;
}

.table .dropdown-menu td, .table .dropdown-menu th {
  padding: 1px;
  border: none;
}

.table > tbody > tr > td {
  vertical-align: middle;
}

.table {
  border-spacing: 0px;
  font-size: 0.9rem;
}

.table td, .table th {
  padding: 0.25em 15px;
}

select, .add-select-menu-icon {
  padding-left: 10px;
  padding-right: 15px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("/Content/images/arrow_down.png") !important;
  background-position: right 0.5em top 50%;
  background-repeat: no-repeat;
  background-size: 12.5px !important;
  cursor: pointer;
}

select.form-control {
  padding-right: 2em !important;
}

textarea {
  resize: none !important;
  border-radius: 0.35em;
  min-height: 30px !important;
  padding: 0.25rem 0.5rem !important;
  width: 100%;
  vertical-align: -webkit-baseline-middle;
}

textarea.expand {
  overflow-y: hidden !important;
}

/* Tables */
.table td.fit,
.table th.fit {
  white-space: nowrap;
  width: 1%;
}

caption, .caption {
  background-color: #555;
  color: #fff;
  box-shadow: inset 0px 0px 50px rgba(0, 0, 0, 0.4);
  caption-side: top;
}

/*********************** Header ***********************/
#home_fullheader_wrap {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
  background: #272727;
  background-size: cover;
  background-attachment: fixed;
  border: none;
  height: 64px;
  position: relative;
  z-index: 2;
}

#home_fullheader_logo {
  max-height: calc(64px - 2.25rem);
  margin: 0.25em 2.5em 0 3em;
  width: auto;
  cursor: pointer;
}

#home_respheader_logo {
  max-height: calc(64px - 2.25rem);
  margin: 0.25em 2em 0 15px;
  width: auto;
}

#home_login_controller {
  padding-right: 30px;
}

.module-name {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

/* ----- Login Name  ----- */
#home_login_name {
  color: #fff;
  font-weight: lighter;
  font-size: 0.9rem;
}

#home_login_name:hover {
  color: #f1872e;
  cursor: pointer;
}
#home_login_name:hover .home-pharmacy-name {
  color: #f1872e;
}

.home-login-arrow {
  font-size: 0.8em !important;
  margin-left: 0.5em;
  margin-right: 15px;
}

#home_login_button {
  margin-right: 2em;
  margin-top: 1.15em;
  font-size: 12px;
}

#home_respheader_login {
  padding: 0.75em 2em;
  font-size: 0.8em;
}

/* ----- Login Button ----- */
#loginButton {
  float: right;
  margin: 1.25em 0 0 0;
  cursor: pointer;
  position: relative;
  z-index: 999;
  padding: 0.5em 1.5em;
  font-size: 0.925em;
}

#loginButton:active {
  color: #fff;
  font-weight: normal;
}

/* ----- Dropdown List ----- */
/* ▼ Arrow */
.home-login-dropdown {
  position: relative;
  outline: none;
  color: #fff;
  font-weight: bold;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

/* Actual Dropdown Menu */
.home-login-dropdown .dropdown {
  background-color: #272727;
  position: absolute;
  top: 64px;
  right: 15px;
  width: 15em;
  height: auto;
  opacity: 0;
  list-style: none;
  font-style: normal;
  pointer-events: none;
  padding-left: 0;
  padding-bottom: 0.75em;
  border-bottom-left-radius: 0.35em;
  border-bottom-right-radius: 0.35em;
  transition: 0.15s ease-in-out;
  cursor: pointer;
}

.home-login-dropdown .dropdown li {
  text-align: left;
  padding: 0.75em 1.5em;
  height: auto;
  border: none;
  color: #6ACCF5;
  font-size: 0.9em;
  font-weight: normal;
}

.home-login-dropdown .dropdown li:hover {
  color: #f1872e;
}

.home-login-dropdown .dropdown li:last-child:hover {
  border-bottom-left-radius: 0.35em;
  border-bottom-right-radius: 0.35em;
}

.home-login-dropdown.active:after {
  border-width: 0 6px 6px 6px;
}

.home-login-dropdown.active .dropdown {
  opacity: 1;
  pointer-events: auto;
}

.home-login-dropdown.active .dropdown li {
  opacity: 1;
}

/* ----- Mobile Login ----- */
.sp-mobile-login {
  text-align: right;
  font-size: 1.1em;
}

.sp-mobile-login a {
  text-decoration: none;
  padding-right: 10px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  text-shadow: 1px 1px 0.4vw rgba(0, 0, 0, 0.35);
}

.sp-mobile-login a:hover {
  text-decoration: none;
  color: #f1872e;
  text-shadow: none;
}

#home_respheader_username {
  font-weight: bold;
  margin-top: 1.15em;
  margin-right: 0.5em;
}

/*********************** Tabs Bar ***********************/
#home_tabs_bar {
  background: #eee;
  box-shadow: inset 0 0 1.5rem rgba(0, 0, 0, 0.2);
  border-bottom: solid 1px #ccc;
  height: 60px;
  position: relative;
  width: 100%;
}

/* Container to position text vertically and responsively */
#home_tabs_bar-wrapper {
  display: table;
  width: 100vw;
  height: 6em;
  padding-right: 15px;
}

/* ----- Tabs ----- */
.home-tab-container {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80%;
}

.home-tab-container ul.nav-tabs {
  height: 100%;
  margin: 0;
  list-style-type: none;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}

.home-tab-container ul.nav-tabs > li {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-items: center;
  cursor: pointer;
  margin: 0 4em 0 0;
  border-top-right-radius: 0.75em;
  border: none;
  position: relative;
  display: inline-grid;
}

.home-tab-container ul.nav-tabs > li:first-child {
  margin-left: 0;
}

.home-tab-container ul.nav-tabs > li:last-of-type {
  margin-right: 0;
}

.home-tab-container ul.nav-tabs > li > a {
  display: block;
  max-width: 100%;
  text-decoration: none;
  color: #237ABC;
  border: none !important;
  font-size: 1em;
}
.home-tab-container ul.nav-tabs > li > a:hover {
  color: #f1872e;
}

.home-tab-container ul.nav-tabs > li > a:focus {
  outline: none;
  box-shadow: none;
}

.home-tab-container ul.nav-tabs > li > a span {
  overflow: hidden;
  white-space: nowrap;
  display: block;
  font-size: 18px;
}

.home-tab-container ul.nav-tabs > li.active > a {
  border: none;
  cursor: default;
  color: #272727;
  font-weight: bold;
  text-shadow: none;
}

.home-tab-container .tab-pane {
  padding: 60px 40px;
  text-align: center;
}

.nav > li > a:focus {
  background-color: transparent !important;
}

.nav-tabs > li > a:hover {
  border: none !important;
  background-color: transparent !important;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  background-color: transparent !important;
  border: none;
  color: #f1872e;
}

.navbar-collapse {
  margin: 0vh 0 1vh 0;
  padding-top: 0.5vh;
  text-align: right;
  width: auto;
  float: right;
}

.collapse .nav li {
  display: inline;
}

.collapse .nav li a {
  color: #555 !important;
  font-weight: bold;
  text-shadow: 1px 1px 0.4vw rgba(0, 0, 0, 0.35);
  margin-top: 0.5em;
}

.collapse .nav li a:hover {
  cursor: pointer;
  color: #237ABC !important;
  text-shadow: none;
}

/* Toggle Menu Button */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #555;
}

.navbar-default .navbar-toggle {
  border-color: #fff;
  color: #555;
  margin-top: 1.4em;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:active, .navbar-default .navbar-toggle:visited, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

.home-respheader-nav {
  background-color: #272727;
  color: #fff;
  height: 64px;
  padding: 0 15px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
}

.home-respheader-nav .dropdown-menu {
  position: fixed !important;
  top: 3.25em !important;
  bottom: 0;
  left: -0.25em !important;
  right: -0.25em;
  overflow: auto;
  transform: none !important;
  border-top: 0;
  border-radius: 0;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
  padding: 0 0.25em;
}

.home-respheader-nav .dropdown-menu li {
  width: 100%;
  padding-left: 2.25em;
  padding: 1em 2em;
  color: #237ABC;
  text-align: center;
}

.home-respheader-nav .dropdown-menu li:hover {
  background: #eee;
  color: #272727;
  cursor: pointer;
}

.home-respheader-nav .dropdown-menu li .fa {
  margin-right: 1em;
  width: 1em;
}

.nav-tabs {
  border: none;
}

.navbar-header {
  width: 100%;
  padding-right: 15px;
  z-index: 1;
  position: relative;
}

/* ----- Pharmacy Name ----- */
.home-pharmacy-name {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.775em;
  font-weight: normal;
  display: flex;
  justify-content: end;
}

.home-pharmacy-name .fa-exclamation-triangle {
  -webkit-margin-start: 0.5em;
          margin-inline-start: 0.5em;
  color: #fd0;
  cursor: help;
}

.pharmacy-name {
  max-width: 75ch;
}

@media (max-width: 999px) {
  .pharmacy-name {
    max-width: 35ch;
  }
}
/* ABOUT APCS MODAL */
.aboutapcs-wrap {
  text-align: center;
}

.aboutapcs-wrap img {
  width: 40%;
  margin: 2em 15px 2em 0;
}

.aboutapcs-wrap p {
  margin-bottom: 0;
}

.fy-actionbar.stuck {
  top: 0px;
  right: 0px;
  left: 0px;
  position: fixed;
  width: calc(100vw + 15px);
  z-index: 1000;
  padding: 5px 40px 5px 25px;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.fy-actionbar .alert {
  padding: 10px !important;
}

.fy-actionbar.bottom {
  left: 0;
  bottom: 0;
  position: fixed;
  width: calc(100vw + 15px);
  padding: 5px 15px 5px 35px;
  background: #fff;
  box-shadow: 0px -10px 100px 0px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.fy-actionbar .fa-clipboard {
  margin-bottom: 0px;
  vertical-align: middle;
  padding-right: 5px;
  margin-right: 0.5em;
  color: #6699cc;
  cursor: pointer;
}

.fy-actionbar .fa-clipboard:hover {
  color: #555;
}

.fy-clipboard {
  left: 0;
  bottom: 52px !important;
  border-radius: 0.5em 0.5em 0 0;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-left: none;
  position: fixed;
  width: 33%;
  background: #fff;
  z-index: 1001;
  max-height: 70%;
  height: 100%;
  color: #666 !important;
}

.fy-clipboard .fa-trash {
  font-size: 1.5rem;
}

.fy-clipboard .fa-trash:hover {
  cursor: pointer;
  color: #555;
}

.fy-clipboard .card-body {
  overflow-y: auto;
  position: relative;
  max-height: calc(100% - 2rem);
}

.fy-clipboard.collapsed {
  width: 150px;
}

.fy-clipboard .dynamic-question.static-heading label {
  color: #aaa !important;
}

.fy-clipboard ul {
  padding: 5px;
}

.clipboard-numbers {
  font-size: small;
  font-weight: bolder;
  background: #6699cc;
  color: #fff;
  border-radius: 50%;
  padding: 2px 5px;
  position: absolute;
  left: 2.45rem;
  top: 0.15rem;
}

.d-xl-none .clipboard-numbers {
  left: 1.45rem;
}

.fy-actionbar .fa-clipboard:hover .clipboard-numbers {
  background: #555;
}

.dndDropZone.mb-0 {
  height: -webkit-fill-available;
}

.modal-body .handle {
  display: none !important;
}

/*********************** Modals ***********************/
body.modal-open {
  margin: 0;
}

.modal-open .modal {
  z-index: 9999999;
  overflow: hidden;
}

/* Header */
.modal-header {
  background-color: #fff;
  color: #555;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
}
.modal-header a > h4.page-title {
  color: inherit;
}
.modal-header h3 {
  margin: 5px 0;
}

.modal-body {
  max-height: 70vh !important;
  overflow-y: auto;
  width: 100%;
  padding: 0.25rem 15px;
}

.modal-dialog {
  margin-top: 20%;
  min-height: 100%;
  max-height: 75vh;
  overflow: visible;
}

.modal-content {
  box-shadow: #898484 0px 0px 5px;
  display: block;
}

.modal .section-heading ul li a {
  font-size: 1.3em;
}

.modal-footer {
  margin: 0px;
  padding: 0.5rem 15px;
}

/*********************** Search Results ***********************/
/* Pharmacy List */
.pharmacy-results {
  padding: 0;
  max-width: 700px;
  margin: 1em auto;
}

.pharmacy-results .pharmacy-results-list {
  padding: 0;
  margin-bottom: 5px;
  list-style-type: none;
}

.pharmacy-results ul li {
  padding: 0.5em 10px;
  width: calc(100% - 30px);
  font-size: 14px;
  border-radius: 0.5em;
  margin: 6px auto;
  padding-right: 10px;
  box-shadow: 0 0 0 1pt #aaa;
}
.pharmacy-results ul li div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pharmacy-results ul li:not(.selected):hover {
  cursor: pointer;
  background: #eee;
}

.pharmacy-results-list li {
  min-height: 8rem;
  border-radius: 0.25rem;
  cursor: pointer;
}

/* Enroll New Patient Search */
.searchResults {
  padding: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.searchResults .pharmacy-results-list {
  margin-bottom: 5px;
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
}

.searchResults .result {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#e2e2e2",GradientType=0);
  padding: 1.5em 0.5em;
  width: 100%;
  height: 10em;
  font-size: 1.2em;
  border-radius: 2px;
  margin: 6px 12px 6px 0;
  padding-right: 10px;
  box-shadow: 0 0 0 1pt #aaa;
}

.searchResults .result:first-child {
  margin-top: -0.25em;
}

/* ---------------------------------------------------------------------------------*/
/* ---------------------------------------------------------------------------------*/
/* --------------------------------  Classes  --------------------------------------*/
/* ---------------------------------------------------------------------------------*/
/* ---------------------------------------------------------------------------------*/
/* ----- Bootstrap Class Modifications ----- */
/* --- Buttons --- */
.btn {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2) !important;
  color: #fff;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: bold;
  overflow: hidden;
  padding: 0.75em 2em;
  position: relative;
  z-index: 1;
}
.btn::after {
  background: #fff;
  bottom: 100%;
  content: "";
  display: block;
  left: -100%;
  opacity: 0.175;
  padding: 0.85em 0.75em;
  position: absolute;
  right: 100%;
  top: 0;
  transform: scale(0, 0);
  transition: all 0.15s ease;
  z-index: 2;
}
.btn:hover::after {
  transform: scale(1, 1);
  left: 0;
  right: 0;
  bottom: 0;
}
.btn:active {
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(2px);
  transition: all 0.15s ease-out;
}
.btn:focus {
  outline: none;
}
.btn[disabled] {
  background-color: #aaa;
  border-color: #aaa;
  cursor: not-allowed;
}
.btn.btn-sm {
  font-size: 12px;
  padding: 0.25rem 1.5rem;
}
.btn.btn-xs {
  padding: 5px 20px;
  font-size: 12px;
  margin-top: 0px;
}
.btn.btn-primary {
  background: #237ABC !important;
  color: #fff;
}
.btn.btn-primary:active {
  background: #1f6ca7 !important;
  color: #fff;
}
.btn.btn-secondary {
  background: #666;
}
.btn.btn-default {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  background: transparent;
  color: #555;
}
.btn.btn-complete {
  background: #7eb13f;
}
.btn.btn-complete[disabled] {
  background: #aaa;
}

::-webkit-file-upload-button {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #237ABC;
  border-radius: 0.35em;
  cursor: pointer;
  border: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2) !important;
  color: #fff;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: bold;
  margin-right: 1em;
  padding: 0.75em 2em;
}

.dropdown-menu .btn-sm {
  padding: 0.25rem 0.5rem;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3) !important;
  text-shadow: none !important;
}

.btn-link {
  color: #237ABC;
  font-weight: bold;
}
.btn-link:hover {
  text-decoration: none;
  color: #555;
}
.btn-link:focus {
  text-decoration: none;
}

/* Badges */
.card-title-links .badge {
  font-size: 0.6rem;
  margin-left: 0.5rem;
  margin-top: 0.15rem;
  padding-bottom: 0.15rem;
  vertical-align: top;
}

.badge-gray {
  background: #aaa;
  color: #fff;
}

.badge-white {
  background: #fff;
  color: #272727;
}

/* --- Table Styling --- */
.table {
  margin-bottom: 0;
  border-top: 0;
  table-layout: fixed;
}

.table:not(.dynamic-labtable) > thead > tr > th {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: gray;
  height: 2.2em;
  font-size: 0.85em;
  padding: 0.25em 15px 0.15em 15px !important;
  vertical-align: middle;
}

.table-responsive {
  overflow-x: auto;
}

.table-hover tbody tr:hover {
  background-color: inherit;
}

.settings-configuration-boxes h5 {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa;
  font-size: 1em;
}
.settings-configuration-boxes .card {
  height: 10em;
  font-size: 1rem;
}

/* --- Forms --- */
.form-control {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-control[disabled] {
  background-color: #efefef;
}

.form-control:focus {
  border-color: #aaa;
  box-shadow: none;
}

textarea.form-control {
  font-size: 14px;
}

.form-group {
  margin-bottom: 0;
  vertical-align: inherit !important;
}

/* Input Group */
.input-group {
  width: 100%;
}

.input-group .form-control {
  z-index: 1;
}

.input-group-addon {
  background: #fff;
  color: #272727;
  border-radius: 0.35em !important;
}

.input-group-addon.disabled {
  background: #efefef;
}

.input-group-addon:hover {
  cursor: pointer;
  color: #237ABC;
}

.input-group-btn {
  border-radius: 0.35em !important;
}

/* Radio Button Styling */
.radio {
  margin: 0;
}

.radio label {
  padding-top: 0.1em;
}

/* Lists */
.list-group {
  margin-bottom: 0px;
}

/* Default Info Tip */
i.fa-info-circle {
  color: #237ABC;
  cursor: pointer;
}

i.fa-info-circle:hover {
  color: #555;
}

/* --- Custom Tooltip --- */
.tool-tip {
  position: relative;
  overflow: visible;
}

.tool-tip div.text {
  display: none;
  z-index: 3;
  text-align: center;
  text-shadow: none;
}

.tool-tip a:hover div.text {
  display: block;
  position: absolute;
  top: 0em;
  right: -65%;
  padding: 0.6em 1.2em;
  border: 1px solid #ddd;
  border-radius: 0.25em;
  background-color: #fff;
  color: #555;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.tool-tip a:focus div.text {
  display: none;
}

/* --- Custom Tooltip --- */
.sp-dropdownwrap {
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 0.25em 0.5em;
  cursor: pointer;
}

.sp-dropdownselected {
  padding: 0.25em 0.5em;
  height: 1.8em;
  width: 80%;
}

.sp-dropdownmenu {
  right: 0;
  left: 0;
  padding: 0 !important;
  box-shadow: none;
  border: solid 1px #aaa;
  width: 100%;
}

.sp-dropdownmenu li {
  padding: 0.25em 0.5em;
  font-size: 12px;
}

.sp-dropdownmenu li:hover {
  background: #eee;
}

/* ----- Icons ----- */
.fa-flag {
  margin-left: 1em;
  color: #a00;
  font-size: 16px !important;
}

.fa-sticky-note-o {
  margin-left: 0.5em;
  color: #B79A00;
  font-size: 16px !important;
}

.fa-ellipsis-h {
  margin-top: 0.1em;
  color: #aaa;
  cursor: pointer;
}

.fa-ellipsis-h:hover {
  color: #555;
}

.fa-search {
  font-size: 0.85em;
  color: #666;
}

.col-xs-4 .fa-ellipsis-h {
  margin-top: 0em;
}

.sp-statementDeliveredLabel .fa-ellipsis-h {
  margin-right: 0;
}

/* Pagination */
.pagination {
  margin: 0.5rem 0;
  color: #555 !important;
  position: relative;
  font-size: 10px;
}

.pagination-fix .pagination {
  margin-top: 0.5em;
}

.section-heading .pagination {
  font-size: 10px !important;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  background: #237ABC;
}

.pagination > li > a, .pagination > li > span, .pagination > li > a:focus {
  color: #fff;
  z-index: 1 !important;
  padding: 4px 10px;
  background-color: #666;
  font-size: 12px;
  margin: 0 0.1em;
  border-radius: 0.25em;
  border: none;
  min-width: 25px;
  text-align: center;
}

.pagination > li > a:hover {
  color: #fff;
  background-color: #237ABC;
}

.pagination > .disabled > a {
  border: none;
  background-color: #ddd;
}

.pagination > .disabled > a:hover, .pagination > .disabled > a:active, .pagination > .disabled > a:focus {
  background-color: #ddd;
}

/* Datepicker Fixes */
.ui-datepicker-group {
  height: 220px;
}

.datepickerFixed .dropdown-menu {
  /* We are nesting inside of a modal with an overflow-y: auto, overflow-x: hidden, so we need to cheat this by removing the float, positioning fixed, and aligning with transform instead of left/top */
  transform: translate(0%, 24px);
  position: fixed;
  top: inherit !important;
  left: inherit !important;
  z-index: 999999 !important;
  float: none;
  overflow: visible;
}

.datepickerRealign .dropdown-menu {
  transform: none !important;
}

input + .dropdown-menu {
  padding: 15px 25px;
  z-index: 9999 !important;
  height: auto;
  margin-bottom: 12.5em;
}

input + .dropdown-menu thead tr th {
  padding-left: 0 !important;
}

input + .dropdown-menu td {
  min-width: 0em !important;
  font-size: initial !important;
}

.modal .dropdown-menu {
  margin-bottom: 0;
}

/* Search And Date Inputs Restyled */
input.search {
  background-image: url("/Content/images/searchicon.png");
  background-repeat: no-repeat;
  background-position: right 0.5em top 50%;
}

input.date {
  background-image: url("/Content/images/dateicon.png");
  background-repeat: no-repeat;
  background-position: right 0.5em top 50%;
  background-size: 10px;
  padding-right: 1.5em !important;
}

.patient-header input.date, .modal input.date {
  background-position: right 0.5em top 50%;
  background-size: 10px;
}

/* Fix Margin When Close Attached*/
.close {
  margin-right: 0.5em;
}

/* Ensure description lists don't truncate content */
.dl-horizontal dt {
  white-space: normal;
}

/* Display Inline */
.inline {
  display: inline;
}

/* Loading Spinner */
.spinner {
  top: 50vh !important;
}

/* Spinner Color Override Since JS isn't working correctly */
.spinner div div {
  background: #237ABC !important;
  z-index: 2;
}

/* Grey Out Span - Another Form Of Disabling */
.gray-out-span {
  color: #ccc;
  cursor: not-allowed;
  font-style: italic;
}

.gray-out-span:hover, .gray-out-span:active, .gray-out-span:focus {
  color: #ccc;
}

.input-group-addon .gray-out-span {
  font-style: normal;
  color: #666;
}

/* Hide Visibility */
.sp-visibility-hidden {
  visibility: hidden;
}

/* Alert Messages */
.alert-info {
  color: #fff;
  background-color: #237ABC;
  margin-bottom: 0;
}

.alert-padding {
  padding: 0.5em 0;
}

/* Toaster Alert Message */
.toast-success {
  background-color: #7eb13f;
}

/* Box Shadow On Toaster Hover */
#toast-container > :hover {
  box-shadow: 0px 0px 12px #999 !important;
}

/* Capitalize */
.capitalize {
  text-transform: capitalize;
}

/* Clickable Elements Have Pointers */
.clickable:not(.gray-out-span) {
  cursor: pointer;
}

.clickable .gray-out-span {
  cursor: not-allowed !important;
}

.clickable-arrow:hover {
  color: #237ABC;
}

.clickable.green:hover, .clickable.blue:hover {
  color: #555;
}

/* Not Clickable Elements */
.notclickable {
  pointer-events: none;
  cursor: not-allowed;
}

/* Clickable Table Cells Styling*/
td.clickable:hover {
  background-color: #eee;
  color: #555;
  font-weight: bold;
}

/* Program Conditions */
.program-conditions table th:nth-of-type(1) {
  width: 15%;
}

.program-conditions table th:nth-of-type(2) {
  width: 15%;
}

.program-conditions table th:nth-of-type(3) {
  width: 25%;
}

.program-conditions table th:nth-of-type(4) {
  width: 45%;
}

@media (max-width: 1499px) and (min-width: 1200px) {
  .program-conditions table th:nth-of-type(1) {
    width: 20%;
  }
  .program-conditions table th:nth-of-type(2) {
    width: 20%;
  }
  .program-conditions table th:nth-of-type(3) {
    width: 20%;
  }
  .program-conditions table th:nth-of-type(4) {
    width: 40%;
  }
}
/* Green Border */
.greenBorder {
  border-color: #237ABC;
}

/* Footer */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
}

.strong {
  font-weight: bold !important;
}

/* Popover */
.popover {
  border: 0.1rem solid #aaa;
  font-family: "Quicksand", Helvetica, Arial, sans-serif !important;
}

/* Popover Body */
.popover-content {
  background-color: #fff;
  color: #555;
  padding: 5px 15px;
  margin-bottom: 10px;
}

.popover-header {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
}

/* Adjust Popover For Bottom Of Screen W/ Fixed Bar */
.popover.bottom {
  margin-bottom: 80px;
}

/* Fix for top border on zoom */
.popover.bs-popover-auto[x-placement^=bottom] .arrow::after, .popover.bs-popover-bottom .arrow::after {
  top: -0.7rem;
  border-bottom-color: #f7f7f7;
}

#sp-masterprotocol-scriptspanel {
  margin-bottom: 0;
}

/* Sidebar Clin Cat List Wrapper */
.sidebarcatwrap {
  max-width: 85%;
  display: inline-block;
}

/* Static info box */
.patient-header {
  background-color: #fff;
  color: #000;
  border-radius: 0.35em;
  border: none;
  padding: 0 0 0.5em 0;
  margin: 0.25em auto 0em auto;
  font-size: 14px;
}

/* Patiet Header Documents Add Button */
.document-add-button {
  position: absolute;
  top: 1em;
  right: 1.5em;
}

.patient-header-patient-data {
  border-right: solid 1px #ccc;
}
.patient-header-patient-data .patient-name {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 5px 0;
}

.patient-header-clinical-data .badge-pill {
  background-color: #237ABC;
  color: #fff;
  vertical-align: text-top;
}

.patient-header-allergies-section {
  font-size: 0.8rem;
  height: 3.5rem;
}

/* Patient Header Popover */
.patient-header-popover {
  min-width: 500px !important;
  max-width: 700px !important;
}
.patient-header-popover .popover-header {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #fff;
  color: #666;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.patient-header-popover .popover-body {
  max-height: 15rem;
  overflow-y: auto;
}
.patient-header-popover label {
  display: block;
}

/* Patient Header MRN Icon */
.patient-header-mrn-icon {
  font-size: 0.6rem;
  font-weight: bold;
  width: 1.6rem;
  display: inline-block;
}

.popover-link {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #237ABC;
}

.popover-link:focus, .popover-link:hover {
  color: #555;
}

.popover-link-disabled {
  font-style: italic;
  color: #aaa;
}

.popover-link-disabled:hover {
  cursor: pointer;
  color: #ddd;
}

.sp-info-box-title {
  margin: 1em 0;
  font-size: 1.3em;
  text-transform: uppercase;
}

.search-clear {
  right: 3.75rem;
  top: 0.5rem;
  color: #555;
  position: absolute;
  z-index: 4;
}

.search-clear:hover {
  color: #237ABC;
  cursor: pointer;
}

.sp-modalsearchbutton {
  display: inline-block;
  width: 3em;
  height: 24px;
  position: relative;
  vertical-align: top;
}

.sp-modalsearchbutton button {
  padding-left: 0px;
  margin-top: 0px;
  font-size: 1em;
  height: 100%;
}

/* Search Bar Clear Text Icon */
#search-clear {
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  height: 14px;
  margin: auto;
  font-size: 14px;
  cursor: pointer;
  color: #ccc;
  z-index: 1;
}

#error_modal {
  display: block;
}

#error_modal .fa-times:hover {
  color: #237ABC;
  cursor: pointer;
}

/* Protocol - Required Fields */
.protocol-required-field {
  position: absolute;
  top: -3em;
  right: 0;
  height: 3em;
  width: 16em;
  background: #fff;
  padding: 0.25em 30px;
  text-align: right;
  font-style: italic;
}

/* Titles */
.page-title {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  font-size: 1.6em;
  margin: 0.15em 0;
  padding-bottom: 0.25em;
  padding-top: 0.25em;
}

.remove-shade .active:not(.tab-pane) {
  box-shadow: none !important;
}

/* ---------------------------------------------------------------------------------*/
/* ------------------------------  Home Screen   -----------------------------------*/
/* ---------------------------------------------------------------------------------*/
#homescreen_splash_logo {
  display: inline;
  max-width: max(28vw, 300px);
  margin-top: 6.5em;
}

.filters-modal-border-right {
  border-right: solid 1px #ddd;
}

.small-paragraph {
  font-size: 90%;
}

/* ---------------------------------------------------------------------------------*/
/* --------------------------  Clinical Programs / PCPD  ---------------------------*/
/* ---------------------------------------------------------------------------------*/
/* Allow Override Checkbox */
#sp-allowOverrideMedicalCondition {
  vertical-align: middle;
  margin-top: -3px;
  margin-left: 2em;
}

#sp-allowOverrideMedicalCondition-label {
  vertical-align: sub;
  padding-top: 0;
  margin-top: -3px;
  cursor: pointer;
  margin-right: 10px;
}

/* Automatic Tasks Button */
.pcpd-automatic-tasks-link {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-right: 1em;
  margin-top: 0.125em;
  outline: none;
  padding: 0;
  position: relative;
  z-index: 3;
}

/* Treatment Guidelines Div */
#treatmentGuidelinesDiv textarea {
  position: relative;
  min-height: 25px !important;
}

.reproductive-text h5 {
  font-size: 0.9rem !important;
}

/* Empty Section Of PCPD/CP */
.empty-section {
  padding: 0.5rem 15px !important;
  border-radius: 0.35rem;
}

.empty-section span {
  vertical-align: middle;
}

/* Resources In PCPD / CP */
td.tdResourceLink {
  width: 450px;
}

.tdResourceLink button {
  display: block;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 20vw;
  padding: 0;
}

/* Prior Auth Indicator */
.priorauth-icon-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.85rem;
  margin-top: 0.05em;
  z-index: 3;
}

.priorauth-badge {
  margin-left: -0.65rem !important;
  margin-top: -4px !important;
}

/* Edit/Save Buttons In Top Right Of PCPD/CP */
.buttonGroup {
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}

/* Auto Enrollment Warning Triangle in PCPD */
.auto-enrollment-warning-triangle {
  color: #c00;
  cursor: pointer;
  margin-left: 0.5rem;
  margin-top: 0.5rem;
}

.auto-enrollment-warning-triangle:hover {
  color: #555;
}

/* Copy Auto Tasks Input Truncation */
.copy-auto-tasks-checkbox {
  display: inline-block !important;
  margin: 0;
  max-width: calc(100% - 4em);
  padding-left: 2em !important;
  vertical-align: text-top;
}

/* View All Button */
.viewAllButton {
  display: block;
  width: 100%;
  text-align: right;
  margin-right: 1rem;
}

.tglink:hover, .viewAllButton:hover {
  color: #000;
  font-weight: bold;
}

/* Cards */
.card {
  border: solid 1px #d9d9d9;
  border-radius: 0.35em;
  box-shadow: 0px 1.5px 2px rgba(0, 0, 0, 0.15);
}
.card .card-body {
  padding: 0.5rem 15px;
}
.card .card-title {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-items: center;
  background: #666;
  border-radius: 0.35em 0.35em 0 0;
  box-shadow: inset 0 0 2em rgba(0, 0, 0, 0.3);
  color: #fff;
  display: flex;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0;
  padding: 0.35em 15px;
  position: relative;
}
.card .card-title > .row {
  width: calc(100% + 30px);
}
.card .card-title:hover:not(.no-click) {
  background: gray;
  color: #fff;
  cursor: pointer;
  transition-duration: 0.15s;
}
.card .card-title:hover:not(.no-click)::after {
  transform: scaleX(1);
  opacity: 0.175;
}
.card .card-title .fa-chevron-down, .card .card-title .fa-chevron-right {
  align-items: center;
  display: inline-flex;
  font-size: 0.8rem;
  height: 100%;
  margin-right: 0.25em;
}
.card .card-title .fa-chevron-down.open, .card .card-title .fa-chevron-right.open {
  -webkit-animation: rotateDown 0.35s normal both;
          animation: rotateDown 0.35s normal both;
}
@-webkit-keyframes rotateDown {
  50% {
    transform: rotate(90deg);
  }
  75% {
    transform: rotate(110deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
@keyframes rotateDown {
  50% {
    transform: rotate(90deg);
  }
  75% {
    transform: rotate(110deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
.card .card-title.card-title-links {
  align-items: flex-end;
  padding-bottom: 0;
}
.card .card-title.card-title-links a {
  background: #237ABC;
  border-radius: 0.35em 0.35em 0 0;
  color: #fff;
  display: inline-block;
  margin-right: 2px;
  padding: 0.35em 1.25em 0.25em 1.25em;
  position: relative;
  z-index: 1;
}
.card .card-title.card-title-links a.active {
  background: #fff;
  box-shadow: none;
  color: #555;
}
.card .card-title.card-title-links a:not(.active):hover {
  background: #ccc;
  color: #272727 !important;
}
.card .card-title.card-title-links .fa-chevron-right {
  margin-top: -0.1775em;
}
.card .card-title.card-title-links:not(.no-click):hover a:not(.active) {
  color: #fff;
}
.card table {
  /* Removes outer border but keeps grid */
  /* Removes First and last borders to sit flush in card */
}
.card table.table-bordered {
  border: none;
}
.card table tr td:first-of-type, .card table tr th:first-of-type {
  border-left: none;
}
.card table tr td:last-of-type, .card table tr th:last-of-type {
  border-right: none;
}

/* Card Panel Animation  */
.animate-panel {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 1;
}
.animate-panel.ng-hide {
  opacity: 0;
}
.animate-panel.ng-hide-add {
  transition: all 0s linear;
}
.animate-panel.ng-hide-remove {
  transition: all 0.5s ease-in;
}

*:not(.animate-panel).ng-hide.ng-hide-animate {
  display: none !important;
}

.user {
  position: relative;
}

.user a {
  cursor: pointer;
}

.user ul.popup {
  padding: 4px 0 6px;
  visibility: visible;
  opacity: 1;
}

.user ul {
  visibility: hidden;
  transform: translate(5px, 10px);
  z-index: 998;
  opacity: 0;
  position: fixed;
  background: #555;
  border: 1px solid;
  min-width: 15em;
  max-width: 30em;
  border-color: #666;
  border-radius: 5px;
  transition: 0.2s ease-out;
  transition-property: opacity, padding, visibility;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user li:first-child {
  float: right;
}

.user li {
  padding: 0 12px;
  font-size: 1em;
  color: #fff;
}

.user li.sep {
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid #b4bbce;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.6);
}

.user li a {
  display: block;
  font-family: "Quicksand", Helvetica, Arial, sans-serif;
  position: relative;
  margin: 0 -13px;
  padding: 0 20px 0 12px;
  color: #fff;
  text-decoration: none;
  border: 1px solid transparent;
}

.tasksList .popover {
  left: 30px !important;
  min-width: 20em !important;
  max-width: 100% !important;
}

.shade {
  background: red !important;
  position: absolute;
  height: 2rem;
  width: 10rem;
}

/* ---------------------------------------------------------------------------------*/
/* -----------------------------  Task Detail Modal --------------------------------*/
/* ---------------------------------------------------------------------------------*/
/* Title */
.page-title-modal {
  font-size: 1.3em;
  margin: 1em 0;
}

/* Task Details Modal - Med Conditions/Allergies */
.tdmcondiv {
  z-index: 9999;
  overflow: visible;
}

/* Task Details Modal - Static Info Box */
.tdmStaticBox {
  font-size: 1em;
  position: relative;
  padding: 0px;
}

.tdmStaticBox h4 {
  margin: 0.25em 0;
}

/* Task Details Modal - Duration Inputs Styling */
.durationInput {
  width: 50% !important;
  background-position: 96% 50% !important;
  background-size: 12.5px !important;
}

/* ----- Custom Outlook-Style Inputs That Allow Text Or Select Menu ----- */
/* Wrapper */
.tdModalInputWrap {
  position: relative;
  border: solid 1px #ccc;
  width: 50% !important;
  padding: 0;
  margin: 0;
  border-radius: 0.35em;
  transition-duration: 0.15s;
  display: block;
  float: right;
}

/* Text Input */
.tdModalInput {
  position: absolute !important;
  top: 1px;
  left: 0px;
  bottom: 1px;
  right: 1.5em;
  border: none;
  width: 80% !important;
}

/* Select Box */
.tdModalSelect {
  position: absolute !important;
  top: 1px;
  right: 0px;
  bottom: 1px;
  margin: 0;
  padding: 0;
  border: none;
  height: calc(100% - 2px) !important;
  background-size: 12.5px !important;
  z-index: 1 !important;
  width: calc(100% - 1.5em) !important;
}

/* Remove Focus/Active Styling */
.tdModalInput:focus, .tdModalInput:active, .tdModalSelect:focus, .tdModalSelect:active {
  border: none;
  box-shadow: none;
  outline: none;
}

/* Task Detail Modal - Task ID in Bottom Left Corner */
.taskid {
  text-align: left;
  padding-left: 7px;
  margin-top: -5px;
}

/* Past Due Icon */
.past-due-icon {
  color: #c00;
  font-size: 0.9em;
  position: absolute;
  top: 0.8em;
  right: 2.3em;
  z-index: 99;
}
.past-due-icon.past-due-duration {
  right: calc(50% + 1em);
}

/* Task Detail Modal - Urgent Indicator */
.urgent-task-icon {
  border: none;
  background: none;
  font-size: small;
  cursor: pointer;
}

.urgent-task-icon span {
  color: #aaa;
  font-size: 2em;
}

.urgent-task-icon span:hover, .urgent-task-icon span:active, .taskurgenicon span:focus {
  color: #555;
}

.urgent-task-icon:hover, .urgent-task-icon:active, .urgent-task-icon:focus {
  border: none;
  background: none;
}

/* Activated */
.urgent-task-icon.pressed {
  background: #fff;
  border: none;
}

.urgent-task-icon.pressed span {
  color: #f90;
}

.notes-modal {
  min-width: 500px !important;
}

/* Available Protocols Table Fix */
.availProtocolTable {
  border-top: solid 2px #ddd;
}

#protocolsScheduleButtonPCPD.gray-out-span {
  font-style: normal;
}

/* Protocol Boxes */
.sp-protocolbox {
  background: #fff;
  border: solid 1px #ccc;
  border-radius: 0.5em;
}

.sp-protocolbox input[type=text] {
  background-position: 95% 50%;
  background-size: 10.5px;
}

/* Remove Right Padding On Protocol Questions */
.sp-protocolbox .col-xs-7 {
  padding-right: 0;
}

.sp-protocolintrobox {
  padding: 1em;
}

.sp-protocollabels label {
  padding-top: 0;
  min-height: 26px;
  height: 26px;
}

.sp-protocollabels input, .sp-protocollabels label {
  font-weight: 600;
  cursor: pointer;
  display: initial;
}

.sp-protocollabels input:not([disabled]) + label:hover {
  color: #237ABC;
}

.sp-protocollabels label.strong {
  color: #237ABC;
}

caption .sp-protocollabels label {
  padding-top: 0;
  padding-bottom: 0;
  height: auto;
  min-height: 1%;
}

caption .sp-protocollabels input[type=checkbox]:checked + label {
  padding-bottom: 0;
}

.sp-statementDeliveredLabel label {
  display: initial;
}

.sp-protocoltable td {
  min-width: 5em;
}

.sp-protocoltable thead tr th {
  border-bottom: 0;
  padding-bottom: 0;
  word-break: break-word;
}

.sp-protocoltable caption, .caption {
  background: #eee;
  border-top-left-radius: 0.35em;
  border-top-right-radius: 0.35em;
  margin-right: 0px;
  box-shadow: inset 0px 0px 40px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  color: #000;
  min-height: 2.5rem;
}

.sp-protocoltable {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0.35em;
  border-bottom-right-radius: 0.35em;
  border-collapse: initial;
  table-layout: fixed;
}

.sp-protocoltable tbody tr:first-child td {
  border-top: 0;
}

.sp-protocoltable input[type=checkbox] {
  margin-top: 4px;
}

.sp-protocolchecklist {
  border: solid 1px #aaa !important;
  border-left: none !important;
  margin-bottom: 0;
}

.sp-protocolchecklist .sp-protocollabels {
  padding-bottom: 0;
}

.collapse-notes-textarea {
  height: 25px !important;
}

.active-datepicker {
  position: relative;
  z-index: 2 !important;
}

.active-datepicker .dropdown-menu {
  position: absolute !important;
  margin-bottom: 4rem;
}

/* Please Select A Pharmacy */
.sp-pharmacy-selection-message {
  text-align: center;
  padding-left: 5px;
}

/* Select Pharmacy Page - Debugging */
#pharmacy_debug_results_table {
  width: 100%;
  margin: 0px;
  padding: 0px;
  border: 0px;
}

#pharmacy_debug_results_table .error {
  background-color: #f00;
  color: #fff;
  font-weight: bold;
}

#pharmacy_debug_results_table .error td:hover {
  color: #c00 !important;
}

#pharmacy_debug_screen table {
  table-layout: auto;
  margin: 1em 0 0 0;
  padding: 0px;
  width: 100%;
}

#pharmacy_debug_screen th {
  border-top: solid 1px #ddd;
  min-width: 50px;
  max-width: 200px;
}

#pharmacy_debug_results_table th:last-child:hover {
  cursor: pointer;
}

#pharmacy_debug_screen td {
  min-width: 100px;
  max-width: 200px;
}

#pharmacy_debug_results_table tr:not(.error) .fa {
  color: #237ABC !important;
}

#pharmacy_debug_screen td:not(.text-center) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

#pharmacy_debug_screen ::-webkit-scrollbar {
  height: 8px;
}

#pharmacy_debug_results_table tr:not(.no-hover) td:hover {
  background: #eee;
  color: #272727;
}

#pharmacy_debug_results_table .sp-click-to-copy:hover {
  cursor: copy;
}

#pharmacy_debug_results_table .sp-pointer:hover {
  cursor: pointer;
}

/* Copy Button In Debug Page*/
.sp-click-to-copy {
  overflow: auto;
  display: block;
  height: 100%;
}

/* No Search Results */
.no-search-found {
  margin: 15px;
}

.datepickerRealign.datepickerRealignMargin .dropdown-menu {
  margin-left: 15px;
}

.sp-protocoltable tbody tr td {
  vertical-align: middle;
}

.sp-protocoltable tbody tr td label {
  padding-top: 0;
}

/* Task List Tables and Patient Enrollment Tables */
table.sp-tempEPatient thead th {
  background-color: #555;
  color: #fff;
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.3);
}

table.sp-tempEPatient tbody tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}

table.sp-tempEPatient tbody tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}

/* Selected Element */
.selected {
  background-color: #237ABC;
  color: #fff;
  box-shadow: inset 0 0 5em rgba(0, 0, 0, 0.2), 0 0 0 1pt #999 !important;
}

/* Header Info Box Divs */
.sp-prof-div p, .sp-cond-div p, .sp-nam-div p {
  padding: 0;
  margin: 0 auto;
}

/* Z-Index Fixes for Weird Datepicker issue*/
.sp-datepicker-fix {
  z-index: 99;
  position: relative;
}

.sp-datepicker-alignright .dropdown-menu {
  left: auto !important;
  right: 0 !important;
}

.popover {
  min-width: 350px;
  max-width: 500px;
}

/* Protocol Popover*/
.card .popover {
  min-width: 500px;
}

.popover .sp-protocollabels {
  margin: 10px 0 5px 0;
}

.popover a {
  cursor: pointer;
  color: #666;
}

.popover a:hover {
  color: #f1872e;
}

.popover textarea {
  min-height: 200px !important;
  padding-left: 8px !important;
  overflow-y: auto !important;
}

.noteClose {
  margin-top: -3.5em;
}

.popover .fa-times {
  pointer-events: none;
}

.popover .fa-flag, .popover .fa-sticky-note-o {
  margin-left: 0.75em;
  margin-bottom: 0.5em;
}

.sp-datepicker-alignright .dropdown-menu {
  left: auto;
  right: 0;
}

.empty {
  min-height: 0;
}

.datePicker {
  border: #f2dede 2px solid;
  border-width: thick;
}

.dropdown-menu[template-url="/Scripts/Views/Protocol-Views/ariaTextboxTemplate.html"],
.dropdown-menu[template-url="/Scripts/Views/Protocol-Views/ariaTextboxTemplateForTags.html"] {
  box-shadow: 0 0 1px grey;
  transform: none;
  width: 100%;
  max-height: 15rem;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 0;
  z-index: 999999;
  font-size: 0.95em;
}

.dropdown-menu[template-url="/Scripts/Views/Protocol-Views/ariaTextboxTemplate.html"] li,
.dropdown-menu[template-url="/Scripts/Views/Protocol-Views/ariaTextboxTemplateForTags.html"] li {
  padding: 10px 15px;
  border-bottom: 1px dotted gray;
  position: relative;
}

.dropdown-menu[template-url="/Scripts/Views/Protocol-Views/ariaTextboxTemplate.html"] li:last-of-type,
.dropdown-menu[template-url="/Scripts/Views/Protocol-Views/ariaTextboxTemplateForTags.html"] li:last-of-type {
  border-bottom: none;
}

.dropdown-menu[template-url="/Scripts/Views/Protocol-Views/ariaTextboxTemplate.html"] li:hover,
.dropdown-menu[template-url="/Scripts/Views/Protocol-Views/ariaTextboxTemplateForTags.html"] li:hover {
  color: #237ABC;
  cursor: pointer;
}

.no-results + .dropdown-menu li {
  cursor: default;
  pointer-events: none;
  z-index: 999999;
}

.no-results + .dropdown-menu li:hover {
  color: #212529;
}

.add-button {
  position: absolute;
  right: -0.75rem;
  top: 0.5rem;
  cursor: pointer;
  color: #237ABC;
}

.add-button:hover {
  color: #272727;
}

/* No Results in Typehead */
.modal .no-results {
  right: 0;
  background: #fff;
  border: solid 1px #ccc;
  border-top: none;
  font-size: 0.8rem;
  padding: 0.65rem 1rem;
  margin-bottom: 0;
  margin-top: 0px;
  color: #666;
}

.modal td .no-results {
  width: 100%;
}

.searchable-input:focus ~ .no-results {
  display: block;
}

.patient-prescription-message, .patient-prescription-message:hover {
  align-items: center;
  background: #272727 !important;
  color: #fff;
  cursor: default;
  display: flex;
  font-size: 0.9em;
  height: 64px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.patient-prescription-message img, .patient-prescription-message:hover img {
  max-height: calc(64px - 3em);
  margin: 0 2.5em 0 0.5em;
}

.patient-prescription-message-content {
  max-height: calc(100vh - 8.5rem);
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.card-footer {
  background: #fff;
}

/* Position: Fix Datepicker On Export Data Modal Always */
.export-data-modal .dropdown-menu {
  transform: translate(0%, 24px);
  position: fixed;
  top: inherit !important;
  left: inherit !important;
  z-index: 999999 !important;
  float: none;
  overflow: visible;
  margin-top: 8px;
}

.ag-theme-alpine {
  font-family: "Quicksand", Helvetica, Arial, sans-serif !important;
}
.ag-theme-alpine [class^=ag-] {
  border-radius: 0.25em !important;
}
.ag-theme-alpine .ag-root-wrapper .ag-header {
  background-color: white !important;
  border-color: #ddd !important;
  font-family: "Cabin", Helvetica, Arial, sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ag-theme-alpine .ag-root-wrapper .ag-header .ag-header-row {
  color: #888 !important;
}
.ag-theme-alpine .ag-root-wrapper .ag-row-odd {
  background-color: white !important;
}

/* ---------------------------------------------------------------------------------*/
/* ---------------------------------------------------------------------------------*/
/* -------------------------   Responsive Fixes   ----------------------------------*/
/* ---------------------------------------------------------------------------------*/
/* ---------------------------------------------------------------------------------*/
/* Up To Bootstrap Large */
@media only screen and (max-width: 1199px) {
  .fy-actionbar.stuck {
    right: 0px;
  }
  /* PCPD Reduce Padding On Top 3 Divs When They Collapse to 12 Columns Each */
  #informationWrap {
    padding: 0;
  }
  .patient-header-allergies-section {
    height: auto;
    margin-bottom: 0.5rem;
  }
  .patient-header-popover {
    min-width: 325px;
    max-width: 400px;
  }
  .patient-header-patient-data {
    border-right: none;
  }
}
/* Edit / Save Button Group Goes From Top Right To Centered - Must Be a bit over large to accomodate > 4 Buttons */
@media only screen and (max-width: 1499px) {
  .protocolTitle {
    width: 50%;
    text-align: left;
  }
  .protocolTitle:nth-child(2) h4 {
    text-align: right !important;
  }
}
/* Over Bootstrap Medium */
@media (min-width: 992px) {
  .col-lg-6 .panel.left {
    border-right: solid 1px #aaa;
  }
  .col-lg-6 .panel.middle {
    border-right: none;
    border-left: solid 1px #aaa;
  }
  .col-lg-4 .panel.right {
    border-left: solid 1px #aaa;
  }
  .col-lg-4 .panel.left {
    border-right: solid 1px #aaa;
  }
  .col-lg-4 .panel.middle {
    border-right: none;
    border-left: solid 1px #aaa;
  }
  .panel.left, .panel.middle, .panel.right {
    border-bottom: solid 1px #aaa !important;
  }
  .modal .dropdown-menu:not(.no-results) {
    /* We are nesting inside of a modal with an overflow-y: auto, overflow-x: hidden, so we need to cheat this by removing the float, positioning fixed, and aligning with transform instead of left/top */
    transform: translate(0%, 24px);
    position: fixed;
    top: inherit !important;
    left: inherit !important;
    z-index: 999999 !important;
    float: none;
    overflow: visible;
    margin-top: 8px;
  }
  .modal .dropdown-menu[template-url="/Scripts/Views/Protocol-Views/ariaTextboxTemplate.html"],
.modal .dropdown-menu[template-url="/Scripts/Views/Protocol-Views/ariaTextboxTemplateForTags.html"] {
    margin-bottom: 0;
    margin-top: 2.25em;
    max-height: 15rem;
    overflow-y: auto;
    overflow-x: hidden;
    position: absolute;
    transform: none;
    width: 100%;
    z-index: 999999;
  }
}
/* Over Bootstrap Large */
@media only screen and (min-width: 1199px) {
  .text-center-lg {
    text-align: center;
  }
  .col-lg-4 .panel.left {
    border-right: solid 1px #aaa;
  }
  .col-lg-4 .panel.middle {
    border-right: solid 1px #aaa;
    border-left: solid 1px #aaa;
  }
  .col-lg-4 .panel.right {
    border-left: solid 1px #aaa;
  }
  /* PCPD Reduce Padding On Left And Right Top Divs When In fullscreen mode */
  .leftpanelspacing {
    padding-left: 0;
  }
  .rightpanelspacing {
    padding-right: 0;
  }
  .modal-dialog {
    max-width: 800px !important;
  }
  .modal-dialog.modal-lg {
    max-width: 900px !important;
  }
  .modal-dialog.modal-xl {
    max-width: 1200px !important;
  }
}
/* Over Bootstrap Small */
@media (min-width: 768px) {
  /* PCPD Header Info Alignment When Expanded */
  .sp-nam-div {
    text-align: left;
  }
  .sp-prof-div {
    text-align: right;
  }
  /* Container Width */
  .container {
    width: 100%;
  }
  /* Modal Sizing */
  .modal-dialog {
    margin: 7.5vh auto 0 auto;
    max-height: 85vh;
    max-width: 75vw;
    width: auto;
  }
}
/* Up To Bootstrap Small */
@media (max-width: 767px) {
  /* PCPD Header Info Alignment When Not Expanded */
  .sp-cond-div, .sp-prof-div {
    margin-top: 4px;
  }
  .text-center-xs {
    text-align: center;
  }
  .modal-dialog {
    margin-top: 10%;
  }
  .modal-dialog.modal-xl {
    max-width: 90% !important;
  }
}
/* Up To Bootstrap Extra Small */
@media (max-width: 480px) {
  /* Disable Login Name / Logout Button On Extra Small Views */
  #home_respheader_username {
    display: none;
  }
}
/* Custom Size Fixes */
@media (max-width: 690px) {
  /* Sidebar fixes*/
  .sidebar {
    width: 100%;
    z-index: -1;
    left: -100%;
  }
  .menuOpen {
    left: 0;
  }
}
@media (max-height: 640px) {
  /* Enable Scrollbar On Small Views */
  .sidebar-tab-content {
    overflow: auto;
    padding-right: 2px;
  }
}
@media (max-width: 991px) {
  /* Task Details Modal Notes Tabs Width */
  .taskdetailnotes li {
    width: 30% !important;
  }
  .navbar-header {
    float: none;
  }
  .navbar-left, .navbar-right {
    float: none !important;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }
  .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-nav {
    float: none !important;
    max-height: calc(100vh - 6em);
    overflow-y: auto !important;
    max-width: 100%;
    margin: 0;
  }
  .navbar-nav > li {
    float: none;
  }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .collapse.in {
    display: block !important;
  }
  /* Push sidebar up when header is reduced*/
  .sidebar:hover, .menuOpen {
    top: 4em;
    margin-top: 0;
    height: 100vh;
  }
  /* Push content up when header is reduced */
  div[ui-view] {
    top: 4em !important;
  }
  /* Header for Small Devices */
  .navbar-collapse {
    background: #fff;
    box-shadow: inset 0px 0px 35px rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 6em;
    width: 105%;
    overflow: hidden !important;
    text-align: center !important;
    z-index: 9999;
    left: -15px;
    font-size: 1em;
  }
  .navbar-collapse li {
    padding: 1vh 1.5vw;
  }
  /* Navigation Header */
  .navbar-default {
    z-index: 1000;
    position: relative;
  }
  .navbar-default .navbar-nav li a {
    color: #555 !important;
    font-weight: bold;
    text-shadow: 1px 1px 0.4vw rgba(0, 0, 0, 0.35);
  }
  .navbar-default .navbar-nav li a:hover {
    color: #f1872e !important;
  }
  .patient-header-popover {
    min-width: 250px;
    max-width: 325px;
  }
}
/* Adjust Modals to Support Bootstrap v3 logic */
.fade.in {
  opacity: 1;
}

.modal.in .modal-dialog {
  transform: translate(0, 0);
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* Highlighted link styling */
.highlight-link:active {
  color: #237ABC !important;
}

/* Copied from enrollments css */
.sp-SortHeader {
  cursor: pointer;
}

/* Patient Enrollments Ordering Arrows*/
.sp-sortorder:after {
  content: "▲";
}

.sp-sortorder.reverse:after {
  content: "▼";
}

.yellowHighlight {
  background-color: yellow;
}/*# sourceMappingURL=site.css.map */
@charset "UTF-8";
/*  © Copyright 2021 ScriptPro | All Rights Reserved  */ /* Imports */
@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&family=Quicksand:wght@500;700&display=swap");
/* Fonts */
/* Colors */
/* Sizes */
/* Mixins */
/* Main Sidebar Container */
.sidebar {
  position: fixed;
  display: block;
  left: -290px;
  bottom: 0;
  width: 320px;
  height: 7.75rem;
  top: 30%;
  color: #237ABC;
  z-index: 2;
  background: none;
  overflow: hidden;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-property: top, left;
}
.sidebar label {
  font-size: 1em;
  padding-top: 0.15em;
}

.sidebar .fa {
  margin-top: 0.25rem;
}

.sidebar-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar-icon {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #666;
  border-radius: 0 0 0.35rem 0.35rem;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2), inset 0 0 1em rgba(0, 0, 0, 0.3);
  height: 1rem;
  cursor: pointer;
  padding: 1rem 0.75rem;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  left: -2.25em;
  top: 14.25em;
  transform: rotate(-90deg);
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.sidebar-icon:hover {
  background: #999999;
}

.sidebar-icon::after {
  content: "SIDEBAR";
  font-size: 1em;
  color: #fff;
}

.menuOpen .sidebar-icon {
  display: none;
}

.sidebar .sidebar-close {
  font-size: 1em;
  margin-top: 0.25rem;
  margin-right: 0.25rem;
  float: right;
  cursor: pointer;
  color: #555;
}

.sidebar .sidebar-close:hover {
  color: #f1872e;
}

.sidebar .sidebar-tab-content-heading {
  color: #000;
  font-weight: 600;
}

.menuOpen .sidebar-tab-content {
  display: block;
  padding: 1.25rem;
}

/* Hide Excess Content When Closed*/
.sidebar-tab-content {
  display: none;
}
.sidebar-tab-content .green:hover {
  color: #000 !important;
}

.lowercpsidebar {
  max-height: 30%;
  overflow: auto;
}

.sidebar-wrapper {
  height: 100%;
  position: relative;
  padding-bottom: 5em;
}

.sidebar-ul {
  -webkit-padding-start: 0;
  overflow: hidden;
}

.sidebar-ul li {
  padding-bottom: 0.4em;
  padding-left: 15px;
  padding-top: 0.4em;
}

.sidebar-ul li h5, li.sp-sidebar-listItem h5 {
  font-weight: normal;
}

.sidebar-ul li:hover h5, li.sp-sidebar-listItem:hover h5 {
  font-weight: bold;
  color: #f1872e;
}

.sidebar-ul li h5.gray-out-span, .sidebar-ul li.gray-out-span span {
  color: #a6a6a6;
  cursor: not-allowed !important;
  font-weight: 300 !important;
}

.sidebar a {
  display: block;
}

.sidebar a, .sidebar span, .sidebar p {
  font-size: 0.9rem;
}

.sidebar span.clickable:hover, .sidebar div.clickable:hover span, .sidebar div.clickable:hover label {
  color: #f1872e;
}

.sidebar span.ml-4 {
  font-size: 0.85rem;
  margin: 0.5rem 0;
}

/* Sidebar Accordion */
.accordion__container {
  border: 1px solid #ccc;
  padding: 20px;
}

.accordion__tab {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.accordion__tab-title {
  cursor: pointer;
}

li.accordion__tab-content {
  padding-left: 0;
  list-style: none;
  text-transform: none;
}

li.accordion__tab-content:hover {
  border-left: none;
  transition-duration: 0.1s;
  color: #237ABC;
}

.sidebar-ul li ul {
  -webkit-padding-start: 1em;
}

.add-clinic-sidebar h5 {
  margin-top: 4px;
  color: #237ABC !important;
}

.add-clinic-sidebar h5 span {
  font-weight: bold;
}

.hide-scrollbars::-webkit-scrollbar {
  display: none;
}

.sidebar-title-first {
  font-family: "Cabin", Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  display: inline;
  font-size: 1.4em;
}

.sp-sidebar-listItem {
  list-style-type: none;
}

.sp-sidebar-listItem:hover {
  cursor: pointer;
}

.sp-sidebar-listItem:hover h4 {
  font-weight: 600;
}

.menuOpen.affix {
  top: 0 !important;
}

.menuOpen.affix .sidebar-icon {
  top: 10% !important;
}

/* Open Sidebar */
.menuOpen {
  left: 0 !important;
  box-shadow: 0px 0px 1vw rgba(0, 0, 0, 0.2) !important;
  top: 7.75rem;
  height: auto;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

.menuOpen .sidebar-content {
  overflow-y: auto;
  overflow-x: hidden;
}

/* Up To Bootstrap Large */
@media only screen and (max-width: 991px) {
  .menuOpen {
    top: 3.5rem;
    box-shadow: 0px 3px 1vw rgba(0, 0, 0, 0.2) !important;
  }
}/*# sourceMappingURL=sidebar.css.map */
