style.css 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085
  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 {
  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. .suggestions-outer .suggest-item, .suggestions-outer .no-suggest-items {
  563. padding: 0.25rem 0.5rem;
  564. text-decoration: none;
  565. font-size: 12px;
  566. }
  567. .suggestions-outer .no-suggest-items {
  568. color: #888;
  569. }
  570. .suggestions-outer .suggest-item.active {
  571. background: #ccc;
  572. }
  573. .suggestions-outer .suggest-item:hover {
  574. background: aliceblue;
  575. }
  576. .pro-dashboard-inline-calendar>.datepicker.datepicker-inline,
  577. .pro-dashboard-inline-calendar table.table-condensed {
  578. width: 100% !important;
  579. }
  580. .pro-dashboard-inline-calendar {
  581. border: 1px solid #ddd;
  582. border-radius: 3px
  583. }
  584. .pro-dashboard-inline-calendar table.table-condensed th {
  585. padding: 0.5rem 0;
  586. border-radius: 0;
  587. }
  588. .pro-dashboard-inline-calendar table.table-condensed td {
  589. padding: 0.25rem 0;
  590. border-radius: 0;
  591. }
  592. .pro-dashboard-inline-calendar table.table-condensed td[has-events],
  593. .pro-dashboard-inline-calendar td.has-events:not(.ui-datepicker-today) a {
  594. background: #c5e4ff !important;
  595. font-weight: bold !important;
  596. color: #000 !important;
  597. }
  598. .caremonth-measurements-calendar table.table-condensed td[has-events],
  599. .caremonth-measurements-calendar td.has-events a {
  600. background: #c5e4ff !important;
  601. font-weight: bold !important;
  602. color: #000 !important;
  603. }
  604. .ui-state-active,
  605. .ui-widget-content .ui-state-active,
  606. .ui-widget-header .ui-state-active,
  607. a.ui-button:active,
  608. .ui-button:active,
  609. .ui-button.ui-state-active:hover {
  610. border: 1px solid #4396da !important;
  611. }
  612. .pro-dashboard-inline-calendar td.has-events.ui-datepicker-today a {
  613. font-weight: bold !important;
  614. color: #0d59af !important;
  615. }
  616. .pro-dashboard-inline-calendar td a {
  617. text-align: center !important;
  618. }
  619. [v-cloak] {
  620. opacity: 0;
  621. }
  622. .patient-avatar {
  623. width: 50px;
  624. height: 50px;
  625. background: #eee;
  626. display: inline-flex;
  627. align-items: center;
  628. justify-content: center;
  629. border-radius: 100%;
  630. border: 1px solid #ccc;
  631. }
  632. .large {
  633. font-size: 16px !important;
  634. }
  635. /* note templates */
  636. .note-template-container {
  637. position: absolute;
  638. z-index: 10002;
  639. background: #fff;
  640. border: 1px solid #ddd;
  641. border-radius: 3px;
  642. display: none;
  643. min-width: 200px;
  644. }
  645. .note-template-container .note-template-item {
  646. position: relative;
  647. height: 25px;
  648. }
  649. .note-template-container .note-template-item .note-template-text {
  650. border-bottom: 1px solid #eee;
  651. }
  652. .note-template-container .note-template-item .label {
  653. padding: 3px 6px;
  654. padding-right: 25px;
  655. white-space: nowrap;
  656. display: inline-flex;
  657. align-items: center;
  658. min-width: 120px;
  659. cursor: pointer;
  660. flex-grow: 1;
  661. }
  662. .note-template-container .note-template-item:hover,
  663. .note-template-container .note-template-item.selected {
  664. background: aliceblue;
  665. }
  666. .note-template-container .note-template-item .label>input[type="checkbox"] {
  667. pointer-events: none;
  668. margin: 0;
  669. margin-right: 4px;
  670. height: 11px;
  671. }
  672. .note-template-container .note-template-item:last-child label {
  673. border: 0;
  674. }
  675. .note-template-container .note-template-item .note-template-children {
  676. position: absolute;
  677. left: 100%;
  678. top: 0;
  679. background: #fff;
  680. border: 1px solid #ddd;
  681. border-radius: 3px;
  682. display: none;
  683. }
  684. /*.note-template-container .note-template-item.selected:hover>.note-template-children {
  685. display: block;
  686. }*/
  687. .note-template-container .note-template-item .has-children {
  688. position: absolute;
  689. right: 6px;
  690. top: 0;
  691. height: 25px;
  692. line-height: 25px;
  693. color: #bbb;
  694. }
  695. .note-template-container .note-template-item:hover>.has-children {
  696. color: #444;
  697. }
  698. .note-templates-underlay {
  699. position: fixed;
  700. top: 0;
  701. left: 0;
  702. height: 100%;
  703. width: 100%;
  704. background: rgba(0,0,0,0.13);
  705. display: none;
  706. z-index: 10001;
  707. }
  708. .note-template-container textarea {
  709. height: 100px;
  710. border-radius: 0;
  711. border-color: #ccc;
  712. padding: 5px 10px;
  713. display: block;
  714. }
  715. .note-template-buttons {
  716. position: absolute;
  717. bottom: 100%;
  718. right: 0;
  719. height: 27px;
  720. padding: 0 3px;
  721. background: #fff;
  722. }
  723. .note-template-buttons button {
  724. font-size: 10px;
  725. padding: 2px 5px;
  726. margin-left: 5px;
  727. border-radius: 2px;
  728. }
  729. .note-template-buttons button:first-child {
  730. margin-left: 0;
  731. }
  732. .note-template-output {
  733. position: absolute;
  734. bottom: calc(100% + 26px);
  735. left: 0;
  736. padding: 3px 6px;
  737. background: #f7f7f7;
  738. min-width: 100%;
  739. border-radius: 3px;
  740. }
  741. .note-template-output-text {
  742. }
  743. .note-template-output .note-template-output-line {
  744. font-size: 11px;
  745. width: max-content;
  746. max-width: 500px;
  747. margin: 0;
  748. }
  749. .note-template-set-chooser {
  750. height: 22px;
  751. line-height: 22px;
  752. padding: 0 0.22rem;
  753. font-size: 12px !important;
  754. }
  755. .ql-editor .note-template-output-line {
  756. white-space: normal;
  757. }
  758. [prefix="(+)"] a.plus-trigger {
  759. color: #23a923 !important;
  760. }
  761. [prefix="(-)"] a.minus-trigger {
  762. color: #a91e1e !important;
  763. }
  764. .rspace {
  765. width: 20px;
  766. display: inline-flex;
  767. text-align: center;
  768. justify-content: center;
  769. }
  770. .embed-mask {
  771. position: fixed;
  772. left: 0;
  773. top: 0;
  774. height: 100%;
  775. width: 100%;
  776. background: rgba(0, 0, 0, 0.1);
  777. z-index: 98;
  778. }
  779. .embed-section {
  780. background: #fff;
  781. z-index: 99;
  782. padding: 0;
  783. border: 1px solid #ccc;
  784. }
  785. .mask-text-addition {
  786. position: fixed;
  787. bottom: calc(50% - 60px);
  788. left: 0;
  789. width: 100%;
  790. text-align: center;
  791. font-size: 12px;
  792. z-index: 9999999;
  793. color: #000;
  794. }
  795. .note-summary p {
  796. margin-bottom: 0.25rem;
  797. }
  798. .aligned-icon {
  799. display: inline-block;
  800. width: 18px;
  801. text-align: center;
  802. }
  803. body #searchCount {
  804. display: none !important;
  805. }
  806. body .break-spaces {
  807. white-space: pre-wrap;
  808. }
  809. .stag-tooltip .stag-tooltip-content {
  810. display: none;
  811. min-width: 200px;
  812. }
  813. .stag-tooltip:hover .stag-tooltip-content {
  814. display: block;
  815. right: -10px;
  816. top: 100%;
  817. z-index: 1;
  818. }
  819. .gem-nodes .node {
  820. border: 1px solid #ddd;
  821. padding: 0.75rem;
  822. border-radius: 5px;
  823. }
  824. .gem-nodes>.node {
  825. border: 0 !important;
  826. padding-left: 0;
  827. padding-right: 0;
  828. }
  829. .gem-nodes>.node:first-child {
  830. margin-top: 0 !important;
  831. }
  832. .gem-nodes>.node>label {
  833. font-weight: bold;
  834. font-size: 14px;
  835. margin: 0;
  836. }
  837. .gem-nodes .subs .node:last-child {
  838. margin-bottom: 0 !important;
  839. }
  840. .gem-nodes>.node>.subs {
  841. padding-left: 0 !important;
  842. }
  843. .gem-nodes>.node>.subs>.node {
  844. background: #f2f2f2;
  845. }
  846. .gem-nodes>.node>.subs>.node>.subs>.node {
  847. background: #fff;
  848. }
  849. .gem-nodes .node span[field] {
  850. font-weight: bold;
  851. }
  852. body .node input[type="number"] {
  853. max-width: 70px;
  854. min-width: unset !important;
  855. }
  856. .section-edit-mask {
  857. top: 0;
  858. left: 0;
  859. width: 100%;
  860. height: 100%;
  861. }
  862. .signed-note {
  863. position: relative;
  864. pointer-events: none !important;
  865. }
  866. .signed-note::after {
  867. content: '';
  868. position: absolute;
  869. z-index: 2;
  870. cursor: not-allowed;
  871. left: 0;
  872. top: 0;
  873. width: 100%;
  874. height: 100%;
  875. background: rgba(0,0,0,0.01);
  876. }
  877. .slot-picker {
  878. padding: 4px;
  879. padding-right: 0;
  880. padding-bottom: 0;
  881. }
  882. .slot-picker.disabled {
  883. opacity: 0.5;
  884. pointer-events: none;
  885. cursor: not-allowed;
  886. }
  887. .slot-picker td {
  888. text-align: center;
  889. border: 1px solid #ddd !important;
  890. padding: 2px 5px;
  891. cursor: pointer;
  892. }
  893. .slot-picker th {
  894. border: 0 !important;
  895. }
  896. .slot-picker td:hover {
  897. background: aliceblue;
  898. }
  899. .slot-picker td.blocked {
  900. background: #ccc !important;
  901. cursor: not-allowed;
  902. }
  903. .slot-picker td.selected {
  904. background-image: linear-gradient(to bottom,#08c,#04c);
  905. background-repeat: repeat-x;
  906. color: #fff;
  907. }
  908. .pro-appointment-calendar.disabled {
  909. opacity: 0.5;
  910. pointer-events: none;
  911. cursor: not-allowed;
  912. }
  913. .pro-appointment-calendar .datepicker-inline {
  914. width: 195px;
  915. padding-left: 0;
  916. }
  917. .pro-appointment-calendar .datepicker td {
  918. height: 25px;
  919. }
  920. .datepicker td, .datepicker th {
  921. border: none !important;
  922. }
  923. .appt-form-col {
  924. width: 220px;
  925. }
  926. .appt-calendar-col {
  927. flex-grow: 1;
  928. }
  929. .appt-form td.fc-day.stag-selected {
  930. outline: 2px solid #007bff;
  931. background: #e5f2fd;
  932. }
  933. .appt-form .stag-current-appt {
  934. background: #89159cc7;
  935. color: #fff;
  936. border-color: #89159cc7;
  937. }
  938. .appt-form .stag-current-appt .fc-daygrid-event-dot {
  939. border-color: #fff;
  940. }
  941. .appt-form .fc .fc-toolbar.fc-header-toolbar {
  942. margin-bottom: 0.5rem;
  943. /*align-items: start;*/
  944. }
  945. .stag-calendar-header-extra {
  946. background: #cde8ff;
  947. padding: 3px 10px;
  948. margin-top: 7px;
  949. border-top-left-radius: 6px;
  950. border-top-right-radius: 6px;
  951. border: 1px solid #44a5f982;
  952. border-bottom: 0;
  953. }
  954. .stag-calendar-header-extra * {
  955. font-size: 14px !important;
  956. }
  957. /* call panel */
  958. #proCallComponent {
  959. padding-bottom: 150px;
  960. }
  961. .patient-queue {
  962. display: flex;
  963. flex-direction: column;
  964. position: fixed;
  965. left: 0;
  966. width: 100%;
  967. bottom: 0;
  968. z-index: 4;
  969. }
  970. .queue-item {
  971. width: 100px;
  972. padding: 0.5rem;
  973. padding-bottom: 0.25rem;
  974. text-align: center;
  975. cursor: pointer;
  976. }
  977. .queue-item:hover {
  978. background: aliceblue;
  979. }
  980. .current-work-indicator {
  981. /*
  982. position: fixed;
  983. top: 55px;
  984. right: 0;
  985. z-index: 9999;
  986. */
  987. background: #305ba0;
  988. color: #fff;
  989. font-size: 12px;
  990. padding: 3px 6px;
  991. border-radius: 3px;
  992. /* border-bottom-left-radius: 5px;*/
  993. white-space: nowrap;
  994. text-overflow: ellipsis;
  995. max-width: 100px;
  996. overflow: hidden;
  997. }
  998. /* stag popups */
  999. .stag-popup {
  1000. position: fixed;
  1001. left: 0;
  1002. top: 55px;
  1003. width: 100%;
  1004. height: calc(100% - 55px);
  1005. overflow-x: auto;
  1006. z-index: 97;
  1007. justify-content: center;
  1008. align-items: center;
  1009. display: none;
  1010. background: center center no-repeat scroll rgba(0, 0, 0, 0.1);
  1011. padding: 2rem 0;
  1012. }
  1013. .stag-popup.show {
  1014. display: block;
  1015. }
  1016. .stag-popup>form, .stag-popup>.stag-popup-content {
  1017. width: 80%;
  1018. background: #fff;
  1019. border: 1px solid #aaa;
  1020. border-radius: 5px;
  1021. overflow: hidden;
  1022. box-shadow: 0 0 5px #ddd;
  1023. margin: 0 auto;
  1024. padding: 0.75rem;
  1025. min-height: 220px;
  1026. }
  1027. .stag-popup.min-height-unset>form {
  1028. min-height: unset !important;
  1029. }
  1030. .stag-popup.wide>form, .stag-popup.wide>.stag-popup-content {
  1031. width: calc(100% - 4rem);
  1032. }
  1033. .stag-popup.tall>form, .stag-popup.tall>.stag-popup-content {
  1034. height: 100%;
  1035. min-height: 500px;
  1036. }
  1037. .stag-popup.narrow>form, .stag-popup.narrow>.stag-popup-content {
  1038. max-width: 500px;
  1039. }
  1040. .stag-popup.stag-popup-sm>form, .stag-popup.stag-popup-sm>.stag-popup-content {
  1041. max-width: 500px;
  1042. }
  1043. .stag-popup.stag-popup-md>form, .stag-popup.stag-popup-md>.stag-popup-content {
  1044. max-width: 632pt;
  1045. }
  1046. .stag-popup.stag-popup-right>form, .stag-popup.stag-popup-right>.stag-popup-content {
  1047. margin-right: 1.5rem;
  1048. margin-left: auto;
  1049. }
  1050. /* slide-in stag-popups */
  1051. .stag-popup.stag-slide {
  1052. display: block;
  1053. background: center center no-repeat scroll rgba(0, 0, 0, 0);
  1054. pointer-events: none;
  1055. overflow: hidden;
  1056. }
  1057. .stag-popup.stag-slide.show {
  1058. pointer-events: all;
  1059. }
  1060. .stag-popup.stag-slide>form {
  1061. position: absolute;
  1062. top: 0;
  1063. height: 100% !important;
  1064. overflow-y: auto;
  1065. border-radius: 0;
  1066. border-top: 0;
  1067. border-bottom: 0;
  1068. border-right: 0;
  1069. transition: right 0.3s ease;
  1070. width: 0;
  1071. }
  1072. .stag-popup.stag-slide.stag-popup-sm>form {
  1073. width: 500px;
  1074. right: -500px;
  1075. }
  1076. .stag-popup.stag-slide.stag-popup-md>form {
  1077. width: 632pt;
  1078. right: -632pt;
  1079. }
  1080. .stag-popup.stag-slide.show>form {
  1081. right: 0;
  1082. }
  1083. /* asana style ticket management */
  1084. .pro-initials {
  1085. border-radius: 100%;
  1086. height: 24px;
  1087. width: 24px;
  1088. min-height: 24px;
  1089. min-width: 24px;
  1090. max-height: 24px;
  1091. max-width: 24px;
  1092. text-align: center;
  1093. font-weight: 400;
  1094. display: inline-flex;
  1095. align-items: center;
  1096. justify-content: center;
  1097. background-color: #6457f9;
  1098. color: #fff;
  1099. font-size: 10px !important;
  1100. opacity: 0.85;
  1101. }
  1102. .pro-initials.pro-initials-sm {
  1103. height: 18px;
  1104. width: 18px;
  1105. min-height: 18px;
  1106. min-width: 18px;
  1107. max-height: 18px;
  1108. max-width: 18px;
  1109. font-size: 9px !important;
  1110. }
  1111. .pro-initials:hover {
  1112. opacity: 1;
  1113. }
  1114. .ticket-section {
  1115. }
  1116. .ticket-section.ticket-section-collapsed {
  1117. max-height: 0;
  1118. overflow: hidden;
  1119. }
  1120. .tickets-table tbody tr {
  1121. transition: background-color 0.2s ease;
  1122. }
  1123. .tickets-table tbody tr:hover {
  1124. background-color: rgba(0,0,0,.04);
  1125. }
  1126. .tickets-table tbody tr.current {
  1127. background-color: aliceblue;
  1128. }
  1129. .stag-slide input.form-control:not(:focus),
  1130. .stag-slide select.form-control:not(:focus) {
  1131. border-color: transparent;
  1132. background-color: transparent;
  1133. cursor: pointer;
  1134. font-weight: bold;
  1135. padding-left: 0;
  1136. }
  1137. .stag-slide select.form-control:not(:focus) {
  1138. appearance: none;
  1139. }
  1140. .stag-slide input.form-control {
  1141. box-shadow: none !important;
  1142. }
  1143. .stag-slide input.form-control:not(:focus):not([readonly]):hover {
  1144. text-decoration: underline;
  1145. }
  1146. .stag-slide input.form-control[readonly] {
  1147. opacity: 0.75;
  1148. }
  1149. .stag-slide ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  1150. color: #bbb !important;
  1151. font-weight: normal !important;
  1152. opacity: 1; /* Firefox */
  1153. }
  1154. .stag-slide :-ms-input-placeholder { /* Internet Explorer 10-11 */
  1155. color: #bbb !important;
  1156. font-weight: normal !important;
  1157. }
  1158. .stag-slide ::-ms-input-placeholder { /* Microsoft Edge */
  1159. color: #bbb !important;
  1160. font-weight: normal !important;
  1161. }
  1162. .stag-slide .text-success {
  1163. color: #00bf9c !important;
  1164. }
  1165. .stag-slide .btn-success,
  1166. .stag-slide .btn-success:hover {
  1167. background: #00bf9c;
  1168. border-color: #00bf9c;
  1169. }
  1170. .stag-slide .comment-input-outer {
  1171. position: sticky;
  1172. bottom: 0;
  1173. }
  1174. .stag-slide .txt-comment {
  1175. padding-bottom: calc(23px + 1rem);
  1176. height: calc(23px + 1rem);
  1177. transition: height 0.3s ease;
  1178. overflow: hidden;
  1179. }
  1180. .stag-slide .txt-comment:focus {
  1181. height: 120px;
  1182. overflow: auto;
  1183. }
  1184. .stag-slide .txt-comment:focus~.btn-save-comment {
  1185. opacity: 1;
  1186. }
  1187. .stag-slide .btn-save-comment {
  1188. position: absolute;
  1189. bottom: 0.5rem;
  1190. right: 0.5rem;
  1191. height: 28px;
  1192. line-height: 28px;
  1193. padding: 0 1rem;
  1194. transition: opacity 0.3s ease;
  1195. opacity: 0.5;
  1196. }
  1197. .stag-slide select.form-control:invalid,
  1198. .stag-slide input[type="text"].form-control:invalid {
  1199. background-color: #f8ecec;
  1200. padding-left: 0.5rem;
  1201. }
  1202. .stag-slide select:focus:invalid,
  1203. .stag-slide input[type="text"]:focus:invalid {
  1204. background: #fff;
  1205. border-color: #e24848;
  1206. box-shadow: 0 0 2px #c10707 !important;
  1207. }
  1208. .erx-line-item:nth-child(2n+1) {
  1209. background: #f0f8ffbb
  1210. }
  1211. .no-scroll {
  1212. overflow: hidden;
  1213. }
  1214. .client-rs-contents p {
  1215. margin-bottom: 0.25rem;
  1216. }
  1217. .pro-option {
  1218. position: relative;
  1219. display: block;
  1220. padding-left: 30px;
  1221. }
  1222. .pro-option.pro-option-selected {
  1223. display: inline-block;
  1224. padding-left: 25px;
  1225. }
  1226. .pro-option .pro-option-initials {
  1227. position: absolute;
  1228. left: 5px;
  1229. top: 2px;
  1230. font-size: 10px;
  1231. border-radius: 100%;
  1232. height: 20px;
  1233. width: 20px;
  1234. line-height: 20px;
  1235. text-align: center;
  1236. font-weight: 400;
  1237. }
  1238. .pro-option.pro-option-selected .pro-option-initials {
  1239. left: 3px;
  1240. top: 0;
  1241. font-size: 10px;
  1242. border-radius: 100%;
  1243. height: 18px;
  1244. width: 18px;
  1245. line-height: 19px;
  1246. text-align: center;
  1247. font-weight: 400;
  1248. }
  1249. span.pro-selection {
  1250. padding: 0 5px;
  1251. height: 18px;
  1252. display: inline-block;
  1253. border-top-right-radius: 3px;
  1254. border-bottom-right-radius: 3px;
  1255. }
  1256. .select2-results__option--selectable {
  1257. font-size: 13px;
  1258. }
  1259. #calendarApp .select2-selection__choice__display,
  1260. #proCalendarApp .select2-selection__choice__display {
  1261. padding: 0 !important;
  1262. overflow: hidden !important;
  1263. }
  1264. span.select2-container.select2-container--default.select2-container--open {
  1265. z-index: 999999;
  1266. }
  1267. .fc .fc-highlight {
  1268. background: rgba(188, 232, 241, 0.6) !important;
  1269. }
  1270. .fc .fc-day-past {
  1271. background: #e7e7e7 !important;
  1272. }
  1273. .fc .add-overlay {
  1274. padding: 1px 4px;
  1275. display: inline-block;
  1276. font-weight: bold;
  1277. }
  1278. .fc .add-overlay.add-overlay-day-grid {
  1279. padding: 4px;
  1280. }
  1281. .stag-popup .stag-popup-title {
  1282. border-bottom: 1px solid #eee;
  1283. padding-bottom: 0.75rem;
  1284. margin-bottom: 1rem;
  1285. display: flex;
  1286. align-items: center;
  1287. }
  1288. .stag-popup .stag-popup-title>span {
  1289. font-size: 17px;
  1290. }
  1291. .fc .other-client {
  1292. box-shadow: 1px 1px 2px deeppink !important;
  1293. opacity: 0.5;
  1294. }
  1295. .fc .other-client:hover {
  1296. opacity: 0.8;
  1297. }
  1298. .fc .availability {
  1299. box-shadow: 0 0 3px green !important;
  1300. }
  1301. .fc .inactive-appointment {
  1302. opacity: 0.6;
  1303. box-shadow: 0 0 3px grey !important;
  1304. }
  1305. .fc .fc-button-primary:not(:disabled):active,
  1306. .fc .fc-button-primary:not(:disabled).fc-button-active {
  1307. border-color: #56a767 !important;
  1308. background-color: #56a767 !important;
  1309. }
  1310. .w-150 {
  1311. width: 150px !important;
  1312. min-width: 150px !important;
  1313. }
  1314. .w-180 {
  1315. width: 180px !important;
  1316. min-width: 180px !important;
  1317. }
  1318. .guest-view button.add-shortcut {
  1319. display: none;
  1320. }
  1321. .guest-view .note-section,
  1322. .guest-view .note-section:hover {
  1323. background: #fff !important;
  1324. }
  1325. .form-check-label {
  1326. display: flex;
  1327. align-items: center;
  1328. }
  1329. #stagPdfViewer>form {
  1330. padding: 0;
  1331. background: #eee;
  1332. }
  1333. #stagPdfViewer>form .stag-popup-title {
  1334. background: #fff;
  1335. padding: 1rem;
  1336. }
  1337. canvas.pdf-viewer-page {
  1338. max-width: 100%;
  1339. margin: 1rem auto;
  1340. display: block;
  1341. box-shadow: 0 0 2px #aaa;
  1342. }
  1343. .hidden-link-input {
  1344. /*opacity: 0;
  1345. width: 0 !important;
  1346. border: 0 !important;
  1347. padding: 0 !important;*/
  1348. position: absolute;
  1349. left: -9999px;
  1350. }
  1351. table.table-edit-sheet tbody tr td {
  1352. padding: 0;
  1353. background: #f7f7f7;
  1354. }
  1355. table.table-edit-sheet tbody tr td>input,
  1356. table.table-edit-sheet tbody tr td>select {
  1357. box-shadow: none !important;
  1358. border-radius: 0 !important;
  1359. border: 0;
  1360. background: #fefefe;
  1361. width: 100% !important;
  1362. min-width: unset !important;
  1363. border-bottom: 1px solid #dee2e6;
  1364. }
  1365. table.table-edit-sheet tbody tr td input[type="text"],
  1366. table.table-edit-sheet tbody tr td select,
  1367. table.table-edit-sheet tbody tr td textarea {
  1368. box-shadow: none !important;
  1369. border-radius: 0 !important;
  1370. border: 0;
  1371. background: #fefefe;
  1372. min-width: unset !important;
  1373. border-bottom: 1px solid #dee2e6;
  1374. }
  1375. table.table-edit-sheet tbody tr td>input:focus,
  1376. table.table-edit-sheet tbody tr td>select:focus {
  1377. background: #fff;
  1378. outline: 3px solid #4b88a633;
  1379. }
  1380. table.table-edit-sheet tbody tr [contenteditable] {
  1381. background: #fff;
  1382. }
  1383. table.table-edit-sheet .ql-toolbar {
  1384. border-top: 0 !important;
  1385. }
  1386. table.table-edit-sheet .ql-container {
  1387. border-bottom: 0 !important;
  1388. }
  1389. table.table-edit-sheet .ql-editor[contenteditable] {
  1390. min-height: 90px;
  1391. }
  1392. .w-35 {
  1393. width: 35%;
  1394. }
  1395. .client-single-dashboard .hide-if-dashboard {
  1396. display: none;
  1397. }
  1398. .notes-list .hide-if-note,
  1399. .note-section .hide-if-note {
  1400. display: none;
  1401. }
  1402. .data-option-list {
  1403. position: absolute;
  1404. background: #fff;
  1405. border: 2px solid #ddd;
  1406. margin-top: -1px;
  1407. width: 100%;
  1408. z-index: 1;
  1409. display: none;
  1410. max-width: 250px;
  1411. box-shadow: 0 0 3px #ddd;
  1412. border-top: 0;
  1413. }
  1414. .data-option-list>div {
  1415. cursor: pointer;
  1416. padding: 0.2rem 0.5rem;
  1417. border-bottom: 1px solid #ddd;
  1418. color: #666;
  1419. font-size: 90%;
  1420. }
  1421. .data-option-list>div:last-child {
  1422. border-bottom: 0;
  1423. }
  1424. .data-option-list>div:hover {
  1425. background: aliceblue;
  1426. }
  1427. .measurement-item:not(:last-child) {
  1428. border-bottom: 1px solid #e7e7e7;
  1429. }
  1430. .assessment-detail-template>span {
  1431. margin: 0 !important;
  1432. padding: 0 !important;
  1433. border: 0 !important;
  1434. margin-left: -0.5rem !important;
  1435. position: static !important;
  1436. }
  1437. .assessment-detail-template>span>a {
  1438. display: none;
  1439. }
  1440. button.add-shortcut,
  1441. button.note-templates-trigger-assessment {
  1442. outline: none !important;
  1443. box-shadow: none !important;
  1444. }
  1445. .appt-calendar-col.click-through .fc-timegrid-event-harness {
  1446. pointer-events: none !important;
  1447. }
  1448. .claim-line:last-child td {
  1449. padding-bottom: 1.3rem;
  1450. }
  1451. .in-table-markup p:last-of-type {
  1452. margin-bottom: 0;
  1453. }
  1454. .suggestions-outer.pharmacy-suggestions {
  1455. left: 1rem;
  1456. width: calc(100% - 2rem);
  1457. }
  1458. .flowsheets-table td {
  1459. padding: 0 10px;
  1460. height: 38px;
  1461. max-height: 38px;
  1462. min-height: 38px;
  1463. vertical-align: middle !important;
  1464. }
  1465. .flowsheets-table .expand {
  1466. display: none;
  1467. }
  1468. .flowsheets-table .collapse {
  1469. display: block;
  1470. }
  1471. .flowsheets-table .collapsed .expand {
  1472. display: block;
  1473. }
  1474. .flowsheets-table .collapsed .collapse {
  1475. display: none;
  1476. }
  1477. .flowsheets-table tr {
  1478. }
  1479. .flowsheets-table .collapsed tr:not(:first-child) {
  1480. display: none;
  1481. }
  1482. .col-2-button {
  1483. width: 88px;
  1484. text-align: left;
  1485. }
  1486. /* vitals graph */
  1487. .stag-chart {
  1488. min-height: 300px;
  1489. }
  1490. .stag-chart .safe-region>rect {
  1491. fill: green;
  1492. }
  1493. .stag-chart .safe-region>text {
  1494. fill: #888;
  1495. transform: translateY(-18px);
  1496. }
  1497. /* appt. confirmation history */
  1498. .appointment-confirmation-history-trigger .appointment-confirmation-history {
  1499. position: absolute;
  1500. width: 300px;
  1501. right: 0;
  1502. background: #fff;
  1503. opacity: 0;
  1504. padding: 0 0.75rem;
  1505. padding-bottom: 0.5rem;
  1506. box-shadow: 0 0 2px #999;
  1507. pointer-events: none;
  1508. transition: opacity 0.3s ease;
  1509. z-index: 2;
  1510. top: 0;
  1511. }
  1512. .appointment-confirmation-history-trigger:hover .appointment-confirmation-history {
  1513. opacity: 1;
  1514. pointer-events: all;
  1515. }
  1516. .on-hover-text-reveal {
  1517. white-space: nowrap;
  1518. overflow: hidden;
  1519. text-overflow: ellipsis;
  1520. }
  1521. .on-hover-text-reveal:hover {
  1522. white-space: normal;
  1523. overflow: unset;
  1524. text-overflow: unset;
  1525. }
  1526. .collapsible-tbody.collapsed {
  1527. display: none;
  1528. }
  1529. #send-fax-pdf-preview, #transmit-pdf-preview {
  1530. max-height: 350px;
  1531. overflow: auto;
  1532. box-shadow: 0 0 2px #ccc;
  1533. }
  1534. canvas.pdf-viewer-page.pdf-preview-page {
  1535. margin: 0.5rem auto;
  1536. }
  1537. .back-to-admin-button {
  1538. background: transparent;
  1539. border: 0;
  1540. padding: 0;
  1541. color: rgb(13, 89, 175);
  1542. }
  1543. .back-to-admin-button:hover {
  1544. text-decoration: underline;
  1545. }
  1546. .bg-aliceblue {
  1547. background: aliceblue !important;
  1548. }
  1549. .filter-head input[type="date"]::-webkit-calendar-picker-indicator {
  1550. display: none;
  1551. -webkit-appearance: none;
  1552. }
  1553. .filter-head input[type="number"]::-webkit-inner-spin-button {
  1554. display: none;
  1555. -webkit-appearance: none;
  1556. }
  1557. .filter-head input[type="date"] {
  1558. padding: 0;
  1559. min-width: 90px;
  1560. }
  1561. .filter-head input[type="number"],
  1562. .filter-head input[type="date"] {
  1563. min-width: 90px;
  1564. }
  1565. .filter-head select {
  1566. padding: 0 5px;
  1567. }
  1568. tr.sep td {
  1569. padding: 0;
  1570. background: #eee;
  1571. height: 6px;
  1572. }
  1573. #practice-shipments-ready-to-print ::marker {
  1574. color: #0009;
  1575. font-size: 90%;
  1576. }
  1577. .only-print {
  1578. display: none;
  1579. }
  1580. @media print {
  1581. .only-print {
  1582. display: block;
  1583. }
  1584. th.only-print, td.only-print {
  1585. display: table-cell;
  1586. }
  1587. }
  1588. .only-screen {
  1589. display: block;
  1590. }
  1591. th.only-screen, td.only-screen {
  1592. display: table-cell;
  1593. }
  1594. @media print {
  1595. .only-screen {
  1596. display: none !important;
  1597. }
  1598. .only-pick-list, .only-order-slip {
  1599. display: none;
  1600. }
  1601. .pick-list .only-pick-list, .order-slip .only-order-slip {
  1602. display: block;
  1603. }
  1604. }
  1605. .suggest-item.patient-suggest>img {
  1606. width: 10px;
  1607. height: 10px;
  1608. opacity: 0.75;
  1609. }
  1610. .suggest-item.patient-suggest>img.claimed {
  1611. filter: grayscale(100%);
  1612. opacity: 0.5;
  1613. }
  1614. .pdf-viewer-auto {
  1615. max-height: 600px;
  1616. overflow: auto;
  1617. }
  1618. .ticket-popup .stag-popup.stag-slide.show {
  1619. position: static;
  1620. min-width: 100% !important;
  1621. max-width: unset !important;
  1622. padding-bottom: 2rem;
  1623. }
  1624. .ticket-popup .stag-popup.stag-slide.show form {
  1625. min-width: 100% !important;
  1626. max-width: unset !important;
  1627. }
  1628. .ticket-popup .stag-popup.stag-slide>form {
  1629. position: absolute;
  1630. top: 0;
  1631. height: auto !important;
  1632. overflow: hidden;
  1633. border-radius: 5px;
  1634. transition: none;
  1635. border: 1px solid #aaa;
  1636. }
  1637. .ticket-popup .stag-popup.stag-slide .stag-popup-title.sticky-top {
  1638. position: static;
  1639. }
  1640. .ticket-popup.stag-popup.stag-popup-md>.container-fluid {
  1641. max-width: 632pt;
  1642. }
  1643. .ticket-popup.stag-popup.stag-popup-md>.container-fluid>.main-row>main>.card {
  1644. border: 0;
  1645. /*background: transparent;*/
  1646. }
  1647. .ticket-popup .hide-inside-ticket-popup {
  1648. display: none !important;
  1649. }
  1650. .ticket-popup .disable-inside-ticket-popup {
  1651. pointer-events: none !important;
  1652. opacity: 0.5;
  1653. }
  1654. .fill-percent-value {
  1655. width: 60px;
  1656. }
  1657. .fill-percent-content {
  1658. width: 100px;
  1659. }
  1660. .fill-bar {
  1661. height: 20px !important;
  1662. border: 1px solid #ddd;
  1663. }
  1664. .if-in-clinic {
  1665. display: none;
  1666. }
  1667. .stag-table-container {
  1668. max-height: calc(100vh - 230px - 1rem);
  1669. width: 100%;
  1670. overflow: auto !important;
  1671. }
  1672. .stag-table-container-lg>table{
  1673. min-width: 1450px;
  1674. }
  1675. .stag-table-container.stag-table-container-no-x-scroll {
  1676. overflow-x: hidden !important;
  1677. }
  1678. .stag-fc-container .fc-toolbar-title .tz-display {
  1679. font-size: inherit;
  1680. font-family: inherit;
  1681. }
  1682. .caremonth-measurements-calendar .fc-event.m-weight {
  1683. background: #38908f;
  1684. color: #fff;
  1685. padding-left: 5px;
  1686. margin-bottom: 2px;
  1687. }
  1688. .caremonth-measurements-calendar .fc-event.m-bp {
  1689. background: #5e96ae;
  1690. color: #fff;
  1691. padding-left: 5px;
  1692. margin-bottom: 2px;
  1693. }
  1694. .caremonth-measurements-calendar .fc-event.m-weight *,
  1695. .caremonth-measurements-calendar .fc-event.m-bp *{
  1696. font-size: 10px !important;
  1697. }
  1698. .caremonth-measurements-calendar .fc-daygrid-event-dot {
  1699. display: none;
  1700. }
  1701. .pro-dashboard-inline-calendar>.ui-datepicker-inline {
  1702. width: 100%;
  1703. border: 0 !important;
  1704. }
  1705. .caremonth-measurements-calendar>.ui-datepicker-inline {
  1706. width: 100%;
  1707. }
  1708. .caremonth-measurements-calendar .ui-datepicker-prev,
  1709. .caremonth-measurements-calendar .ui-datepicker-next {
  1710. display: none;
  1711. }
  1712. #simpleSMSReminderComponent input[type="time"] {
  1713. max-width: 90px;
  1714. min-width: unset !important;
  1715. }
  1716. form.non-interactive .form-content {
  1717. opacity: 0.5;
  1718. cursor: not-allowed;
  1719. }
  1720. form.non-interactive .form-content * {
  1721. pointer-events: none;
  1722. }
  1723. #eventPros {
  1724. max-height: 28px;
  1725. opacity: 0;
  1726. }
  1727. .training-event {
  1728. position: relative;
  1729. background: #f0feff;
  1730. border-color: #32a2b89e !important;
  1731. }
  1732. .training-event::after {
  1733. position: absolute;
  1734. content: 'Training';
  1735. font-size: 10px;
  1736. font-weight: normal;
  1737. color: #17a2b8;
  1738. left: 1px;
  1739. bottom: -13px;
  1740. transform-origin: left top;
  1741. transform: rotate(
  1742. -90deg
  1743. );
  1744. width: 90px;
  1745. text-align: center;
  1746. letter-spacing: 0.75px;
  1747. }
  1748. .training-event .training-icon {
  1749. font-size: 22px;
  1750. color: #0d59af;
  1751. }
  1752. .training-event .patient-avatar {
  1753. border-color: #0d59af7d !important;
  1754. }
  1755. /* print-note */
  1756. @media print {
  1757. .stag-content #sidebarMenu {
  1758. display: none !important;
  1759. }
  1760. .stag-content .main-row {
  1761. padding-left: 0 !important;
  1762. }
  1763. .stag-content [moe] {
  1764. display: none !important;
  1765. }
  1766. .stag-content .screen-only {
  1767. display: none !important;
  1768. }
  1769. }
  1770. @media screen {
  1771. .stag-content .print-only {
  1772. display: none !important;
  1773. }
  1774. }
  1775. .child-sections>.note-section:not(.edit) {
  1776. position: relative;
  1777. }
  1778. .child-sections>.note-section:not(.edit):before {
  1779. content: '';
  1780. width: 9px;
  1781. border-top: 1px solid #ccc;
  1782. left: 0;
  1783. top: calc(1rem + 8px);
  1784. height: 1px;
  1785. position: absolute;
  1786. }
  1787. .child-sections>.note-section.edit {
  1788. margin-left: 1rem;
  1789. }
  1790. .rhs-absolute-fh-link {
  1791. position: absolute;
  1792. right: 0;
  1793. padding: 0 0.5rem;
  1794. background-color: inherit;
  1795. }
  1796. .mcp-theme-1 .click-to-copy {
  1797. background-color: #e4f7ed36;
  1798. cursor: copy;
  1799. border-bottom: 1px dotted #c0f7e86e;
  1800. }
  1801. .mcp-theme-1 .click-to-copy:hover {
  1802. border-bottom: 1px dotted #c0f7e8;
  1803. }
  1804. [data-type="removed"] {
  1805. color: gray;
  1806. font-style: italic;
  1807. }
  1808. [data-type="existing"] {
  1809. }
  1810. [data-type="updated"] {
  1811. font-weight: bold;
  1812. color: #d8a714;
  1813. }
  1814. [data-type="prescribed today"] {
  1815. font-weight: bold;
  1816. color: #2ea745
  1817. }
  1818. .process-notes-badge {
  1819. border: 1px solid #ddd;
  1820. cursor: pointer;
  1821. padding: 0.35rem 0.6rem;
  1822. border-radius: 4px;
  1823. text-decoration: none !important;
  1824. }
  1825. .process-notes-badge:hover {
  1826. color: #000 !important;
  1827. border-color: #349caf;
  1828. }
  1829. .process-notes-badge.active {
  1830. /*font-weight: bold;*/
  1831. color: #fff !important;
  1832. background: #349caf;
  1833. border-color: #349caf;
  1834. }
  1835. .process-notes-badge.success {
  1836. font-weight: bold;
  1837. color: #fff !important;
  1838. background: #31b574;
  1839. border-color: #31b574;
  1840. cursor: auto;
  1841. }
  1842. .process-notes-badge.error {
  1843. font-weight: bold;
  1844. color: #fff !important;
  1845. background: #a72132;
  1846. border-color: #a72132;
  1847. cursor: auto;
  1848. }
  1849. /*
  1850. .process-notes-badge {
  1851. position: relative;
  1852. }
  1853. .process-notes-badge:after {
  1854. position: absolute;
  1855. content: attr(data-index);
  1856. top: -14px;
  1857. left: 10px;
  1858. background: #fff;
  1859. border: 1px solid;
  1860. width: 20px;
  1861. text-align: center;
  1862. border-radius: 100%;
  1863. }*/
  1864. .no-overflow-menu {
  1865. overflow-y: auto;
  1866. max-height: calc(100vh - 60px);
  1867. }
  1868. .zero-height-field {
  1869. height: 1px !important;
  1870. opacity: 0 !important;
  1871. pointer-events: none;
  1872. position: absolute;
  1873. }
  1874. table.dashboard-stats-table th {
  1875. padding: 0.5rem 0.75rem
  1876. }
  1877. .min-height-500px {
  1878. min-height: 500px;
  1879. }
  1880. .inline-html-container p {
  1881. margin-bottom: 0;
  1882. }
  1883. body.in-iframe>.navbar {
  1884. display: none !important;
  1885. }
  1886. body.in-iframe .stag-content {
  1887. padding-top: 0 !important;
  1888. }
  1889. body.in-iframe .main-row > .sidebar {
  1890. top: 0;
  1891. height: 100%;
  1892. }
  1893. .stag-popup .hide-inside-popup {
  1894. display: none !important;
  1895. }
  1896. .strike-through {
  1897. text-decoration: line-through;
  1898. }
  1899. /* visit-moe */
  1900. [visit-moe] [url]:not([show]){
  1901. display: none;
  1902. }
  1903. [visit-moe] {
  1904. display: inline-block;
  1905. }
  1906. [visit-moe][relative] {
  1907. position: relative;
  1908. }
  1909. [visit-moe] [url]:not([show]) {
  1910. z-index: 99999;
  1911. position: absolute;
  1912. background-color: white;
  1913. padding: 10px;
  1914. border: 1px solid gray;
  1915. }
  1916. [visit-moe][fixed-center] [url]:not([show]) {
  1917. position: fixed !important;
  1918. top: 50% !important;
  1919. left: 50% !important;
  1920. width: 600px;
  1921. transform: translate(-50%, -50%) !important;
  1922. }
  1923. [visit-moe] [url][right] {
  1924. right: 0;
  1925. min-width: 200px;
  1926. }
  1927. [visit-moe][large] form, [visit-moe][large] [url] {
  1928. width: 450px;
  1929. }
  1930. [visit-moe][bottom] form {
  1931. bottom: 100%;
  1932. }
  1933. .note-container {
  1934. display: flex;
  1935. align-items: start;
  1936. }
  1937. .note-container .note-lhs-tree {
  1938. min-width: 220px;
  1939. max-width: 220px;
  1940. align-self: stretch;
  1941. border-right: 1px solid #ddd;
  1942. padding-top: 0.85rem;
  1943. height: 300px;
  1944. overflow: overlay;
  1945. max-height: calc(100vh - 55px);
  1946. background-color: #fff;
  1947. }
  1948. .note-container .note-lhs-tree.fixed {
  1949. position: fixed;
  1950. top: 55px;
  1951. max-height: calc(100vh - 55px) !important;
  1952. height: calc(100vh - 55px) !important;
  1953. }
  1954. .note-container .note-lhs-tree.fixed ~ .note-rhs-content {
  1955. margin-left: 220px;
  1956. }
  1957. .note-container .note-lhs-tree .note-tree-node.note-tree-heading>a {
  1958. }
  1959. .note-container .note-lhs-tree .note-tree-node>a {
  1960. display: block;
  1961. padding: 0.15rem 0;
  1962. padding-left: 0.75rem;
  1963. white-space: nowrap;
  1964. text-overflow: ellipsis;
  1965. overflow: hidden;
  1966. text-decoration: none;
  1967. color: #333;
  1968. }
  1969. .note-container .note-lhs-tree .note-tree-node>a:hover {
  1970. background-color: aliceblue;
  1971. color: #0d59af !important;
  1972. }
  1973. .note-container .note-lhs-tree .note-tree-node:hover>a,
  1974. .note-container .note-lhs-tree .note-tree-node.hovered>a {
  1975. background-color: aliceblue;
  1976. }
  1977. .note-container .note-lhs-tree .note-tree-node.active>a {
  1978. font-weight: bold !important;
  1979. color: #0d59af !important;
  1980. }
  1981. .note-container .note-lhs-tree .note-tree-children>.note-tree-node>a {
  1982. padding-left: 2rem;
  1983. }
  1984. .note-container .note-lhs-tree .note-tree-children .note-tree-children>.note-tree-node>a {
  1985. padding-left: 4rem;
  1986. }
  1987. .note-container .note-rhs-content {
  1988. flex-grow: 1;
  1989. }
  1990. .spot-highlight {
  1991. background: aliceblue !important;
  1992. }
  1993. .on-click-menu [menu] {
  1994. position: absolute;
  1995. display: none;
  1996. top: 100%;
  1997. right: 0;
  1998. z-index: 1;
  1999. }
  2000. .zero-height {
  2001. height: 0 !important;
  2002. padding: 0 !important;
  2003. border: 0 !important;
  2004. overflow: hidden;
  2005. }
  2006. .note-section[data-segment-template-name="medrisk_vigilence"] {
  2007. position: fixed;
  2008. right: 0;
  2009. top: 55px;
  2010. width: 40px;
  2011. height: calc(100vh - 54px);
  2012. background: aliceblue;
  2013. padding: 0 !important;
  2014. border-left: 1px solid #ddd;
  2015. transition: width 0.1s ease;
  2016. }
  2017. .note-section[data-segment-template-name="medrisk_vigilence"] .on-hover-only {
  2018. display: none;
  2019. }
  2020. .note-section[data-segment-template-name="medrisk_vigilence"]:hover {
  2021. padding: 1rem !important;
  2022. width: 550px;
  2023. border-left: 1px solid #ddd;
  2024. overflow: auto;
  2025. }
  2026. .note-section[data-segment-template-name="medrisk_vigilence"]:hover .on-hover-only {
  2027. display: block;
  2028. }
  2029. .note-section[data-segment-template-name="medrisk_vigilence"]:hover .on-hover-hide {
  2030. display: none;
  2031. }
  2032. .mrv-badge {
  2033. border-radius: 100%;
  2034. height: 24px;
  2035. width: 24px;
  2036. min-height: 24px;
  2037. min-width: 24px;
  2038. max-height: 24px;
  2039. max-width: 24px;
  2040. text-align: center;
  2041. font-weight: 400;
  2042. display: flex;
  2043. align-items: center;
  2044. justify-content: center;
  2045. background-color: #6457f9;
  2046. color: #fff;
  2047. opacity: 0.85;
  2048. }
  2049. .mrv-badge>span {
  2050. font-size: 10px !important;
  2051. }