style.css 83 KB

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