style.css 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498
  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. .bg-dark-primary {
  109. background-color: #3061ad;
  110. }
  111. .flex-header {
  112. display: flex;
  113. gap: 10px;
  114. }
  115. .flex-header >div {
  116. /* flex-grow: 1; */
  117. }
  118. .patient-header-address {
  119. list-style-type: none;
  120. padding-left: 0;
  121. }
  122. /* ability to toggle the video pane (rhs) */
  123. .stag_rhs_toggle, .stag_rhs_toggle:hover {
  124. position: fixed;
  125. bottom: 0;
  126. right: 0;
  127. padding: 0.25rem 0.75rem;
  128. border-top-left-radius: 6px;
  129. background-color: var(--primary-color);
  130. color: #fff;
  131. z-index: 2;
  132. }
  133. body.stag_rhs_collapsed .v-split,
  134. body.stag_rhs_collapsed .app-right-panel {
  135. display: none !important;
  136. }
  137. .delete-column {
  138. width: 120px;
  139. }
  140. .m-negator {
  141. margin-left: -1.25rem !important;
  142. margin-right: -1.25rem !important;
  143. }
  144. .pl-3-5 {
  145. padding-left: 1.25rem !important;
  146. }
  147. .lh-16px {
  148. line-height: 16px;
  149. }
  150. .lh-24px {
  151. height: 24px;
  152. line-height: 24px;
  153. }
  154. .mcp-theme-1 input[type="file"] {
  155. position: relative;
  156. cursor: pointer;
  157. box-shadow: none;
  158. }
  159. .mcp-theme-1 input[type="file"]::after {
  160. content: attr(selected-file);
  161. position: absolute;
  162. left: 0;
  163. top: 0;
  164. width: 100%;
  165. height: 100%;
  166. background: #fff;
  167. display: flex;
  168. align-items: center;
  169. padding: 0 0.5rem;
  170. color: #0d59af;
  171. overflow: hidden;
  172. white-space: nowrap;
  173. text-overflow: ellipsis;
  174. }
  175. .mcp-theme-1 *:not(i) {
  176. font-family: Verdana, sans-serif;
  177. font-size: 12px;
  178. }
  179. .mcp-theme-1 .font-size-11 {
  180. font-size: 11px;
  181. }
  182. .mcp-theme-1 .font-size-13 {
  183. font-size: 13px;
  184. }
  185. .mcp-theme-1 .font-size-14 {
  186. font-size: 14px;
  187. }
  188. .mcp-theme-1 .font-size-16 {
  189. font-size: 16px;
  190. }
  191. .mcp-theme-1 .font-underline {
  192. text-decoration: underline;
  193. }
  194. .mcp-theme-1 .on-hover-opaque {
  195. opacity: 0.6;
  196. }
  197. .mcp-theme-1 .on-hover-opaque:hover {
  198. opacity: 1;
  199. }
  200. .mcp-theme-1 .on-hover-aliceblue:hover {
  201. background: aliceblue;
  202. }
  203. .mcp-theme-1 .opacity-0 {
  204. opacity: 0 !important;
  205. }
  206. .mcp-theme-1 .opacity-60 {
  207. opacity: .6;
  208. }
  209. .mcp-theme-1 .opacity-35 {
  210. opacity: .35;
  211. }
  212. .mcp-theme-1 .overflow-visible {
  213. overflow: visible;
  214. }
  215. .mcp-theme-1 .overflow-overlay-on-hover {
  216. overflow: hidden;
  217. }
  218. .mcp-theme-1 .overflow-overlay-on-hover:hover {
  219. overflow: overlay;
  220. }
  221. .mcp-theme-1 .overflow-x-scroll {
  222. overflow-x: scroll !important;
  223. }
  224. .mcp-theme-1 .text-secondary-light {
  225. color: #c9ddef !important;
  226. }
  227. .mcp-theme-1 a, .mcp-theme-1 a:link {
  228. color: rgb(13, 89, 175);
  229. }
  230. .mcp-theme-1 .text-primary {
  231. color: rgb(13, 89, 175) !important;
  232. }
  233. .mcp-theme-1 .btn.btn-primary {
  234. background: rgb(13, 89, 175);
  235. border-color: rgb(13, 89, 175);
  236. box-shadow: none;
  237. }
  238. .mcp-theme-1 .btn.btn-success,
  239. .mcp-theme-1 .btn.btn-success:active {
  240. background: #35b7b2;
  241. border-color: #35b7b2;
  242. }
  243. .mcp-theme-1 .btn.btn-success:focus {
  244. box-shadow: 0 0 0 0.2rem #35b7b277;
  245. }
  246. #sidebarMenu .mcp-theme-1 .nav-item {
  247. margin: 0;
  248. }
  249. #sidebarMenu .mcp-theme-1 .nav-link:hover {
  250. background: #e3e3e394;
  251. }
  252. #sidebarMenu .mcp-theme-1 .nav-link {
  253. border-top: 1px solid transparent;
  254. }
  255. #sidebarMenu .mcp-theme-1 .nav-link.active {
  256. border-top: 1px solid #f8f9fa;
  257. background: #e2e2e2;
  258. }
  259. .mcp-theme-1 .text-sm {
  260. font-size: 85%;
  261. }
  262. .mcp-theme-1 .text-sm-incl-children,
  263. .mcp-theme-1 .text-sm-incl-children *:not(i) {
  264. font-size: 0.8rem;
  265. }
  266. .mcp-theme-1 .minutes-label {
  267. width: 40px;
  268. }
  269. .mcp-theme-1 .memo-textarea {
  270. min-width: 200px;
  271. height: 60px;
  272. }
  273. .main-row {
  274. display: flex;
  275. flex-wrap: nowrap;
  276. margin-right: -15px;
  277. margin-left: -15px;
  278. }
  279. .main-row > .sidebar {
  280. width: 180px;
  281. min-width: 180px;
  282. }
  283. .main-row > main {
  284. flex-grow: 1;
  285. }
  286. html, body {
  287. height: 100%;
  288. }
  289. body>nav.navbar {
  290. height: 55px;
  291. }
  292. .body-height {
  293. height: calc(100vh - 55px);
  294. }
  295. .stag-content {
  296. height: calc(100% - 55px);
  297. }
  298. [moe][large] form, [moe][large] [url] {
  299. width: 450px;
  300. }
  301. [moe][wide] form, [moe][wide] [url] {
  302. width: 550px;
  303. }
  304. [moe][huge] form, [moe][huge] [url] {
  305. width: 750px;
  306. }
  307. [moe][extra-huge] form, [moe][extra-huge] [url] {
  308. width: 900px;
  309. }
  310. [moe][bottom] form,
  311. [moe][bottom] div[url]{
  312. bottom: 100%;
  313. }
  314. .moe-disabled[moe] {
  315. cursor: not-allowed;
  316. }
  317. .moe-disabled[moe] [start][show] {
  318. opacity: 0.5;
  319. pointer-events: none;
  320. }
  321. .mcp-theme-1 .stag-no-wrap-td {
  322. max-width: 260px;
  323. }
  324. .mcp-theme-1 .stag-no-wrap {
  325. max-width: 250px;
  326. overflow: hidden;
  327. text-overflow: ellipsis;
  328. white-space: nowrap;
  329. display: block;
  330. }
  331. .mcp-theme-1 .form-control.form-control-sm:not(.min-width-unset) {
  332. min-width: 200px;
  333. }
  334. .mcp-theme-1 .min-width-unset>.form-control.form-control-sm,
  335. .mcp-theme-1 select.min-width-unset+.pro-suggest-input {
  336. min-width: unset !important;
  337. }
  338. .mcp-theme-1 .width-auto {
  339. width: auto !important;
  340. }
  341. .mcp-theme-1 [large] .form-control.form-control-sm {
  342. min-width: unset;
  343. }
  344. [wide] .form-control.form-control-sm:not(.min-width-unset) {
  345. min-width: 480px;
  346. }
  347. [moe][center] [url]:not([show]) {
  348. position: fixed;
  349. top: 10%;
  350. max-height: 88%;
  351. overflow-y: auto;
  352. overflow-x: hidden;
  353. left: calc(50% - 250px);
  354. width: 500px;
  355. }
  356. [moe][center][wide] [url]:not([show]) {
  357. left: calc(50% - 400px);
  358. width: 800px;
  359. }
  360. [moe][center][extra-wide] [url]:not([show]) {
  361. left: calc(50% - 500px);
  362. width: 1000px;
  363. }
  364. [moe][center] [url]:not([show]) .form-control.form-control-sm {
  365. min-width: unset;
  366. max-width: 100%;
  367. }
  368. .form-check-label {
  369. padding-top: 2px;
  370. }
  371. .mcp-theme-1 .rotateh {
  372. transform: rotateY(180deg);
  373. }
  374. .mcp-theme-1 .icon-16 {
  375. width: 16px !important;
  376. height: 16px !important;
  377. }
  378. .mcp-theme-1 .width-200px {
  379. width: 200px !important;
  380. }
  381. .mcp-theme-1 .width-300px {
  382. width: 300px !important;
  383. }
  384. .mcp-theme-1 .grow-till-300px {
  385. inline-size: max-content;
  386. writing-mode: horizontal-tb;
  387. max-width: 300px;
  388. }
  389. .mcp-theme-1 .width-22px {
  390. width: 22px !important;
  391. }
  392. .mcp-theme-1 .width-30px {
  393. width: 30px !important;
  394. min-width: 30px !important;
  395. max-width: 30px !important;
  396. }
  397. .mcp-theme-1 .width-40px {
  398. width: 40px !important;
  399. }
  400. .mcp-theme-1 .width-50px {
  401. width: 50px !important;
  402. }
  403. .mcp-theme-1 .width-60px {
  404. width: 60px !important;
  405. }
  406. .mcp-theme-1 .width-70px {
  407. width: 70px !important;
  408. }
  409. .mcp-theme-1 .min-width-30px {
  410. min-width: 30px !important;
  411. }
  412. .mcp-theme-1 .min-width-50 {
  413. min-width: 50% !important;
  414. }
  415. .mcp-theme-1 .max-width-50 {
  416. max-width: 50% !important;
  417. }
  418. .mcp-theme-1 .min-width-70px {
  419. min-width: 70px !important;
  420. }
  421. .mcp-theme-1 .min-width-80px {
  422. min-width: 80px !important;
  423. }
  424. .mcp-theme-1 .width-90px {
  425. width: 90px !important;
  426. }
  427. .mcp-theme-1 .min-width-110px {
  428. min-width: 110px !important;
  429. }
  430. .mcp-theme-1 .max-width-110px {
  431. max-width: 110px !important;
  432. }
  433. .mcp-theme-1 .min-width-140px {
  434. min-width: 140px !important;
  435. }
  436. .mcp-theme-1 .min-width-200px {
  437. min-width: 200px !important;
  438. }
  439. .mcp-theme-1 .min-width-300px {
  440. min-width: 300px;
  441. }
  442. .mcp-theme-1 .min-width-500px {
  443. min-width: 500px !important;
  444. }
  445. .mcp-theme-1 .max-width-500px {
  446. max-width: 500px !important;
  447. }
  448. .mcp-theme-1 .min-width-700px {
  449. min-width: 700px !important;
  450. }
  451. .mcp-theme-1 .max-width-700px {
  452. max-width: 700px !important;
  453. }
  454. .mcp-theme-1 .width-100px {
  455. width: 100px;
  456. min-width: unset !important;
  457. max-width: unset !important;
  458. }
  459. .mcp-theme-1 .width-140px {
  460. width: 140px;
  461. min-width: unset !important;
  462. max-width: unset !important;
  463. }
  464. .mcp-theme-1 .width-150px {
  465. width: 150px;
  466. min-width: unset !important;
  467. max-width: unset !important;
  468. }
  469. .mcp-theme-1 .width-500px {
  470. width: 500px;
  471. min-width: unset !important;
  472. max-width: unset !important;
  473. }
  474. .mcp-theme-1 .width-100pc {
  475. width: 100% !important;
  476. min-width: unset !important;
  477. }
  478. .mcp-theme-1 .max-width-200px {
  479. max-width: 200px;
  480. }
  481. .mcp-theme-1 .max-width-300px {
  482. max-width: 300px;
  483. }
  484. .mcp-theme-1 .height-35px {
  485. min-height: 35px !important;
  486. max-height: 35px !important;
  487. }
  488. .mcp-theme-1 .outline-0 {
  489. outline: none !important;
  490. box-shadow: none !important;
  491. }
  492. .cancelled-item {
  493. opacity: 0.5;
  494. }
  495. .cancelled-item:not(.always-clickable) * {
  496. pointer-events: none;
  497. }
  498. .note-content {
  499. max-height: 300px;
  500. overflow-y: auto;
  501. }
  502. .note-content:not([auto-edit]) {
  503. padding: 1rem;
  504. padding-bottom: 0;
  505. cursor: pointer;
  506. position: relative;
  507. }
  508. .note-content:not(.cancelled):not([auto-edit]):not(.readonly):before {
  509. content: '(click to change)';
  510. display: block;
  511. color: #535353;
  512. padding-bottom: 0.3rem;
  513. }
  514. .mcp-theme-1 .ql-container, .mcp-theme-1 .ql-toolbar {
  515. border-left: 0;
  516. border-right: 0;
  517. }
  518. .mcp-theme-1 .ql-editor[contenteditable] {
  519. min-height: 100px;
  520. }
  521. body [note-rte][slim-rte]:not(.border-0),
  522. body [note-rte][data-field-name="reviewValue"],
  523. body [note-rte][data-field-name="planValue"] {
  524. border: 1px solid #ced4da !important;
  525. }
  526. body [note-rte][slim-rte] .ql-editor[contenteditable],
  527. body [note-rte][data-field-name="reviewValue"] .ql-editor[contenteditable],
  528. body [note-rte][data-field-name="planValue"] .ql-editor[contenteditable] {
  529. min-height: 30px !important;
  530. padding: .25rem .5rem !important;
  531. }
  532. .ql-container p {
  533. margin-top: 1rem;
  534. }
  535. .note-content ul {
  536. list-style: none !important;
  537. }
  538. .ql-editor ul > li::before {
  539. content: '';
  540. }
  541. .m-neg-3 {
  542. margin-left: -1rem;
  543. margin-right: -1rem;
  544. }
  545. .m-neg-4 {
  546. margin-left: -1.25rem;
  547. margin-right: -1.25rem;
  548. }
  549. .mcp-theme-1 .ql-toolbar .ql-formats * {
  550. font-size: 12px !important;
  551. }
  552. .mcp-theme-1 .ql-toolbar.ql-snow {
  553. padding: 3px;
  554. background: #f7f7f7;
  555. }
  556. .mcp-theme-1 .ql-snow .ql-picker {
  557. height: 22px;
  558. }
  559. .mcp-theme-1 .ql-snow.ql-toolbar button {
  560. height: 22px;
  561. width: 26px;
  562. }
  563. .rte-holder .ql-container p {
  564. margin-top: 0;
  565. }
  566. .note-section:not(.edit) .if-not-edit {
  567. display: block !important;
  568. }
  569. .note-section:not(.edit) div.if-not-edit {
  570. /* padding-left: 1rem; */
  571. padding-left: 0;
  572. }
  573. .note-section:not(.edit):hover {
  574. background: #f6f9fc;
  575. cursor: pointer;
  576. }
  577. [data-non-segment-section]:hover {
  578. background: #f6f9fc;
  579. }
  580. .note-signed-by-hcp .note-section:not(.edit):hover {
  581. background: #f6f9fc;
  582. cursor: auto;
  583. }
  584. .note-section.edit .if-edit {
  585. display: block !important;
  586. }
  587. .c-pointer {
  588. cursor: pointer;
  589. }
  590. .events-none {
  591. pointer-events: none;
  592. }
  593. .blocking-overlay {
  594. opacity: 0 !important;
  595. cursor: default;
  596. }
  597. .inset-comment p {
  598. margin-bottom: 0.3rem;
  599. }
  600. .inset-comment p:last-child {
  601. margin-bottom: 0 !important;
  602. }
  603. .note-section.edit {
  604. background: #f0f8ff7d;
  605. outline: 2px solid #9de3ff;
  606. }
  607. .note-section.edit .ql-editor,
  608. .note-section.edit .btn-default {
  609. background-color: #fff !important;
  610. }
  611. /*.note-section-item-row:not(:first-child) {
  612. padding-top: 10px;
  613. border-top: 1px solid #ccc;
  614. }*/
  615. /* override med ac css */
  616. #searchResults {
  617. z-index: 100001 !important;
  618. }
  619. input.search_field, textarea.search_field {
  620. background-position: right 7px center !important;
  621. padding-right: 23px !important;
  622. }
  623. .ansList:focus, .search_field:focus {
  624. background-color: #fff !important;
  625. }
  626. .navbar.navbar-dark {
  627. height: 55px;
  628. position: fixed;
  629. top: 0;
  630. left: 0;
  631. width: 100%;
  632. z-index: 9999;
  633. }
  634. .main-row {
  635. padding-left: 180px;
  636. }
  637. .main-row.autohide-leftnav {
  638. padding-left: 30px;
  639. }
  640. .main-row > .sidebar {
  641. width: 180px;
  642. min-width: 180px;
  643. position: fixed;
  644. left: 0;
  645. top: 55px;
  646. z-index: 8;
  647. height: calc(100% - 55px);
  648. padding-bottom: 4rem;
  649. border-right: 1px solid #ddd;
  650. overflow: hidden;
  651. }
  652. .main-row > .sidebar:hover {
  653. overflow-y: overlay
  654. }
  655. @media screen {
  656. .navbar.navbar-dark + [role="main"] {
  657. padding-top: 55px;
  658. }
  659. }
  660. @media screen and (max-width: 1400px) {
  661. .flex-container > div:first-child {
  662. margin-bottom: 20px;
  663. }
  664. }
  665. @media screen and (min-width: 1400px) {
  666. .flex-container{
  667. display: flex;
  668. align-items: flex-start;
  669. justify-content: space-between;
  670. }
  671. .flex-container > div {
  672. flex-basis: 50%;
  673. }
  674. .flex-container > div:first-child {
  675. border-right: 1px solid #eee;
  676. margin-right: 20px;
  677. padding-right: 20px;
  678. }
  679. }
  680. .main-row > .sidebar .nav .nav-item a {
  681. white-space: nowrap;
  682. }
  683. .main-row.autohide-leftnav > .sidebar {
  684. width: 30px;
  685. min-width: 30px;
  686. transition: width 0.2s ease;
  687. }
  688. .main-row.autohide-leftnav > .sidebar:not(:hover):after {
  689. content: '(hover for menu)';
  690. position: fixed;
  691. top: 200px;
  692. left: 5px;
  693. transform-origin: top left;
  694. transform: rotate(-90deg);
  695. white-space: nowrap;
  696. font-size: 12px;
  697. font-family: verdana;
  698. color: #666;
  699. }
  700. .main-row.autohide-leftnav > .sidebar ul {
  701. opacity: 0;
  702. }
  703. .main-row.autohide-leftnav > .sidebar:hover {
  704. width: 180px;
  705. }
  706. .main-row.autohide-leftnav > .sidebar:hover ul {
  707. opacity: 1;
  708. }
  709. .stag-popup .navbar.navbar-dark + [role="main"] {
  710. padding-top: 0;
  711. }
  712. .font-smaller {
  713. font-size: 11px !important;
  714. }
  715. .text-ellipsis {
  716. white-space: nowrap;
  717. overflow: hidden;
  718. text-overflow: ellipsis;
  719. }
  720. .outline-0 {
  721. outline: none !important;
  722. }
  723. .note-widget-item:hover {
  724. background: #eee;
  725. }
  726. .note-widget-title {
  727. background: #ccc !important;
  728. color: #333 !important;
  729. font-size: 12px !important;
  730. font-weight: bold !important;
  731. }
  732. .navbar-collapse.show {
  733. background: #1c4587;
  734. z-index: 999;
  735. padding: 0.5rem 1rem;
  736. margin: 0 -1rem;
  737. }
  738. .navbar-dark .nav-item .nav-link {
  739. font-size: 12px;
  740. white-space: nowrap;
  741. overflow: hidden;
  742. text-overflow: ellipsis;
  743. }
  744. #patient-search {
  745. min-width: 90px !important;
  746. max-width: 140px !important;
  747. }
  748. .suggestions-outer {
  749. top: calc(100% + 2px);
  750. background: #fff;
  751. border-radius: 3px;
  752. border: 1px solid #ccc;
  753. z-index: 9999;
  754. }
  755. .suggestions-outer {
  756. top: calc(100% + 1px);
  757. background: #fff;
  758. border-radius: 3px;
  759. border: 1px solid #ccc;
  760. z-index: 9999;
  761. max-height: 220px;
  762. overflow-y: overlay;
  763. min-width: 100%;
  764. right: 0;
  765. }
  766. [stag-suggest-bottom-left]~.stag-suggestions-container .suggestions-outer {
  767. bottom: 30px;
  768. left: 0;
  769. top: auto;
  770. right: auto;
  771. }
  772. [stag-suggest-left]~.stag-suggestions-container .suggestions-outer {
  773. left: 0;
  774. right: auto;
  775. min-width: 100%;
  776. }
  777. [stag-suggest]:not(:focus)+.stag-suggestions-container {
  778. display: none !important
  779. }
  780. .suggestions-outer .suggest-item, .suggestions-outer .no-suggest-items {
  781. padding: 0.25rem 0.5rem;
  782. text-decoration: none;
  783. font-size: 12px;
  784. }
  785. .suggestions-outer .no-suggest-items {
  786. color: #888;
  787. }
  788. .suggestions-outer .suggest-item.active {
  789. background: #ccc;
  790. }
  791. .suggestions-outer .suggest-item:hover {
  792. background: aliceblue;
  793. }
  794. .pro-dashboard-inline-calendar>.datepicker.datepicker-inline,
  795. .pro-dashboard-inline-calendar table.table-condensed {
  796. width: 100% !important;
  797. }
  798. .pro-dashboard-inline-calendar {
  799. border: 1px solid #ddd;
  800. border-radius: 3px
  801. }
  802. .pro-dashboard-inline-calendar table.table-condensed th {
  803. padding: 0.5rem 0;
  804. border-radius: 0;
  805. }
  806. .pro-dashboard-inline-calendar table.table-condensed td {
  807. padding: 0.25rem 0;
  808. border-radius: 0;
  809. }
  810. .pro-dashboard-inline-calendar table.table-condensed td[has-events],
  811. .pro-dashboard-inline-calendar td.has-events:not(.ui-datepicker-today) a {
  812. background: #c5e4ff !important;
  813. font-weight: bold !important;
  814. color: #000 !important;
  815. }
  816. .caremonth-measurements-calendar table.table-condensed td[has-events],
  817. .caremonth-measurements-calendar td.has-events a {
  818. background: #c5e4ff !important;
  819. font-weight: bold !important;
  820. color: #000 !important;
  821. }
  822. .ui-state-active,
  823. .ui-widget-content .ui-state-active,
  824. .ui-widget-header .ui-state-active,
  825. a.ui-button:active,
  826. .ui-button:active,
  827. .ui-button.ui-state-active:hover {
  828. border: 1px solid #4396da !important;
  829. }
  830. .pro-dashboard-inline-calendar td.has-events.ui-datepicker-today a {
  831. font-weight: bold !important;
  832. color: #0d59af !important;
  833. }
  834. .pro-dashboard-inline-calendar td a {
  835. text-align: center !important;
  836. }
  837. [v-cloak] {
  838. opacity: 0;
  839. }
  840. .patient-avatar {
  841. width: 50px;
  842. height: 50px;
  843. background: #eee;
  844. display: inline-flex;
  845. align-items: center;
  846. justify-content: center;
  847. border-radius: 100%;
  848. border: 1px solid #ccc;
  849. }
  850. .large {
  851. font-size: 16px !important;
  852. }
  853. /* note templates */
  854. .note-template-container {
  855. position: absolute;
  856. z-index: 10002;
  857. background: #fff;
  858. border: 1px solid #ddd;
  859. border-radius: 3px;
  860. display: none;
  861. min-width: 200px;
  862. }
  863. .note-template-container .note-template-item {
  864. position: relative;
  865. height: 25px;
  866. }
  867. .note-template-container .note-template-item .note-template-text {
  868. border-bottom: 1px solid #eee;
  869. }
  870. .note-template-container .note-template-item .label {
  871. padding: 3px 6px;
  872. padding-right: 25px;
  873. white-space: nowrap;
  874. display: inline-flex;
  875. align-items: center;
  876. min-width: 120px;
  877. cursor: pointer;
  878. flex-grow: 1;
  879. }
  880. .note-template-container .note-template-item:hover,
  881. .note-template-container .note-template-item.selected {
  882. background: aliceblue;
  883. }
  884. .note-template-container .note-template-item .label>input[type="checkbox"] {
  885. pointer-events: none;
  886. margin: 0;
  887. margin-right: 4px;
  888. height: 11px;
  889. }
  890. .note-template-container .note-template-item:last-child label {
  891. border: 0;
  892. }
  893. .note-template-container .note-template-item .note-template-children {
  894. position: absolute;
  895. left: 100%;
  896. top: 0;
  897. background: #fff;
  898. border: 1px solid #ddd;
  899. border-radius: 3px;
  900. display: none;
  901. }
  902. /*.note-template-container .note-template-item.selected:hover>.note-template-children {
  903. display: block;
  904. }*/
  905. .note-template-container .note-template-item .has-children {
  906. position: absolute;
  907. right: 6px;
  908. top: 0;
  909. height: 25px;
  910. line-height: 25px;
  911. color: #bbb;
  912. }
  913. .note-template-container .note-template-item:hover>.has-children {
  914. color: #444;
  915. }
  916. .note-templates-underlay {
  917. position: fixed;
  918. top: 0;
  919. left: 0;
  920. height: 100%;
  921. width: 100%;
  922. background: rgba(0,0,0,0.13);
  923. display: none;
  924. z-index: 10001;
  925. }
  926. .note-template-container textarea {
  927. height: 100px;
  928. border-radius: 0;
  929. border-color: #ccc;
  930. padding: 5px 10px;
  931. display: block;
  932. }
  933. .note-template-buttons {
  934. position: absolute;
  935. bottom: 100%;
  936. right: 0;
  937. height: 27px;
  938. padding: 0 3px;
  939. background: #fff;
  940. }
  941. .note-template-buttons button {
  942. font-size: 10px;
  943. padding: 2px 5px;
  944. margin-left: 5px;
  945. border-radius: 2px;
  946. }
  947. .note-template-buttons button:first-child {
  948. margin-left: 0;
  949. }
  950. .note-template-output {
  951. position: absolute;
  952. bottom: calc(100% + 26px);
  953. left: 0;
  954. padding: 3px 6px;
  955. background: #f7f7f7;
  956. min-width: 100%;
  957. border-radius: 3px;
  958. }
  959. .note-template-output-text {
  960. }
  961. .note-template-output .note-template-output-line {
  962. font-size: 11px;
  963. width: max-content;
  964. max-width: 500px;
  965. margin: 0;
  966. }
  967. .note-template-set-chooser {
  968. height: 22px;
  969. line-height: 22px;
  970. padding: 0 0.22rem;
  971. font-size: 12px !important;
  972. }
  973. .ql-editor .note-template-output-line {
  974. white-space: normal;
  975. }
  976. [prefix="(+)"] a.plus-trigger {
  977. color: #23a923 !important;
  978. }
  979. [prefix="(-)"] a.minus-trigger {
  980. color: #a91e1e !important;
  981. }
  982. .rspace {
  983. width: 16px;
  984. display: inline-flex;
  985. text-align: center;
  986. justify-content: center;
  987. }
  988. .embed-mask {
  989. position: fixed;
  990. left: 0;
  991. top: 0;
  992. height: 100%;
  993. width: 100%;
  994. background: rgba(0, 0, 0, 0.1);
  995. z-index: 98;
  996. }
  997. .embed-section {
  998. background: #fff;
  999. z-index: 99;
  1000. padding: 0;
  1001. border: 1px solid #ccc;
  1002. }
  1003. .mask-text-addition {
  1004. position: fixed;
  1005. bottom: calc(50% - 60px);
  1006. left: 0;
  1007. width: 100%;
  1008. text-align: center;
  1009. font-size: 12px;
  1010. z-index: 9999999;
  1011. color: #000;
  1012. }
  1013. .note-summary p {
  1014. margin-bottom: 0.25rem;
  1015. }
  1016. .aligned-icon {
  1017. display: inline-block;
  1018. width: 18px;
  1019. text-align: center;
  1020. }
  1021. body #searchCount {
  1022. display: none !important;
  1023. }
  1024. body .break-spaces {
  1025. white-space: pre-wrap;
  1026. }
  1027. .stag-tooltip .stag-tooltip-content {
  1028. display: none;
  1029. min-width: 200px;
  1030. }
  1031. .stag-tooltip:hover .stag-tooltip-content {
  1032. display: block;
  1033. right: -10px;
  1034. top: 100%;
  1035. z-index: 1;
  1036. }
  1037. .gem-nodes .node {
  1038. border: 1px solid #ddd;
  1039. padding: 0.75rem;
  1040. border-radius: 5px;
  1041. }
  1042. .gem-nodes>.node {
  1043. border: 0 !important;
  1044. padding-left: 0;
  1045. padding-right: 0;
  1046. }
  1047. .gem-nodes>.node:first-child {
  1048. margin-top: 0 !important;
  1049. }
  1050. .gem-nodes>.node>label {
  1051. font-weight: bold;
  1052. font-size: 14px;
  1053. margin: 0;
  1054. }
  1055. .gem-nodes .subs .node:last-child {
  1056. margin-bottom: 0 !important;
  1057. }
  1058. .gem-nodes>.node>.subs {
  1059. padding-left: 0 !important;
  1060. }
  1061. .gem-nodes>.node>.subs>.node {
  1062. background: #f2f2f2;
  1063. }
  1064. .gem-nodes>.node>.subs>.node>.subs>.node {
  1065. background: #fff;
  1066. }
  1067. .gem-nodes .node span[field] {
  1068. font-weight: bold;
  1069. }
  1070. body .node input[type="number"] {
  1071. max-width: 70px;
  1072. min-width: unset !important;
  1073. }
  1074. .section-edit-mask {
  1075. top: 0;
  1076. left: 0;
  1077. width: 100%;
  1078. height: 100%;
  1079. }
  1080. .signed-note {
  1081. position: relative;
  1082. pointer-events: none !important;
  1083. }
  1084. .signed-note::after {
  1085. content: '';
  1086. position: absolute;
  1087. z-index: 2;
  1088. cursor: not-allowed;
  1089. left: 0;
  1090. top: 0;
  1091. width: 100%;
  1092. height: 100%;
  1093. background: rgba(0,0,0,0.01);
  1094. }
  1095. .slot-picker {
  1096. padding: 4px;
  1097. padding-right: 0;
  1098. padding-bottom: 0;
  1099. }
  1100. .slot-picker.disabled {
  1101. opacity: 0.5;
  1102. pointer-events: none;
  1103. cursor: not-allowed;
  1104. }
  1105. .slot-picker td {
  1106. text-align: center;
  1107. border: 1px solid #ddd !important;
  1108. padding: 2px 5px;
  1109. cursor: pointer;
  1110. }
  1111. .slot-picker th {
  1112. border: 0 !important;
  1113. }
  1114. .slot-picker td:hover {
  1115. background: aliceblue;
  1116. }
  1117. .slot-picker td.blocked {
  1118. background: #ccc !important;
  1119. cursor: not-allowed;
  1120. }
  1121. .slot-picker td.selected {
  1122. background-image: linear-gradient(to bottom,#08c,#04c);
  1123. background-repeat: repeat-x;
  1124. color: #fff;
  1125. }
  1126. .pro-appointment-calendar.disabled {
  1127. opacity: 0.5;
  1128. pointer-events: none;
  1129. cursor: not-allowed;
  1130. }
  1131. .pro-appointment-calendar .datepicker-inline {
  1132. width: 195px;
  1133. padding-left: 0;
  1134. }
  1135. .pro-appointment-calendar .datepicker td {
  1136. height: 25px;
  1137. }
  1138. .datepicker td, .datepicker th {
  1139. border: none !important;
  1140. }
  1141. .appt-form-col {
  1142. width: 220px;
  1143. }
  1144. .appt-calendar-col {
  1145. flex-grow: 1;
  1146. }
  1147. .appt-form td.fc-day.stag-selected {
  1148. outline: 2px solid #007bff;
  1149. background: #e5f2fd;
  1150. }
  1151. .appt-form .stag-current-appt {
  1152. background: #89159cc7;
  1153. color: #fff;
  1154. border-color: #89159cc7;
  1155. }
  1156. .appt-form .stag-current-appt .fc-daygrid-event-dot {
  1157. border-color: #fff;
  1158. }
  1159. .appt-form .fc .fc-toolbar.fc-header-toolbar {
  1160. margin-bottom: 0.5rem;
  1161. /*align-items: start;*/
  1162. }
  1163. .stag-calendar-header-extra {
  1164. background: #cde8ff;
  1165. padding: 3px 10px;
  1166. margin-top: 7px;
  1167. border-top-left-radius: 6px;
  1168. border-top-right-radius: 6px;
  1169. border: 1px solid #44a5f982;
  1170. border-bottom: 0;
  1171. }
  1172. .stag-calendar-header-extra * {
  1173. font-size: 14px !important;
  1174. }
  1175. /* call panel */
  1176. #proCallComponent {
  1177. padding-bottom: 150px;
  1178. }
  1179. .patient-queue {
  1180. display: flex;
  1181. flex-direction: column;
  1182. position: fixed;
  1183. left: 0;
  1184. width: 100%;
  1185. bottom: 0;
  1186. z-index: 4;
  1187. }
  1188. .queue-item {
  1189. width: 100px;
  1190. padding: 0.5rem;
  1191. padding-bottom: 0.25rem;
  1192. text-align: center;
  1193. cursor: pointer;
  1194. }
  1195. .queue-item:hover {
  1196. background: aliceblue;
  1197. }
  1198. .current-work-indicator {
  1199. /*
  1200. position: fixed;
  1201. top: 55px;
  1202. right: 0;
  1203. z-index: 9999;
  1204. */
  1205. background: #305ba0;
  1206. color: #fff;
  1207. font-size: 12px;
  1208. padding: 3px 6px;
  1209. border-radius: 3px;
  1210. /* border-bottom-left-radius: 5px;*/
  1211. white-space: nowrap;
  1212. text-overflow: ellipsis;
  1213. max-width: 100px;
  1214. overflow: hidden;
  1215. }
  1216. /* stag popups */
  1217. .stag-popup {
  1218. position: fixed;
  1219. left: 0;
  1220. top: 55px;
  1221. width: 100%;
  1222. height: calc(100% - 55px);
  1223. overflow-x: auto;
  1224. z-index: 97;
  1225. justify-content: center;
  1226. align-items: center;
  1227. display: none;
  1228. background: center center no-repeat scroll rgba(0, 0, 0, 0.1);
  1229. padding: 2rem 0;
  1230. }
  1231. .stag-popup.show {
  1232. display: block;
  1233. }
  1234. .stag-popup>form, .stag-popup>.stag-popup-content {
  1235. width: 80%;
  1236. background: #fff;
  1237. border: 1px solid #aaa;
  1238. border-radius: 5px;
  1239. overflow: hidden;
  1240. box-shadow: 0 0 5px #ddd;
  1241. margin: 0 auto;
  1242. padding: 0.75rem;
  1243. min-height: 220px;
  1244. }
  1245. .stag-popup.overflow-visible>.stag-popup-content {
  1246. overflow: visible;
  1247. }
  1248. .stag-popup.min-height-unset>form {
  1249. min-height: unset !important;
  1250. }
  1251. .stag-popup.medium>form, .stag-popup.medium>.stag-popup-content {
  1252. width: calc(80vw - 4rem);
  1253. }
  1254. .stag-popup.medium-large>form, .stag-popup.medium-large>.stag-popup-content {
  1255. width: 90vw;
  1256. }
  1257. .stag-popup.wide>form, .stag-popup.wide>.stag-popup-content {
  1258. width: calc(100vw - 4rem);
  1259. }
  1260. .stag-popup.tall>form, .stag-popup.tall>.stag-popup-content {
  1261. min-height: 500px;
  1262. }
  1263. .stag-popup.narrow>form, .stag-popup.narrow>.stag-popup-content {
  1264. max-width: 500px;
  1265. }
  1266. .stag-popup.stag-popup-sm>form, .stag-popup.stag-popup-sm>.stag-popup-content {
  1267. max-width: 500px;
  1268. }
  1269. .stag-popup.stag-popup-900>form, .stag-popup.stag-popup-900>.stag-popup-content {
  1270. max-width: 900px;
  1271. }
  1272. .stag-popup.stag-popup-md>form, .stag-popup.stag-popup-md>.stag-popup-content {
  1273. max-width: 632pt;
  1274. }
  1275. .stag-popup.stag-popup-right>form, .stag-popup.stag-popup-right>.stag-popup-content {
  1276. margin-right: 1.5rem;
  1277. margin-left: auto;
  1278. }
  1279. .stag-popup .popup-content-container {
  1280. margin-top: 1rem;
  1281. padding-top: 1rem;
  1282. border-top: 1px solid #e1e1e1;
  1283. }
  1284. /* slide-in stag-popups */
  1285. .stag-popup.stag-slide {
  1286. display: block;
  1287. background: center center no-repeat scroll rgba(0, 0, 0, 0);
  1288. pointer-events: none;
  1289. overflow: hidden;
  1290. }
  1291. .stag-popup.stag-slide.show {
  1292. pointer-events: all;
  1293. }
  1294. .stag-popup.stag-slide>form {
  1295. position: absolute;
  1296. top: 0;
  1297. height: 100% !important;
  1298. overflow-y: auto;
  1299. border-radius: 0;
  1300. border-top: 0;
  1301. border-bottom: 0;
  1302. border-right: 0;
  1303. transition: right 0.3s ease;
  1304. width: 0;
  1305. }
  1306. .stag-popup.stag-slide.stag-popup-900>form {
  1307. width: 900px;
  1308. right: -900px;
  1309. }
  1310. .stag-popup.stag-slide.stag-popup-sm>form {
  1311. width: 500px;
  1312. right: -500px;
  1313. }
  1314. .stag-popup.stag-slide.stag-popup-md>form {
  1315. width: 632pt;
  1316. right: -632pt;
  1317. }
  1318. .stag-popup.stag-slide.show>form {
  1319. right: 0;
  1320. }
  1321. /* asana style ticket management */
  1322. .pro-initials {
  1323. border-radius: 100%;
  1324. height: 24px;
  1325. width: 24px;
  1326. min-height: 24px;
  1327. min-width: 24px;
  1328. max-height: 24px;
  1329. max-width: 24px;
  1330. text-align: center;
  1331. font-weight: 400;
  1332. display: inline-flex;
  1333. align-items: center;
  1334. justify-content: center;
  1335. background-color: #6457f9;
  1336. color: #fff;
  1337. font-size: 10px !important;
  1338. opacity: 0.85;
  1339. }
  1340. .pro-initials.pro-initials-sm {
  1341. height: 18px;
  1342. width: 18px;
  1343. min-height: 18px;
  1344. min-width: 18px;
  1345. max-height: 18px;
  1346. max-width: 18px;
  1347. font-size: 9px !important;
  1348. }
  1349. .pro-initials:hover {
  1350. opacity: 1;
  1351. }
  1352. .ticket-section {
  1353. }
  1354. .ticket-section.ticket-section-collapsed {
  1355. max-height: 0;
  1356. overflow: hidden;
  1357. }
  1358. .tickets-table tbody tr {
  1359. transition: background-color 0.2s ease;
  1360. }
  1361. .tickets-table tbody tr:hover {
  1362. background-color: rgba(0,0,0,.04);
  1363. }
  1364. .tickets-table tbody tr.current {
  1365. background-color: aliceblue;
  1366. }
  1367. .stag-slide input.form-control:not(:focus),
  1368. .stag-slide select.form-control:not(:focus) {
  1369. border-color: transparent;
  1370. background-color: transparent;
  1371. cursor: pointer;
  1372. font-weight: bold;
  1373. padding-left: 0;
  1374. }
  1375. .stag-slide select.form-control:not(:focus) {
  1376. appearance: none;
  1377. }
  1378. .stag-slide input.form-control {
  1379. box-shadow: none !important;
  1380. }
  1381. .stag-slide input.form-control:not(:focus):not([readonly]):hover {
  1382. text-decoration: underline;
  1383. }
  1384. .stag-slide input.form-control[readonly] {
  1385. opacity: 0.75;
  1386. }
  1387. .stag-slide ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  1388. color: #bbb !important;
  1389. font-weight: normal !important;
  1390. opacity: 1; /* Firefox */
  1391. }
  1392. .stag-slide :-ms-input-placeholder { /* Internet Explorer 10-11 */
  1393. color: #bbb !important;
  1394. font-weight: normal !important;
  1395. }
  1396. .stag-slide ::-ms-input-placeholder { /* Microsoft Edge */
  1397. color: #bbb !important;
  1398. font-weight: normal !important;
  1399. }
  1400. .stag-slide .text-success {
  1401. color: #00bf9c !important;
  1402. }
  1403. .stag-slide .btn-success,
  1404. .stag-slide .btn-success:hover {
  1405. background: #00bf9c;
  1406. border-color: #00bf9c;
  1407. }
  1408. .stag-slide .comment-input-outer {
  1409. position: sticky;
  1410. bottom: 0;
  1411. }
  1412. .stag-slide .txt-comment {
  1413. padding-bottom: calc(23px + 1rem);
  1414. height: calc(23px + 1rem);
  1415. transition: height 0.3s ease;
  1416. overflow: hidden;
  1417. }
  1418. .stag-slide .txt-comment:focus {
  1419. height: 120px;
  1420. overflow: auto;
  1421. }
  1422. .stag-slide .txt-comment:focus~.btn-save-comment {
  1423. opacity: 1;
  1424. }
  1425. .stag-slide .btn-save-comment {
  1426. position: absolute;
  1427. bottom: 0.5rem;
  1428. right: 0.5rem;
  1429. height: 28px;
  1430. line-height: 28px;
  1431. padding: 0 1rem;
  1432. transition: opacity 0.3s ease;
  1433. opacity: 0.5;
  1434. }
  1435. .stag-slide select.form-control:invalid,
  1436. .stag-slide input[type="text"].form-control:invalid {
  1437. background-color: #f8ecec;
  1438. padding-left: 0.5rem;
  1439. }
  1440. .stag-slide select:focus:invalid,
  1441. .stag-slide input[type="text"]:focus:invalid {
  1442. background: #fff;
  1443. border-color: #e24848;
  1444. box-shadow: 0 0 2px #c10707 !important;
  1445. }
  1446. .erx-line-item:nth-child(2n+1) {
  1447. background: #f0f8ffbb
  1448. }
  1449. .no-scroll {
  1450. overflow: hidden;
  1451. }
  1452. .client-rs-contents p {
  1453. margin-bottom: 0.25rem;
  1454. }
  1455. .pro-option {
  1456. position: relative;
  1457. display: block;
  1458. padding-left: 30px;
  1459. }
  1460. .pro-option.pro-option-selected {
  1461. display: inline-block;
  1462. padding-left: 25px;
  1463. }
  1464. .pro-option .pro-option-initials {
  1465. position: absolute;
  1466. left: 5px;
  1467. top: 2px;
  1468. font-size: 10px;
  1469. border-radius: 100%;
  1470. height: 20px;
  1471. width: 20px;
  1472. line-height: 20px;
  1473. text-align: center;
  1474. font-weight: 400;
  1475. }
  1476. .pro-option.pro-option-selected .pro-option-initials {
  1477. left: 3px;
  1478. top: 0;
  1479. font-size: 10px;
  1480. border-radius: 100%;
  1481. height: 18px;
  1482. width: 18px;
  1483. line-height: 19px;
  1484. text-align: center;
  1485. font-weight: 400;
  1486. }
  1487. span.pro-selection {
  1488. padding: 0 5px;
  1489. height: 18px;
  1490. display: inline-block;
  1491. border-top-right-radius: 3px;
  1492. border-bottom-right-radius: 3px;
  1493. }
  1494. .select2-results__option--selectable {
  1495. font-size: 13px;
  1496. }
  1497. #calendarApp .select2-selection__choice__display,
  1498. #proCalendarApp .select2-selection__choice__display {
  1499. padding: 0 !important;
  1500. overflow: hidden !important;
  1501. }
  1502. span.select2-container.select2-container--default.select2-container--open {
  1503. z-index: 999999;
  1504. }
  1505. .fc .fc-highlight {
  1506. background: rgba(188, 232, 241, 0.6) !important;
  1507. }
  1508. .fc .fc-day-past {
  1509. background: #e7e7e7 !important;
  1510. }
  1511. .fc .add-overlay {
  1512. padding: 1px 4px;
  1513. display: inline-block;
  1514. font-weight: bold;
  1515. }
  1516. .fc .add-overlay.add-overlay-day-grid {
  1517. padding: 4px;
  1518. }
  1519. .stag-popup .stag-popup-title {
  1520. border-bottom: 1px solid #eee;
  1521. padding-bottom: 0.75rem;
  1522. margin-bottom: 1rem;
  1523. display: flex;
  1524. align-items: center;
  1525. }
  1526. .stag-popup .stag-popup-title>span {
  1527. font-size: 17px;
  1528. display: inline-flex;
  1529. align-items: center;
  1530. }
  1531. .stag-popup .stag-popup-title>span>img {
  1532. max-height: 26px;
  1533. margin-right: 8px;
  1534. }
  1535. .fc .other-client {
  1536. box-shadow: 1px 1px 2px deeppink !important;
  1537. opacity: 0.5;
  1538. }
  1539. .fc .other-client:hover {
  1540. opacity: 0.8;
  1541. }
  1542. .fc .availability {
  1543. box-shadow: 0 0 3px green !important;
  1544. }
  1545. .fc .inactive-appointment {
  1546. opacity: 0.6;
  1547. box-shadow: 0 0 3px grey !important;
  1548. }
  1549. .fc .fc-button-primary:not(:disabled):active,
  1550. .fc .fc-button-primary:not(:disabled).fc-button-active {
  1551. border-color: #56a767 !important;
  1552. background-color: #56a767 !important;
  1553. }
  1554. .w-150 {
  1555. width: 150px !important;
  1556. min-width: 150px !important;
  1557. }
  1558. .w-180 {
  1559. width: 180px !important;
  1560. min-width: 180px !important;
  1561. }
  1562. .guest-view button.add-shortcut {
  1563. display: none;
  1564. }
  1565. .guest-view .note-section,
  1566. .guest-view .note-section:hover {
  1567. background: #fff !important;
  1568. }
  1569. .form-check-label {
  1570. display: flex;
  1571. align-items: center;
  1572. }
  1573. #stagPdfViewer>form {
  1574. padding: 0;
  1575. background: #eee;
  1576. }
  1577. #stagPdfViewer>form .stag-popup-title {
  1578. background: #fff;
  1579. padding: 1rem;
  1580. }
  1581. canvas.pdf-viewer-page {
  1582. max-width: 100%;
  1583. margin: 1rem auto;
  1584. display: block;
  1585. box-shadow: 0 0 2px #aaa;
  1586. }
  1587. .hidden-link-input {
  1588. /*opacity: 0;
  1589. width: 0 !important;
  1590. border: 0 !important;
  1591. padding: 0 !important;*/
  1592. position: absolute;
  1593. left: -9999px;
  1594. }
  1595. table.table-edit-sheet tbody tr td {
  1596. padding: 0;
  1597. background: #f7f7f7;
  1598. }
  1599. table.table-edit-sheet tbody tr td>input,
  1600. table.table-edit-sheet tbody tr td>select {
  1601. box-shadow: none !important;
  1602. border-radius: 0 !important;
  1603. border: 0;
  1604. background: #fefefe;
  1605. width: 100% !important;
  1606. min-width: unset !important;
  1607. border-bottom: 1px solid #dee2e6;
  1608. }
  1609. table.table-edit-sheet tbody tr td input[type="text"],
  1610. table.table-edit-sheet tbody tr td select,
  1611. table.table-edit-sheet tbody tr td textarea {
  1612. box-shadow: none !important;
  1613. border-radius: 0 !important;
  1614. border: 0;
  1615. background: #fefefe;
  1616. min-width: unset !important;
  1617. border-bottom: 1px solid #dee2e6;
  1618. }
  1619. table.table-edit-sheet tbody tr td>input.w-auto-input {
  1620. width: auto !important;
  1621. }
  1622. table.table-edit-sheet tbody tr td>input:focus,
  1623. table.table-edit-sheet tbody tr td>select:focus,
  1624. table.table-edit-sheet tbody tr td input.edit:focus {
  1625. /*outline: 3px solid #4b88a633;*/
  1626. /*border: 1px inset #4b88a633 !important;*/
  1627. background: aliceblue !important;
  1628. }
  1629. table.table-edit-sheet tbody tr [contenteditable] {
  1630. background: #fff;
  1631. }
  1632. table.table-edit-sheet .ql-toolbar {
  1633. border-top: 0 !important;
  1634. }
  1635. table.table-edit-sheet .ql-container {
  1636. border-bottom: 0 !important;
  1637. }
  1638. table.table-edit-sheet .ql-editor[contenteditable] {
  1639. min-height: 90px;
  1640. }
  1641. .w-30 {
  1642. width: 30%;
  1643. }
  1644. .w-33 {
  1645. width: 33%;
  1646. }
  1647. .w-35 {
  1648. width: 35%;
  1649. }
  1650. .w-40 {
  1651. width: 40%;
  1652. }
  1653. .client-single-dashboard .hide-if-dashboard {
  1654. display: none;
  1655. }
  1656. .notes-list .hide-if-note,
  1657. .note-section .hide-if-note {
  1658. display: none;
  1659. }
  1660. .data-option-list {
  1661. position: absolute;
  1662. background: #fff;
  1663. border: 2px solid #ddd;
  1664. margin-top: -1px;
  1665. width: 100%;
  1666. z-index: 1;
  1667. display: none;
  1668. max-width: 250px;
  1669. box-shadow: 0 0 3px #ddd;
  1670. border-top: 0;
  1671. max-height: 200px;
  1672. overflow-y: auto;
  1673. }
  1674. .data-option-list>div {
  1675. cursor: pointer;
  1676. padding: 0.2rem 0.5rem;
  1677. border-bottom: 1px solid #ddd;
  1678. color: #222;
  1679. font-size: 90%;
  1680. }
  1681. .data-option-list>div[desc]::after {
  1682. content: attr(desc);
  1683. opacity: 0.75;
  1684. padding-left: 0.5rem;
  1685. font-size: 90%;
  1686. font-family: Verdana, sans-serif;
  1687. }
  1688. .data-option-list>div:last-child {
  1689. border-bottom: 0;
  1690. }
  1691. .data-option-list>div:hover {
  1692. background: aliceblue;
  1693. }
  1694. .measurement-item:not(:last-child) {
  1695. border-bottom: 1px solid #e7e7e7;
  1696. }
  1697. .assessment-detail-template>span {
  1698. margin: 0 !important;
  1699. padding: 0 !important;
  1700. border: 0 !important;
  1701. margin-left: -0.5rem !important;
  1702. position: static !important;
  1703. }
  1704. .assessment-detail-template>span>a {
  1705. display: none;
  1706. }
  1707. button.add-shortcut,
  1708. button.note-templates-trigger-assessment {
  1709. outline: none !important;
  1710. box-shadow: none !important;
  1711. }
  1712. .appt-calendar-col.click-through .fc-timegrid-event-harness {
  1713. pointer-events: none !important;
  1714. }
  1715. .claim-line:last-child td {
  1716. padding-bottom: 1.3rem;
  1717. }
  1718. .in-table-markup p:last-of-type {
  1719. margin-bottom: 0;
  1720. }
  1721. .suggestions-outer.pharmacy-suggestions {
  1722. left: 1rem;
  1723. width: calc(100% - 2rem);
  1724. }
  1725. .flowsheets-table td {
  1726. padding: 0 10px;
  1727. height: 38px;
  1728. max-height: 38px;
  1729. min-height: 38px;
  1730. vertical-align: middle !important;
  1731. }
  1732. .flowsheets-table .expand {
  1733. display: none;
  1734. }
  1735. .flowsheets-table .collapse {
  1736. display: block;
  1737. }
  1738. .flowsheets-table .collapsed .expand {
  1739. display: block;
  1740. }
  1741. .flowsheets-table .collapsed .collapse {
  1742. display: none;
  1743. }
  1744. .flowsheets-table tr {
  1745. }
  1746. .flowsheets-table .collapsed tr:not(:first-child) {
  1747. display: none;
  1748. }
  1749. .col-2-button {
  1750. width: 88px;
  1751. text-align: left;
  1752. }
  1753. /* vitals graph */
  1754. .stag-chart {
  1755. min-height: 300px;
  1756. }
  1757. .stag-chart .safe-region>rect {
  1758. fill: green;
  1759. }
  1760. .stag-chart .safe-region>text {
  1761. fill: #888;
  1762. transform: translateY(-18px);
  1763. }
  1764. .on-hover-text-reveal {
  1765. white-space: nowrap;
  1766. overflow: hidden;
  1767. text-overflow: ellipsis;
  1768. }
  1769. .on-hover-text-reveal:hover {
  1770. white-space: normal;
  1771. overflow: unset;
  1772. text-overflow: unset;
  1773. }
  1774. .on-hover-show {
  1775. position: relative;
  1776. }
  1777. .on-hover-show:hover .on-hover-content {
  1778. opacity: 1;
  1779. pointer-events: all;
  1780. }
  1781. .on-hover-show .on-hover-content {
  1782. position: absolute;
  1783. max-width: 300px;
  1784. right: 0;
  1785. top: 100%;
  1786. background: #fff;
  1787. opacity: 0;
  1788. padding: 0 0.75rem;
  1789. padding-bottom: 0.5rem;
  1790. box-shadow: 0 0 2px #999;
  1791. pointer-events: none;
  1792. transition: opacity 0.3s ease;
  1793. z-index: 2;
  1794. }
  1795. .on-hover-show.left .on-hover-content {
  1796. right: auto;
  1797. left: 0;
  1798. }
  1799. .collapsible-tbody.collapsed {
  1800. display: none;
  1801. }
  1802. #send-fax-pdf-preview, #transmit-pdf-preview {
  1803. max-height: 350px;
  1804. overflow: auto;
  1805. box-shadow: 0 0 2px #ccc;
  1806. }
  1807. canvas.pdf-viewer-page.pdf-preview-page {
  1808. margin: 0.5rem auto;
  1809. }
  1810. .back-to-admin-button {
  1811. background: transparent;
  1812. border: 0;
  1813. padding: 0;
  1814. color: rgb(13, 89, 175);
  1815. }
  1816. .back-to-admin-button:hover {
  1817. text-decoration: underline;
  1818. }
  1819. .bg-aliceblue {
  1820. background: aliceblue !important;
  1821. }
  1822. .bg-treeblue {
  1823. background: linear-gradient(to bottom, #beebff 0, #a8e4ff 100%);
  1824. }
  1825. .text-danger-dark {
  1826. color: #8b1621 !important;
  1827. }
  1828. .filter-head input[type="date"]::-webkit-calendar-picker-indicator {
  1829. display: none;
  1830. -webkit-appearance: none;
  1831. }
  1832. .filter-head input[type="number"]::-webkit-inner-spin-button {
  1833. display: none;
  1834. -webkit-appearance: none;
  1835. }
  1836. .filter-head input[type="date"] {
  1837. padding: 0;
  1838. min-width: 90px;
  1839. }
  1840. .filter-head input[type="number"],
  1841. .filter-head input[type="date"] {
  1842. min-width: 90px;
  1843. }
  1844. .filter-head select {
  1845. padding: 0 5px;
  1846. }
  1847. tr.sep td {
  1848. padding: 0;
  1849. background: #eee;
  1850. height: 6px;
  1851. }
  1852. #practice-shipments-ready-to-print ::marker {
  1853. color: #0009;
  1854. font-size: 90%;
  1855. }
  1856. .only-print {
  1857. display: none;
  1858. }
  1859. @media print {
  1860. .only-print {
  1861. display: block;
  1862. }
  1863. th.only-print, td.only-print {
  1864. display: table-cell;
  1865. }
  1866. }
  1867. .only-screen {
  1868. display: block;
  1869. }
  1870. th.only-screen, td.only-screen {
  1871. display: table-cell;
  1872. }
  1873. @media print {
  1874. .only-screen {
  1875. display: none !important;
  1876. }
  1877. .only-pick-list, .only-order-slip {
  1878. display: none;
  1879. }
  1880. .pick-list .only-pick-list, .order-slip .only-order-slip {
  1881. display: block;
  1882. }
  1883. }
  1884. .suggest-item.patient-suggest>img {
  1885. width: 10px;
  1886. height: 10px;
  1887. opacity: 0.75;
  1888. }
  1889. .suggest-item.patient-suggest>img.claimed {
  1890. filter: grayscale(100%);
  1891. opacity: 0.5;
  1892. }
  1893. .pdf-viewer-auto {
  1894. max-height: 600px;
  1895. overflow: auto;
  1896. }
  1897. .ticket-popup .stag-popup.stag-slide.show {
  1898. position: static;
  1899. min-width: 100% !important;
  1900. max-width: unset !important;
  1901. padding-bottom: 2rem;
  1902. }
  1903. .ticket-popup .stag-popup.stag-slide.show form {
  1904. min-width: 100% !important;
  1905. max-width: unset !important;
  1906. }
  1907. .ticket-popup .stag-popup.stag-slide>form {
  1908. position: absolute;
  1909. top: 0;
  1910. height: auto !important;
  1911. overflow: hidden;
  1912. border-radius: 5px;
  1913. transition: none;
  1914. border: 1px solid #aaa;
  1915. }
  1916. .ticket-popup .stag-popup.stag-slide .stag-popup-title.sticky-top {
  1917. position: static;
  1918. }
  1919. .ticket-popup.stag-popup.stag-popup-md>.container-fluid {
  1920. max-width: 632pt;
  1921. }
  1922. .ticket-popup.stag-popup.stag-popup-md>.container-fluid>.main-row>main>.card {
  1923. border: 0;
  1924. /*background: transparent;*/
  1925. }
  1926. .ticket-popup .hide-inside-ticket-popup {
  1927. display: none !important;
  1928. }
  1929. .ticket-popup .disable-inside-ticket-popup {
  1930. pointer-events: none !important;
  1931. opacity: 0.5;
  1932. }
  1933. .fill-percent-value {
  1934. width: 60px;
  1935. }
  1936. .fill-percent-content {
  1937. width: 100px;
  1938. }
  1939. .fill-bar {
  1940. height: 20px !important;
  1941. border: 1px solid #ddd;
  1942. }
  1943. .if-in-clinic {
  1944. display: none;
  1945. }
  1946. .stag-table-container {
  1947. max-height: calc(100vh - 230px - 1rem);
  1948. width: 100%;
  1949. overflow: auto !important;
  1950. }
  1951. .stag-table-container-lg>table{
  1952. min-width: 1450px;
  1953. }
  1954. .stag-table-container.stag-table-container-no-x-scroll {
  1955. overflow-x: hidden !important;
  1956. }
  1957. .stag-fc-container .fc-toolbar-title .tz-display {
  1958. font-size: inherit;
  1959. font-family: inherit;
  1960. }
  1961. .caremonth-measurements-calendar .fc-event.m-weight {
  1962. background: #38908f;
  1963. color: #fff;
  1964. padding-left: 5px;
  1965. margin-bottom: 2px;
  1966. }
  1967. .caremonth-measurements-calendar .fc-event.m-bp {
  1968. background: #5e96ae;
  1969. color: #fff;
  1970. padding-left: 5px;
  1971. margin-bottom: 2px;
  1972. }
  1973. .caremonth-measurements-calendar .fc-event.m-weight *,
  1974. .caremonth-measurements-calendar .fc-event.m-bp *{
  1975. font-size: 10px !important;
  1976. }
  1977. .caremonth-measurements-calendar .fc-daygrid-event-dot {
  1978. display: none;
  1979. }
  1980. .pro-dashboard-inline-calendar>.ui-datepicker-inline {
  1981. width: 100%;
  1982. border: 0 !important;
  1983. }
  1984. .caremonth-measurements-calendar>.ui-datepicker-inline {
  1985. width: 100%;
  1986. }
  1987. .caremonth-measurements-calendar .ui-datepicker-prev,
  1988. .caremonth-measurements-calendar .ui-datepicker-next {
  1989. display: none;
  1990. }
  1991. #simpleSMSReminderComponent input[type="time"] {
  1992. max-width: 120px;
  1993. min-width: unset !important;
  1994. margin-top: 5px;
  1995. }
  1996. form.non-interactive .form-content {
  1997. opacity: 0.5;
  1998. cursor: not-allowed;
  1999. }
  2000. form.non-interactive .form-content * {
  2001. pointer-events: none;
  2002. }
  2003. #eventPros {
  2004. max-height: 28px;
  2005. opacity: 0;
  2006. }
  2007. .training-event {
  2008. position: relative;
  2009. background: #f0feff;
  2010. border-color: #32a2b89e !important;
  2011. }
  2012. .training-event::after {
  2013. position: absolute;
  2014. content: 'Training';
  2015. font-size: 10px;
  2016. font-weight: normal;
  2017. color: #17a2b8;
  2018. left: 1px;
  2019. bottom: -13px;
  2020. transform-origin: left top;
  2021. transform: rotate(
  2022. -90deg
  2023. );
  2024. width: 90px;
  2025. text-align: center;
  2026. letter-spacing: 0.75px;
  2027. }
  2028. .training-event .training-icon {
  2029. font-size: 22px;
  2030. color: #0d59af;
  2031. }
  2032. .training-event .patient-avatar {
  2033. border-color: #0d59af7d !important;
  2034. }
  2035. /* print-note */
  2036. @media print {
  2037. .stag-content #sidebarMenu {
  2038. display: none !important;
  2039. }
  2040. .stag-content .main-row {
  2041. padding-left: 0 !important;
  2042. }
  2043. .stag-content [moe] {
  2044. display: none !important;
  2045. }
  2046. .stag-content .screen-only {
  2047. display: none !important;
  2048. }
  2049. }
  2050. @media screen {
  2051. .stag-content .print-only {
  2052. display: none !important;
  2053. }
  2054. }
  2055. .child-sections>.note-section:not(.edit) {
  2056. position: relative;
  2057. }
  2058. .child-sections>.note-section:not(.edit):before {
  2059. content: '';
  2060. width: 9px;
  2061. border-top: 1px solid #ccc;
  2062. left: 0;
  2063. top: calc(1rem + 8px);
  2064. height: 1px;
  2065. position: absolute;
  2066. }
  2067. .child-sections>.note-section.edit {
  2068. margin-left: 1rem;
  2069. }
  2070. .rhs-absolute-fh-link {
  2071. position: absolute;
  2072. right: 0;
  2073. padding: 0 0.5rem;
  2074. background-color: inherit;
  2075. }
  2076. .mcp-theme-1 .click-to-copy {
  2077. background-color: #e4f7ed36;
  2078. cursor: copy;
  2079. border-bottom: 1px dotted #c0f7e86e;
  2080. }
  2081. .mcp-theme-1 .click-to-copy:hover {
  2082. border-bottom: 1px dotted #c0f7e8;
  2083. }
  2084. [data-type="removed"] {
  2085. color: gray;
  2086. font-style: italic;
  2087. }
  2088. [data-type="existing"] {
  2089. }
  2090. [data-type="updated"] {
  2091. font-weight: bold;
  2092. color: #d8a714;
  2093. }
  2094. [data-type="prescribed today"] {
  2095. font-weight: bold;
  2096. color: #2ea745
  2097. }
  2098. .process-notes-badge {
  2099. border: 1px solid #ddd;
  2100. cursor: pointer;
  2101. padding: 0.35rem 0.6rem;
  2102. border-radius: 4px;
  2103. text-decoration: none !important;
  2104. }
  2105. .process-notes-badge:hover {
  2106. color: #000 !important;
  2107. border-color: #349caf;
  2108. }
  2109. .process-notes-badge.active {
  2110. /*font-weight: bold;*/
  2111. color: #fff !important;
  2112. background: #349caf;
  2113. border-color: #349caf;
  2114. }
  2115. .process-notes-badge.success {
  2116. font-weight: bold;
  2117. color: #fff !important;
  2118. background: #31b574;
  2119. border-color: #31b574;
  2120. cursor: auto;
  2121. }
  2122. .process-notes-badge.error {
  2123. font-weight: bold;
  2124. color: #fff !important;
  2125. background: #a72132;
  2126. border-color: #a72132;
  2127. cursor: auto;
  2128. }
  2129. /*
  2130. .process-notes-badge {
  2131. position: relative;
  2132. }
  2133. .process-notes-badge:after {
  2134. position: absolute;
  2135. content: attr(data-index);
  2136. top: -14px;
  2137. left: 10px;
  2138. background: #fff;
  2139. border: 1px solid;
  2140. width: 20px;
  2141. text-align: center;
  2142. border-radius: 100%;
  2143. }*/
  2144. .no-overflow-menu {
  2145. overflow-y: auto;
  2146. max-height: calc(100vh - 44px);
  2147. }
  2148. .zero-height-field {
  2149. height: 1px !important;
  2150. opacity: 0 !important;
  2151. pointer-events: none;
  2152. position: absolute;
  2153. }
  2154. table.dashboard-stats-table th {
  2155. padding: 0.5rem 0.75rem
  2156. }
  2157. .max-height-100px {
  2158. max-height: 100px;
  2159. }
  2160. .max-height-200px {
  2161. max-height: 200px;
  2162. }
  2163. .min-height-300px {
  2164. min-height: 300px;
  2165. }
  2166. .max-height-400px {
  2167. max-height: 400px;
  2168. }
  2169. .min-height-500px {
  2170. min-height: 500px;
  2171. }
  2172. .inline-html-container p {
  2173. margin-bottom: 0;
  2174. }
  2175. body.in-iframe>.navbar {
  2176. display: none !important;
  2177. }
  2178. body.in-iframe .stag-content {
  2179. padding-top: 0 !important;
  2180. }
  2181. body.in-iframe .main-row > .sidebar {
  2182. top: 0;
  2183. height: 100%;
  2184. }
  2185. .hide-outside-popup {
  2186. display: none !important;
  2187. }
  2188. .stag-popup .hide-outside-popup {
  2189. display: block !important;
  2190. }
  2191. .stag-popup .hide-inside-popup {
  2192. display: none !important;
  2193. }
  2194. .strike-through {
  2195. text-decoration: line-through;
  2196. }
  2197. .visit-segment .strike-through {
  2198. color: #8b1621 !important;
  2199. text-decoration: none !important;
  2200. opacity: 0.9;
  2201. }
  2202. /* visit-moe */
  2203. [visit-moe] [url]:not([show]){
  2204. display: none;
  2205. }
  2206. [visit-moe] {
  2207. display: inline-block;
  2208. }
  2209. [visit-moe][relative] {
  2210. position: relative;
  2211. }
  2212. [visit-moe] [url]:not([show]) {
  2213. z-index: 99999;
  2214. position: absolute;
  2215. background-color: white;
  2216. padding: 10px;
  2217. border: 1px solid gray;
  2218. }
  2219. [visit-moe][fixed-center] [url]:not([show]) {
  2220. position: fixed !important;
  2221. top: 200px !important;
  2222. left: calc(50% - 360px) !important;
  2223. width: 720px;
  2224. }
  2225. [visit-moe] [url][right] {
  2226. right: 0;
  2227. min-width: 200px;
  2228. }
  2229. [visit-moe] [url][left] {
  2230. left: 0;
  2231. }
  2232. [visit-moe][large] form, [visit-moe][large] [url] {
  2233. width: 450px;
  2234. }
  2235. [visit-moe][larger] form, [visit-moe][large] [url] {
  2236. width: 600px;
  2237. }
  2238. [visit-moe][largest] form, [visit-moe][largest] [url] {
  2239. width: 750px;
  2240. }
  2241. [visit-moe][bottom] form {
  2242. bottom: 100%;
  2243. }
  2244. .note-container {
  2245. display: flex;
  2246. align-items: start;
  2247. }
  2248. .note-container .note-lhs-tree {
  2249. min-width: 220px;
  2250. max-width: 220px;
  2251. align-self: stretch;
  2252. border-right: 1px solid #ddd;
  2253. padding-top: 0.85rem;
  2254. height: 300px;
  2255. overflow: hidden;
  2256. max-height: calc(100vh - 55px);
  2257. background-color: #fff;
  2258. }
  2259. .note-container .note-lhs-tree:hover {
  2260. overflow: overlay;
  2261. }
  2262. .note-container .note-lhs-tree.fixed, .note-container .note-lhs-tree.fixed-left {
  2263. position: fixed;
  2264. top: 55px;
  2265. max-height: calc(100vh - 55px) !important;
  2266. height: calc(100vh - 55px) !important;
  2267. z-index: 1;
  2268. }
  2269. .note-container .note-lhs-tree.fixed ~ .note-rhs-content {
  2270. margin-left: 220px;
  2271. margin-right: 220px;
  2272. }
  2273. .note-container .note-lhs-tree.fixed-left ~ .note-rhs-content {
  2274. margin-left: 220px;
  2275. }
  2276. .note-container .note-rhs-sidebar.fixed ~ .note-rhs-content {
  2277. margin-right: 220px;
  2278. }
  2279. .note-container.rhs-sidebar-fixed .note-rhs-content {
  2280. margin-right: 220px;
  2281. }
  2282. .note-container .note-lhs-tree .note-tree-node.note-tree-heading>a {
  2283. }
  2284. .note-container .note-lhs-tree .note-tree-node>a {
  2285. display: block;
  2286. padding: 0.15rem 0;
  2287. padding-left: 0.75rem;
  2288. white-space: nowrap;
  2289. text-overflow: ellipsis;
  2290. overflow: hidden;
  2291. text-decoration: none;
  2292. color: #333;
  2293. }
  2294. .note-container .note-lhs-tree>.note-tree-node>a:not([data-non-segment-target]) {
  2295. color: #333;
  2296. }
  2297. .note-container .note-lhs-tree .note-tree-node>a:hover {
  2298. background-color: aliceblue;
  2299. color: #0d59af !important;
  2300. }
  2301. .note-container .note-lhs-tree .note-tree-node:hover>a,
  2302. .note-container .note-lhs-tree .note-tree-node.hovered>a {
  2303. background-color: aliceblue;
  2304. }
  2305. .note-container .note-lhs-tree .note-tree-node.active>a {
  2306. font-weight: bold !important;
  2307. color: #0d59af !important;
  2308. }
  2309. .note-container .note-lhs-tree .note-tree-children>.note-tree-node>a {
  2310. padding-left: 2rem;
  2311. }
  2312. .note-container .note-lhs-tree .note-tree-children .note-tree-children>.note-tree-node>a {
  2313. padding-left: 4rem;
  2314. }
  2315. .note-container .note-rhs-content {
  2316. flex-grow: 1;
  2317. }
  2318. .note-container .segments-list .note-content-node>a {
  2319. display: block;
  2320. padding: 0.15rem 0;
  2321. padding-left: 0.75rem;
  2322. white-space: nowrap;
  2323. text-overflow: ellipsis;
  2324. overflow: hidden;
  2325. text-decoration: none;
  2326. color: #333;
  2327. }
  2328. .note-container .segments-list>.note-content-node>a:not([data-non-segment-target]) {
  2329. font-weight: bold;
  2330. color: #333;
  2331. }
  2332. .note-container .segments-list .note-content-node>a:hover {
  2333. background-color: aliceblue;
  2334. color: #0d59af !important;
  2335. }
  2336. .note-container .segments-list .note-content-node:hover>a,
  2337. .note-container .segments-list .note-content-node.hovered>a {
  2338. background-color: aliceblue;
  2339. }
  2340. .note-container .segments-list .note-content-node.active>a {
  2341. font-weight: bold !important;
  2342. color: #0d59af !important;
  2343. }
  2344. .note-container .segments-list .note-content-children>.note-content-node>a {
  2345. padding-left: 2rem;
  2346. }
  2347. .note-container .segments-list .note-content-children .note-content-children>.note-tree-node>a {
  2348. padding-left: 4rem;
  2349. }
  2350. .note-container .note-rhs-sidebar {
  2351. min-width: 220px;
  2352. max-width: 220px;
  2353. align-self: stretch;
  2354. border-right: 1px solid #ddd;
  2355. border-left: 1px solid #ddd;
  2356. height: 300px;
  2357. overflow: hidden;
  2358. max-height: calc(100vh - 55px);
  2359. background-color: #fff;
  2360. }
  2361. .note-container .note-rhs-sidebar:hover {
  2362. overflow: overlay;
  2363. }
  2364. .note-container .note-rhs-sidebar.fixed {
  2365. position: fixed;
  2366. top: 55px;
  2367. right: 0;
  2368. max-height: calc(100vh - 55px) !important;
  2369. height: calc(100vh - 55px) !important;
  2370. z-index: 1;
  2371. }
  2372. .note-container .note-rhs-sidebar.fixed ~ .note-rhs-content {
  2373. margin-right: 220px;
  2374. }
  2375. .spot-highlight {
  2376. background: aliceblue !important;
  2377. }
  2378. .on-click-menu [menu] {
  2379. position: absolute;
  2380. display: none;
  2381. top: 100%;
  2382. right: 0;
  2383. z-index: 1;
  2384. box-shadow: 0 0 4px #ccc;
  2385. }
  2386. .on-click-menu [menu][right] {
  2387. right: auto;
  2388. left: 0;
  2389. }
  2390. .on-click-menu [menu][bottom] {
  2391. bottom: 100%;
  2392. top: auto;
  2393. left: 0;
  2394. right: auto;
  2395. }
  2396. .zero-height {
  2397. height: 0 !important;
  2398. padding: 0 !important;
  2399. border: 0 !important;
  2400. overflow: hidden;
  2401. }
  2402. /*.note-section[data-segment-template-name="medrisk_vigilence"] {
  2403. position: fixed;
  2404. right: 0;
  2405. top: 55px;
  2406. width: 40px;
  2407. height: calc(100vh - 54px);
  2408. background: aliceblue;
  2409. padding: 0 !important;
  2410. border-left: 1px solid #ddd;
  2411. transition: width 0.1s ease;
  2412. }*/
  2413. .on-trigger-only,
  2414. .on-content-only {
  2415. display: none !important;
  2416. }
  2417. .mrv-trigger .on-trigger-only,
  2418. .mrv-content .on-content-only {
  2419. display: inherit !important;
  2420. }
  2421. .mrv-badge {
  2422. border-radius: 100%;
  2423. height: 24px;
  2424. width: 24px;
  2425. min-height: 24px;
  2426. min-width: 24px;
  2427. max-height: 24px;
  2428. max-width: 24px;
  2429. text-align: center;
  2430. font-weight: 400;
  2431. display: flex;
  2432. align-items: center;
  2433. justify-content: center;
  2434. background-color: #6457f9;
  2435. color: #fff;
  2436. opacity: 0.85;
  2437. }
  2438. .mrv-badge>span {
  2439. font-size: 10px !important;
  2440. }
  2441. .note-bottom-toolbar {
  2442. bottom: 0;
  2443. z-index: 3;
  2444. }
  2445. .note-bottom-toolbar .nbt-container:hover {
  2446. cursor: pointer;
  2447. background: #fff !important;
  2448. }
  2449. [open-in-stag-popup] * {
  2450. pointer-events: none;
  2451. }
  2452. .stag-menu {
  2453. position: absolute;
  2454. z-index: 4;
  2455. }
  2456. .visit-segment .mcp-theme-1 .ql-editor[contenteditable] {
  2457. min-height: 200px;
  2458. }
  2459. .visit-segment .mcp-theme-1 [short] .ql-editor[contenteditable] {
  2460. min-height: 100px !important;
  2461. }
  2462. .visit-segment tr .vitals-copy-trigger {
  2463. position: absolute;
  2464. top: 0;
  2465. left: -10px;
  2466. width: 20px;
  2467. height: 100%;
  2468. align-items: center;
  2469. justify-content: center;
  2470. display: none;
  2471. cursor: pointer;
  2472. text-decoration: none !important;
  2473. }
  2474. .visit-segment tr:hover .vitals-copy-trigger {
  2475. display: flex;
  2476. }
  2477. [tab-links] {
  2478. }
  2479. [tab-links] [tab-link] {
  2480. padding: 0.5rem 0.75rem;
  2481. border: 1px solid #ccc;
  2482. color: #222;
  2483. background: #eee;
  2484. text-decoration: none;
  2485. }
  2486. [tab-links] [tab-link]:not(:last-child) {
  2487. border-right: 0;
  2488. }
  2489. [tab-links] [tab-link]:not(.tab-link-active):hover {
  2490. background: #f7f7f7;
  2491. }
  2492. [tab-links] [tab-link].tab-link-active {
  2493. font-weight: bold;
  2494. background: #fff;
  2495. }
  2496. .autosave-indicator {
  2497. display: none;
  2498. }
  2499. .autosave-indicator.show {
  2500. display: block;
  2501. }
  2502. table .stag-filter-hide {
  2503. display: none !important;
  2504. }
  2505. table .stag-filter-highlight {
  2506. background: rgb(255 215 215);
  2507. }
  2508. .event-bg-green {
  2509. background-color: #f6ffeb;
  2510. }
  2511. .event-bg-gray {
  2512. background-color: #ececec;
  2513. }
  2514. .popover-header {
  2515. padding: 3px 10px;
  2516. font-size: 13px;
  2517. font-weight: bold;
  2518. }
  2519. .popover-body {
  2520. font-size: 13px;
  2521. }
  2522. td.row-selection-highlight {
  2523. position: relative;
  2524. }
  2525. td.row-selection-highlight:after {
  2526. content: '';
  2527. position: absolute;
  2528. top: 0;
  2529. left: -4px;
  2530. width: 4px;
  2531. height: 100%;
  2532. background-color: #0d59af;
  2533. border-top-left-radius: 2px;
  2534. border-bottom-left-radius: 2px;
  2535. }
  2536. /* stag-collapsible-card */
  2537. [stag-collapsible-card] .stag-collapse-trigger {
  2538. padding: 0;
  2539. width: 22px;
  2540. align-self: stretch;
  2541. margin-right: -11px;
  2542. align-items: center;
  2543. justify-content: center;
  2544. display: inline-flex;
  2545. border-radius: 2px;
  2546. }
  2547. [stag-collapsible-card] .stag-collapse-trigger:hover {
  2548. text-decoration: none !important;
  2549. background: #4441;
  2550. }
  2551. [stag-collapsible-card] .stag-collapse-trigger i {
  2552. display: none;
  2553. }
  2554. [stag-collapsible-card][collapsed] .stag-collapse-trigger i.if-collapsed {
  2555. display: block;
  2556. }
  2557. [stag-collapsible-card]:not([collapsed]) .stag-collapse-trigger i.if-not-collapsed {
  2558. display: block;
  2559. }
  2560. [stag-collapsible-card][collapsed] .card-body {
  2561. display: none;
  2562. }
  2563. /* lifestyle rx specific */
  2564. .border-top-nutrition-rx {
  2565. border-top: 3px solid #a4d067;
  2566. }
  2567. .border-top-exercise-rx {
  2568. border-top: 3px solid #43c2cb;
  2569. }
  2570. .border-top-behavior-rx {
  2571. border-top: 3px solid #ffa82e;
  2572. }
  2573. .icon-nutrition-rx-md {
  2574. max-height: 22px;
  2575. }
  2576. .icon-nutrition-rx-row {
  2577. max-height: 18px;
  2578. }
  2579. .icon-nutrition-rx-row-sm {
  2580. max-height: 14px;
  2581. }
  2582. .table td.fit,
  2583. .table th.fit {
  2584. white-space: nowrap;
  2585. width: 1%;
  2586. }
  2587. table.table-cage {
  2588. border: 0px;
  2589. color: #2b4259;
  2590. }
  2591. table.table-cage thead tr th:last-child {
  2592. border-right: 0;
  2593. border-left: 0;
  2594. }
  2595. table.table-cage thead tr th:first-child {
  2596. border-left: 0;
  2597. }
  2598. table.table-cage thead tr th {
  2599. border-bottom-width: 1px !important;
  2600. }
  2601. table.table-cage thead tr th:nth-last-child(2) {
  2602. border-right: 0 !important;
  2603. }
  2604. table.table-cage thead tr th:last-child {
  2605. display: none !important;
  2606. }
  2607. table.table-cage tbody tr:first-child td {
  2608. border-top: 0;
  2609. }
  2610. table.table-cage tbody tr:last-child td {
  2611. border-bottom: 0;
  2612. }
  2613. table.table-cage tbody tr td:first-child {
  2614. border-left: 0;
  2615. }
  2616. table.table-cage tbody tr td:last-child {
  2617. border-right: 0;
  2618. border-left: 0 !important;
  2619. display: none !important;
  2620. }
  2621. table.table-cage tbody tr td:nth-last-child(2) {
  2622. width: 100% !important;
  2623. border-right: 0 !important;
  2624. }
  2625. table.table-cage tbody tr td:nth-last-child(3) {
  2626. max-width: 300px !important;
  2627. min-width: 300px !important;
  2628. }
  2629. table.table-cage tbody tr td.width-40px:first-child {
  2630. max-width: 40px !important;
  2631. min-width: 40px !important;
  2632. }
  2633. table.table-xs tr td {
  2634. padding: 0.15rem;
  2635. }
  2636. [if-edit-mode], [if-read-mode] {
  2637. display: none;
  2638. }
  2639. .edit [if-edit-mode] {
  2640. display: block;
  2641. }
  2642. .read [if-read-mode] {
  2643. display: block;
  2644. }
  2645. /* colored radios */
  2646. .rspace input[type="radio"][value="-"]:checked,
  2647. .rspace input[type="radio"][value="+"]:checked{
  2648. position: relative;
  2649. }
  2650. .rspace input[type="radio"][value="-"]:checked:before,
  2651. .rspace input[type="radio"][value="+"]:checked:before,
  2652. .rspace input[type="radio"][value="-"]:checked:after,
  2653. .rspace input[type="radio"][value="+"]:checked:after{
  2654. content: '';
  2655. position: absolute;
  2656. border-radius: 100%;
  2657. background:#fff;
  2658. }
  2659. .rspace input[type="radio"][value="-"]:checked:before,
  2660. .rspace input[type="radio"][value="+"]:checked:before{
  2661. top: 0;
  2662. left: 0;
  2663. width: 100%;
  2664. height: 100%;
  2665. }
  2666. .rspace input[type="radio"][value="-"]:checked:after,
  2667. .rspace input[type="radio"][value="+"]:checked:after{
  2668. top: 3px;
  2669. left: 3px;
  2670. width: calc(100% - 6px);
  2671. height: calc(100% - 6px);
  2672. }
  2673. .rspace input[type="radio"][value="-"]:checked:before {
  2674. border: 1px solid #e7848f;
  2675. }
  2676. .rspace input[type="radio"][value="+"]:checked:before {
  2677. border: 1px solid #2d9f2d91;
  2678. }
  2679. .rspace input[type="radio"][value="-"]:checked:after {
  2680. background-color: #e7848f;
  2681. }
  2682. .rspace input[type="radio"][value="+"]:checked:after {
  2683. background-color: #2d9f2d91;
  2684. }
  2685. @page
  2686. {
  2687. margin: 10mm 10mm 10mm 10mm;
  2688. }
  2689. .note-left-panel ~ .v-split {
  2690. height: 100%;
  2691. background: #DDD;
  2692. opacity: 1;
  2693. z-index: 2;
  2694. margin-left: -3px;
  2695. border-radius: 0;
  2696. margin-top: 0;
  2697. width: 6px;
  2698. }
  2699. .stag-scrollbar {
  2700. overflow: overlay;
  2701. }
  2702. .stag-scrollbar .stag-scrollbar-horiz-container {
  2703. position: fixed;
  2704. left: 849px;
  2705. bottom: 35px;
  2706. width: 633px;
  2707. height: 7px;
  2708. /*background: #aaa3;*/
  2709. transition: opacity 0.2s ease;
  2710. opacity: 0;
  2711. }
  2712. .stag-scrollbar[stag-h-scrollbar]:hover .stag-scrollbar-horiz-container,
  2713. body.stag-scrollbar-scrolling .stag-scrollbar[stag-h-scrollbar] .stag-scrollbar-horiz-container {
  2714. opacity: 1;
  2715. }
  2716. .stag-scrollbar .stag-scrollbar-horiz-tracker {
  2717. height: 7px;
  2718. background: #ddd;
  2719. border-radius: 10px;
  2720. }
  2721. .stag-scrollbar .stag-scrollbar-horiz-tracker:hover {
  2722. background: #ccc;
  2723. cursor: ew-resize;
  2724. }
  2725. .form-read-mode textarea, .form-read-mode input[type="text"] {
  2726. background: transparent;
  2727. border: 0;
  2728. padding: 0;
  2729. }
  2730. .conditions-tree {
  2731. /*padding: 0.5rem;*/
  2732. }
  2733. .conditions-tree .condition>a {
  2734. display: block;
  2735. padding: 3px 5px;
  2736. }
  2737. .conditions-tree .condition-children {
  2738. padding-left: 22px;
  2739. margin-left: -4px;
  2740. margin-top: -10px;
  2741. padding-top: 10px;
  2742. }
  2743. /* tree lines CSS */
  2744. .conditions-tree {
  2745. margin-left: 10px;
  2746. }
  2747. .conditions-tree .condition {
  2748. position: relative;
  2749. }
  2750. .conditions-tree .condition>a {
  2751. position: relative;
  2752. display: block;
  2753. padding-left: 9px;
  2754. white-space: nowrap;
  2755. text-overflow: ellipsis;
  2756. }
  2757. .conditions-tree .condition>a:before {
  2758. position: absolute;
  2759. content: '';
  2760. left: -7px;
  2761. background: url(/img/node.png);
  2762. width: 8px;
  2763. height: 7px;
  2764. background-size: 100% 100%;
  2765. top: calc(50% - 4px);
  2766. }
  2767. .conditions-tree .condition-children .condition>a:after {
  2768. position: absolute;
  2769. content: '';
  2770. left: -92px;
  2771. border-top: 1px solid #aaa;
  2772. width: 90px;
  2773. top: calc(50% - 1px);
  2774. }
  2775. .conditions-tree .condition-children .condition>a>.rm-count:after {
  2776. position: absolute;
  2777. content: '';
  2778. left: -22px;
  2779. border-left: 1px solid #aaa;
  2780. height: 200px;
  2781. bottom: 50%;
  2782. }
  2783. .conditions-tree .condition-children {
  2784. overflow: hidden;
  2785. }
  2786. table.stag-compact-grid>tbody>tr>td {
  2787. white-space: nowrap;
  2788. max-height: 1rem !important;
  2789. }
  2790. table.stag-compact-grid>tbody>tr>td>ul>li {
  2791. display: none;
  2792. }
  2793. table.stag-compact-grid>tbody>tr>td ul>li:nth-child(1) {
  2794. display: block;
  2795. margin-left: 0 !important;
  2796. }
  2797. table.stag-compact-grid>tbody>tr>td .alert {
  2798. padding: 0;
  2799. margin: 0;
  2800. }
  2801. table.stag-compact-grid>tbody>tr>td table>thead,
  2802. table.stag-compact-grid>tbody>tr>td table>tbody tr{
  2803. display: none;
  2804. }
  2805. table.stag-compact-grid>tbody>tr>td table>tbody tr:nth-child(1) {
  2806. display: table-row;
  2807. }
  2808. table.stag-compact-grid>tbody>tr>td {
  2809. border-left: 1px solid #ddd;
  2810. }
  2811. table.stag-compact-grid>tbody>tr>td:first-child {
  2812. border-left: 0;
  2813. }
  2814. table tr td [if-details-view] {
  2815. display: block;
  2816. }
  2817. table tr td [if-grid-view] {
  2818. display: none;
  2819. }
  2820. table.stag-compact-grid>tbody>tr>td [if-details-view] {
  2821. display: none;
  2822. }
  2823. table.stag-compact-grid>tbody>tr>td [if-grid-view] {
  2824. display: block;
  2825. }
  2826. .segment-template-summary-value {
  2827. font-weight: bold;
  2828. text-decoration: underline;
  2829. margin-left: 10px;
  2830. }
  2831. .stat-tree .v-split {
  2832. width: 6px;
  2833. margin-left: -3px;
  2834. margin-top: 0;
  2835. height: 100%;
  2836. border-radius: 0;
  2837. }
  2838. .tree-column-header.has-changes {
  2839. background: #ffeeee !important;
  2840. }
  2841. .stat-tree-view .stat-tree-node {
  2842. padding: 0.1rem 0.3rem;
  2843. }
  2844. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2845. padding-left: 1.5rem
  2846. }
  2847. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2848. padding-left: 2.6rem;
  2849. }
  2850. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2851. padding-left: 3.7rem;
  2852. }
  2853. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2854. padding-left: 4.8rem;
  2855. }
  2856. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2857. padding-left: 5.9rem;
  2858. }
  2859. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2860. padding-left: 7rem;
  2861. }
  2862. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2863. padding-left: 8.1rem;
  2864. }
  2865. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2866. padding-left: 9.2rem;
  2867. }
  2868. .stat-tree-user-view .stat-tree-anchor {
  2869. color: rgb(13, 89, 175) !important;
  2870. text-decoration: none;
  2871. }
  2872. /* jstree overrides */
  2873. .stat-tree-view .jstree-wholerow {
  2874. border-bottom: 1px solid #f1f1f1;
  2875. }
  2876. .stat-tree-view .jstree-anchor.has-drop-visualization::after {
  2877. content: attr(data-drop-percent);
  2878. margin-left: 1rem;
  2879. font-size: 70%;
  2880. }
  2881. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-0-25::after {
  2882. color: grey;
  2883. }
  2884. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-26-50::after {
  2885. color: saddlebrown;
  2886. }
  2887. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-51-75::after {
  2888. color: #dc7024;
  2889. }
  2890. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-76-100::after {
  2891. color: red;
  2892. }
  2893. .stat-tree-view .jstree-anchor.has-goal-label::before {
  2894. content: attr(data-goal-label);
  2895. margin-left: auto;
  2896. font-size: 80%;
  2897. color: orangered;
  2898. position: absolute;
  2899. left: calc(100% + 0.75rem);
  2900. font-weight: bold;
  2901. }
  2902. .mv-drop-0-25 {
  2903. color: grey;
  2904. }
  2905. .mv-drop-26-50 {
  2906. color: saddlebrown;
  2907. }
  2908. .mv-drop-51-75 {
  2909. color: #dc7024;
  2910. }
  2911. .mv-drop-76-100 {
  2912. color: red;
  2913. }
  2914. .multi-pro-view .line-count-label {
  2915. display: none;
  2916. }
  2917. .multi-pro-view .multi-pro-stats-table {
  2918. border: 0;
  2919. }
  2920. .multi-pro-view .multi-pro-stats-table tr th {
  2921. height: 22px;
  2922. background: #eee;
  2923. line-height: 22px;
  2924. padding: 0 5px;
  2925. padding-right: 0;
  2926. font-weight: normal;
  2927. color: #777;
  2928. border: 0;
  2929. border-left: 1px solid #e1e1e1;
  2930. width: 120px;
  2931. }
  2932. .multi-pro-view .multi-pro-stats-table tr th .pro-label {
  2933. min-width: 120px;
  2934. max-width: 120px;
  2935. overflow: hidden;
  2936. white-space: nowrap;
  2937. text-overflow: ellipsis;
  2938. }
  2939. .multi-pro-view .multi-pro-stats-table tr td {
  2940. border-top: 0;
  2941. padding: 0 5px;
  2942. border-left: 1px solid #f1f1f1;
  2943. width: 120px;
  2944. }
  2945. .multi-pro-view .multi-pro-stats-table tr th:last-child,
  2946. .multi-pro-view .multi-pro-stats-table tr td:last-child {
  2947. width: auto;
  2948. }
  2949. .multi-pro-view .count-label {
  2950. height: 24px;
  2951. line-height: 24px;
  2952. border-bottom: 1px solid #f1f1f1;
  2953. color: #666;
  2954. display: flex;
  2955. align-items: baseline;
  2956. padding-left: 4px;
  2957. }
  2958. .multi-pro-view .count-label .count {
  2959. white-space: nowrap;
  2960. width: 50%;
  2961. border-right: 1px solid #e7e7e7;
  2962. text-align: right;
  2963. padding-right: 5px;
  2964. }
  2965. .multi-pro-view .count-label .drop-percent {
  2966. font-size: 78%;
  2967. opacity: 0.8;
  2968. margin-left: 5px;
  2969. }
  2970. .multi-pro-view .multi-pro-view-stat-label {
  2971. height: 22px;
  2972. background: #eee;
  2973. line-height: 22px;
  2974. padding: 0 5px;
  2975. font-weight: bold;
  2976. color: #777;
  2977. }
  2978. .multi-pro-view th .mv-delete-pro-trigger {
  2979. position: absolute;
  2980. right: 2px;
  2981. top: 2px;
  2982. width: 16px;
  2983. height: 16px;
  2984. line-height: 16px;
  2985. font-size: 10px;
  2986. text-align: center;
  2987. display: none;
  2988. }
  2989. .multi-pro-view th:hover .mv-delete-pro-trigger {
  2990. display: block;
  2991. }
  2992. body .vakata-context li>a {
  2993. padding: 1px 5px;
  2994. padding-right: 10px;
  2995. line-height: unset;
  2996. font-size: 13px
  2997. }
  2998. body .vakata-context li>a>i {
  2999. display: none;
  3000. }
  3001. body .vakata-context li>a .vakata-contextmenu-sep {
  3002. display: none;
  3003. }
  3004. /*body .clauses-view li>i.jstree-icon {
  3005. display: none;
  3006. }*/
  3007. body #vakata-dnd {
  3008. font-family: Verdana, sans-serif;
  3009. font-size: 12px;
  3010. background: rgba(240, 248, 255, 0.76);
  3011. }
  3012. body .vakata-context .vakata-context-separator>a {
  3013. margin: 0;
  3014. }
  3015. .clause-label-part:not(:last-child)::after {
  3016. content: 'and';
  3017. position: absolute;
  3018. color: #299ab3;
  3019. font-size: 90%;
  3020. left: 100%;
  3021. width: 35px;
  3022. text-align: center;
  3023. }
  3024. .clause-label-part:not(:last-child) {
  3025. position: relative;
  3026. margin-right: 35px !important;
  3027. }
  3028. .phq .btn-select {
  3029. padding: 5px 13px;
  3030. }
  3031. .phq .btn-blank {
  3032. opacity: .5;
  3033. }
  3034. .phq .btn-select:focus,
  3035. .phq .btn-blank:focus {
  3036. box-shadow: none;
  3037. }
  3038. .phq .btn-select.active {
  3039. background-color: #28b4d9;
  3040. color: #fff;
  3041. }
  3042. .phq .plus {
  3043. position: relative;
  3044. }
  3045. .phq .plus::before {
  3046. content: '+';
  3047. position: absolute;
  3048. left: 0
  3049. }
  3050. .phq .table td,
  3051. .phq .table th {
  3052. border-top-color: #000;
  3053. }
  3054. .phq .table thead th {
  3055. border-bottom: 0;
  3056. }
  3057. .page-tabs {
  3058. width: 100%;
  3059. }
  3060. .page-tabs .links {
  3061. width: 100%;
  3062. display: flex;
  3063. align-items: center;
  3064. }
  3065. .page-tabs .links a {
  3066. padding: 5px 10px;
  3067. border: 1px solid #224587;
  3068. border-right: none;
  3069. border-bottom: none;
  3070. font-weight: bold;
  3071. }
  3072. .page-tabs .links a:last-child {
  3073. border-right: 1px solid #224587;
  3074. }
  3075. .page-tabs .links a.active {
  3076. background-color: #224587;
  3077. color: #fff;
  3078. }
  3079. .page-tabs .page-tab {
  3080. border: 1px solid #ddd;
  3081. padding: 10px;
  3082. }
  3083. .table-columns tr:first-child .move-up {
  3084. display: none;
  3085. }
  3086. .table-columns tr:last-child .move-down {
  3087. display: none;
  3088. }
  3089. .table-dnd-on-drag {
  3090. background-color: #fff7de !important;
  3091. box-shadow: 6px 3px 5px #e9e9e9, 0 1px 0 #ccc inset, 0 -1px 0 #ccc inset;
  3092. transition: 0.3s;
  3093. }
  3094. .table-dnd-on-drag td {
  3095. font-weight: bold;
  3096. border-top: none;
  3097. }
  3098. .table-dnd-no-change {
  3099. opacity: 0.5;
  3100. transition: 0.3s;
  3101. }
  3102. .droppable-section-active {
  3103. border: 2px dashed #00bcd4;
  3104. }
  3105. [draggable] {
  3106. cursor:all-scroll;
  3107. }
  3108. body.forced-masking {
  3109. opacity: 0.6 !important;
  3110. }
  3111. body.forced-masking #mask {
  3112. display: block !important;
  3113. }
  3114. [stag-title] {
  3115. position: relative;
  3116. }
  3117. [stag-title]:hover:after {
  3118. content: attr(stag-title);
  3119. position: absolute;
  3120. bottom: 100%;
  3121. left: 0;
  3122. background: #f7f7f7;
  3123. border: 1px solid #d7d7d7;
  3124. border-left: 0;
  3125. color: #888;
  3126. text-align: center;
  3127. font-size: 80%;
  3128. font-weight: normal;
  3129. padding: 1px 3px;
  3130. z-index: 1;
  3131. }
  3132. .post-refresh-highlight {
  3133. background: #cbf4f0 !important;
  3134. }
  3135. .wrapping-pre-container pre {
  3136. white-space: normal !important;
  3137. }
  3138. [data-segment-template-name="plan_free_text_v2"] pre {
  3139. white-space: normal !important;
  3140. }
  3141. .note-container.note_template_omega_soap_visit .mcp-theme-1 .ql-editor[contenteditable] {
  3142. min-height: 100px;
  3143. }
  3144. .note-container.note_template_omega_soap_visit .spot-highlight>.bg-light {
  3145. background: aliceblue !important;
  3146. }
  3147. .note-container.note_template_sigma_soap_visit [data-segment-template-name="omega_informed_consent"] .edit-container {
  3148. padding-left: 0.5rem;
  3149. padding-top: 0.5rem;
  3150. }
  3151. .note-container.note_template_sigma_soap_visit .refresh-segment {
  3152. opacity: 0.6;
  3153. }
  3154. .note-container.note_template_sigma_soap_visit .refresh-segment:hover {
  3155. opacity: 1;
  3156. }
  3157. .note-container.note_template_sigma_soap_visit>.note-rhs-content {
  3158. max-width: calc(100% - 220px);
  3159. }
  3160. .note-section.visit-segment.refreshing {
  3161. opacity: 0.6;
  3162. position: relative;
  3163. }
  3164. .note-section.visit-segment.refreshing::after {
  3165. position: absolute;
  3166. content: '';
  3167. top: 0;
  3168. left: 0;
  3169. width: 100%;
  3170. height: 100%;
  3171. background-image: url(/vanillaspin.gif);
  3172. background-repeat: no-repeat;
  3173. background-position: center center;
  3174. background-size: 20px;
  3175. z-index: 9999;
  3176. }
  3177. /* toggle checkboxes */
  3178. .mcp-theme-1 input[type="checkbox"][toggle] {
  3179. position: relative;
  3180. appearance: none;
  3181. width: 28px;
  3182. height: 16px;
  3183. background: #666;
  3184. border-radius: 16px;
  3185. cursor: pointer;
  3186. }
  3187. .mcp-theme-1 input[type="checkbox"][toggle]:checked {
  3188. background: var(--primary-color);
  3189. }
  3190. .mcp-theme-1 input[type="checkbox"][toggle]:after {
  3191. content: '';
  3192. position: absolute;
  3193. background: #fff;
  3194. border-radius: 100%;
  3195. height: 12px;
  3196. width: 12px;
  3197. left: 2px;
  3198. top: 2px;
  3199. transition: left 0.1s ease;
  3200. }
  3201. .mcp-theme-1 input[type="checkbox"][toggle]:checked:after {
  3202. background: #fff;
  3203. left: 14px;
  3204. }
  3205. .mcp-theme-1 input[type="checkbox"][toggle][disabled] {
  3206. opacity: 0.5;
  3207. cursor: not-allowed;
  3208. }
  3209. .inline-input-underlined {
  3210. border: none;
  3211. border-bottom: 1px solid #ced4da;
  3212. padding: 0;
  3213. text-align: center;
  3214. font-weight: bold;
  3215. }
  3216. .inline-input-underlined:focus {
  3217. outline: none;
  3218. box-shadow: none;
  3219. }
  3220. .inline-input-underlined.width-50 {
  3221. width: 50px;
  3222. }
  3223. .note_template_omega_soap_visit .system_segment .d-flex.border-bottom:last-of-type {
  3224. border-bottom: 0 !important;
  3225. }
  3226. .note-signed-by-hcp .hide-if-note-signed {
  3227. display: none !important;
  3228. }
  3229. .show-if-note-signed {
  3230. display: none !important;
  3231. }
  3232. .note-signed-by-hcp .show-if-note-signed {
  3233. display: block !important;
  3234. }
  3235. .customized-form {
  3236. width: 100%;
  3237. padding: 15px 0;
  3238. font-size: 0.9rem;
  3239. }
  3240. .customized-form .container {}
  3241. .customized-form .form-control {
  3242. border: none;
  3243. border-bottom: 1px solid #333;
  3244. border-radius: 0;
  3245. height: 25px;
  3246. padding: 0;
  3247. background-color: transparent;
  3248. }
  3249. .customized-form .form-control:focus {
  3250. outline: none;
  3251. box-shadow: none;
  3252. }
  3253. .customized-form .form-control.inline {
  3254. width: auto;
  3255. padding: 0 10px;
  3256. }
  3257. .customized-form textarea.form-control {
  3258. width: 100% !important;
  3259. }
  3260. .customized-form form .row .section.bg-light {
  3261. padding-top: 1rem;
  3262. margin-bottom: 1rem;
  3263. }
  3264. .customized-form .unified-checks {
  3265. display: flex;
  3266. flex-wrap: wrap;
  3267. }
  3268. .customized-form .unified-checks.flex-basis-20 > div {
  3269. flex-basis: 20%;
  3270. }
  3271. .customized-form .unified-checks.flex-basis-23>div.form-check {
  3272. flex-basis: 23%;
  3273. }
  3274. .customized-form .unified-checks.flex-basis-25>div.form-check {
  3275. flex-basis: 25%;
  3276. }
  3277. .customized-form .unified-checks.flex-basis-31>div.form-check {
  3278. flex-basis: 31%;
  3279. }
  3280. .customized-form .unified-checks.flex-basis-30 > div {
  3281. flex-basis: 30%;
  3282. }
  3283. .customized-form .form-check-inline .form-check-input[type="radio"] {
  3284. margin-top: -3px;
  3285. }
  3286. /* stag sheet */
  3287. .stag-sheet tbody tr td {
  3288. padding: 0;
  3289. background: #fff;
  3290. cursor: text;
  3291. }
  3292. .stag-sheet tbody tr td input,
  3293. .stag-sheet tbody tr td textarea {
  3294. border: 1px solid transparent;
  3295. resize: none;
  3296. width: 100%;
  3297. outline: none;
  3298. margin: 0;
  3299. display: block;
  3300. padding: 3px;
  3301. min-height: 28px;
  3302. overflow: hidden;
  3303. }
  3304. .stag-sheet tbody tr td input:focus,
  3305. .stag-sheet tbody tr td input:focus-visible,
  3306. .stag-sheet tbody tr td textarea:focus,
  3307. .stag-sheet tbody tr td textarea:focus-visible{
  3308. border: 1px solid steelblue;
  3309. }
  3310. .mcp-theme-1 .stag-sheet .ql-container {
  3311. border: 0;
  3312. }
  3313. .mcp-theme-1 .stag-sheet .ql-editor[contenteditable] {
  3314. min-height: 28px;
  3315. border: 1px solid transparent;
  3316. padding: 3px;
  3317. }
  3318. .mcp-theme-1 .stag-sheet .ql-editor[contenteditable]:focus {
  3319. min-height: 28px;
  3320. border: 1px solid steelblue;
  3321. }
  3322. .note-container .summary-container p {
  3323. margin-top: 0 !important;
  3324. margin-bottom: 0 !important;
  3325. }
  3326. .ql-editor {
  3327. padding: 6px 6px;
  3328. }
  3329. .pdf-form-preloader {
  3330. display: flex;
  3331. align-items: center;
  3332. justify-content: center;
  3333. }
  3334. .pdf-form-preloader i {
  3335. font-size: 35px;
  3336. color: #9e9e9e;
  3337. }
  3338. .ql-editor {
  3339. padding: 6px 6px;
  3340. }
  3341. #handoutSelectComponent img {
  3342. max-width: 100%;
  3343. }
  3344. #handoutSelectComponent .handout .handout-detail {
  3345. position: relative;
  3346. cursor: pointer;
  3347. transition: .15s all ease-in-out;
  3348. }
  3349. #handoutSelectComponent .handout .handout-detail:hover {
  3350. transition: .15s all ease-in-out;
  3351. box-shadow: rgba(0, 0, 0, 0.117647) 0px 1px 6px, rgba(0, 0, 0, 0.117647) 0px 1px 4px;
  3352. }
  3353. #handoutSelectComponent .handout.selected .handout-detail i.fa-check-circle {
  3354. position: absolute;
  3355. right: 0;
  3356. top: 0;
  3357. color: var(--primary-color);
  3358. }
  3359. #handoutSelectComponent .handout .handout-detail a.preview {
  3360. position: absolute;
  3361. left: -1px;
  3362. bottom: 0;
  3363. color: #fff;
  3364. text-align: center;
  3365. width: 102%;
  3366. background-color: rgba(28, 69, 135,0.8);
  3367. font-weight: bold;
  3368. padding: 5px 0;
  3369. text-decoration: none;
  3370. }
  3371. #handoutSelectComponent .handout.selected .handout-detail {
  3372. border-color: var(--primary-color) !important;
  3373. }
  3374. .note-container.note_template_omega_soap_visit table.table-cage tbody tr td:nth-last-child(3) {
  3375. max-width: unset !important;
  3376. min-width: unset !important;
  3377. }
  3378. .mcp-theme-1 .point-table [if-read-mode] .inline-html-container {
  3379. cursor: pointer;
  3380. }
  3381. table.v-top td,
  3382. table.v-top th {
  3383. vertical-align:top;
  3384. }
  3385. .icd-input {
  3386. width: 95px;
  3387. height: calc(1.5em + 0.5rem + 2px);
  3388. padding: 0.25rem 0.5rem;
  3389. font-size: 12px;
  3390. line-height: 1.5;
  3391. border-radius: 0.2rem;
  3392. font-weight: 400;
  3393. color: #495057;
  3394. background-color: #fff;
  3395. background-clip: padding-box;
  3396. border: 1px solid #ced4da;
  3397. border-radius: 0.25rem;
  3398. transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  3399. }
  3400. .icd-input:focus {
  3401. color: #495057;
  3402. background-color: #fff;
  3403. border-color: #80bdff;
  3404. outline: 0;
  3405. box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
  3406. }
  3407. .coverage-payer-name {
  3408. width: 120px;
  3409. white-space: nowrap;
  3410. overflow: hidden;
  3411. text-overflow: ellipsis;
  3412. display: inline-block;
  3413. }