style.css 74 KB

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