style.css 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622
  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. }
  553. .pro-dashboard-inline-calendar table.table-condensed td {
  554. padding: 0.25rem 0;
  555. }
  556. .pro-dashboard-inline-calendar table.table-condensed td[has-events] {
  557. background: #c5e4ff;
  558. }
  559. [v-cloak] {
  560. opacity: 0;
  561. }
  562. .patient-avatar {
  563. width: 50px;
  564. height: 50px;
  565. background: #ddd;
  566. display: inline-flex;
  567. align-items: center;
  568. justify-content: center;
  569. border-radius: 100%;
  570. }
  571. .large {
  572. font-size: 16px !important;
  573. }
  574. /* note templates */
  575. .note-template-container {
  576. position: absolute;
  577. z-index: 10002;
  578. background: #fff;
  579. border: 1px solid #ddd;
  580. border-radius: 3px;
  581. display: none;
  582. min-width: 200px;
  583. }
  584. .note-template-container .note-template-item {
  585. position: relative;
  586. height: 25px;
  587. }
  588. .note-template-container .note-template-item .note-template-text {
  589. border-bottom: 1px solid #eee;
  590. }
  591. .note-template-container .note-template-item .label {
  592. padding: 3px 6px;
  593. padding-right: 25px;
  594. white-space: nowrap;
  595. display: inline-flex;
  596. align-items: center;
  597. min-width: 120px;
  598. cursor: pointer;
  599. flex-grow: 1;
  600. }
  601. .note-template-container .note-template-item:hover,
  602. .note-template-container .note-template-item.selected {
  603. background: aliceblue;
  604. }
  605. .note-template-container .note-template-item .label>input[type="checkbox"] {
  606. pointer-events: none;
  607. margin: 0;
  608. margin-right: 4px;
  609. height: 11px;
  610. }
  611. .note-template-container .note-template-item:last-child label {
  612. border: 0;
  613. }
  614. .note-template-container .note-template-item .note-template-children {
  615. position: absolute;
  616. left: 100%;
  617. top: 0;
  618. background: #fff;
  619. border: 1px solid #ddd;
  620. border-radius: 3px;
  621. display: none;
  622. }
  623. /*.note-template-container .note-template-item.selected:hover>.note-template-children {
  624. display: block;
  625. }*/
  626. .note-template-container .note-template-item .has-children {
  627. position: absolute;
  628. right: 6px;
  629. top: 0;
  630. height: 25px;
  631. line-height: 25px;
  632. color: #bbb;
  633. }
  634. .note-template-container .note-template-item:hover>.has-children {
  635. color: #444;
  636. }
  637. .note-templates-underlay {
  638. position: fixed;
  639. top: 0;
  640. left: 0;
  641. height: 100%;
  642. width: 100%;
  643. background: rgba(0,0,0,0.13);
  644. display: none;
  645. z-index: 10001;
  646. }
  647. .note-template-container textarea {
  648. height: 100px;
  649. border-radius: 0;
  650. border-color: #ccc;
  651. padding: 5px 10px;
  652. display: block;
  653. }
  654. .note-template-buttons {
  655. position: absolute;
  656. bottom: 100%;
  657. right: 0;
  658. height: 27px;
  659. padding: 0 3px;
  660. background: #fff;
  661. }
  662. .note-template-buttons button {
  663. font-size: 10px;
  664. padding: 2px 5px;
  665. margin-left: 5px;
  666. border-radius: 2px;
  667. }
  668. .note-template-buttons button:first-child {
  669. margin-left: 0;
  670. }
  671. .note-template-output {
  672. position: absolute;
  673. bottom: calc(100% + 26px);
  674. left: 0;
  675. padding: 3px 6px;
  676. background: #f7f7f7;
  677. min-width: 100%;
  678. border-radius: 3px;
  679. }
  680. .note-template-output-text {
  681. }
  682. .note-template-output .note-template-output-line {
  683. font-size: 11px;
  684. width: max-content;
  685. max-width: 500px;
  686. margin: 0;
  687. }
  688. .note-template-set-chooser {
  689. height: 22px;
  690. line-height: 22px;
  691. padding: 0 0.22rem;
  692. font-size: 12px !important;
  693. }
  694. .ql-editor .note-template-output-line {
  695. white-space: normal;
  696. }
  697. [prefix="(+)"] a.plus-trigger {
  698. color: #23a923 !important;
  699. }
  700. [prefix="(-)"] a.minus-trigger {
  701. color: #a91e1e !important;
  702. }
  703. .rspace {
  704. width: 20px;
  705. display: inline-flex;
  706. text-align: center;
  707. justify-content: center;
  708. }
  709. .embed-mask {
  710. position: fixed;
  711. left: 0;
  712. top: 0;
  713. height: 100%;
  714. width: 100%;
  715. background: rgba(0, 0, 0, 0.1);
  716. z-index: 98;
  717. }
  718. .embed-section {
  719. background: #fff;
  720. z-index: 99;
  721. padding: 0;
  722. border: 1px solid #ccc;
  723. }
  724. .mask-text-addition {
  725. position: fixed;
  726. bottom: calc(50% - 60px);
  727. left: 0;
  728. width: 100%;
  729. text-align: center;
  730. font-size: 12px;
  731. z-index: 9999999;
  732. color: #000;
  733. }
  734. .note-summary p {
  735. margin-bottom: 0.25rem;
  736. }
  737. .aligned-icon {
  738. display: inline-block;
  739. width: 18px;
  740. text-align: center;
  741. }
  742. body #searchCount {
  743. display: none !important;
  744. }
  745. body .break-spaces {
  746. white-space: pre-wrap;
  747. }
  748. .stag-tooltip .stag-tooltip-content {
  749. display: none;
  750. min-width: 200px;
  751. }
  752. .stag-tooltip:hover .stag-tooltip-content {
  753. display: block;
  754. right: -10px;
  755. top: 100%;
  756. z-index: 1;
  757. }
  758. .gem-nodes .node {
  759. border: 1px solid #ddd;
  760. padding: 0.75rem;
  761. border-radius: 5px;
  762. }
  763. .gem-nodes>.node {
  764. border: 0 !important;
  765. padding-left: 0;
  766. padding-right: 0;
  767. }
  768. .gem-nodes>.node:first-child {
  769. margin-top: 0 !important;
  770. }
  771. .gem-nodes>.node>label {
  772. font-weight: bold;
  773. font-size: 14px;
  774. margin: 0;
  775. }
  776. .gem-nodes .subs .node:last-child {
  777. margin-bottom: 0 !important;
  778. }
  779. .gem-nodes>.node>.subs {
  780. padding-left: 0 !important;
  781. }
  782. .gem-nodes>.node>.subs>.node {
  783. background: #f2f2f2;
  784. }
  785. .gem-nodes>.node>.subs>.node>.subs>.node {
  786. background: #fff;
  787. }
  788. .gem-nodes .node span[field] {
  789. font-weight: bold;
  790. }
  791. body .node input[type="number"] {
  792. max-width: 70px;
  793. min-width: unset !important;
  794. }
  795. .section-edit-mask {
  796. top: 0;
  797. left: 0;
  798. width: 100%;
  799. height: 100%;
  800. }
  801. .signed-note {
  802. position: relative;
  803. pointer-events: none !important;
  804. }
  805. .signed-note::after {
  806. content: '';
  807. position: absolute;
  808. z-index: 2;
  809. cursor: not-allowed;
  810. left: 0;
  811. top: 0;
  812. width: 100%;
  813. height: 100%;
  814. background: rgba(0,0,0,0.01);
  815. }
  816. .slot-picker {
  817. padding: 4px;
  818. padding-right: 0;
  819. padding-bottom: 0;
  820. }
  821. .slot-picker.disabled {
  822. opacity: 0.5;
  823. pointer-events: none;
  824. cursor: not-allowed;
  825. }
  826. .slot-picker td {
  827. text-align: center;
  828. border: 1px solid #ddd !important;
  829. padding: 2px 5px;
  830. cursor: pointer;
  831. }
  832. .slot-picker th {
  833. border: 0 !important;
  834. }
  835. .slot-picker td:hover {
  836. background: aliceblue;
  837. }
  838. .slot-picker td.blocked {
  839. background: #ccc !important;
  840. cursor: not-allowed;
  841. }
  842. .slot-picker td.selected {
  843. background-image: linear-gradient(to bottom,#08c,#04c);
  844. background-repeat: repeat-x;
  845. color: #fff;
  846. }
  847. .pro-appointment-calendar.disabled {
  848. opacity: 0.5;
  849. pointer-events: none;
  850. cursor: not-allowed;
  851. }
  852. .pro-appointment-calendar .datepicker-inline {
  853. width: 195px;
  854. padding-left: 0;
  855. }
  856. .pro-appointment-calendar .datepicker td {
  857. height: 25px;
  858. }
  859. .datepicker td, .datepicker th {
  860. border: none !important;
  861. }
  862. .appt-form-col {
  863. width: 220px;
  864. }
  865. .appt-calendar-col {
  866. flex-grow: 1;
  867. }
  868. .appt-form td.fc-day.stag-selected {
  869. outline: 2px solid #007bff;
  870. background: #e5f2fd;
  871. }
  872. .appt-form .stag-current-appt {
  873. background: #89159cc7;
  874. color: #fff;
  875. border-color: #89159cc7;
  876. }
  877. .appt-form .stag-current-appt .fc-daygrid-event-dot {
  878. border-color: #fff;
  879. }
  880. .appt-form .fc .fc-toolbar.fc-header-toolbar {
  881. margin-bottom: 0.5rem;
  882. /*align-items: start;*/
  883. }
  884. .stag-calendar-header-extra {
  885. background: #cde8ff;
  886. padding: 3px 10px;
  887. margin-top: 7px;
  888. border-top-left-radius: 6px;
  889. border-top-right-radius: 6px;
  890. border: 1px solid #44a5f982;
  891. border-bottom: 0;
  892. }
  893. .stag-calendar-header-extra * {
  894. font-size: 14px !important;
  895. }
  896. /* call panel */
  897. #proCallComponent {
  898. padding-bottom: 150px;
  899. }
  900. .patient-queue {
  901. display: flex;
  902. flex-direction: column;
  903. position: fixed;
  904. left: 0;
  905. width: 100%;
  906. bottom: 0;
  907. z-index: 4;
  908. }
  909. .queue-item {
  910. width: 100px;
  911. padding: 0.5rem;
  912. padding-bottom: 0.25rem;
  913. text-align: center;
  914. cursor: pointer;
  915. }
  916. .queue-item:hover {
  917. background: aliceblue;
  918. }
  919. .current-work-indicator {
  920. /*
  921. position: fixed;
  922. top: 55px;
  923. right: 0;
  924. z-index: 9999;
  925. */
  926. background: #305ba0;
  927. color: #fff;
  928. font-size: 12px;
  929. padding: 3px 6px;
  930. border-radius: 3px;
  931. /* border-bottom-left-radius: 5px;*/
  932. white-space: nowrap;
  933. text-overflow: ellipsis;
  934. max-width: 100px;
  935. overflow: hidden;
  936. }
  937. /* stag popups */
  938. .stag-popup {
  939. position: fixed;
  940. left: 0;
  941. top: 55px;
  942. width: 100%;
  943. height: calc(100% - 55px);
  944. overflow-x: auto;
  945. z-index: 97;
  946. justify-content: center;
  947. align-items: center;
  948. display: none;
  949. background: center center no-repeat scroll rgba(0, 0, 0, 0.1);
  950. padding: 2rem 0;
  951. }
  952. .stag-popup.show {
  953. display: block;
  954. }
  955. .stag-popup>form, .stag-popup>.stag-popup-content {
  956. width: 80%;
  957. background: #fff;
  958. border: 1px solid #aaa;
  959. border-radius: 5px;
  960. overflow: hidden;
  961. box-shadow: 0 0 5px #ddd;
  962. margin: 0 auto;
  963. padding: 0.75rem;
  964. }
  965. .stag-popup.wide>form, .stag-popup.wide>.stag-popup-content {
  966. width: calc(100% - 4rem);
  967. }
  968. .stag-popup.narrow>form, .stag-popup.narrow>.stag-popup-content {
  969. max-width: 500px;
  970. }
  971. .stag-popup.stag-popup-sm>form, .stag-popup.stag-popup-sm>.stag-popup-content {
  972. max-width: 500px;
  973. }
  974. .stag-popup.stag-popup-md>form, .stag-popup.stag-popup-md>.stag-popup-content {
  975. max-width: 632pt;
  976. }
  977. .stag-popup.stag-popup-right>form, .stag-popup.stag-popup-right>.stag-popup-content {
  978. margin-right: 1.5rem;
  979. margin-left: auto;
  980. }
  981. /* slide-in stag-popups */
  982. .stag-popup.stag-slide {
  983. display: block;
  984. background: center center no-repeat scroll rgba(0, 0, 0, 0);
  985. pointer-events: none;
  986. overflow: hidden;
  987. }
  988. .stag-popup.stag-slide.show {
  989. pointer-events: all;
  990. }
  991. .stag-popup.stag-slide>form {
  992. position: absolute;
  993. top: 0;
  994. height: 100% !important;
  995. overflow-y: auto;
  996. border-radius: 0;
  997. border-top: 0;
  998. border-bottom: 0;
  999. border-right: 0;
  1000. transition: right 0.3s ease;
  1001. width: 0;
  1002. }
  1003. .stag-popup.stag-slide.stag-popup-sm>form {
  1004. width: 500px;
  1005. right: -500px;
  1006. }
  1007. .stag-popup.stag-slide.stag-popup-md>form {
  1008. width: 632pt;
  1009. right: -632pt;
  1010. }
  1011. .stag-popup.stag-slide.show>form {
  1012. right: 0;
  1013. }
  1014. /* asana style ticket management */
  1015. .pro-initials {
  1016. border-radius: 100%;
  1017. height: 24px;
  1018. width: 24px;
  1019. min-height: 24px;
  1020. min-width: 24px;
  1021. max-height: 24px;
  1022. max-width: 24px;
  1023. text-align: center;
  1024. font-weight: 400;
  1025. display: inline-flex;
  1026. align-items: center;
  1027. justify-content: center;
  1028. background-color: #6457f9;
  1029. color: #fff;
  1030. font-size: 10px !important;
  1031. opacity: 0.85;
  1032. }
  1033. .pro-initials.pro-initials-sm {
  1034. height: 18px;
  1035. width: 18px;
  1036. min-height: 18px;
  1037. min-width: 18px;
  1038. max-height: 18px;
  1039. max-width: 18px;
  1040. font-size: 9px !important;
  1041. }
  1042. .pro-initials:hover {
  1043. opacity: 1;
  1044. }
  1045. .ticket-section {
  1046. }
  1047. .ticket-section.ticket-section-collapsed {
  1048. max-height: 0;
  1049. overflow: hidden;
  1050. }
  1051. .tickets-table tbody tr {
  1052. transition: background-color 0.2s ease;
  1053. }
  1054. .tickets-table tbody tr:hover {
  1055. background-color: rgba(0,0,0,.04);
  1056. }
  1057. .tickets-table tbody tr.current {
  1058. background-color: aliceblue;
  1059. }
  1060. .stag-slide input.form-control:not(:focus),
  1061. .stag-slide select.form-control:not(:focus) {
  1062. border-color: transparent;
  1063. background-color: transparent;
  1064. cursor: pointer;
  1065. font-weight: bold;
  1066. padding-left: 0;
  1067. }
  1068. .stag-slide select.form-control:not(:focus) {
  1069. appearance: none;
  1070. }
  1071. .stag-slide input.form-control {
  1072. box-shadow: none !important;
  1073. }
  1074. .stag-slide input.form-control:not(:focus):not([readonly]):hover {
  1075. text-decoration: underline;
  1076. }
  1077. .stag-slide input.form-control[readonly] {
  1078. opacity: 0.75;
  1079. }
  1080. .stag-slide ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  1081. color: #bbb !important;
  1082. font-weight: normal !important;
  1083. opacity: 1; /* Firefox */
  1084. }
  1085. .stag-slide :-ms-input-placeholder { /* Internet Explorer 10-11 */
  1086. color: #bbb !important;
  1087. font-weight: normal !important;
  1088. }
  1089. .stag-slide ::-ms-input-placeholder { /* Microsoft Edge */
  1090. color: #bbb !important;
  1091. font-weight: normal !important;
  1092. }
  1093. .stag-slide .text-success {
  1094. color: #00bf9c !important;
  1095. }
  1096. .stag-slide .btn-success,
  1097. .stag-slide .btn-success:hover {
  1098. background: #00bf9c;
  1099. border-color: #00bf9c;
  1100. }
  1101. .stag-slide .comment-input-outer {
  1102. position: sticky;
  1103. bottom: 0;
  1104. }
  1105. .stag-slide .txt-comment {
  1106. padding-bottom: calc(23px + 1rem);
  1107. height: calc(23px + 1rem);
  1108. transition: height 0.3s ease;
  1109. overflow: hidden;
  1110. }
  1111. .stag-slide .txt-comment:focus {
  1112. height: 120px;
  1113. overflow: auto;
  1114. }
  1115. .stag-slide .txt-comment:focus~.btn-save-comment {
  1116. opacity: 1;
  1117. }
  1118. .stag-slide .btn-save-comment {
  1119. position: absolute;
  1120. bottom: 0.5rem;
  1121. right: 0.5rem;
  1122. height: 28px;
  1123. line-height: 28px;
  1124. padding: 0 1rem;
  1125. transition: opacity 0.3s ease;
  1126. opacity: 0.5;
  1127. }
  1128. .stag-slide select.form-control:invalid,
  1129. .stag-slide input[type="text"].form-control:invalid {
  1130. background-color: #f8ecec;
  1131. padding-left: 0.5rem;
  1132. }
  1133. .stag-slide select:focus:invalid,
  1134. .stag-slide input[type="text"]:focus:invalid {
  1135. background: #fff;
  1136. border-color: #e24848;
  1137. box-shadow: 0 0 2px #c10707 !important;
  1138. }
  1139. .erx-line-item:nth-child(2n+1) {
  1140. background: #f0f8ffbb
  1141. }
  1142. .no-scroll {
  1143. overflow: hidden;
  1144. }
  1145. .client-rs-contents p {
  1146. margin-bottom: 0.25rem;
  1147. }
  1148. .pro-option {
  1149. position: relative;
  1150. display: block;
  1151. padding-left: 30px;
  1152. }
  1153. .pro-option.pro-option-selected {
  1154. display: inline-block;
  1155. padding-left: 25px;
  1156. }
  1157. .pro-option .pro-option-initials {
  1158. position: absolute;
  1159. left: 5px;
  1160. top: 2px;
  1161. font-size: 10px;
  1162. border-radius: 100%;
  1163. height: 20px;
  1164. width: 20px;
  1165. line-height: 20px;
  1166. text-align: center;
  1167. font-weight: 400;
  1168. }
  1169. .pro-option.pro-option-selected .pro-option-initials {
  1170. left: 3px;
  1171. top: 0;
  1172. font-size: 10px;
  1173. border-radius: 100%;
  1174. height: 18px;
  1175. width: 18px;
  1176. line-height: 19px;
  1177. text-align: center;
  1178. font-weight: 400;
  1179. }
  1180. span.pro-selection {
  1181. padding: 0 5px;
  1182. height: 18px;
  1183. display: inline-block;
  1184. border-top-right-radius: 3px;
  1185. border-bottom-right-radius: 3px;
  1186. }
  1187. .select2-results__option--selectable {
  1188. font-size: 13px;
  1189. }
  1190. #calendarApp .select2-selection__choice__display,
  1191. #proCalendarApp .select2-selection__choice__display {
  1192. padding: 0 !important;
  1193. overflow: hidden !important;
  1194. }
  1195. span.select2-container.select2-container--default.select2-container--open {
  1196. z-index: 999999;
  1197. }
  1198. .fc .fc-highlight {
  1199. background: rgba(188, 232, 241, 0.6) !important;
  1200. }
  1201. .fc .add-overlay {
  1202. padding: 1px 4px;
  1203. display: inline-block;
  1204. font-weight: bold;
  1205. }
  1206. .fc .add-overlay.add-overlay-day-grid {
  1207. padding: 4px;
  1208. }
  1209. .stag-popup .stag-popup-title {
  1210. border-bottom: 1px solid #eee;
  1211. padding-bottom: 0.75rem;
  1212. margin-bottom: 1rem;
  1213. display: flex;
  1214. align-items: center;
  1215. }
  1216. .stag-popup .stag-popup-title>span {
  1217. font-size: 17px;
  1218. }
  1219. .fc .other-client {
  1220. box-shadow: 1px 1px 2px deeppink !important;
  1221. opacity: 0.5;
  1222. }
  1223. .fc .other-client:hover {
  1224. opacity: 0.8;
  1225. }
  1226. .fc .availability {
  1227. box-shadow: 0 0 3px green !important;
  1228. }
  1229. .fc .inactive-appointment {
  1230. opacity: 0.6;
  1231. box-shadow: 0 0 3px grey !important;
  1232. }
  1233. .fc .fc-button-primary:not(:disabled):active,
  1234. .fc .fc-button-primary:not(:disabled).fc-button-active {
  1235. border-color: #56a767 !important;
  1236. background-color: #56a767 !important;
  1237. }
  1238. .w-150 {
  1239. width: 150px !important;
  1240. min-width: 150px !important;
  1241. }
  1242. .w-180 {
  1243. width: 180px !important;
  1244. min-width: 180px !important;
  1245. }
  1246. .guest-view button.add-shortcut {
  1247. display: none;
  1248. }
  1249. .guest-view .note-section,
  1250. .guest-view .note-section:hover {
  1251. background: #fff !important;
  1252. }
  1253. #stagPdfViewer>form {
  1254. padding: 0;
  1255. background: #eee;
  1256. }
  1257. #stagPdfViewer>form .stag-popup-title {
  1258. background: #fff;
  1259. padding: 1rem;
  1260. }
  1261. canvas.pdf-viewer-page {
  1262. max-width: 100%;
  1263. margin: 1rem auto;
  1264. display: block;
  1265. box-shadow: 0 0 2px #aaa;
  1266. }
  1267. .hidden-link-input {
  1268. /*opacity: 0;
  1269. width: 0 !important;
  1270. border: 0 !important;
  1271. padding: 0 !important;*/
  1272. position: absolute;
  1273. left: -9999px;
  1274. }
  1275. table.table-edit-sheet tbody tr td {
  1276. padding: 0;
  1277. background: #f7f7f7;
  1278. }
  1279. table.table-edit-sheet tbody tr td>input,
  1280. table.table-edit-sheet tbody tr td>select {
  1281. box-shadow: none !important;
  1282. border-radius: 0 !important;
  1283. border: 0;
  1284. background: #fefefe;
  1285. width: 100% !important;
  1286. min-width: unset !important;
  1287. border-bottom: 1px solid #dee2e6;
  1288. }
  1289. table.table-edit-sheet tbody tr td input[type="text"],
  1290. table.table-edit-sheet tbody tr td select,
  1291. table.table-edit-sheet tbody tr td textarea {
  1292. box-shadow: none !important;
  1293. border-radius: 0 !important;
  1294. border: 0;
  1295. background: #fefefe;
  1296. min-width: unset !important;
  1297. border-bottom: 1px solid #dee2e6;
  1298. }
  1299. table.table-edit-sheet tbody tr td>input:focus,
  1300. table.table-edit-sheet tbody tr td>select:focus {
  1301. background: #fff;
  1302. outline: 3px solid #4b88a633;
  1303. }
  1304. table.table-edit-sheet tbody tr [contenteditable] {
  1305. background: #fff;
  1306. }
  1307. table.table-edit-sheet .ql-toolbar {
  1308. border-top: 0 !important;
  1309. }
  1310. table.table-edit-sheet .ql-container {
  1311. border-bottom: 0 !important;
  1312. }
  1313. table.table-edit-sheet .ql-editor[contenteditable] {
  1314. min-height: 90px;
  1315. }
  1316. .w-35 {
  1317. width: 35%;
  1318. }
  1319. .client-single-dashboard .hide-if-dashboard {
  1320. display: none;
  1321. }
  1322. .notes-list .hide-if-note,
  1323. .note-section .hide-if-note {
  1324. display: none;
  1325. }
  1326. .data-option-list {
  1327. position: absolute;
  1328. background: #fff;
  1329. border: 2px solid #ddd;
  1330. margin-top: -1px;
  1331. width: 100%;
  1332. z-index: 1;
  1333. display: none;
  1334. max-width: 250px;
  1335. box-shadow: 0 0 3px #ddd;
  1336. border-top: 0;
  1337. }
  1338. .data-option-list>div {
  1339. cursor: pointer;
  1340. padding: 0.2rem 0.5rem;
  1341. border-bottom: 1px solid #ddd;
  1342. color: #666;
  1343. font-size: 90%;
  1344. }
  1345. .data-option-list>div:last-child {
  1346. border-bottom: 0;
  1347. }
  1348. .data-option-list>div:hover {
  1349. background: aliceblue;
  1350. }
  1351. .measurement-item:not(:last-child) {
  1352. border-bottom: 1px solid #e7e7e7;
  1353. }
  1354. .assessment-detail-template>span {
  1355. margin: 0 !important;
  1356. padding: 0 !important;
  1357. border: 0 !important;
  1358. margin-left: -0.5rem !important;
  1359. position: static !important;
  1360. }
  1361. .assessment-detail-template>span>a {
  1362. display: none;
  1363. }
  1364. button.add-shortcut,
  1365. button.note-templates-trigger-assessment {
  1366. outline: none !important;
  1367. box-shadow: none !important;
  1368. }
  1369. .appt-calendar-col.click-through .fc-timegrid-event-harness {
  1370. pointer-events: none !important;
  1371. }
  1372. .claim-line:last-child td {
  1373. padding-bottom: 1.3rem;
  1374. }
  1375. .in-table-markup p:last-of-type {
  1376. margin-bottom: 0;
  1377. }
  1378. .suggestions-outer.pharmacy-suggestions {
  1379. left: 1rem;
  1380. width: calc(100% - 2rem);
  1381. }
  1382. .flowsheets-table td {
  1383. padding: 0 10px;
  1384. height: 38px;
  1385. max-height: 38px;
  1386. min-height: 38px;
  1387. vertical-align: middle !important;
  1388. }
  1389. .flowsheets-table .expand {
  1390. display: none;
  1391. }
  1392. .flowsheets-table .collapse {
  1393. display: block;
  1394. }
  1395. .flowsheets-table .collapsed .expand {
  1396. display: block;
  1397. }
  1398. .flowsheets-table .collapsed .collapse {
  1399. display: none;
  1400. }
  1401. .flowsheets-table tr {
  1402. }
  1403. .flowsheets-table .collapsed tr:not(:first-child) {
  1404. display: none;
  1405. }
  1406. .col-2-button {
  1407. width: 88px;
  1408. text-align: left;
  1409. }
  1410. /* vitals graph */
  1411. .stag-chart {
  1412. min-height: 300px;
  1413. }
  1414. .stag-chart .safe-region>rect {
  1415. fill: green;
  1416. }
  1417. .stag-chart .safe-region>text {
  1418. fill: #888;
  1419. transform: translateY(-18px);
  1420. }
  1421. /* appt. confirmation history */
  1422. .appointment-confirmation-history-trigger .appointment-confirmation-history {
  1423. position: absolute;
  1424. width: 300px;
  1425. right: 0;
  1426. background: #fff;
  1427. opacity: 0;
  1428. padding: 0 0.75rem;
  1429. padding-bottom: 0.5rem;
  1430. box-shadow: 0 0 2px #999;
  1431. pointer-events: none;
  1432. transition: opacity 0.3s ease;
  1433. z-index: 2;
  1434. }
  1435. .appointment-confirmation-history-trigger:hover .appointment-confirmation-history {
  1436. opacity: 1;
  1437. pointer-events: all;
  1438. }
  1439. .on-hover-text-reveal {
  1440. white-space: nowrap;
  1441. overflow: hidden;
  1442. text-overflow: ellipsis;
  1443. }
  1444. /*.on-hover-text-reveal:hover {
  1445. white-space: normal;
  1446. overflow: unset;
  1447. text-overflow: unset;
  1448. }*/
  1449. .collapsible-tbody.collapsed {
  1450. display: none;
  1451. }
  1452. #send-fax-pdf-preview {
  1453. max-height: 350px;
  1454. overflow: auto;
  1455. box-shadow: 0 0 2px #ccc;
  1456. }
  1457. canvas.pdf-viewer-page.pdf-preview-page {
  1458. margin: 0.5rem auto;
  1459. }
  1460. .back-to-admin-button {
  1461. background: transparent;
  1462. border: 0;
  1463. padding: 0;
  1464. color: rgb(13, 89, 175);
  1465. }
  1466. .back-to-admin-button:hover {
  1467. text-decoration: underline;
  1468. }
  1469. .bg-aliceblue {
  1470. background: aliceblue !important;
  1471. }
  1472. .filter-head input[type="date"]::-webkit-calendar-picker-indicator {
  1473. display: none;
  1474. -webkit-appearance: none;
  1475. }
  1476. .filter-head input[type="number"]::-webkit-inner-spin-button {
  1477. display: none;
  1478. -webkit-appearance: none;
  1479. }
  1480. .filter-head input[type="date"] {
  1481. padding: 0;
  1482. min-width: 90px;
  1483. }
  1484. .filter-head input[type="number"],
  1485. .filter-head input[type="date"] {
  1486. min-width: 90px;
  1487. }
  1488. .filter-head select {
  1489. padding: 0 5px;
  1490. }
  1491. tr.sep td {
  1492. padding: 0;
  1493. background: #eee;
  1494. height: 6px;
  1495. }
  1496. #practice-shipments-ready-to-print ::marker {
  1497. color: #0009;
  1498. font-size: 90%;
  1499. }
  1500. .only-print {
  1501. display: none;
  1502. }
  1503. @media print {
  1504. .only-print {
  1505. display: block;
  1506. }
  1507. th.only-print, td.only-print {
  1508. display: table-cell;
  1509. }
  1510. }
  1511. .only-screen {
  1512. display: block;
  1513. }
  1514. th.only-screen, td.only-screen {
  1515. display: table-cell;
  1516. }
  1517. @media print {
  1518. .only-screen {
  1519. display: none !important;
  1520. }
  1521. .only-pick-list, .only-order-slip {
  1522. display: none;
  1523. }
  1524. .pick-list .only-pick-list, .order-slip .only-order-slip {
  1525. display: block;
  1526. }
  1527. }
  1528. .suggest-item.patient-suggest>img {
  1529. width: 10px;
  1530. height: 10px;
  1531. opacity: 0.75;
  1532. }
  1533. .suggest-item.patient-suggest>img.claimed {
  1534. filter: grayscale(100%);
  1535. opacity: 0.5;
  1536. }
  1537. .pdf-viewer-auto {
  1538. max-height: 600px;
  1539. overflow: auto;
  1540. }
  1541. .ticket-popup .stag-popup.stag-slide.show {
  1542. position: static;
  1543. min-width: 100% !important;
  1544. max-width: unset !important;
  1545. padding-bottom: 2rem;
  1546. }
  1547. .ticket-popup .stag-popup.stag-slide.show form {
  1548. min-width: 100% !important;
  1549. max-width: unset !important;
  1550. }
  1551. .ticket-popup .stag-popup.stag-slide>form {
  1552. position: absolute;
  1553. top: 0;
  1554. height: auto !important;
  1555. overflow: hidden;
  1556. border-radius: 5px;
  1557. transition: none;
  1558. border: 1px solid #aaa;
  1559. }
  1560. .ticket-popup .stag-popup.stag-slide .stag-popup-title.sticky-top {
  1561. position: static;
  1562. }
  1563. .ticket-popup.stag-popup.stag-popup-md>.container-fluid {
  1564. max-width: 632pt;
  1565. }
  1566. .ticket-popup.stag-popup.stag-popup-md>.container-fluid>.main-row>main>.card {
  1567. border: 0;
  1568. /*background: transparent;*/
  1569. }
  1570. .ticket-popup .hide-inside-ticket-popup {
  1571. display: none !important;
  1572. }
  1573. .ticket-popup .disable-inside-ticket-popup {
  1574. pointer-events: none !important;
  1575. opacity: 0.5;
  1576. }
  1577. .fill-percent-value {
  1578. width: 60px;
  1579. }
  1580. .fill-percent-content {
  1581. width: 100px;
  1582. }
  1583. .fill-bar {
  1584. height: 20px !important;
  1585. border: 1px solid #ddd;
  1586. }
  1587. .if-in-clinic {
  1588. display: none;
  1589. }
  1590. .stag-table-container {
  1591. max-height: calc(100vh - 230px - 1rem);
  1592. width: 100%;
  1593. overflow: auto !important;
  1594. }
  1595. .stag-table-container-lg>table{
  1596. min-width: 1450px;
  1597. }