style.css 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430
  1. html {
  2. scroll-behavior: smooth;
  3. }
  4. @font-face {
  5. font-family: 'GraphikSemiBold';
  6. src: url('fonts/graphik/Graphik-Semibold.otf');
  7. }
  8. @font-face {
  9. font-family: 'Graphik';
  10. src: url('fonts/graphik/Graphik-Regular.otf');
  11. }
  12. @font-face {
  13. font-family: 'GraphikMedium';
  14. src: url('fonts/graphik/Graphik-Medium.otf');
  15. }
  16. * {
  17. margin: 0;
  18. padding: 0;
  19. }
  20. .text-black {
  21. color: #000000 !important;
  22. }
  23. body {
  24. display: flex;
  25. flex-direction: column;
  26. min-height: 100vh;
  27. width: 100%;
  28. }
  29. .form-group label {
  30. /* font-weight: bold; */
  31. font-size: 15px;
  32. }
  33. footer {
  34. margin-top: auto;
  35. }
  36. textarea {
  37. resize: none;
  38. }
  39. .form-group {
  40. margin-bottom: 15px;
  41. }
  42. :root {
  43. --pry-color: #0e6690;
  44. --pry-dark-color: #09415C;
  45. --pry-light-color: #e2f5ff;
  46. --pry-lighter-color: #ebf8ff;
  47. --text-pry-color: #183153;
  48. --text-sec-color: #333;
  49. --sec-color: #183152;
  50. /* --sec-color: #FDE1AF;
  51. --orange-color: #F37019; */
  52. }
  53. p {
  54. color: var(--text-sec-color);
  55. font-size: 18px;
  56. }
  57. ::-moz-selection { background: var(--pry-color); color: #fff; }
  58. ::selection { background: var(--pry-color); color: #fff; }
  59. .font-weight-graphik-medium {
  60. font-family: "GraphikMedium" !important;
  61. }
  62. nav.navbar {
  63. width: 100%;
  64. background-color: #fff;
  65. padding: 0;
  66. height: 80px;
  67. }
  68. .dropdown-item.active {
  69. background-color: var(--pry-color);
  70. color: #fff!important;
  71. }
  72. .navbar-nav {
  73. margin-left: 80px;
  74. margin-bottom: 0;
  75. }
  76. .navbar-nav li{
  77. display: inline;
  78. padding-left: 10px;
  79. }
  80. .navbar-nav li a {
  81. font-family: 'Source Sans Pro', sans-serif !important;
  82. font-weight: 500;
  83. color: var(--text-pry-color);
  84. font-size: 17px;
  85. transition: 0.5s;
  86. }
  87. .navbar-nav li a:hover {
  88. color: var(--pry-color);
  89. transition: 0.5s;
  90. }
  91. .nav-item a {
  92. color: var(--pry-dark-color);
  93. }
  94. .nav-item a:hover {
  95. color: var(--pry-color);
  96. }
  97. .logo {
  98. width: 100%;
  99. max-width: 250px;
  100. /* margin-top: -10px; */
  101. }
  102. .top-btn {
  103. background-color: var(--pry-light-color);
  104. padding: 10px 20px;
  105. letter-spacing: 1.2px;
  106. text-decoration-color: var(--pry-color) !important;
  107. }
  108. .top-links {
  109. height: 40px !important;
  110. border-bottom: 1px solid var(--pry-light-color);
  111. }
  112. .top-links li {
  113. padding-left: 20px;
  114. }
  115. .top-links li a {
  116. font-size: 14px;
  117. font-weight: 600;
  118. text-decoration: underline;
  119. text-decoration-color: #99deff;
  120. }
  121. nav .btn {
  122. font-size: 15px !important;
  123. letter-spacing: 1px;
  124. }
  125. .sticky {
  126. position: fixed !important;
  127. top: 0;
  128. width: 100%;
  129. z-index: 1000;
  130. }
  131. .sticky + .lh-container {
  132. padding-top: 90px;
  133. }
  134. .dropdown-menu {
  135. padding: 0;
  136. }
  137. .dropdown-menu.sm {
  138. width: 200px;
  139. }
  140. .dropdown-menu.sm li{
  141. padding: 0px;
  142. }
  143. .dropdown-menu.sm a{
  144. padding: 10px 20px;
  145. }
  146. .dropdown-menu.wide {
  147. width: 650px;
  148. }
  149. .dropdown:hover > .dropdown-menu, .dropdown-menu.show {
  150. display: block;
  151. margin-top: 0;
  152. left: 0;
  153. border:0;
  154. box-shadow: 0 0 20px rgba(0,0,0,.15);
  155. }
  156. .nav-tabs {
  157. display: block;
  158. padding-bottom: 20px;
  159. border-right: 1px solid #ddd;
  160. min-width: 45%;
  161. }
  162. .tab-content {
  163. padding: 10px;
  164. }
  165. .nav-tabs li {
  166. padding: 0;
  167. }
  168. .nav-tabs .nav-link {
  169. border: 0 !important;
  170. /* width: 500px; */
  171. width: 100%;
  172. text-align: left;
  173. display: flex;
  174. margin-right: 0;
  175. justify-content: space-between;
  176. padding: 12px;
  177. border-radius: 0 !important;
  178. align-items: center;
  179. color: var(--pry-color);
  180. }
  181. .nav-tabs .nav-link.active {
  182. background-color: var(--pry-light-color);
  183. color: var(--pry-color);
  184. }
  185. #specialtiesTab ul li{
  186. display: block;
  187. padding-left: 0;
  188. margin-bottom: 8px;
  189. }
  190. #specialtiesTab ul li a{
  191. text-decoration: none;
  192. }
  193. a {
  194. font-size: 16px;
  195. text-decoration-color: #99deff;
  196. transition: .5s;
  197. }
  198. a:hover {
  199. transition: .5s;
  200. text-decoration-color: var(--pry-light-color);
  201. }
  202. .social-icon {
  203. font-size: 14px;
  204. margin-top: -5px;
  205. }
  206. .font-bold {
  207. font-weight: 500;
  208. }
  209. .font-bolder {
  210. font-weight: 600;
  211. }
  212. .top {
  213. background-image: url('/img/top.png');
  214. background-position: top;
  215. background-size: cover;
  216. background-repeat: no-repeat;
  217. padding-block:40px;
  218. transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s
  219. }
  220. .top-overlay {
  221. background-color: transparent;
  222. background-image: linear-gradient(360deg, #F1F6F4 0%, rgba(131,73,121,0) 100%);
  223. opacity: 0.52;
  224. transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  225. width: 100%;
  226. height: 100%;
  227. top: 0;
  228. left: 0;
  229. position: absolute;
  230. }
  231. #confirmDefaultLocale {
  232. width: 100%;
  233. text-align: center;
  234. }
  235. #confirmDefaultLocale * {
  236. font-size: 14px;
  237. font-weight: normal;
  238. }
  239. #confirmDefaultLocale a {
  240. text-decoration: underline;
  241. }
  242. .programs {
  243. background-image: url('../img/programs.jpg');
  244. background-position: center;
  245. }
  246. .about {
  247. background-image: url('../img/about.png');
  248. background-position: center;
  249. }
  250. .health-plans {
  251. background-image: url('../img/health-plans.jpg');
  252. background-position: center;
  253. }
  254. .providers {
  255. background-image: url('../img/providers.jpg');
  256. background-position: center;
  257. }
  258. .employers {
  259. background-image: url('../img/employers.jpg');
  260. background-position: center;
  261. }
  262. .hiring {
  263. background-image: url('../img/hiring.jpg');
  264. background-position: center;
  265. }
  266. .mouth-guards {
  267. background-image: url('../img/programs/cpap/top.jpg');
  268. min-height: 450px;
  269. display: grid;
  270. place-items: center;
  271. background-position: left center;
  272. }
  273. .stress-management {
  274. background-image: url('../img/programs/stress/top.jpg');
  275. min-height: 450px;
  276. display: grid;
  277. place-items: center;
  278. background-position: left center;
  279. }
  280. .weight-loss {
  281. background-image: url('../img/programs/weightloss/top.jpg');
  282. min-height: 450px;
  283. display: grid;
  284. place-items: center;
  285. background-position: left center;
  286. }
  287. .family {
  288. background-image: url('../img/family-bg.jpg');
  289. background-repeat: no-repeat;
  290. background-size: cover;
  291. background-position: center;
  292. }
  293. .family {
  294. display: flex;
  295. padding: 80px;
  296. position: relative;
  297. align-items: flex-start;
  298. justify-content: space-between;
  299. }
  300. .timeline {
  301. position: relative;
  302. box-sizing: border-box;
  303. }
  304. .timeline ul {
  305. display: block;
  306. list-style: none;
  307. }
  308. .timeline ul li {
  309. text-align: left;
  310. padding-top: 0px;
  311. padding-bottom: 90px;
  312. padding-left: 0px;
  313. position: relative;
  314. }
  315. .timeline h3 {
  316. color: #183153 !important;
  317. }
  318. .timeline ul li .time {
  319. padding: 2px 0px 0px 0px !important;
  320. background: #3a92e7;
  321. border-radius: 50%;
  322. box-shadow: 0 0 0 4px rgba(183, 203, 53, 0.6);
  323. width: 60px;
  324. height: 60px;
  325. font-size: 35px !important;
  326. text-align: center;
  327. display: grid;
  328. place-items: center;
  329. }
  330. .timeline:before {
  331. content: '';
  332. position: absolute;
  333. left: 60px;
  334. width: 4px;
  335. height: 65%;
  336. background: #A3D72A;
  337. }
  338. .time strong {
  339. text-align: center;
  340. width: 100%;
  341. color: #fff !important;
  342. }
  343. .plq {
  344. flex-basis: 20%;
  345. margin-right: 10px;
  346. background-color: #D0C78E;
  347. padding: 10px;
  348. text-align: center;
  349. margin-top: 60px;
  350. }
  351. .plq img {
  352. width: 100%;
  353. }
  354. .plq p {
  355. font-size: 14px !important;
  356. font-weight: bold;
  357. margin-bottom: 2px !important;
  358. }
  359. .initiative {
  360. flex-basis: 75%;
  361. }
  362. .initiative p {
  363. font-size: 17px !important;
  364. font-weight: lighter;
  365. }
  366. .bolder {
  367. font-weight: 600;
  368. }
  369. .flower1 {
  370. position: absolute;
  371. top:0;
  372. left:0;
  373. }
  374. .flower2 {
  375. position: absolute;
  376. top:0;
  377. right: 0;
  378. }
  379. .flower3 {
  380. position: absolute;
  381. bottom:0;
  382. right: 10%;
  383. }
  384. .overlay {
  385. background:rgba(21, 65, 89, 0.7);
  386. width: 100%;
  387. }
  388. .icon {
  389. height: 50px;
  390. width: 50px;
  391. color: #fff;
  392. font-size: 23px;
  393. background-color: var(--pry-color);
  394. display: grid;
  395. place-items: center;
  396. border-radius: 100%;
  397. }
  398. .top h4 {
  399. font-size: 40px;
  400. font-weight: 700;
  401. }
  402. .top .btn {
  403. /* letter-spacing: 2px; */
  404. font-size: 16px;
  405. }
  406. /* .top h5 {
  407. font-size: 34px;
  408. font-weight: 600;
  409. } */
  410. .top p {
  411. font-size: 19px;
  412. margin-top: 17px;
  413. }
  414. .top .content {
  415. box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.22);
  416. transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  417. border-radius: 10px;
  418. }
  419. .forum img {
  420. height: 50px;
  421. width: 50px;
  422. border-radius: 100%;
  423. object-fit: contain;
  424. }
  425. .forum h6 {
  426. font-family: 'mercury_display', serif;
  427. font-weight: bold;
  428. font-size: 16px;
  429. margin-bottom: 0;
  430. }
  431. .featured {
  432. display: flex;
  433. align-items: center;
  434. justify-content: space-between;
  435. flex-wrap: wrap;
  436. }
  437. .featured img {
  438. max-height: 100px;
  439. max-width: 200px;
  440. object-fit: contain;
  441. }
  442. .bg-light-white {
  443. background-color: rgba(255,255,255,0.9);
  444. color: #000000;
  445. }
  446. .call, .call-light {
  447. padding: 10px 20px;
  448. border: 1px solid var(--pry-color);
  449. width: fit-content;
  450. }
  451. .call-light {
  452. border-color:#fff;
  453. }
  454. .call a, .call-light a{
  455. font-size: 30px;
  456. color: var(--pry-color);
  457. font-weight: 700;
  458. }
  459. .call-light a {
  460. color: #fff;
  461. }
  462. .call:hover {
  463. border-color: var(--pry-color);
  464. }
  465. .announcement {
  466. display: flex;
  467. margin-top: 50px;
  468. }
  469. .content-pane {
  470. width: 100%;
  471. position: relative;
  472. background: #FFFFFF;
  473. border: 2px solid rgba(8, 65, 92, 0.07);
  474. box-sizing: border-box;
  475. box-shadow: 0px 6px 4px rgb(43 67 80 / 1%);
  476. }
  477. .document-scroll-view {
  478. max-height: 300px;
  479. overflow: auto;
  480. font-family: sans-serif !important;
  481. }
  482. .document-scroll-view ul,
  483. .document-scroll-view ol {
  484. padding-left: 30px;
  485. }
  486. .document-scroll-view p{
  487. font-size: inherit !important;
  488. }
  489. .scroll-pane
  490. {
  491. width: 100%;
  492. height: 200px;
  493. overflow: auto;
  494. }
  495. .signature canvas {
  496. border-radius: 10px;
  497. }
  498. .signature-outer.signature-holder {
  499. width: 100%;
  500. height: 200px;
  501. text-align: center;
  502. background: #FFFFFF;
  503. border: 2px dashed rgba(0, 0, 0, 0.1);
  504. box-sizing: border-box;
  505. border-radius: 10px;
  506. }
  507. .on-file-signature img {
  508. max-width: 100%;
  509. max-height: 190px;
  510. }
  511. .page-drop-shadow {
  512. box-shadow: 0px 100px 80px rgb(76 97 110 / 7%), 0px 41.7776px 33.4221px rgb(76 97 110 / 3%), 0px 22.3363px 17.869px rgb(76 97 110 / 1%), 0px 12.5216px 10.0172px rgb(76 97 110 / 1%), 0px 6.6501px 5.32008px rgb(76 97 110 / 0%);
  513. margin-bottom: 150px;
  514. padding-bottom: 60px;
  515. }
  516. .special {
  517. text-transform: uppercase;
  518. background-color: #154159;
  519. flex-basis: 40%;
  520. }
  521. .special img {
  522. width: 100%;
  523. height: 220px;
  524. }
  525. .special h4{
  526. font-size: 17px;
  527. color: #fff;
  528. font-weight: 400;
  529. text-align: center;
  530. margin: 20px 0;
  531. }
  532. .special-content {
  533. flex-basis: 60%;
  534. padding: 0 10px;
  535. background-color:var(--sec-color);
  536. }
  537. .about-home {
  538. padding: 80px 0;
  539. }
  540. .about-home img, .hope img {
  541. width: 100%;
  542. }
  543. .content p {
  544. font-size: 18px;
  545. margin-bottom: 12px;
  546. }
  547. .med-container {
  548. text-align: center;
  549. }
  550. .med-container span {
  551. font-size: 20px;
  552. margin:10px;
  553. }
  554. .header-divider, .pry-header {
  555. border:2px solid #eee;
  556. background: #eee;
  557. width: 50px;
  558. margin: 10px 0;
  559. }
  560. .flex-center {
  561. display: flex;
  562. align-items: center;
  563. justify-content: space-between;
  564. }
  565. .flex-center >div {
  566. width: 50%;
  567. padding: 0 10px;
  568. }
  569. .flex-center img {
  570. width: 100%;
  571. }
  572. .flex-card {
  573. display: flex;
  574. flex-wrap: wrap;
  575. gap: 20px;
  576. }
  577. .flex-card > div{
  578. width: 32%;
  579. border-color: #D0E9F6;
  580. }
  581. .flex-card > div:hover{
  582. box-shadow: 0px 10px 24px #EDEDED;
  583. transition: .3s;
  584. }
  585. .flex-card p {
  586. font-size: 16px;
  587. }
  588. .svg {
  589. border-radius: 100%;
  590. height: 60px;
  591. width: 60px;
  592. display: grid;
  593. place-items: center;
  594. }
  595. .svg-1 {
  596. background-color: #58CAA5;
  597. }
  598. .svg-2 {
  599. background-color: #A4D729;
  600. }
  601. .svg-3 {
  602. background-color: #0086FD;
  603. }
  604. .img-card {
  605. box-shadow: 0px 9px 34px rgba(140, 140, 140, 0.05), 0px 3.75998px 14.2044px rgba(140, 140, 140, 0.0462623), 0px 2.01027px 7.59435px rgba(140, 140, 140, 0.0410492), 0px 1.12694px 4.25733px rgba(140, 140, 140, 0.0347863), 0px 0.598509px 2.26103px rgba(140, 140, 140, 0.0272543), 0px 0.249053px 0.940867px rgba(140, 140, 140, 0.0176014);
  606. }
  607. .img-card p{
  608. font-size: 16px;
  609. }
  610. .pry-header {
  611. border-color: var(--pry-dark-color);
  612. background: var(--pry-dark-color);
  613. }
  614. .btn-outline-sec {
  615. background-color: #ffffff;
  616. border: 1px solid var(--sec-color);
  617. color: var(--sec-color) !important;
  618. border-radius: 30px;
  619. }
  620. .btn-outline-sec:hover {
  621. background-color: var(--sec-color);
  622. color: #fff !important;
  623. }
  624. .btn-pry, .blue-card, .btn-pry-light {
  625. background-color: var(--pry-color);
  626. color: #fff !important;
  627. font-size: 16px;
  628. border-radius: 30px;
  629. }
  630. .btn-pry-light, .btn-pry:hover {
  631. background-color: var(--pry-dark-color);
  632. border: 1px solid var(--pry-dark-color);
  633. color: #fff !important;
  634. }
  635. .blue-card:hover {
  636. background-color: var(--pry-dark-color);
  637. color: #fff;
  638. }
  639. .btn-pry-light {
  640. border: 1px solid #fff;
  641. }
  642. .btn-outline-pry {
  643. background-color: #ffffff;
  644. border: 1px solid var(--pry-color);
  645. color: var(--pry-color) !important;
  646. border-radius: 30px;
  647. }
  648. .btn-outline-pry:hover {
  649. background-color: #ffffff;
  650. border: 1px solid var(--pry-color);
  651. color: var(--pry-color) !important;
  652. border-radius: 30px;
  653. }
  654. .bg-light-info {
  655. background-color: #f0fcff;
  656. }
  657. .flex-row {
  658. display: flex;
  659. flex-wrap: wrap;
  660. gap: 24px;
  661. }
  662. .flex-row > div {
  663. width: 32%;
  664. }
  665. .bg-dark-pry {
  666. background-color: var(--pry-dark-color);
  667. color: #fff;
  668. }
  669. .bg-pry {
  670. background-color: var(--pry-color);
  671. color: #fff;
  672. }
  673. .bg-pry p {
  674. color: #fff !important;
  675. }
  676. .pry {
  677. background-color: var(--pry-color) !important;
  678. color: #fff !important;
  679. border-radius: 0;
  680. }
  681. .pry-dark {
  682. background-color: var(--pry-dark-color) !important;
  683. border-radius: 0;
  684. color: #fff !important;
  685. }
  686. .white-card {
  687. padding: 30px;
  688. background-color: #ffffff;
  689. box-shadow: 0px 100px 80px rgba(140, 140, 140, 0.07), 0px 22.9642px 35.891px rgba(140, 140, 140, 0.0285813), 0px 6.94824px 20.3502px rgba(140, 140, 140, 0.0210064), 0px 0.681338px 12.0279px rgba(140, 140, 140, 0.0187784), 0px -1.38408px 6.74154px rgba(140, 140, 140, 0.0179796), 0px -1.28279px 2.96746px rgba(140, 140, 140, 0.0155585);
  690. }
  691. .white-card-link {
  692. padding: 0;
  693. /* margin-top: 15px; */
  694. background-color: #ffffff;
  695. position: relative;
  696. font-size: 12px;
  697. }
  698. .white-card-link img {
  699. width: 100%;
  700. opacity: 0.9;
  701. }
  702. .white-card-link a{
  703. display: block;
  704. transition: 0.4s;
  705. color: var(--pry-color);
  706. }
  707. .white-card-link a:hover {
  708. color: var(--pry-dark-color);
  709. }
  710. .white-card-link:hover {
  711. transition: 0.4;
  712. box-shadow: 0px 100px 80px rgba(140, 140, 140, 0.07), 0px 22.9642px 35.891px rgba(140, 140, 140, 0.0285813), 0px 6.94824px 20.3502px rgba(140, 140, 140, 0.0210064), 0px 0.681338px 12.0279px rgba(140, 140, 140, 0.0187784), 0px -1.38408px 6.74154px rgba(140, 140, 140, 0.0179796), 0px -1.28279px 2.96746px rgba(140, 140, 140, 0.0155585);
  713. }
  714. .white-card p {
  715. margin-bottom: 13px;
  716. }
  717. .green-card {
  718. border-left:6px solid var(--sec-color);
  719. border-right:3px solid var(--pry-color);
  720. display: flex;
  721. align-items: center;
  722. flex-wrap: wrap;
  723. width: 100%;
  724. background-color: #F1F2F2;
  725. transition: 0.3s;
  726. color: var(--pry-color);
  727. }
  728. .breadcrumb-item {
  729. font-size: 16px !important;
  730. }
  731. .program {
  732. text-align: justify;
  733. }
  734. .explore {
  735. border-left: 1px solid #ccc;
  736. }
  737. .program p {
  738. font-size: 16px;
  739. }
  740. .pry-card {
  741. background-color: var(--pry-color);
  742. color: #fff;
  743. }
  744. .green-card:hover, .sec-card {
  745. background-color: var(--sec-color);
  746. transition: 0.3s;
  747. }
  748. .outreach-container {
  749. display: flex;
  750. flex-wrap: wrap;
  751. margin-top: 20px;
  752. }
  753. .outreach-container div {
  754. margin-right: 20px;
  755. margin-bottom: 20px;
  756. width: 250px;
  757. padding: 10px;
  758. cursor: pointer;
  759. }
  760. .outreach-container p {
  761. font-size: 17px;
  762. font-weight: 700;
  763. letter-spacing: 1.1px;
  764. }
  765. .outreach-container img {
  766. width: 50px;
  767. margin-right: 10px;
  768. }
  769. .flex-container {
  770. display: flex;
  771. align-items: center;
  772. }
  773. .flex-container div {
  774. flex-basis: 60%;
  775. }
  776. .flex-container .size-4 {
  777. flex-basis: 35%;
  778. margin-right: 12px;
  779. }
  780. .text-pry {
  781. color: var(--pry-color);
  782. }
  783. .text-dark-pry {
  784. color: var(--pry-dark-color);
  785. }
  786. .bg-green {
  787. background-color: #FEF0D7;
  788. }
  789. .history div:first-child {
  790. width: 40%;
  791. }
  792. .history div:last-child {
  793. width: 60%;
  794. }
  795. .topography {
  796. position: absolute;
  797. top:0;
  798. width: 15%;
  799. }
  800. .btn-dark-pry {
  801. color: var(--pry-dark-color);
  802. background:none;
  803. border-color: var(--pry-dark-color);
  804. }
  805. .btn-dark-pry:hover {
  806. background-color: var(--pry-dark-color);
  807. color: #fff;
  808. }
  809. .bg-grey{
  810. background-color: #F1F2F2;
  811. }
  812. .bg-light-blue{
  813. background-color: #CCF0F5;
  814. }
  815. .bg-light-grey{
  816. background-color: #F1F4F4;
  817. }
  818. .bg-sec{
  819. background-color: var(--sec-color);
  820. }
  821. .steps {
  822. background-color: var(--sec-color);
  823. border-bottom: 2px solid var(--pry-color);
  824. position: relative;
  825. }
  826. .title {
  827. font-size: 30px;
  828. }
  829. .subheader, .subtitle {
  830. font-size: 25px;
  831. }
  832. .popper {
  833. cursor: pointer;
  834. }
  835. .popover {
  836. padding: 12px;
  837. }
  838. .popover h6 {
  839. font-size: 18px;
  840. }
  841. .grid-images {
  842. border-radius: 10px;
  843. overflow: hidden;
  844. }
  845. .hp {
  846. text-align: center;
  847. }
  848. .hp img {
  849. max-height: 40px;
  850. filter: grayscale(1);
  851. margin: 0 10px;
  852. }
  853. /* .steps-container {
  854. display: none;
  855. } */
  856. .custom-menu {
  857. transform: none !important;
  858. top:25px !important;
  859. }
  860. .custom-menu .dropdown-item {
  861. padding: 10px !important;
  862. border-bottom: 1px solid #eee;
  863. }
  864. .cards {
  865. max-width: 100px;
  866. }
  867. .sidebar a {
  868. display: block;
  869. padding: 8px 12px 8px 0;
  870. color: #000000;
  871. border-bottom: 1px solid var(--pry-color);
  872. text-decoration: none !important;
  873. font-size: 15px;
  874. }
  875. .sidebar a:last-child {
  876. border-bottom: 0;
  877. }
  878. .sidebar .active, .sidebar a:hover {
  879. color: var(--pry-color);
  880. border-bottom-color: var(--pry-color);
  881. transition: .5s;
  882. }
  883. .steps-content {
  884. display: flex;
  885. flex-wrap: wrap;
  886. justify-content: center;
  887. }
  888. .steps-content .content {
  889. flex-basis: 45%;
  890. background-color: #ffffff;
  891. border-left:2px solid var(--pry-color);
  892. padding: 20px;
  893. margin-right: 20px;
  894. margin-bottom: 20px;
  895. font-size: 17px;
  896. }
  897. .plus {
  898. width: 100%;
  899. text-align: center;
  900. position: absolute;
  901. bottom:-20px;
  902. left:0;
  903. }
  904. .profile-html p > br {
  905. display: none !important;
  906. }
  907. .list {
  908. list-style:none;
  909. padding: 8px 0;
  910. }
  911. .list li, ol li {
  912. font-size: 17px;
  913. }
  914. .list li {
  915. display: flex;
  916. }
  917. .list li:not(:last-child) {
  918. margin-bottom: 10px;
  919. margin-right: 13px;
  920. }
  921. .list li::before{
  922. content: url('/img/checklist.svg');
  923. font-size: 17px;
  924. margin-left: 10px;
  925. padding-right: 10px !important;
  926. color:var(--pry-color);
  927. border-radius: 100%;
  928. }
  929. .plus a::before{
  930. font-family: "Font Awesome 5 Free";
  931. font-weight: 900;
  932. content: "\f055";
  933. font-size: 25px;
  934. color:var(--pry-dark-color);
  935. background-color: #ffffff;
  936. border-radius: 100%;
  937. }
  938. .minus a::before{
  939. font-family: "Font Awesome 5 Free";
  940. font-weight: 900;
  941. content: "\f056";
  942. font-size: 25px;
  943. color:var(--pry-dark-color);
  944. background-color: #ffffff;
  945. border-radius: 100%;
  946. }
  947. .lifeline {
  948. margin-top: 10px;
  949. display: flex;
  950. align-items: center;
  951. justify-content: center;
  952. }
  953. .lifeline p{
  954. width: 50%;
  955. margin-bottom: 10px;
  956. font-weight: 700;
  957. }
  958. .lifeline img{
  959. width: 25%;
  960. }
  961. .role-container {
  962. display: flex;
  963. }
  964. .role-container .content {
  965. width: 50%;
  966. background-color: #ffffff;
  967. padding: 15px;
  968. border: 2px solid #fff;
  969. margin-right: 10px;
  970. }
  971. .role-container .content p {
  972. margin-bottom: 12px;
  973. font-size: 17px;
  974. }
  975. .role-container .content h5 {
  976. letter-spacing: 1.1px;
  977. font-size: 17px;
  978. font-weight: bold;
  979. color: var(--pry-color);
  980. }
  981. .role-container .content:hover {
  982. border: 2px solid var(--pry-color);
  983. cursor: pointer;
  984. }
  985. .family-fund img {
  986. width: 100%;
  987. }
  988. .dropdown-menu.sm.d-hide {
  989. display: none;
  990. }
  991. .img-list {
  992. list-style: none;
  993. }
  994. .img-list li {
  995. display: flex;
  996. align-items: center;
  997. margin-bottom: 10px;
  998. padding-bottom: 10px;
  999. border-bottom: 1px solid #ddd;
  1000. }
  1001. .img-list img {
  1002. width: 60px;
  1003. height: 60px;
  1004. margin-right: 10px;
  1005. object-fit: cover;
  1006. }
  1007. .affiliates {
  1008. text-align: center;
  1009. }
  1010. .affiliates img {
  1011. height:40px;
  1012. width:120px;
  1013. object-fit: contain;
  1014. filter: grayscale(1) invert(1);
  1015. margin: 0 10px;
  1016. opacity: .8;
  1017. }
  1018. .reviews {
  1019. display: flex;
  1020. align-items: center;
  1021. justify-content: space-between;
  1022. }
  1023. .reviews span {
  1024. width:120px;
  1025. }
  1026. .stars {
  1027. font-size: 20px;
  1028. margin-bottom: 10px;
  1029. }
  1030. .reviews .btn:hover {
  1031. transform: scale(1.1);
  1032. transition: .5s;
  1033. }
  1034. .contact {
  1035. display: flex;
  1036. justify-content: space-between;
  1037. }
  1038. .contact > div {
  1039. width: 48%;
  1040. padding: 20px;
  1041. }
  1042. .contact .phone {
  1043. background-color: var(--pry-dark-color);
  1044. display: flex;
  1045. flex-direction: column;
  1046. align-items: center;
  1047. color: #fff;
  1048. position: relative;
  1049. }
  1050. .phone img {
  1051. position: absolute;
  1052. left:0;
  1053. bottom:0;
  1054. width: 40px;
  1055. }
  1056. .links ul li{
  1057. display: inline;
  1058. margin-right: 20px;
  1059. font-size: 20px;
  1060. text-transform: uppercase;
  1061. font-weight: 500;
  1062. }
  1063. .social {
  1064. display: flex;
  1065. margin-top: 30px;
  1066. }
  1067. .social a {
  1068. height: 40px;
  1069. display: flex;
  1070. align-items: center;
  1071. justify-content: center;
  1072. width: 40px;
  1073. font-size: 25px;
  1074. border: 1.5px solid var(--pry-color);
  1075. color: var(--pry-color);
  1076. margin-right: 10px;
  1077. }
  1078. .social a:hover {
  1079. background-color: var(--pry-color);
  1080. color: #fff;
  1081. }
  1082. .partners {
  1083. text-align: right;
  1084. }
  1085. .partners p, .partners p a{
  1086. font-size: 15px;
  1087. font-weight: 500;
  1088. margin-bottom: 12px;
  1089. color: var(--pry-color);
  1090. }
  1091. .partners p a:hover {
  1092. color: var(--pry-dark-color);
  1093. }
  1094. footer {
  1095. background-color: #F1F6F4;
  1096. border-top: 3px solid var(--pry-color);
  1097. }
  1098. footer p {
  1099. font-size: 15.5px;
  1100. opacity: .8;
  1101. }
  1102. footer .btn-sm {
  1103. font-size: 13px;
  1104. opacity: 1;
  1105. }
  1106. footer .text-sm {
  1107. font-size: 13px;
  1108. }
  1109. footer ul {
  1110. list-style: none;
  1111. padding-left: 0;
  1112. }
  1113. footer li {
  1114. padding-bottom: 10px;
  1115. }
  1116. footer a {
  1117. font-weight: 300;
  1118. font-size: 15px;
  1119. color: #000;
  1120. text-decoration: none;
  1121. }
  1122. footer a:hover {
  1123. color: var(--text-pry-color);
  1124. opacity: 1;
  1125. }
  1126. .social-links {
  1127. display: flex;
  1128. flex-wrap: wrap;
  1129. gap: 10px;
  1130. }
  1131. .social-links a {
  1132. width: 40px;
  1133. height: 40px;
  1134. border-radius: 100%;
  1135. background-color: #ffffff;
  1136. display: grid;
  1137. place-items: center;
  1138. color: var(--sec-color);
  1139. transition: .4s;
  1140. font-size: 17px;
  1141. }
  1142. .social-links a:hover {
  1143. color: #fff;
  1144. background-color: var(--sec-color);
  1145. transition: .4s;
  1146. }
  1147. .content-flex {
  1148. display: flex;
  1149. }
  1150. .content-flex .sidebar {
  1151. flex-basis: 25%;
  1152. border-right: 1px solid #ddd;
  1153. }
  1154. .content-flex .content {
  1155. flex-basis: 75%;
  1156. }
  1157. .img-overlay {
  1158. background:rgb(21, 65, 89);
  1159. }
  1160. .img-overlay img{
  1161. width: 100%;
  1162. opacity: 0.6;
  1163. }
  1164. .search-image {
  1165. position: relative;
  1166. max-width: 100px;
  1167. }
  1168. .search-image i {
  1169. position: absolute;
  1170. bottom:0;
  1171. left:65%;
  1172. }
  1173. .grey-pill {
  1174. background-color: #EDEEF2;
  1175. color: var(--pry-color);
  1176. border-radius: 100px;
  1177. padding: 1px;
  1178. width: 31%;
  1179. padding: 6px 20px;
  1180. font-size: 16px;
  1181. margin-right:10px;
  1182. margin-bottom:10px;
  1183. }
  1184. .mobile {
  1185. display: none;
  1186. }
  1187. .select2-container {
  1188. width: 100% !important;
  1189. }
  1190. .select2-container .select2-selection--single {
  1191. height: 31px !important;
  1192. }
  1193. .select2-container--default .select2-selection--single {
  1194. border: 1px solid #ced4da !important;
  1195. }
  1196. .select2-container .select2-selection--single .select2-selection__rendered {
  1197. margin-top: 0;
  1198. }
  1199. .select2-container--default .select2-selection--single .select2-selection__arrow b {
  1200. margin-top: 1px !important;
  1201. }
  1202. /* Edit new patient */
  1203. .profile-picture {
  1204. width: 70px;
  1205. height: 70px;
  1206. border-radius: 50%;
  1207. overflow: hidden;
  1208. border: 1px solid #ddd;
  1209. text-align: center;
  1210. background-color: #fff;
  1211. padding-top: 12px;
  1212. }
  1213. .profile-picture img {
  1214. width: 45px;
  1215. height: 45px;
  1216. border-radius: 50%;
  1217. object-fit: contain;
  1218. }
  1219. .large-title span.text-pry {
  1220. font-family: 'Futura-Demi' !important;
  1221. }
  1222. .large-title,
  1223. .step-large-title {
  1224. font-size: 48px;
  1225. font-family: 'Futura-Demi' !important;
  1226. color: var(--text-pry-color);
  1227. }
  1228. .step-large-title {
  1229. font-size: 30px;
  1230. margin: 30px 0;
  1231. }
  1232. .mutated-caption {
  1233. color: #a5a5a5;
  1234. font-size: 17px;
  1235. font-weight: 600;
  1236. }
  1237. .steps-forms-wrap {
  1238. width: 100%;
  1239. display: flex;
  1240. flex-wrap: wrap;
  1241. border: 1px solid #ECEDEF;
  1242. border-right: none;
  1243. border-bottom: none;
  1244. }
  1245. .steps-forms-wrap .step {
  1246. padding: 30px 50px;
  1247. border-bottom: 1px solid #ECEDEF;
  1248. border-right: 1px solid #ECEDEF;
  1249. transition: 0.3s;
  1250. -webkit-box-flex: 0;
  1251. -ms-flex: 0 0 33.333% !important;
  1252. flex: 0 0 33.333% !important;
  1253. max-width: 33.333%;
  1254. }
  1255. .steps-forms-wrap .step.full-width {
  1256. -ms-flex: 0 0 100% !important;
  1257. flex: 0 0 100% !important;
  1258. max-width: 100%;
  1259. }
  1260. /* .steps-forms-wrap .step:hover, */
  1261. .steps-forms-wrap .step.active {
  1262. cursor: pointer;
  1263. box-shadow: 1px 12px 24px 4px rgba(0,0,0,0.21);
  1264. -webkit-box-shadow: 1px 12px 24px 4px rgba(0,0,0,0.21);
  1265. -moz-box-shadow: 1px 12px 24px 4px rgba(0,0,0,0.21);
  1266. transition: 0.3s;
  1267. }
  1268. .steps-forms-wrap .step.inactive {
  1269. pointer-events: none;
  1270. }
  1271. .steps-forms-wrap .step.inactive .btn-primary,
  1272. .steps-forms-wrap .step.inactive .btn-pry {
  1273. background-color: #DAD8DA !important;
  1274. border-color: #DAD8DA !important;
  1275. color: #9FA0A5;
  1276. }
  1277. .steps-forms-wrap .step.inactive .icon-completed,
  1278. .steps-forms-wrap .step.inactive a,
  1279. .steps-forms-wrap .step.inactive .text-sec-color {
  1280. color: #DAD8DA;
  1281. }
  1282. .steps-forms-wrap .step .step-title {
  1283. font-weight: bold;
  1284. font-size: 16px;
  1285. display: flex;
  1286. align-items: center;
  1287. justify-content: center;
  1288. margin: 10px 0 30px 0;
  1289. }
  1290. .steps-forms-wrap .step .step-title span {
  1291. display: block;
  1292. width: 25px;
  1293. height: 25px;
  1294. border-radius: 50%;
  1295. background-color: #8495A7;
  1296. margin-right: 10px;
  1297. color: #fff;
  1298. font-size: 14px;
  1299. line-height: 0px;
  1300. display: grid;
  1301. place-items:center;
  1302. }
  1303. .steps-forms-wrap .step.active .step-title span {
  1304. background-color: var(--pry-color);
  1305. }
  1306. .steps-forms-wrap .step .step-content {
  1307. min-height: 120px;
  1308. }
  1309. .steps-forms-wrap .step .edit-step {
  1310. text-decoration: underline;
  1311. font-size: 13px;
  1312. cursor: pointer;
  1313. font-weight: 600;
  1314. color: var(--text-pry-color);
  1315. }
  1316. .steps-forms-wrap .step .icon-completed {
  1317. color: var(--pry-color);
  1318. font-size: 55px;
  1319. }
  1320. .steps-forms-wrap .step.with-icon {
  1321. position: relative;
  1322. padding-top: 65px;
  1323. }
  1324. .steps-forms-wrap .step.with-icon .icon {
  1325. position: absolute;
  1326. top: -40px;
  1327. left: 50%;
  1328. transform: translateX(-50%);
  1329. width: 100px;
  1330. height: 100px;
  1331. border-radius: 50%;
  1332. border: 1px solid #ddd;
  1333. background-color: #fff;
  1334. text-align: center;
  1335. padding-top: 20px;
  1336. }
  1337. .dark-circle {
  1338. position: absolute;
  1339. color: var(--pry-dark-color);
  1340. font-size: 17em;
  1341. opacity: .9;
  1342. right: -.1em;
  1343. bottom:-.1em;
  1344. }
  1345. .light-circle {
  1346. position: absolute;
  1347. color: var(--pry-color);
  1348. font-size: 17em;
  1349. opacity: .9;
  1350. right: .3em;
  1351. bottom:-.4em;
  1352. }
  1353. .circle-left, .circle-right {
  1354. color: rgba(251, 176, 45, 0.2);
  1355. position: absolute;
  1356. font-size: 15em;
  1357. }
  1358. .circle-left {
  1359. left: -1.3em;
  1360. top: -1em;
  1361. }
  1362. .circle-right {
  1363. right: -1.3em;
  1364. bottom: -1em;
  1365. }
  1366. .lh-stepper {
  1367. width: 100%;
  1368. display: flex;
  1369. flex-flow: row;
  1370. position: relative;
  1371. counter-reset: step-count;
  1372. list-style-type: none;
  1373. margin-top: 25px;
  1374. margin-bottom: 50px;
  1375. }
  1376. .lh-stepper li {
  1377. position: absolute;
  1378. top: 0;
  1379. }
  1380. .lh-stepper li:nth-child(1) {
  1381. left: 0%;
  1382. }
  1383. .lh-stepper li:nth-child(2) {
  1384. left: calc(50%);
  1385. }
  1386. .lh-stepper li:nth-child(3) {
  1387. left: 100%;
  1388. }
  1389. .lh-stepper li:not(:last-child):before {
  1390. position: absolute;
  1391. top: 14px;
  1392. left: 34px;
  1393. content: "";
  1394. height: 2px;
  1395. width: 381.666667px;
  1396. background: #D3D5D8;
  1397. }
  1398. .lh-stepper li:after {
  1399. content: counter(step-count);
  1400. counter-increment: step-count;
  1401. width: 30px;
  1402. height: 30px;
  1403. display: grid;
  1404. place-items:center;
  1405. border-radius: 50%;
  1406. line-height: 0px;
  1407. text-align: center;
  1408. font-weight: 800;
  1409. font-size: 13px;
  1410. background: white;
  1411. color: #D3D5D8;
  1412. border: 2px solid #D3D5D8;
  1413. }
  1414. .lh-stepper li.active .step-name {
  1415. color: var(--pry-color);
  1416. font-weight: 700;
  1417. }
  1418. .lh-stepper li.active:after {
  1419. color: var(--pry-color);
  1420. border-color: var(--pry-color);
  1421. background: #fff;
  1422. }
  1423. .lh-stepper li.pending:after {
  1424. color: var(--pry-color);
  1425. border-color: var(--pry-color);
  1426. background: #fff;
  1427. }
  1428. .lh-stepper li.pending .step-name,
  1429. .lh-stepper li.passed .step-name {
  1430. color: var(--pry-color);
  1431. }
  1432. .lh-stepper li.passed:before,
  1433. .lh-stepper li.pending:before {
  1434. background: var(--pry-color);
  1435. }
  1436. .lh-stepper li.passed:after {
  1437. color: #fff;
  1438. border-color: var(--pry-color);
  1439. background: var(--pry-color);
  1440. }
  1441. .lh-stepper li .step-name {
  1442. position: absolute;
  1443. top: 40px;
  1444. left: -57px;
  1445. color: #D3D5D8;
  1446. text-align: center;
  1447. width: 170px;
  1448. }
  1449. .lh-stepper li .step-name.address {
  1450. width: 145px;
  1451. }
  1452. .muted-cancel-link {
  1453. font-size: 12px;
  1454. text-decoration: underline;
  1455. font-weight: 600;
  1456. }
  1457. .muted-cancel-link:hover {
  1458. text-decoration: underline;
  1459. }
  1460. .badge.active-badge,
  1461. .badge.inactive-badge {
  1462. padding: 12px 15px;
  1463. border-radius: 20px;
  1464. font-weight: bold;
  1465. margin-bottom: 15px;
  1466. text-align: center;
  1467. display: block;
  1468. white-space: normal;
  1469. }
  1470. .badge.active-badge {
  1471. background-color: #ffedd3;
  1472. color: #FF9500;
  1473. }
  1474. .badge.inactive-badge {
  1475. background-color: #DEE1E4;
  1476. color: #797979;
  1477. }
  1478. .btn-outline-secondary.btn-light {
  1479. border-color: #ddd;
  1480. }
  1481. .p-tagline {
  1482. font-size: 15px;
  1483. }
  1484. .page-summary-large {
  1485. margin-top: 50px;
  1486. }
  1487. .page-summary-large .summary {
  1488. font-weight: bold;
  1489. font-size: 21px;
  1490. color: var(--text-pry-color);
  1491. }
  1492. .address-modal-d-none {
  1493. display: none;
  1494. }
  1495. .create-patients {
  1496. min-height: 80vh;
  1497. display: flex;
  1498. flex-direction: column;
  1499. }
  1500. #navBar {
  1501. z-index: 1;
  1502. }
  1503. /* end edit new patient */
  1504. @media screen and (max-width:991px) {
  1505. .announcement {
  1506. display: block;
  1507. }
  1508. .special h4 {
  1509. padding: 10px 0;
  1510. margin-bottom: 0;
  1511. }
  1512. .special img {
  1513. display: none;
  1514. }
  1515. .special-content {
  1516. padding: 10px;
  1517. }
  1518. .special-content p {
  1519. margin: 0;
  1520. }
  1521. .title {
  1522. font-size: 25px;
  1523. }
  1524. .outreach-container div, .blue-card {
  1525. max-width: 100%;
  1526. width:100%;
  1527. margin-right: 0;
  1528. }
  1529. .flex-container .size-4 {
  1530. flex-basis: 40%;
  1531. }
  1532. .contact {
  1533. display: block;
  1534. }
  1535. .contact > div {
  1536. width: 100%;
  1537. margin-bottom: 20px;
  1538. }
  1539. .footer, .social{
  1540. justify-content: center;
  1541. text-align: center;
  1542. }
  1543. .partners {
  1544. margin-top: 20px;
  1545. text-align: center;
  1546. }
  1547. .role-container {
  1548. flex-wrap: wrap;
  1549. }
  1550. .role-container .content {
  1551. width: 100%;
  1552. margin-bottom: 20px;
  1553. }
  1554. .lifeline p {
  1555. width: 40%;
  1556. }
  1557. .btn-pry, .blue-card, .btn-pry-light {
  1558. font-size: 16px;
  1559. }
  1560. #navBar {
  1561. position: absolute;
  1562. width: 100%;
  1563. background-color: #ffffff;
  1564. top: 80px;
  1565. right: 0;
  1566. padding: 0;
  1567. border-top: 1px solid #eee;
  1568. box-shadow: 0 10px 10px #ccc;
  1569. }
  1570. #navBar.dashboard-nav {
  1571. top:64px;
  1572. }
  1573. .top {
  1574. padding: 20px 10px;
  1575. }
  1576. .navbar-nav {
  1577. margin-left: 0;
  1578. }
  1579. .navbar-nav li{
  1580. display: block;
  1581. }
  1582. .nav-item {
  1583. border-bottom: 1px solid #eee;
  1584. }
  1585. .nav-links {
  1586. position: absolute;
  1587. right: 60px;
  1588. top:17px;
  1589. }
  1590. .nav-links ul{
  1591. list-style: none;
  1592. }
  1593. .nav-links ul li{
  1594. display: inline-block;
  1595. margin-right: 10px;
  1596. }
  1597. .navbar-toggler {
  1598. color: var(--pry-dark-color);
  1599. border:1px solid var(--pry-dark-color);
  1600. background-color: #fff;
  1601. padding: 12px;
  1602. margin-bottom: 0;
  1603. margin-right: 12px;
  1604. }
  1605. .navbar-toggler img {
  1606. margin-top: -3px;
  1607. }
  1608. .navbar-toggler:hover img{
  1609. filter: invert(1);
  1610. color: #fff;
  1611. }
  1612. nav {
  1613. padding: 0 10px;
  1614. }
  1615. .flex-row > div {
  1616. width: 48.5%;
  1617. }
  1618. .web, .navBarWeb{
  1619. display: none !important;
  1620. }
  1621. .mobile, .family{
  1622. display: block;
  1623. }
  1624. .plq {
  1625. width: 50%;
  1626. margin: 20px 0;
  1627. }
  1628. .plq p {
  1629. font-size: 16px !important;
  1630. }
  1631. .flex-footer, .flex-card{
  1632. flex-wrap: wrap;
  1633. justify-content: center;
  1634. }
  1635. .flex-footer > div{
  1636. width: 35%;
  1637. margin-bottom: 20px;
  1638. }
  1639. .flex-footer .text-center{
  1640. text-align: left !important;
  1641. }
  1642. }
  1643. @media screen and (max-width:767px) {
  1644. .flex-container, .content-flex {
  1645. display: block;
  1646. }
  1647. .img-overlay, .sidebar h4 {
  1648. display: none;
  1649. }
  1650. .content-flex .sidebar {
  1651. padding-top: 20px;
  1652. border:none;
  1653. }
  1654. .content-flex .content {
  1655. padding-left: 0 !important;
  1656. padding-right: 0 !important;
  1657. }
  1658. .flex-container .size-4 {
  1659. margin-bottom: 20px;
  1660. }
  1661. .steps-container .content {
  1662. flex-basis: 100%;
  1663. margin-right: 0;
  1664. }
  1665. .lifeline {
  1666. display: block;
  1667. text-align: center;
  1668. }
  1669. .lifeline p {
  1670. width: 100%;
  1671. }
  1672. .content .ps-4 {
  1673. padding-left: 0 !important;
  1674. }
  1675. .grey-pill {
  1676. width: 100%;
  1677. }
  1678. .family {
  1679. padding: 100px 40px;
  1680. }
  1681. .flex-footer > div{
  1682. width: 46%;
  1683. margin-right: 20px;
  1684. margin-bottom: 20px;
  1685. }
  1686. .flex-footer img {
  1687. max-width: 100%;
  1688. }
  1689. }
  1690. @media screen and (max-width:545px) {
  1691. .logo {
  1692. margin-left: 10px;
  1693. }
  1694. .flex-row > div {
  1695. margin-right: 0;
  1696. width: 100%;
  1697. }
  1698. .flower2 {
  1699. width: 25%;
  1700. }
  1701. .plq {
  1702. width: 100%;
  1703. }
  1704. .nav-links {
  1705. display: none;
  1706. }
  1707. .top .p-5 {
  1708. padding: 20px !important;
  1709. }
  1710. .flex-center {
  1711. flex-wrap: wrap;
  1712. }
  1713. .flex-center > .ms-5{
  1714. margin-left: 0 !important;
  1715. }
  1716. .ord-1 {
  1717. order: 1;
  1718. }
  1719. .ord-2 {
  1720. order: 2;
  1721. }
  1722. .img-card > .d-flex img {
  1723. display: none;
  1724. }
  1725. .flex-footer > div, .flex-center > div{
  1726. width: 100%;
  1727. margin-bottom: 20px;
  1728. }
  1729. .flex-card > div {
  1730. width: 100% !important;
  1731. }
  1732. .mb-100 {
  1733. width: 100%;
  1734. }
  1735. }
  1736. @media (min-width: 1300px) {
  1737. .wide-container {
  1738. max-width: 1300px;
  1739. }
  1740. }
  1741. .sticky-header {
  1742. position: sticky;
  1743. top: 0;
  1744. margin-top: -1px;
  1745. border-top: 0 !important;
  1746. }
  1747. .border-through {
  1748. border:1.1px solid #ddd;
  1749. height: 0;
  1750. margin-top: 30px;
  1751. margin-bottom: 10px;
  1752. display: grid;
  1753. place-items:center;
  1754. width: 90%;
  1755. margin-inline: auto;
  1756. position: relative;
  1757. }
  1758. .border-through p {
  1759. background-color: #ffffff;
  1760. padding-inline: 25px;
  1761. position: absolute;
  1762. top:-30px;
  1763. }
  1764. .aqua {
  1765. color: #2AB7CA;
  1766. }
  1767. .shdw {
  1768. box-shadow: 0px 10px 24px #EDEDED;
  1769. }
  1770. .calendar {
  1771. width: 40%;
  1772. padding: 0 !important;
  1773. border:none !important;
  1774. }
  1775. .calendar .bg-aqua {
  1776. color: #fff;
  1777. padding: 29px;
  1778. }
  1779. .calendar .bg-aqua h4 {
  1780. font-weight: 600;
  1781. font-size: 24px;
  1782. line-height: 33px;
  1783. }
  1784. .calendar .bg-aqua p {
  1785. margin-top: 15px;
  1786. font-weight: 600;
  1787. font-size: 17px;
  1788. margin-bottom: 0;
  1789. }
  1790. .calendar .doc {
  1791. border-bottom: 2px solid #fff;
  1792. padding-bottom: 3px;
  1793. }
  1794. .calendar .book-online-section {
  1795. text-align: center;
  1796. /* border-left: 1px solid #C1D5E5;
  1797. border-right: 1px solid #C1D5E5; */
  1798. padding: 5px 25px;
  1799. }
  1800. .calendar .book-online-section h4 {
  1801. font-weight: 600;
  1802. font-size: 24px;
  1803. line-height: 33px;
  1804. }
  1805. .calendar .book-online-section p {
  1806. font-weight: 500;
  1807. font-size: 17px;
  1808. line-height: 23px;
  1809. color: var(--text-pry-color);
  1810. }
  1811. .authed-picker[slot-picker] .slot-picker {
  1812. border-bottom: 1px solid #C1D5E5;
  1813. margin-bottom: 1rem;
  1814. }
  1815. .calendar .slot-picker {
  1816. /* border-top: 1px solid #C1D5E5;
  1817. border-right: 1px solid #C1D5E5;
  1818. border-left: 1px solid #C1D5E5; */
  1819. padding: 0;
  1820. }
  1821. .table-container {
  1822. overflow-y: hidden;
  1823. overflow-x: hidden;
  1824. width: 100%;
  1825. max-width: 480px;
  1826. position: relative;
  1827. }
  1828. .table-container:hover {
  1829. overflow-y: scroll;
  1830. overflow-y: overlay;
  1831. }
  1832. .slot-picker .table-container {
  1833. max-width: 480px;
  1834. }
  1835. @media screen
  1836. and (min-device-width: 992px)
  1837. and (max-device-width: 1024px)
  1838. and (-webkit-min-device-pixel-ratio: 1) {
  1839. .slot-picker .calendar-nav {
  1840. margin-left: 25px;
  1841. }
  1842. }
  1843. @media (max-width: 1024px) {
  1844. .slot-picker .table-container {
  1845. max-width: 88%;
  1846. }
  1847. }
  1848. @media (max-width: 991px) {
  1849. .table-container {
  1850. overflow-y: scroll;
  1851. }
  1852. }
  1853. /*.table-container .scrollbar {
  1854. right: 0;
  1855. height: 50px;
  1856. top: 60px;
  1857. position: absolute;
  1858. width: 6px;
  1859. background: #2ab7ca38;
  1860. z-index: 9999;
  1861. border-radius: 4px;
  1862. }*/
  1863. .table-container:hover {
  1864. /*overflow-y: overlay;*/
  1865. }
  1866. .calendar table {
  1867. /* table-layout: fixed; */
  1868. width: 100%;
  1869. margin: 0;
  1870. }
  1871. .calendar table th, .calendar table td{
  1872. border-color: #C1D5E5 !important;
  1873. white-space: nowrap;
  1874. text-align: center;
  1875. padding: 0 !important;
  1876. }
  1877. .calendar table tr:last-child td {
  1878. padding-bottom: 8px !important;
  1879. }
  1880. .calendar table td {
  1881. font-family: 'Graphik';
  1882. font-size: 14px;
  1883. line-height: 100%;
  1884. text-align: center;
  1885. color: var(--text-pry-color);
  1886. }
  1887. .calendar table td .slot {
  1888. display: inline-block;
  1889. margin-bottom: 10px;
  1890. border: 1px solid #E8EAED;
  1891. padding: 0;
  1892. border-radius: 3px;
  1893. color: #08415c;
  1894. font-size: 14px;
  1895. height: 26px;
  1896. line-height: 24px;
  1897. width: calc(100% - 16px);
  1898. }
  1899. .calendar table th {
  1900. font-weight: 500;
  1901. font-size: 14px;
  1902. line-height: 17px;
  1903. padding: 10px 0 !important;
  1904. color: #08415C;
  1905. text-transform: uppercase;
  1906. background-color: #FFF;
  1907. text-align: center;
  1908. }
  1909. /*.calendar table th:after {*/
  1910. /* position: absolute;*/
  1911. /* bottom: -1px;*/
  1912. /* left: 0;*/
  1913. /* width: 100%;*/
  1914. /* content: "";*/
  1915. /* border-top: 1px solid #C1D5E5;*/
  1916. /*}*/
  1917. .table-container {
  1918. scrollbar-width: thin;
  1919. scrollbar-color: #DDD transparent;
  1920. }
  1921. .table-container::-webkit-scrollbar-track
  1922. {
  1923. -webkit-box-shadow: inset 0 0 6px #F5F5F5;
  1924. background-color: transparent;
  1925. margin-top: 54px;
  1926. }
  1927. .table-container::-webkit-scrollbar
  1928. {
  1929. width: 6px;
  1930. background-color: transparent;
  1931. }
  1932. .table-container::-webkit-scrollbar-thumb
  1933. {
  1934. background-color: #DDD;
  1935. border-radius: 6px;
  1936. margin-left: 2px;
  1937. }
  1938. .calendar table tbody:empty ~ .calendar>table th:after {
  1939. border-top: none;
  1940. }
  1941. .calendar table td {
  1942. padding: 5px 0;
  1943. text-align: center;
  1944. border-left: 0 !important;
  1945. border-top: 0 !important;
  1946. border-bottom: 0 !important;
  1947. border-right: 0 !important;
  1948. }
  1949. .calendar table th, .calendar table td {
  1950. /*max-width: 90px;
  1951. min-width: 90px;*/
  1952. }
  1953. .calendar .book {
  1954. text-align: center;
  1955. border: 1px solid #C1D5E5;
  1956. }
  1957. .calendar-nav {
  1958. position: relative;
  1959. width: 100%;
  1960. padding: 0;
  1961. /*background-color: #2AB7CA !important;*/
  1962. }
  1963. .calendar-nav a {
  1964. min-width: 29px;
  1965. height: 54px;
  1966. line-height: 54px;
  1967. text-align: center;
  1968. }
  1969. #btn-continue-booking {
  1970. transition: background-color 0.3s ease, border-color 0.3s ease;
  1971. }
  1972. /*.calendar-nav a {
  1973. position: absolute;
  1974. top: 0px;
  1975. height: 53px;
  1976. width: 30px;
  1977. background-color: #ecfdff !important;
  1978. z-index: 100;
  1979. padding-top: 16px;
  1980. text-align: center;
  1981. }
  1982. .calendar-nav a i {
  1983. color: #08415C !important;
  1984. }
  1985. .calendar-nav a:first-child {
  1986. left: 0;
  1987. }
  1988. .calendar-nav a:last-child {
  1989. right: 0;
  1990. }*/
  1991. @media screen and (min-width:1200px) {
  1992. .container {
  1993. max-width: 1200px !important;
  1994. }
  1995. }
  1996. @media screen and (max-width:1099px) {
  1997. .navbar-nav.me-auto {
  1998. margin-left: auto !important;
  1999. margin-right: 10px !important;
  2000. }
  2001. .flex-card > div {
  2002. width: 48%;
  2003. }
  2004. }
  2005. @media screen and (max-width:991px) {
  2006. .calendar {
  2007. width: 100%;
  2008. }
  2009. .top-links .container {
  2010. height: auto;
  2011. }
  2012. .top-links .navbar-nav{
  2013. flex-direction: row;
  2014. }
  2015. .top-links .nav-item{
  2016. border-bottom: 0;
  2017. }
  2018. .dropdown-menu.wide{
  2019. display: none !important;
  2020. }
  2021. .dropdown-menu.sm.d-hide.show{
  2022. display: block;
  2023. }
  2024. .dropdown-menu.sm {
  2025. box-shadow: none !important;
  2026. width: 100%;
  2027. }
  2028. .dropdown-menu li{
  2029. border-top:1px solid #eee;
  2030. }
  2031. .reviews {
  2032. display: flex;
  2033. justify-content: center;
  2034. width: 100%;
  2035. }
  2036. .reviews span {
  2037. display: none;
  2038. }
  2039. }
  2040. @media screen and (max-width:500px) {
  2041. .calendar {
  2042. max-width: calc(100vw - 30px);
  2043. }
  2044. .calendar .book {
  2045. padding: 20px;
  2046. }
  2047. .list {
  2048. display: block;
  2049. }
  2050. .featured {
  2051. gap: 20px;
  2052. }
  2053. .featured img {
  2054. max-width: 100px;
  2055. }
  2056. }
  2057. .slot-td {
  2058. cursor: pointer;
  2059. font-size: 13px;
  2060. padding: 0 !important;
  2061. vertical-align: bottom !important;
  2062. padding-bottom: 4px !important;
  2063. }
  2064. .slot-td .slot:hover {
  2065. background: aliceblue;
  2066. }
  2067. .slot-td.selected .slot {
  2068. background: #FB6107;
  2069. border-color: #FB6107;
  2070. color: #fff;
  2071. }
  2072. .devices-list {
  2073. list-style-position: inside;
  2074. }
  2075. .devices-list img {
  2076. max-width: 90px;
  2077. margin-right: 0.75rem;
  2078. border-radius: 4px;
  2079. }
  2080. ul.dashboard-list {
  2081. /*list-style-position: inside;*/
  2082. }
  2083. ul.dashboard-list>li {
  2084. margin-bottom: 0.75rem;
  2085. font-size: 110%;
  2086. }
  2087. .assistant-section {
  2088. background: #D7F7FC;
  2089. border: 1px solid rgba(42, 183, 202, 0.3);
  2090. }
  2091. .assistant-section h2 {
  2092. letter-spacing: 0.75px;
  2093. font-size: 25px !important;
  2094. }
  2095. .assistant-section .flex_name .info {
  2096. margin-left: 17px;
  2097. }
  2098. .assistant-section .flex_name .info h4 {
  2099. font-size: 25px;
  2100. font-weight: bold;
  2101. }
  2102. .assistant-section .flex_name .info p {
  2103. font-size: 16px;
  2104. font-weight: bold;
  2105. }
  2106. .assistant-section .btn {
  2107. height: 45px !important;
  2108. line-height: 45px !important;
  2109. }
  2110. .assistant-section .element-underline {
  2111. border-bottom: 1px solid #FB6107;
  2112. }
  2113. .social-icon {
  2114. max-width: 22px;
  2115. }
  2116. .font-size-small {
  2117. font-size: 0.8rem;
  2118. }
  2119. .signup-divider {
  2120. margin: 1rem -1rem;
  2121. border-color: #ccc;
  2122. }
  2123. .patient-details-modal {
  2124. /* position: fixed;
  2125. top: 0;
  2126. left: 0;
  2127. width: 100%;
  2128. height: 100%;
  2129. overflow: auto;
  2130. display: flex;
  2131. background: #0001;
  2132. align-items: center;
  2133. justify-content: center;
  2134. padding-top: 50px; */
  2135. }
  2136. .patient-details-modal-body {
  2137. /* width: 500px;
  2138. max-width: calc(100vw - 2rem);
  2139. background: #fff;
  2140. padding: 1rem;
  2141. border-radius: 5px; */
  2142. /* box-shadow: 0 0 10px #ccc; */
  2143. }
  2144. .ui-datepicker-month {
  2145. margin-right: 4px !important;
  2146. }
  2147. .mobile {
  2148. display: none;
  2149. }
  2150. .reschedule-mobile-link {
  2151. display: none;
  2152. }
  2153. #mobile-progress-steps.sticky {
  2154. position: sticky !important;
  2155. background-color: #fbfbfc;
  2156. z-index: 1;
  2157. width: calc(100% + 30px);
  2158. padding: 15px 0 30px 0;
  2159. border-bottom: 1px solid #ddd;
  2160. }
  2161. .about_content ul {
  2162. margin-left: 15px;
  2163. }
  2164. /*RESPONSIVE*/
  2165. /*
  2166. ##Device = Desktops
  2167. ##Screen = 1281px to higher resolution desktops
  2168. */
  2169. @media (min-width: 1281px) and (max-width: 1366px) {
  2170. }
  2171. /*
  2172. ##Device = Laptops, Desktops
  2173. ##Screen = B/w 1025px to 1280px
  2174. */
  2175. @media (min-width: 1025px) and (max-width: 1280px) {
  2176. }
  2177. /*
  2178. ##Device = Tablets, Ipads (portrait)
  2179. ##Screen = B/w 768px to 1024px
  2180. */
  2181. @media (min-width: 768px) and (max-width: 1024px) {
  2182. #update-new-patient {
  2183. padding: 30px 0 !important;
  2184. }
  2185. .large-title, .step-large-title {
  2186. font-size: 26px;
  2187. }
  2188. .lh-stepper {
  2189. margin-top: 0;
  2190. margin-bottom: 60px;
  2191. }
  2192. .lh-stepper li:nth-child(1) {
  2193. left: 0%;
  2194. }
  2195. .lh-stepper li:nth-child(2) {
  2196. left: calc(45%);
  2197. }
  2198. .lh-stepper li:nth-child(3) {
  2199. left: 90%;
  2200. }
  2201. .lh-stepper li:not(:last-child):before {
  2202. width: 236.666667px;
  2203. }
  2204. .col-md-1.desktop {
  2205. display: none !important;
  2206. }
  2207. }
  2208. /*
  2209. ##Device = Tablets, Ipads (landscape)
  2210. ##Screen = B/w 768px to 1024px
  2211. */
  2212. @media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  2213. #update-new-patient {
  2214. padding: 30px 0 !important;
  2215. }
  2216. .large-title, .step-large-title {
  2217. font-size: 26px;
  2218. }
  2219. .lh-stepper {
  2220. margin-top: 0;
  2221. margin-bottom: 60px;
  2222. }
  2223. .lh-stepper li:nth-child(1) {
  2224. left: 0%;
  2225. }
  2226. .lh-stepper li:nth-child(2) {
  2227. left: calc(45%);
  2228. }
  2229. .lh-stepper li:nth-child(3) {
  2230. left: 90%;
  2231. }
  2232. .lh-stepper li:not(:last-child):before {
  2233. width: 236.666667px;
  2234. }
  2235. .col-md-1.desktop {
  2236. display: none !important;
  2237. }
  2238. }
  2239. /*
  2240. ##Device = Low Resolution Tablets, Mobiles (Landscape)
  2241. ##Screen = B/w 481px to 767px
  2242. */
  2243. @media (min-width: 481px) and (max-width: 768px) {
  2244. .desktop {
  2245. display: none !important;
  2246. }
  2247. #update-new-patient {
  2248. padding: 30px 0 !important;
  2249. }
  2250. .large-title, .step-large-title {
  2251. font-size: 26px;
  2252. }
  2253. .lh-stepper {
  2254. margin-top: 0;
  2255. margin-bottom: 60px;
  2256. }
  2257. .lh-stepper li:nth-child(1) {
  2258. left: 0%;
  2259. }
  2260. .lh-stepper li:nth-child(2) {
  2261. left: calc(45%);
  2262. }
  2263. .lh-stepper li:nth-child(3) {
  2264. left: 90%;
  2265. }
  2266. .lh-stepper li:not(:last-child):before {
  2267. width: 165.666667px;
  2268. }
  2269. .steps-forms-wrap .step {
  2270. -ms-flex: 0 0 100% !important;
  2271. flex: 0 0 100% !important;
  2272. max-width: 100%;
  2273. padding: 30px 30px;
  2274. }
  2275. .completed-step {
  2276. flex-direction: row !important;
  2277. align-items: center;
  2278. }
  2279. .completed-step .completed-step-summary {
  2280. display: flex;
  2281. flex-direction: row;
  2282. align-items: center;
  2283. width: 92%;
  2284. }
  2285. .completed-step .completed-step-summary .c-content {
  2286. width: 90%;
  2287. }
  2288. .steps-forms-wrap .step .icon-completed {
  2289. font-size: 35px;
  2290. margin-right: 30px;
  2291. }
  2292. .steps-forms-wrap .step .edit-step span.mobile {
  2293. font-size: 28px;
  2294. margin-left: 30px;
  2295. color: #545151;
  2296. }
  2297. .mobile-w-100 {
  2298. width: 100%;
  2299. }
  2300. button.mobile-w-100 {
  2301. margin-bottom: 5px;
  2302. }
  2303. }
  2304. /*
  2305. ##Device = Most of the Smartphones Mobiles (Portrait)
  2306. ##Screen = B/w 320px to 479px
  2307. */
  2308. @media (min-width: 320px) and (max-width: 480px) {
  2309. .desktop {
  2310. display: none !important;
  2311. }
  2312. #update-new-patient {
  2313. padding: 30px 0 !important;
  2314. }
  2315. .large-title, .step-large-title {
  2316. font-size: 26px;
  2317. }
  2318. .lh-stepper {
  2319. margin-top: 0;
  2320. margin-bottom: 60px;
  2321. }
  2322. .lh-stepper li:nth-child(1) {
  2323. left: 0%;
  2324. }
  2325. .lh-stepper li:nth-child(2) {
  2326. left: calc(45%);
  2327. }
  2328. .lh-stepper li:nth-child(3) {
  2329. left: 90%;
  2330. }
  2331. .lh-stepper li:not(:last-child):before {
  2332. width: 102.666667px;
  2333. }
  2334. .lh-stepper li .step-name {
  2335. font-size: 14px;
  2336. }
  2337. .lh-stepper li .step-name {
  2338. left: -55px;
  2339. width: 130px;
  2340. }
  2341. .steps-forms-wrap .step {
  2342. -ms-flex: 0 0 100% !important;
  2343. flex: 0 0 100% !important;
  2344. max-width: 100%;
  2345. padding: 30px 30px;
  2346. }
  2347. .completed-step {
  2348. flex-direction: row !important;
  2349. align-items: center;
  2350. }
  2351. .completed-step .completed-step-summary {
  2352. display: flex;
  2353. flex-direction: row;
  2354. align-items: center;
  2355. }
  2356. .steps-forms-wrap .step .icon-completed {
  2357. font-size: 35px;
  2358. margin-right: 30px;
  2359. }
  2360. .steps-forms-wrap .step .edit-step span.mobile {
  2361. font-size: 28px;
  2362. margin-left: 30px;
  2363. color: #545151;
  2364. }
  2365. .mobile-w-100 {
  2366. width: 100%;
  2367. }
  2368. button.mobile-w-100 {
  2369. margin-bottom: 5px;
  2370. }
  2371. .reschedule-mobile-link {
  2372. display: inline-block;
  2373. }
  2374. }
  2375. .fixed-head-table-container {
  2376. overflow:auto;
  2377. max-height:300px;
  2378. border-top: 1px solid #ddd;
  2379. }
  2380. .fixed-head-table-container thead th {
  2381. position: sticky;
  2382. top: 0;
  2383. background: #fff;
  2384. border-top: 0 !important;
  2385. border-bottom: 1px solid #dee2e6 !important;
  2386. }
  2387. .fixed-head-table-container table {
  2388. width: 100%;
  2389. border-top: 0 !important;
  2390. margin: 0 !important;
  2391. }