New UI layout
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

list.page.css 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821
  1. @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
  2. :root {
  3. --topNavHeightMob:65px;
  4. --topNavHeight: 75px;
  5. --rtrWidth: 60px;
  6. --lftWidth: 275px;
  7. --tpMenuPad: 30px;
  8. --icnPadng: 10px 0px;
  9. --prmBgColor: rgb(244, 244, 221);
  10. --secdBgColor: #fafaf3;
  11. --secdSubColor: #f4f4f3;
  12. --lstPgArc: 15px;
  13. --frmIfrmeWidth: 500px;
  14. --frmIfrmeHeight: 550px;
  15. --frmIfrmeHeightPopUp: 80%;
  16. }
  17. a {
  18. color: #000 !important;
  19. text-decoration: none !important;
  20. }
  21. body {
  22. margin: 0px;
  23. padding: 0px;
  24. font-family: "Poppins", sans-serif;
  25. }
  26. ul,
  27. li {
  28. margin: 0px;
  29. padding: 0px;
  30. margin-left: 0px;
  31. margin-right: 0px;
  32. padding-left: 0px;
  33. padding-right: 0px;
  34. list-style: none;
  35. }
  36. .list-page {
  37. padding: 0px !important;
  38. display: flex;
  39. flex-direction: column;
  40. margin: 0px !important;
  41. }
  42. .tp-bar {
  43. height: var(--topNavHeight);
  44. display: flex;
  45. flex-direction: row;
  46. list-style: none;
  47. align-items: center;
  48. padding-left: 0px !important;
  49. padding-right: 0px !important;
  50. z-index: 1;
  51. margin-bottom: 0px;
  52. }
  53. ul.tp-bar li {
  54. margin: 0px 5px;
  55. }
  56. ul.tp-bar li:last-child {
  57. margin-right: 20px;
  58. }
  59. li.logo-li {
  60. display: flex;
  61. flex-direction: row;
  62. align-items: center;
  63. width: calc(var(--lftWidth));
  64. margin-left: 0px !important;
  65. }
  66. .logo-li .logo-img {
  67. height: 50px;
  68. margin-left: 15px;
  69. padding: 8px;
  70. }
  71. .btm-bar {
  72. height: calc(100vh - var(--topNavHeight));
  73. display: flex;
  74. flex-direction: row;
  75. }
  76. .lft-nav-bar {
  77. z-index: 1;
  78. position: fixed;
  79. left: 0;
  80. width: var(--lftWidth);
  81. height: calc(100vh - var(--topNavHeight));
  82. display: flex;
  83. flex-direction: row;
  84. }
  85. .lft-nav-bar .lft-nav-bar-1,
  86. .lft-nav-bar .lft-nav-bar-2 {
  87. list-style: none;
  88. margin-bottom: 0px !important;
  89. padding-left: 0px;
  90. }
  91. .lft-nav-bar-1 {
  92. padding: 0px 5px !important;
  93. width: var(--rtrWidth);
  94. display: flex;
  95. flex-direction: column;
  96. align-items: center;
  97. background-color: var(--prmBgColor);
  98. }
  99. .lft-nav-bar-1 li {
  100. margin: 4px 0px;
  101. }
  102. .lft-nav-bar-2 li {
  103. margin: 6px 0px;
  104. }
  105. .lft-nav-bar-2 li {
  106. font-size: 16px;
  107. padding: 0px 15px;
  108. }
  109. .lft-nav-bar-2 {
  110. width: calc(var(--lftWidth) - var(--rtrWidth));
  111. display: flex;
  112. flex-direction: column;
  113. background-color: var(--secdBgColor);
  114. transition: width 0.3s;
  115. }
  116. .rtr-nav-bar {
  117. display: none !important;
  118. position: fixed;
  119. right: 0;
  120. width: 0px;
  121. height: calc(100vh - var(--topNavHeight));
  122. background-color: var(--prmBgColor);
  123. list-style: none;
  124. display: flex;
  125. flex-direction: column;
  126. align-items: center;
  127. }
  128. .rtr-nav-bar span {
  129. margin: var(--icnPadng);
  130. }
  131. .ctr-lst-pge {
  132. position: fixed;
  133. overflow-y: hidden;
  134. z-index: 0;
  135. width: calc();
  136. left: var(--lftWidth);
  137. right: 0px;
  138. height: calc(100vh - var(--topNavHeight));
  139. margin: 0px 20px;
  140. background-color: var(--secdSubColor);
  141. border-top-left-radius: var(--lstPgArc);
  142. border-top-right-radius: var(--lstPgArc);
  143. }
  144. .srch-bar {
  145. width: 35%;
  146. margin-left: 15px !important;
  147. }
  148. .form-control#searchBar {
  149. padding: 10px;
  150. box-shadow: none;
  151. width: 100%;
  152. }
  153. .ml-auto {
  154. margin-left: auto !important;
  155. }
  156. .mr-auto {
  157. margin-right: auto !important;
  158. }
  159. .mt-auto {
  160. margin-top: auto !important;
  161. }
  162. .mb-auto {
  163. margin-bottom: auto !important;
  164. }
  165. .la,
  166. [class^="ri-"] {
  167. font-size: 1.2em;
  168. color: black;
  169. }
  170. .lft-nav-bar-2 [class^="ri-"] {
  171. font-size: 1.35em;
  172. color: black;
  173. }
  174. .icn-circle:hover {
  175. color: white;
  176. }
  177. .icn-circle {
  178. font-size: 12px;
  179. background-color: firebrick;
  180. color: white;
  181. padding: 8px;
  182. text-decoration: none;
  183. }
  184. .hdr {
  185. font-size: 16px;
  186. padding: 10px 5px;
  187. font-weight: 600;
  188. text-transform: capitalize;
  189. background-color: #e3e3e3;
  190. }
  191. .mnNvIcn,
  192. .mnNvIcn:focus {
  193. box-shadow: none !important;
  194. }
  195. .mnNvIcn-div {
  196. width: var(--rtrWidth);
  197. display: flex;
  198. justify-content: center;
  199. align-items: center;
  200. }
  201. .mnNvIcn {
  202. text-decoration: none;
  203. margin: 0px 5px;
  204. }
  205. .mnNvIcn:hover {
  206. /* background-color: var(--prmBgColor); */
  207. background-color: #e8eaed;
  208. padding: 3px 7px;
  209. border-radius: 50%;
  210. }
  211. .lft-nav-bar.lft-nav-bar-Wrap {
  212. width: var(--rtrWidth);
  213. transition: width 0.3s;
  214. }
  215. .lft-nav-bar.lft-nav-bar-Wrap .lft-nav-bar-2 {
  216. display: none;
  217. transition: display 0.3s;
  218. }
  219. .bdy-ul {
  220. height: 100%;
  221. overflow-y: scroll;
  222. }
  223. .ctr-lst-pge.lft-nav-bar-Wrap {
  224. left: var(--rtrWidth);
  225. transition: left 0.3s;
  226. }
  227. a.badge {
  228. font-size: 14px;
  229. font-weight: 500;
  230. color: inherit;
  231. text-decoration: none;
  232. }
  233. .badge.badge-soft-green,
  234. .badge.badge-soft-success {
  235. background: #e6fbf2;
  236. color: #00d67f;
  237. }
  238. /* scroll bar start here*/
  239. ::-webkit-scrollbar {
  240. width: 6px;
  241. }
  242. /* Track */
  243. ::-webkit-scrollbar-track {
  244. background: #f1f1f1;
  245. }
  246. /* Handle */
  247. ::-webkit-scrollbar-thumb {
  248. background: #888;
  249. }
  250. /* Handle on hover */
  251. ::-webkit-scrollbar-thumb:hover {
  252. background: #555;
  253. }
  254. /* Scroll bar End Here */
  255. .accordion-button::after {
  256. background-size: 0.9rem !important;
  257. }
  258. a[role="button"]:focus {
  259. box-shadow: none !important;
  260. }
  261. #notifi-list .item-li:first .accordion-button:not(.collapsed) {
  262. border-top-left-radius: var(--lstPgArc);
  263. border-top-right-radius: var(--lstPgArc);
  264. }
  265. input[type="checkbox"] {
  266. box-shadow: none !important;
  267. border-radius: 2px;
  268. }
  269. .snd-fd-biz {
  270. border-top: 1px solid rgba(0, 0, 0, 0.15);
  271. }
  272. .tp-bar li a {
  273. padding: 3px 7px;
  274. margin-top: 3px;
  275. }
  276. .nav-lft-item {
  277. padding: 3px 7px;
  278. display: flex;
  279. flex-direction: column;
  280. align-items: center;
  281. }
  282. .nav-lft-item span:nth-child(1) {
  283. padding: 3px 7px;
  284. }
  285. .nav-lft-item span:nth-child(2) {
  286. font-size: 13px;
  287. color: #000;
  288. font-weight: 400;
  289. }
  290. .tp-bar li a.nav-lft-item:hover {
  291. padding-bottom: 5px !important;
  292. padding: 8px;
  293. background-color: #e8eaed;
  294. border-radius: 50%;
  295. }
  296. button {
  297. box-shadow: none !important;
  298. }
  299. button:focus {
  300. box-shadow: none !important;
  301. }
  302. .plus {
  303. color: #000;
  304. margin-right: 8px;
  305. }
  306. .plus + span {
  307. margin-right: 8px;
  308. margin-bottom: 2px;
  309. }
  310. .create {
  311. display: flex !important;
  312. align-items: center;
  313. color: #000 !important;
  314. padding: 8px 8px !important;
  315. background-color: var(--prmBgColor) !important;
  316. border-color: var(--prmBgColor) !important;
  317. border-top-left-radius: 18px !important;
  318. border-bottom-left-radius: 18px !important;
  319. border-top-right-radius: 18px !important;
  320. border-bottom-right-radius: 18px !important;
  321. }
  322. .sub-nav-item {
  323. display: flex;
  324. align-items: center;
  325. padding: 4px 10px !important;
  326. font-size: 14px;
  327. text-decoration: none;
  328. color: #000;
  329. }
  330. .sub-nav-item.active,
  331. .sub-nav-item:hover {
  332. color: #000;
  333. background-color: var(--prmBgColor);
  334. border-top-left-radius: 16px;
  335. border-top-right-radius: 16px;
  336. border-bottom-left-radius: 16px;
  337. border-bottom-right-radius: 16px;
  338. }
  339. .sub-nav-item span {
  340. margin-right: 10px;
  341. }
  342. .nav-lft-item.active span:nth-child(1),
  343. .nav-lft-item:hover span:nth-child(1) {
  344. background-color: var(--secdBgColor);
  345. border-radius: 50%;
  346. padding: 3px 7px;
  347. }
  348. ul.ul-drpdown li {
  349. padding: 0px !important;
  350. }
  351. ul.hdr-ul {
  352. display: flex;
  353. flex-direction: row;
  354. align-items: center;
  355. background-color: var(--secdBgColor);
  356. border-top-left-radius: var(--lstPgArc);
  357. border-top-right-radius: var(--lstPgArc);
  358. height: 50px;
  359. }
  360. .chk-box-btn {
  361. background-color: unset;
  362. box-shadow: none;
  363. }
  364. ul.hdr-ul li {
  365. margin: 0px 8px;
  366. }
  367. .pggtn {
  368. padding: 0px 8px;
  369. display: flex;
  370. flex-direction: row;
  371. align-items: center;
  372. }
  373. .li-pgn {
  374. display: flex;
  375. flex-direction: row;
  376. align-items: center;
  377. margin-left: auto !important;
  378. }
  379. .pggtn .lss-than,
  380. .pggtn .grtr-than {
  381. margin: 0px 8px;
  382. }
  383. .nt-actve .la,
  384. .nt-actve [class^="ri-"] {
  385. color: #e3e3e3 !important;
  386. }
  387. .rtr-nav-bar .rtr-item {
  388. margin: 4px;
  389. padding: 6px 12px;
  390. }
  391. .rtr-nav-bar .rtr-item:hover {
  392. background-color: var(--secdBgColor);
  393. border-radius: 50%;
  394. padding: 6px 10px;
  395. }
  396. .frm-ifre {
  397. width: var(--frmIfrmeWidth);
  398. z-index: 1;
  399. background-color: #f3f3f3;
  400. position: absolute;
  401. bottom: 0px;
  402. margin-right: 1px;
  403. border: 1px solid #dadada;
  404. border-radius: 3px;
  405. }
  406. .frm-hdr {
  407. padding: 0px 10px;
  408. height: 40px;
  409. display: flex;
  410. flex-direction: row;
  411. align-items: center;
  412. }
  413. .frm-hdr .ctrl {
  414. margin-left: auto;
  415. height: 40px;
  416. display: flex;
  417. flex-direction: row;
  418. align-items: center;
  419. }
  420. .frm-hdr .ctrl .la {
  421. font-size: 16px;
  422. color: #000;
  423. }
  424. .frm-hdr .ctrl a {
  425. margin: 0px 8px;
  426. }
  427. .ld-frm-src {
  428. width: -webkit-fill-available;
  429. height: calc(var(--frmIfrmeHeight) - 42px);
  430. margin: 1px;
  431. }
  432. .wrap-iframe .ld-frm-src {
  433. margin: 0px !important;
  434. }
  435. #crte-btn-lst {
  436. max-height: 400px;
  437. overflow-y: scroll;
  438. }
  439. .wrap-iframe {
  440. display: flex;
  441. flex-direction: row;
  442. justify-content: center;
  443. align-items: center;
  444. position: absolute;
  445. top: 0px;
  446. z-index: 1;
  447. width: 100%;
  448. height: 100%;
  449. }
  450. [data-ispop_up="false"] .app-title-ifrm {
  451. width: 150px;
  452. white-space: nowrap;
  453. overflow: hidden;
  454. text-overflow: ellipsis;
  455. }
  456. .frm-ifre .frm-bdy {
  457. line-height: 0 !important;
  458. display: flex;
  459. flex-direction: row;
  460. }
  461. .ChtAppIfrme {
  462. margin-left: var(--rtrWidth);
  463. height: calc(100vh - var(--topNavHeight));
  464. overflow: hidden;
  465. }
  466. .bdy-ul .accordion-button::after {
  467. margin-bottom: -8px;
  468. }
  469. .wrap-iframe + div .frm-ifre {
  470. z-index: 0 !important;
  471. }
  472. .t-sec-min {
  473. font-size: 14px;
  474. width: 10%;
  475. overflow: hidden;
  476. text-overflow: ellipsis;
  477. white-space: nowrap;
  478. text-align: right;
  479. }
  480. .apps-list {
  481. width: 360px;
  482. max-height: 450px;
  483. overflow-y: scroll;
  484. overflow-x: hidden;
  485. flex-wrap: wrap;
  486. }
  487. .appsBind {
  488. display: flex;
  489. flex-direction: column;
  490. margin: 8px !important;
  491. width: 72px;
  492. justify-content: center;
  493. align-items: center;
  494. }
  495. .appsBind .appTitle {
  496. font-size: 14px;
  497. text-align: center;
  498. }
  499. /* dont delete start here */
  500. .ctr-lst-pge .bdy-ul .pdng {
  501. font-size: 14px;
  502. display: flex;
  503. flex-direction: row;
  504. align-items: center;
  505. padding: 6px 15px 6px 20px !important;
  506. cursor: pointer;
  507. border-bottom: 1px solid #bebcbc;
  508. position: relative;
  509. }
  510. .ctr-lst-pge .bdy-ul .pdng.lst-Notifi:hover {
  511. -webkit-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.75);
  512. -moz-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.75);
  513. box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.75);
  514. }
  515. .ctr-lst-pge .bdy-ul .pdng:hover .hover {
  516. display: block;
  517. }
  518. .wi-chck {
  519. width: 60px;
  520. display: flex;
  521. align-items: center;
  522. flex-direction: row;
  523. }
  524. .wi-chck .wi-item {
  525. margin: 0px 8px;
  526. }
  527. .wi-sbjt-msge {
  528. display: flex;
  529. align-items: center;
  530. flex-direction: row;
  531. min-width: 0;
  532. width: 100%;
  533. }
  534. .wi-msge {
  535. flex-basis: 0;
  536. box-flex: 1;
  537. flex-grow: 1;
  538. flex-shrink: 1;
  539. text-align: left;
  540. }
  541. .wi-time {
  542. text-align: right;
  543. font-size: 12px;
  544. font-weight: 500;
  545. }
  546. .hdr-ul .dropdown-toggle-split {
  547. padding: 4px !important;
  548. }
  549. .ctr-lst-pge .bdy-ul .pdng .hover {
  550. display: none;
  551. position: absolute;
  552. right: 10px;
  553. padding-right: 20px;
  554. background-color: var(--secdSubColor);
  555. }
  556. .ctr-lst-pge .bdy-ul .pdng .hover ul li.hover-item {
  557. float: left;
  558. }
  559. .lst-Notifi[data-isreaded="2"],
  560. .ctr-lst-pge .bdy-ul .pdng.lst-Notifi[data-isreaded="2"] .hover {
  561. background-color: #cbceca;
  562. opacity: 0.8;
  563. }
  564. .ctr-lst-pge .bdy-ul .pdng.lst-Notifi:hover .wi-time.time {
  565. display: none !important;
  566. }
  567. .svg-icons {
  568. width: 30px;
  569. }
  570. .apps-loading {
  571. width: 330px;
  572. height: 100vh;
  573. background-color: var(--secdSubColor);
  574. position: fixed;
  575. right: 0;
  576. }
  577. #list-page {
  578. height: 100vh;
  579. }
  580. .appsBind:hover {
  581. cursor: pointer;
  582. }
  583. .wi-from.wi-item span {
  584. text-transform: capitalize;
  585. }
  586. .lst-Notifi[data-isreaded="8"] span {
  587. font-weight: 500;
  588. }
  589. .lst-Notifi[data-isreaded="2"] span {
  590. font-weight: 400;
  591. color: #6c757d !important;
  592. }
  593. .lst-Notifi[data-isreaded="8"] .wi-msge span,
  594. .lst-Notifi[data-isreaded="2"] .wi-msge span {
  595. color: #6c757d !important;
  596. font-weight: 400;
  597. }
  598. .pdng.lst-Notifi .ri-star-line {
  599. color: #6c757d;
  600. opacity: 0.5;
  601. }
  602. .pdng.lst-Notifi:hover .ri-star-line,
  603. .pdng.lst-Notifi:hover .wi-item .form-check-input {
  604. opacity: 1;
  605. }
  606. .pdng.lst-Notifi .wi-item .form-check-input {
  607. border: 1px solid#6c757d !important;
  608. border-radius: 4px;
  609. opacity: 0.5;
  610. }
  611. .pdng.lst-Notifi .wi-item .form-check-input:checked {
  612. opacity: 1;
  613. background-color: #b2b2b2;
  614. }
  615. .ml-0 {
  616. margin-left: 0px !important;
  617. }
  618. .chck-box-ul.dropdown-menu.show {
  619. border: 0px;
  620. }
  621. .dropdown-item.active,
  622. .dropdown-item:active,
  623. .dropdown-item:hover {
  624. background-color: var(--prmBgColor) !important;
  625. }
  626. .ctr-lst-pge.apps-loaded {
  627. width: calc(100% - var(--rtrWidth) - 330px - 48px) !important;
  628. }
  629. .ctr-lst-pge.apps-loaded-tr {
  630. width: calc(100% - var(--lftWidth) - 330px - 48px) !important;
  631. }
  632. .frm_hdr[data-frm_hdr="true"]{
  633. display: none !important;
  634. }
  635. /* Mobile, tab View start here */
  636. @media only screen and (max-width: 1024px) {
  637. .btm-bar .lft-nav-bar{
  638. display: none;
  639. }
  640. .btm-bar .ctr-lst-pge{
  641. left:0px !important;
  642. }
  643. .sdr-nme{
  644. width: 45px;
  645. height: 45px;
  646. border-radius: 50%;
  647. background-color: #00d67f;
  648. }
  649. .hdr-ul{
  650. display: none !important;
  651. }
  652. .ctr-lst-pge{
  653. border-top-left-radius:0px;
  654. border-top-right-radius:0px;
  655. }
  656. .ctr-lst-pge .bdy-ul .pdng{
  657. padding: 8px !important;
  658. }
  659. .wi-chck{
  660. width: unset;
  661. }
  662. .wi-item:first-of-type{
  663. display: none;
  664. }
  665. }
  666. @media only screen and (max-width: 600px) {
  667. .srch-bar{
  668. display: none;
  669. }
  670. .ctr-lst-pge{
  671. margin: 0px !important;
  672. }
  673. ul.tp-bar li:last-child{
  674. margin-right: 10px;
  675. }
  676. .mnNvIcn{
  677. margin:0px !important;
  678. padding: 0px !important;
  679. }
  680. .mnNvIcn-div{
  681. justify-content: unset;
  682. margin-left: 10px;
  683. flex-basis: content;
  684. }
  685. .tp-bar{
  686. height: 65px;
  687. }
  688. .tp-bar .logo-li{
  689. flex-basis: content;
  690. }
  691. .wi-chck{
  692. flex-basis: content;
  693. }
  694. .apps-loading{
  695. width: 100%;
  696. top: var(--topNavHeightMob);
  697. }
  698. .frm-ifre{
  699. width: 100%;
  700. }
  701. }
  702. /* Mobile, tab View End here */
  703. /*common Class start Here*/
  704. .w-5p{
  705. width: 5px;
  706. }.w-10p{
  707. width: 10px;
  708. }.w-15p{
  709. width: 15px;
  710. }.w-20p{
  711. width: 20px;
  712. }.w-25p{
  713. width: 25px;
  714. }.w-30p{
  715. width: 30px;
  716. }.w-35p{
  717. width: 35px;
  718. }.w-40p{
  719. width: 40px;
  720. }.w-45p{
  721. width: 45px;
  722. }.w-50p{
  723. width: 50px;
  724. }.w-55p{
  725. width: 55px;
  726. }.w-60p{
  727. width: 60px;
  728. }.w-65p{
  729. width: 65px;
  730. }.w-70p{
  731. width: 70px;
  732. }.fw-400{
  733. font-weight: 400;
  734. }.fw-500{
  735. font-weight: 500;
  736. }.fw-600{
  737. font-weight: 600;
  738. }.fw-700{
  739. font-weight: 700;
  740. }.font-10{
  741. font-size: 10px;
  742. }.font-11{
  743. font-size: 11px;
  744. }.font-12{
  745. font-size: 12px;
  746. }.font-13{
  747. font-size: 13px;
  748. }.font-14{
  749. font-size: 14px;
  750. }.font-15{
  751. font-size: 15px;
  752. }.font-16{
  753. font-size: 16px;
  754. }.font-17{
  755. font-size: 17px;
  756. }.font-18{
  757. font-size: 18px;
  758. }.font-19{
  759. font-size: 19px;
  760. }.font-20{
  761. font-size: 20px;
  762. }.font-21{
  763. font-size: 21px;
  764. }.font-22{
  765. font-size: 22px;
  766. }
  767. /*common Class End Here*/