style.css 54 KB

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