style.css 44 KB

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