style.css 83 KB

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