style.css 35 KB

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