style.css 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025
  1. :root {
  2. --w-70: 70%;
  3. --primary-color: #1c4587;
  4. --bg-grey: #EDEEF1;
  5. }
  6. /* login css */
  7. .login-container {
  8. background-color: var(--bg-grey);
  9. }
  10. .login-header {
  11. font-size: 30px;
  12. font-weight: 100;
  13. }
  14. .login-form {
  15. padding: 50px;
  16. }
  17. .login-form label {
  18. font-size: 14px;
  19. color: #454859;
  20. }
  21. .login-form .form-control {
  22. height: calc(1.5em + 0.75rem + 0.3px);;
  23. }
  24. .bg-holder {
  25. background-image: url(/login-rhs.jpg);
  26. background-size: cover;
  27. }
  28. .login-container .logo {
  29. font-size: 35px;
  30. font-weight: 800;
  31. color: rgb(13, 89, 175);
  32. }
  33. .login-container small {
  34. font-size: 12px;
  35. color: #999;
  36. }
  37. /* end of login */
  38. .w-70 {
  39. width: var(--w-70);
  40. }
  41. .text-warning-mellow {
  42. color: #d8a714!important;
  43. }
  44. .bg-warning-mellow {
  45. background-color: #ffc10777 !important;
  46. }
  47. .text-link {
  48. color: rgb(13, 89, 175) !important;
  49. }
  50. .stag-primary-bg {
  51. background-color: var(--primary-color) !important;
  52. color: #fff;
  53. }
  54. .stag-primary-border {
  55. border-color: var(--primary-color) !important;
  56. }
  57. .navbar-brand {
  58. font-size: 16px !important;
  59. font-weight: 600;
  60. }
  61. .navbar-brand>img {
  62. max-width: 160px;
  63. }
  64. .sidebar .nav-link {
  65. padding: .25rem 1rem;
  66. }
  67. .sidebar .nav-item {
  68. margin-right: 0;
  69. }
  70. .sidebar .nav-item .nav-child-list {
  71. list-style: none;
  72. }
  73. .sidebar .nav-item .nav-child-list .nav-item .nav-link {
  74. padding-left: 2rem;
  75. }
  76. .sidebar .if-not-collapsed, .sidebar .if-collapsed {
  77. display: none;
  78. }
  79. .sidebar .nav-item.nav-child-collapsed .if-collapsed {
  80. display: block;
  81. }
  82. .sidebar .nav-item:not(.nav-child-collapsed) .if-not-collapsed {
  83. display: block;
  84. }
  85. .sidebar .nav-item.nav-child-collapsed .nav-child-list {
  86. display: none;
  87. }
  88. .navbar-dark .nav-item .nav-link {
  89. color: #fff;
  90. }
  91. .dropdown-menu {
  92. margin-top: 7px;
  93. border-radius: 0;
  94. min-width: 120px;
  95. }
  96. .dropdown-item:not(:last-child) {
  97. border-bottom:1px solid #ddd;
  98. }
  99. main {
  100. padding:0 1rem;
  101. }
  102. /* ability to toggle the video pane (rhs) */
  103. .stag_rhs_toggle, .stag_rhs_toggle:hover {
  104. position: fixed;
  105. bottom: 0;
  106. right: 0;
  107. padding: 0.25rem 0.75rem;
  108. border-top-left-radius: 6px;
  109. background-color: var(--primary-color);
  110. color: #fff;
  111. z-index: 2;
  112. }
  113. body.stag_rhs_collapsed .v-split,
  114. body.stag_rhs_collapsed .app-right-panel {
  115. display: none !important;
  116. }
  117. .delete-column {
  118. width: 120px;
  119. }
  120. .m-negator {
  121. margin-left: -1.25rem !important;
  122. margin-right: -1.25rem !important;
  123. }
  124. .pl-3-5 {
  125. padding-left: 1.25rem !important;
  126. }
  127. .lh-24px {
  128. height: 24px;
  129. line-height: 24px;
  130. }
  131. .mcp-theme-1 *:not(i) {
  132. font-family: Verdana, sans-serif;
  133. font-size: 12px;
  134. }
  135. .mcp-theme-1 .font-size-11 {
  136. font-size: 11px;
  137. }
  138. .mcp-theme-1 .font-size-13 {
  139. font-size: 13px;
  140. }
  141. .mcp-theme-1 .font-size-14 {
  142. font-size: 14px;
  143. }
  144. .mcp-theme-1 .font-size-16 {
  145. font-size: 16px;
  146. }
  147. .mcp-theme-1 .font-underline {
  148. text-decoration: underline;
  149. }
  150. .mcp-theme-1 .on-hover-opaque {
  151. opacity: 0.6;
  152. }
  153. .mcp-theme-1 .on-hover-opaque:hover {
  154. opacity: 1;
  155. }
  156. .mcp-theme-1 .opacity-0 {
  157. opacity: 0 !important;
  158. }
  159. .mcp-theme-1 .opacity-60 {
  160. opacity: .6;
  161. }
  162. .mcp-theme-1 .overflow-visible {
  163. overflow: visible;
  164. }
  165. .mcp-theme-1 .text-secondary-light {
  166. color: #c9ddef !important;
  167. }
  168. .mcp-theme-1 a, .mcp-theme-1 a:link {
  169. color: rgb(13, 89, 175);
  170. }
  171. .mcp-theme-1 .btn.btn-primary {
  172. background: rgb(13, 89, 175);
  173. border-color: rgb(13, 89, 175);
  174. box-shadow: none;
  175. }
  176. #sidebarMenu .mcp-theme-1 .nav-item {
  177. margin: 0;
  178. }
  179. #sidebarMenu .mcp-theme-1 .nav-link:hover {
  180. background: #e3e3e394;
  181. }
  182. #sidebarMenu .mcp-theme-1 .nav-link {
  183. border-top: 1px solid transparent;
  184. }
  185. #sidebarMenu .mcp-theme-1 .nav-link.active {
  186. border-top: 1px solid #f8f9fa;
  187. background: #e2e2e2;
  188. }
  189. .mcp-theme-1 .text-sm {
  190. font-size: 85%;
  191. }
  192. .mcp-theme-1 .text-sm-incl-children,
  193. .mcp-theme-1 .text-sm-incl-children *:not(i) {
  194. font-size: 0.8rem;
  195. }
  196. .mcp-theme-1 .minutes-label {
  197. width: 40px;
  198. }
  199. .mcp-theme-1 .memo-textarea {
  200. min-width: 200px;
  201. height: 60px;
  202. }
  203. .main-row {
  204. display: flex;
  205. flex-wrap: nowrap;
  206. margin-right: -15px;
  207. margin-left: -15px;
  208. }
  209. .main-row > .sidebar {
  210. width: 180px;
  211. min-width: 180px;
  212. }
  213. .main-row > main {
  214. flex-grow: 1;
  215. }
  216. html, body {
  217. height: 100%;
  218. }
  219. body>nav.navbar {
  220. height: 55px;
  221. }
  222. .stag-content {
  223. height: calc(100% - 55px);
  224. }
  225. [moe][large] form, [moe][large] [url] {
  226. width: 450px;
  227. }
  228. [moe][bottom] form {
  229. bottom: 100%;
  230. }
  231. .moe-disabled[moe] {
  232. cursor: not-allowed;
  233. }
  234. .moe-disabled[moe] [start][show] {
  235. opacity: 0.5;
  236. pointer-events: none;
  237. }
  238. .mcp-theme-1 .stag-no-wrap-td {
  239. max-width: 260px;
  240. }
  241. .mcp-theme-1 .stag-no-wrap {
  242. max-width: 250px;
  243. overflow: hidden;
  244. text-overflow: ellipsis;
  245. white-space: nowrap;
  246. display: block;
  247. }
  248. .mcp-theme-1 .form-control.form-control-sm:not(.min-width-unset) {
  249. min-width: 200px;
  250. }
  251. .mcp-theme-1 .min-width-unset>.form-control.form-control-sm {
  252. min-width: unset !important;
  253. }
  254. .mcp-theme-1 [large] .form-control.form-control-sm {
  255. min-width: unset;
  256. }
  257. [wide] .form-control.form-control-sm {
  258. min-width: 480px;
  259. }
  260. [moe][center] [url]:not([show]) {
  261. position: fixed;
  262. top: 10%;
  263. max-height: 88%;
  264. overflow-y: auto;
  265. overflow-x: hidden;
  266. left: calc(50% - 250px);
  267. width: 500px;
  268. }
  269. [moe][center][wide] [url]:not([show]) {
  270. left: calc(50% - 400px);
  271. width: 800px;
  272. }
  273. [moe][center] [url]:not([show]) .form-control.form-control-sm {
  274. min-width: unset;
  275. max-width: 100%;
  276. }
  277. .mcp-theme-1 .width-200px {
  278. width: 200px !important;
  279. }
  280. .mcp-theme-1 .width-300px {
  281. width: 300px !important;
  282. }
  283. .mcp-theme-1 .width-22px {
  284. width: 22px !important;
  285. }
  286. .mcp-theme-1 .width-30px {
  287. width: 30px !important;
  288. }
  289. .mcp-theme-1 .width-40px {
  290. width: 40px !important;
  291. }
  292. .mcp-theme-1 .width-50px {
  293. width: 50px !important;
  294. }
  295. .mcp-theme-1 .width-60px {
  296. width: 60px !important;
  297. }
  298. .mcp-theme-1 .width-70px {
  299. width: 70px !important;
  300. }
  301. .mcp-theme-1 .min-width-70px {
  302. min-width: 70px !important;
  303. }
  304. .mcp-theme-1 .width-90px {
  305. width: 90px !important;
  306. }
  307. .mcp-theme-1 .min-width-140px {
  308. min-width: 140px !important;
  309. }
  310. .mcp-theme-1 .min-width-200px {
  311. min-width: 200px !important;
  312. }
  313. .mcp-theme-1 .min-width-300px {
  314. min-width: 300px;
  315. }
  316. .mcp-theme-1 .min-width-500px {
  317. min-width: 500px !important;
  318. }
  319. .mcp-theme-1 .max-width-500px {
  320. max-width: 500px !important;
  321. }
  322. .mcp-theme-1 .min-width-700px {
  323. min-width: 700px !important;
  324. }
  325. .mcp-theme-1 .max-width-700px {
  326. max-width: 700px !important;
  327. }
  328. .mcp-theme-1 .width-100px {
  329. width: 100px;
  330. min-width: unset !important;
  331. max-width: unset !important;
  332. }
  333. .mcp-theme-1 .width-150px {
  334. width: 150px;
  335. min-width: unset !important;
  336. max-width: unset !important;
  337. }
  338. .mcp-theme-1 .width-100pc {
  339. width: 100% !important;
  340. min-width: unset !important;
  341. }
  342. .mcp-theme-1 .max-width-200px {
  343. max-width: 200px;
  344. }
  345. .mcp-theme-1 .max-width-300px {
  346. max-width: 300px;
  347. }
  348. .mcp-theme-1 .outline-0 {
  349. outline: none !important;
  350. box-shadow: none !important;
  351. }
  352. .cancelled-item {
  353. opacity: 0.5;
  354. }
  355. .cancelled-item:not(.always-clickable) * {
  356. pointer-events: none;
  357. }
  358. .note-content {
  359. max-height: 300px;
  360. overflow-y: auto;
  361. }
  362. .note-content:not([auto-edit]) {
  363. padding: 1rem;
  364. padding-bottom: 0;
  365. cursor: pointer;
  366. position: relative;
  367. }
  368. .note-content:not(.cancelled):not([auto-edit]):not(.readonly):before {
  369. content: '(click to change)';
  370. display: block;
  371. color: #535353;
  372. padding-bottom: 0.3rem;
  373. }
  374. .mcp-theme-1 .ql-container, .mcp-theme-1 .ql-toolbar {
  375. border-left: 0;
  376. border-right: 0;
  377. }
  378. .mcp-theme-1 .ql-editor[contenteditable] {
  379. min-height: 100px;
  380. }
  381. .ql-container p {
  382. margin-top: 1rem;
  383. }
  384. .note-content ul {
  385. list-style: none !important;
  386. }
  387. .ql-editor ul > li::before {
  388. content: '';
  389. }
  390. .m-neg-3 {
  391. margin-left: -1rem;
  392. margin-right: -1rem;
  393. }
  394. .m-neg-4 {
  395. margin-left: -1.25rem;
  396. margin-right: -1.25rem;
  397. }
  398. .mcp-theme-1 .ql-toolbar .ql-formats * {
  399. font-size: 12px !important;
  400. }
  401. .mcp-theme-1 .ql-toolbar.ql-snow {
  402. padding: 3px;
  403. background: #f7f7f7;
  404. }
  405. .mcp-theme-1 .ql-snow .ql-picker {
  406. height: 22px;
  407. }
  408. .mcp-theme-1 .ql-snow.ql-toolbar button {
  409. height: 22px;
  410. width: 26px;
  411. }
  412. .rte-holder .ql-container p {
  413. margin-top: 0;
  414. margin-bottom: 0.3rem;
  415. }
  416. .note-section:not(.edit) .if-not-edit {
  417. display: block !important;
  418. }
  419. .note-section:not(.edit) div.if-not-edit {
  420. padding-left: 1rem;
  421. }
  422. .note-section:not(.edit):hover {
  423. background: #f6f9fc;
  424. cursor: pointer;
  425. }
  426. [data-non-segment-section]:hover {
  427. background: #f6f9fc;
  428. }
  429. .note-signed-by-hcp .note-section:not(.edit):hover {
  430. background: #f6f9fc;
  431. cursor: auto;
  432. }
  433. .note-section.edit .if-edit {
  434. display: block !important;
  435. }
  436. .c-pointer {
  437. cursor: pointer;
  438. }
  439. .events-none {
  440. pointer-events: none;
  441. }
  442. .blocking-overlay {
  443. opacity: 0 !important;
  444. cursor: default;
  445. }
  446. .inset-comment p {
  447. margin-bottom: 0.3rem;
  448. }
  449. .inset-comment p:last-child {
  450. margin-bottom: 0 !important;
  451. }
  452. .note-section.edit {
  453. background: #f0f8ff7d;
  454. outline: 2px solid #9de3ff;
  455. }
  456. .note-section.edit .ql-editor,
  457. .note-section.edit .btn-default {
  458. background-color: #fff !important;
  459. }
  460. /*.note-section-item-row:not(:first-child) {
  461. padding-top: 10px;
  462. border-top: 1px solid #ccc;
  463. }*/
  464. /* override med ac css */
  465. #searchResults {
  466. z-index: 100001 !important;
  467. }
  468. input.search_field, textarea.search_field {
  469. background-position: right 7px center !important;
  470. padding-right: 23px !important;
  471. }
  472. .ansList:focus, .search_field:focus {
  473. background-color: #fff !important;
  474. }
  475. @media (min-width: 1000px) {
  476. .navbar.navbar-dark {
  477. height: 55px;
  478. position: fixed;
  479. top: 0;
  480. left: 0;
  481. width: 100%;
  482. z-index: 9999;
  483. }
  484. .main-row > .sidebar {
  485. width: 180px;
  486. min-width: 180px;
  487. position: fixed;
  488. left: 0;
  489. top: 55px;
  490. z-index: 8;
  491. height: calc(100% - 55px);
  492. overflow-y: overlay;
  493. padding-bottom: 4rem;
  494. }
  495. .main-row {
  496. padding-left: 180px;
  497. }
  498. .navbar.navbar-dark+[role="main"] {
  499. padding-top: 55px;
  500. }
  501. .stag-popup .navbar.navbar-dark+[role="main"] {
  502. padding-top: 0;
  503. }
  504. }
  505. .font-smaller {
  506. font-size: 11px !important;
  507. }
  508. .text-ellipsis {
  509. white-space: nowrap;
  510. overflow: hidden;
  511. text-overflow: ellipsis;
  512. }
  513. .outline-0 {
  514. outline: none !important;
  515. }
  516. .note-widget-item:hover {
  517. background: #eee;
  518. }
  519. .note-widget-title {
  520. background: #ccc !important;
  521. color: #333 !important;
  522. font-size: 12px !important;
  523. font-weight: bold !important;
  524. }
  525. .navbar-collapse.show {
  526. background: #1c4587;
  527. z-index: 999;
  528. padding: 0.5rem 1rem;
  529. margin: 0 -1rem;
  530. }
  531. .navbar-dark .nav-item .nav-link {
  532. font-size: 12px;
  533. white-space: nowrap;
  534. overflow: hidden;
  535. text-overflow: ellipsis;
  536. }
  537. #patient-search {
  538. min-width: 90px !important;
  539. max-width: 140px !important;
  540. }
  541. .suggestions-outer {
  542. top: calc(100% + 2px);
  543. background: #fff;
  544. border-radius: 3px;
  545. border: 1px solid #ccc;
  546. z-index: 9999;
  547. }
  548. .suggestions-outer {
  549. top: calc(100% + 2px);
  550. background: #fff;
  551. border-radius: 3px;
  552. border: 1px solid #ccc;
  553. z-index: 9999;
  554. max-height: 220px;
  555. overflow-y: auto;
  556. min-width: calc(100% - 0.5rem);
  557. right: 0.5rem;
  558. }
  559. .suggestions-outer .suggest-item, .suggestions-outer .no-suggest-items {
  560. padding: 0.25rem 0.5rem;
  561. text-decoration: none;
  562. font-size: 12px;
  563. }
  564. .suggestions-outer .no-suggest-items {
  565. color: #888;
  566. }
  567. .suggestions-outer .suggest-item.active {
  568. background: #ccc;
  569. }
  570. .suggestions-outer .suggest-item:hover {
  571. background: aliceblue;
  572. }
  573. .pro-dashboard-inline-calendar>.datepicker.datepicker-inline,
  574. .pro-dashboard-inline-calendar table.table-condensed {
  575. width: 100% !important;
  576. }
  577. .pro-dashboard-inline-calendar {
  578. border: 1px solid #ddd;
  579. border-radius: 3px
  580. }
  581. .pro-dashboard-inline-calendar table.table-condensed th {
  582. padding: 0.5rem 0;
  583. border-radius: 0;
  584. }
  585. .pro-dashboard-inline-calendar table.table-condensed td {
  586. padding: 0.25rem 0;
  587. border-radius: 0;
  588. }
  589. .pro-dashboard-inline-calendar table.table-condensed td[has-events],
  590. .pro-dashboard-inline-calendar td.has-events:not(.ui-datepicker-today) a {
  591. background: #c5e4ff !important;
  592. font-weight: bold !important;
  593. color: #000 !important;
  594. }
  595. .caremonth-measurements-calendar table.table-condensed td[has-events],
  596. .caremonth-measurements-calendar td.has-events a {
  597. background: #c5e4ff !important;
  598. font-weight: bold !important;
  599. color: #000 !important;
  600. }
  601. .ui-state-active,
  602. .ui-widget-content .ui-state-active,
  603. .ui-widget-header .ui-state-active,
  604. a.ui-button:active,
  605. .ui-button:active,
  606. .ui-button.ui-state-active:hover {
  607. border: 1px solid #4396da !important;
  608. }
  609. .pro-dashboard-inline-calendar td.has-events.ui-datepicker-today a {
  610. font-weight: bold !important;
  611. color: #0d59af !important;
  612. }
  613. .pro-dashboard-inline-calendar td a {
  614. text-align: center !important;
  615. }
  616. [v-cloak] {
  617. opacity: 0;
  618. }
  619. .patient-avatar {
  620. width: 50px;
  621. height: 50px;
  622. background: #eee;
  623. display: inline-flex;
  624. align-items: center;
  625. justify-content: center;
  626. border-radius: 100%;
  627. border: 1px solid #ccc;
  628. }
  629. .large {
  630. font-size: 16px !important;
  631. }
  632. /* note templates */
  633. .note-template-container {
  634. position: absolute;
  635. z-index: 10002;
  636. background: #fff;
  637. border: 1px solid #ddd;
  638. border-radius: 3px;
  639. display: none;
  640. min-width: 200px;
  641. }
  642. .note-template-container .note-template-item {
  643. position: relative;
  644. height: 25px;
  645. }
  646. .note-template-container .note-template-item .note-template-text {
  647. border-bottom: 1px solid #eee;
  648. }
  649. .note-template-container .note-template-item .label {
  650. padding: 3px 6px;
  651. padding-right: 25px;
  652. white-space: nowrap;
  653. display: inline-flex;
  654. align-items: center;
  655. min-width: 120px;
  656. cursor: pointer;
  657. flex-grow: 1;
  658. }
  659. .note-template-container .note-template-item:hover,
  660. .note-template-container .note-template-item.selected {
  661. background: aliceblue;
  662. }
  663. .note-template-container .note-template-item .label>input[type="checkbox"] {
  664. pointer-events: none;
  665. margin: 0;
  666. margin-right: 4px;
  667. height: 11px;
  668. }
  669. .note-template-container .note-template-item:last-child label {
  670. border: 0;
  671. }
  672. .note-template-container .note-template-item .note-template-children {
  673. position: absolute;
  674. left: 100%;
  675. top: 0;
  676. background: #fff;
  677. border: 1px solid #ddd;
  678. border-radius: 3px;
  679. display: none;
  680. }
  681. /*.note-template-container .note-template-item.selected:hover>.note-template-children {
  682. display: block;
  683. }*/
  684. .note-template-container .note-template-item .has-children {
  685. position: absolute;
  686. right: 6px;
  687. top: 0;
  688. height: 25px;
  689. line-height: 25px;
  690. color: #bbb;
  691. }
  692. .note-template-container .note-template-item:hover>.has-children {
  693. color: #444;
  694. }
  695. .note-templates-underlay {
  696. position: fixed;
  697. top: 0;
  698. left: 0;
  699. height: 100%;
  700. width: 100%;
  701. background: rgba(0,0,0,0.13);
  702. display: none;
  703. z-index: 10001;
  704. }
  705. .note-template-container textarea {
  706. height: 100px;
  707. border-radius: 0;
  708. border-color: #ccc;
  709. padding: 5px 10px;
  710. display: block;
  711. }
  712. .note-template-buttons {
  713. position: absolute;
  714. bottom: 100%;
  715. right: 0;
  716. height: 27px;
  717. padding: 0 3px;
  718. background: #fff;
  719. }
  720. .note-template-buttons button {
  721. font-size: 10px;
  722. padding: 2px 5px;
  723. margin-left: 5px;
  724. border-radius: 2px;
  725. }
  726. .note-template-buttons button:first-child {
  727. margin-left: 0;
  728. }
  729. .note-template-output {
  730. position: absolute;
  731. bottom: calc(100% + 26px);
  732. left: 0;
  733. padding: 3px 6px;
  734. background: #f7f7f7;
  735. min-width: 100%;
  736. border-radius: 3px;
  737. }
  738. .note-template-output-text {
  739. }
  740. .note-template-output .note-template-output-line {
  741. font-size: 11px;
  742. width: max-content;
  743. max-width: 500px;
  744. margin: 0;
  745. }
  746. .note-template-set-chooser {
  747. height: 22px;
  748. line-height: 22px;
  749. padding: 0 0.22rem;
  750. font-size: 12px !important;
  751. }
  752. .ql-editor .note-template-output-line {
  753. white-space: normal;
  754. }
  755. [prefix="(+)"] a.plus-trigger {
  756. color: #23a923 !important;
  757. }
  758. [prefix="(-)"] a.minus-trigger {
  759. color: #a91e1e !important;
  760. }
  761. .rspace {
  762. width: 20px;
  763. display: inline-flex;
  764. text-align: center;
  765. justify-content: center;
  766. }
  767. .embed-mask {
  768. position: fixed;
  769. left: 0;
  770. top: 0;
  771. height: 100%;
  772. width: 100%;
  773. background: rgba(0, 0, 0, 0.1);
  774. z-index: 98;
  775. }
  776. .embed-section {
  777. background: #fff;
  778. z-index: 99;
  779. padding: 0;
  780. border: 1px solid #ccc;
  781. }
  782. .mask-text-addition {
  783. position: fixed;
  784. bottom: calc(50% - 60px);
  785. left: 0;
  786. width: 100%;
  787. text-align: center;
  788. font-size: 12px;
  789. z-index: 9999999;
  790. color: #000;
  791. }
  792. .note-summary p {
  793. margin-bottom: 0.25rem;
  794. }
  795. .aligned-icon {
  796. display: inline-block;
  797. width: 18px;
  798. text-align: center;
  799. }
  800. body #searchCount {
  801. display: none !important;
  802. }
  803. body .break-spaces {
  804. white-space: pre-wrap;
  805. }
  806. .stag-tooltip .stag-tooltip-content {
  807. display: none;
  808. min-width: 200px;
  809. }
  810. .stag-tooltip:hover .stag-tooltip-content {
  811. display: block;
  812. right: -10px;
  813. top: 100%;
  814. z-index: 1;
  815. }
  816. .gem-nodes .node {
  817. border: 1px solid #ddd;
  818. padding: 0.75rem;
  819. border-radius: 5px;
  820. }
  821. .gem-nodes>.node {
  822. border: 0 !important;
  823. padding-left: 0;
  824. padding-right: 0;
  825. }
  826. .gem-nodes>.node:first-child {
  827. margin-top: 0 !important;
  828. }
  829. .gem-nodes>.node>label {
  830. font-weight: bold;
  831. font-size: 14px;
  832. margin: 0;
  833. }
  834. .gem-nodes .subs .node:last-child {
  835. margin-bottom: 0 !important;
  836. }
  837. .gem-nodes>.node>.subs {
  838. padding-left: 0 !important;
  839. }
  840. .gem-nodes>.node>.subs>.node {
  841. background: #f2f2f2;
  842. }
  843. .gem-nodes>.node>.subs>.node>.subs>.node {
  844. background: #fff;
  845. }
  846. .gem-nodes .node span[field] {
  847. font-weight: bold;
  848. }
  849. body .node input[type="number"] {
  850. max-width: 70px;
  851. min-width: unset !important;
  852. }
  853. .section-edit-mask {
  854. top: 0;
  855. left: 0;
  856. width: 100%;
  857. height: 100%;
  858. }
  859. .signed-note {
  860. position: relative;
  861. pointer-events: none !important;
  862. }
  863. .signed-note::after {
  864. content: '';
  865. position: absolute;
  866. z-index: 2;
  867. cursor: not-allowed;
  868. left: 0;
  869. top: 0;
  870. width: 100%;
  871. height: 100%;
  872. background: rgba(0,0,0,0.01);
  873. }
  874. .slot-picker {
  875. padding: 4px;
  876. padding-right: 0;
  877. padding-bottom: 0;
  878. }
  879. .slot-picker.disabled {
  880. opacity: 0.5;
  881. pointer-events: none;
  882. cursor: not-allowed;
  883. }
  884. .slot-picker td {
  885. text-align: center;
  886. border: 1px solid #ddd !important;
  887. padding: 2px 5px;
  888. cursor: pointer;
  889. }
  890. .slot-picker th {
  891. border: 0 !important;
  892. }
  893. .slot-picker td:hover {
  894. background: aliceblue;
  895. }
  896. .slot-picker td.blocked {
  897. background: #ccc !important;
  898. cursor: not-allowed;
  899. }
  900. .slot-picker td.selected {
  901. background-image: linear-gradient(to bottom,#08c,#04c);
  902. background-repeat: repeat-x;
  903. color: #fff;
  904. }
  905. .pro-appointment-calendar.disabled {
  906. opacity: 0.5;
  907. pointer-events: none;
  908. cursor: not-allowed;
  909. }
  910. .pro-appointment-calendar .datepicker-inline {
  911. width: 195px;
  912. padding-left: 0;
  913. }
  914. .pro-appointment-calendar .datepicker td {
  915. height: 25px;
  916. }
  917. .datepicker td, .datepicker th {
  918. border: none !important;
  919. }
  920. .appt-form-col {
  921. width: 220px;
  922. }
  923. .appt-calendar-col {
  924. flex-grow: 1;
  925. }
  926. .appt-form td.fc-day.stag-selected {
  927. outline: 2px solid #007bff;
  928. background: #e5f2fd;
  929. }
  930. .appt-form .stag-current-appt {
  931. background: #89159cc7;
  932. color: #fff;
  933. border-color: #89159cc7;
  934. }
  935. .appt-form .stag-current-appt .fc-daygrid-event-dot {
  936. border-color: #fff;
  937. }
  938. .appt-form .fc .fc-toolbar.fc-header-toolbar {
  939. margin-bottom: 0.5rem;
  940. /*align-items: start;*/
  941. }
  942. .stag-calendar-header-extra {
  943. background: #cde8ff;
  944. padding: 3px 10px;
  945. margin-top: 7px;
  946. border-top-left-radius: 6px;
  947. border-top-right-radius: 6px;
  948. border: 1px solid #44a5f982;
  949. border-bottom: 0;
  950. }
  951. .stag-calendar-header-extra * {
  952. font-size: 14px !important;
  953. }
  954. /* call panel */
  955. #proCallComponent {
  956. padding-bottom: 150px;
  957. }
  958. .patient-queue {
  959. display: flex;
  960. flex-direction: column;
  961. position: fixed;
  962. left: 0;
  963. width: 100%;
  964. bottom: 0;
  965. z-index: 4;
  966. }
  967. .queue-item {
  968. width: 100px;
  969. padding: 0.5rem;
  970. padding-bottom: 0.25rem;
  971. text-align: center;
  972. cursor: pointer;
  973. }
  974. .queue-item:hover {
  975. background: aliceblue;
  976. }
  977. .current-work-indicator {
  978. /*
  979. position: fixed;
  980. top: 55px;
  981. right: 0;
  982. z-index: 9999;
  983. */
  984. background: #305ba0;
  985. color: #fff;
  986. font-size: 12px;
  987. padding: 3px 6px;
  988. border-radius: 3px;
  989. /* border-bottom-left-radius: 5px;*/
  990. white-space: nowrap;
  991. text-overflow: ellipsis;
  992. max-width: 100px;
  993. overflow: hidden;
  994. }
  995. /* stag popups */
  996. .stag-popup {
  997. position: fixed;
  998. left: 0;
  999. top: 55px;
  1000. width: 100%;
  1001. height: calc(100% - 55px);
  1002. overflow-x: auto;
  1003. z-index: 97;
  1004. justify-content: center;
  1005. align-items: center;
  1006. display: none;
  1007. background: center center no-repeat scroll rgba(0, 0, 0, 0.1);
  1008. padding: 2rem 0;
  1009. }
  1010. .stag-popup.show {
  1011. display: block;
  1012. }
  1013. .stag-popup>form, .stag-popup>.stag-popup-content {
  1014. width: 80%;
  1015. background: #fff;
  1016. border: 1px solid #aaa;
  1017. border-radius: 5px;
  1018. overflow: hidden;
  1019. box-shadow: 0 0 5px #ddd;
  1020. margin: 0 auto;
  1021. padding: 0.75rem;
  1022. min-height: 220px;
  1023. }
  1024. .stag-popup.min-height-unset>form {
  1025. min-height: unset !important;
  1026. }
  1027. .stag-popup.wide>form, .stag-popup.wide>.stag-popup-content {
  1028. width: calc(100% - 4rem);
  1029. }
  1030. .stag-popup.tall>form, .stag-popup.tall>.stag-popup-content {
  1031. height: 100%;
  1032. min-height: 500px;
  1033. }
  1034. .stag-popup.narrow>form, .stag-popup.narrow>.stag-popup-content {
  1035. max-width: 500px;
  1036. }
  1037. .stag-popup.stag-popup-sm>form, .stag-popup.stag-popup-sm>.stag-popup-content {
  1038. max-width: 500px;
  1039. }
  1040. .stag-popup.stag-popup-md>form, .stag-popup.stag-popup-md>.stag-popup-content {
  1041. max-width: 632pt;
  1042. }
  1043. .stag-popup.stag-popup-right>form, .stag-popup.stag-popup-right>.stag-popup-content {
  1044. margin-right: 1.5rem;
  1045. margin-left: auto;
  1046. }
  1047. /* slide-in stag-popups */
  1048. .stag-popup.stag-slide {
  1049. display: block;
  1050. background: center center no-repeat scroll rgba(0, 0, 0, 0);
  1051. pointer-events: none;
  1052. overflow: hidden;
  1053. }
  1054. .stag-popup.stag-slide.show {
  1055. pointer-events: all;
  1056. }
  1057. .stag-popup.stag-slide>form {
  1058. position: absolute;
  1059. top: 0;
  1060. height: 100% !important;
  1061. overflow-y: auto;
  1062. border-radius: 0;
  1063. border-top: 0;
  1064. border-bottom: 0;
  1065. border-right: 0;
  1066. transition: right 0.3s ease;
  1067. width: 0;
  1068. }
  1069. .stag-popup.stag-slide.stag-popup-sm>form {
  1070. width: 500px;
  1071. right: -500px;
  1072. }
  1073. .stag-popup.stag-slide.stag-popup-md>form {
  1074. width: 632pt;
  1075. right: -632pt;
  1076. }
  1077. .stag-popup.stag-slide.show>form {
  1078. right: 0;
  1079. }
  1080. /* asana style ticket management */
  1081. .pro-initials {
  1082. border-radius: 100%;
  1083. height: 24px;
  1084. width: 24px;
  1085. min-height: 24px;
  1086. min-width: 24px;
  1087. max-height: 24px;
  1088. max-width: 24px;
  1089. text-align: center;
  1090. font-weight: 400;
  1091. display: inline-flex;
  1092. align-items: center;
  1093. justify-content: center;
  1094. background-color: #6457f9;
  1095. color: #fff;
  1096. font-size: 10px !important;
  1097. opacity: 0.85;
  1098. }
  1099. .pro-initials.pro-initials-sm {
  1100. height: 18px;
  1101. width: 18px;
  1102. min-height: 18px;
  1103. min-width: 18px;
  1104. max-height: 18px;
  1105. max-width: 18px;
  1106. font-size: 9px !important;
  1107. }
  1108. .pro-initials:hover {
  1109. opacity: 1;
  1110. }
  1111. .ticket-section {
  1112. }
  1113. .ticket-section.ticket-section-collapsed {
  1114. max-height: 0;
  1115. overflow: hidden;
  1116. }
  1117. .tickets-table tbody tr {
  1118. transition: background-color 0.2s ease;
  1119. }
  1120. .tickets-table tbody tr:hover {
  1121. background-color: rgba(0,0,0,.04);
  1122. }
  1123. .tickets-table tbody tr.current {
  1124. background-color: aliceblue;
  1125. }
  1126. .stag-slide input.form-control:not(:focus),
  1127. .stag-slide select.form-control:not(:focus) {
  1128. border-color: transparent;
  1129. background-color: transparent;
  1130. cursor: pointer;
  1131. font-weight: bold;
  1132. padding-left: 0;
  1133. }
  1134. .stag-slide select.form-control:not(:focus) {
  1135. appearance: none;
  1136. }
  1137. .stag-slide input.form-control {
  1138. box-shadow: none !important;
  1139. }
  1140. .stag-slide input.form-control:not(:focus):not([readonly]):hover {
  1141. text-decoration: underline;
  1142. }
  1143. .stag-slide input.form-control[readonly] {
  1144. opacity: 0.75;
  1145. }
  1146. .stag-slide ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  1147. color: #bbb !important;
  1148. font-weight: normal !important;
  1149. opacity: 1; /* Firefox */
  1150. }
  1151. .stag-slide :-ms-input-placeholder { /* Internet Explorer 10-11 */
  1152. color: #bbb !important;
  1153. font-weight: normal !important;
  1154. }
  1155. .stag-slide ::-ms-input-placeholder { /* Microsoft Edge */
  1156. color: #bbb !important;
  1157. font-weight: normal !important;
  1158. }
  1159. .stag-slide .text-success {
  1160. color: #00bf9c !important;
  1161. }
  1162. .stag-slide .btn-success,
  1163. .stag-slide .btn-success:hover {
  1164. background: #00bf9c;
  1165. border-color: #00bf9c;
  1166. }
  1167. .stag-slide .comment-input-outer {
  1168. position: sticky;
  1169. bottom: 0;
  1170. }
  1171. .stag-slide .txt-comment {
  1172. padding-bottom: calc(23px + 1rem);
  1173. height: calc(23px + 1rem);
  1174. transition: height 0.3s ease;
  1175. overflow: hidden;
  1176. }
  1177. .stag-slide .txt-comment:focus {
  1178. height: 120px;
  1179. overflow: auto;
  1180. }
  1181. .stag-slide .txt-comment:focus~.btn-save-comment {
  1182. opacity: 1;
  1183. }
  1184. .stag-slide .btn-save-comment {
  1185. position: absolute;
  1186. bottom: 0.5rem;
  1187. right: 0.5rem;
  1188. height: 28px;
  1189. line-height: 28px;
  1190. padding: 0 1rem;
  1191. transition: opacity 0.3s ease;
  1192. opacity: 0.5;
  1193. }
  1194. .stag-slide select.form-control:invalid,
  1195. .stag-slide input[type="text"].form-control:invalid {
  1196. background-color: #f8ecec;
  1197. padding-left: 0.5rem;
  1198. }
  1199. .stag-slide select:focus:invalid,
  1200. .stag-slide input[type="text"]:focus:invalid {
  1201. background: #fff;
  1202. border-color: #e24848;
  1203. box-shadow: 0 0 2px #c10707 !important;
  1204. }
  1205. .erx-line-item:nth-child(2n+1) {
  1206. background: #f0f8ffbb
  1207. }
  1208. .no-scroll {
  1209. overflow: hidden;
  1210. }
  1211. .client-rs-contents p {
  1212. margin-bottom: 0.25rem;
  1213. }
  1214. .pro-option {
  1215. position: relative;
  1216. display: block;
  1217. padding-left: 30px;
  1218. }
  1219. .pro-option.pro-option-selected {
  1220. display: inline-block;
  1221. padding-left: 25px;
  1222. }
  1223. .pro-option .pro-option-initials {
  1224. position: absolute;
  1225. left: 5px;
  1226. top: 2px;
  1227. font-size: 10px;
  1228. border-radius: 100%;
  1229. height: 20px;
  1230. width: 20px;
  1231. line-height: 20px;
  1232. text-align: center;
  1233. font-weight: 400;
  1234. }
  1235. .pro-option.pro-option-selected .pro-option-initials {
  1236. left: 3px;
  1237. top: 0;
  1238. font-size: 10px;
  1239. border-radius: 100%;
  1240. height: 18px;
  1241. width: 18px;
  1242. line-height: 19px;
  1243. text-align: center;
  1244. font-weight: 400;
  1245. }
  1246. span.pro-selection {
  1247. padding: 0 5px;
  1248. height: 18px;
  1249. display: inline-block;
  1250. border-top-right-radius: 3px;
  1251. border-bottom-right-radius: 3px;
  1252. }
  1253. .select2-results__option--selectable {
  1254. font-size: 13px;
  1255. }
  1256. #calendarApp .select2-selection__choice__display,
  1257. #proCalendarApp .select2-selection__choice__display {
  1258. padding: 0 !important;
  1259. overflow: hidden !important;
  1260. }
  1261. span.select2-container.select2-container--default.select2-container--open {
  1262. z-index: 999999;
  1263. }
  1264. .fc .fc-highlight {
  1265. background: rgba(188, 232, 241, 0.6) !important;
  1266. }
  1267. .fc .fc-day-past {
  1268. background: #e7e7e7 !important;
  1269. }
  1270. .fc .add-overlay {
  1271. padding: 1px 4px;
  1272. display: inline-block;
  1273. font-weight: bold;
  1274. }
  1275. .fc .add-overlay.add-overlay-day-grid {
  1276. padding: 4px;
  1277. }
  1278. .stag-popup .stag-popup-title {
  1279. border-bottom: 1px solid #eee;
  1280. padding-bottom: 0.75rem;
  1281. margin-bottom: 1rem;
  1282. display: flex;
  1283. align-items: center;
  1284. }
  1285. .stag-popup .stag-popup-title>span {
  1286. font-size: 17px;
  1287. }
  1288. .fc .other-client {
  1289. box-shadow: 1px 1px 2px deeppink !important;
  1290. opacity: 0.5;
  1291. }
  1292. .fc .other-client:hover {
  1293. opacity: 0.8;
  1294. }
  1295. .fc .availability {
  1296. box-shadow: 0 0 3px green !important;
  1297. }
  1298. .fc .inactive-appointment {
  1299. opacity: 0.6;
  1300. box-shadow: 0 0 3px grey !important;
  1301. }
  1302. .fc .fc-button-primary:not(:disabled):active,
  1303. .fc .fc-button-primary:not(:disabled).fc-button-active {
  1304. border-color: #56a767 !important;
  1305. background-color: #56a767 !important;
  1306. }
  1307. .w-150 {
  1308. width: 150px !important;
  1309. min-width: 150px !important;
  1310. }
  1311. .w-180 {
  1312. width: 180px !important;
  1313. min-width: 180px !important;
  1314. }
  1315. .guest-view button.add-shortcut {
  1316. display: none;
  1317. }
  1318. .guest-view .note-section,
  1319. .guest-view .note-section:hover {
  1320. background: #fff !important;
  1321. }
  1322. #stagPdfViewer>form {
  1323. padding: 0;
  1324. background: #eee;
  1325. }
  1326. #stagPdfViewer>form .stag-popup-title {
  1327. background: #fff;
  1328. padding: 1rem;
  1329. }
  1330. canvas.pdf-viewer-page {
  1331. max-width: 100%;
  1332. margin: 1rem auto;
  1333. display: block;
  1334. box-shadow: 0 0 2px #aaa;
  1335. }
  1336. .hidden-link-input {
  1337. /*opacity: 0;
  1338. width: 0 !important;
  1339. border: 0 !important;
  1340. padding: 0 !important;*/
  1341. position: absolute;
  1342. left: -9999px;
  1343. }
  1344. table.table-edit-sheet tbody tr td {
  1345. padding: 0;
  1346. background: #f7f7f7;
  1347. }
  1348. table.table-edit-sheet tbody tr td>input,
  1349. table.table-edit-sheet tbody tr td>select {
  1350. box-shadow: none !important;
  1351. border-radius: 0 !important;
  1352. border: 0;
  1353. background: #fefefe;
  1354. width: 100% !important;
  1355. min-width: unset !important;
  1356. border-bottom: 1px solid #dee2e6;
  1357. }
  1358. table.table-edit-sheet tbody tr td input[type="text"],
  1359. table.table-edit-sheet tbody tr td select,
  1360. table.table-edit-sheet tbody tr td textarea {
  1361. box-shadow: none !important;
  1362. border-radius: 0 !important;
  1363. border: 0;
  1364. background: #fefefe;
  1365. min-width: unset !important;
  1366. border-bottom: 1px solid #dee2e6;
  1367. }
  1368. table.table-edit-sheet tbody tr td>input:focus,
  1369. table.table-edit-sheet tbody tr td>select:focus {
  1370. background: #fff;
  1371. outline: 3px solid #4b88a633;
  1372. }
  1373. table.table-edit-sheet tbody tr [contenteditable] {
  1374. background: #fff;
  1375. }
  1376. table.table-edit-sheet .ql-toolbar {
  1377. border-top: 0 !important;
  1378. }
  1379. table.table-edit-sheet .ql-container {
  1380. border-bottom: 0 !important;
  1381. }
  1382. table.table-edit-sheet .ql-editor[contenteditable] {
  1383. min-height: 90px;
  1384. }
  1385. .w-35 {
  1386. width: 35%;
  1387. }
  1388. .client-single-dashboard .hide-if-dashboard {
  1389. display: none;
  1390. }
  1391. .notes-list .hide-if-note,
  1392. .note-section .hide-if-note {
  1393. display: none;
  1394. }
  1395. .data-option-list {
  1396. position: absolute;
  1397. background: #fff;
  1398. border: 2px solid #ddd;
  1399. margin-top: -1px;
  1400. width: 100%;
  1401. z-index: 1;
  1402. display: none;
  1403. max-width: 250px;
  1404. box-shadow: 0 0 3px #ddd;
  1405. border-top: 0;
  1406. }
  1407. .data-option-list>div {
  1408. cursor: pointer;
  1409. padding: 0.2rem 0.5rem;
  1410. border-bottom: 1px solid #ddd;
  1411. color: #666;
  1412. font-size: 90%;
  1413. }
  1414. .data-option-list>div:last-child {
  1415. border-bottom: 0;
  1416. }
  1417. .data-option-list>div:hover {
  1418. background: aliceblue;
  1419. }
  1420. .measurement-item:not(:last-child) {
  1421. border-bottom: 1px solid #e7e7e7;
  1422. }
  1423. .assessment-detail-template>span {
  1424. margin: 0 !important;
  1425. padding: 0 !important;
  1426. border: 0 !important;
  1427. margin-left: -0.5rem !important;
  1428. position: static !important;
  1429. }
  1430. .assessment-detail-template>span>a {
  1431. display: none;
  1432. }
  1433. button.add-shortcut,
  1434. button.note-templates-trigger-assessment {
  1435. outline: none !important;
  1436. box-shadow: none !important;
  1437. }
  1438. .appt-calendar-col.click-through .fc-timegrid-event-harness {
  1439. pointer-events: none !important;
  1440. }
  1441. .claim-line:last-child td {
  1442. padding-bottom: 1.3rem;
  1443. }
  1444. .in-table-markup p:last-of-type {
  1445. margin-bottom: 0;
  1446. }
  1447. .suggestions-outer.pharmacy-suggestions {
  1448. left: 1rem;
  1449. width: calc(100% - 2rem);
  1450. }
  1451. .flowsheets-table td {
  1452. padding: 0 10px;
  1453. height: 38px;
  1454. max-height: 38px;
  1455. min-height: 38px;
  1456. vertical-align: middle !important;
  1457. }
  1458. .flowsheets-table .expand {
  1459. display: none;
  1460. }
  1461. .flowsheets-table .collapse {
  1462. display: block;
  1463. }
  1464. .flowsheets-table .collapsed .expand {
  1465. display: block;
  1466. }
  1467. .flowsheets-table .collapsed .collapse {
  1468. display: none;
  1469. }
  1470. .flowsheets-table tr {
  1471. }
  1472. .flowsheets-table .collapsed tr:not(:first-child) {
  1473. display: none;
  1474. }
  1475. .col-2-button {
  1476. width: 88px;
  1477. text-align: left;
  1478. }
  1479. /* vitals graph */
  1480. .stag-chart {
  1481. min-height: 300px;
  1482. }
  1483. .stag-chart .safe-region>rect {
  1484. fill: green;
  1485. }
  1486. .stag-chart .safe-region>text {
  1487. fill: #888;
  1488. transform: translateY(-18px);
  1489. }
  1490. /* appt. confirmation history */
  1491. .appointment-confirmation-history-trigger .appointment-confirmation-history {
  1492. position: absolute;
  1493. width: 300px;
  1494. right: 0;
  1495. background: #fff;
  1496. opacity: 0;
  1497. padding: 0 0.75rem;
  1498. padding-bottom: 0.5rem;
  1499. box-shadow: 0 0 2px #999;
  1500. pointer-events: none;
  1501. transition: opacity 0.3s ease;
  1502. z-index: 2;
  1503. top: 0;
  1504. }
  1505. .appointment-confirmation-history-trigger:hover .appointment-confirmation-history {
  1506. opacity: 1;
  1507. pointer-events: all;
  1508. }
  1509. .on-hover-text-reveal {
  1510. white-space: nowrap;
  1511. overflow: hidden;
  1512. text-overflow: ellipsis;
  1513. }
  1514. .on-hover-text-reveal:hover {
  1515. white-space: normal;
  1516. overflow: unset;
  1517. text-overflow: unset;
  1518. }
  1519. .collapsible-tbody.collapsed {
  1520. display: none;
  1521. }
  1522. #send-fax-pdf-preview, #transmit-pdf-preview {
  1523. max-height: 350px;
  1524. overflow: auto;
  1525. box-shadow: 0 0 2px #ccc;
  1526. }
  1527. canvas.pdf-viewer-page.pdf-preview-page {
  1528. margin: 0.5rem auto;
  1529. }
  1530. .back-to-admin-button {
  1531. background: transparent;
  1532. border: 0;
  1533. padding: 0;
  1534. color: rgb(13, 89, 175);
  1535. }
  1536. .back-to-admin-button:hover {
  1537. text-decoration: underline;
  1538. }
  1539. .bg-aliceblue {
  1540. background: aliceblue !important;
  1541. }
  1542. .filter-head input[type="date"]::-webkit-calendar-picker-indicator {
  1543. display: none;
  1544. -webkit-appearance: none;
  1545. }
  1546. .filter-head input[type="number"]::-webkit-inner-spin-button {
  1547. display: none;
  1548. -webkit-appearance: none;
  1549. }
  1550. .filter-head input[type="date"] {
  1551. padding: 0;
  1552. min-width: 90px;
  1553. }
  1554. .filter-head input[type="number"],
  1555. .filter-head input[type="date"] {
  1556. min-width: 90px;
  1557. }
  1558. .filter-head select {
  1559. padding: 0 5px;
  1560. }
  1561. tr.sep td {
  1562. padding: 0;
  1563. background: #eee;
  1564. height: 6px;
  1565. }
  1566. #practice-shipments-ready-to-print ::marker {
  1567. color: #0009;
  1568. font-size: 90%;
  1569. }
  1570. .only-print {
  1571. display: none;
  1572. }
  1573. @media print {
  1574. .only-print {
  1575. display: block;
  1576. }
  1577. th.only-print, td.only-print {
  1578. display: table-cell;
  1579. }
  1580. }
  1581. .only-screen {
  1582. display: block;
  1583. }
  1584. th.only-screen, td.only-screen {
  1585. display: table-cell;
  1586. }
  1587. @media print {
  1588. .only-screen {
  1589. display: none !important;
  1590. }
  1591. .only-pick-list, .only-order-slip {
  1592. display: none;
  1593. }
  1594. .pick-list .only-pick-list, .order-slip .only-order-slip {
  1595. display: block;
  1596. }
  1597. }
  1598. .suggest-item.patient-suggest>img {
  1599. width: 10px;
  1600. height: 10px;
  1601. opacity: 0.75;
  1602. }
  1603. .suggest-item.patient-suggest>img.claimed {
  1604. filter: grayscale(100%);
  1605. opacity: 0.5;
  1606. }
  1607. .pdf-viewer-auto {
  1608. max-height: 600px;
  1609. overflow: auto;
  1610. }
  1611. .ticket-popup .stag-popup.stag-slide.show {
  1612. position: static;
  1613. min-width: 100% !important;
  1614. max-width: unset !important;
  1615. padding-bottom: 2rem;
  1616. }
  1617. .ticket-popup .stag-popup.stag-slide.show form {
  1618. min-width: 100% !important;
  1619. max-width: unset !important;
  1620. }
  1621. .ticket-popup .stag-popup.stag-slide>form {
  1622. position: absolute;
  1623. top: 0;
  1624. height: auto !important;
  1625. overflow: hidden;
  1626. border-radius: 5px;
  1627. transition: none;
  1628. border: 1px solid #aaa;
  1629. }
  1630. .ticket-popup .stag-popup.stag-slide .stag-popup-title.sticky-top {
  1631. position: static;
  1632. }
  1633. .ticket-popup.stag-popup.stag-popup-md>.container-fluid {
  1634. max-width: 632pt;
  1635. }
  1636. .ticket-popup.stag-popup.stag-popup-md>.container-fluid>.main-row>main>.card {
  1637. border: 0;
  1638. /*background: transparent;*/
  1639. }
  1640. .ticket-popup .hide-inside-ticket-popup {
  1641. display: none !important;
  1642. }
  1643. .ticket-popup .disable-inside-ticket-popup {
  1644. pointer-events: none !important;
  1645. opacity: 0.5;
  1646. }
  1647. .fill-percent-value {
  1648. width: 60px;
  1649. }
  1650. .fill-percent-content {
  1651. width: 100px;
  1652. }
  1653. .fill-bar {
  1654. height: 20px !important;
  1655. border: 1px solid #ddd;
  1656. }
  1657. .if-in-clinic {
  1658. display: none;
  1659. }
  1660. .stag-table-container {
  1661. max-height: calc(100vh - 230px - 1rem);
  1662. width: 100%;
  1663. overflow: auto !important;
  1664. }
  1665. .stag-table-container-lg>table{
  1666. min-width: 1450px;
  1667. }
  1668. .stag-table-container.stag-table-container-no-x-scroll {
  1669. overflow-x: hidden !important;
  1670. }
  1671. .stag-fc-container .fc-toolbar-title .tz-display {
  1672. font-size: inherit;
  1673. font-family: inherit;
  1674. }
  1675. .caremonth-measurements-calendar .fc-event.m-weight {
  1676. background: #38908f;
  1677. color: #fff;
  1678. padding-left: 5px;
  1679. margin-bottom: 2px;
  1680. }
  1681. .caremonth-measurements-calendar .fc-event.m-bp {
  1682. background: #5e96ae;
  1683. color: #fff;
  1684. padding-left: 5px;
  1685. margin-bottom: 2px;
  1686. }
  1687. .caremonth-measurements-calendar .fc-event.m-weight *,
  1688. .caremonth-measurements-calendar .fc-event.m-bp *{
  1689. font-size: 10px !important;
  1690. }
  1691. .caremonth-measurements-calendar .fc-daygrid-event-dot {
  1692. display: none;
  1693. }
  1694. .pro-dashboard-inline-calendar>.ui-datepicker-inline {
  1695. width: 100%;
  1696. border: 0 !important;
  1697. }
  1698. .caremonth-measurements-calendar>.ui-datepicker-inline {
  1699. width: 100%;
  1700. }
  1701. .caremonth-measurements-calendar .ui-datepicker-prev,
  1702. .caremonth-measurements-calendar .ui-datepicker-next {
  1703. display: none;
  1704. }
  1705. #simpleSMSReminderComponent input[type="time"] {
  1706. max-width: 90px;
  1707. min-width: unset !important;
  1708. }
  1709. form.non-interactive .form-content {
  1710. opacity: 0.5;
  1711. cursor: not-allowed;
  1712. }
  1713. form.non-interactive .form-content * {
  1714. pointer-events: none;
  1715. }
  1716. #eventPros {
  1717. max-height: 28px;
  1718. opacity: 0;
  1719. }
  1720. .training-event {
  1721. position: relative;
  1722. background: #f0feff;
  1723. border-color: #32a2b89e !important;
  1724. }
  1725. .training-event::after {
  1726. position: absolute;
  1727. content: 'Training';
  1728. font-size: 10px;
  1729. font-weight: normal;
  1730. color: #17a2b8;
  1731. left: 1px;
  1732. bottom: -13px;
  1733. transform-origin: left top;
  1734. transform: rotate(
  1735. -90deg
  1736. );
  1737. width: 90px;
  1738. text-align: center;
  1739. letter-spacing: 0.75px;
  1740. }
  1741. .training-event .training-icon {
  1742. font-size: 22px;
  1743. color: #0d59af;
  1744. }
  1745. .training-event .patient-avatar {
  1746. border-color: #0d59af7d !important;
  1747. }
  1748. /* print-note */
  1749. @media print {
  1750. .stag-content #sidebarMenu {
  1751. display: none !important;
  1752. }
  1753. .stag-content .main-row {
  1754. padding-left: 0 !important;
  1755. }
  1756. .stag-content [moe] {
  1757. display: none !important;
  1758. }
  1759. .stag-content .screen-only {
  1760. display: none !important;
  1761. }
  1762. }
  1763. @media screen {
  1764. .stag-content .print-only {
  1765. display: none !important;
  1766. }
  1767. }
  1768. .child-sections>.note-section:not(.edit) {
  1769. position: relative;
  1770. }
  1771. .child-sections>.note-section:not(.edit):before {
  1772. content: '';
  1773. width: 9px;
  1774. border-top: 1px solid #ccc;
  1775. left: 0;
  1776. top: calc(1rem + 8px);
  1777. height: 1px;
  1778. position: absolute;
  1779. }
  1780. .child-sections>.note-section.edit {
  1781. margin-left: 1rem;
  1782. }
  1783. .rhs-absolute-fh-link {
  1784. position: absolute;
  1785. right: 0;
  1786. padding: 0 0.5rem;
  1787. background-color: inherit;
  1788. }
  1789. .mcp-theme-1 .click-to-copy {
  1790. background-color: #e4f7ed36;
  1791. cursor: copy;
  1792. border-bottom: 1px dotted #c0f7e86e;
  1793. }
  1794. .mcp-theme-1 .click-to-copy:hover {
  1795. border-bottom: 1px dotted #c0f7e8;
  1796. }
  1797. [data-type="removed"] {
  1798. color: gray;
  1799. font-style: italic;
  1800. }
  1801. [data-type="existing"] {
  1802. }
  1803. [data-type="updated"] {
  1804. font-weight: bold;
  1805. color: #d8a714;
  1806. }
  1807. [data-type="prescribed today"] {
  1808. font-weight: bold;
  1809. color: #2ea745
  1810. }
  1811. .process-notes-badge {
  1812. border: 1px solid #ddd;
  1813. cursor: pointer;
  1814. padding: 0.35rem 0.6rem;
  1815. border-radius: 4px;
  1816. text-decoration: none !important;
  1817. }
  1818. .process-notes-badge:hover {
  1819. color: #000 !important;
  1820. border-color: #349caf;
  1821. }
  1822. .process-notes-badge.active {
  1823. /*font-weight: bold;*/
  1824. color: #fff !important;
  1825. background: #349caf;
  1826. border-color: #349caf;
  1827. }
  1828. .process-notes-badge.success {
  1829. font-weight: bold;
  1830. color: #fff !important;
  1831. background: #31b574;
  1832. border-color: #31b574;
  1833. cursor: auto;
  1834. }
  1835. .process-notes-badge.error {
  1836. font-weight: bold;
  1837. color: #fff !important;
  1838. background: #a72132;
  1839. border-color: #a72132;
  1840. cursor: auto;
  1841. }
  1842. /*
  1843. .process-notes-badge {
  1844. position: relative;
  1845. }
  1846. .process-notes-badge:after {
  1847. position: absolute;
  1848. content: attr(data-index);
  1849. top: -14px;
  1850. left: 10px;
  1851. background: #fff;
  1852. border: 1px solid;
  1853. width: 20px;
  1854. text-align: center;
  1855. border-radius: 100%;
  1856. }*/
  1857. .no-overflow-menu {
  1858. overflow-y: auto;
  1859. max-height: calc(100vh - 60px);
  1860. }
  1861. .zero-height-field {
  1862. height: 1px !important;
  1863. opacity: 0 !important;
  1864. pointer-events: none;
  1865. position: absolute;
  1866. }
  1867. table.dashboard-stats-table th {
  1868. padding: 0.5rem 0.75rem
  1869. }
  1870. .min-height-500px {
  1871. min-height: 500px;
  1872. }
  1873. .inline-html-container p {
  1874. margin-bottom: 0;
  1875. }
  1876. body.in-iframe>.navbar {
  1877. display: none !important;
  1878. }
  1879. body.in-iframe .stag-content {
  1880. padding-top: 0 !important;
  1881. }
  1882. body.in-iframe .main-row > .sidebar {
  1883. top: 0;
  1884. height: 100%;
  1885. }
  1886. .stag-popup .hide-inside-popup {
  1887. display: none !important;
  1888. }
  1889. .strike-through {
  1890. text-decoration: line-through;
  1891. }
  1892. /* visit-moe */
  1893. [visit-moe] [url]:not([show]){
  1894. display: none;
  1895. }
  1896. [visit-moe] {
  1897. display: inline-block;
  1898. }
  1899. [visit-moe][relative] {
  1900. position: relative;
  1901. }
  1902. [visit-moe] [url]:not([show]) {
  1903. z-index: 99999;
  1904. position: absolute;
  1905. background-color: white;
  1906. padding: 10px;
  1907. border: 1px solid gray;
  1908. }
  1909. [visit-moe][fixed-center] [url]:not([show]) {
  1910. position: fixed !important;
  1911. top: 50% !important;
  1912. left: 50% !important;
  1913. width: 600px;
  1914. transform: translate(-50%, -50%) !important;
  1915. }
  1916. [visit-moe] [url][right] {
  1917. right: 0;
  1918. min-width: 200px;
  1919. }
  1920. [visit-moe][large] form, [visit-moe][large] [url] {
  1921. width: 450px;
  1922. }
  1923. [visit-moe][bottom] form {
  1924. bottom: 100%;
  1925. }
  1926. .note-container {
  1927. display: flex;
  1928. align-items: start;
  1929. }
  1930. .note-container .note-lhs-tree {
  1931. min-width: 220px;
  1932. max-width: 220px;
  1933. align-self: stretch;
  1934. border-right: 1px solid #ddd;
  1935. padding-top: 0.85rem;
  1936. height: 300px;
  1937. overflow: overlay;
  1938. max-height: calc(100vh - 55px);
  1939. background-color: #fff;
  1940. }
  1941. .note-container .note-lhs-tree.fixed {
  1942. position: fixed;
  1943. top: 55px;
  1944. max-height: calc(100vh - 55px) !important;
  1945. height: calc(100vh - 55px) !important;
  1946. }
  1947. .note-container .note-lhs-tree.fixed ~ .note-rhs-content {
  1948. margin-left: 220px;
  1949. }
  1950. .note-container .note-lhs-tree .note-tree-node.note-tree-heading>a {
  1951. }
  1952. .note-container .note-lhs-tree .note-tree-node>a {
  1953. display: block;
  1954. padding: 0.15rem 0;
  1955. padding-left: 0.75rem;
  1956. white-space: nowrap;
  1957. text-overflow: ellipsis;
  1958. overflow: hidden;
  1959. text-decoration: none;
  1960. color: #333;
  1961. }
  1962. .note-container .note-lhs-tree .note-tree-node>a:hover {
  1963. background-color: aliceblue;
  1964. color: #0d59af !important;
  1965. }
  1966. .note-container .note-lhs-tree .note-tree-node:hover>a,
  1967. .note-container .note-lhs-tree .note-tree-node.hovered>a {
  1968. background-color: aliceblue;
  1969. }
  1970. .note-container .note-lhs-tree .note-tree-node.active>a {
  1971. font-weight: bold !important;
  1972. color: #0d59af !important;
  1973. }
  1974. .note-container .note-lhs-tree .note-tree-children>.note-tree-node>a {
  1975. padding-left: 2rem;
  1976. }
  1977. .note-container .note-lhs-tree .note-tree-children .note-tree-children>.note-tree-node>a {
  1978. padding-left: 4rem;
  1979. }
  1980. .note-container .note-rhs-content {
  1981. flex-grow: 1;
  1982. }
  1983. .spot-highlight {
  1984. background: aliceblue !important;
  1985. }
  1986. .on-click-menu [menu] {
  1987. position: absolute;
  1988. display: none;
  1989. top: 100%;
  1990. right: 0;
  1991. z-index: 1;
  1992. }