style.css 80 KB

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