style.css 30 KB

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