style.css 83 KB

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