style.css 84 KB

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