style.css 33 KB

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