Built files from Bizgaze WebServer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.ext.css 102KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584
  1. /*Fonts*/
  2. @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
  3. @font-face {
  4. font-family: "summernote";
  5. font-style: normal;
  6. font-weight: normal;
  7. src: url("../../../../libs/summernote/font/summernote.eot?1d9aeaaff0a8939558a45be6cd52cd4c");
  8. src: url("../../../../libs/summernote/font/summernote.eot?1d9aeaaff0a8939558a45be6cd52cd4c#iefix") format("embedded-opentype"),url("../../../../libs/summernote/font/summernote.woff?1d9aeaaff0a8939558a45be6cd52cd4c") format("woff"),url("../../../../libs/summernote/font/summernote.ttf?1d9aeaaff0a8939558a45be6cd52cd4c") format("truetype")
  9. }
  10. /*End-Fonts*/
  11. .hidden {
  12. display: none !important;
  13. }
  14. #bizgaze_body {
  15. height: 100%;
  16. display: flex;
  17. flex-direction: column;
  18. padding-right: 0px;
  19. overflow: hidden;
  20. }
  21. .biz-wrapper {
  22. height: 100%;
  23. position: relative;
  24. background: none;
  25. display: flex;
  26. flex-direction: column;
  27. }
  28. .biz-pg-wrapper {
  29. background: #F4F6F7;
  30. padding: 0;
  31. position: relative;
  32. overflow: hidden;
  33. flex-grow: 1;
  34. }
  35. ._bizgaze_detail_container {
  36. height: 100%;
  37. display: flex;
  38. flex-direction: column;
  39. }
  40. .templateviewer-body {
  41. overflow: hidden auto;
  42. background-color: #fff;
  43. flex-grow: 1;
  44. height: 100%;
  45. }
  46. .chart-viewer-card {
  47. height: 100%;
  48. border: 0;
  49. }
  50. .chart-viewer-card .card-body {
  51. flex-grow: 1;
  52. height: 100%;
  53. }
  54. /*create popup*/
  55. .modal-open .modal {
  56. overflow-y: hidden !important;
  57. }
  58. ._bizgaze_popup_container {
  59. left: auto !important;
  60. }
  61. ._bizgaze_popup_container .modal-body {
  62. overflow-y: auto;
  63. }
  64. ._bizgaze_create_container_EditScreen {
  65. right: auto;
  66. }
  67. ._bizgaze_create_container_EditScreen .modal-body {
  68. overflow-y: auto;
  69. }
  70. .filter-toggle .filter-panel {
  71. right: 0;
  72. }
  73. .biz-wrapper .navbar-search {
  74. top: 0px !important;
  75. z-index: 1040 !important;
  76. }
  77. .biz-wrapper .navbar-search input {
  78. height: 58px !important;
  79. }
  80. .navbar-search-alt .input-group > input {
  81. border-radius: 50px;
  82. }
  83. .biz-settings-panel.notifications-tasks-panel .settings-panel-body,
  84. .biz-settings-panel.notifications-tasks-panel #settingsPanelBodyWrap .simplebar-content {
  85. height: 100% !important;
  86. }
  87. .sticky {
  88. position: fixed;
  89. top: 55px;
  90. width: 100%;
  91. z-index: 1002;
  92. }
  93. .scroller {
  94. overflow: auto;
  95. }
  96. .biz-footer-wrap .footer .dropdown-menu a {
  97. margin-left: 0 !important;
  98. }
  99. .dropdown-menu .custom-control-input {
  100. position: unset !important;
  101. }
  102. .details-footer {
  103. position: fixed;
  104. bottom: 0;
  105. width: 67%;
  106. left: 200px;
  107. }
  108. .details-edit-footer {
  109. position: fixed;
  110. bottom: 0;
  111. width: 19.0%;
  112. /*display: flex;*/
  113. -ms-flex-align: center;
  114. align-items: center;
  115. -ms-flex-pack: end;
  116. justify-content: flex-end;
  117. padding: 1rem;
  118. border-top: 1px solid #e9ecef;
  119. }
  120. .details-footer .portlet-btn-group {
  121. margin-left: 50px;
  122. }
  123. .details-footer .Detail_SaveChanges {
  124. margin-right: 220px;
  125. }
  126. .dashboard-footer .Detail_SaveChanges {
  127. margin-right: 220px;
  128. }
  129. .switch {
  130. cursor: pointer;
  131. position: relative;
  132. }
  133. .switch input {
  134. position: absolute;
  135. opacity: 0;
  136. /*filter: alpha(opacity=0);*/
  137. }
  138. .switch input:checked + span {
  139. background-color: #8ec165;
  140. }
  141. .switch input:checked + span:after {
  142. left: 27px;
  143. }
  144. .switch span {
  145. position: relative;
  146. width: 48px;
  147. height: 22.5px;
  148. border-radius: 25px;
  149. background-color: #fa5542;
  150. border: 2px solid #eee;
  151. border-color: rgba(0, 0, 0, 0.1);
  152. display: inline-block;
  153. -webkit-transition: background-color 0.2s;
  154. transition: background-color 0.2s;
  155. }
  156. .switch span:after {
  157. content: "";
  158. position: absolute;
  159. background-color: #fff;
  160. width: 17px;
  161. top: 1px;
  162. bottom: 1px;
  163. left: 1px;
  164. border-radius: 25px;
  165. -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  166. box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  167. -webkit-transition: left 0.2s;
  168. transition: left 0.2s;
  169. }
  170. .slimScrollDiv {
  171. width: 100% !important;
  172. }
  173. /*Extension*/
  174. .bg-soft-warning {
  175. background-color: rgba(243, 170, 18, .15) !important;
  176. color: hsl(41, 90%, 51%) !important;
  177. }
  178. .custom-fieldset {
  179. background: #fff;
  180. border: 1px solid rgba(230, 230, 230, 0.7);
  181. padding: 1.5rem;
  182. border-radius: .25rem;
  183. font-size: 11px;
  184. }
  185. .card-icon-warning {
  186. color: #ffc107 !important;
  187. background: rgba(234, 147, 12, 0.1) !important;
  188. }
  189. .card-icon-primary {
  190. color: #28ece3 !important;
  191. background: rgba(38, 211, 228, 0.91) !important;
  192. }
  193. .custom-fieldset label {
  194. width: auto;
  195. padding: .625rem 1rem;
  196. background: #fff;
  197. margin-top: -42px;
  198. margin-left: 50px;
  199. font-size: 10px;
  200. display: block;
  201. float: left;
  202. text-transform: uppercase;
  203. }
  204. /*Courosel*/
  205. .sw-carousel-slider-control {
  206. display: -webkit-box;
  207. display: -ms-flexbox;
  208. display: flex;
  209. -webkit-box-orient: horizontal;
  210. -webkit-box-direction: normal;
  211. -ms-flex-direction: row;
  212. flex-direction: row;
  213. -ms-flex-wrap: nowrap;
  214. flex-wrap: nowrap;
  215. -webkit-box-pack: center;
  216. -ms-flex-pack: center;
  217. justify-content: center;
  218. -webkit-box-align: center;
  219. -ms-flex-align: center;
  220. align-items: center;
  221. }
  222. .sw-carousel-slider-control .carousel-control-prev,
  223. .sw-carousel-slider-control .carousel-control-next {
  224. background-color: #e5eef8;
  225. position: relative;
  226. opacity: 1;
  227. width: 1rem;
  228. height: 1rem;
  229. border-radius: 50%;
  230. display: -webkit-box;
  231. display: -ms-flexbox;
  232. display: flex;
  233. -webkit-box-align: center;
  234. -ms-flex-align: center;
  235. align-items: center;
  236. -webkit-box-pack: center;
  237. -ms-flex-pack: center;
  238. justify-content: center;
  239. margin-left: 5px;
  240. -webkit-transition: all .3s;
  241. transition: all .3s;
  242. }
  243. .carousel-item-next,
  244. .carousel-item-prev,
  245. .carousel-item.active {
  246. display: block;
  247. transition: -webkit-transform .6s ease;
  248. transition: transform .6s ease;
  249. transition: transform .6s ease, -webkit-transform .6s ease;
  250. }
  251. .badge.badge-soft-lime-dark {
  252. background: #e7ecb0;
  253. color: #6f7208;
  254. }
  255. .badge.badge-soft-indigo-dark {
  256. background: #9caad8;
  257. color: #0a2042;
  258. }
  259. .text-overflow {
  260. overflow: hidden;
  261. width: 250px;
  262. white-space: nowrap;
  263. text-overflow: ellipsis;
  264. }
  265. .line-dashed {
  266. border-style: dashed;
  267. background: 0 0;
  268. }
  269. .line {
  270. height: 2px;
  271. margin: 10px 0;
  272. font-size: 0;
  273. border-width: 0;
  274. border-top: 1px solid #e8e8e8;
  275. }
  276. .biz-wrapper.biz-vertical-nav .biz-nav {
  277. z-index: 1036 !important;
  278. top: 0 !important;
  279. }
  280. ._bizgaze_create_container {
  281. z-index: 1070;
  282. }
  283. /*/* Tabulator Custom styles*/
  284. .tabulator {
  285. border: 0 !important;
  286. }
  287. .tabulator .tabulator-header {
  288. border-top: none !important;
  289. border-bottom: none !important;
  290. }
  291. .tabulator .tabulator-header .tabulator-col-title {
  292. color: #000 !important;
  293. font-weight: 500;
  294. font-size: 14px;
  295. margin-right: 10px;
  296. }
  297. .tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
  298. padding-right: 5px !important;
  299. }
  300. .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
  301. border-left: 5px solid transparent !important;
  302. border-right: 5px solid transparent !important;
  303. }
  304. .tabulator .tabulator-header .tabulator-col .tabulator-col-content {
  305. padding: 0.25rem !important;
  306. }
  307. .tabulator .tabulator-row {
  308. min-height: 0.5rem;
  309. }
  310. .tabulator-row .tabulator-cell {
  311. font-size: 13px !important;
  312. color: #000006 !important;
  313. /* height: auto !important;*/
  314. max-width: 400px !important;
  315. white-space: normal !important;
  316. /* border-right: none !important;*/
  317. border-right: 2px solid #dee2e6 !important;
  318. padding: 0.15rem 0.25rem !important;
  319. overflow: visible !important;
  320. }
  321. .tabulator-col-title-holder:not(:first-child), .tabulator-row .tabulator-cell:not(:first-child) {
  322. min-width: 80px !important;
  323. }
  324. .tabulator-row .tabulator-cell .tabulator-data-tree-control {
  325. height: 16px !important;
  326. width: 16px !important;
  327. }
  328. .templateviewer-tableview.tabulator .tabulator-tableHolder .tabulator-placeholder span {
  329. width: 100% !important;
  330. align-self: start !important;
  331. font-weight: 500 !important;
  332. padding: 0 !important;
  333. }
  334. .tabulator-row .tabulator-cell:not(.clickable-cell),
  335. .tabulator-row .tabulator-cell.text-underline {
  336. cursor: default;
  337. }
  338. .tabulator .tabulator-footer {
  339. position: relative;
  340. font-weight: 500 !important;
  341. }
  342. .tabulator .tabulator-footer::before {
  343. content: 'Grand Total:';
  344. position: absolute;
  345. left: 3px;
  346. top: 50%;
  347. transform: translateY(-50%);
  348. width: auto;
  349. font-size: 14px;
  350. color: #000;
  351. background-color: #fff;
  352. z-index: 99;
  353. }
  354. .tabulator .tabulator-tableHolder .tabulator-placeholder[tabulator-render-mode=classic] {
  355. min-height: 100%;
  356. min-width: 100%;
  357. }
  358. /*End-Tabulator Custom styles*/
  359. .field-icon {
  360. float: right;
  361. margin-left: -25px;
  362. margin-top: -28px;
  363. position: relative;
  364. z-index: 2;
  365. }
  366. .preloader-container {
  367. position: relative !important;
  368. }
  369. /* owl nav */
  370. .owl-carousel-custom .owl-prev span,
  371. .owl-next span {
  372. color: black;
  373. }
  374. .owl-carousel-custom .owl-prev.disabled span,
  375. .owl-next.disabled span {
  376. color: #8199A3;
  377. }
  378. .owl-carousel-custom .owl-prev span:hover,
  379. .owl-carousel-custom .owl-next span:hover {
  380. color: #8199A3;
  381. }
  382. .owl-carousel-custom .owl-prev,
  383. .owl-carousel-custom .owl-next {
  384. position: absolute;
  385. top: 0;
  386. height: 100%;
  387. outline: none
  388. }
  389. .owl-carousel-custom .owl-prev {
  390. left: -34px;
  391. }
  392. .owl-carousel-custom .owl-next {
  393. right: -34px;
  394. }
  395. /* owl nav */
  396. /* Form Viewer Header Height*/
  397. .dropdown-menu-scrollbar::-webkit-scrollbar,
  398. .biz-custom-scrollbar::-webkit-scrollbar,
  399. .tabulator .tabulator-tableHolder::-webkit-scrollbar,
  400. .simple-scroll-bar::-webkit-scrollbar {
  401. width: 7px;
  402. height: 9px;
  403. }
  404. .dropdown-menu-scrollbar::-webkit-scrollbar-thumb,
  405. .biz-custom-scrollbar::-webkit-scrollbar-thumb,
  406. .tabulator .tabulator-tableHolder::-webkit-scrollbar-thumb,
  407. .simple-scroll-bar::-webkit-scrollbar-thumb {
  408. background: #d6d9da;
  409. border-radius: 7px;
  410. }
  411. /* For Mozilla Support*/
  412. .dropdown-menu-scrollbar,
  413. .biz-custom-scrollbar,
  414. .tabulator-tableHolder,
  415. .simple-scroll-bar {
  416. scrollbar-width: thin;
  417. overflow: auto;
  418. }
  419. /* Input Disabled*/
  420. input:disabled {
  421. cursor: not-allowed;
  422. }
  423. .form-error-message {
  424. position: absolute;
  425. top: 0;
  426. width: 100%;
  427. text-align: center;
  428. margin-left: -10px;
  429. z-index: 99;
  430. }
  431. /*Widget Builder CSS Start Here*/
  432. .nav-tabs.nav-line > .nav-item > .nav-link.settings.active,
  433. .nav-tabs.nav-line > .nav-item > .nav-link.details.active {
  434. background-color: white;
  435. }
  436. .btn-flush-theme.flush-soft-hover.drawer-toggle-link.active.right-aside-togglable#PivotIcon {
  437. display: block;
  438. }
  439. /*.bldr-options-wrap#top-nav-menu {
  440. display: block !important;
  441. }*/
  442. .cursordisbaled:hover {
  443. cursor: not-allowed;
  444. }
  445. .clickEventDisabled {
  446. pointer-events: none;
  447. }
  448. .sp-replacer.sp-light.backgroundcolor-color-picker {
  449. border: 0px;
  450. }
  451. /*Widget Builder CSS End Here*/
  452. /* Container Loading Effect */
  453. .line-loader-container {
  454. position: relative;
  455. }
  456. .line-loader-container.show-loading .line-loader {
  457. display: block;
  458. }
  459. .line-loader {
  460. left: 0;
  461. bottom: 0;
  462. height: 2px;
  463. width: 100%;
  464. /*position: relative;*/
  465. position: absolute;
  466. overflow: hidden;
  467. background-color: #ddd;
  468. display: none;
  469. }
  470. .line-loader:before {
  471. display: block;
  472. position: absolute;
  473. content: "";
  474. left: -200px;
  475. width: 200px;
  476. height: 2px;
  477. background-color: #2980b9;
  478. animation: loading 2s linear infinite;
  479. }
  480. @keyframes loading {
  481. from {
  482. left: -200px;
  483. width: 30%;
  484. }
  485. 50% {
  486. width: 30%;
  487. }
  488. 70% {
  489. width: 70%;
  490. }
  491. 80% {
  492. left: 50%;
  493. }
  494. 95% {
  495. left: 120%;
  496. }
  497. to {
  498. left: 100%;
  499. }
  500. }
  501. /* Container Loading Effect */
  502. .biz-submenu .nav-options-container .nav-group-collapse-link {
  503. position: relative;
  504. display: flex;
  505. align-items: center;
  506. justify-content: space-between;
  507. font-weight: bold;
  508. font-size: 16px;
  509. padding: 10px 15px 10px 12px;
  510. }
  511. .biz-submenu .nav-options-container .nav-group-collapse-link[data-toggle="collapse"][aria-expanded="true"]::after {
  512. -webkit-transform: rotate(-180deg);
  513. -moz-transform: rotate(-180deg);
  514. -ms-transform: rotate(-180deg);
  515. -o-transform: rotate(-180deg);
  516. transform: rotate(-180deg);
  517. }
  518. .biz-submenu .nav-options-container .nav-group-collapse-link[data-toggle="collapse"]::after {
  519. content: '\f2f9';
  520. font: normal normal normal 14px/1 'Material-Design-Iconic-Font';
  521. font-size: 16px;
  522. -webkit-transform: rotate(0deg);
  523. -moz-transform: rotate(0deg);
  524. -ms-transform: rotate(0deg);
  525. -o-transform: rotate(0deg);
  526. transform: rotate(0deg);
  527. -webkit-transition: all 0.4s ease;
  528. -moz-transition: all 0.4s ease;
  529. transition: all 0.4s ease;
  530. }
  531. .biz-right-side-menu #nav-settings-dropdown .dropdown-menu {
  532. left: -50px !important;
  533. }
  534. .nav-group-search-li {
  535. margin: 0px 12px 8px 12px !important;
  536. }
  537. @media (max-width: 1199px) {
  538. .hk-wrapper.hk-horizontal-nav .hk-nav .nicescroll-bar {
  539. min-height: 100vh;
  540. overflow: auto;
  541. }
  542. .biz-wrapper.biz__icon__menu.biz__nav__toggle.biz__submenu.biz-main-menu-hidden .biz-submenu {
  543. left: 0 !important;
  544. }
  545. .biz-wrapper.biz-main-menu-hidden.biz__icon__menu .biz-submenu .navbar-nav .nav-item .nav-link {
  546. padding-left: 20px !important;
  547. }
  548. .biz-wrapper.biz__icon__menu .biz-submenu .navbar-nav.collapse-level-1 .nav-item .collapse-level-1 .nav-link {
  549. padding-left: 30px !important;
  550. }
  551. .hk-wrapper .hk-navbar {
  552. padding-left: 0px !important;
  553. padding-right: 0px !important;
  554. }
  555. .biz-navbar .navbar-nav#biz-layout-1-nav .nav-item.dropdown-notifications.count-double-digit {
  556. padding-right: 30px !important;
  557. }
  558. .biz-navbar .navbar-nav#biz-layout-1-nav .nav-item.dropdown-notifications.count-overflow {
  559. padding-right: 35px !important;
  560. }
  561. .biz-navbar .navbar-brand .brand-img {
  562. height: 30px !important;
  563. }
  564. }
  565. @media (min-width: 1200px) {
  566. .hk-wrapper.hk-horizontal-nav .hk-nav {
  567. position: static !important;
  568. }
  569. .top-navbar.hk-wrapper .hk-navbar a.navbar-toggle-btn {
  570. display: none;
  571. }
  572. .card-header-right .createbuttonhide {
  573. display: none;
  574. }
  575. .top-navbar.hk-wrapper .hk-navbar a.navbar-toggle-btn,
  576. .top-navbar.hk-wrapper .hk-navbar .navbar-nav .nav-item .nav-link {
  577. line-height: 15px !important
  578. }
  579. .layout-2-mobile-menu {
  580. display: none !important;
  581. }
  582. .biz-right-side-menu .nav-date-filter-dp .nav-date-filter-dp-menu {
  583. transform: translate3d(-55px, 10px, 0px) !important;
  584. }
  585. .biz-settings-panel.notifications-tasks-panel .settings-panel-body.no-data {
  586. display: flex;
  587. justify-content: center;
  588. }
  589. .top-navbar.hk-wrapper .navbar-nav .nav-date-filter-item .cmn-daterange-input {
  590. width: 170px;
  591. font-size: 13px;
  592. padding-left: 3px;
  593. padding-right: 3px;
  594. margin-left: 25px;
  595. border-bottom: 0 !important;
  596. }
  597. .top-navbar.hk-wrapper .nav-date-filter-item .cmn-daterange-input:focus {
  598. background-color: rgba(255, 255, 255, 0.1) !important;
  599. border-bottom: 1px solid !important;
  600. }
  601. .top-navbar.hk-wrapper .navbar-nav .nav-date-filter-item .nav-icon-wrap {
  602. position: absolute;
  603. left: 0;
  604. top: 50%;
  605. transform: translateY(-50%);
  606. }
  607. }
  608. .top-navbar.hk-wrapper .hk-navbar a.navbar-toggle-btn {
  609. color: inherit !important;
  610. }
  611. @media (max-width: 1199px) {
  612. .biz-wrapper.biz__icon__menu .biz-main-menu {
  613. width: 50.8px !important;
  614. }
  615. .layout-2-mobile-menu.biz__nav__toggle.biz-wrapper.biz__icon__menu .biz-main-menu {
  616. left: 0px !important
  617. }
  618. .layout-2-mobile-menu.biz__nav__toggle.biz-wrapper.biz__icon__menu .biz-submenu {
  619. left: 60px !important
  620. }
  621. .filters-dropdown-div-top-layout {
  622. display: none !important;
  623. }
  624. }
  625. @media (min-width: 768px) {
  626. .biz-navbar .navbar-nav .nav-item {
  627. padding: 0 15px;
  628. }
  629. }
  630. .edit-portlet-mode .biz-navbar::after,
  631. .edit-portlet-mode .biz-layout-3-left-nav::after,
  632. .edit-portlet-mode .biz-submenu::after,
  633. .edit-portlet-mode .biz-main-menu::after {
  634. content: '';
  635. position: absolute;
  636. top: 0;
  637. right: 0;
  638. bottom: 0;
  639. left: 0;
  640. background-color: #1F2327;
  641. opacity: 0.5;
  642. z-index: 1045;
  643. }
  644. .layout-2-mobile-menu.biz-wrapper.biz__icon__menu .biz-submenu .navbar-nav .nav-item ul li a {
  645. padding: 0.35rem 0 !important;
  646. margin: 0 0 0 2rem !important;
  647. }
  648. /*@media (min-width: 1200px) {
  649. #layout2-nav li.nav-item {
  650. margin-left: 0.5rem !important;
  651. }
  652. }*/
  653. .custom-scollable-container {
  654. cursor: grab;
  655. }
  656. .background-image {
  657. background-position: center !important;
  658. background-repeat: no-repeat !important;
  659. background-attachment: fixed !important;
  660. background-size: cover !important;
  661. }
  662. .biz-wrapper.biz__icon__menu .biz-menu.biz-primary-text-color .biz-submenu ul li.nav-item a strong {
  663. font-weight: normal !important;
  664. }
  665. .divCustomProperties:not(:empty) {
  666. margin: 10px 0;
  667. }
  668. @media (min-width: 1200px) {
  669. .filters-dropdown-div-top-layout button.filterName {
  670. background: #F4F5F6;
  671. color: black;
  672. }
  673. .filters-dropdown-div-top-layout ul li.nav-item a {
  674. color: black;
  675. width: 100%;
  676. border-radius: 5px
  677. }
  678. .filters-dropdown-div-top-layout ul li.nav-item a strong {
  679. font-weight: normal
  680. }
  681. .filters-dropdown-div-top-layout ul li.nav-item:hover {
  682. background: #F4F5F6;
  683. }
  684. .dashboardwidget-container .dashboardwidget-item .card-header-filters {
  685. margin: 0 10px;
  686. }
  687. }
  688. /* Spectrum Color Picker*/
  689. .sp-container .sp-picker-container .sp-input-container input.sp-input {
  690. outline: none;
  691. }
  692. .sp-container .sp-picker-container .sp-input-container input.opacity {
  693. margin-left: 5%;
  694. width: 40%;
  695. cursor: not-allowed;
  696. }
  697. .sp-container .sp-picker-container .sp-button-container button {
  698. outline: none;
  699. }
  700. .sp-container .sp-picker-container .sp-button-container button.sp-choose {
  701. color: #fff;
  702. background-color: #007D88;
  703. }
  704. .sp-container .sp-picker-container .sp-button-container button.sp-cancel {
  705. color: #fff;
  706. background-color: #9e9e9e;
  707. }
  708. .sp-replacer .sp-dd {
  709. display: none;
  710. }
  711. .color-picker-div .sp-replacer.sp-light {
  712. width: 100%;
  713. height: 34px;
  714. border: none;
  715. }
  716. .sp-picker-container .sp-button-container.sp-cf {
  717. font-weight: 500;
  718. }
  719. /* Spectrum Color Picker*/
  720. /* Notification Dropdowns */
  721. @media (min-device-width: 415px) and (max-width: 1199px) {
  722. .hk-wrapper .hk-navbar .navbar-nav .nav-item.dropdown.dropdown-notifications .dropdown-menu,
  723. .biz-wrapper .biz-navbar .navbar-nav .dropdown-menu:not(.nav-date-filter-dp-menu) {
  724. right: 0;
  725. left: auto;
  726. }
  727. }
  728. @media (max-width: 576px) {
  729. .block-on-mobile .btn-outline-light {
  730. padding: 0.1rem 0.5rem !important;
  731. }
  732. .biz-navbar .navbar-nav .dropdown-menu {
  733. width: 100%;
  734. }
  735. li#nav-button-create {
  736. display: block !important;
  737. }
  738. .mb-mode {
  739. display: block !important;
  740. }
  741. .portletwidget-item .mb-mode,
  742. .dashboardwidget-item .mb-mode {
  743. display: none !important;
  744. }
  745. /*padding inside biz-pg-wrapper*/
  746. div#div_detail_profile {
  747. /*detail page padding*/
  748. padding: 0px 10px;
  749. }
  750. div#dashboardwidget-container {
  751. /*dashboard padding*/
  752. padding: 0px 20px;
  753. }
  754. /*details page header */
  755. .biz-header-main-text {
  756. color: rgb(0, 0, 0) !important;
  757. font-weight: 700;
  758. text-transform: capitalize;
  759. font-size: 14px !important;
  760. }
  761. .biz-header-sub-text {
  762. color: rgb(0, 0, 0) !important;
  763. font-weight: 500;
  764. font-size: 12px !important;
  765. }
  766. .biz-detail-avatar {
  767. position: relative;
  768. width: 40px !important;
  769. height: 40px !important;
  770. border-radius: 50%;
  771. display: flex !important;
  772. justify-content: center;
  773. align-items: center;
  774. margin-right: 5px;
  775. }
  776. /*details page header end*/
  777. /*list view in mobile*/
  778. .col,
  779. .col-3 {
  780. min-width: 100%;
  781. }
  782. .userDesignWidgetCardBody .col-3 {
  783. min-width: 25% !important;
  784. }
  785. .templateviewer-body .list-group-item .row .col-10 .row .col-2 {
  786. min-width: 100%;
  787. }
  788. .templateviewer-body .list-group.layout_list_container {
  789. background: #fff;
  790. margin: 0px 0px;
  791. border-radius: 4px;
  792. }
  793. .block-on-mobile {
  794. display: block !important;
  795. }
  796. .branchshotcode {
  797. left: 13px !important;
  798. }
  799. .nav-link.lnk_nav_changebranch {
  800. display: block !important;
  801. align-items: center
  802. }
  803. .nav-link.lnk_nav_changebranch .nav-icon-wrap {
  804. margin-right: 0px;
  805. }
  806. /* .notification-empty-card {
  807. height: 82vh !important;
  808. }*/
  809. /* .biz-body-height {
  810. height: 75vh !important;
  811. }*/
  812. .biz-submenu .navbar-brand {
  813. display: none;
  814. }
  815. .biz-submenu {
  816. padding-top: 10px;
  817. }
  818. /*form inputs*/
  819. label {
  820. margin-bottom: 5px;
  821. margin-top: 5px !important;
  822. color: #B2B5B8 !important;
  823. }
  824. .terms-conditions label.custom-control-label {
  825. color: #00D67F !important;
  826. }
  827. .custom-control-label {
  828. margin-bottom: 0px !important;
  829. margin-top: 0px !important;
  830. }
  831. .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  832. padding: 0px 0px !important;
  833. }
  834. .floating-label-form-group input,
  835. .floating-label-form-group textarea {
  836. background: none;
  837. border: none;
  838. border-radius: 0;
  839. padding-left: 0px !important;
  840. padding-right: 5px;
  841. box-shadow: none !important;
  842. position: relative;
  843. /* font-size: 1.1em; */
  844. resize: none;
  845. }
  846. select.form-control:not([size]):not([multiple]) {
  847. padding: 0px !important;
  848. }
  849. .section_ContactName {
  850. padding: 0px 15px;
  851. }
  852. ._bizgaze_popup_container form .modal-body {
  853. padding-left: 10px !important;
  854. padding-right: 10px !important;
  855. }
  856. .search-clear-items {
  857. right: 30% !important;
  858. }
  859. .user_login_detials {
  860. padding: 6px !important;
  861. background: white;
  862. }
  863. .user_login_detials .user_Name {
  864. font-size: 25px !important;
  865. color: black;
  866. font-weight: 500;
  867. margin-bottom: 10px;
  868. }
  869. .user_login_detials .user_icons_sup {
  870. margin-left: 31px !important;
  871. top: -48px !important;
  872. font-size: 15px;
  873. }
  874. .user_login_detials .notifications_width {
  875. width: 50% !important;
  876. }
  877. .divCustomProperties:not(:empty) {
  878. margin: 4px 0;
  879. }
  880. .print-template-text * {
  881. font-size: 6px !important;
  882. }
  883. .qr-img img{
  884. width:50px !important;
  885. height:50px!important;
  886. }
  887. }
  888. @media (max-width: 767px) {
  889. /*List view top header count font*/
  890. .card-header-left span.biz-highlight-bg-color.biz-count-font {
  891. font-size: 12px !important;
  892. font-weight: 500;
  893. }
  894. .userDesignWidgetCardBody .col-3 {
  895. min-width: 20% !important;
  896. }
  897. .sales-is-offer-avail {
  898. width: 100%;
  899. }
  900. }
  901. /* Notification Dropdowns */
  902. #bizgaze_body .top-navbar.biz-layout-3-top-navbar.hk-wrapper.hk-vertical-nav .hk-navbar.biz-primary-color input.txt_global_search {
  903. box-shadow: none;
  904. border-color: transparent;
  905. background-color: rgba(255, 255, 255, .18);
  906. transition: all 2s linear;
  907. }
  908. .biz-wrapper.biz__icon__menu .biz-menu.biz-primary-color .biz-submenu {
  909. box-shadow: 4px 0 5px -6px #333;
  910. }
  911. .biz-wrapper.biz__icon__menu .biz-submenu .navbar-brand .brand-img {
  912. max-width: 100%;
  913. }
  914. .list-group-item:first-child,
  915. .list-group-item:last-child,
  916. .card-header:first-child,
  917. .card-header:last-child {
  918. border-radius: 0 !important;
  919. }
  920. /* Report Widget Dropdown collapse */
  921. .portletwidget-item .viewer-header {
  922. cursor: pointer
  923. }
  924. .viewer-header[data-toggle="collapse"] .widget-collapse-icon i {
  925. transition: transform .3s ease-in-out;
  926. }
  927. .viewer-header[data-toggle="collapse"][aria-expanded="true"] .widget-collapse-icon i {
  928. transform: rotate(90deg);
  929. }
  930. /* Report Widget Dropdown collapse */
  931. .widget-font {
  932. font-family: inherit;
  933. font-weight: 500 !important;
  934. font-size: 16px;
  935. }
  936. /*.widget-font {
  937. font: normal normal normal 18px/27px Poppins !important;
  938. }*/
  939. .biz-text-primary {
  940. color: #00B0FF !important;
  941. }
  942. .biz-text-dark {
  943. color: #525252 !important;
  944. }
  945. /* structure Inside Content */
  946. .structureContent {
  947. opacity: 0.6;
  948. border: dashed 1px #00B0FF;
  949. border-radius: 5px;
  950. background: azure;
  951. color: cornflowerblue;
  952. }
  953. .structureContent:hover {
  954. opacity: 1;
  955. }
  956. .structure-draggable .structureToDelete + .structureToDelete {
  957. display: none !important;
  958. }
  959. .biz-submenu[data-details_structure="true"] {
  960. left: 0px !important;
  961. width: 260px !important;
  962. }
  963. [data-details_structure="true"] .divpage {
  964. display: none;
  965. }
  966. /* biz-settings-panel */
  967. .biz-settings-panel:not(.notifications-tasks-panel) {
  968. z-index: 9999 !important;
  969. }
  970. .dropdown-menu-float-right-side {
  971. min-width: 350px !important;
  972. max-width: 350px !important;
  973. }
  974. .biz-wrapper .biz-settings-panel .settings-panel-wrap .settings-panel-head a,
  975. .hk-wrapper .biz-settings-panel .settings-panel-wrap .settings-panel-head a {
  976. position: unset !important;
  977. }
  978. .hk-wrapper .biz-settings-panel {
  979. position: fixed;
  980. top: 0;
  981. right: -350px;
  982. width: 350px;
  983. bottom: 0;
  984. z-index: 1040;
  985. border: none;
  986. background: #fff;
  987. -webkit-transition: all 0.4s ease;
  988. -moz-transition: all 0.4s ease;
  989. transition: all 0.4s ease;
  990. }
  991. /* .hk-wrapper .biz-settings-panel .settings-panel-wrap {
  992. padding: 20px;
  993. }*/
  994. .hk-wrapper .biz-settings-panel .settings-panel-wrap .settings-panel-head {
  995. display: -webkit-box;
  996. display: -ms-flexbox;
  997. display: flex;
  998. -webkit-box-align: center;
  999. -ms-flex-align: center;
  1000. align-items: center;
  1001. justify-content: space-between;
  1002. -webkit-justify-content: space-between;
  1003. -ms-flex-pack: space-between;
  1004. }
  1005. .hk-wrapper .biz-settings-panel .settings-panel-wrap .settings-panel-head a {
  1006. color: #ADB5BD;
  1007. position: absolute;
  1008. right: 10px;
  1009. top: 10px;
  1010. }
  1011. .hk-wrapper .biz-settings-panel .settings-panel-wrap .settings-panel-head a .feather-icon {
  1012. display: block;
  1013. }
  1014. .hk-wrapper .biz-settings-panel .settings-panel-wrap .settings-panel-head a .feather-icon > svg {
  1015. height: 18px;
  1016. width: 18px;
  1017. }
  1018. .hk-wrapper .biz-settings-panel .settings-panel-wrap .layout-img-wrap {
  1019. margin-top: 15px;
  1020. }
  1021. .hk-wrapper .biz-settings-panel .settings-panel-wrap .layout-img-wrap a {
  1022. display: inline-block;
  1023. font-size: 0;
  1024. position: relative;
  1025. }
  1026. .hk-wrapper .biz-settings-panel .settings-panel-wrap .layout-img-wrap a img {
  1027. width: 100%;
  1028. }
  1029. .hk-wrapper .biz-settings-panel .settings-panel-wrap .layout-img-wrap a i {
  1030. font-size: 15px;
  1031. position: absolute;
  1032. right: 25px;
  1033. top: 10px;
  1034. opacity: 0;
  1035. height: 20px;
  1036. width: 20px;
  1037. background: #00B0FF;
  1038. border-radius: 50%;
  1039. text-align: center;
  1040. padding-top: 2px;
  1041. color: #fff;
  1042. }
  1043. .hk-wrapper .biz-settings-panel .settings-panel-wrap .layout-img-wrap a.active i {
  1044. opacity: 1;
  1045. }
  1046. .hk-wrapper.biz-settings-toggle .biz-settings-panel {
  1047. right: 0;
  1048. box-shadow: 0 28px 28px rgba(0, 0, 0, 0.07);
  1049. }
  1050. /* biz-settings-panel */
  1051. .no-background {
  1052. background: none;
  1053. }
  1054. .dropdown-menu-left-2 {
  1055. right: 0;
  1056. left: auto;
  1057. }
  1058. /* table Viewer Transparency */
  1059. .background-image .templateviewer-tableview.tabulator {
  1060. background: rgba(255, 255, 255, 0.8) !important;
  1061. }
  1062. /*.templateviewer-tableview.tabulator .tabulator-header .tabulator-col {
  1063. background: inherit !important;
  1064. }*/
  1065. .templateviewer-tableview:not(.widget-template-view,.tabulator) {
  1066. display: flex;
  1067. flex-direction: column;
  1068. overflow-y: auto;
  1069. }
  1070. .templateviewer-tableview.tabulator .tabulator-tableHolder .tabulator-table, .templateviewer-tableview.tabulator {
  1071. background-color: #fff !important;
  1072. }
  1073. .biz_display_name {
  1074. height: 60px !important;
  1075. width: 60px !important;
  1076. }
  1077. .btn.btn-sm {
  1078. border-radius: .25rem !important;
  1079. }
  1080. ._bizgaze_popup_container form .simple-scroll-bar.bg-cyan-light-5 {
  1081. background-color: rgb(245, 245, 245, 0.8) !important;
  1082. }
  1083. /*Close btn styles*/
  1084. ._bizgaze_popup_container .btn-light,
  1085. ._bizgaze_popup_container .btn-close,
  1086. .modal-footer .btn-light,
  1087. .modal-footer .btn-secondary,
  1088. .footer .btn-light,
  1089. .bootbox.modal .bootbox-cancel,
  1090. .card-footer .btn-light,
  1091. .drp-buttons .cancelBtn {
  1092. color: rgb(255, 0, 0) !important;
  1093. background-color: transparent !important;
  1094. background-image: none !important;
  1095. border-color: rgb(255, 0, 0) !important;
  1096. }
  1097. ._bizgaze_popup_container .btn-light:hover,
  1098. ._bizgaze_popup_container .btn-close:hover,
  1099. .modal-footer .btn-light:hover,
  1100. .modal-footer .btn-secondary:hover,
  1101. .footer .btn-light:hover,
  1102. .bootbox.modal .bootbox-cancel:hover,
  1103. .card-footer .btn-light:hover,
  1104. .drp-buttons .cancelBtn:hover {
  1105. color: rgb(255, 255, 255) !important;
  1106. background-color: rgb(255, 0, 0) !important;
  1107. border-color: rgb(255, 0, 0) !important;
  1108. }
  1109. /*End-Close btn styles*/
  1110. /*Notification & Tasks start Here by Sai Sudheer*/
  1111. .notifi_message_overflow {
  1112. display: -webkit-box !important;
  1113. -webkit-line-clamp: 3 !important;
  1114. -webkit-box-orient: vertical !important;
  1115. overflow: hidden !important;
  1116. text-overflow: ellipsis !important;
  1117. cursor: pointer !important;
  1118. text-align: left !important;
  1119. }
  1120. .biz-wrapper.biz-settings-toggle .biz-settings-panel {
  1121. right: 50px;
  1122. }
  1123. .biz-wrapper .biz-settings-panel {
  1124. transition: all 0.4s ease, top 0s, left 0s, right 0s, bottom 0s;
  1125. }
  1126. /*.top-navbar.hk-horizontal-nav .biz-settings-panel.hk-settings-panel.custom {
  1127. top: 55px !important;
  1128. transition: all 0.4s ease-in-out, top 0s, left 0s, right 0s, bottom 0s;
  1129. }*/
  1130. .top-navbar.hk-wrapper.hk-horizontal-nav .hk-navbar .navbar-nav.hk-navbar-content .layout-2 {
  1131. display: none;
  1132. }
  1133. .biz-wrapper.companyApp.biz-settings-toggle .biz-settings-panel {
  1134. right: 0px !important;
  1135. }
  1136. /*Common Layout Styles*/
  1137. .biz-navbar .navbar-nav .profile-dropdown-menu {
  1138. width: max-content !important;
  1139. min-width: 250px !important;
  1140. max-width: 350px !important;
  1141. top: 100% !important;
  1142. left: 0 !important;
  1143. right: 10px !important;
  1144. margin-left: auto !important;
  1145. }
  1146. .navbar-nav .nav-item.dropdown-notifications .nav-link {
  1147. position: relative;
  1148. }
  1149. .navbar-nav .nav-item.dropdown-notifications .nav-link .badge-wrap {
  1150. position: absolute;
  1151. top: 12px;
  1152. left: 26px;
  1153. line-height: 0;
  1154. }
  1155. .biz-navbar .navbar-nav .nav-item.dropdown-notifications .nav-link .badge-wrap {
  1156. top: 0;
  1157. left: 10px;
  1158. }
  1159. .biz-navbar .navbar-nav .nav-item.dropdown-notifications.count-overflow {
  1160. padding-right: 25px !important;
  1161. }
  1162. .biz-navbar .navbar-nav .nav-item.dropdown-notifications.count-double-digit {
  1163. padding-right: 20px !important;
  1164. }
  1165. .biz-right-side-menu .navbar-nav .nav-item.dropdown-notifications.count-overflow .badge-wrap {
  1166. left: 20px;
  1167. }
  1168. .biz-right-side-menu .navbar-nav .nav-item.dropdown-notifications.count-double-digit .badge-wrap {
  1169. left: 24px;
  1170. }
  1171. .navbar-nav .nav-item.dropdown-notifications .nav-link .badge-wrap .badge {
  1172. padding: 0 5px;
  1173. line-height: normal;
  1174. }
  1175. .biz-navbar .profile-dropdown-menu .moreoptions {
  1176. top: -2px !important;
  1177. right: -1px !important;
  1178. width: auto !important;
  1179. left: auto;
  1180. min-width: 220px;
  1181. }
  1182. .moreoptions.dropdown-menu {
  1183. background: #fff;
  1184. overflow-y: auto;
  1185. }
  1186. .biz-navbar .navbar-toggle-btn {
  1187. padding: 0 15px !important;
  1188. margin-right: 0px !important;
  1189. font-size: 16px !important;
  1190. }
  1191. .biz-navbar .navbar-nav .nav-item .nav-link {
  1192. padding: 0 !important;
  1193. }
  1194. .nav-date-filter-dp .nav-date-filter-dp-menu {
  1195. width: max-content;
  1196. top: 42px;
  1197. right: 0 !important;
  1198. margin-left: auto !important;
  1199. }
  1200. /*End-Common Layout Styles*/
  1201. @media (max-width: 1199px) {
  1202. .biz-settings-toggle .biz-settings-panel {
  1203. right: 0px !important;
  1204. }
  1205. .userDesignWidgetCardBody .col-3 {
  1206. min-width: 20% !important;
  1207. }
  1208. .biz-settings-panel {
  1209. top: 55px !important;
  1210. transition: all 0.4s ease, top 0s;
  1211. }
  1212. .nav-item .nav-link.tab-view {
  1213. color: #1F2327 !important;
  1214. font-weight: 500 !important;
  1215. }
  1216. .nav-item .nav-link.tab-view.active {
  1217. color: #fff !important;
  1218. }
  1219. }
  1220. @media (max-width: 800px) {
  1221. .settings-panel-head.mobileChat-view {
  1222. display: none !important;
  1223. }
  1224. .biz-wrapper.biz-settings-toggle .biz-settings-panel.custom {
  1225. right: -310px;
  1226. }
  1227. }
  1228. @media (max-width: 576px) {
  1229. /*nav-btn-items*/
  1230. .biz-report-filters .filter-item .filter-link,
  1231. .card-header-filters .nav-defaultfilter-radio-btn label {
  1232. font-size: 10px;
  1233. width: 70px;
  1234. }
  1235. /* mobil-login-register&forgot_password*/
  1236. .mobil_new_login #Frm_navgator {
  1237. background: url(../imgs/mobil-bg-2.png) no-repeat !important;
  1238. height: 100vh;
  1239. background-size: cover !important;
  1240. background-repeat: no-repeat;
  1241. }
  1242. /*mobil login page css */
  1243. .mobil_new_login #Frm_Login,
  1244. .mobil_new_login #frm_RegisterUser,
  1245. .mobil_new_login #frm_ForgotPassword {
  1246. background: url(../imgs/mobil-background.png) no-repeat !important;
  1247. height: 100vh;
  1248. background-size: cover !important;
  1249. background-repeat: no-repeat;
  1250. }
  1251. .mobil_new_login .form-control.login-input,
  1252. .mobil_new_login .form-control.login-input:focus,
  1253. .mobil_new_login .form-control#txt_EmailorPhone,
  1254. .mobil_new_login .form-control#txt_EmailorPhone:focus,
  1255. .mobil_new_login #ddl_Tenant,
  1256. .mobil_new_login #txt_ConfirmPswd,
  1257. .mobil_new_login #txt_ConfirmPswd:focus,
  1258. .mobil_new_login #txt_NewPswd,
  1259. .mobil_new_login #txt_NewPswd:focus,
  1260. .mobil_new_login #txt_PhoneorMail,
  1261. .mobil_new_login #txt_PhoneorMail:focus,
  1262. .mobil_new_login #txt_ConfirmPassword,
  1263. .mobil_new_login #txt_ConfirmPassword:focus,
  1264. .mobil_new_login #txt_NewPassword,
  1265. #txt_NewPassword:focus {
  1266. border-radius: 10px !important;
  1267. background: white !important;
  1268. }
  1269. /* end-mobil-login-register&forgot_password*/
  1270. .biz-settings-panel.custom {
  1271. width: 100vw !important;
  1272. }
  1273. .biz-settings-panel {
  1274. right: -100vw !important;
  1275. }
  1276. .nav-item.dropdown.mob-view {
  1277. display: block !important;
  1278. }
  1279. .Templateheader {
  1280. display: none;
  1281. }
  1282. .nav-date-filter-dp .nav-date-filter-dp-menu {
  1283. width: 95% !important;
  1284. top: 105% !important;
  1285. margin: 0 auto !important;
  1286. }
  1287. }
  1288. @media (max-width: 2560px) {
  1289. .nav-item.dropdown.mob-view {
  1290. display: none;
  1291. }
  1292. }
  1293. /*Notification & Tasks End Here by Sai Sudheer*/
  1294. /*App Store Card Styles*/
  1295. .app-store-card {
  1296. display: flex;
  1297. flex-direction: row;
  1298. justify-content: space-between;
  1299. align-items: center;
  1300. height: 100%;
  1301. margin-bottom: 0px;
  1302. }
  1303. .app-store-card .app-icon-wrapper {
  1304. display: flex;
  1305. justify-content: center;
  1306. align-items: center;
  1307. background-color: #F4F5F6;
  1308. padding: 10px;
  1309. width: 35%;
  1310. height: 100%;
  1311. }
  1312. .app-store-card .app-icon-wrapper .app-icon {
  1313. max-height: 65px;
  1314. }
  1315. .app-store-card .app-details-wrapper {
  1316. width: 65%;
  1317. padding: 15px;
  1318. }
  1319. .app-store-card .list-item-main-title {
  1320. overflow: hidden;
  1321. display: -webkit-box;
  1322. -webkit-line-clamp: 2;
  1323. -webkit-box-orient: vertical;
  1324. }
  1325. /*End-App Store Card Styles*/
  1326. .biz-detail-avatar {
  1327. position: relative;
  1328. width: 40px !important;
  1329. height: 40px !important;
  1330. border-radius: 50%;
  1331. display: flex !important;
  1332. justify-content: center;
  1333. align-items: center;
  1334. margin-right: 5px;
  1335. }
  1336. .biz-detail-avatar h5 {
  1337. font-size: 15px;
  1338. }
  1339. a.createform i {
  1340. font-size: 12px;
  1341. }
  1342. /*Plus Icon Inside Nav Bar End Here*/
  1343. a.biz_anchor {
  1344. padding: 6px 25px;
  1345. }
  1346. /* Comments Start */
  1347. /*#divComments {
  1348. overflow: auto hidden;
  1349. }*/
  1350. #divComments .oultine-0 {
  1351. outline: none;
  1352. }
  1353. #divComments .comment-right-wrapper {
  1354. margin-left: 10px;
  1355. }
  1356. #divComments .commentTextBox:focus-visible {
  1357. outline: none;
  1358. }
  1359. .comment-delete-btn .delete-btn.btn-icon-style-3::before {
  1360. background-color: #E50000 !important;
  1361. }
  1362. .comment-delete-btn .delete-btn:hover i {
  1363. color: #fff !important;
  1364. }
  1365. .comment-btn-wrapper .comment-btn {
  1366. background-color: #00A389;
  1367. }
  1368. /* Comments End */
  1369. /*Side nav*/
  1370. .collapse:not(.show) {
  1371. display: none;
  1372. }
  1373. li#nav-button-create {
  1374. display: none;
  1375. }
  1376. /* Filter Dropdown Styles*/
  1377. .biz-custom-dropdown {
  1378. width: 95% !important;
  1379. padding: 10px !important;
  1380. left: 50% !important;
  1381. transform: translateX(-50%) !important;
  1382. top: 100% !important;
  1383. overflow: hidden !important;
  1384. margin-top: 0px;
  1385. }
  1386. .biz-custom-dropdown .custom-dropdown-body {
  1387. position: relative;
  1388. max-height: 65vh;
  1389. overflow-y: auto;
  1390. overflow-x: hidden;
  1391. }
  1392. .biz-filter-dropdown .filter-dropdown-body {
  1393. max-height: 65vh;
  1394. overflow-y: auto;
  1395. }
  1396. .filter-dropdown-body .select2-container {
  1397. z-index: auto;
  1398. }
  1399. .card-header-filters {
  1400. position: relative;
  1401. }
  1402. .card-header-filters .filter-nav-icon {
  1403. position: absolute;
  1404. color: #3E606C;
  1405. top: 50%;
  1406. transform: translateY(-50%);
  1407. font-size: 12px;
  1408. }
  1409. .card-header-filters .filter-left-icon {
  1410. left: -15px;
  1411. }
  1412. .card-header-filters .iframe + .filter-left-icon {
  1413. left: 0px !important;
  1414. }
  1415. .card-header-filters .iframe + .filter-left-icon + .filter-right-icon {
  1416. right: 0px !important;
  1417. }
  1418. .card-header-filters .filter-right-icon {
  1419. right: -15px;
  1420. }
  1421. .card-header-filters .biz-report-filters::-webkit-scrollbar {
  1422. height: 0;
  1423. background: transparent;
  1424. }
  1425. .card-header-filters .filter-item.kanban-item-hover {
  1426. background-color: #D4DBFB !important;
  1427. }
  1428. .biz-report-filters {
  1429. display: flex;
  1430. flex-direction: row;
  1431. white-space: nowrap;
  1432. overflow-x: auto;
  1433. overflow-y: hidden;
  1434. margin: 0px;
  1435. gap: 8px;
  1436. scrollbar-width: none;
  1437. }
  1438. .biz-report-filters .filter-item {
  1439. display: flex;
  1440. align-items: center;
  1441. justify-content: space-between;
  1442. color: #0A0A20 !important;
  1443. background-color: #F5F4FD !important;
  1444. border: 1px solid #D8D5F2 !important;
  1445. padding: 0px !important;
  1446. border-radius: 1rem !important;
  1447. }
  1448. .biz-report-filters .filter-item:hover {
  1449. background-color: #e9e7f8 !important;
  1450. }
  1451. .biz-report-filters .filter-item:hover {
  1452. background-color: #dfdee8;
  1453. }
  1454. .biz-report-filters .filter-item.selected {
  1455. background-color: #0A0A20;
  1456. }
  1457. .biz-report-filters .filter-item .filter-link,
  1458. .card-header-filters .nav-defaultfilter-radio-btn label {
  1459. max-width: 100px;
  1460. color: #0A0A20 !important;
  1461. overflow: hidden;
  1462. text-overflow: ellipsis;
  1463. white-space: nowrap;
  1464. font-size: 12px;
  1465. font-weight: 500;
  1466. }
  1467. .biz-report-filters .filter-item .filter-link {
  1468. padding: 4px 12px;
  1469. }
  1470. .card-header-filters .nav-defaultfilter-radio-btn label {
  1471. padding: 4px 0px;
  1472. }
  1473. .card-header-filters .nav-defaultfilter-radio-btn label {
  1474. margin-bottom: 0px;
  1475. margin-left: 5px;
  1476. }
  1477. .biz-report-filters .filter-item.selected .filter-link {
  1478. color: #F5F4FD !important;
  1479. }
  1480. .biz-report-filters .filter-item .nav-defaultfilter-width-div {
  1481. display: flex;
  1482. }
  1483. .viewer-header .filter-dropdown-footer {
  1484. display: flex;
  1485. justify-content: space-between;
  1486. align-items: center;
  1487. flex-wrap: wrap;
  1488. margin: 5px 10px 0 10px;
  1489. }
  1490. .viewer-header .filter-dropdown-footer .btn {
  1491. margin-top: 5px;
  1492. }
  1493. .search_close_icon:hover .fa-close {
  1494. color: #FF0000 !important;
  1495. }
  1496. .card-header-filters .nav-defaultfilter-radio-btn {
  1497. padding: 0px;
  1498. display: flex;
  1499. align-items: center;
  1500. justify-content: space-between;
  1501. }
  1502. .card-header-filters .filter-icons-wrapper {
  1503. display: flex;
  1504. justify-content: space-between;
  1505. align-items: center;
  1506. margin-left: 5px;
  1507. padding-left: 5px !important;
  1508. border-left: 1px solid #DADDE1;
  1509. height: 100%;
  1510. }
  1511. .card-header-filters .nav-filter-settings-btn .la-key:before {
  1512. color: #ff9800;
  1513. }
  1514. .card-header-filters .nav-filter-edit-btn .la-pencil-alt:before {
  1515. color: #00e8ca;
  1516. }
  1517. .biz-filter-dropdown .dynamic-filters-list .form-control:focus {
  1518. box-shadow: none;
  1519. }
  1520. .dynamic-filters-list {
  1521. row-gap: 10px;
  1522. }
  1523. .dynamic-filters-list .form-control::placeholder,
  1524. .dynamic-filters-list .select2-search__field::placeholder,
  1525. .dynamic-filters-list .select2-selection__placeholder {
  1526. color: #495057 !important;
  1527. opacity: 0.8;
  1528. }
  1529. .viewer-header .biz-report-filters:not(:empty) {
  1530. margin: 5px 0;
  1531. }
  1532. .viewer-header .biz-report-filters.iframe {
  1533. margin: 5px 12px !important;
  1534. }
  1535. .biz-report-filters.pinned-report-filters {
  1536. flex-wrap: wrap;
  1537. overflow: hidden auto;
  1538. max-height: 140px;
  1539. }
  1540. .biz-report-filters.pinned-report-filters .filter-item .filter-link {
  1541. padding: .2rem .5rem;
  1542. }
  1543. .pinned-report-filters .filter_design-row {
  1544. padding: 0;
  1545. }
  1546. .pinned-report-filters .form-control,
  1547. .pinned-report-filters .select2-container--default .select2-selection--single,
  1548. .pinned-report-filters .select2-container--default .select2-selection--multiple {
  1549. display: flex;
  1550. align-items: center;
  1551. font-size: 12px;
  1552. height: auto;
  1553. min-height: 100%;
  1554. border-radius: 0.25rem !important;
  1555. padding: .2rem .5rem;
  1556. color: #0A0A20;
  1557. font-weight: 500;
  1558. }
  1559. .pinned-report-filters.filter_design-row {
  1560. padding: 0;
  1561. }
  1562. .pinned-report-filters .form-control {
  1563. padding-right: 1rem !important;
  1564. }
  1565. .pinned-report-filters .form-control:focus {
  1566. box-shadow: 0 0 0 0.05rem rgb(0 123 255 / 25%);
  1567. }
  1568. .pinned-report-filters input {
  1569. width: 120px;
  1570. }
  1571. .pinned-report-filters input.datepicker-input {
  1572. width: 175px;
  1573. }
  1574. .pinned-report-filters .form-control::placeholder,
  1575. .biz-filters-wrap .select2-search__field::placeholder,
  1576. .pinned-report-filters .select2-selection__placeholder,
  1577. .pinned-report-filters .select2-selection--multiple .select2-search__field::placeholder {
  1578. font-weight: 500;
  1579. color: #999;
  1580. }
  1581. .pinned-report-filters .select2-container.select2-container--default {
  1582. width: auto !important;
  1583. }
  1584. .pinned-report-filters .static-filters-select-wrap .select2-container.select2-container--default {
  1585. width: 100px !important;
  1586. }
  1587. .pinned-report-filters .select2-container--default .select2-selection--single .select2-selection__arrow,
  1588. .pinned-report-filters .select2-container--default .select2-selection--multiple .select2-selection__arrow {
  1589. height: 100%;
  1590. }
  1591. .pinned-report-filters .select2-container .select2-search--inline .select2-search__field {
  1592. margin-top: 0;
  1593. width: 100% !important;
  1594. }
  1595. .pinned-report-filters .select2-container--default .select2-selection--multiple {
  1596. padding: 0.2rem 0.5rem;
  1597. }
  1598. .pinned-report-filters .select2-container--default .select2-selection--multiple .select2-selection__choice {
  1599. margin-top: 0;
  1600. font-size: 10px;
  1601. padding: 0 4px;
  1602. flex-basis: 115px;
  1603. flex-shrink: 0;
  1604. }
  1605. .pinned-report-filters .select2-container--default .select2-selection--multiple .select2-selection__choice:not(:first-of-type) {
  1606. display: none;
  1607. }
  1608. .pinned-report-filters .select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  1609. top: -3px;
  1610. font-size: 12px;
  1611. }
  1612. .pinned-report-filters .select2-container--default .select2-selection--multiple .select2-selection__clear {
  1613. margin-top: 0px;
  1614. margin-right: 0px;
  1615. order: 1;
  1616. }
  1617. .pinned-report-filters .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  1618. padding: 0;
  1619. display: flex;
  1620. align-items: center;
  1621. height: 18px;
  1622. }
  1623. .pinned-report-filters .select2-container--default .select2-selection--single .select2-selection__rendered {
  1624. margin-right: 20px;
  1625. }
  1626. .pinned-report-filters .static-filters-select-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
  1627. margin-right: 5px;
  1628. }
  1629. .pinned-report-filters .select2-selection--multiple .select2-selection__choice {
  1630. max-width: 125px;
  1631. overflow: hidden;
  1632. text-overflow: ellipsis;
  1633. white-space: nowrap;
  1634. }
  1635. .pinned-report-filters .select2-container--default .select2-selection--single .select2-selection__clear {
  1636. width: 10px;
  1637. }
  1638. .pinned-report-filters .select2-selection--multiple .select2-selection__count span {
  1639. padding: 3px;
  1640. margin-left: 3px;
  1641. font-size: 10px;
  1642. border-radius: 50%;
  1643. width: 15px;
  1644. }
  1645. .pinned-report-filters select[multiple] {
  1646. min-height: 1px;
  1647. }
  1648. /*End-Search Filters Styles*/
  1649. /*Count padding*/
  1650. .nav-link.biz-removepadding {
  1651. padding: .5rem 0rem;
  1652. }
  1653. /* Report Header search bar styles*/
  1654. .card-header-right {
  1655. display: flex;
  1656. justify-content: flex-end;
  1657. align-items: center;
  1658. }
  1659. .card-search-bar {
  1660. width: 50%;
  1661. height: 35px;
  1662. display: flex;
  1663. align-items: center;
  1664. }
  1665. .card-search-bar .search-wrapper {
  1666. position: relative;
  1667. width: 100%;
  1668. }
  1669. .card-search-bar .search-wrapper .filter-icon,
  1670. .card-search-bar .search-wrapper .search-clear-icon {
  1671. position: absolute !important;
  1672. top: 50%;
  1673. transform: translateY(-50%);
  1674. }
  1675. .card-search-bar .search-wrapper .filter-icon {
  1676. right: 5px;
  1677. }
  1678. .common-filter-dp-btn i {
  1679. height: 18px;
  1680. }
  1681. .card-search-bar .search-wrapper .search-clear-icon {
  1682. right: 38px;
  1683. font-size: 16px;
  1684. width: 16px;
  1685. height: 16px;
  1686. align-items: center;
  1687. justify-content: center;
  1688. }
  1689. .card-search-bar .search-wrapper .search-clear-icon:hover {
  1690. color: #FF0000 !important;
  1691. }
  1692. .card-search-bar .txt_global_search {
  1693. height: 100%;
  1694. padding: 8px 30px;
  1695. border-radius: 0.25rem !important;
  1696. background-color: rgb(255 255 255 / 37%) !important;
  1697. border: solid 1px #ccc !important;
  1698. }
  1699. .card-search-bar .txt_global_search.contain-value {
  1700. padding-right: 55px !important;
  1701. }
  1702. .card-search-bar .txt_global_search:focus {
  1703. background-color: rgb(255 255 255) !important;
  1704. }
  1705. .card-search-bar .txt_global_search:focus::placeholder {
  1706. opacity: 0.5;
  1707. }
  1708. .card-search-bar .txt_global_search:focus:-ms-input-placeholder {
  1709. opacity: 0.5;
  1710. }
  1711. .card-search-bar .search-icon-wrapper {
  1712. border: none;
  1713. margin-left: auto;
  1714. display: none;
  1715. }
  1716. .card-search-bar .txt_global_search:focus,
  1717. .modal-header .txt_global_search {
  1718. box-shadow: none;
  1719. }
  1720. .card-search-bar .search-left-icon {
  1721. position: absolute;
  1722. left: 10px;
  1723. top: 50%;
  1724. transform: translateY(-50%);
  1725. }
  1726. @media (max-width: 767px) {
  1727. .card-search-bar.search-visible {
  1728. position: absolute;
  1729. width: 101%;
  1730. left: 0;
  1731. bottom: 0;
  1732. top: 50%;
  1733. transform: translateY(-50%);
  1734. margin: 0px;
  1735. border-radius: 0.25rem;
  1736. z-index: 1;
  1737. background-color: #eee;
  1738. }
  1739. .card-search-bar {
  1740. width: 10%;
  1741. height: 35px;
  1742. margin-left: 10px;
  1743. display: flex;
  1744. align-items: center;
  1745. margin-right: 8px;
  1746. }
  1747. .card-search-bar.report-tree-view-search {
  1748. width: 100% !important;
  1749. }
  1750. .card-search-bar .search-wrapper {
  1751. width: 90%;
  1752. display: none;
  1753. }
  1754. .card-search-bar.search-visible .search-wrapper {
  1755. display: block;
  1756. }
  1757. .card-search-bar .search-icon-wrapper {
  1758. padding-left: 0px;
  1759. display: block;
  1760. width: 10%;
  1761. text-align: center;
  1762. }
  1763. .card-search-bar .input-group-append {
  1764. width: 10%;
  1765. }
  1766. .card-search-bar .txt_global_search:focus {
  1767. background-color: #fff !important;
  1768. }
  1769. .card-search-bar .search_icon {
  1770. margin-right: 15px;
  1771. }
  1772. .card-search-bar .txt_global_search {
  1773. background-color: unset !important;
  1774. box-shadow: unset !important;
  1775. }
  1776. .card-search-bar .search_close_icon {
  1777. font-size: 18px;
  1778. }
  1779. }
  1780. @media (max-width: 576px) {
  1781. /*btn font-size reducing to 12px */
  1782. .btn {
  1783. font-size: 12px !important;
  1784. padding: 4px 10px !important;
  1785. }
  1786. .a[type=button] {
  1787. font-size: 12px !important;
  1788. }
  1789. .biz-report-filters .filter-item .filter-link {
  1790. padding: 4px 8px !important;
  1791. }
  1792. .btn-xs {
  1793. padding: 3px 6px !important;
  1794. }
  1795. .btn i {
  1796. font-size: 12px !important;
  1797. }
  1798. /*btn font-size reducing to 12px */
  1799. /*Heading Font size reduce to 12px*/
  1800. .dashboardwidget-item .biz-highlight-bg-color {
  1801. font-size: 12px !important;
  1802. }
  1803. .portletwidget-item .biz-highlight-bg-color {
  1804. font-size: 12px !important;
  1805. }
  1806. #layout-detail-tabs .portletName {
  1807. font-size: 12px !important;
  1808. }
  1809. .dropdown-menu a {
  1810. font-size: 12px !important;
  1811. }
  1812. #div_App_DefaultWidgetSettings .biz-highlight-bg-color {
  1813. font-size: 12px !important;
  1814. }
  1815. .biz-highlight-bg-color {
  1816. font-size: 12px !important;
  1817. }
  1818. .biz-icon-size {
  1819. height: 30px !important;
  1820. width: 30px !important;
  1821. display: flex !important;
  1822. }
  1823. .layout_list_container .list-item-main-title {
  1824. font-size: 12px !important;
  1825. }
  1826. .biz-detail-avatar h5 {
  1827. font-size: 12px !important;
  1828. }
  1829. .layout_list_container .card {
  1830. font-size: 12px !important;
  1831. }
  1832. .block-on-mobile .biz-icon-size {
  1833. height: 27px !important;
  1834. width: 30px !important;
  1835. }
  1836. .block-on-mobile .btn-group {
  1837. margin-bottom: 3px;
  1838. }
  1839. .sub-dropdown-menu .report-title-link {
  1840. width: 100%;
  1841. }
  1842. .biz-navbar .navbar-nav .profile-dropdown-menu {
  1843. max-width: 95% !important;
  1844. }
  1845. }
  1846. @media (max-width: 1199px) {
  1847. .viewer-header .biz-report-filters {
  1848. margin: 4px 0;
  1849. }
  1850. .card-header-filters .filter-nav-icon {
  1851. display: none;
  1852. }
  1853. .nav-item.dropdown.mob-view {
  1854. display: block !important;
  1855. }
  1856. .modal.col-sm-10,
  1857. .modal.col-sm-9,
  1858. .modal.col-sm-8,
  1859. .modal.col-sm-7,
  1860. .modal.col-sm-6 {
  1861. max-width: 100% !important;
  1862. }
  1863. }
  1864. /*Count padding*/
  1865. .nav-link.biz-removepadding {
  1866. padding: .5rem 0rem;
  1867. }
  1868. /*End-Report Header search bar styles*/
  1869. /*Width Card Header Changes*/
  1870. .portletwidget-item .card-header.Templateheader,
  1871. .portletwidget-item .card-footer.Templatefooter {
  1872. margin: 0px 15px !important;
  1873. border-radius: 5px !important;
  1874. border: none;
  1875. padding: .4rem .75rem !important;
  1876. }
  1877. /*.modal .portletwidget-item .card-header.Templateheader {
  1878. margin: 0px !important;
  1879. }*/
  1880. .Border .card-body li.list-group-item:last-child {
  1881. border-bottom: 0px solid rgb(204, 204, 204, 0.6) !important;
  1882. }
  1883. .layout_list_container li.list-group-item:last-child {
  1884. border-bottom: 0px !important;
  1885. }
  1886. /*.portletwidget-item .card-body .list-group.layout_list_container {
  1887. padding: 0px 10px;
  1888. }*/
  1889. /*.modal .templateviewer-tableview .card-header.Templateheader {
  1890. border: none !important;
  1891. border-bottom: solid 1px #ccc !important;
  1892. border-radius: 0px !important;
  1893. }*/
  1894. .modal .card-header-left span.biz-highlight-bg-color {
  1895. font-size: 16px;
  1896. font-weight: 700;
  1897. }
  1898. .templateviewer-tableview .card-header.Templateheader {
  1899. background: rgb(255, 255, 255);
  1900. border-top-left-radius: 1rem !important;
  1901. border-top-right-radius: 1rem !important;
  1902. border: none !important;
  1903. border-bottom: solid 1px #ccc !important;
  1904. box-shadow: none !important;
  1905. }
  1906. .templateviewer-tableview .viewer-error-message {
  1907. position: absolute;
  1908. top: 0;
  1909. right: 20px;
  1910. left: 20px;
  1911. text-align: center;
  1912. }
  1913. .Border .card-header.Templateheader,
  1914. .Border .card-footer.Templatefooter {
  1915. background: rgb(255, 255, 255);
  1916. border-radius: 0.25rem !important;
  1917. border: none !important;
  1918. box-shadow: none !important;
  1919. border-bottom-left-radius: 0 !important;
  1920. border-bottom-right-radius: 0 !important;
  1921. }
  1922. .biz-wrapper .card {
  1923. box-shadow: none !important;
  1924. }
  1925. .templateviewer-body .list-group-item {
  1926. border-right: 0px;
  1927. border-left: 0px;
  1928. }
  1929. .portletwidget-item .templateviewer-body {
  1930. height: auto;
  1931. }
  1932. .portletwidget-item .templateviewer-body .list-group-item {
  1933. padding-left: 0.75rem !important;
  1934. padding-right: 0.75rem !important;
  1935. }
  1936. .list-group-item:hover {
  1937. background: rgba(230, 230, 230, 0.3);
  1938. border-radius: 0rem !important;
  1939. }
  1940. .Border .card-body li.list-group-item:hover {
  1941. background: rgb(204, 204, 204, 0.2) !important;
  1942. /*border-radius: 5px !important;*/
  1943. }
  1944. li.list-group-item[data-deactive^="li-deactive-active"]:hover {
  1945. background: unset;
  1946. }
  1947. .modal li.list-group-item {
  1948. border-bottom: solid 1px #ccc !important
  1949. }
  1950. /*.modal .list-group.layout_list_container {
  1951. margin: 0px !important;
  1952. }*/
  1953. .modal li.list-group-item:hover {
  1954. background: rgb(204, 204, 204, 0.2) !important;
  1955. border-radius: 0px !important;
  1956. }
  1957. div#widgetAccordian {
  1958. padding-left: 5px;
  1959. padding-right: 5px;
  1960. }
  1961. /*Table View Chnages*/
  1962. .tabulator-row-odd {
  1963. background: #E1DFDF;
  1964. }
  1965. .tabulator-row-even {
  1966. background: #FFF;
  1967. }
  1968. .portletwidget-item .biz-highlight-bg-color {
  1969. font-size: 16px;
  1970. font-weight: 500;
  1971. }
  1972. .card-header-left span.biz-highlight-bg-color {
  1973. font-size: 20px;
  1974. font-weight: 400;
  1975. }
  1976. #dashboardwidget-container .Border .card-header-left span.biz-highlight-bg-color {
  1977. font-size: 16px;
  1978. font-weight: 500;
  1979. }
  1980. .Border .card-header-left span.biz-highlight-bg-color {
  1981. font-size: 14px;
  1982. font-weight: 500;
  1983. }
  1984. #div_App_DefaultWidgetSettings .list-group-item {
  1985. border: none;
  1986. }
  1987. #div_App_DefaultWidgetSettings .list-group-item:hover {
  1988. background: white;
  1989. }
  1990. .ellipsis-hover:hover {
  1991. background: rgb(204, 204, 204, 0.3);
  1992. padding: 6px 12px;
  1993. border-radius: 50%;
  1994. }
  1995. .ellipsis-hover {
  1996. padding: 6px 12px;
  1997. }
  1998. .plus-hover {
  1999. padding: 6px 12px;
  2000. }
  2001. .search_icon {
  2002. padding: 6px 12px;
  2003. }
  2004. /*dashboard page */
  2005. #dashboardwidget-container {
  2006. min-height: 200px;
  2007. }
  2008. a.btn.btn-sm.no-caret.dropdown-toggle.biz-highlight-bg-color {
  2009. padding: 0px !important;
  2010. }
  2011. .mb-mode {
  2012. display: none;
  2013. }
  2014. /*icons*/
  2015. .biz-icon-size {
  2016. height: 35px;
  2017. width: 35px;
  2018. display: flex;
  2019. border-radius: 50%;
  2020. -webkit-box-align: center;
  2021. -ms-flex-align: center;
  2022. align-items: center;
  2023. justify-content: center;
  2024. -webkit-justify-content: center;
  2025. line-height: 0;
  2026. }
  2027. /*short code button*/
  2028. .btnChangeStageshort {
  2029. font-size: 10px !important;
  2030. display: flex;
  2031. align-content: center;
  2032. }
  2033. /*Report Views Styles*/
  2034. .biz-views-dropdown .report-view-item .dropdown-item.active,
  2035. .biz-db-groups-dropdown .li-dashboard-item.active-item .dropdown-item {
  2036. background-color: #F4F5F6 !important;
  2037. color: #1F2327 !important;
  2038. font-weight: 500;
  2039. }
  2040. .biz-views-dropdown .report-title-link {
  2041. width: max-content;
  2042. }
  2043. .biz-views-dropdown .dp-viewer-options {
  2044. position: absolute;
  2045. right: 2px;
  2046. top: 2px;
  2047. }
  2048. .biz-views-dropdown #Bizgaze-messageInfo {
  2049. z-index: 9;
  2050. margin-bottom: 10px;
  2051. }
  2052. .biz-views-dropdown .delete-template-icon:hover i {
  2053. color: #FF0000;
  2054. }
  2055. .sub-dropdown-menu .report-title-link {
  2056. width: 98%;
  2057. cursor: default !important;
  2058. }
  2059. .sub-dropdown-menu .report-title-link:hover,
  2060. .sub-dropdown-menu .report-title-link:focus {
  2061. background-color: unset !important;
  2062. }
  2063. .widget-title-link[aria-expanded="false"] + .views-dropdown-toggle,
  2064. .widget-title-link.collapsed + .views-dropdown-toggle {
  2065. display: none;
  2066. }
  2067. .dp-toggle-icon {
  2068. margin-left: 3px;
  2069. height: 20px !important;
  2070. width: 20px !important;
  2071. }
  2072. /*End-Report Categories Styles*/
  2073. .biz-nav-fullwidth {
  2074. position: fixed;
  2075. width: 100%;
  2076. height: 100vh;
  2077. background-color: #000;
  2078. background-size: cover;
  2079. opacity: 0.5;
  2080. left: 0px;
  2081. top: 0px;
  2082. bottom: 0px;
  2083. z-index: 99;
  2084. }
  2085. .navbar.biz-navbar {
  2086. z-index: 1010;
  2087. }
  2088. .active-report-popup .biz-wrapper.biz__icon__menu .biz-right-side-menu,
  2089. .active-report-popup .navbar.biz-navbar,
  2090. .active-report-popup .hk-wrapper .biz-settings-panel,
  2091. .active-report-popup .biz-nav-fullwidth,
  2092. .active-report-popup .bootbox.modal {
  2093. z-index: 9999 !important;
  2094. }
  2095. /*Notification icon*/
  2096. .notification-icon {
  2097. transform: rotate(20deg);
  2098. padding: 50px;
  2099. background: rgb(204, 204, 204, 0.3);
  2100. border-radius: 50%;
  2101. font-size: 40px;
  2102. }
  2103. .notification-footer {
  2104. width: 100%;
  2105. padding: .75rem 1.25rem;
  2106. margin-bottom: 5px;
  2107. }
  2108. /*.notification-empty-card {
  2109. height: 92vh;
  2110. }*/
  2111. /*.biz-body-height {
  2112. height: 85vh;
  2113. }*/
  2114. a#Biz_favorite {
  2115. display: none;
  2116. }
  2117. /*Fixed Table Styles*/
  2118. .tableFixHead {
  2119. overflow-y: auto;
  2120. height: 300px;
  2121. }
  2122. .tableFixHead thead th {
  2123. position: sticky;
  2124. top: 0;
  2125. z-index: 10000
  2126. }
  2127. .tableFixHead table {
  2128. border-collapse: collapse;
  2129. width: 100%;
  2130. }
  2131. .tableFixHead th {
  2132. background: #eee;
  2133. }
  2134. /*Fixed Table Styles*/
  2135. /*Details Portlet tabs scroll*/
  2136. @media (max-width: 768px) {
  2137. .biz-navbar .navbar-nav .nav-item {
  2138. padding: 0px 15px 0px 5px !important;
  2139. }
  2140. .layout-detail-tabs {
  2141. overflow-x: auto;
  2142. flex-wrap: nowrap !important;
  2143. }
  2144. .layout-detail-tabs::-webkit-scrollbar {
  2145. height: 0;
  2146. background: transparent;
  2147. }
  2148. .layout-detail-tabs .tab-item .nav-link {
  2149. width: max-content;
  2150. }
  2151. }
  2152. /*Dashboard Report widget padding Start Here*/
  2153. .widgetdataHere .line-loader-container,
  2154. .widgetdataHere .templateviewer-tableview {
  2155. margin: 0px !important;
  2156. padding: 0px !important;
  2157. }
  2158. .widgetdataHere .line-loader-container .card-header-left li.d-flex {
  2159. padding: 10px 20px !important;
  2160. margin-left: 5px;
  2161. }
  2162. .dashboardwidget-item .line-loader-container .card-header-left li.d-flex {
  2163. margin-left: 5px;
  2164. padding: 10px 20px !important;
  2165. }
  2166. .widgetdataHere .line-loader-container .card-header-right .reportview-remove-none {
  2167. margin-right: 5px;
  2168. }
  2169. /*Dashboard Report widget padding End Here*/
  2170. .apply-btn-group.toggle-btn .btn-outline-primary {
  2171. border-top-right-radius: 0 !important;
  2172. border-bottom-right-radius: 0 !important;
  2173. }
  2174. .apply-btn-group .dropdown-toggle {
  2175. border-top-left-radius: 0 !important;
  2176. border-bottom-left-radius: 0 !important;
  2177. padding-left: .425rem !important;
  2178. }
  2179. .biz-dropdown.show .btn-flush-biz-theme.flush-soft-hover.dp-viewer-options-btn,
  2180. .biz-dropdown.show .btn-flush-biz-theme.flush-soft-hover.link-report-icon {
  2181. background: transparent !important;
  2182. }
  2183. .card-header-top .dp-viewer-options-menu {
  2184. right: 4%;
  2185. left: auto;
  2186. top: 80px;
  2187. }
  2188. .portletwidget-item .card-header-top .dp-viewer-options-menu {
  2189. top: 75px;
  2190. }
  2191. /*detail page header buttons CSS*/
  2192. .btn.btn-outline-light:hover {
  2193. background: rgb(204, 204, 204, 0.2);
  2194. }
  2195. .btn.btn-outline-light {
  2196. padding: 0px 15px;
  2197. font-weight: 500;
  2198. color: black;
  2199. height: 30px !important;
  2200. }
  2201. .biz-icon-hover {
  2202. position: relative;
  2203. height: 30px;
  2204. width: 30px;
  2205. display: inline-block;
  2206. vertical-align: middle;
  2207. font-size: 16px;
  2208. line-height: 1.5;
  2209. display: flex;
  2210. align-items: center;
  2211. justify-content: center;
  2212. border-radius: 50%;
  2213. transition: background-color .15s ease-in-out;
  2214. }
  2215. .biz-icon-hover:hover {
  2216. background-color: rgb(204, 204, 204, 0.2);
  2217. }
  2218. .detail-close {
  2219. line-height: 0.5;
  2220. margin-right: 2px;
  2221. }
  2222. .heading-display-name {
  2223. height: 100%;
  2224. width: 100%;
  2225. background: transparent;
  2226. z-index: 555;
  2227. position: absolute;
  2228. top: 0;
  2229. left: 0;
  2230. }
  2231. .timeline_icon_wrap {
  2232. position: absolute;
  2233. right: 0;
  2234. bottom: -2px;
  2235. }
  2236. /* Details Preloader */
  2237. @keyframes anim {
  2238. 0% {
  2239. background-position: -488px 0;
  2240. }
  2241. 100% {
  2242. background-position: 868px 0;
  2243. }
  2244. }
  2245. @-o-keyframes anim {
  2246. 0% {
  2247. background-position: -868px 0;
  2248. }
  2249. 100% {
  2250. background-position: 868px 0;
  2251. }
  2252. }
  2253. @-ms-keyframes anim {
  2254. 0% {
  2255. background-position: -868px 0;
  2256. }
  2257. 100% {
  2258. background-position: 868px 0;
  2259. }
  2260. }
  2261. @-moz-keyframes anim {
  2262. 0% {
  2263. background-position: -868px 0;
  2264. }
  2265. 100% {
  2266. background-position: 868px 0;
  2267. }
  2268. }
  2269. @-webkit-keyframes anim {
  2270. 0% {
  2271. background-position: -868px 0;
  2272. }
  2273. 100% {
  2274. background-position: 868px 0;
  2275. }
  2276. }
  2277. #detail-skeleton .widget {
  2278. -moz-box-sizing: border-box;
  2279. -webkit-box-sizing: border-box;
  2280. box-sizing: border-box;
  2281. width: 100%;
  2282. height: 100%;
  2283. padding: 0.25rem;
  2284. margin: 10px auto;
  2285. -moz-border-radius: 3px;
  2286. -webkit-border-radius: 3px;
  2287. border-radius: 3px;
  2288. background-color: transparent;
  2289. }
  2290. #detail-skeleton .panel-effect-first {
  2291. position: relative;
  2292. background: #f6f7f8 no-repeat 800px 104px;
  2293. background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2ZjdmOCIvPjxzdG9wIG9mZnNldD0iMjAlIiBzdG9wLWNvbG9yPSIjZWRlZWYxIi8+PHN0b3Agb2Zmc2V0PSI0MCUiIHN0b3AtY29sb3I9IiNmNmY3ZjgiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmY3ZjgiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  2294. background-size: 100%;
  2295. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f6f7f8), color-stop(20%, #edeef1), color-stop(40%, #f6f7f8), color-stop(100%, #f6f7f8));
  2296. background-image: -moz-linear-gradient(left, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  2297. background-image: -webkit-linear-gradient(left, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  2298. background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  2299. height: 120px;
  2300. -moz-animation: anim 1s forwards infinite linear;
  2301. -webkit-animation: anim 1s forwards infinite linear;
  2302. animation: anim 1s forwards infinite linear;
  2303. margin-bottom: 20px;
  2304. border-radius: 4px;
  2305. }
  2306. #detail-skeleton .panel-effect {
  2307. position: relative;
  2308. background: #cccccc no-repeat 800px 104px;
  2309. background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2ZjdmOCIvPjxzdG9wIG9mZnNldD0iMjAlIiBzdG9wLWNvbG9yPSIjZWRlZWYxIi8+PHN0b3Agb2Zmc2V0PSI0MCUiIHN0b3AtY29sb3I9IiNmNmY3ZjgiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmY3ZjgiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  2310. background-size: 100%;
  2311. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #cccccc), color-stop(20%, #edeef1), color-stop(40%, #cccccc), color-stop(100%, #cccccc));
  2312. background-image: -moz-linear-gradient(left, #cccccc 0%, #edeef1 10%, #cccccc 40%, #cccccc 60%);
  2313. background-image: -webkit-linear-gradient(left, #cccccc 0%, #edeef1 10%, #cccccc 40%, #cccccc 60%);
  2314. background-image: linear-gradient(to right, #cccccc 0%, #edeef1 10%, #cccccc 40%, #cccccc 60%);
  2315. height: 50px;
  2316. -moz-animation: anim 1s forwards infinite linear;
  2317. -webkit-animation: anim 1s forwards infinite linear;
  2318. animation: anim 1s forwards infinite linear;
  2319. margin-bottom: 20px;
  2320. border-radius: 4px;
  2321. }
  2322. #detail-skeleton .fake-effect {
  2323. position: absolute;
  2324. background: #fff;
  2325. right: 0;
  2326. left: 0;
  2327. height: 6px;
  2328. }
  2329. /*End- Details Preloader */
  2330. .profile-cover-wrap .details-err-msg {
  2331. position: absolute;
  2332. width: 100%;
  2333. height: 100%;
  2334. display: flex;
  2335. align-items: center;
  2336. }
  2337. .profile-cover-wrap .details-err-msg .alert {
  2338. width: 100%;
  2339. margin-bottom: 0 !important;
  2340. z-index: 9;
  2341. }
  2342. /*comments profile css*/
  2343. .comment-user-img .avatar.avatar-sm {
  2344. width: 25px;
  2345. height: 25px;
  2346. font-size: 1rem;
  2347. }
  2348. .commentTextBox {
  2349. font-size: 14px;
  2350. outline: none;
  2351. }
  2352. .commentTextBox::placeholder {
  2353. font-size: 12px;
  2354. }
  2355. .commentTextBox:active {
  2356. background-color: white !important;
  2357. }
  2358. .edit-filters-body input[type="radio"],
  2359. .edit-filters-body input[type="checkbox"] {
  2360. -ms-transform: scale(1.25);
  2361. -webkit-transform: scale(1.25);
  2362. transform: scale(1.25);
  2363. }
  2364. .edit-filters-body .list-group .filter-item {
  2365. margin-bottom: 20px;
  2366. }
  2367. .edit-filters-body .list-group:not(.static-filter-list) .filter-item:last-child {
  2368. margin-bottom: 0px;
  2369. }
  2370. #is-filterable-section .filter {
  2371. font-size: 23px;
  2372. cursor: grab;
  2373. color: #3e3a3a;
  2374. }
  2375. .card-search-bar .search-wrapper .main-search-loader {
  2376. border: 3px solid #ccc;
  2377. border-top: 2px solid #000;
  2378. border-radius: 50%;
  2379. width: 16px;
  2380. height: 16px;
  2381. animation: main-search-loader-spin 1s linear infinite;
  2382. top: 28% !important;
  2383. }
  2384. @keyframes main-search-loader-spin {
  2385. 0% {
  2386. transform: rotate(0deg);
  2387. }
  2388. 100% {
  2389. transform: rotate(360deg);
  2390. }
  2391. }
  2392. .div_App_DefaultWidgetSettings_toggle_right {
  2393. transform: rotate(-90deg);
  2394. transition: all 0.3s ease;
  2395. }
  2396. .div_App_DefaultWidgetSettings_toggle_down {
  2397. transform: rotate(0deg);
  2398. transition: all 0.3s ease;
  2399. }
  2400. .report_img .biz-detail-avatar {
  2401. width: 25px !important;
  2402. height: 25px !important;
  2403. }
  2404. /*editscreen app click should not work */
  2405. #dashboardwidget-container .clickdisabled {
  2406. pointer-events: none;
  2407. }
  2408. /*Session Time Out CSS*/
  2409. .sessiontimeoutimg {
  2410. animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
  2411. transform: translate3d(0, 0, 0);
  2412. backface-visibility: hidden;
  2413. perspective: 1000px;
  2414. animation-iteration-count: 2;
  2415. }
  2416. @keyframes shake {
  2417. 10%, 90% {
  2418. transform: translate3d(-1px, 0, 0);
  2419. }
  2420. 20%, 80% {
  2421. transform: translate3d(2px, 0, 0);
  2422. }
  2423. 30%, 50%, 70% {
  2424. transform: translate3d(-4px, 0, 0);
  2425. }
  2426. 40%, 60% {
  2427. transform: translate3d(4px, 0, 0);
  2428. }
  2429. }
  2430. .form-control.sessioninput:focus {
  2431. color: #495057;
  2432. background-color: #fff;
  2433. border-color: transparent;
  2434. outline: 0;
  2435. box-shadow: none;
  2436. }
  2437. span.pos-hand-symbol {
  2438. cursor: pointer;
  2439. }
  2440. .InventoryTypesTextboxes input:active,
  2441. .InventoryTypesTextboxes input:focus {
  2442. background: none !important;
  2443. }
  2444. /*show password requirement*/
  2445. .showpwsdreq {
  2446. position: relative;
  2447. top: -5px;
  2448. left: 0px;
  2449. width: 100%;
  2450. }
  2451. /*Crypto start Here By Sudheer*/
  2452. input.isencrypt[type="checkbox"] {
  2453. cursor: pointer;
  2454. }
  2455. /*Crypto End Here By Sudheer*/
  2456. /*#biz-banner-carousel .owl-stage-outer{
  2457. height: 500px !important;
  2458. }
  2459. */
  2460. .filter-input-wrap {
  2461. position: relative;
  2462. }
  2463. .filter-input-wrap .input-clear-link {
  2464. position: absolute;
  2465. right: 0;
  2466. top: 50%;
  2467. transform: translateY(-45%);
  2468. color: #1F2327;
  2469. font-size: 13px;
  2470. font-weight: 500;
  2471. }
  2472. /*Opt Modal Design*/
  2473. .otpdiv .floating-label-form-group {
  2474. display: flex;
  2475. justify-content: space-between;
  2476. width: 80%;
  2477. text-align: center;
  2478. margin-left: auto;
  2479. margin-right: auto;
  2480. }
  2481. .floating-label-form-group .txt_Otp {
  2482. border: none;
  2483. border-bottom: 1px solid #3e606c;
  2484. margin: 0;
  2485. font-size: 16px;
  2486. height: 40px;
  2487. max-width: 28px;
  2488. padding: 8px !important;
  2489. width: 25px;
  2490. }
  2491. .floating-label-form-group .txt_Code {
  2492. border: none;
  2493. border-bottom: 1px solid #3e606c;
  2494. margin: 0;
  2495. font-size: 16px;
  2496. height: 40px;
  2497. max-width: 28px;
  2498. padding: 8px !important;
  2499. width: 25px;
  2500. }
  2501. .terms-conditions .custom-control-label::before {
  2502. background-color: none !important;
  2503. display: none;
  2504. }
  2505. .terms-conditions .custom-control-label::after {
  2506. display: none;
  2507. }
  2508. .terms-conditions label.custom-control-label {
  2509. color: #00D67F !important;
  2510. }
  2511. .terms-conditions label.custom-control-label:hover {
  2512. color: white !important;
  2513. }
  2514. /* Pos delete bootbox design styles*/
  2515. .delete-item-bootbox {
  2516. background-color: rgba(31, 35, 39, 0.5);
  2517. }
  2518. .delete-item-bootbox .modal-body {
  2519. padding-bottom: 1rem;
  2520. text-align: center;
  2521. }
  2522. .delete-item-bootbox .modal-footer {
  2523. padding-top: 0px;
  2524. border: none;
  2525. }
  2526. .delete-item-bootbox .bootbox-accept {
  2527. border-radius: 20px;
  2528. margin: 0 auto;
  2529. background-color: #02a83f;
  2530. border-color: #02a83f;
  2531. }
  2532. .delete-item-bootbox .bootbox-accept:focus,
  2533. .delete-item-bootbox .bootbox-accept:hover,
  2534. .delete-item-bootbox .bootbox-accept:active {
  2535. background-color: #068c37;
  2536. border-color: #068c37;
  2537. }
  2538. .delete-item-bootbox .modal-body > .close {
  2539. top: .75rem;
  2540. right: 1rem;
  2541. }
  2542. .delete-item-bootbox .close:before {
  2543. font-size: 25px;
  2544. color: red;
  2545. }
  2546. /*End- Pos delete bootbox design styles*/
  2547. .dashboard-setting-dp .dropdown-menu.show {
  2548. transform: translate3d(-153px, 30px, 0px) !important;
  2549. }
  2550. .jq-toast-wrap.top-center {
  2551. top: 5% !important;
  2552. transform: translate(-50%, -50%) !important;
  2553. left: 50% !important;
  2554. }
  2555. .biz-wrapper.biz__icon__menu .biz-menu.biz-primary-text-color .biz-submenu .nav-options-container ul li a {
  2556. font-size: 16px;
  2557. font-weight: 500;
  2558. }
  2559. /*.dashboardWidgetModal {
  2560. z-index: 9999;
  2561. background-color: rgba(31, 35, 39, 0.5);
  2562. }*/
  2563. .dashboardWidgetModal .WidgetModal {
  2564. max-width: 95%;
  2565. }
  2566. .dashboardWidgetModal .modal-header .nav-tabs .nav-item:first-of-type .nav-link {
  2567. margin-left: 0 !important;
  2568. }
  2569. .dashboardWidgetModal .modal-header .nav-tabs .nav-item:last-of-type .nav-link {
  2570. margin-right: 0 !important;
  2571. }
  2572. .dashboardWidgetModal .modal-footer {
  2573. border-bottom-left-radius: 8px !important;
  2574. border-bottom-right-radius: 8px !important;
  2575. }
  2576. #SaveEditDetailScreen .modal-body {
  2577. height: auto !important;
  2578. }
  2579. /*All KPI Font Start Here*/
  2580. [data-kpi|="kpi_font"] {
  2581. font-family: Inter, sans-serif;
  2582. font-size: 14px;
  2583. font-weight: 400;
  2584. color: #000;
  2585. overflow: hidden;
  2586. text-overflow: ellipsis;
  2587. white-space: nowrap;
  2588. }
  2589. /*All KPI Font End Here*/
  2590. .nav-group-search-li .group-search-input {
  2591. background-color: transparent;
  2592. border: none;
  2593. padding-right: 27px;
  2594. padding-left: 5px;
  2595. }
  2596. .nav-group-search-li .group-search-input:focus-visible {
  2597. background-color: rgb(204, 204, 204, 0.2) !important;
  2598. outline: none;
  2599. box-shadow: none;
  2600. }
  2601. .nav-group-search-li .search-icon,
  2602. .nav-group-search-li .clear-search {
  2603. position: absolute !important;
  2604. right: 2px;
  2605. top: 50%;
  2606. transform: translateY(-50%);
  2607. }
  2608. #div_App_DefaultWidgetSettings .biz-highlight-bg-color {
  2609. font-size: 16px !important;
  2610. font-weight: 500 !important;
  2611. }
  2612. .biz-submenu .navbar-nav .nav-item,
  2613. .navbar-nav-wrap .navbar-nav .nav-item {
  2614. margin: 2px 0px;
  2615. }
  2616. /*Guest App Folder Css Files */
  2617. .biz-img-folder {
  2618. height: 150px;
  2619. width: 150px;
  2620. text-align: center;
  2621. }
  2622. .biz-folder_tab {
  2623. width: 47px;
  2624. height: 10px;
  2625. margin-left: 0;
  2626. border-radius: 5px 10px 0 0;
  2627. background-color: #f2c874;
  2628. }
  2629. .biz-folder {
  2630. width: 100px;
  2631. height: 100px;
  2632. border-radius: 0 5px 5px 5px;
  2633. box-shadow: 1px 1px 0 1px #CCCCCC;
  2634. padding: 5px;
  2635. background-color: #f2c874;
  2636. }
  2637. .biz-folder-img {
  2638. width: 100%;
  2639. height: 100%;
  2640. }
  2641. /*Guest App Folder Css Files */
  2642. .search-clear-items {
  2643. position: absolute;
  2644. top: 50%;
  2645. transform: translateY(-50%);
  2646. line-height: 1;
  2647. z-index: 4;
  2648. right: 10%;
  2649. color: black;
  2650. }
  2651. .search-clear-items:hover {
  2652. color: red !important;
  2653. }
  2654. .cmn-daterange-input:focus {
  2655. box-shadow: none !important;
  2656. }
  2657. .desktop-view.col-xl-7 {
  2658. padding: 100px;
  2659. }
  2660. @media (min-width: 767px) and (max-width: 1199px) {
  2661. /* mobil-login,register&forgot_password*/
  2662. .mobil_new_login #Frm_Login,
  2663. .mobil_new_login #Frm_navgator,
  2664. .mobil_new_login #frm_RegisterUser,
  2665. .mobil_new_login #frm_ForgotPassword {
  2666. background: url(../imgs/tab-view-img.png) no-repeat !important;
  2667. height: 100vh;
  2668. background-size: cover !important;
  2669. background-repeat: no-repeat;
  2670. }
  2671. .mobil_new_login .form-control.login-input,
  2672. .mobil_new_login .form-control.login-input:focus,
  2673. .mobil_new_login .form-control#txt_EmailorPhone,
  2674. .mobil_new_login .form-control#txt_EmailorPhone:focus,
  2675. .mobil_new_login #ddl_Tenant,
  2676. .mobil_new_login #txt_ConfirmPswd,
  2677. .mobil_new_login #txt_ConfirmPswd:focus,
  2678. .mobil_new_login #txt_NewPswd,
  2679. .mobil_new_login #txt_NewPswd:focus,
  2680. .mobil_new_login #txt_PhoneorMail,
  2681. .mobil_new_login #txt_PhoneorMail:focus,
  2682. .mobil_new_login #txt_ConfirmPassword,
  2683. .mobil_new_login #txt_ConfirmPassword:focus,
  2684. .mobil_new_login #txt_NewPassword,
  2685. #txt_NewPassword:focus {
  2686. border-radius: 10px !important;
  2687. background: white !important;
  2688. }
  2689. /* end-mobil-login,register&forgot_password*/
  2690. }
  2691. .div_details_lock span {
  2692. height: 28px;
  2693. width: 28px;
  2694. display: flex;
  2695. color: #fff;
  2696. border-radius: 5%;
  2697. -webkit-box-align: center;
  2698. -ms-flex-align: center;
  2699. align-items: center;
  2700. justify-content: center;
  2701. -webkit-justify-content: center;
  2702. font-size: 18px;
  2703. color: red;
  2704. border-radius: 50%;
  2705. border: solid 1px red;
  2706. font-weight: 500;
  2707. margin-left: 5px;
  2708. margin-right: 5px;
  2709. font-size: 16px;
  2710. }
  2711. /*User Login Dettials Widget */
  2712. .user_login_detials {
  2713. padding: 20px;
  2714. background: white;
  2715. }
  2716. .user_login_detials .card.user_login_card {
  2717. margin-top: 50px;
  2718. border: none;
  2719. margin-bottom: 0px;
  2720. padding-bottom: 30px;
  2721. }
  2722. .user_login_detials .biz-login-user {
  2723. margin-top: -50px;
  2724. margin-left: auto;
  2725. margin-right: auto;
  2726. margin-bottom: 30px;
  2727. }
  2728. .user_login_detials .user_Name {
  2729. font-size: 30px;
  2730. color: black;
  2731. font-weight: 500;
  2732. margin-bottom: 10px;
  2733. }
  2734. .user_login_detials .user_Company_Name {
  2735. color: black;
  2736. font-size: 16px;
  2737. }
  2738. .user_login_detials .user_Branch_Name {
  2739. color: black;
  2740. font-size: 16px;
  2741. margin-top: 5px;
  2742. }
  2743. .user_login_detials .notification_icon {
  2744. font-size: 16px;
  2745. font-weight: 500;
  2746. color: black;
  2747. }
  2748. .user_login_detials .task_icon {
  2749. font-size: 16px;
  2750. font-weight: 500;
  2751. color: black;
  2752. }
  2753. .user_login_detials .user_icons_sup {
  2754. margin-left: 30px;
  2755. top: -52px;
  2756. font-size: 15px;
  2757. }
  2758. .user_login_detials .notifications_width {
  2759. width: 50%;
  2760. }
  2761. .customer-location-body .simplebar-content {
  2762. height: 100%;
  2763. }
  2764. .card-search-bar .filter-icon .applied-filter-count {
  2765. position: absolute;
  2766. width: 15px;
  2767. height: 15px;
  2768. top: -1px;
  2769. right: -2px;
  2770. font-size: 10px;
  2771. display: none;
  2772. align-items: center;
  2773. justify-content: center;
  2774. border-width: 1px;
  2775. border-radius: 50%;
  2776. }
  2777. .card-search-bar .filter-icon .applied-filter-count.active {
  2778. display: flex;
  2779. }
  2780. .cmn-daterange-picker.daterangepicker .drp-calendar {
  2781. max-width: max-content !important;
  2782. }
  2783. @media (max-width: 767px) {
  2784. .cmn-daterange-picker.daterangepicker {
  2785. width: 290px !important;
  2786. }
  2787. }
  2788. .div_treeviewdata .collapse-link {
  2789. background: transparent;
  2790. color: inherit;
  2791. font-weight: 500;
  2792. padding: 0.75rem 1.25rem;
  2793. display: block;
  2794. width: 100%;
  2795. text-align: left;
  2796. position: relative;
  2797. transition: all 0.2s ease-in-out;
  2798. }
  2799. .div_treeviewdata .collapse-link .collapse-icon,
  2800. .div_treeviewdata .tree-item-collapse-span .tree-collapse-icon {
  2801. font-size: 16px;
  2802. line-height: 0px;
  2803. transform: rotate(0deg);
  2804. transition: transform 0.4s ease;
  2805. }
  2806. .div_treeviewdata .collapse-link.collapsed .collapse-icon,
  2807. .div_treeviewdata .tree-item-collapse-span.collapsed .tree-collapse-icon {
  2808. transform: rotate(90deg);
  2809. }
  2810. .div_treeviewdata .tree-item-label {
  2811. color: inherit;
  2812. }
  2813. .div_treeviewdata .tree-view-list.collapse.show {
  2814. display: flex !important;
  2815. }
  2816. /*Report Col Select Styles*/
  2817. .groupby-cat-dp-menu .select2-container,
  2818. .groupby-cat-dp-menu .groupby-cat-select {
  2819. width: 100% !important;
  2820. z-index: 9 !important;
  2821. margin-top: 10px;
  2822. }
  2823. .groupby-cat-dp-menu .select2-search__field,
  2824. .tax-manager-branch .select2-search__field {
  2825. width: auto !important;
  2826. }
  2827. /* css for emp locations */
  2828. .emp_map_track_container {
  2829. background: #F7F7F7;
  2830. }
  2831. #emps_card_container {
  2832. overflow: auto;
  2833. overflow-x: hidden;
  2834. }
  2835. .employees_list_location {
  2836. gap: 20px;
  2837. }
  2838. .filtermodal_emp {
  2839. position: absolute;
  2840. right: -9px;
  2841. top: 46%;
  2842. transform: translate(0%, -50%);
  2843. border-radius: 8px;
  2844. cursor: pointer;
  2845. }
  2846. .search_emp_icon {
  2847. position: absolute;
  2848. left: 17px;
  2849. top: 50%;
  2850. transform: translate(-50%, -50%);
  2851. }
  2852. /*.employee_search_filter_input {
  2853. border: none;
  2854. outline: 0;
  2855. -webkit-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.35);
  2856. -moz-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.35);
  2857. box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.35);
  2858. border-radius: 10px;
  2859. padding-left:30px;
  2860. }
  2861. .employee_search_filter_input:focus{
  2862. outline:0;
  2863. }*/
  2864. .employee_search_filter_input {
  2865. padding-left: 30px !important;
  2866. outline: 0;
  2867. border-radius: 0.25rem !important;
  2868. background-color: rgb(255 255 255 / 37%) !important;
  2869. border: solid 1px #ccc !important;
  2870. }
  2871. .employee_search_filter_input:focus {
  2872. outline: 0;
  2873. }
  2874. .employee_search_filter_input::-webkit-input-placeholder {
  2875. /* Edge */
  2876. font-size: 16px;
  2877. color: black;
  2878. }
  2879. .employee_search_filter_input:-ms-input-placeholder {
  2880. /* Internet Explorer 10-11 */
  2881. font-size: 16px;
  2882. color: black;
  2883. }
  2884. .employee_search_filter_input::placeholder {
  2885. font-size: 16px;
  2886. color: black;
  2887. }
  2888. .emps_card {
  2889. display: flex;
  2890. flex-direction: column;
  2891. gap: 10px;
  2892. }
  2893. .filterIconEmp {
  2894. transition: all .2s ease;
  2895. }
  2896. .filterIconEmp:hover,
  2897. .filterHover {
  2898. transition: all .2s ease;
  2899. background: rgb(204, 204, 204, 0.2);
  2900. border-radius: 50%;
  2901. }
  2902. .searchEmp_containerParent .filterIconEmp:hover {
  2903. transition: all .2s ease;
  2904. color: red;
  2905. border-radius: 50%;
  2906. }
  2907. .modal li.list-group-item.remove-bb {
  2908. border-bottom: none !important;
  2909. }
  2910. /*Custom Tooltip Styles*/
  2911. .ui-tooltip.ui-widget-content {
  2912. border: 1px solid #aaa;
  2913. color: unset;
  2914. background: #3c4043;
  2915. border-radius: 4px;
  2916. padding: 4px 8px;
  2917. box-shadow: none;
  2918. }
  2919. .ui-tooltip.ui-widget {
  2920. font-family: inherit;
  2921. font-size: 12px;
  2922. }
  2923. .ui-tooltip .ui-tooltip-content {
  2924. color: #fff;
  2925. }
  2926. /*End-Custom Tooltip Styles*/
  2927. /*Common filter side panel*/
  2928. .biz-common-filter-dropdown .btn.btn-icon.cmn-filter-panel-pin {
  2929. position: absolute !important;
  2930. top: -9px;
  2931. right: -9px;
  2932. background-color: #fff !important;
  2933. z-index: 9;
  2934. }
  2935. .biz-cmn-filter-panel {
  2936. position: fixed;
  2937. top: 55px;
  2938. right: -300px;
  2939. width: 300px;
  2940. bottom: 0;
  2941. border: none;
  2942. background: #fff;
  2943. box-shadow: 0 28px 28px rgb(0 0 0 / 7%);
  2944. transition: all 0.4s ease;
  2945. }
  2946. .hk-wrapper .biz-cmn-filter-panel.show {
  2947. right: 0;
  2948. }
  2949. .biz-wrapper .biz-cmn-filter-panel {
  2950. top: 0;
  2951. right: -350px;
  2952. }
  2953. .biz-wrapper .biz-cmn-filter-panel.show {
  2954. right: 50px;
  2955. }
  2956. .biz-pg-wrapper.has-cmn-filter-panel {
  2957. margin-right: 300px !important;
  2958. transition: margin-right 0.4s ease;
  2959. }
  2960. .biz-wrapper .biz-pg-wrapper.has-cmn-filter-panel {
  2961. margin-right: 350px !important;
  2962. }
  2963. /*End-Common filter side panel*/
  2964. /*Custom Calendar view styles*/
  2965. @media (max-width: 1199px) {
  2966. #detailHeaderModal .biz-detail-avatar.header-avatar {
  2967. position: relative;
  2968. width: 80px !important;
  2969. height: 80px !important;
  2970. border-radius: 50%;
  2971. display: flex !important;
  2972. justify-content: center;
  2973. align-items: center;
  2974. margin-right: 5px;
  2975. }
  2976. .hk-wrapper .biz-settings-panel {
  2977. z-index: 9999 !important;
  2978. }
  2979. .templateviewer-tableview .fc-toolbar.fc-header-toolbar {
  2980. margin-bottom: 5px;
  2981. }
  2982. [data-kpi|="kpi_font"] {
  2983. font-family: Inter, sans-serif;
  2984. font-size: 12px !important;
  2985. font-weight: 500;
  2986. color: #000;
  2987. overflow: hidden;
  2988. text-overflow: ellipsis;
  2989. white-space: nowrap;
  2990. }
  2991. .templateviewer-tableview .fc-header-toolbar .fc-center {
  2992. margin-top: 10px;
  2993. }
  2994. .fc-header-toolbar .fc-center h2 {
  2995. font-size: 1.5rem;
  2996. }
  2997. .hk-wrapper.hk-nav-toggle .biz-nav-fullwidth,
  2998. .biz-wrapper.biz__nav__toggle .biz-nav-fullwidth {
  2999. z-index: 99999 !important;
  3000. }
  3001. .hk-wrapper.hk-vertical-nav.hk-nav-toggle .hk-nav.biz-layout-3-left-nav,
  3002. .hk-wrapper.hk-horizontal-nav.biz__nav__toggle .hk-nav.biz-layout-2-left-navbar,
  3003. .hk-wrapper.hk-horizontal-nav.biz__nav__toggle.biz-layout-2-top-navbar .hk-navbar,
  3004. .biz-wrapper.biz__nav__toggle .biz-submenu {
  3005. z-index: 999999 !important;
  3006. }
  3007. .biz-wrapper.biz__nav__toggle .biz-main-menu {
  3008. z-index: 9999999 !important;
  3009. }
  3010. }
  3011. /*End-Custom Calendar view styles*/
  3012. /*New loader for Widgets view loadings*/
  3013. .report-views-loader {
  3014. border: 3px solid #ccc;
  3015. border-top: 2px solid #000;
  3016. border-radius: 50%;
  3017. width: 16px;
  3018. height: 16px;
  3019. animation: main-search-loader-spin 1s linear infinite;
  3020. top: 28% !important;
  3021. }
  3022. .ui-sortable-handle,
  3023. .ui-draggable-handle,
  3024. .ui-selectable,
  3025. .ui-resizable-handle,
  3026. .ui-slider-handle {
  3027. -ms-touch-action: auto !important;
  3028. touch-action: auto !important;
  3029. }
  3030. /*DC Edit MRP Mobile view changes*/
  3031. .qnty_controls {
  3032. border-bottom: 1px solid grey !important;
  3033. }
  3034. .div_SplitchkPieces.custom-checkbox.checkbox-primary .custom-control-input:checked ~ .custom-control-label::before {
  3035. background-color: #00B0FF !important;
  3036. }
  3037. .div_SplitchkQuantity.custom-checkbox.checkbox-primary .custom-control-input:checked ~ .custom-control-label::before {
  3038. background-color: #00B0FF !important;
  3039. }
  3040. @media (max-width:576px) {
  3041. .qnty_controls {
  3042. border-bottom: none !important;
  3043. }
  3044. .custom-control-input {
  3045. z-index: 0;
  3046. }
  3047. .min-padding {
  3048. border-bottom: 1px solid grey;
  3049. }
  3050. }
  3051. @media (min-width:768px) and (max-width:992px) {
  3052. .custom-control-input {
  3053. z-index: 0;
  3054. }
  3055. }
  3056. /*DC Edit MRP Mobile view changes*/
  3057. .target-search-wrap.card-search-bar .txt_global_search {
  3058. padding-right: 10px;
  3059. }
  3060. .target-search-wrap.card-search-bar .search-wrapper .search-clear-icon {
  3061. right: 10px;
  3062. display: flex;
  3063. }
  3064. /*Pivot Ui Table Styles*/
  3065. .pivot-ui-tableview {
  3066. overflow: auto !important;
  3067. }
  3068. .pivot-ui-tableview .pvtUi {
  3069. width: 100%;
  3070. margin-bottom: 15px;
  3071. }
  3072. .pivot-ui-tableview .pvtHorizList,
  3073. .pivot-ui-tableview .pvtTable {
  3074. width: 100%;
  3075. }
  3076. .pivot-ui-tableview table.pvtTable thead tr th {
  3077. padding: 0.25rem;
  3078. font-size: 14px;
  3079. font-weight: 500;
  3080. border-color: rgb(217, 217, 217);
  3081. }
  3082. .pivot-ui-tableview table.pvtTable tbody tr th,
  3083. .pivot-ui-tableview table.pvtTable tbody tr td {
  3084. position: relative;
  3085. box-sizing: border-box;
  3086. padding: 0.15rem 0.25rem;
  3087. vertical-align: middle;
  3088. font-size: 13px;
  3089. color: #000006;
  3090. background-color: #fff;
  3091. border: none;
  3092. border-bottom: 1px solid #dee2e6;
  3093. white-space: nowrap;
  3094. overflow: hidden;
  3095. text-overflow: ellipsis;
  3096. }
  3097. .pivot-ui-tableview .pvtAxisContainer,
  3098. .pivot-ui-tableview .pvtVals,
  3099. .pivot-ui-tableview .pvtUiCell {
  3100. background: transparent;
  3101. padding: 5px;
  3102. border-color: rgb(217, 217, 217);
  3103. }
  3104. .pivot-ui-tableview .pvtAxisContainer li {
  3105. padding: 10px 6px;
  3106. }
  3107. .pivot-ui-tableview .pvtAxisContainer li .pvtAttr {
  3108. padding: 5px 10px;
  3109. border: none;
  3110. }
  3111. .pivot-ui-tableview .pvtAxisContainer .pvtAttr .column-dropdown {
  3112. display: inline-block;
  3113. cursor: pointer;
  3114. }
  3115. .pivot-ui-tableview select {
  3116. border-radius: 0.25rem;
  3117. padding: 0.25rem;
  3118. }
  3119. .pivot-ui-tableview .pvtFilterBox {
  3120. border-color: rgb(217, 217, 217);
  3121. }
  3122. .pivot-ui-tableview .pvtFilterBox h4 {
  3123. margin: 10px;
  3124. font-size: 18px;
  3125. }
  3126. .pivot-ui-tableview .pvtFilterBox {
  3127. border-radius: 0.25rem;
  3128. }
  3129. .pivot-ui-tableview .pvtFilterBox input[type='text'] {
  3130. border-radius: 0.25rem;
  3131. padding: 0.25rem;
  3132. border-width: 1px;
  3133. margin-bottom: 10px;
  3134. }
  3135. .pivot-ui-tableview .pvtFilterBox button {
  3136. margin: 0px 5px;
  3137. }
  3138. .pivot-ui-tableview .column-dp-menu li:not(.dropdown-item) {
  3139. padding: 0;
  3140. }
  3141. .pivot-ui-tableview .pvtTotal,
  3142. .pivot-ui-tableview .pvtGrandTotal {
  3143. font-weight: 500;
  3144. }
  3145. /*End-Pivot Ui Table Styles*/
  3146. /*Kanban Ui Styles*/
  3147. .kanban-container .kanban-board {
  3148. margin: 0px 15px;
  3149. }
  3150. .kanban-container .kanban-board:first-of-type {
  3151. margin-left: 0px !important;
  3152. }
  3153. .kanban-container .kanban-board:last-of-type {
  3154. margin-right: 0px !important;
  3155. }
  3156. .kanban-board header {
  3157. display: flex;
  3158. justify-content: space-between;
  3159. align-items: center;
  3160. padding: 10px !important;
  3161. }
  3162. /*End-Kanban Ui Styles*/
  3163. /*Pinned Dynamic Filters Styles*/
  3164. .biz-pinned-dynamic-filters {
  3165. background-color: #fff;
  3166. border-radius: 15px;
  3167. margin: 10px 0 5px;
  3168. }
  3169. .dashboardwidget-item .biz-pinned-dynamic-filters,
  3170. .portletwidget-item .biz-pinned-dynamic-filters {
  3171. margin: 0;
  3172. }
  3173. .biz-pinned-dynamic-filters .filter-dropdown-body {
  3174. max-height: 150px;
  3175. }
  3176. .biz-filter-dropdown .dynamic-filter-pin {
  3177. position: absolute !important;
  3178. top: -9px;
  3179. right: -9px;
  3180. background-color: #fff !important;
  3181. z-index: 9;
  3182. }
  3183. .unpin-dynamic-filters-icon .la-thumbtack:after {
  3184. content: '|';
  3185. color: #000;
  3186. position: absolute;
  3187. right: 55%;
  3188. font-weight: 500;
  3189. top: 46%;
  3190. font-size: 1em;
  3191. -webkit-transform: rotate(-45deg);
  3192. -moz-transform: rotate(-45deg);
  3193. -o-transform: rotate(-45deg);
  3194. -ms-transform: rotate(-45deg);
  3195. }
  3196. /*End-Pinned Dynamic Filters Styles*/
  3197. .divCustomProperties label[for='Validation']:empty {
  3198. display: none;
  3199. }
  3200. /*Card new class added Card vIew in mobile View */
  3201. .widget-card {
  3202. background: #fff;
  3203. font-size: 14px;
  3204. font-weight: 400;
  3205. border-bottom: 2px solid #ccc;
  3206. padding: 0.5rem 0.5rem;
  3207. box-shadow: none;
  3208. color: #000;
  3209. }
  3210. /*resume parsing styles start*/
  3211. .dragEnterResume {
  3212. background: rgb(114 255 255 / 0.40) !important;
  3213. }
  3214. .resumeParsingButtonDelete {
  3215. position: absolute;
  3216. top: 20px;
  3217. right: 20px;
  3218. cursor: pointer;
  3219. }
  3220. .parsingForm {
  3221. position: relative;
  3222. }
  3223. [data-copy="true"] {
  3224. color: #298DFF;
  3225. }
  3226. /*resume parsing styles end*/
  3227. /*Intgrations start Here */
  3228. [data-integrations="4lines"] {
  3229. text-overflow: ellipsis;
  3230. overflow: hidden;
  3231. display: -webkit-box;
  3232. -webkit-line-clamp: 2;
  3233. -webkit-box-orient: vertical;
  3234. white-space: normal;
  3235. word-break: break-all
  3236. }
  3237. .word-break-biz {
  3238. word-break: break-all !important;
  3239. }
  3240. /*Intgrations End Here */
  3241. /* Viewer Footer Styles*/
  3242. .footer-count-wrap {
  3243. position: relative;
  3244. height: 50px;
  3245. }
  3246. .footer-count-wrap .more-btn-group {
  3247. position: absolute;
  3248. top: 50%;
  3249. left: 50%;
  3250. transform: translate(-50%, -50%);
  3251. }
  3252. .footer-count-wrap .report-count-wrap {
  3253. position: absolute;
  3254. top: 50%;
  3255. right: 20px;
  3256. transform: translateY(-50%);
  3257. }
  3258. .report-viewer-footer .more-btn-group {
  3259. margin: .5rem 0;
  3260. z-index: 9;
  3261. }
  3262. .report-viewer-footer.footer-count-wrap .more-btn-group {
  3263. margin: 0;
  3264. }
  3265. .report-viewer-footer .more-btn-group .dropdown-toggle:after {
  3266. top: 3px;
  3267. right: 3px;
  3268. }
  3269. /*End-Viewer Footer Styles*/
  3270. /*Notification Rules start here*/
  3271. .textarea textarea::-webkit-scrollbar {
  3272. width: 4px;
  3273. }
  3274. .textarea textarea::-webkit-scrollbar-button {
  3275. display: none;
  3276. }
  3277. .textarea textarea::-webkit-scrollbar-track {
  3278. background-color: transparent;
  3279. }
  3280. .textarea textarea::-webkit-scrollbar-thumb {
  3281. background: #d2d2d2;
  3282. }
  3283. .textarea::-webkit-scrollbar {
  3284. width: 4px;
  3285. }
  3286. .textarea textarea::-webkit-scrollbar-button {
  3287. display: none;
  3288. }
  3289. .textarea textarea::-webkit-scrollbar-track {
  3290. background-color: transparent;
  3291. }
  3292. .textarea textarea::-webkit-scrollbar-thumb {
  3293. background: #d2d2d2;
  3294. }
  3295. /*Notification Rules End here*/
  3296. /*for details page header subtext*/
  3297. .biz-header-sub-text {
  3298. font-weight: 500;
  3299. font-size: 14px;
  3300. color: black;
  3301. }
  3302. .form-control.form-group-required {
  3303. border-bottom: 1px solid #fb6b5b !important
  3304. }
  3305. .biz-select2-wrap .select2.select2-container {
  3306. width: 100% !important;
  3307. }
  3308. .cmn-filters-body .cmn-filter-edit-icon-wrap {
  3309. position: absolute;
  3310. right: 2px;
  3311. top: 50%;
  3312. transform: translateY(-50%);
  3313. z-index: 1;
  3314. background-color: #fff;
  3315. }
  3316. /*User Login widget*/
  3317. .user-login-img-div .edit-picture {
  3318. position: absolute;
  3319. width: 100px;
  3320. height: 100px;
  3321. border-radius: 50%;
  3322. background: rgb(19, 19, 19, 0.5);
  3323. color: white;
  3324. font-size: 20px;
  3325. margin-left: 2px;
  3326. align-items: center;
  3327. justify-content: center;
  3328. }
  3329. /* Attendence Widget Styles Starts here */
  3330. #caputer_video .close:before {
  3331. font-size: 27px !important;
  3332. color: #0d0d0d;
  3333. }
  3334. .check_in_timer .strttime img,
  3335. .check_in_timer .endtime img,
  3336. .check_in_timer .duration img {
  3337. width: 100%;
  3338. max-width: 32%;
  3339. padding: 0px 11px 0px 0px;
  3340. }
  3341. .User_Picture #cam,
  3342. .User_Picture #photo {
  3343. max-width: 100%;
  3344. }
  3345. .thumb_output_ .loader-pendulums {
  3346. width: 46px;
  3347. height: 46px;
  3348. left: 175px;
  3349. }
  3350. .thumb_output_ .loader-pendulums:before {
  3351. width: 46px;
  3352. height: 46px;
  3353. }
  3354. .thumb_output_ .loader-pendulums:after {
  3355. width: 46px;
  3356. height: 46px;
  3357. }
  3358. @media (max-width:576px) {
  3359. .check_timings #Check_duration,
  3360. .check_timings #Check_out_time,
  3361. .check_timings #Check_in_time,
  3362. .check_in_timer .check_timings .check {
  3363. font-size: 12px !important;
  3364. }
  3365. .check_in_timer .timing {
  3366. width: 100%;
  3367. max-width: 10% !important;
  3368. }
  3369. .check_in_timer .run_time {
  3370. font-size: 18px !important;
  3371. width: 100%;
  3372. max-width: 91px;
  3373. }
  3374. .check_in_timer #check_in_btn,
  3375. .check_in_timer #check_out_btn {
  3376. padding: 2px 4px !important;
  3377. }
  3378. .check_in_timer #check_in_btn span,
  3379. .check_in_timer #check_out_btn span {
  3380. font-size: 14px !important;
  3381. }
  3382. .check_in_body .shift_name,
  3383. .check_in_body.shift_timeings {
  3384. font-size: 13px !important;
  3385. }
  3386. .User_Picture #user_location {
  3387. font-size: 12px !important;
  3388. }
  3389. .User_Picture #location_data button {
  3390. font-size: 11px !important;
  3391. }
  3392. .check_in_timer .strttime img,
  3393. .check_in_timer .duration img {
  3394. width: 100%;
  3395. max-width: 32% !important;
  3396. padding: 0px 7px 0px 0px;
  3397. }
  3398. .check_in_timer .endtime img {
  3399. width: 100%;
  3400. max-width: 33% !important;
  3401. padding: 0px 7px 0px 0px;
  3402. }
  3403. }
  3404. @media (max-width:991px) {
  3405. .check_in_timer .timing {
  3406. width: 100%;
  3407. max-width: 6%;
  3408. }
  3409. .check_in_timer .duration,
  3410. .check_timings .startime {
  3411. justify-content: center !important;
  3412. }
  3413. .check_in_timer .duration img,
  3414. .check_in_timer .endtime img,
  3415. .check_in_timer .strttime img {
  3416. width: 100%;
  3417. max-width: 20%;
  3418. padding: 0px 7px 0px 0px;
  3419. }
  3420. }
  3421. @media (min-width: 768px) {
  3422. .check_in_timer .timing {
  3423. width: 100%;
  3424. max-width: 6%;
  3425. }
  3426. .sales-special-offers {
  3427. top: -10px;
  3428. left: 8%
  3429. }
  3430. }
  3431. @media (min-width: 764px) {
  3432. .run_time {
  3433. width: 100%;
  3434. max-width: 125px;
  3435. }
  3436. }
  3437. @media (min-width: 992px) {
  3438. .check_in_timer .timing {
  3439. width: 100%;
  3440. max-width: 5%;
  3441. }
  3442. .run_time {
  3443. width: 100%;
  3444. max-width: 125px;
  3445. }
  3446. .check_in_timer .strttime img,
  3447. .check_in_timer .endtime img,
  3448. .check_in_timer .duration img {
  3449. width: 100%;
  3450. max-width: 50px;
  3451. }
  3452. }
  3453. @media (max-width:1199px) {
  3454. .check_in_timer .strttime img,
  3455. .check_in_timer .endtime img,
  3456. .check_in_timer .duration img {
  3457. padding: 0px 7px 0px 0px;
  3458. }
  3459. .widget-card {
  3460. font-size: 11px !important;
  3461. }
  3462. }
  3463. @media (min-width:1200px) {
  3464. .check_in_timer .timing {
  3465. width: 100%;
  3466. max-width: 9%;
  3467. }
  3468. .check_in_timer .strttime img,
  3469. .check_in_timer .endtime img,
  3470. .check_in_timer .duration img {
  3471. width: 100%;
  3472. max-width: 35px;
  3473. }
  3474. .run_time {
  3475. width: 100%;
  3476. max-width: 120px;
  3477. }
  3478. }
  3479. @media (min-width:1490px) {
  3480. .check_in_timer .strttime img,
  3481. .check_in_timer .endtime img,
  3482. .check_in_timer .duration img {
  3483. width: 100%;
  3484. max-width: 50px;
  3485. }
  3486. }
  3487. /* Attendence Widget Styles Ends here */
  3488. .floating-label-form-group-with-value label {
  3489. opacity: 1 !important;
  3490. }
  3491. #wizard-multi-step input[type=number]::-webkit-inner-spin-button,
  3492. #wizard-multi-step input[type=number]::-webkit-outer-spin-button {
  3493. -webkit-appearance: none;
  3494. margin: 0;
  3495. }
  3496. .label-help-text {
  3497. padding: 0px 5px;
  3498. border-radius: 0.25rem;
  3499. font-size: 12px;
  3500. color: #6c6c6d;
  3501. }
  3502. .label-help-text:hover {
  3503. background-color: #ffc20e52;
  3504. color: #3d3a3a;
  3505. }
  3506. .floating-label-form-group.help-tooltip-enabled label {
  3507. top: 0;
  3508. opacity: 1;
  3509. }
  3510. .cart-categories-wrap .cat-title-input:focus {
  3511. box-shadow: 0 0 0 0.1rem rgb(0 123 255 / 25%);
  3512. }
  3513. #div_detail_profile {
  3514. box-shadow: -300px -1px 1px 1px rgb(32 32 32 / 50%);
  3515. }
  3516. .widgetdataHere ul.layout_list_container li:last-child .widget-card {
  3517. border: none !important;
  3518. }
  3519. /* Details pages click events disable when edit screen mode Start Here */
  3520. /*.tab-container[data-click_disbale_details="true"] [data-click_event_widget="disable"] {
  3521. cursor: not-allowed;
  3522. }
  3523. .tab-container[data-click_disbale_details="true"] [data-click_event_widget="disable"] a {
  3524. pointer-events: none;
  3525. }*/
  3526. /* Details pages click events disable when edit screen mode End Here */
  3527. /*time line more option class*/
  3528. .timeline-data-hide {
  3529. height: 35px;
  3530. overflow: hidden;
  3531. }
  3532. /*checkbox while disabled*/
  3533. .custom-checkbox.checkbox-primary .custom-control-input:disabled ~ .custom-control-label::before {
  3534. background-color: #00b0ff4d !important;
  3535. cursor: no-drop;
  3536. }
  3537. .custom-checkbox.checkbox-primary .custom-control-input:disabled ~ .custom-control-label::after {
  3538. cursor: no-drop;
  3539. }
  3540. .custom-control-input[type="radio"]:disabled ~ .custom-control-label::after {
  3541. cursor: no-drop;
  3542. }
  3543. .custom-checkbox .custom-control-input:checked:disabled ~ .custom-control-label::after {
  3544. cursor: no-drop;
  3545. }
  3546. /*employee target-widget css starts*/
  3547. .employee-target-row .progress-circle-timeline {
  3548. position: relative;
  3549. display: inline-block;
  3550. width: 30px;
  3551. height: 30px;
  3552. border-radius: 50%;
  3553. background-color: #ebebeb;
  3554. }
  3555. .employee-target-row .progress-circle span:after {
  3556. content: "%";
  3557. font-weight: 500;
  3558. color: #8b8b8b;
  3559. }
  3560. .employee-target-row .progress-circle:after {
  3561. content: '';
  3562. display: inline-block;
  3563. width: 100%;
  3564. height: 100%;
  3565. border-radius: 50%;
  3566. -webkit-animation: colorload 2s;
  3567. animation: colorload 2s;
  3568. }
  3569. .employee-target-row .progress-circle span {
  3570. font-size: 1rem;
  3571. color: #8b8b8b;
  3572. position: absolute;
  3573. left: 50%;
  3574. top: 50%;
  3575. display: block;
  3576. width: 40px;
  3577. height: 40px;
  3578. line-height: 40px;
  3579. margin-left: -20px;
  3580. margin-top: -20px;
  3581. text-align: center;
  3582. border-radius: 50%;
  3583. background: #fff;
  3584. z-index: 1;
  3585. }
  3586. .employee-target-row .progress-circle {
  3587. position: relative;
  3588. display: inline-block;
  3589. margin: 1rem;
  3590. width: 60px;
  3591. height: 60px;
  3592. border-radius: 50%;
  3593. background-color: #ebebeb;
  3594. }
  3595. .employee-target-row .progress-circle-timeline span {
  3596. font-size: 10px;
  3597. color: #8b8b8b;
  3598. position: absolute;
  3599. left: 50%;
  3600. top: 50%;
  3601. /*display: block;*/
  3602. display: flex;
  3603. justify-content: center;
  3604. width: 20px;
  3605. height: 20px;
  3606. line-height: 20px;
  3607. margin-left: -10px;
  3608. margin-top: -10px;
  3609. text-align: center;
  3610. border-radius: 50%;
  3611. background: #fff;
  3612. z-index: 1;
  3613. }
  3614. .employee-target-row .progress-circle-timeline:after {
  3615. content: '';
  3616. display: inline-block;
  3617. width: 100%;
  3618. height: 100%;
  3619. border-radius: 50%;
  3620. -webkit-animation: colorload 2s;
  3621. animation: colorload 2s;
  3622. }
  3623. a.badge[data-stage2dropdown="true"]:focus,
  3624. a.badge[data-stage2dropdown="true"]:hover {
  3625. box-shadow: none !important;
  3626. transform: none;
  3627. }
  3628. .layout_list_container .badge,
  3629. a.badge[data-stage2dropdown="true"] span:first-of-type {
  3630. white-space: nowrap;
  3631. overflow: hidden;
  3632. text-overflow: ellipsis;
  3633. }
  3634. /*Details page Portlets more anchor tag*/
  3635. .more-tab .collapsedPortlet {
  3636. display: flex;
  3637. align-items: center;
  3638. }
  3639. /*time line more option class*/
  3640. .timeline-data-hide-single {
  3641. overflow: hidden;
  3642. display: -webkit-box;
  3643. -webkit-line-clamp: 2;
  3644. -webkit-box-orient: vertical;
  3645. }
  3646. .timeline-data-hide {
  3647. line-height: 1.5em;
  3648. height: 35px;
  3649. overflow: hidden;
  3650. }
  3651. .layout_list_container .badge,
  3652. a.badge[data-stage2dropdown="true"] span:first-of-type {
  3653. white-space: nowrap !important;
  3654. overflow: hidden !important;
  3655. text-overflow: ellipsis !important;
  3656. }
  3657. span.select2-selection.select2-selection--single {
  3658. outline: none;
  3659. }
  3660. /*home-page ui changes */
  3661. .dashboard-setting-dp .dashboard-settings-btn,
  3662. .common-filter-dp-btn {
  3663. font-size: 20px !important;
  3664. }
  3665. /*order items editItemPrice color*/
  3666. .editItemPrice {
  3667. color: #000000 !important
  3668. }
  3669. /*small mobile screen nav styles starts here */
  3670. @media (max-width: 360px) {
  3671. .biz-navbar .navbar-brand .brand-img {
  3672. height: 16px !important;
  3673. }
  3674. .biz-navbar .navbar-nav .nav-item {
  3675. padding: 0px 5px 0px 5px !important;
  3676. }
  3677. }
  3678. /*New Ui Changes*/
  3679. body.background-image #bizgaze_body .top-navbar.hk-wrapper.hk-horizontal-nav .hk-navbar.biz-primary-color {
  3680. background: rgb(0,0,0,0.4) !important;
  3681. }
  3682. .dashboardwidget-item .card-header, .dashboardwidget-item .card-body, .dashboardwidget-item .card-footer {
  3683. background: white;
  3684. }
  3685. #bizgaze_body .card.list {
  3686. background-color: #fff0 !important
  3687. }
  3688. #bizgaze_body .dashboardwidget-item .card.list {
  3689. background-color: #fff !important;
  3690. }
  3691. body.background-image .userdesignmenu_apps .feature-block, body.background-image .menu .viewer-header {
  3692. background-color: #f0f8ffa8 !important
  3693. }
  3694. body.background-image .templateviewer-tableview .Templateheader, body.background-image .templateviewer-tableview .templateviewer-body {
  3695. background-color: rgba(255,255,255,0.65) !important
  3696. }
  3697. .feature-block:hover svg {
  3698. transform: scale(1.1);
  3699. transition: 0.5s;
  3700. }
  3701. .feature-block:hover {
  3702. -webkit-box-shadow: -1px 1px 13px -2px rgba(140,132,140,0.96);
  3703. -moz-box-shadow: -1px 1px 13px -2px rgba(140,132,140,0.96);
  3704. box-shadow: -1px 1px 13px -2px rgba(140,132,140,0.96);
  3705. transition: 0.9s;
  3706. border-radius: 4px;
  3707. }
  3708. @media (min-width: 1199px) {
  3709. .col-md-3.droppablePlaceCol .biz-views-dropdown .views-dropdown-footer .btn-outline-primary, .col-xl-3.droppablePlaceCol .biz-views-dropdown .views-dropdown-footer .btn-outline-primary {
  3710. font-size: 8px !important;
  3711. padding: 4px 6px !important;
  3712. }
  3713. .col-md-4.droppablePlaceCol .biz-views-dropdown .views-dropdown-footer .btn-outline-primary, .col-xl-4.droppablePlaceCol .biz-views-dropdown .views-dropdown-footer .btn-outline-primary {
  3714. font-size: 10px !important;
  3715. padding: 4px 6px !important;
  3716. }
  3717. }
  3718. .userDesignReportSettings .lireportgrp-item:hover {
  3719. -webkit-box-shadow: -1px 1px 13px -2px rgba(140,132,140,0.96);
  3720. -moz-box-shadow: -1px 1px 13px -2px rgba(140,132,140,0.96);
  3721. box-shadow: -1px 1px 13px -2px rgba(140,132,140,0.96);
  3722. transition: 0.9s;
  3723. }
  3724. .userDesignReportSettings .lireportgrp-item:hover svg {
  3725. transform: scale(1.1);
  3726. transition: 0.8s;
  3727. }
  3728. .userDesignReportSettings .lireportgrp-item:hover .appname {
  3729. font-weight: 500;
  3730. transition: 0.23;
  3731. }
  3732. .biz-svg-avatar {
  3733. position: relative;
  3734. width: 35px !important;
  3735. height: 35px !important;
  3736. border-radius: 50%;
  3737. display: flex !important;
  3738. justify-content: center;
  3739. align-items: center;
  3740. margin-right: 5px;
  3741. }
  3742. .daterangepicker.show-calendar.picker-fullwidth {
  3743. left: 10px !important;
  3744. right: auto !important;
  3745. }
  3746. .kpi-card {
  3747. position: relative;
  3748. }
  3749. .kpi-card .kpi-link-report {
  3750. position: absolute;
  3751. right: 6px;
  3752. top: 0;
  3753. }
  3754. .select2-account-container .select2-results__option:last-of-type {
  3755. display: none;
  3756. }
  3757. .select2-account-container .select2-results.mb-15 {
  3758. margin-bottom: 0px !important
  3759. }
  3760. /* customized_products*/
  3761. @media (max-width:992px) {
  3762. .customized_product_body p, .Cmp__description, .customized_product_body .list-item-main-title, .custmized_product_footer .confirm_btn {
  3763. font-size: 12px
  3764. }
  3765. .form-check-input {
  3766. transform: scale(1) !important;
  3767. }
  3768. .customized_product_body select {
  3769. padding: 0 !important;
  3770. font-size: 12px;
  3771. }
  3772. }
  3773. /*Template Text*/
  3774. .template__text * {
  3775. font-size: 97% !important;
  3776. }