organizr.css 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929
  1. .panel .notify {
  2. margin-top: 18px !important;
  3. margin-left: -11px;
  4. }
  5. .editHomepageItemDiv-on {
  6. z-index: 9999 !important;
  7. opacity: 1 !important;
  8. background: #000000eb !important;
  9. }
  10. .editHomepageItemDiv-off {
  11. z-index: -9999 !important;
  12. opacity: 0 !important;
  13. display: none;
  14. animation-duration: 0.6s;
  15. }
  16. #editHomepageItem {
  17. margin-top: 40px;
  18. }
  19. /*JSGrid*/
  20. .jsgrid-grid-body {
  21. overflow-x: auto;
  22. overflow-y: auto;
  23. -webkit-overflow-scrolling: touch;
  24. }
  25. .jsgrid-table {
  26. width: 100% !important;
  27. table-layout: fixed;
  28. border-collapse: collapse;
  29. border-spacing: 0;
  30. }
  31. .jsgrid-grid-header {
  32. overflow-y: auto;
  33. }
  34. .jsgrid-grid-header {
  35. background: transparent;
  36. }
  37. .jsgrid-grid-body td {
  38. border: transparent;
  39. }
  40. .jsgrid-pager a {
  41. color: white;
  42. }
  43. .item-pager-panel {
  44. margin-top: -26px;
  45. }
  46. span.jsgrid-pager-page.jsgrid-pager-current-page.btn.btn-primary{
  47. padding: 6px 11px;
  48. margin-left: 9px;
  49. margin-right: 9px !important;
  50. }
  51. .bg-org .swal-title {
  52. color: white;
  53. }
  54. .swal-content {
  55. padding: 0;
  56. margin: 0 !important;
  57. }
  58. /*Preloader*/
  59. .preloader {
  60. width: 100%;
  61. height: 100%;
  62. top: 0px;
  63. position: fixed;
  64. z-index: 99999;
  65. background: rgba(0, 0, 0, 0.88);
  66. }
  67. .preloader .cssload-speeding-wheel {
  68. position: absolute;
  69. top: calc(50% - 3.5px);
  70. left: calc(50% - 3.5px);
  71. }
  72. .w-100 {
  73. width: 100%;
  74. }
  75. .iframe {
  76. width: 100%;
  77. height: 100%;
  78. position: inherit;
  79. display: block;
  80. }
  81. @media screen and (max-width: 767px) {
  82. body {
  83. height: 100%;
  84. }
  85. }
  86. @media screen and (max-width: 767px) {
  87. .orgErrorAlert {
  88. min-width: 200px;
  89. width: calc(100% - 40px);
  90. max-width: 727px;
  91. background-color: #1f1f1f !important;
  92. }
  93. }
  94. @media screen and (min-width: 768px) {
  95. .orgErrorAlert {
  96. min-width: 478px;
  97. width: calc(100% - 40px);
  98. max-width: 1200px;
  99. background-color: #1f1f1f !important;
  100. }
  101. }
  102. @media screen and (max-width: 767px) {
  103. .orgAlertTransparent {
  104. min-width: 200px;
  105. width: 100%;
  106. max-width: 727px;
  107. background-color: transparent !important;
  108. }
  109. }
  110. @media screen and (min-width: 768px) {
  111. .orgAlertTransparent {
  112. min-width: 478px;
  113. width: calc(100% - 40px);
  114. max-width: 1200px;
  115. background-color: transparent!important;
  116. }
  117. }
  118. @media screen and (min-width: 768px) {
  119. #page-wrapper.sidebar-hidden {
  120. margin-left: 0;
  121. width: 100%;
  122. }
  123. .sidebar.sidebar-hidden {
  124. display: none;
  125. }
  126. .navbar.sidebar-hidden {
  127. padding-left: 0;
  128. }
  129. }
  130. .tab1 { padding-left: 1em; }
  131. .tab2 { padding-left: 2em; }
  132. .tab3 { padding-left: 3em; }
  133. .tab4 { padding-left: 4em; }
  134. .tab5 { padding-left: 5em; }
  135. .tab6 { padding-left: 6em; }
  136. .tab7 { padding-left: 7em; }
  137. .tab8 { padding-left: 8em; }
  138. .tab9 { padding-left: 9em; }
  139. .tab10 { padding-left: 10em; }
  140. .tab11 { padding-left: 11em; }
  141. .tab12 { padding-left: 12em; }
  142. .tab13 { padding-left: 13em; }
  143. .tab14 { padding-left: 14em; }
  144. .tab15 { padding-left: 15em; }
  145. .tab16 { padding-left: 16em; }
  146. .splitRight {
  147. width: calc(50% - 60px);
  148. margin-left: calc(50% - -60px) !important;
  149. position: absolute !important;
  150. }
  151. .split {
  152. width: calc(50%) !important;
  153. position: absolute !important;
  154. }
  155. .fix-header #page-wrapper-right {
  156. margin-top: 40px;
  157. }
  158. .fc-popover.fc-more-popover {
  159. position: fixed;
  160. }
  161. .organizr-area,
  162. .organizr-area-right {
  163. height: 100%;
  164. position: absolute;
  165. width: 100%;
  166. }
  167. /* Larger Images */
  168. #side-menu>li>a {
  169. padding: 10px 35px 10px 15px;
  170. display: block;
  171. }
  172. .sidebar .nav-second-level li a {
  173. padding: 14px 10px 14px 15px;
  174. }
  175. .modal-backdrop {
  176. z-index: 1049;
  177. }
  178. #side-menu .fa-fw {
  179. width: 30px !important;
  180. }
  181. .sidebar:hover #side-menu .user-pro ul li a {
  182. padding-left: 30px;
  183. }
  184. .sidebar #side-menu .user-pro ul li a {
  185. padding: 14px 10px 14px 17px;
  186. }
  187. .sttabs nav a {
  188. position: relative;
  189. display: block;
  190. overflow: hidden;
  191. text-overflow: ellipsis;
  192. white-space: nowrap;
  193. line-height: 1.5;
  194. }
  195. .common-list .notify {
  196. position: relative;
  197. margin-top: .5px;
  198. margin-right: 9px;
  199. }
  200. .ajaxloader {
  201. width: 100%;
  202. height: 100%;
  203. top: 0px;
  204. position: absolute;
  205. z-index: 99999;
  206. background: rgba(0, 0, 0, 0.68);
  207. margin: 0 auto;
  208. border-radius: 10px;
  209. }
  210. .lock-screen {
  211. background: url(../plugins/images/login-register.jpg) center center/cover no-repeat !important;
  212. height: 100%;
  213. position: fixed;
  214. z-index: 1001;
  215. top: 0;
  216. width: 100%;
  217. -webkit-user-select: none;
  218. /* Chrome all / Safari all */
  219. -moz-user-select: none;
  220. /* Firefox all */
  221. -ms-user-select: none;
  222. /* IE 10+ */
  223. -o-user-select: none;
  224. user-select: none;
  225. }
  226. .org-rox-trigger {
  227. position: fixed;
  228. height: 2px;
  229. width: 2px;
  230. bottom: 0;
  231. right: 0;
  232. z-index: 10000000000000000; }
  233. .org-rox-trigger:hover .org-rox {
  234. display: block; }
  235. .org-rox {
  236. display: none;
  237. position: fixed;
  238. top: 100px;
  239. left: 300px;
  240. z-index: 10000000000000000; }
  241. .org-rox .hair:before,
  242. .org-rox .hair:after {
  243. content: "";
  244. position: absolute; }
  245. .org-rox .hair:before {
  246. width: 0;
  247. height: 0;
  248. border-left: 60px solid transparent;
  249. border-bottom: 60px solid #8e2800;
  250. left: 40px;
  251. margin-top: -10px; }
  252. .org-rox .hair:after {
  253. width: 0;
  254. height: 0;
  255. border-left: 60px solid transparent;
  256. border-bottom: 60px solid #8e2800;
  257. left: 60px;
  258. margin-top: -20px; }
  259. .org-rox .head {
  260. position: relative;
  261. width: 200px;
  262. height: 200px;
  263. border-radius: 100px;
  264. background-color: #8e2800; }
  265. .org-rox .ear {
  266. position: absolute;
  267. top: 20px;
  268. content: "";
  269. width: 100px;
  270. height: 100px;
  271. border-radius: 50px;
  272. background-color: #8e2800; }
  273. .org-rox .ear.left {
  274. left: -40px; }
  275. .org-rox .ear.right {
  276. right: -40px; }
  277. .org-rox .ear.left:before,
  278. .org-rox .ear.right:before {
  279. position: absolute;
  280. content: "";
  281. top: 12px;
  282. width: 100px;
  283. height: 80px;
  284. border-radius: 80px;
  285. background-color: #b64926; }
  286. .org-rox .ear.left:before {
  287. left: 20px; }
  288. .org-rox .ear.right:before {
  289. right: 20px; }
  290. .org-rox .face {
  291. position: relative;
  292. width: 200px;
  293. height: 200px;
  294. border-radius: 100px;
  295. background-color: #8e2800;
  296. z-index: 0; }
  297. .org-rox .face:before {
  298. position: absolute;
  299. content: "";
  300. top: 40px;
  301. left: 20px;
  302. width: 160px;
  303. height: 160px;
  304. border-radius: 80px;
  305. background-color: #b64926;
  306. z-index: 1; }
  307. .org-rox .eye {
  308. position: absolute;
  309. top: 60px;
  310. width: 64px;
  311. height: 64px;
  312. border-radius: 64px;
  313. background-color: #fff0a5;
  314. z-index: 4; }
  315. .org-rox .eye.left {
  316. left: 34px; }
  317. .org-rox .eye.right {
  318. right: 34px; }
  319. .org-rox .eye:before,
  320. .org-rox .eye:after {
  321. position: absolute;
  322. content: "";
  323. -webkit-animation: roll-eye 1s infinite linear normal;
  324. animation: roll-eye 1s infinite linear normal; }
  325. .org-rox .eye:before {
  326. top: 20px;
  327. left: 20px;
  328. width: 20px;
  329. height: 20px;
  330. border-radius: 10px;
  331. background-color: black; }
  332. .org-rox .eye:after {
  333. top: 22px;
  334. left: 30px;
  335. width: 4px;
  336. height: 4px;
  337. border-radius: 2px;
  338. background-color: white; }
  339. .org-rox .eye.right:after,
  340. .org-rox .eye.right:before {
  341. -webkit-animation: roll-eye 1s infinite linear reverse;
  342. animation: roll-eye 1s infinite linear reverse; }
  343. @-webkit-keyframes roll-eye {
  344. from {
  345. -webkit-transform: rotate(90deg) translate(-16px) rotate(90deg); }
  346. to {
  347. -webkit-transform: rotate(450deg) translate(-16px) rotate(-450deg); } }
  348. @keyframes roll-eye {
  349. from {
  350. transform: rotate(90deg) translate(-16px) rotate(90deg); }
  351. to {
  352. transform: rotate(450deg) translate(-16px) rotate(-450deg); } }
  353. .org-rox .nose:before,
  354. .org-rox .nose:after {
  355. position: absolute;
  356. content: "";
  357. width: 4px;
  358. height: 4px;
  359. border-radius: 2px;
  360. background-color: black;
  361. top: 130px;
  362. left: 94px;
  363. z-index: 4; }
  364. .org-rox .nose:after {
  365. left: 102px; }
  366. .org-rox .mouth {
  367. position: absolute;
  368. z-index: 3;
  369. top: 120px;
  370. left: -4px;
  371. background-color: #b64926;
  372. height: 120px;
  373. width: 208px;
  374. border-bottom-left-radius: 170px 88px;
  375. border-bottom-right-radius: 170px 88px;
  376. border-top-left-radius: 92px 88px;
  377. border-top-right-radius: 92px 88px; }
  378. .org-rox .mouth:before {
  379. position: absolute;
  380. content: "";
  381. top: 40px;
  382. left: 46px;
  383. width: 120px;
  384. height: 60px;
  385. background-color: #000000;
  386. border-bottom-left-radius: 170px;
  387. border-bottom-right-radius: 180px; }
  388. .org-rox .mouth:after {
  389. position: absolute;
  390. content: "";
  391. top: 64px;
  392. left: 66px;
  393. width: 80px;
  394. height: 40px;
  395. background-color: #b5292a;
  396. border-top-left-radius: 30px;
  397. border-top-right-radius: 30px;
  398. border-bottom-left-radius: 80px;
  399. border-bottom-right-radius: 80px;
  400. -webkit-animation: move-tongue 1s infinite alternate-reverse;
  401. animation: move-tongue 1s infinite alternate-reverse; }
  402. @-webkit-keyframes move-tongue {
  403. from {
  404. top: 64px; }
  405. to {
  406. top: 70px; } }
  407. @keyframes move-tongue {
  408. from {
  409. top: 64px; }
  410. to {
  411. top: 70px; } }
  412. body.stop-scrolling {
  413. height: 100%;
  414. overflow: hidden;
  415. }
  416. .tabEditorIcon i {
  417. font-size: 35px;
  418. text-align: center !important;
  419. width: 35px !important;
  420. font-style: normal;
  421. }
  422. .tabEditorIcon img {
  423. width: 35px !important;
  424. }
  425. .asColorPicker-wrap {
  426. position: relative;
  427. display: block;
  428. width: calc(100% - 35px);
  429. }
  430. .asColorPicker-trigger {
  431. position: absolute;
  432. top: 0;
  433. right: -32px;
  434. height: 38px;
  435. width: 37px;
  436. border: 0;
  437. border-radius: 0 4px 4px 0;
  438. }
  439. .asColorPicker-trigger span {
  440. width: 100%;
  441. height: 100%;
  442. display: inline-block;
  443. border-radius: 0 4px 4px 0;
  444. }
  445. .top-left-part {
  446. width: auto;
  447. max-width: 220px;
  448. float: left;
  449. border-right: transparent;
  450. display: inline-flex;
  451. flex-wrap: nowrap;
  452. }
  453. .tabs-style-flip {
  454. max-width: 1400px;
  455. margin: 0 auto;
  456. }
  457. .elip {
  458. white-space: nowrap;
  459. text-overflow: ellipsis;
  460. overflow: hidden;
  461. display: block;
  462. }
  463. .p-a-5 {
  464. padding: 5px !important
  465. }
  466. .error-page {
  467. width: 100%;
  468. background: #1b1a1a;
  469. height: 100%;
  470. position: fixed;
  471. display: none;
  472. z-index: 11;
  473. }
  474. img.lazyload.tabImages {
  475. height: 120px !important;
  476. object-fit: contain;
  477. /*-webkit-filter: drop-shadow(0px 0px 0px black);
  478. filter: drop-shadow(0px 0px 0px black);*/
  479. }
  480. .recent-cover {
  481. background-position: center;
  482. background-size: cover;
  483. height: 150px;
  484. width: 150px;
  485. top: 37px;
  486. position: relative;
  487. }
  488. .recent-sponsor {
  489. background-position: center;
  490. background-size: cover;
  491. height: 150px;
  492. width: 150px;
  493. position: relative;
  494. }
  495. #backersList .recent-sponsor {
  496. background-position: center;
  497. background-size: cover;
  498. height: 75px;
  499. width: 75px;
  500. position: relative;
  501. }
  502. .recent-poster {
  503. background-position: center;
  504. background-size: cover;
  505. height: 225px;
  506. width: 150px;
  507. position: relative;
  508. top: 0;
  509. left: 0;
  510. }
  511. .recent-title {
  512. position: absolute;
  513. bottom: 0px;
  514. background: rgba(31, 31, 31, 0.73);
  515. width: inherit;
  516. color: white;
  517. display: none;
  518. }
  519. .item:hover .recent-title {
  520. display: block;
  521. }
  522. .nowPlayingHover {
  523. margin-bottom: 14px;
  524. }
  525. .nowPlayingUserThumb:hover {
  526. opacity: 0;
  527. -webkit-transition: all .4s ease-in-out;
  528. transition: all .4s ease-in-out;
  529. }
  530. .tabLoaded {
  531. -webkit-filter: drop-shadow(0px 0px 5px #2cabe4);
  532. filter: drop-shadow(0px 0px 5px #2cabe4);
  533. }
  534. .user-bg {
  535. margin: -25px;
  536. height: 338px;
  537. overflow: hidden;
  538. position: relative;
  539. background-size: cover;
  540. background-position: top;
  541. background-repeat: no-repeat;
  542. }
  543. h2.m-b-0.font-medium.pull-right {
  544. -webkit-filter: drop-shadow(1px 1px 0px #1f1f1f);
  545. filter: drop-shadow(1px 1px 0px #1f1f1f);
  546. color: white;
  547. }
  548. .text-plex {
  549. color: #E5A00D;
  550. }
  551. .text-emby {
  552. color: #4CAF50;
  553. }
  554. .genre-list {
  555. position: absolute;
  556. bottom: 0;
  557. left: 0;
  558. }
  559. .mouse {
  560. cursor: pointer;
  561. }
  562. .no-mouse {
  563. cursor: unset;
  564. }
  565. .no-mouse:hover {
  566. opacity: 1 !important;
  567. }
  568. .mouse-grab {
  569. cursor: grab;
  570. }
  571. table.dataTable {
  572. border-radius: 10px;
  573. }
  574. table.dataTable thead tr th {
  575. padding: 10px 0 10px 5px !important;
  576. background: #00000061 !important;
  577. }
  578. table.dataTable thead tr th:last-child {
  579. border-radius: 0 10px 0 0;
  580. }
  581. table.dataTable thead tr th:first-child {
  582. border-radius: 10px 0 0 0;
  583. }
  584. .open>.dropdown-menu.pull-right.log-filter-dropdown {
  585. top: 160px;
  586. right: 75px;
  587. }
  588. .el-element-overlay .el-card-item .el-overlay-1 img.imageSourceLeft {
  589. width: 56%;
  590. display: block;
  591. position: absolute;
  592. left: 0px;
  593. overflow: hidden;
  594. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  595. }
  596. .el-element-overlay .el-card-item .el-overlay-1 img.imageSourceRight {
  597. width: 56%;
  598. display: block;
  599. position: absolute;
  600. right: 0px;
  601. overflow: hidden;
  602. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  603. }
  604. img.imageSourceTop {
  605. top: -37px;
  606. left: 0px;
  607. margin: auto;
  608. display: block;
  609. z-index: -1;
  610. overflow: hidden;
  611. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  612. }
  613. img.imageSourceBottom {
  614. top: -114px;
  615. left: 0px;
  616. margin: auto;
  617. display: block;
  618. z-index: -1;
  619. overflow: hidden;
  620. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  621. }
  622. .recent-cover .hover-homepage-item {
  623. position: relative;
  624. top: -338px;
  625. height: 225px;
  626. }
  627. .recent-music span.elip.recent-title {
  628. position: absolute;
  629. bottom: -38px;
  630. background: rgba(31, 31, 31, 0.73);
  631. width: inherit;
  632. color: white;
  633. }
  634. .mailbox-widget .customtab li.active a, .mailbox-widget .customtab li.active, .mailbox-widget .customtab li.active a:focus {
  635. background: 0 0;
  636. color: #fff;
  637. border-color: #53e69d;
  638. }
  639. .nav-tabs.pull-right>li>a:hover {
  640. background: transparent;
  641. border-radius: 0px;
  642. }
  643. .homepageImageTitle {
  644. height: 40px;
  645. margin-top: -7px;
  646. }
  647. .monitorrImage {
  648. height: 100px;
  649. }
  650. .homepage-tautulli-card {
  651. height: 160px;
  652. }
  653. .homepage-tautulli-card .card-body {
  654. padding: 0;
  655. }
  656. .homepage-tautulli-card .poster {
  657. max-width: 100%;
  658. max-height: 150px;
  659. }
  660. .homepage-tautulli-card th {
  661. border-bottom: 1px solid #ffffff20;
  662. height: 30px;
  663. white-space: nowrap;
  664. overflow: hidden;
  665. text-overflow: ellipsis;
  666. }
  667. .homepage-tautulli-card .poster-td {
  668. width: 110px;
  669. padding: 5px;
  670. }
  671. .homepage-tautulli-card .scrollable {
  672. height: 129px;
  673. margin-left: 10px;
  674. }
  675. .homepage-tautulli-card table {
  676. position: absolute;
  677. }
  678. .homepage-tautulli-card .cardCountType {
  679. padding-top: 2px;
  680. padding-right: 5px;
  681. color: #808080;
  682. font-size: smaller;
  683. }
  684. .homepage-tautulli-card .tautulliRank, .homepage-tautulli-card .tautulliSeparator {
  685. color: #808080;
  686. font-size: small;
  687. padding-right: 2px;
  688. }
  689. .homepage-tautulli-card .tautulliRank {
  690. width: 15px !important;
  691. webkit-flex-shrink: 0;
  692. flex-shrink: 0;
  693. }
  694. .homepage-tautulli-card .cardListItem {
  695. padding-top: 2px;
  696. margin-left: 10px;
  697. padding-right: 5px;
  698. border-bottom: 1px solid #ffffff20;
  699. box-sizing: border-box;
  700. height: 25px;
  701. display: flex;
  702. flex-direction: row;
  703. flex-wrap: nowrap;
  704. align-items: baseline;
  705. }
  706. .homepage-tautulli-card .cardListRow {
  707. min-height: 25px;
  708. }
  709. .homepage-tautulli-card .cardListCount {
  710. color: #f9be03;
  711. }
  712. .homepage-tautulli-card .tautulliFirstItem {
  713. height: 30px;
  714. padding-top: 2px;
  715. font-size: large;
  716. }
  717. .homepage-tautulli-card .tautulliLastItem {
  718. border-bottom: none;
  719. }
  720. .homepage-tautulli-card .simplebar-track {
  721. left: -12px;
  722. right: auto;
  723. }
  724. .homepage-tautulli-card .lib-icon {
  725. max-width: 100%;
  726. height: 64px;
  727. }
  728. .homepage-tautulli-card .avatar {
  729. border-radius: 50%;
  730. }
  731. .homepage-tautulli-card .bg-img-cont {
  732. overflow: hidden;
  733. pointer-events: none;
  734. position: absolute;
  735. width: 100%;
  736. height: 100%;
  737. border: 1px solid #ffffff10;
  738. }
  739. .homepage-tautulli-card .bg-img {
  740. width: 100%;
  741. height: 100%;
  742. top: 0;
  743. left: 0;
  744. filter: blur(7px) brightness(30%);
  745. transform: scale(1.1);
  746. }
  747. /* Tautulli Background Colors */
  748. .platform-android-rgba { background-color: rgba(164, 202, 57, 0.40); }
  749. .platform-atv-rgba { background-color: rgba(133, 132, 135, 0.40); }
  750. .platform-chrome-rgba { background-color: rgba(237, 94, 80, 0.40); }
  751. .platform-chromecast-rgba { background-color: rgba(16, 164, 232, 0.40); }
  752. .platform-default-rgba { background-color: rgba(229, 160, 13, 0.40); }
  753. .platform-dlna-rgba { background-color: rgba(12, 177, 75, 0.40); }
  754. .platform-firefox-rgba { background-color: rgba(230, 120, 23, 0.40); }
  755. .platform-gtv-rgba { background-color: rgba(0, 139, 207, 0.40); }
  756. .platform-ie-rgba { background-color: rgba(0, 89, 158, 0.40); }
  757. .platform-ios-rgba { background-color: rgba(133, 132, 135, 0.40); }
  758. .platform-kodi-rgba { background-color: rgba(49, 175, 225, 0.40); }
  759. .platform-linux-rgba { background-color: rgba(23, 147, 208, 0.40); }
  760. .platform-macos-rgba { background-color: rgba(133, 132, 135, 0.40); }
  761. .platform-msedge-rgba { background-color: rgba(0, 120, 215, 0.40); }
  762. .platform-opera-rgba { background-color: rgba(255, 27, 45, 0.40); }
  763. .platform-playstation-rgba { background-color: rgba(3, 77, 162, 0.40); }
  764. .platform-plex-rgba { background-color: rgba(229, 160, 13, 0.40); }
  765. .platform-plexamp-rgba { background-color: rgba(229, 160, 13, 0.40); }
  766. .platform-roku-rgba { background-color: rgba(109, 60, 151, 0.40); }
  767. .platform-safari-rgba { background-color: rgba(0, 169, 236, 0.40); }
  768. .platform-samsung-rgba { background-color: rgba(3, 78, 162, 0.40); }
  769. .platform-synclounge-rgba { background-color: rgba(21, 25, 36, 0.40); }
  770. .platform-tivo-rgba { background-color: rgba(0, 167, 225, 0.40); }
  771. .platform-wiiu-rgba { background-color: rgba(3, 169, 244, 0.40); }
  772. .platform-windows-rgba { background-color: rgba(47, 192, 245, 0.40); }
  773. .platform-wp-rgba { background-color: rgba(104, 33, 122, 0.40); }
  774. .platform-xbmc-rgba { background-color: rgba(59, 72, 114, 0.40); }
  775. .platform-xbox-rgba { background-color: rgba(16, 124, 16, 0.40); }
  776. .grayscale {
  777. -webkit-filter: grayscale(100%);
  778. /* Safari 6.0 - 9.0 */
  779. filter: grayscale(100%);
  780. }
  781. td span.label.label-info,
  782. td span.label.label-success,
  783. td span.label.label-warning {
  784. min-width: 80px !important;
  785. display: inline-block !important;
  786. }
  787. .inbox-center.table-responsive {
  788. max-height: 300px;
  789. overflow-y: auto;
  790. }
  791. .fc-event {
  792. border-radius: 0;
  793. border: none;
  794. cursor: pointer;
  795. font-size: 13px;
  796. margin: 1px -1px 0;
  797. padding: 5px;
  798. text-align: left;
  799. background: #2cabe3;
  800. }
  801. th.fc-list-header {
  802. text-align: left;
  803. }
  804. th.fc-list-header > .fc-list-heading-alt {
  805. margin-left: 10px;
  806. }
  807. .bg-calendar {
  808. background: transparent;
  809. color: inherit;
  810. }
  811. .fc-toolbar {
  812. margin: 0;
  813. padding: 19px 20px 11px 20px;
  814. }
  815. .fc-unthemed .fc-today {
  816. color: inherit !important;
  817. }
  818. .fc-popover {
  819. background-color: #1b1b1b
  820. }
  821. @media (max-width: 767px) {
  822. i.ti-close.visible-xs {
  823. display: inline !important;
  824. }
  825. img.lazyload.resultImages {
  826. height: 300px !important;
  827. object-fit: contain;
  828. width: 200px !important;
  829. margin: auto;
  830. }
  831. }
  832. @media screen and (max-width: 767px) {
  833. .table-responsive {
  834. width: 100%;
  835. margin-bottom: 0;
  836. overflow-y: hidden;
  837. -ms-overflow-style: -ms-autohiding-scrollbar;
  838. border: transparent;
  839. }
  840. .fc-day-grid-event .fc-content {
  841. white-space: nowrap;
  842. overflow: visible;
  843. }
  844. .fc-view-container .fc-view .fc-scroller {
  845. max-height: 212px !important;
  846. overflow: auto !important;
  847. }
  848. }
  849. .loop-animation {
  850. animation-iteration-count: infinite;
  851. -webkit-animation-iteration-count: infinite;
  852. -moz-animation-iteration-count: infinite;
  853. -o-animation-iteration-count: infinite;
  854. }
  855. @media (min-width: 768px) {
  856. img.lazyload.resultImages {
  857. height: 300px !important;
  858. object-fit: cover;
  859. width: 200px !important;
  860. margin: auto;
  861. }
  862. }
  863. .outside-request-div {
  864. position: absolute;
  865. right: 0;
  866. overflow: hidden;
  867. width: 32px;
  868. height: 32px;
  869. transition: all .2s ease;
  870. z-index: 1;
  871. }
  872. /* thanks burry */
  873. .item:hover .inside-over-request-div {
  874. opacity: 0;
  875. top: -60px;
  876. }
  877. .item:hover .inside-request-div {
  878. opacity: 0;
  879. top: -46px;
  880. }
  881. .inside-request-div {
  882. top: -16px;
  883. right: -16px;
  884. padding: 0;
  885. width: 100%;
  886. height: 100%;
  887. -webkit-transform: rotate(45deg);
  888. transform: rotate(45deg);
  889. position: absolute;
  890. box-shadow: 0 0 4px rgba(0, 0, 0, .6);
  891. line-height: 24px;
  892. opacity: 1;
  893. -webkit-transition: all .2s;
  894. transition: all .2s;
  895. }
  896. .inside-over-request-div {
  897. top: -28px;
  898. right: -25px;
  899. padding: 0;
  900. width: 50px;
  901. height: 50px;
  902. -webkit-transform: rotate(45deg);
  903. transform: rotate(45deg);
  904. position: absolute;
  905. box-shadow: 0 0 4px rgba(0, 0, 0, .6);
  906. line-height: 24px;
  907. opacity: 1;
  908. -webkit-transition: all .2s;
  909. transition: all .2s;
  910. }
  911. .unapproved-request-div {
  912. background-color: #cc7b19;
  913. }
  914. .hover-homepage-item:hover {
  915. background: radial-gradient(farthest-corner at 50% 50%, rgba(50, 50, 50, .5) 50%, #323232 100%);
  916. opacity: 1;
  917. transition: linear .2s;
  918. }
  919. .hover-homepage-item {
  920. width: 100%;
  921. height: 100%;
  922. opacity: 0;
  923. }
  924. input#inviteCodeInput {
  925. font-size: 400%;
  926. height: 100%;
  927. }
  928. .bg-org-alt {
  929. background: #2d2c2c;
  930. }
  931. .bg-sonarr {
  932. background: #35c5f2;
  933. }
  934. .bg-radarr {
  935. background: #8f7128;
  936. }
  937. .bg-plex {
  938. background: #E5A00D;
  939. }
  940. .bg-emby {
  941. background: #4CAF50;
  942. }
  943. .text-jellyfin,
  944. .bg-jellyfin {
  945. background: #a15dc3;
  946. }
  947. .bg-healthchecks {
  948. background: #56b059;
  949. }
  950. .bg-sab {
  951. background: #ffb300;
  952. }
  953. .bg-deluge {
  954. background: #425570;
  955. }
  956. .bg-nzbget {
  957. background: #3e8c25;
  958. }
  959. .bg-bookmarks {
  960. background: #d90101;
  961. }
  962. .bg-transmission {
  963. background: #950000;
  964. }
  965. .bg-qbit {
  966. background: #2f67ba;
  967. }
  968. .request-result-item {
  969. width: 230px;
  970. }
  971. .customPoster {
  972. margin: 50px auto;
  973. text-align: center;
  974. position: absolute;
  975. top: 0;
  976. left: 0;
  977. width: 200px;
  978. }
  979. .customPoster a {
  980. text-decoration: none;
  981. -webkit-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  982. -moz-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  983. -ms-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  984. -o-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  985. transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  986. -webkit-transition: all 0.2s;
  987. -moz-transition: all 0.2s;
  988. transition: all 0.2s;
  989. display: inline-block;
  990. text-align: center;
  991. text-transform: uppercase;
  992. font-size: 35px;
  993. font-weight: 700;
  994. font-family: inherit;
  995. line-height: 0.8;
  996. color: #707cd2;
  997. text-shadow: 0 -1px 15px rgba(0, 0, 0, 0.9), 0 1px 0 #7d7d7d, 0 3px 0 #828282, 0 5px 0 #6c6c6c, 0 7px 0 #727272, 0 9px 0 #939393, 0 6px 50px rgb(27, 26, 26);
  998. width: 200px;
  999. max-width: 200px;
  1000. }
  1001. .customPoster a:first-line {
  1002. font-size: 0.8em;
  1003. }
  1004. .el-overlay-1:hover .customPoster a {
  1005. -webkit-transform: perspective(8em) rotateX(11deg) scale(1.2);
  1006. -moz-transform: perspective(8em) rotateX(11deg) scale(1.2);
  1007. -ms-transform: perspective(8em) rotateX(11deg) scale(1.2);
  1008. -o-transform: perspective(8em) rotateX(11deg) scale(1.2);
  1009. transform: perspective(8em) rotateX(11deg) scale(1.2);
  1010. text-shadow: 0 -1px 15px black, 0 1px 0 #7f6303, 0 2px 0 #846703, 0 0px 0 #896b03, 0 1px 0 #8e6f03, 0 2px 0 #937203, 0 2px 30px rgba(252, 223, 92, 0.6);
  1011. }
  1012. .homepage-drag {
  1013. background-size: contain;
  1014. background-position: right;
  1015. height: 60px;
  1016. background-repeat: no-repeat;
  1017. background-origin: content-box;
  1018. border-radius: 10px;
  1019. }
  1020. .homepage-number {
  1021. float: left;
  1022. width: 36px !important;
  1023. text-align: center;
  1024. vertical-align: middle;
  1025. height: 36px;
  1026. border-radius: 20px;
  1027. margin-top: 7px;
  1028. padding: 11px;
  1029. }
  1030. span.homepage-text {
  1031. margin-top: 16px;
  1032. display: inline-block;
  1033. }
  1034. .faded {
  1035. opacity: .5;
  1036. }
  1037. .qr-code {
  1038. display: block;
  1039. width: 100%;
  1040. height: 380px;
  1041. background-size: contain;
  1042. margin: auto;
  1043. background-repeat: no-repeat;
  1044. }
  1045. .btn-link, a {
  1046. color: #2cabe3;
  1047. text-decoration: none;
  1048. }
  1049. @media (pointer: coarse) {
  1050. #side-menu > li > a:hover,
  1051. #side-menu > li > a:focus {
  1052. background: transparent;
  1053. }
  1054. }
  1055. .fc-view-container .fc-view .fc-scroller {
  1056. max-height: 215px !important;
  1057. }
  1058. .fc-view-container .fc-month-view .fc-scroller,
  1059. .fc-view-container .fc-basicWeek-view .fc-scroller {
  1060. max-height: 100% !important;
  1061. height: 100% !important;
  1062. }
  1063. .fc-scroller .simplebar-content {
  1064. min-height: auto !important;
  1065. overflow: hidden !important;
  1066. padding-bottom: 0px !important;
  1067. }
  1068. .simplebar-content {
  1069. padding-bottom: 0px !important;
  1070. }
  1071. .simplebar-content {
  1072. min-height: auto !important;
  1073. overflow-x: auto !important;
  1074. }
  1075. .simplebar-scroll-content {
  1076. margin-bottom: 0px !important;
  1077. }
  1078. .flexbox {
  1079. display: flex;
  1080. flex-wrap: wrap;
  1081. }
  1082. @media (min-width: 2000px) {
  1083. .col-xl {
  1084. -ms-flex-preferred-size: 0;
  1085. flex-basis: 0;
  1086. -ms-flex-positive: 1;
  1087. flex-grow: 1;
  1088. max-width: 100%;
  1089. }
  1090. .col-xl-auto {
  1091. -ms-flex: 0 0 auto;
  1092. flex: 0 0 auto;
  1093. width: auto;
  1094. max-width: none;
  1095. }
  1096. .col-xl-1 {
  1097. -ms-flex: 0 0 8.333333%;
  1098. flex: 0 0 8.333333%;
  1099. max-width: 8.333333%;
  1100. }
  1101. .col-xl-2 {
  1102. -ms-flex: 0 0 16.666667%;
  1103. flex: 0 0 16.666667%;
  1104. max-width: 16.666667%;
  1105. }
  1106. .col-xl-3 {
  1107. -ms-flex: 0 0 25%;
  1108. flex: 0 0 25%;
  1109. max-width: 25%;
  1110. }
  1111. .col-xl-4 {
  1112. -ms-flex: 0 0 33.333333%;
  1113. flex: 0 0 33.333333%;
  1114. max-width: 33.333333%;
  1115. }
  1116. .col-xl-5 {
  1117. -ms-flex: 0 0 41.666667%;
  1118. flex: 0 0 41.666667%;
  1119. max-width: 41.666667%;
  1120. }
  1121. .col-xl-6 {
  1122. -ms-flex: 0 0 50%;
  1123. flex: 0 0 50%;
  1124. max-width: 50%;
  1125. }
  1126. .col-xl-7 {
  1127. -ms-flex: 0 0 58.333333%;
  1128. flex: 0 0 58.333333%;
  1129. max-width: 58.333333%;
  1130. }
  1131. .col-xl-8 {
  1132. -ms-flex: 0 0 66.666667%;
  1133. flex: 0 0 66.666667%;
  1134. max-width: 66.666667%;
  1135. }
  1136. .col-xl-9 {
  1137. -ms-flex: 0 0 75%;
  1138. flex: 0 0 75%;
  1139. max-width: 75%;
  1140. }
  1141. .col-xl-10 {
  1142. -ms-flex: 0 0 83.333333%;
  1143. flex: 0 0 83.333333%;
  1144. max-width: 83.333333%;
  1145. }
  1146. .col-xl-11 {
  1147. -ms-flex: 0 0 91.666667%;
  1148. flex: 0 0 91.666667%;
  1149. max-width: 91.666667%;
  1150. }
  1151. .col-xl-12 {
  1152. -ms-flex: 0 0 100%;
  1153. flex: 0 0 100%;
  1154. max-width: 100%;
  1155. }
  1156. .order-xl-first {
  1157. -ms-flex-order: -1;
  1158. order: -1;
  1159. }
  1160. .order-xl-last {
  1161. -ms-flex-order: 13;
  1162. order: 13;
  1163. }
  1164. .order-xl-0 {
  1165. -ms-flex-order: 0;
  1166. order: 0;
  1167. }
  1168. .order-xl-1 {
  1169. -ms-flex-order: 1;
  1170. order: 1;
  1171. }
  1172. .order-xl-2 {
  1173. -ms-flex-order: 2;
  1174. order: 2;
  1175. }
  1176. .order-xl-3 {
  1177. -ms-flex-order: 3;
  1178. order: 3;
  1179. }
  1180. .order-xl-4 {
  1181. -ms-flex-order: 4;
  1182. order: 4;
  1183. }
  1184. .order-xl-5 {
  1185. -ms-flex-order: 5;
  1186. order: 5;
  1187. }
  1188. .order-xl-6 {
  1189. -ms-flex-order: 6;
  1190. order: 6;
  1191. }
  1192. .order-xl-7 {
  1193. -ms-flex-order: 7;
  1194. order: 7;
  1195. }
  1196. .order-xl-8 {
  1197. -ms-flex-order: 8;
  1198. order: 8;
  1199. }
  1200. .order-xl-9 {
  1201. -ms-flex-order: 9;
  1202. order: 9;
  1203. }
  1204. .order-xl-10 {
  1205. -ms-flex-order: 10;
  1206. order: 10;
  1207. }
  1208. .order-xl-11 {
  1209. -ms-flex-order: 11;
  1210. order: 11;
  1211. }
  1212. .order-xl-12 {
  1213. -ms-flex-order: 12;
  1214. order: 12;
  1215. }
  1216. .offset-xl-0 {
  1217. margin-left: 0;
  1218. }
  1219. .offset-xl-1 {
  1220. margin-left: 8.333333%;
  1221. }
  1222. .offset-xl-2 {
  1223. margin-left: 16.666667%;
  1224. }
  1225. .offset-xl-3 {
  1226. margin-left: 25%;
  1227. }
  1228. .offset-xl-4 {
  1229. margin-left: 33.333333%;
  1230. }
  1231. .offset-xl-5 {
  1232. margin-left: 41.666667%;
  1233. }
  1234. .offset-xl-6 {
  1235. margin-left: 50%;
  1236. }
  1237. .offset-xl-7 {
  1238. margin-left: 58.333333%;
  1239. }
  1240. .offset-xl-8 {
  1241. margin-left: 66.666667%;
  1242. }
  1243. .offset-xl-9 {
  1244. margin-left: 75%;
  1245. }
  1246. .offset-xl-10 {
  1247. margin-left: 83.333333%;
  1248. }
  1249. .offset-xl-11 {
  1250. margin-left: 91.666667%;
  1251. }
  1252. }
  1253. input.has-success {
  1254. border-bottom: 8px solid #4CAF50;
  1255. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  1256. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  1257. }
  1258. .message-center {
  1259. max-height: 250px;
  1260. }
  1261. .fc-alternate {
  1262. background: transparent;
  1263. border-bottom: 1px solid;
  1264. border-color: rgba(120,130,140,.13);
  1265. }
  1266. .fc-state-disabled {
  1267. display: none;
  1268. }
  1269. .resultBox-outside {
  1270. max-height: 96vh;
  1271. }
  1272. .resultBox-inside {
  1273. height: 100%;
  1274. max-height: 85vh;
  1275. }
  1276. .loginLogo {
  1277. max-width: 350px;
  1278. max-height: 225px;
  1279. width: 100%;
  1280. }
  1281. .recent-items .owl-item {
  1282. height: 225px;
  1283. }
  1284. .tooltip-content5 {
  1285. position: absolute;
  1286. z-index: 9999;
  1287. min-width: 300px;
  1288. max-width: 350px;
  1289. left: 50%;
  1290. bottom: 100%;
  1291. font-size: 20px;
  1292. line-height: 1.4;
  1293. text-align: center;
  1294. font-weight: 400;
  1295. color: #fff;
  1296. background: 0 0;
  1297. opacity: 0;
  1298. margin: 0 0 20px -150px;
  1299. cursor: default;
  1300. pointer-events: none;
  1301. -webkit-font-smoothing: antialiased;
  1302. -webkit-transition: opacity .3s .3s;
  1303. transition: opacity .3s .3s;
  1304. }
  1305. .tooltip-inner2 {
  1306. background: #2b2b2b;
  1307. padding: 40px 0px;
  1308. -webkit-transform: translate3d(0,100%,0);
  1309. transform: translate3d(0,100%,0);
  1310. webkit-transition: -webkit-transform .3s;
  1311. transition: transform .3s;
  1312. }
  1313. #scroll {
  1314. position:fixed;
  1315. right:10px;
  1316. bottom:10px;
  1317. cursor:pointer;
  1318. width:50px;
  1319. height:50px;
  1320. background-color:#3498db;
  1321. text-indent:-9999px;
  1322. display:none;
  1323. -webkit-border-radius:60px;
  1324. -moz-border-radius:60px;
  1325. border-radius:60px;
  1326. z-index: 1;
  1327. }
  1328. #scroll span {
  1329. position:absolute;
  1330. top:50%;
  1331. left:50%;
  1332. margin-left:-8px;
  1333. margin-top:-12px;
  1334. height:0;
  1335. width:0;
  1336. border:8px solid transparent;
  1337. border-bottom-color:#ffffff;
  1338. }
  1339. #scroll:hover {
  1340. background-color:#e74c3c;
  1341. opacity:1;filter:"alpha(opacity=100)";
  1342. -ms-filter:"alpha(opacity=100)";
  1343. }
  1344. .white-popup-block {
  1345. max-width: 80%;
  1346. }
  1347. ul.nav.customtab.nav-tabs.nav-low-margin {
  1348. margin: -25px -25px 0px -25px !important;
  1349. }
  1350. #menu-Organizr-Support i {
  1351. color: #C62828;
  1352. }
  1353. #menu-GitHub-Repo i {
  1354. color: #2cabe3;
  1355. }
  1356. #menu-Organizr-Docs i {
  1357. color: #707cd2;
  1358. }
  1359. #menu-Feature-Request i {
  1360. color: #2cabe3;
  1361. }
  1362. .ping {
  1363. position: relative;
  1364. margin-top: 0;
  1365. }
  1366. .ping .heartbit {
  1367. position: absolute;
  1368. top: -15px;
  1369. left: 15px;
  1370. height: 25px;
  1371. width: 25px;
  1372. z-index: 10;
  1373. border: 5px solid #ff7676;
  1374. border-radius: 70px;
  1375. -moz-animation: heartbit 1s ease-out;
  1376. -moz-animation-iteration-count: infinite;
  1377. -o-animation: heartbit 1s ease-out;
  1378. -o-animation-iteration-count: infinite;
  1379. -webkit-animation: heartbit 1s ease-out;
  1380. -webkit-animation-iteration-count: infinite;
  1381. animation-iteration-count: infinite;
  1382. }
  1383. .heartbit.depend-heartbit {
  1384. top: -37.5px;
  1385. }
  1386. .ping .point {
  1387. width: 6px;
  1388. height: 6px;
  1389. -webkit-border-radius: 30px;
  1390. -moz-border-radius: 30px;
  1391. border-radius: 30px;
  1392. background-color: #ff7676;
  1393. position: absolute;
  1394. left: 25px;
  1395. top: -5px;
  1396. }
  1397. .sidebar .arrow {
  1398. position: absolute;
  1399. right: 20px;
  1400. top: 17px;
  1401. }
  1402. /* NOTIFY ALTERS */
  1403. .iziToast.success-notify>.iziToast-body .iziToast-icon {
  1404. color: rgb(0, 255, 184);
  1405. }
  1406. .iziToast.success-notify>.iziToast-body .iziToast-title,
  1407. .iziToast.success-notify>.iziToast-body .iziToast-message {
  1408. color: white;
  1409. }
  1410. .success-notify .iziToast-progressbar div {
  1411. background: rgb(0, 255, 184);
  1412. }
  1413. .iziToast.success-notify.iziToast-layout2 {
  1414. background: #1b1a1a;
  1415. border: 1px solid #232323;
  1416. border-bottom: transparent;
  1417. }
  1418. .iziToast.info-notify>.iziToast-body .iziToast-icon {
  1419. color: #3A83F0;
  1420. }
  1421. .iziToast.info-notify>.iziToast-body .iziToast-title,
  1422. .iziToast.info-notify>.iziToast-body .iziToast-message {
  1423. color: white;
  1424. }
  1425. .info-notify .iziToast-progressbar div {
  1426. background: #3A83F0;
  1427. }
  1428. .iziToast.info-notify.iziToast-layout2 {
  1429. background: #1b1a1a;
  1430. border: 1px solid #232323;
  1431. border-bottom: transparent;
  1432. }
  1433. .iziToast.warning-notify>.iziToast-body .iziToast-icon {
  1434. color: #FFEB3B;
  1435. }
  1436. .iziToast.warning-notify>.iziToast-body .iziToast-title,
  1437. .iziToast.warning-notify>.iziToast-body .iziToast-message {
  1438. color: white;
  1439. }
  1440. .warning-notify .iziToast-progressbar div {
  1441. background: #FFEB3B;
  1442. }
  1443. .iziToast.warning-notify.iziToast-layout2 {
  1444. background: #1b1a1a;
  1445. border: 1px solid #232323;
  1446. border-bottom: transparent;
  1447. }
  1448. .iziToast.error-notify>.iziToast-body .iziToast-icon {
  1449. color: #F44336;
  1450. }
  1451. .iziToast.error-notify>.iziToast-body .iziToast-title,
  1452. .iziToast.error-notify>.iziToast-body .iziToast-message {
  1453. color: white;
  1454. }
  1455. .error-notify .iziToast-progressbar div {
  1456. background: #F44336;
  1457. }
  1458. .iziToast.error-notify.iziToast-layout2 {
  1459. background: #1b1a1a;
  1460. border: 1px solid #232323;
  1461. border-bottom: transparent;
  1462. }
  1463. .iziToast.update-notify>.iziToast-body .iziToast-icon {
  1464. color: #9e67f4;
  1465. }
  1466. .iziToast.update-notify>.iziToast-body .iziToast-title,
  1467. .iziToast.update-notify>.iziToast-body .iziToast-message {
  1468. color: white;
  1469. }
  1470. .update-notify .iziToast-progressbar div {
  1471. background: #9e67f4;
  1472. }
  1473. .iziToast.update-notify.iziToast-layout2 {
  1474. background: #1b1a1a;
  1475. border: 1px solid #232323;
  1476. border-bottom: transparent;
  1477. }
  1478. .iziToast.success-notify.iziToast-balloon:before,
  1479. .iziToast.update-notify.iziToast-balloon:before,
  1480. .iziToast.info-notify.iziToast-balloon:before,
  1481. .iziToast.warning-notify.iziToast-balloon:before,
  1482. .iziToast.error-notify.iziToast-balloon:before {
  1483. border-top-color: #1b1a1a;
  1484. }
  1485. /* ALERTIFY ALERTS */
  1486. .ajs-message.ajs-success-alertify { color: rgb(0, 255, 184); background-color: #1b1a1a; border-color: rgb(0, 255, 184); }
  1487. .ajs-message.ajs-info-alertify { color: #3A83F0; background-color: #1b1a1a; border-color: #3A83F0; }
  1488. .ajs-message.ajs-warning-alertify { color: #FFEB3B; background-color: #1b1a1a; border-color: #FFEB3B; }
  1489. .ajs-message.ajs-error-alertify { color: #F44336; background-color: #1b1a1a; border-color: #F44336; }
  1490. .ajs-message.ajs-update-alertify { color: #9e67f4; background-color: #1b1a1a; border-color: #9e67f4; }
  1491. .noty_type__success-noty .noty_body{
  1492. background: #1b1a1a;
  1493. color: rgb(0, 255, 184);
  1494. border: 1px solid #232323;
  1495. border-bottom: transparent;
  1496. }
  1497. .noty_type__info-noty .noty_body{
  1498. background: #1b1a1a;
  1499. color: #3A83F0;
  1500. border: 1px solid #232323;
  1501. border-bottom: transparent;
  1502. }
  1503. .noty_type__warning-noty .noty_body
  1504. {
  1505. background: #1b1a1a;
  1506. color: #FFEB3B;
  1507. border: 1px solid #232323;
  1508. border-bottom: transparent;
  1509. }
  1510. .noty_type__error-noty .noty_body{
  1511. background: #1b1a1a;
  1512. color: #F44336;
  1513. border: 1px solid #232323;
  1514. border-bottom: transparent;
  1515. }
  1516. .noty_type__update-noty .noty_body{
  1517. background: #1b1a1a;
  1518. color: #9e67f4;
  1519. border: 1px solid #232323;
  1520. border-bottom: transparent;
  1521. }
  1522. .noty_type__success-noty.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  1523. background-color: rgb(0, 255, 184);
  1524. }
  1525. .noty_type__info-noty.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  1526. background-color: #3A83F0;
  1527. }
  1528. .noty_type__warning-noty.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  1529. background-color: #FFEB3B;
  1530. }
  1531. .noty_type__error-noty.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  1532. background-color: #F44336;
  1533. }
  1534. .noty_type__update-noty.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  1535. background-color: #9e67f4;
  1536. }
  1537. .noty_type__success-noty ellipse {
  1538. fill: rgb(0, 255, 184);
  1539. }
  1540. .noty_type__info-noty ellipse {
  1541. fill: #3A83F0;
  1542. }
  1543. .noty_type__warning-noty ellipse {
  1544. fill: #FFEB3B;
  1545. }
  1546. .noty_type__error-noty ellipse {
  1547. fill: #F44336;
  1548. }
  1549. .noty_type__update-noty ellipse {
  1550. fill: #9e67f4;
  1551. }
  1552. .navbar-header {
  1553. max-height: 40px;
  1554. }
  1555. span#main-logo {
  1556. max-width: 220px;
  1557. }
  1558. img.dark-logo {
  1559. max-width: 220px;
  1560. max-height: 40px;
  1561. }
  1562. img.dark-logo-side {
  1563. max-width: 160px;
  1564. max-height: 35px;
  1565. }
  1566. .themeIcon {
  1567. height: 25px;
  1568. }
  1569. .select2-container {
  1570. box-sizing: border-box;
  1571. display: inline-block;
  1572. margin: 0;
  1573. position: relative;
  1574. vertical-align: middle;
  1575. width: 100% !important;
  1576. z-index: 9999;
  1577. }
  1578. .select2-container--default .select2-selection--single .select2-selection__rendered {
  1579. line-height: 38px;
  1580. }
  1581. span.select2-selection.select2-selection--single,
  1582. span.select2-selection.select2-selection--multiple{
  1583. background: inherit;
  1584. min-height: 38px;
  1585. }
  1586. img.img-chooser {
  1587. width: 20px;
  1588. }
  1589. .select2-container--default .select2-selection--single .select2-selection__arrow b {
  1590. border-color: #888 transparent transparent transparent;
  1591. border-style: solid;
  1592. border-width: 5px 4px 0 4px;
  1593. height: 0;
  1594. left: 50%;
  1595. margin-left: -4px;
  1596. margin-top: -2px;
  1597. position: absolute;
  1598. top: 38%;
  1599. width: 0;
  1600. }
  1601. .select2-search--dropdown {
  1602. display: block;
  1603. padding: 4px;
  1604. background-color: #1f1f1f;
  1605. }
  1606. .select2-container--default .select2-selection--single .select2-selection__rendered {
  1607. color: inherit;
  1608. /*line-height: 38px;*/
  1609. }
  1610. .select2-container--default .select2-selection--single .select2-selection__arrow {
  1611. height: 38px;
  1612. position: absolute;
  1613. top: 1px;
  1614. right: 1px;
  1615. width: 20px;
  1616. }
  1617. .select2-dropdown {
  1618. background-color: inherit;
  1619. border: 1px solid #aaa;
  1620. border-radius: 4px;
  1621. box-sizing: border-box;
  1622. display: block;
  1623. position: absolute;
  1624. left: -100000px;
  1625. width: 100%;
  1626. z-index: 1051;
  1627. }
  1628. .select2-container--default .select2-selection--multiple .select2-selection__choice {
  1629. background-color: #2babe3;
  1630. border: 1px solid #1b1a1a;
  1631. color: #1b1a1a;
  1632. }
  1633. .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  1634. color: #1f1f1f;
  1635. }
  1636. .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  1637. color: #f96262;
  1638. }
  1639. .fc-scroller .simplebar-track.horizontal {
  1640. display: none;
  1641. }
  1642. .chat-main-box {
  1643. height: 100%;
  1644. }
  1645. .chat-list,
  1646. .chatonline {
  1647. height: calc(100vh - 130px) !important;
  1648. }
  1649. .tfa-input{
  1650. font-size: 400%;
  1651. height: 100%;
  1652. }
  1653. .center {
  1654. display: block;
  1655. margin-left: auto;
  1656. margin-right: auto;
  1657. width: 50%;
  1658. }
  1659. .fc-status {
  1660. width: 0px;
  1661. height: 100%;
  1662. display: block;
  1663. position: absolute;
  1664. border-radius: 5px;
  1665. }
  1666. span.fc-image,
  1667. span.fc-title {
  1668. margin-left: 5px;
  1669. }
  1670. .string { color: green; }
  1671. .number { color: darkorange; }
  1672. .boolean { color: blue; }
  1673. .null { color: magenta; }
  1674. .key { color: #53e69d; }
  1675. .splash-badge {
  1676. float: right;
  1677. width: 50px !important;
  1678. text-align: center;
  1679. vertical-align: middle;
  1680. height: 50px;
  1681. border-radius: 25px;
  1682. margin-top: 0px;
  1683. padding: 10px 11px 0px 5px;
  1684. font-size: 30px;
  1685. }
  1686. .downloaderCount {
  1687. margin-top: -15px;
  1688. margin-left: -45px;
  1689. position: absolute;
  1690. }
  1691. .loginTitle {
  1692. height: 22px;
  1693. margin-top: -2px;
  1694. }
  1695. .fw300 {
  1696. font-weight: 300;
  1697. }
  1698. .fw400 {
  1699. font-weight: 400;
  1700. }
  1701. .fw500 {
  1702. font-weight: 500;
  1703. }
  1704. .fw600 {
  1705. font-weight: 600;
  1706. }
  1707. .dropdown-menu {
  1708. width: inherit;
  1709. }
  1710. .pingTime {
  1711. position: inherit;
  1712. right: -30px;
  1713. }
  1714. .nav-second-level .pingTime {
  1715. position: inherit;
  1716. right: -5px;
  1717. }
  1718. .sidebar-tabName {
  1719. position: absolute;
  1720. top: 15px;
  1721. }
  1722. @media(max-width:767px) {
  1723. .show-sidebar .sidebar {
  1724. overflow-y: auto !important;
  1725. }
  1726. }
  1727. .nav-second-level .sidebar-tabName {
  1728. position: absolute;
  1729. top: 20px;
  1730. }
  1731. .request-title-movie,
  1732. .request-title-tv,
  1733. .request-title-music {
  1734. position: absolute;
  1735. top: -40px;
  1736. right: -40px;
  1737. background: transparent;
  1738. width: 25px;
  1739. color: white;
  1740. padding: 1px 0px;
  1741. text-align: center;
  1742. font-size: 15px;
  1743. opacity: 0;
  1744. -webkit-transition: all .4s ease-in-out;
  1745. transition: all .4s ease-in-out;
  1746. }
  1747. .item:hover .request-title-movie,
  1748. .item:hover .request-title-tv,
  1749. .item:hover .request-title-music {
  1750. opacity: 1;
  1751. top: 5px;
  1752. right: 5px;
  1753. -webkit-transition: all .4s ease;
  1754. transition: all .4s ease;
  1755. }
  1756. /* Fix for bootstrap screen width bug */
  1757. @media (min-width: 992px) and (max-width: 1200px) {
  1758. .col-lg-12 {
  1759. float: left;
  1760. width: 100%;
  1761. }
  1762. .col-md-12 {
  1763. float: none;
  1764. }
  1765. }
  1766. .col-lg-12,
  1767. .col-md-12 {
  1768. float: left;
  1769. width: 100%;
  1770. }
  1771. #newRequestButton {
  1772. border-top-right-radius: 3px;
  1773. border-bottom-right-radius: 3px;
  1774. }
  1775. .left-health {
  1776. width: 5px;
  1777. height: 100%;
  1778. position: absolute;
  1779. left: 0;
  1780. }
  1781. .animated-2 {
  1782. -webkit-animation-duration: 2s;
  1783. animation-duration: 2s;
  1784. -webkit-animation-fill-mode: both;
  1785. animation-fill-mode: both;
  1786. }
  1787. .animated-3 {
  1788. -webkit-animation-duration: 3s;
  1789. animation-duration: 3s;
  1790. -webkit-animation-fill-mode: both;
  1791. animation-fill-mode: both;
  1792. }
  1793. .select2-container--default.select2-container--focus .select2-selection--multiple {
  1794. height: 100%;
  1795. }
  1796. .healthPosition {
  1797. position: absolute;
  1798. z-index: 10;
  1799. width: 100%;
  1800. }
  1801. .btn-danger i.ti-trash {
  1802. margin-left: -1.5px;
  1803. }
  1804. .has-coupon-text {
  1805. position: absolute;
  1806. top: 0;
  1807. left: 0;
  1808. background: rgba(108, 169, 76, 0.73);
  1809. width: inherit;
  1810. color: white;
  1811. display: none;
  1812. }
  1813. .item:hover .has-coupon-text {
  1814. display: block;
  1815. }
  1816. span.has-coupon {
  1817. position: absolute;
  1818. top: 0;
  1819. right: 0;
  1820. background: rgba(108, 169, 76, 0.73);
  1821. width: 23px;
  1822. color: white;
  1823. }
  1824. #page-wrapper {
  1825. height: calc(100% - 40px);
  1826. width: calc(100% - 60px);
  1827. position: absolute;
  1828. }
  1829. .content-wrapper #page-wrapper {
  1830. width: 100%;
  1831. }
  1832. #page-wrapper .simplebar-content,
  1833. #page-wrapper-right .simplebar-content {
  1834. height: 100%;
  1835. }
  1836. #page-wrapper-right {
  1837. height: calc(100% - 40px);
  1838. position: absolute;
  1839. }
  1840. .iFrame-listing {
  1841. height: 100%;
  1842. }
  1843. .frame-container {
  1844. height: 100%;
  1845. }
  1846. .internal-container {
  1847. height: 100%;
  1848. }.internal-listing {
  1849. height: 100%;
  1850. }
  1851. html{
  1852. overflow: hidden !important;
  1853. }
  1854. body{
  1855. overflow: initial !important;
  1856. }
  1857. .login-area {
  1858. position: fixed;
  1859. z-index: 10;
  1860. }
  1861. /*
  1862. body,
  1863. html {
  1864. overflow: hidden;
  1865. }
  1866. #page-wrapper {
  1867. max-height: 568px;
  1868. min-height: 568px;
  1869. }
  1870. .internal-listing {
  1871. min-height: inherit;
  1872. max-height: inherit;
  1873. }
  1874. .internal-listing .simplebar-track.horizontal {
  1875. display: none;
  1876. }
  1877. */
  1878. .display-1 {
  1879. font-size: 6rem;
  1880. font-weight: 300;
  1881. line-height: 1.2; }
  1882. .display-2 {
  1883. font-size: 5.5rem;
  1884. font-weight: 300;
  1885. line-height: 1.2; }
  1886. .display-3 {
  1887. font-size: 4.5rem;
  1888. font-weight: 300;
  1889. line-height: 1.2; }
  1890. .display-4 {
  1891. font-size: 3.5rem;
  1892. font-weight: 300;
  1893. line-height: 1.2; }
  1894. .display-5 {
  1895. font-size: 3rem;
  1896. font-weight: 300;
  1897. line-height: 1.2; }
  1898. .display-6 {
  1899. font-size: 2.5rem;
  1900. font-weight: 300;
  1901. line-height: 1.2; }
  1902. .display-7 {
  1903. font-size: 2rem;
  1904. font-weight: 300;
  1905. line-height: 1.2; }
  1906. .font-16 {
  1907. font-size: 16px; }
  1908. .font-12 {
  1909. font-size: 12px; }
  1910. .font-14 {
  1911. font-size: 14px; }
  1912. .font-10 {
  1913. font-size: 10px; }
  1914. .font-18 {
  1915. font-size: 18px; }
  1916. .font-20 {
  1917. font-size: 20px; }
  1918. .font-22 {
  1919. font-size: 22px; }
  1920. .font-24 {
  1921. font-size: 24px; }
  1922. .w-25 {
  1923. width: 25% !important; }
  1924. .w-50 {
  1925. width: 50% !important; }
  1926. .w-75 {
  1927. width: 75% !important; }
  1928. .w-100 {
  1929. width: 100% !important; }
  1930. .w-auto {
  1931. width: auto !important; }
  1932. .h-25 {
  1933. height: 25% !important; }
  1934. .h-50 {
  1935. height: 50% !important; }
  1936. .h-75 {
  1937. height: 75% !important; }
  1938. .h-100 {
  1939. height: 100% !important; }
  1940. .h-auto {
  1941. height: auto !important; }
  1942. .mw-100 {
  1943. max-width: 100% !important; }
  1944. .mh-100 {
  1945. max-height: 100% !important; }
  1946. .min-vw-100 {
  1947. min-width: 100vw !important; }
  1948. .min-vh-100 {
  1949. min-height: 100vh !important; }
  1950. .vw-100 {
  1951. width: 100vw !important; }
  1952. .vh-100 {
  1953. height: 100vh !important; }
  1954. .stretched-link::after {
  1955. position: absolute;
  1956. top: 0;
  1957. right: 0;
  1958. bottom: 0;
  1959. left: 0;
  1960. z-index: 1;
  1961. pointer-events: auto;
  1962. content: "";
  1963. background-color: rgba(0, 0, 0, 0); }
  1964. .m-0 {
  1965. margin: 0 !important; }
  1966. .mt-0,
  1967. .my-0 {
  1968. margin-top: 0 !important; }
  1969. .mr-0,
  1970. .mx-0 {
  1971. margin-right: 0 !important; }
  1972. .mb-0,
  1973. .my-0 {
  1974. margin-bottom: 0 !important; }
  1975. .ml-0,
  1976. .mx-0 {
  1977. margin-left: 0 !important; }
  1978. .m-1 {
  1979. margin: 0.25rem !important; }
  1980. .mt-1,
  1981. .my-1 {
  1982. margin-top: 0.25rem !important; }
  1983. .mr-1,
  1984. .mx-1 {
  1985. margin-right: 0.25rem !important; }
  1986. .mb-1,
  1987. .my-1 {
  1988. margin-bottom: 0.25rem !important; }
  1989. .ml-1,
  1990. .mx-1 {
  1991. margin-left: 0.25rem !important; }
  1992. .m-2 {
  1993. margin: 0.5rem !important; }
  1994. .mt-2,
  1995. .my-2 {
  1996. margin-top: 0.5rem !important; }
  1997. .mr-2,
  1998. .mx-2 {
  1999. margin-right: 0.5rem !important; }
  2000. .mb-2,
  2001. .my-2 {
  2002. margin-bottom: 0.5rem !important; }
  2003. .ml-2,
  2004. .mx-2 {
  2005. margin-left: 0.5rem !important; }
  2006. .m-3 {
  2007. margin: 1rem !important; }
  2008. .mt-3,
  2009. .my-3 {
  2010. margin-top: 1rem !important; }
  2011. .mr-3,
  2012. .mx-3 {
  2013. margin-right: 1rem !important; }
  2014. .mb-3,
  2015. .my-3 {
  2016. margin-bottom: 1rem !important; }
  2017. .ml-3,
  2018. .mx-3 {
  2019. margin-left: 1rem !important; }
  2020. .m-4 {
  2021. margin: 1.5rem !important; }
  2022. .mt-4,
  2023. .my-4 {
  2024. margin-top: 1.5rem !important; }
  2025. .mr-4,
  2026. .mx-4 {
  2027. margin-right: 1.5rem !important; }
  2028. .mb-4,
  2029. .my-4 {
  2030. margin-bottom: 1.5rem !important; }
  2031. .ml-4,
  2032. .mx-4 {
  2033. margin-left: 1.5rem !important; }
  2034. .m-5 {
  2035. margin: 3rem !important; }
  2036. .mt-5,
  2037. .my-5 {
  2038. margin-top: 3rem !important; }
  2039. .mr-5,
  2040. .mx-5 {
  2041. margin-right: 3rem !important; }
  2042. .mb-5,
  2043. .my-5 {
  2044. margin-bottom: 3rem !important; }
  2045. .ml-5,
  2046. .mx-5 {
  2047. margin-left: 3rem !important; }
  2048. .p-0 {
  2049. padding: 0 !important; }
  2050. .pt-0,
  2051. .py-0 {
  2052. padding-top: 0 !important; }
  2053. .pr-0,
  2054. .px-0 {
  2055. padding-right: 0 !important; }
  2056. .pb-0,
  2057. .py-0 {
  2058. padding-bottom: 0 !important; }
  2059. .pl-0,
  2060. .px-0 {
  2061. padding-left: 0 !important; }
  2062. .p-1 {
  2063. padding: 0.25rem !important; }
  2064. .pt-1,
  2065. .py-1 {
  2066. padding-top: 0.25rem !important; }
  2067. .pr-1,
  2068. .px-1 {
  2069. padding-right: 0.25rem !important; }
  2070. .pb-1,
  2071. .py-1 {
  2072. padding-bottom: 0.25rem !important; }
  2073. .pl-1,
  2074. .px-1 {
  2075. padding-left: 0.25rem !important; }
  2076. .p-2 {
  2077. padding: 0.5rem !important; }
  2078. .pt-2,
  2079. .py-2 {
  2080. padding-top: 0.5rem !important; }
  2081. .pr-2,
  2082. .px-2 {
  2083. padding-right: 0.5rem !important; }
  2084. .pb-2,
  2085. .py-2 {
  2086. padding-bottom: 0.5rem !important; }
  2087. .pl-2,
  2088. .px-2 {
  2089. padding-left: 0.5rem !important; }
  2090. .p-3 {
  2091. padding: 1rem !important; }
  2092. .pt-3,
  2093. .py-3 {
  2094. padding-top: 1rem !important; }
  2095. .pr-3,
  2096. .px-3 {
  2097. padding-right: 1rem !important; }
  2098. .pb-3,
  2099. .py-3 {
  2100. padding-bottom: 1rem !important; }
  2101. .pl-3,
  2102. .px-3 {
  2103. padding-left: 1rem !important; }
  2104. .p-4 {
  2105. padding: 1.5rem !important; }
  2106. .pt-4,
  2107. .py-4 {
  2108. padding-top: 1.5rem !important; }
  2109. .pr-4,
  2110. .px-4 {
  2111. padding-right: 1.5rem !important; }
  2112. .pb-4,
  2113. .py-4 {
  2114. padding-bottom: 1.5rem !important; }
  2115. .pl-4,
  2116. .px-4 {
  2117. padding-left: 1.5rem !important; }
  2118. .p-5 {
  2119. padding: 3rem !important; }
  2120. .pt-5,
  2121. .py-5 {
  2122. padding-top: 3rem !important; }
  2123. .pr-5,
  2124. .px-5 {
  2125. padding-right: 3rem !important; }
  2126. .pb-5,
  2127. .py-5 {
  2128. padding-bottom: 3rem !important; }
  2129. .pl-5,
  2130. .px-5 {
  2131. padding-left: 3rem !important; }
  2132. .m-n1 {
  2133. margin: -0.25rem !important; }
  2134. .mt-n1,
  2135. .my-n1 {
  2136. margin-top: -0.25rem !important; }
  2137. .mr-n1,
  2138. .mx-n1 {
  2139. margin-right: -0.25rem !important; }
  2140. .mb-n1,
  2141. .my-n1 {
  2142. margin-bottom: -0.25rem !important; }
  2143. .ml-n1,
  2144. .mx-n1 {
  2145. margin-left: -0.25rem !important; }
  2146. .m-n2 {
  2147. margin: -0.5rem !important; }
  2148. .mt-n2,
  2149. .my-n2 {
  2150. margin-top: -0.5rem !important; }
  2151. .mr-n2,
  2152. .mx-n2 {
  2153. margin-right: -0.5rem !important; }
  2154. .mb-n2,
  2155. .my-n2 {
  2156. margin-bottom: -0.5rem !important; }
  2157. .ml-n2,
  2158. .mx-n2 {
  2159. margin-left: -0.5rem !important; }
  2160. .m-n3 {
  2161. margin: -1rem !important; }
  2162. .mt-n3,
  2163. .my-n3 {
  2164. margin-top: -1rem !important; }
  2165. .mr-n3,
  2166. .mx-n3 {
  2167. margin-right: -1rem !important; }
  2168. .mb-n3,
  2169. .my-n3 {
  2170. margin-bottom: -1rem !important; }
  2171. .ml-n3,
  2172. .mx-n3 {
  2173. margin-left: -1rem !important; }
  2174. .m-n4 {
  2175. margin: -1.5rem !important; }
  2176. .mt-n4,
  2177. .my-n4 {
  2178. margin-top: -1.5rem !important; }
  2179. .mr-n4,
  2180. .mx-n4 {
  2181. margin-right: -1.5rem !important; }
  2182. .mb-n4,
  2183. .my-n4 {
  2184. margin-bottom: -1.5rem !important; }
  2185. .ml-n4,
  2186. .mx-n4 {
  2187. margin-left: -1.5rem !important; }
  2188. .m-n5 {
  2189. margin: -3rem !important; }
  2190. .mt-n5,
  2191. .my-n5 {
  2192. margin-top: -3rem !important; }
  2193. .mr-n5,
  2194. .mx-n5 {
  2195. margin-right: -3rem !important; }
  2196. .mb-n5,
  2197. .my-n5 {
  2198. margin-bottom: -3rem !important; }
  2199. .ml-n5,
  2200. .mx-n5 {
  2201. margin-left: -3rem !important; }
  2202. .m-auto {
  2203. margin: auto !important; }
  2204. .mt-auto,
  2205. .my-auto {
  2206. margin-top: auto !important; }
  2207. .mr-auto,
  2208. .mx-auto {
  2209. margin-right: auto !important; }
  2210. .mb-auto,
  2211. .my-auto {
  2212. margin-bottom: auto !important; }
  2213. .ml-auto,
  2214. .mx-auto {
  2215. margin-left: auto !important; }
  2216. @media (min-width: 576px) {
  2217. .m-sm-0 {
  2218. margin: 0 !important; }
  2219. .mt-sm-0,
  2220. .my-sm-0 {
  2221. margin-top: 0 !important; }
  2222. .mr-sm-0,
  2223. .mx-sm-0 {
  2224. margin-right: 0 !important; }
  2225. .mb-sm-0,
  2226. .my-sm-0 {
  2227. margin-bottom: 0 !important; }
  2228. .ml-sm-0,
  2229. .mx-sm-0 {
  2230. margin-left: 0 !important; }
  2231. .m-sm-1 {
  2232. margin: 0.25rem !important; }
  2233. .mt-sm-1,
  2234. .my-sm-1 {
  2235. margin-top: 0.25rem !important; }
  2236. .mr-sm-1,
  2237. .mx-sm-1 {
  2238. margin-right: 0.25rem !important; }
  2239. .mb-sm-1,
  2240. .my-sm-1 {
  2241. margin-bottom: 0.25rem !important; }
  2242. .ml-sm-1,
  2243. .mx-sm-1 {
  2244. margin-left: 0.25rem !important; }
  2245. .m-sm-2 {
  2246. margin: 0.5rem !important; }
  2247. .mt-sm-2,
  2248. .my-sm-2 {
  2249. margin-top: 0.5rem !important; }
  2250. .mr-sm-2,
  2251. .mx-sm-2 {
  2252. margin-right: 0.5rem !important; }
  2253. .mb-sm-2,
  2254. .my-sm-2 {
  2255. margin-bottom: 0.5rem !important; }
  2256. .ml-sm-2,
  2257. .mx-sm-2 {
  2258. margin-left: 0.5rem !important; }
  2259. .m-sm-3 {
  2260. margin: 1rem !important; }
  2261. .mt-sm-3,
  2262. .my-sm-3 {
  2263. margin-top: 1rem !important; }
  2264. .mr-sm-3,
  2265. .mx-sm-3 {
  2266. margin-right: 1rem !important; }
  2267. .mb-sm-3,
  2268. .my-sm-3 {
  2269. margin-bottom: 1rem !important; }
  2270. .ml-sm-3,
  2271. .mx-sm-3 {
  2272. margin-left: 1rem !important; }
  2273. .m-sm-4 {
  2274. margin: 1.5rem !important; }
  2275. .mt-sm-4,
  2276. .my-sm-4 {
  2277. margin-top: 1.5rem !important; }
  2278. .mr-sm-4,
  2279. .mx-sm-4 {
  2280. margin-right: 1.5rem !important; }
  2281. .mb-sm-4,
  2282. .my-sm-4 {
  2283. margin-bottom: 1.5rem !important; }
  2284. .ml-sm-4,
  2285. .mx-sm-4 {
  2286. margin-left: 1.5rem !important; }
  2287. .m-sm-5 {
  2288. margin: 3rem !important; }
  2289. .mt-sm-5,
  2290. .my-sm-5 {
  2291. margin-top: 3rem !important; }
  2292. .mr-sm-5,
  2293. .mx-sm-5 {
  2294. margin-right: 3rem !important; }
  2295. .mb-sm-5,
  2296. .my-sm-5 {
  2297. margin-bottom: 3rem !important; }
  2298. .ml-sm-5,
  2299. .mx-sm-5 {
  2300. margin-left: 3rem !important; }
  2301. .p-sm-0 {
  2302. padding: 0 !important; }
  2303. .pt-sm-0,
  2304. .py-sm-0 {
  2305. padding-top: 0 !important; }
  2306. .pr-sm-0,
  2307. .px-sm-0 {
  2308. padding-right: 0 !important; }
  2309. .pb-sm-0,
  2310. .py-sm-0 {
  2311. padding-bottom: 0 !important; }
  2312. .pl-sm-0,
  2313. .px-sm-0 {
  2314. padding-left: 0 !important; }
  2315. .p-sm-1 {
  2316. padding: 0.25rem !important; }
  2317. .pt-sm-1,
  2318. .py-sm-1 {
  2319. padding-top: 0.25rem !important; }
  2320. .pr-sm-1,
  2321. .px-sm-1 {
  2322. padding-right: 0.25rem !important; }
  2323. .pb-sm-1,
  2324. .py-sm-1 {
  2325. padding-bottom: 0.25rem !important; }
  2326. .pl-sm-1,
  2327. .px-sm-1 {
  2328. padding-left: 0.25rem !important; }
  2329. .p-sm-2 {
  2330. padding: 0.5rem !important; }
  2331. .pt-sm-2,
  2332. .py-sm-2 {
  2333. padding-top: 0.5rem !important; }
  2334. .pr-sm-2,
  2335. .px-sm-2 {
  2336. padding-right: 0.5rem !important; }
  2337. .pb-sm-2,
  2338. .py-sm-2 {
  2339. padding-bottom: 0.5rem !important; }
  2340. .pl-sm-2,
  2341. .px-sm-2 {
  2342. padding-left: 0.5rem !important; }
  2343. .p-sm-3 {
  2344. padding: 1rem !important; }
  2345. .pt-sm-3,
  2346. .py-sm-3 {
  2347. padding-top: 1rem !important; }
  2348. .pr-sm-3,
  2349. .px-sm-3 {
  2350. padding-right: 1rem !important; }
  2351. .pb-sm-3,
  2352. .py-sm-3 {
  2353. padding-bottom: 1rem !important; }
  2354. .pl-sm-3,
  2355. .px-sm-3 {
  2356. padding-left: 1rem !important; }
  2357. .p-sm-4 {
  2358. padding: 1.5rem !important; }
  2359. .pt-sm-4,
  2360. .py-sm-4 {
  2361. padding-top: 1.5rem !important; }
  2362. .pr-sm-4,
  2363. .px-sm-4 {
  2364. padding-right: 1.5rem !important; }
  2365. .pb-sm-4,
  2366. .py-sm-4 {
  2367. padding-bottom: 1.5rem !important; }
  2368. .pl-sm-4,
  2369. .px-sm-4 {
  2370. padding-left: 1.5rem !important; }
  2371. .p-sm-5 {
  2372. padding: 3rem !important; }
  2373. .pt-sm-5,
  2374. .py-sm-5 {
  2375. padding-top: 3rem !important; }
  2376. .pr-sm-5,
  2377. .px-sm-5 {
  2378. padding-right: 3rem !important; }
  2379. .pb-sm-5,
  2380. .py-sm-5 {
  2381. padding-bottom: 3rem !important; }
  2382. .pl-sm-5,
  2383. .px-sm-5 {
  2384. padding-left: 3rem !important; }
  2385. .m-sm-n1 {
  2386. margin: -0.25rem !important; }
  2387. .mt-sm-n1,
  2388. .my-sm-n1 {
  2389. margin-top: -0.25rem !important; }
  2390. .mr-sm-n1,
  2391. .mx-sm-n1 {
  2392. margin-right: -0.25rem !important; }
  2393. .mb-sm-n1,
  2394. .my-sm-n1 {
  2395. margin-bottom: -0.25rem !important; }
  2396. .ml-sm-n1,
  2397. .mx-sm-n1 {
  2398. margin-left: -0.25rem !important; }
  2399. .m-sm-n2 {
  2400. margin: -0.5rem !important; }
  2401. .mt-sm-n2,
  2402. .my-sm-n2 {
  2403. margin-top: -0.5rem !important; }
  2404. .mr-sm-n2,
  2405. .mx-sm-n2 {
  2406. margin-right: -0.5rem !important; }
  2407. .mb-sm-n2,
  2408. .my-sm-n2 {
  2409. margin-bottom: -0.5rem !important; }
  2410. .ml-sm-n2,
  2411. .mx-sm-n2 {
  2412. margin-left: -0.5rem !important; }
  2413. .m-sm-n3 {
  2414. margin: -1rem !important; }
  2415. .mt-sm-n3,
  2416. .my-sm-n3 {
  2417. margin-top: -1rem !important; }
  2418. .mr-sm-n3,
  2419. .mx-sm-n3 {
  2420. margin-right: -1rem !important; }
  2421. .mb-sm-n3,
  2422. .my-sm-n3 {
  2423. margin-bottom: -1rem !important; }
  2424. .ml-sm-n3,
  2425. .mx-sm-n3 {
  2426. margin-left: -1rem !important; }
  2427. .m-sm-n4 {
  2428. margin: -1.5rem !important; }
  2429. .mt-sm-n4,
  2430. .my-sm-n4 {
  2431. margin-top: -1.5rem !important; }
  2432. .mr-sm-n4,
  2433. .mx-sm-n4 {
  2434. margin-right: -1.5rem !important; }
  2435. .mb-sm-n4,
  2436. .my-sm-n4 {
  2437. margin-bottom: -1.5rem !important; }
  2438. .ml-sm-n4,
  2439. .mx-sm-n4 {
  2440. margin-left: -1.5rem !important; }
  2441. .m-sm-n5 {
  2442. margin: -3rem !important; }
  2443. .mt-sm-n5,
  2444. .my-sm-n5 {
  2445. margin-top: -3rem !important; }
  2446. .mr-sm-n5,
  2447. .mx-sm-n5 {
  2448. margin-right: -3rem !important; }
  2449. .mb-sm-n5,
  2450. .my-sm-n5 {
  2451. margin-bottom: -3rem !important; }
  2452. .ml-sm-n5,
  2453. .mx-sm-n5 {
  2454. margin-left: -3rem !important; }
  2455. .m-sm-auto {
  2456. margin: auto !important; }
  2457. .mt-sm-auto,
  2458. .my-sm-auto {
  2459. margin-top: auto !important; }
  2460. .mr-sm-auto,
  2461. .mx-sm-auto {
  2462. margin-right: auto !important; }
  2463. .mb-sm-auto,
  2464. .my-sm-auto {
  2465. margin-bottom: auto !important; }
  2466. .ml-sm-auto,
  2467. .mx-sm-auto {
  2468. margin-left: auto !important; } }
  2469. @media (min-width: 768px) {
  2470. .m-md-0 {
  2471. margin: 0 !important; }
  2472. .mt-md-0,
  2473. .my-md-0 {
  2474. margin-top: 0 !important; }
  2475. .mr-md-0,
  2476. .mx-md-0 {
  2477. margin-right: 0 !important; }
  2478. .mb-md-0,
  2479. .my-md-0 {
  2480. margin-bottom: 0 !important; }
  2481. .ml-md-0,
  2482. .mx-md-0 {
  2483. margin-left: 0 !important; }
  2484. .m-md-1 {
  2485. margin: 0.25rem !important; }
  2486. .mt-md-1,
  2487. .my-md-1 {
  2488. margin-top: 0.25rem !important; }
  2489. .mr-md-1,
  2490. .mx-md-1 {
  2491. margin-right: 0.25rem !important; }
  2492. .mb-md-1,
  2493. .my-md-1 {
  2494. margin-bottom: 0.25rem !important; }
  2495. .ml-md-1,
  2496. .mx-md-1 {
  2497. margin-left: 0.25rem !important; }
  2498. .m-md-2 {
  2499. margin: 0.5rem !important; }
  2500. .mt-md-2,
  2501. .my-md-2 {
  2502. margin-top: 0.5rem !important; }
  2503. .mr-md-2,
  2504. .mx-md-2 {
  2505. margin-right: 0.5rem !important; }
  2506. .mb-md-2,
  2507. .my-md-2 {
  2508. margin-bottom: 0.5rem !important; }
  2509. .ml-md-2,
  2510. .mx-md-2 {
  2511. margin-left: 0.5rem !important; }
  2512. .m-md-3 {
  2513. margin: 1rem !important; }
  2514. .mt-md-3,
  2515. .my-md-3 {
  2516. margin-top: 1rem !important; }
  2517. .mr-md-3,
  2518. .mx-md-3 {
  2519. margin-right: 1rem !important; }
  2520. .mb-md-3,
  2521. .my-md-3 {
  2522. margin-bottom: 1rem !important; }
  2523. .ml-md-3,
  2524. .mx-md-3 {
  2525. margin-left: 1rem !important; }
  2526. .m-md-4 {
  2527. margin: 1.5rem !important; }
  2528. .mt-md-4,
  2529. .my-md-4 {
  2530. margin-top: 1.5rem !important; }
  2531. .mr-md-4,
  2532. .mx-md-4 {
  2533. margin-right: 1.5rem !important; }
  2534. .mb-md-4,
  2535. .my-md-4 {
  2536. margin-bottom: 1.5rem !important; }
  2537. .ml-md-4,
  2538. .mx-md-4 {
  2539. margin-left: 1.5rem !important; }
  2540. .m-md-5 {
  2541. margin: 3rem !important; }
  2542. .mt-md-5,
  2543. .my-md-5 {
  2544. margin-top: 3rem !important; }
  2545. .mr-md-5,
  2546. .mx-md-5 {
  2547. margin-right: 3rem !important; }
  2548. .mb-md-5,
  2549. .my-md-5 {
  2550. margin-bottom: 3rem !important; }
  2551. .ml-md-5,
  2552. .mx-md-5 {
  2553. margin-left: 3rem !important; }
  2554. .p-md-0 {
  2555. padding: 0 !important; }
  2556. .pt-md-0,
  2557. .py-md-0 {
  2558. padding-top: 0 !important; }
  2559. .pr-md-0,
  2560. .px-md-0 {
  2561. padding-right: 0 !important; }
  2562. .pb-md-0,
  2563. .py-md-0 {
  2564. padding-bottom: 0 !important; }
  2565. .pl-md-0,
  2566. .px-md-0 {
  2567. padding-left: 0 !important; }
  2568. .p-md-1 {
  2569. padding: 0.25rem !important; }
  2570. .pt-md-1,
  2571. .py-md-1 {
  2572. padding-top: 0.25rem !important; }
  2573. .pr-md-1,
  2574. .px-md-1 {
  2575. padding-right: 0.25rem !important; }
  2576. .pb-md-1,
  2577. .py-md-1 {
  2578. padding-bottom: 0.25rem !important; }
  2579. .pl-md-1,
  2580. .px-md-1 {
  2581. padding-left: 0.25rem !important; }
  2582. .p-md-2 {
  2583. padding: 0.5rem !important; }
  2584. .pt-md-2,
  2585. .py-md-2 {
  2586. padding-top: 0.5rem !important; }
  2587. .pr-md-2,
  2588. .px-md-2 {
  2589. padding-right: 0.5rem !important; }
  2590. .pb-md-2,
  2591. .py-md-2 {
  2592. padding-bottom: 0.5rem !important; }
  2593. .pl-md-2,
  2594. .px-md-2 {
  2595. padding-left: 0.5rem !important; }
  2596. .p-md-3 {
  2597. padding: 1rem !important; }
  2598. .pt-md-3,
  2599. .py-md-3 {
  2600. padding-top: 1rem !important; }
  2601. .pr-md-3,
  2602. .px-md-3 {
  2603. padding-right: 1rem !important; }
  2604. .pb-md-3,
  2605. .py-md-3 {
  2606. padding-bottom: 1rem !important; }
  2607. .pl-md-3,
  2608. .px-md-3 {
  2609. padding-left: 1rem !important; }
  2610. .p-md-4 {
  2611. padding: 1.5rem !important; }
  2612. .pt-md-4,
  2613. .py-md-4 {
  2614. padding-top: 1.5rem !important; }
  2615. .pr-md-4,
  2616. .px-md-4 {
  2617. padding-right: 1.5rem !important; }
  2618. .pb-md-4,
  2619. .py-md-4 {
  2620. padding-bottom: 1.5rem !important; }
  2621. .pl-md-4,
  2622. .px-md-4 {
  2623. padding-left: 1.5rem !important; }
  2624. .p-md-5 {
  2625. padding: 3rem !important; }
  2626. .pt-md-5,
  2627. .py-md-5 {
  2628. padding-top: 3rem !important; }
  2629. .pr-md-5,
  2630. .px-md-5 {
  2631. padding-right: 3rem !important; }
  2632. .pb-md-5,
  2633. .py-md-5 {
  2634. padding-bottom: 3rem !important; }
  2635. .pl-md-5,
  2636. .px-md-5 {
  2637. padding-left: 3rem !important; }
  2638. .m-md-n1 {
  2639. margin: -0.25rem !important; }
  2640. .mt-md-n1,
  2641. .my-md-n1 {
  2642. margin-top: -0.25rem !important; }
  2643. .mr-md-n1,
  2644. .mx-md-n1 {
  2645. margin-right: -0.25rem !important; }
  2646. .mb-md-n1,
  2647. .my-md-n1 {
  2648. margin-bottom: -0.25rem !important; }
  2649. .ml-md-n1,
  2650. .mx-md-n1 {
  2651. margin-left: -0.25rem !important; }
  2652. .m-md-n2 {
  2653. margin: -0.5rem !important; }
  2654. .mt-md-n2,
  2655. .my-md-n2 {
  2656. margin-top: -0.5rem !important; }
  2657. .mr-md-n2,
  2658. .mx-md-n2 {
  2659. margin-right: -0.5rem !important; }
  2660. .mb-md-n2,
  2661. .my-md-n2 {
  2662. margin-bottom: -0.5rem !important; }
  2663. .ml-md-n2,
  2664. .mx-md-n2 {
  2665. margin-left: -0.5rem !important; }
  2666. .m-md-n3 {
  2667. margin: -1rem !important; }
  2668. .mt-md-n3,
  2669. .my-md-n3 {
  2670. margin-top: -1rem !important; }
  2671. .mr-md-n3,
  2672. .mx-md-n3 {
  2673. margin-right: -1rem !important; }
  2674. .mb-md-n3,
  2675. .my-md-n3 {
  2676. margin-bottom: -1rem !important; }
  2677. .ml-md-n3,
  2678. .mx-md-n3 {
  2679. margin-left: -1rem !important; }
  2680. .m-md-n4 {
  2681. margin: -1.5rem !important; }
  2682. .mt-md-n4,
  2683. .my-md-n4 {
  2684. margin-top: -1.5rem !important; }
  2685. .mr-md-n4,
  2686. .mx-md-n4 {
  2687. margin-right: -1.5rem !important; }
  2688. .mb-md-n4,
  2689. .my-md-n4 {
  2690. margin-bottom: -1.5rem !important; }
  2691. .ml-md-n4,
  2692. .mx-md-n4 {
  2693. margin-left: -1.5rem !important; }
  2694. .m-md-n5 {
  2695. margin: -3rem !important; }
  2696. .mt-md-n5,
  2697. .my-md-n5 {
  2698. margin-top: -3rem !important; }
  2699. .mr-md-n5,
  2700. .mx-md-n5 {
  2701. margin-right: -3rem !important; }
  2702. .mb-md-n5,
  2703. .my-md-n5 {
  2704. margin-bottom: -3rem !important; }
  2705. .ml-md-n5,
  2706. .mx-md-n5 {
  2707. margin-left: -3rem !important; }
  2708. .m-md-auto {
  2709. margin: auto !important; }
  2710. .mt-md-auto,
  2711. .my-md-auto {
  2712. margin-top: auto !important; }
  2713. .mr-md-auto,
  2714. .mx-md-auto {
  2715. margin-right: auto !important; }
  2716. .mb-md-auto,
  2717. .my-md-auto {
  2718. margin-bottom: auto !important; }
  2719. .ml-md-auto,
  2720. .mx-md-auto {
  2721. margin-left: auto !important; } }
  2722. @media (min-width: 992px) {
  2723. .m-lg-0 {
  2724. margin: 0 !important; }
  2725. .mt-lg-0,
  2726. .my-lg-0 {
  2727. margin-top: 0 !important; }
  2728. .mr-lg-0,
  2729. .mx-lg-0 {
  2730. margin-right: 0 !important; }
  2731. .mb-lg-0,
  2732. .my-lg-0 {
  2733. margin-bottom: 0 !important; }
  2734. .ml-lg-0,
  2735. .mx-lg-0 {
  2736. margin-left: 0 !important; }
  2737. .m-lg-1 {
  2738. margin: 0.25rem !important; }
  2739. .mt-lg-1,
  2740. .my-lg-1 {
  2741. margin-top: 0.25rem !important; }
  2742. .mr-lg-1,
  2743. .mx-lg-1 {
  2744. margin-right: 0.25rem !important; }
  2745. .mb-lg-1,
  2746. .my-lg-1 {
  2747. margin-bottom: 0.25rem !important; }
  2748. .ml-lg-1,
  2749. .mx-lg-1 {
  2750. margin-left: 0.25rem !important; }
  2751. .m-lg-2 {
  2752. margin: 0.5rem !important; }
  2753. .mt-lg-2,
  2754. .my-lg-2 {
  2755. margin-top: 0.5rem !important; }
  2756. .mr-lg-2,
  2757. .mx-lg-2 {
  2758. margin-right: 0.5rem !important; }
  2759. .mb-lg-2,
  2760. .my-lg-2 {
  2761. margin-bottom: 0.5rem !important; }
  2762. .ml-lg-2,
  2763. .mx-lg-2 {
  2764. margin-left: 0.5rem !important; }
  2765. .m-lg-3 {
  2766. margin: 1rem !important; }
  2767. .mt-lg-3,
  2768. .my-lg-3 {
  2769. margin-top: 1rem !important; }
  2770. .mr-lg-3,
  2771. .mx-lg-3 {
  2772. margin-right: 1rem !important; }
  2773. .mb-lg-3,
  2774. .my-lg-3 {
  2775. margin-bottom: 1rem !important; }
  2776. .ml-lg-3,
  2777. .mx-lg-3 {
  2778. margin-left: 1rem !important; }
  2779. .m-lg-4 {
  2780. margin: 1.5rem !important; }
  2781. .mt-lg-4,
  2782. .my-lg-4 {
  2783. margin-top: 1.5rem !important; }
  2784. .mr-lg-4,
  2785. .mx-lg-4 {
  2786. margin-right: 1.5rem !important; }
  2787. .mb-lg-4,
  2788. .my-lg-4 {
  2789. margin-bottom: 1.5rem !important; }
  2790. .ml-lg-4,
  2791. .mx-lg-4 {
  2792. margin-left: 1.5rem !important; }
  2793. .m-lg-5 {
  2794. margin: 3rem !important; }
  2795. .mt-lg-5,
  2796. .my-lg-5 {
  2797. margin-top: 3rem !important; }
  2798. .mr-lg-5,
  2799. .mx-lg-5 {
  2800. margin-right: 3rem !important; }
  2801. .mb-lg-5,
  2802. .my-lg-5 {
  2803. margin-bottom: 3rem !important; }
  2804. .ml-lg-5,
  2805. .mx-lg-5 {
  2806. margin-left: 3rem !important; }
  2807. .p-lg-0 {
  2808. padding: 0 !important; }
  2809. .pt-lg-0,
  2810. .py-lg-0 {
  2811. padding-top: 0 !important; }
  2812. .pr-lg-0,
  2813. .px-lg-0 {
  2814. padding-right: 0 !important; }
  2815. .pb-lg-0,
  2816. .py-lg-0 {
  2817. padding-bottom: 0 !important; }
  2818. .pl-lg-0,
  2819. .px-lg-0 {
  2820. padding-left: 0 !important; }
  2821. .p-lg-1 {
  2822. padding: 0.25rem !important; }
  2823. .pt-lg-1,
  2824. .py-lg-1 {
  2825. padding-top: 0.25rem !important; }
  2826. .pr-lg-1,
  2827. .px-lg-1 {
  2828. padding-right: 0.25rem !important; }
  2829. .pb-lg-1,
  2830. .py-lg-1 {
  2831. padding-bottom: 0.25rem !important; }
  2832. .pl-lg-1,
  2833. .px-lg-1 {
  2834. padding-left: 0.25rem !important; }
  2835. .p-lg-2 {
  2836. padding: 0.5rem !important; }
  2837. .pt-lg-2,
  2838. .py-lg-2 {
  2839. padding-top: 0.5rem !important; }
  2840. .pr-lg-2,
  2841. .px-lg-2 {
  2842. padding-right: 0.5rem !important; }
  2843. .pb-lg-2,
  2844. .py-lg-2 {
  2845. padding-bottom: 0.5rem !important; }
  2846. .pl-lg-2,
  2847. .px-lg-2 {
  2848. padding-left: 0.5rem !important; }
  2849. .p-lg-3 {
  2850. padding: 1rem !important; }
  2851. .pt-lg-3,
  2852. .py-lg-3 {
  2853. padding-top: 1rem !important; }
  2854. .pr-lg-3,
  2855. .px-lg-3 {
  2856. padding-right: 1rem !important; }
  2857. .pb-lg-3,
  2858. .py-lg-3 {
  2859. padding-bottom: 1rem !important; }
  2860. .pl-lg-3,
  2861. .px-lg-3 {
  2862. padding-left: 1rem !important; }
  2863. .p-lg-4 {
  2864. padding: 1.5rem !important; }
  2865. .pt-lg-4,
  2866. .py-lg-4 {
  2867. padding-top: 1.5rem !important; }
  2868. .pr-lg-4,
  2869. .px-lg-4 {
  2870. padding-right: 1.5rem !important; }
  2871. .pb-lg-4,
  2872. .py-lg-4 {
  2873. padding-bottom: 1.5rem !important; }
  2874. .pl-lg-4,
  2875. .px-lg-4 {
  2876. padding-left: 1.5rem !important; }
  2877. .p-lg-5 {
  2878. padding: 3rem !important; }
  2879. .pt-lg-5,
  2880. .py-lg-5 {
  2881. padding-top: 3rem !important; }
  2882. .pr-lg-5,
  2883. .px-lg-5 {
  2884. padding-right: 3rem !important; }
  2885. .pb-lg-5,
  2886. .py-lg-5 {
  2887. padding-bottom: 3rem !important; }
  2888. .pl-lg-5,
  2889. .px-lg-5 {
  2890. padding-left: 3rem !important; }
  2891. .m-lg-n1 {
  2892. margin: -0.25rem !important; }
  2893. .mt-lg-n1,
  2894. .my-lg-n1 {
  2895. margin-top: -0.25rem !important; }
  2896. .mr-lg-n1,
  2897. .mx-lg-n1 {
  2898. margin-right: -0.25rem !important; }
  2899. .mb-lg-n1,
  2900. .my-lg-n1 {
  2901. margin-bottom: -0.25rem !important; }
  2902. .ml-lg-n1,
  2903. .mx-lg-n1 {
  2904. margin-left: -0.25rem !important; }
  2905. .m-lg-n2 {
  2906. margin: -0.5rem !important; }
  2907. .mt-lg-n2,
  2908. .my-lg-n2 {
  2909. margin-top: -0.5rem !important; }
  2910. .mr-lg-n2,
  2911. .mx-lg-n2 {
  2912. margin-right: -0.5rem !important; }
  2913. .mb-lg-n2,
  2914. .my-lg-n2 {
  2915. margin-bottom: -0.5rem !important; }
  2916. .ml-lg-n2,
  2917. .mx-lg-n2 {
  2918. margin-left: -0.5rem !important; }
  2919. .m-lg-n3 {
  2920. margin: -1rem !important; }
  2921. .mt-lg-n3,
  2922. .my-lg-n3 {
  2923. margin-top: -1rem !important; }
  2924. .mr-lg-n3,
  2925. .mx-lg-n3 {
  2926. margin-right: -1rem !important; }
  2927. .mb-lg-n3,
  2928. .my-lg-n3 {
  2929. margin-bottom: -1rem !important; }
  2930. .ml-lg-n3,
  2931. .mx-lg-n3 {
  2932. margin-left: -1rem !important; }
  2933. .m-lg-n4 {
  2934. margin: -1.5rem !important; }
  2935. .mt-lg-n4,
  2936. .my-lg-n4 {
  2937. margin-top: -1.5rem !important; }
  2938. .mr-lg-n4,
  2939. .mx-lg-n4 {
  2940. margin-right: -1.5rem !important; }
  2941. .mb-lg-n4,
  2942. .my-lg-n4 {
  2943. margin-bottom: -1.5rem !important; }
  2944. .ml-lg-n4,
  2945. .mx-lg-n4 {
  2946. margin-left: -1.5rem !important; }
  2947. .m-lg-n5 {
  2948. margin: -3rem !important; }
  2949. .mt-lg-n5,
  2950. .my-lg-n5 {
  2951. margin-top: -3rem !important; }
  2952. .mr-lg-n5,
  2953. .mx-lg-n5 {
  2954. margin-right: -3rem !important; }
  2955. .mb-lg-n5,
  2956. .my-lg-n5 {
  2957. margin-bottom: -3rem !important; }
  2958. .ml-lg-n5,
  2959. .mx-lg-n5 {
  2960. margin-left: -3rem !important; }
  2961. .m-lg-auto {
  2962. margin: auto !important; }
  2963. .mt-lg-auto,
  2964. .my-lg-auto {
  2965. margin-top: auto !important; }
  2966. .mr-lg-auto,
  2967. .mx-lg-auto {
  2968. margin-right: auto !important; }
  2969. .mb-lg-auto,
  2970. .my-lg-auto {
  2971. margin-bottom: auto !important; }
  2972. .ml-lg-auto,
  2973. .mx-lg-auto {
  2974. margin-left: auto !important; } }
  2975. @media (min-width: 1200px) {
  2976. .m-xl-0 {
  2977. margin: 0 !important; }
  2978. .mt-xl-0,
  2979. .my-xl-0 {
  2980. margin-top: 0 !important; }
  2981. .mr-xl-0,
  2982. .mx-xl-0 {
  2983. margin-right: 0 !important; }
  2984. .mb-xl-0,
  2985. .my-xl-0 {
  2986. margin-bottom: 0 !important; }
  2987. .ml-xl-0,
  2988. .mx-xl-0 {
  2989. margin-left: 0 !important; }
  2990. .m-xl-1 {
  2991. margin: 0.25rem !important; }
  2992. .mt-xl-1,
  2993. .my-xl-1 {
  2994. margin-top: 0.25rem !important; }
  2995. .mr-xl-1,
  2996. .mx-xl-1 {
  2997. margin-right: 0.25rem !important; }
  2998. .mb-xl-1,
  2999. .my-xl-1 {
  3000. margin-bottom: 0.25rem !important; }
  3001. .ml-xl-1,
  3002. .mx-xl-1 {
  3003. margin-left: 0.25rem !important; }
  3004. .m-xl-2 {
  3005. margin: 0.5rem !important; }
  3006. .mt-xl-2,
  3007. .my-xl-2 {
  3008. margin-top: 0.5rem !important; }
  3009. .mr-xl-2,
  3010. .mx-xl-2 {
  3011. margin-right: 0.5rem !important; }
  3012. .mb-xl-2,
  3013. .my-xl-2 {
  3014. margin-bottom: 0.5rem !important; }
  3015. .ml-xl-2,
  3016. .mx-xl-2 {
  3017. margin-left: 0.5rem !important; }
  3018. .m-xl-3 {
  3019. margin: 1rem !important; }
  3020. .mt-xl-3,
  3021. .my-xl-3 {
  3022. margin-top: 1rem !important; }
  3023. .mr-xl-3,
  3024. .mx-xl-3 {
  3025. margin-right: 1rem !important; }
  3026. .mb-xl-3,
  3027. .my-xl-3 {
  3028. margin-bottom: 1rem !important; }
  3029. .ml-xl-3,
  3030. .mx-xl-3 {
  3031. margin-left: 1rem !important; }
  3032. .m-xl-4 {
  3033. margin: 1.5rem !important; }
  3034. .mt-xl-4,
  3035. .my-xl-4 {
  3036. margin-top: 1.5rem !important; }
  3037. .mr-xl-4,
  3038. .mx-xl-4 {
  3039. margin-right: 1.5rem !important; }
  3040. .mb-xl-4,
  3041. .my-xl-4 {
  3042. margin-bottom: 1.5rem !important; }
  3043. .ml-xl-4,
  3044. .mx-xl-4 {
  3045. margin-left: 1.5rem !important; }
  3046. .m-xl-5 {
  3047. margin: 3rem !important; }
  3048. .mt-xl-5,
  3049. .my-xl-5 {
  3050. margin-top: 3rem !important; }
  3051. .mr-xl-5,
  3052. .mx-xl-5 {
  3053. margin-right: 3rem !important; }
  3054. .mb-xl-5,
  3055. .my-xl-5 {
  3056. margin-bottom: 3rem !important; }
  3057. .ml-xl-5,
  3058. .mx-xl-5 {
  3059. margin-left: 3rem !important; }
  3060. .p-xl-0 {
  3061. padding: 0 !important; }
  3062. .pt-xl-0,
  3063. .py-xl-0 {
  3064. padding-top: 0 !important; }
  3065. .pr-xl-0,
  3066. .px-xl-0 {
  3067. padding-right: 0 !important; }
  3068. .pb-xl-0,
  3069. .py-xl-0 {
  3070. padding-bottom: 0 !important; }
  3071. .pl-xl-0,
  3072. .px-xl-0 {
  3073. padding-left: 0 !important; }
  3074. .p-xl-1 {
  3075. padding: 0.25rem !important; }
  3076. .pt-xl-1,
  3077. .py-xl-1 {
  3078. padding-top: 0.25rem !important; }
  3079. .pr-xl-1,
  3080. .px-xl-1 {
  3081. padding-right: 0.25rem !important; }
  3082. .pb-xl-1,
  3083. .py-xl-1 {
  3084. padding-bottom: 0.25rem !important; }
  3085. .pl-xl-1,
  3086. .px-xl-1 {
  3087. padding-left: 0.25rem !important; }
  3088. .p-xl-2 {
  3089. padding: 0.5rem !important; }
  3090. .pt-xl-2,
  3091. .py-xl-2 {
  3092. padding-top: 0.5rem !important; }
  3093. .pr-xl-2,
  3094. .px-xl-2 {
  3095. padding-right: 0.5rem !important; }
  3096. .pb-xl-2,
  3097. .py-xl-2 {
  3098. padding-bottom: 0.5rem !important; }
  3099. .pl-xl-2,
  3100. .px-xl-2 {
  3101. padding-left: 0.5rem !important; }
  3102. .p-xl-3 {
  3103. padding: 1rem !important; }
  3104. .pt-xl-3,
  3105. .py-xl-3 {
  3106. padding-top: 1rem !important; }
  3107. .pr-xl-3,
  3108. .px-xl-3 {
  3109. padding-right: 1rem !important; }
  3110. .pb-xl-3,
  3111. .py-xl-3 {
  3112. padding-bottom: 1rem !important; }
  3113. .pl-xl-3,
  3114. .px-xl-3 {
  3115. padding-left: 1rem !important; }
  3116. .p-xl-4 {
  3117. padding: 1.5rem !important; }
  3118. .pt-xl-4,
  3119. .py-xl-4 {
  3120. padding-top: 1.5rem !important; }
  3121. .pr-xl-4,
  3122. .px-xl-4 {
  3123. padding-right: 1.5rem !important; }
  3124. .pb-xl-4,
  3125. .py-xl-4 {
  3126. padding-bottom: 1.5rem !important; }
  3127. .pl-xl-4,
  3128. .px-xl-4 {
  3129. padding-left: 1.5rem !important; }
  3130. .p-xl-5 {
  3131. padding: 3rem !important; }
  3132. .pt-xl-5,
  3133. .py-xl-5 {
  3134. padding-top: 3rem !important; }
  3135. .pr-xl-5,
  3136. .px-xl-5 {
  3137. padding-right: 3rem !important; }
  3138. .pb-xl-5,
  3139. .py-xl-5 {
  3140. padding-bottom: 3rem !important; }
  3141. .pl-xl-5,
  3142. .px-xl-5 {
  3143. padding-left: 3rem !important; }
  3144. .m-xl-n1 {
  3145. margin: -0.25rem !important; }
  3146. .mt-xl-n1,
  3147. .my-xl-n1 {
  3148. margin-top: -0.25rem !important; }
  3149. .mr-xl-n1,
  3150. .mx-xl-n1 {
  3151. margin-right: -0.25rem !important; }
  3152. .mb-xl-n1,
  3153. .my-xl-n1 {
  3154. margin-bottom: -0.25rem !important; }
  3155. .ml-xl-n1,
  3156. .mx-xl-n1 {
  3157. margin-left: -0.25rem !important; }
  3158. .m-xl-n2 {
  3159. margin: -0.5rem !important; }
  3160. .mt-xl-n2,
  3161. .my-xl-n2 {
  3162. margin-top: -0.5rem !important; }
  3163. .mr-xl-n2,
  3164. .mx-xl-n2 {
  3165. margin-right: -0.5rem !important; }
  3166. .mb-xl-n2,
  3167. .my-xl-n2 {
  3168. margin-bottom: -0.5rem !important; }
  3169. .ml-xl-n2,
  3170. .mx-xl-n2 {
  3171. margin-left: -0.5rem !important; }
  3172. .m-xl-n3 {
  3173. margin: -1rem !important; }
  3174. .mt-xl-n3,
  3175. .my-xl-n3 {
  3176. margin-top: -1rem !important; }
  3177. .mr-xl-n3,
  3178. .mx-xl-n3 {
  3179. margin-right: -1rem !important; }
  3180. .mb-xl-n3,
  3181. .my-xl-n3 {
  3182. margin-bottom: -1rem !important; }
  3183. .ml-xl-n3,
  3184. .mx-xl-n3 {
  3185. margin-left: -1rem !important; }
  3186. .m-xl-n4 {
  3187. margin: -1.5rem !important; }
  3188. .mt-xl-n4,
  3189. .my-xl-n4 {
  3190. margin-top: -1.5rem !important; }
  3191. .mr-xl-n4,
  3192. .mx-xl-n4 {
  3193. margin-right: -1.5rem !important; }
  3194. .mb-xl-n4,
  3195. .my-xl-n4 {
  3196. margin-bottom: -1.5rem !important; }
  3197. .ml-xl-n4,
  3198. .mx-xl-n4 {
  3199. margin-left: -1.5rem !important; }
  3200. .m-xl-n5 {
  3201. margin: -3rem !important; }
  3202. .mt-xl-n5,
  3203. .my-xl-n5 {
  3204. margin-top: -3rem !important; }
  3205. .mr-xl-n5,
  3206. .mx-xl-n5 {
  3207. margin-right: -3rem !important; }
  3208. .mb-xl-n5,
  3209. .my-xl-n5 {
  3210. margin-bottom: -3rem !important; }
  3211. .ml-xl-n5,
  3212. .mx-xl-n5 {
  3213. margin-left: -3rem !important; }
  3214. .m-xl-auto {
  3215. margin: auto !important; }
  3216. .mt-xl-auto,
  3217. .my-xl-auto {
  3218. margin-top: auto !important; }
  3219. .mr-xl-auto,
  3220. .mx-xl-auto {
  3221. margin-right: auto !important; }
  3222. .mb-xl-auto,
  3223. .my-xl-auto {
  3224. margin-bottom: auto !important; }
  3225. .ml-xl-auto,
  3226. .mx-xl-auto {
  3227. margin-left: auto !important; } }
  3228. @media (min-width: 1600px) {
  3229. .m-xlg-0 {
  3230. margin: 0 !important; }
  3231. .mt-xlg-0,
  3232. .my-xlg-0 {
  3233. margin-top: 0 !important; }
  3234. .mr-xlg-0,
  3235. .mx-xlg-0 {
  3236. margin-right: 0 !important; }
  3237. .mb-xlg-0,
  3238. .my-xlg-0 {
  3239. margin-bottom: 0 !important; }
  3240. .ml-xlg-0,
  3241. .mx-xlg-0 {
  3242. margin-left: 0 !important; }
  3243. .m-xlg-1 {
  3244. margin: 0.25rem !important; }
  3245. .mt-xlg-1,
  3246. .my-xlg-1 {
  3247. margin-top: 0.25rem !important; }
  3248. .mr-xlg-1,
  3249. .mx-xlg-1 {
  3250. margin-right: 0.25rem !important; }
  3251. .mb-xlg-1,
  3252. .my-xlg-1 {
  3253. margin-bottom: 0.25rem !important; }
  3254. .ml-xlg-1,
  3255. .mx-xlg-1 {
  3256. margin-left: 0.25rem !important; }
  3257. .m-xlg-2 {
  3258. margin: 0.5rem !important; }
  3259. .mt-xlg-2,
  3260. .my-xlg-2 {
  3261. margin-top: 0.5rem !important; }
  3262. .mr-xlg-2,
  3263. .mx-xlg-2 {
  3264. margin-right: 0.5rem !important; }
  3265. .mb-xlg-2,
  3266. .my-xlg-2 {
  3267. margin-bottom: 0.5rem !important; }
  3268. .ml-xlg-2,
  3269. .mx-xlg-2 {
  3270. margin-left: 0.5rem !important; }
  3271. .m-xlg-3 {
  3272. margin: 1rem !important; }
  3273. .mt-xlg-3,
  3274. .my-xlg-3 {
  3275. margin-top: 1rem !important; }
  3276. .mr-xlg-3,
  3277. .mx-xlg-3 {
  3278. margin-right: 1rem !important; }
  3279. .mb-xlg-3,
  3280. .my-xlg-3 {
  3281. margin-bottom: 1rem !important; }
  3282. .ml-xlg-3,
  3283. .mx-xlg-3 {
  3284. margin-left: 1rem !important; }
  3285. .m-xlg-4 {
  3286. margin: 1.5rem !important; }
  3287. .mt-xlg-4,
  3288. .my-xlg-4 {
  3289. margin-top: 1.5rem !important; }
  3290. .mr-xlg-4,
  3291. .mx-xlg-4 {
  3292. margin-right: 1.5rem !important; }
  3293. .mb-xlg-4,
  3294. .my-xlg-4 {
  3295. margin-bottom: 1.5rem !important; }
  3296. .ml-xlg-4,
  3297. .mx-xlg-4 {
  3298. margin-left: 1.5rem !important; }
  3299. .m-xlg-5 {
  3300. margin: 3rem !important; }
  3301. .mt-xlg-5,
  3302. .my-xlg-5 {
  3303. margin-top: 3rem !important; }
  3304. .mr-xlg-5,
  3305. .mx-xlg-5 {
  3306. margin-right: 3rem !important; }
  3307. .mb-xlg-5,
  3308. .my-xlg-5 {
  3309. margin-bottom: 3rem !important; }
  3310. .ml-xlg-5,
  3311. .mx-xlg-5 {
  3312. margin-left: 3rem !important; }
  3313. .p-xlg-0 {
  3314. padding: 0 !important; }
  3315. .pt-xlg-0,
  3316. .py-xlg-0 {
  3317. padding-top: 0 !important; }
  3318. .pr-xlg-0,
  3319. .px-xlg-0 {
  3320. padding-right: 0 !important; }
  3321. .pb-xlg-0,
  3322. .py-xlg-0 {
  3323. padding-bottom: 0 !important; }
  3324. .pl-xlg-0,
  3325. .px-xlg-0 {
  3326. padding-left: 0 !important; }
  3327. .p-xlg-1 {
  3328. padding: 0.25rem !important; }
  3329. .pt-xlg-1,
  3330. .py-xlg-1 {
  3331. padding-top: 0.25rem !important; }
  3332. .pr-xlg-1,
  3333. .px-xlg-1 {
  3334. padding-right: 0.25rem !important; }
  3335. .pb-xlg-1,
  3336. .py-xlg-1 {
  3337. padding-bottom: 0.25rem !important; }
  3338. .pl-xlg-1,
  3339. .px-xlg-1 {
  3340. padding-left: 0.25rem !important; }
  3341. .p-xlg-2 {
  3342. padding: 0.5rem !important; }
  3343. .pt-xlg-2,
  3344. .py-xlg-2 {
  3345. padding-top: 0.5rem !important; }
  3346. .pr-xlg-2,
  3347. .px-xlg-2 {
  3348. padding-right: 0.5rem !important; }
  3349. .pb-xlg-2,
  3350. .py-xlg-2 {
  3351. padding-bottom: 0.5rem !important; }
  3352. .pl-xlg-2,
  3353. .px-xlg-2 {
  3354. padding-left: 0.5rem !important; }
  3355. .p-xlg-3 {
  3356. padding: 1rem !important; }
  3357. .pt-xlg-3,
  3358. .py-xlg-3 {
  3359. padding-top: 1rem !important; }
  3360. .pr-xlg-3,
  3361. .px-xlg-3 {
  3362. padding-right: 1rem !important; }
  3363. .pb-xlg-3,
  3364. .py-xlg-3 {
  3365. padding-bottom: 1rem !important; }
  3366. .pl-xlg-3,
  3367. .px-xlg-3 {
  3368. padding-left: 1rem !important; }
  3369. .p-xlg-4 {
  3370. padding: 1.5rem !important; }
  3371. .pt-xlg-4,
  3372. .py-xlg-4 {
  3373. padding-top: 1.5rem !important; }
  3374. .pr-xlg-4,
  3375. .px-xlg-4 {
  3376. padding-right: 1.5rem !important; }
  3377. .pb-xlg-4,
  3378. .py-xlg-4 {
  3379. padding-bottom: 1.5rem !important; }
  3380. .pl-xlg-4,
  3381. .px-xlg-4 {
  3382. padding-left: 1.5rem !important; }
  3383. .p-xlg-5 {
  3384. padding: 3rem !important; }
  3385. .pt-xlg-5,
  3386. .py-xlg-5 {
  3387. padding-top: 3rem !important; }
  3388. .pr-xlg-5,
  3389. .px-xlg-5 {
  3390. padding-right: 3rem !important; }
  3391. .pb-xlg-5,
  3392. .py-xlg-5 {
  3393. padding-bottom: 3rem !important; }
  3394. .pl-xlg-5,
  3395. .px-xlg-5 {
  3396. padding-left: 3rem !important; }
  3397. .m-xlg-n1 {
  3398. margin: -0.25rem !important; }
  3399. .mt-xlg-n1,
  3400. .my-xlg-n1 {
  3401. margin-top: -0.25rem !important; }
  3402. .mr-xlg-n1,
  3403. .mx-xlg-n1 {
  3404. margin-right: -0.25rem !important; }
  3405. .mb-xlg-n1,
  3406. .my-xlg-n1 {
  3407. margin-bottom: -0.25rem !important; }
  3408. .ml-xlg-n1,
  3409. .mx-xlg-n1 {
  3410. margin-left: -0.25rem !important; }
  3411. .m-xlg-n2 {
  3412. margin: -0.5rem !important; }
  3413. .mt-xlg-n2,
  3414. .my-xlg-n2 {
  3415. margin-top: -0.5rem !important; }
  3416. .mr-xlg-n2,
  3417. .mx-xlg-n2 {
  3418. margin-right: -0.5rem !important; }
  3419. .mb-xlg-n2,
  3420. .my-xlg-n2 {
  3421. margin-bottom: -0.5rem !important; }
  3422. .ml-xlg-n2,
  3423. .mx-xlg-n2 {
  3424. margin-left: -0.5rem !important; }
  3425. .m-xlg-n3 {
  3426. margin: -1rem !important; }
  3427. .mt-xlg-n3,
  3428. .my-xlg-n3 {
  3429. margin-top: -1rem !important; }
  3430. .mr-xlg-n3,
  3431. .mx-xlg-n3 {
  3432. margin-right: -1rem !important; }
  3433. .mb-xlg-n3,
  3434. .my-xlg-n3 {
  3435. margin-bottom: -1rem !important; }
  3436. .ml-xlg-n3,
  3437. .mx-xlg-n3 {
  3438. margin-left: -1rem !important; }
  3439. .m-xlg-n4 {
  3440. margin: -1.5rem !important; }
  3441. .mt-xlg-n4,
  3442. .my-xlg-n4 {
  3443. margin-top: -1.5rem !important; }
  3444. .mr-xlg-n4,
  3445. .mx-xlg-n4 {
  3446. margin-right: -1.5rem !important; }
  3447. .mb-xlg-n4,
  3448. .my-xlg-n4 {
  3449. margin-bottom: -1.5rem !important; }
  3450. .ml-xlg-n4,
  3451. .mx-xlg-n4 {
  3452. margin-left: -1.5rem !important; }
  3453. .m-xlg-n5 {
  3454. margin: -3rem !important; }
  3455. .mt-xlg-n5,
  3456. .my-xlg-n5 {
  3457. margin-top: -3rem !important; }
  3458. .mr-xlg-n5,
  3459. .mx-xlg-n5 {
  3460. margin-right: -3rem !important; }
  3461. .mb-xlg-n5,
  3462. .my-xlg-n5 {
  3463. margin-bottom: -3rem !important; }
  3464. .ml-xlg-n5,
  3465. .mx-xlg-n5 {
  3466. margin-left: -3rem !important; }
  3467. .m-xlg-auto {
  3468. margin: auto !important; }
  3469. .mt-xlg-auto,
  3470. .my-xlg-auto {
  3471. margin-top: auto !important; }
  3472. .mr-xlg-auto,
  3473. .mx-xlg-auto {
  3474. margin-right: auto !important; }
  3475. .mb-xlg-auto,
  3476. .my-xlg-auto {
  3477. margin-bottom: auto !important; }
  3478. .ml-xlg-auto,
  3479. .mx-xlg-auto {
  3480. margin-left: auto !important; } }
  3481. .text-monospace {
  3482. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }
  3483. .text-justify {
  3484. text-align: justify !important; }
  3485. .text-wrap {
  3486. white-space: normal !important; }
  3487. .text-nowrap {
  3488. white-space: nowrap !important; }
  3489. .text-truncate {
  3490. overflow: hidden;
  3491. text-overflow: ellipsis;
  3492. white-space: nowrap; }
  3493. .text-left {
  3494. text-align: left !important; }
  3495. .text-right {
  3496. text-align: right !important; }
  3497. .text-center {
  3498. text-align: center !important; }
  3499. @media (min-width: 576px) {
  3500. .text-sm-left {
  3501. text-align: left !important; }
  3502. .text-sm-right {
  3503. text-align: right !important; }
  3504. .text-sm-center {
  3505. text-align: center !important; } }
  3506. @media (min-width: 768px) {
  3507. .text-md-left {
  3508. text-align: left !important; }
  3509. .text-md-right {
  3510. text-align: right !important; }
  3511. .text-md-center {
  3512. text-align: center !important; } }
  3513. @media (min-width: 992px) {
  3514. .text-lg-left {
  3515. text-align: left !important; }
  3516. .text-lg-right {
  3517. text-align: right !important; }
  3518. .text-lg-center {
  3519. text-align: center !important; } }
  3520. @media (min-width: 1200px) {
  3521. .text-xl-left {
  3522. text-align: left !important; }
  3523. .text-xl-right {
  3524. text-align: right !important; }
  3525. .text-xl-center {
  3526. text-align: center !important; } }
  3527. @media (min-width: 1600px) {
  3528. .text-xlg-left {
  3529. text-align: left !important; }
  3530. .text-xlg-right {
  3531. text-align: right !important; }
  3532. .text-xlg-center {
  3533. text-align: center !important; } }
  3534. .d-none {
  3535. display: none !important; }
  3536. .d-inline {
  3537. display: inline !important; }
  3538. .d-inline-block {
  3539. display: inline-block !important; }
  3540. .d-block {
  3541. display: block !important; }
  3542. .d-table {
  3543. display: table !important; }
  3544. .d-table-row {
  3545. display: table-row !important; }
  3546. .d-table-cell {
  3547. display: table-cell !important; }
  3548. .d-flex {
  3549. display: flex !important; }
  3550. .d-inline-flex {
  3551. display: inline-flex !important; }
  3552. @media (min-width: 576px) {
  3553. .d-sm-none {
  3554. display: none !important; }
  3555. .d-sm-inline {
  3556. display: inline !important; }
  3557. .d-sm-inline-block {
  3558. display: inline-block !important; }
  3559. .d-sm-block {
  3560. display: block !important; }
  3561. .d-sm-table {
  3562. display: table !important; }
  3563. .d-sm-table-row {
  3564. display: table-row !important; }
  3565. .d-sm-table-cell {
  3566. display: table-cell !important; }
  3567. .d-sm-flex {
  3568. display: flex !important; }
  3569. .d-sm-inline-flex {
  3570. display: inline-flex !important; } }
  3571. @media (min-width: 768px) {
  3572. .d-md-none {
  3573. display: none !important; }
  3574. .d-md-inline {
  3575. display: inline !important; }
  3576. .d-md-inline-block {
  3577. display: inline-block !important; }
  3578. .d-md-block {
  3579. display: block !important; }
  3580. .d-md-table {
  3581. display: table !important; }
  3582. .d-md-table-row {
  3583. display: table-row !important; }
  3584. .d-md-table-cell {
  3585. display: table-cell !important; }
  3586. .d-md-flex {
  3587. display: flex !important; }
  3588. .d-md-inline-flex {
  3589. display: inline-flex !important; } }
  3590. @media (min-width: 992px) {
  3591. .d-lg-none {
  3592. display: none !important; }
  3593. .d-lg-inline {
  3594. display: inline !important; }
  3595. .d-lg-inline-block {
  3596. display: inline-block !important; }
  3597. .d-lg-block {
  3598. display: block !important; }
  3599. .d-lg-table {
  3600. display: table !important; }
  3601. .d-lg-table-row {
  3602. display: table-row !important; }
  3603. .d-lg-table-cell {
  3604. display: table-cell !important; }
  3605. .d-lg-flex {
  3606. display: flex !important; }
  3607. .d-lg-inline-flex {
  3608. display: inline-flex !important; } }
  3609. @media (min-width: 1200px) {
  3610. .d-xl-none {
  3611. display: none !important; }
  3612. .d-xl-inline {
  3613. display: inline !important; }
  3614. .d-xl-inline-block {
  3615. display: inline-block !important; }
  3616. .d-xl-block {
  3617. display: block !important; }
  3618. .d-xl-table {
  3619. display: table !important; }
  3620. .d-xl-table-row {
  3621. display: table-row !important; }
  3622. .d-xl-table-cell {
  3623. display: table-cell !important; }
  3624. .d-xl-flex {
  3625. display: flex !important; }
  3626. .d-xl-inline-flex {
  3627. display: inline-flex !important; } }
  3628. @media (min-width: 1600px) {
  3629. .d-xlg-none {
  3630. display: none !important; }
  3631. .d-xlg-inline {
  3632. display: inline !important; }
  3633. .d-xlg-inline-block {
  3634. display: inline-block !important; }
  3635. .d-xlg-block {
  3636. display: block !important; }
  3637. .d-xlg-table {
  3638. display: table !important; }
  3639. .d-xlg-table-row {
  3640. display: table-row !important; }
  3641. .d-xlg-table-cell {
  3642. display: table-cell !important; }
  3643. .d-xlg-flex {
  3644. display: flex !important; }
  3645. .d-xlg-inline-flex {
  3646. display: inline-flex !important; } }
  3647. @media print {
  3648. .d-print-none {
  3649. display: none !important; }
  3650. .d-print-inline {
  3651. display: inline !important; }
  3652. .d-print-inline-block {
  3653. display: inline-block !important; }
  3654. .d-print-block {
  3655. display: block !important; }
  3656. .d-print-table {
  3657. display: table !important; }
  3658. .d-print-table-row {
  3659. display: table-row !important; }
  3660. .d-print-table-cell {
  3661. display: table-cell !important; }
  3662. .d-print-flex {
  3663. display: flex !important; }
  3664. .d-print-inline-flex {
  3665. display: inline-flex !important; } }
  3666. .flex-row {
  3667. flex-direction: row !important; }
  3668. .flex-column {
  3669. flex-direction: column !important; }
  3670. .flex-row-reverse {
  3671. flex-direction: row-reverse !important; }
  3672. .flex-column-reverse {
  3673. flex-direction: column-reverse !important; }
  3674. .flex-wrap {
  3675. flex-wrap: wrap !important; }
  3676. .flex-nowrap {
  3677. flex-wrap: nowrap !important; }
  3678. .flex-wrap-reverse {
  3679. flex-wrap: wrap-reverse !important; }
  3680. .flex-fill {
  3681. flex: 1 1 auto !important; }
  3682. .flex-grow-0 {
  3683. flex-grow: 0 !important; }
  3684. .flex-grow-1 {
  3685. flex-grow: 1 !important; }
  3686. .flex-shrink-0 {
  3687. flex-shrink: 0 !important; }
  3688. .flex-shrink-1 {
  3689. flex-shrink: 1 !important; }
  3690. .justify-content-start {
  3691. justify-content: flex-start !important; }
  3692. .justify-content-end {
  3693. justify-content: flex-end !important; }
  3694. .justify-content-center {
  3695. justify-content: center !important; }
  3696. .justify-content-between {
  3697. justify-content: space-between !important; }
  3698. .justify-content-around {
  3699. justify-content: space-around !important; }
  3700. .align-items-start {
  3701. align-items: flex-start !important; }
  3702. .align-items-end {
  3703. align-items: flex-end !important; }
  3704. .align-items-center {
  3705. align-items: center !important; }
  3706. .align-items-baseline {
  3707. align-items: baseline !important; }
  3708. .align-items-stretch {
  3709. align-items: stretch !important; }
  3710. .align-content-start {
  3711. align-content: flex-start !important; }
  3712. .align-content-end {
  3713. align-content: flex-end !important; }
  3714. .align-content-center {
  3715. align-content: center !important; }
  3716. .align-content-between {
  3717. align-content: space-between !important; }
  3718. .align-content-around {
  3719. align-content: space-around !important; }
  3720. .align-content-stretch {
  3721. align-content: stretch !important; }
  3722. .align-self-auto {
  3723. align-self: auto !important; }
  3724. .align-self-start {
  3725. align-self: flex-start !important; }
  3726. .align-self-end {
  3727. align-self: flex-end !important; }
  3728. .align-self-center {
  3729. align-self: center !important; }
  3730. .align-self-baseline {
  3731. align-self: baseline !important; }
  3732. .align-self-stretch {
  3733. align-self: stretch !important; }
  3734. @media (min-width: 576px) {
  3735. .flex-sm-row {
  3736. flex-direction: row !important; }
  3737. .flex-sm-column {
  3738. flex-direction: column !important; }
  3739. .flex-sm-row-reverse {
  3740. flex-direction: row-reverse !important; }
  3741. .flex-sm-column-reverse {
  3742. flex-direction: column-reverse !important; }
  3743. .flex-sm-wrap {
  3744. flex-wrap: wrap !important; }
  3745. .flex-sm-nowrap {
  3746. flex-wrap: nowrap !important; }
  3747. .flex-sm-wrap-reverse {
  3748. flex-wrap: wrap-reverse !important; }
  3749. .flex-sm-fill {
  3750. flex: 1 1 auto !important; }
  3751. .flex-sm-grow-0 {
  3752. flex-grow: 0 !important; }
  3753. .flex-sm-grow-1 {
  3754. flex-grow: 1 !important; }
  3755. .flex-sm-shrink-0 {
  3756. flex-shrink: 0 !important; }
  3757. .flex-sm-shrink-1 {
  3758. flex-shrink: 1 !important; }
  3759. .justify-content-sm-start {
  3760. justify-content: flex-start !important; }
  3761. .justify-content-sm-end {
  3762. justify-content: flex-end !important; }
  3763. .justify-content-sm-center {
  3764. justify-content: center !important; }
  3765. .justify-content-sm-between {
  3766. justify-content: space-between !important; }
  3767. .justify-content-sm-around {
  3768. justify-content: space-around !important; }
  3769. .align-items-sm-start {
  3770. align-items: flex-start !important; }
  3771. .align-items-sm-end {
  3772. align-items: flex-end !important; }
  3773. .align-items-sm-center {
  3774. align-items: center !important; }
  3775. .align-items-sm-baseline {
  3776. align-items: baseline !important; }
  3777. .align-items-sm-stretch {
  3778. align-items: stretch !important; }
  3779. .align-content-sm-start {
  3780. align-content: flex-start !important; }
  3781. .align-content-sm-end {
  3782. align-content: flex-end !important; }
  3783. .align-content-sm-center {
  3784. align-content: center !important; }
  3785. .align-content-sm-between {
  3786. align-content: space-between !important; }
  3787. .align-content-sm-around {
  3788. align-content: space-around !important; }
  3789. .align-content-sm-stretch {
  3790. align-content: stretch !important; }
  3791. .align-self-sm-auto {
  3792. align-self: auto !important; }
  3793. .align-self-sm-start {
  3794. align-self: flex-start !important; }
  3795. .align-self-sm-end {
  3796. align-self: flex-end !important; }
  3797. .align-self-sm-center {
  3798. align-self: center !important; }
  3799. .align-self-sm-baseline {
  3800. align-self: baseline !important; }
  3801. .align-self-sm-stretch {
  3802. align-self: stretch !important; } }
  3803. @media (min-width: 768px) {
  3804. .flex-md-row {
  3805. flex-direction: row !important; }
  3806. .flex-md-column {
  3807. flex-direction: column !important; }
  3808. .flex-md-row-reverse {
  3809. flex-direction: row-reverse !important; }
  3810. .flex-md-column-reverse {
  3811. flex-direction: column-reverse !important; }
  3812. .flex-md-wrap {
  3813. flex-wrap: wrap !important; }
  3814. .flex-md-nowrap {
  3815. flex-wrap: nowrap !important; }
  3816. .flex-md-wrap-reverse {
  3817. flex-wrap: wrap-reverse !important; }
  3818. .flex-md-fill {
  3819. flex: 1 1 auto !important; }
  3820. .flex-md-grow-0 {
  3821. flex-grow: 0 !important; }
  3822. .flex-md-grow-1 {
  3823. flex-grow: 1 !important; }
  3824. .flex-md-shrink-0 {
  3825. flex-shrink: 0 !important; }
  3826. .flex-md-shrink-1 {
  3827. flex-shrink: 1 !important; }
  3828. .justify-content-md-start {
  3829. justify-content: flex-start !important; }
  3830. .justify-content-md-end {
  3831. justify-content: flex-end !important; }
  3832. .justify-content-md-center {
  3833. justify-content: center !important; }
  3834. .justify-content-md-between {
  3835. justify-content: space-between !important; }
  3836. .justify-content-md-around {
  3837. justify-content: space-around !important; }
  3838. .align-items-md-start {
  3839. align-items: flex-start !important; }
  3840. .align-items-md-end {
  3841. align-items: flex-end !important; }
  3842. .align-items-md-center {
  3843. align-items: center !important; }
  3844. .align-items-md-baseline {
  3845. align-items: baseline !important; }
  3846. .align-items-md-stretch {
  3847. align-items: stretch !important; }
  3848. .align-content-md-start {
  3849. align-content: flex-start !important; }
  3850. .align-content-md-end {
  3851. align-content: flex-end !important; }
  3852. .align-content-md-center {
  3853. align-content: center !important; }
  3854. .align-content-md-between {
  3855. align-content: space-between !important; }
  3856. .align-content-md-around {
  3857. align-content: space-around !important; }
  3858. .align-content-md-stretch {
  3859. align-content: stretch !important; }
  3860. .align-self-md-auto {
  3861. align-self: auto !important; }
  3862. .align-self-md-start {
  3863. align-self: flex-start !important; }
  3864. .align-self-md-end {
  3865. align-self: flex-end !important; }
  3866. .align-self-md-center {
  3867. align-self: center !important; }
  3868. .align-self-md-baseline {
  3869. align-self: baseline !important; }
  3870. .align-self-md-stretch {
  3871. align-self: stretch !important; } }
  3872. @media (min-width: 992px) {
  3873. .flex-lg-row {
  3874. flex-direction: row !important; }
  3875. .flex-lg-column {
  3876. flex-direction: column !important; }
  3877. .flex-lg-row-reverse {
  3878. flex-direction: row-reverse !important; }
  3879. .flex-lg-column-reverse {
  3880. flex-direction: column-reverse !important; }
  3881. .flex-lg-wrap {
  3882. flex-wrap: wrap !important; }
  3883. .flex-lg-nowrap {
  3884. flex-wrap: nowrap !important; }
  3885. .flex-lg-wrap-reverse {
  3886. flex-wrap: wrap-reverse !important; }
  3887. .flex-lg-fill {
  3888. flex: 1 1 auto !important; }
  3889. .flex-lg-grow-0 {
  3890. flex-grow: 0 !important; }
  3891. .flex-lg-grow-1 {
  3892. flex-grow: 1 !important; }
  3893. .flex-lg-shrink-0 {
  3894. flex-shrink: 0 !important; }
  3895. .flex-lg-shrink-1 {
  3896. flex-shrink: 1 !important; }
  3897. .justify-content-lg-start {
  3898. justify-content: flex-start !important; }
  3899. .justify-content-lg-end {
  3900. justify-content: flex-end !important; }
  3901. .justify-content-lg-center {
  3902. justify-content: center !important; }
  3903. .justify-content-lg-between {
  3904. justify-content: space-between !important; }
  3905. .justify-content-lg-around {
  3906. justify-content: space-around !important; }
  3907. .align-items-lg-start {
  3908. align-items: flex-start !important; }
  3909. .align-items-lg-end {
  3910. align-items: flex-end !important; }
  3911. .align-items-lg-center {
  3912. align-items: center !important; }
  3913. .align-items-lg-baseline {
  3914. align-items: baseline !important; }
  3915. .align-items-lg-stretch {
  3916. align-items: stretch !important; }
  3917. .align-content-lg-start {
  3918. align-content: flex-start !important; }
  3919. .align-content-lg-end {
  3920. align-content: flex-end !important; }
  3921. .align-content-lg-center {
  3922. align-content: center !important; }
  3923. .align-content-lg-between {
  3924. align-content: space-between !important; }
  3925. .align-content-lg-around {
  3926. align-content: space-around !important; }
  3927. .align-content-lg-stretch {
  3928. align-content: stretch !important; }
  3929. .align-self-lg-auto {
  3930. align-self: auto !important; }
  3931. .align-self-lg-start {
  3932. align-self: flex-start !important; }
  3933. .align-self-lg-end {
  3934. align-self: flex-end !important; }
  3935. .align-self-lg-center {
  3936. align-self: center !important; }
  3937. .align-self-lg-baseline {
  3938. align-self: baseline !important; }
  3939. .align-self-lg-stretch {
  3940. align-self: stretch !important; } }
  3941. @media (min-width: 1200px) {
  3942. .flex-xl-row {
  3943. flex-direction: row !important; }
  3944. .flex-xl-column {
  3945. flex-direction: column !important; }
  3946. .flex-xl-row-reverse {
  3947. flex-direction: row-reverse !important; }
  3948. .flex-xl-column-reverse {
  3949. flex-direction: column-reverse !important; }
  3950. .flex-xl-wrap {
  3951. flex-wrap: wrap !important; }
  3952. .flex-xl-nowrap {
  3953. flex-wrap: nowrap !important; }
  3954. .flex-xl-wrap-reverse {
  3955. flex-wrap: wrap-reverse !important; }
  3956. .flex-xl-fill {
  3957. flex: 1 1 auto !important; }
  3958. .flex-xl-grow-0 {
  3959. flex-grow: 0 !important; }
  3960. .flex-xl-grow-1 {
  3961. flex-grow: 1 !important; }
  3962. .flex-xl-shrink-0 {
  3963. flex-shrink: 0 !important; }
  3964. .flex-xl-shrink-1 {
  3965. flex-shrink: 1 !important; }
  3966. .justify-content-xl-start {
  3967. justify-content: flex-start !important; }
  3968. .justify-content-xl-end {
  3969. justify-content: flex-end !important; }
  3970. .justify-content-xl-center {
  3971. justify-content: center !important; }
  3972. .justify-content-xl-between {
  3973. justify-content: space-between !important; }
  3974. .justify-content-xl-around {
  3975. justify-content: space-around !important; }
  3976. .align-items-xl-start {
  3977. align-items: flex-start !important; }
  3978. .align-items-xl-end {
  3979. align-items: flex-end !important; }
  3980. .align-items-xl-center {
  3981. align-items: center !important; }
  3982. .align-items-xl-baseline {
  3983. align-items: baseline !important; }
  3984. .align-items-xl-stretch {
  3985. align-items: stretch !important; }
  3986. .align-content-xl-start {
  3987. align-content: flex-start !important; }
  3988. .align-content-xl-end {
  3989. align-content: flex-end !important; }
  3990. .align-content-xl-center {
  3991. align-content: center !important; }
  3992. .align-content-xl-between {
  3993. align-content: space-between !important; }
  3994. .align-content-xl-around {
  3995. align-content: space-around !important; }
  3996. .align-content-xl-stretch {
  3997. align-content: stretch !important; }
  3998. .align-self-xl-auto {
  3999. align-self: auto !important; }
  4000. .align-self-xl-start {
  4001. align-self: flex-start !important; }
  4002. .align-self-xl-end {
  4003. align-self: flex-end !important; }
  4004. .align-self-xl-center {
  4005. align-self: center !important; }
  4006. .align-self-xl-baseline {
  4007. align-self: baseline !important; }
  4008. .align-self-xl-stretch {
  4009. align-self: stretch !important; } }
  4010. @media (min-width: 1600px) {
  4011. .flex-xlg-row {
  4012. flex-direction: row !important; }
  4013. .flex-xlg-column {
  4014. flex-direction: column !important; }
  4015. .flex-xlg-row-reverse {
  4016. flex-direction: row-reverse !important; }
  4017. .flex-xlg-column-reverse {
  4018. flex-direction: column-reverse !important; }
  4019. .flex-xlg-wrap {
  4020. flex-wrap: wrap !important; }
  4021. .flex-xlg-nowrap {
  4022. flex-wrap: nowrap !important; }
  4023. .flex-xlg-wrap-reverse {
  4024. flex-wrap: wrap-reverse !important; }
  4025. .flex-xlg-fill {
  4026. flex: 1 1 auto !important; }
  4027. .flex-xlg-grow-0 {
  4028. flex-grow: 0 !important; }
  4029. .flex-xlg-grow-1 {
  4030. flex-grow: 1 !important; }
  4031. .flex-xlg-shrink-0 {
  4032. flex-shrink: 0 !important; }
  4033. .flex-xlg-shrink-1 {
  4034. flex-shrink: 1 !important; }
  4035. .justify-content-xlg-start {
  4036. justify-content: flex-start !important; }
  4037. .justify-content-xlg-end {
  4038. justify-content: flex-end !important; }
  4039. .justify-content-xlg-center {
  4040. justify-content: center !important; }
  4041. .justify-content-xlg-between {
  4042. justify-content: space-between !important; }
  4043. .justify-content-xlg-around {
  4044. justify-content: space-around !important; }
  4045. .align-items-xlg-start {
  4046. align-items: flex-start !important; }
  4047. .align-items-xlg-end {
  4048. align-items: flex-end !important; }
  4049. .align-items-xlg-center {
  4050. align-items: center !important; }
  4051. .align-items-xlg-baseline {
  4052. align-items: baseline !important; }
  4053. .align-items-xlg-stretch {
  4054. align-items: stretch !important; }
  4055. .align-content-xlg-start {
  4056. align-content: flex-start !important; }
  4057. .align-content-xlg-end {
  4058. align-content: flex-end !important; }
  4059. .align-content-xlg-center {
  4060. align-content: center !important; }
  4061. .align-content-xlg-between {
  4062. align-content: space-between !important; }
  4063. .align-content-xlg-around {
  4064. align-content: space-around !important; }
  4065. .align-content-xlg-stretch {
  4066. align-content: stretch !important; }
  4067. .align-self-xlg-auto {
  4068. align-self: auto !important; }
  4069. .align-self-xlg-start {
  4070. align-self: flex-start !important; }
  4071. .align-self-xlg-end {
  4072. align-self: flex-end !important; }
  4073. .align-self-xlg-center {
  4074. align-self: center !important; }
  4075. .align-self-xlg-baseline {
  4076. align-self: baseline !important; }
  4077. .align-self-xlg-stretch {
  4078. align-self: stretch !important; } }
  4079. .card {
  4080. margin-bottom: 30px; }
  4081. .card .card-subtitle {
  4082. font-weight: 300;
  4083. margin-bottom: 10px;
  4084. color: #8898aa; }
  4085. .card .card-title {
  4086. position: relative;
  4087. font-weight: 500;
  4088. font-size: 16px; }
  4089. .card .card-actions {
  4090. float: right; }
  4091. .card .card-actions a {
  4092. padding: 0 5px;
  4093. cursor: pointer; }
  4094. .card .card-header .card-title {
  4095. margin-bottom: 0px; }
  4096. .card-alt {
  4097. margin: 0 -20px;
  4098. background: #e4e9ef; }
  4099. .card-group {
  4100. margin-bottom: 30px; }
  4101. .card-group .card {
  4102. border-right: 1px solid rgba(120, 130, 140, 0.13); }
  4103. .card-fullscreen {
  4104. position: fixed;
  4105. top: 0px;
  4106. left: 0px;
  4107. width: 100%;
  4108. height: 100%;
  4109. z-index: 9999;
  4110. overflow: auto; }
  4111. .card-hover {
  4112. -webkit-transition: all 0.25s ease;
  4113. -o-transition: all 0.25s ease;
  4114. -moz-transition: all 0.25s ease;
  4115. transition: all 0.25s ease; }
  4116. .card-hover:hover {
  4117. -webkit-transform: translateY(-4px) scale(1.01);
  4118. -moz-transform: translateY(-4px) scale(1.01);
  4119. -ms-transform: translateY(-4px) scale(1.01);
  4120. -o-transform: translateY(-4px) scale(1.01);
  4121. transform: translateY(-4px) scale(1.01);
  4122. -webkit-box-shadow: 0 14px 24px rgba(62, 57, 107, 0.1);
  4123. box-shadow: 0 14px 24px rgba(62, 57, 107, 0.1); }
  4124. .draggable-cards .card-header {
  4125. cursor: move; }
  4126. .card-moved .card {
  4127. background: #2cabe3;
  4128. color: #fff; }
  4129. .accordion .card,
  4130. .accordion .btn,
  4131. .accordion .btn:hover {
  4132. box-shadow: none;
  4133. margin-bottom: 1px; }
  4134. .card {
  4135. position: relative;
  4136. display: flex;
  4137. flex-direction: column;
  4138. min-width: 0;
  4139. word-wrap: break-word;
  4140. background-color: inherit;
  4141. background-clip: border-box;
  4142. border: 0px solid transparent;
  4143. border-radius: 0px; }
  4144. .card > hr {
  4145. margin-right: 0;
  4146. margin-left: 0; }
  4147. .card > .list-group:first-child .list-group-item:first-child {
  4148. border-top-left-radius: 0px;
  4149. border-top-right-radius: 0px; }
  4150. .card > .list-group:last-child .list-group-item:last-child {
  4151. border-bottom-right-radius: 0px;
  4152. border-bottom-left-radius: 0px; }
  4153. .card-body {
  4154. flex: 1 1 auto;
  4155. padding: 1.57rem; }
  4156. .card-title {
  4157. margin-bottom: 0.75rem; }
  4158. .card-subtitle {
  4159. margin-top: -0.375rem;
  4160. margin-bottom: 0; }
  4161. .card-text:last-child {
  4162. margin-bottom: 0; }
  4163. .card-link:hover {
  4164. text-decoration: none; }
  4165. .card-link + .card-link {
  4166. margin-left: 1.57rem; }
  4167. .card-header {
  4168. padding: 0.75rem 1.57rem;
  4169. margin-bottom: 0;
  4170. background-color: rgba(0, 0, 0, 0.03);
  4171. border-bottom: 0px solid transparent; }
  4172. .card-header:first-child {
  4173. border-radius: calc(0px - 0px) calc(0px - 0px) 0 0; }
  4174. .card-header + .list-group .list-group-item:first-child {
  4175. border-top: 0; }
  4176. .card-footer {
  4177. padding: 0.75rem 1.57rem;
  4178. background-color: rgba(0, 0, 0, 0.03);
  4179. border-top: 0px solid transparent; }
  4180. .card-footer:last-child {
  4181. border-radius: 0 0 calc(0px - 0px) calc(0px - 0px); }
  4182. .card-header-tabs {
  4183. margin-right: -0.785rem;
  4184. margin-bottom: -0.75rem;
  4185. margin-left: -0.785rem;
  4186. border-bottom: 0; }
  4187. .card-header-pills {
  4188. margin-right: -0.785rem;
  4189. margin-left: -0.785rem; }
  4190. .card-img-overlay {
  4191. position: absolute;
  4192. top: 0;
  4193. right: 0;
  4194. bottom: 0;
  4195. left: 0;
  4196. padding: 1.25rem; }
  4197. .card-img {
  4198. width: 100%;
  4199. border-radius: calc(0px - 0px); }
  4200. .card-img-top {
  4201. width: 100%;
  4202. border-top-left-radius: calc(0px - 0px);
  4203. border-top-right-radius: calc(0px - 0px); }
  4204. .card-img-bottom {
  4205. width: 100%;
  4206. border-bottom-right-radius: calc(0px - 0px);
  4207. border-bottom-left-radius: calc(0px - 0px); }
  4208. .card-deck {
  4209. display: flex;
  4210. flex-direction: column; }
  4211. .card-deck .card {
  4212. margin-bottom: 15px; }
  4213. @media (min-width: 576px) {
  4214. .card-deck {
  4215. flex-flow: row wrap;
  4216. margin-right: -15px;
  4217. margin-left: -15px; }
  4218. .card-deck .card {
  4219. display: flex;
  4220. flex: 1 0 0%;
  4221. flex-direction: column;
  4222. margin-right: 15px;
  4223. margin-bottom: 0;
  4224. margin-left: 15px; } }
  4225. .card-group {
  4226. display: flex;
  4227. flex-direction: column; }
  4228. .card-group > .card {
  4229. margin-bottom: 15px; }
  4230. @media (min-width: 576px) {
  4231. .card-group {
  4232. flex-flow: row wrap; }
  4233. .card-group > .card {
  4234. flex: 1 0 0%;
  4235. margin-bottom: 0; }
  4236. .card-group > .card + .card {
  4237. margin-left: 0;
  4238. border-left: 0; }
  4239. .card-group > .card:not(:last-child) {
  4240. border-top-right-radius: 0;
  4241. border-bottom-right-radius: 0; }
  4242. .card-group > .card:not(:last-child) .card-img-top,
  4243. .card-group > .card:not(:last-child) .card-header {
  4244. border-top-right-radius: 0; }
  4245. .card-group > .card:not(:last-child) .card-img-bottom,
  4246. .card-group > .card:not(:last-child) .card-footer {
  4247. border-bottom-right-radius: 0; }
  4248. .card-group > .card:not(:first-child) {
  4249. border-top-left-radius: 0;
  4250. border-bottom-left-radius: 0; }
  4251. .card-group > .card:not(:first-child) .card-img-top,
  4252. .card-group > .card:not(:first-child) .card-header {
  4253. border-top-left-radius: 0; }
  4254. .card-group > .card:not(:first-child) .card-img-bottom,
  4255. .card-group > .card:not(:first-child) .card-footer {
  4256. border-bottom-left-radius: 0; } }
  4257. .card-columns .card {
  4258. margin-bottom: 0.75rem; }
  4259. @media (min-width: 576px) {
  4260. .card-columns {
  4261. column-count: 3;
  4262. column-gap: 1.25rem;
  4263. orphans: 1;
  4264. widows: 1; }
  4265. .card-columns .card {
  4266. display: inline-block;
  4267. width: 100%; } }
  4268. .accordion > .card {
  4269. overflow: hidden; }
  4270. .accordion > .card:not(:first-of-type) .card-header:first-child {
  4271. border-radius: 0; }
  4272. .accordion > .card:not(:first-of-type):not(:last-of-type) {
  4273. border-bottom: 0;
  4274. border-radius: 0; }
  4275. .accordion > .card:first-of-type {
  4276. border-bottom: 0;
  4277. border-bottom-right-radius: 0;
  4278. border-bottom-left-radius: 0; }
  4279. .accordion > .card:last-of-type {
  4280. border-top-left-radius: 0;
  4281. border-top-right-radius: 0; }
  4282. .accordion > .card .card-header {
  4283. margin-bottom: 0px; }
  4284. .pollen-wrapper {
  4285. display: flex;
  4286. flex-direction: column;
  4287. margin-bottom: 20px;
  4288. margin-top: 20px;
  4289. }
  4290. .pollen-wrapper .details {
  4291. margin-bottom: 4px;
  4292. line-height: 19px;
  4293. color: #2d2d2d;
  4294. display: flex;
  4295. }
  4296. .pollen-wrapper .details .details__level {
  4297. display: flex;
  4298. padding-left: 1px;
  4299. opacity: .5;
  4300. }
  4301. .pollen-wrapper .details .details__numeric-value {
  4302. margin-left: auto;
  4303. }
  4304. .pollen-wrapper .level {
  4305. display: grid;
  4306. grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  4307. grid-column-gap: 3px;
  4308. width: 100%;
  4309. }
  4310. .pollen-wrapper .level .level-item {
  4311. display: block;
  4312. height: 4px;
  4313. background: #d1d1d1;
  4314. position: relative;
  4315. overflow: hidden;
  4316. }
  4317. .pollen-wrapper .level.level--1 .level-item span {
  4318. background: #00c853;
  4319. }
  4320. .pollen-wrapper .level .level-item span {
  4321. position: absolute;
  4322. width: 100%;
  4323. height: 100%;
  4324. display: block;
  4325. -webkit-animation: pollen-wrapz .4s;
  4326. animation: pollen-wrapz .4s;
  4327. }
  4328. .bg-poor-gradient {
  4329. background: linear-gradient(90deg, rgb(102, 46, 155) 0%, rgb(99, 20, 161) 50%, rgb(156, 46, 64) 100%);
  4330. }
  4331. .bg-low-gradient {
  4332. background: linear-gradient(90deg, rgb(198, 21, 22) 0%, rgb(224, 90, 14) 50%, rgb(238, 137, 18) 100%);
  4333. }
  4334. .bg-moderate-gradient {
  4335. background: linear-gradient(90deg, rgb(238, 137, 18) 0%, rgb(230, 174, 73) 50%, rgb(243, 216, 75) 100%);
  4336. }
  4337. .bg-good-gradient {
  4338. background: linear-gradient(90deg, rgb(195, 237, 26) 0%, rgb(52, 216, 49) 50%, rgb(24, 215, 169) 100%);
  4339. }
  4340. .bg-excellent-gradient {
  4341. background: linear-gradient(90deg, rgb(68, 216, 207) 0%, rgb(35, 146, 149) 50%, rgb(55, 74, 91) 100%);
  4342. }
  4343. .text-poor-gradient {
  4344. background: linear-gradient(90deg, rgb(102, 46, 155) 0%, rgb(99, 20, 161) 50%, rgb(156, 46, 64) 100%);
  4345. -webkit-background-clip: text;
  4346. -webkit-text-fill-color: transparent;
  4347. }
  4348. .text-low-gradient {
  4349. background: linear-gradient(90deg, rgb(198, 21, 22) 0%, rgb(224, 90, 14) 50%, rgb(238, 137, 18) 100%);
  4350. -webkit-background-clip: text;
  4351. -webkit-text-fill-color: transparent;
  4352. }
  4353. .text-moderate-gradient {
  4354. background: linear-gradient(90deg, rgb(238, 137, 18) 0%, rgb(230, 174, 73) 50%, rgb(243, 216, 75) 100%);
  4355. -webkit-background-clip: text;
  4356. -webkit-text-fill-color: transparent;
  4357. }
  4358. .text-good-gradient {
  4359. background: linear-gradient(90deg, rgb(195, 237, 26) 0%, rgb(52, 216, 49) 50%, rgb(24, 215, 169) 100%);
  4360. -webkit-background-clip: text;
  4361. -webkit-text-fill-color: transparent;
  4362. }
  4363. .text-excellent-gradient {
  4364. background: linear-gradient(90deg, rgb(68, 216, 207) 0%, rgb(35, 146, 149) 50%, rgb(55, 74, 91) 100%);
  4365. -webkit-background-clip: text;
  4366. -webkit-text-fill-color: transparent;
  4367. }
  4368. .aqi-scale-component-wrapper {
  4369. display: block;
  4370. width: 100%;
  4371. padding-left: 24px;
  4372. padding-right: 24px;
  4373. position: relative;
  4374. }
  4375. .aqi__header {
  4376. display: grid;
  4377. grid-template-columns: 100px 1fr;
  4378. grid-template-areas: "value text";
  4379. align-items: center;
  4380. margin-bottom: 6px;
  4381. }
  4382. .aqi__header .aqi__value {
  4383. position: relative;
  4384. grid-area: value;
  4385. grid-template-areas: "item";
  4386. font-size: 57px;
  4387. min-height: 90px;
  4388. color: #2d2d2d;
  4389. display: grid;
  4390. align-items: center;
  4391. justify-content: left;
  4392. transition: color 1s,font-size .3s;
  4393. }
  4394. .aqi__header .aqi-number, .aqi__header .aqi-progress, .aqi__header .aqi-value__no-data {
  4395. grid-area: item;
  4396. transition: opacity .3s;
  4397. }
  4398. .component-wrapper {
  4399. display: inline;
  4400. }
  4401. .aqi-scale {
  4402. display: grid;
  4403. width: 100%;
  4404. grid-template-columns: repeat(5,1fr);
  4405. grid-gap: 2px;
  4406. }
  4407. .aqi-scale .category {
  4408. text-align: center;
  4409. position: relative;
  4410. }
  4411. .aqi-scale .chip {
  4412. font-size: 12px;
  4413. color: #fff;
  4414. line-height: 13px;
  4415. transition: opacity .6s;
  4416. opacity: .7;
  4417. }
  4418. .aqi-scale .chip.active {
  4419. opacity: 1;
  4420. }
  4421. .chip .chip__text {
  4422. /*color: rgba(45,45,45,.8);*/
  4423. }
  4424. .chip .chip__bar {
  4425. margin-top: 6px;
  4426. display: block;
  4427. height: 4px;
  4428. }
  4429. .category__min-value {
  4430. left: 0;
  4431. text-align: left;
  4432. }
  4433. .category__max-value, .category__min-value {
  4434. position: absolute;
  4435. display: inline-block;
  4436. font-size: 12px;
  4437. color: rgba(45,45,45,.8);
  4438. }
  4439. .category__max-value {
  4440. right: 0;
  4441. text-align: right;
  4442. transform: translateX(2px);
  4443. }
  4444. .health-and-pollutant-section {
  4445. max-height: 128px;
  4446. }
  4447. .health-and-pollutant-section .content-current {
  4448. background: #1b1a1a;
  4449. }
  4450. .m-r-0 {
  4451. margin-right: 0px !important;
  4452. }
  4453. .noty_layout [data-name~="mojs-shape"] {
  4454. pointer-events:none
  4455. }
  4456. .bottom-close-splash {
  4457. position: absolute;
  4458. width: 130px;
  4459. right: 20px;
  4460. bottom: 20px;
  4461. }
  4462. .sort-placeholder {
  4463. background-size: contain;
  4464. height: 60px;
  4465. border-radius: 10px;
  4466. border: 3px dotted whitesmoke;
  4467. opacity: .5;
  4468. font-size: 13px;
  4469. margin: 1px 0 -9px;
  4470. text-align: left;
  4471. background: #1f1f1f;
  4472. padding-right: 0px !important;
  4473. padding-left: 0px !important;
  4474. }
  4475. .upgrade-label {
  4476. max-width: 100px;
  4477. min-width: 100px;
  4478. }
  4479. .language-box {
  4480. position: absolute !important;
  4481. }
  4482. .password-alt li .select2-selection__choice__display {
  4483. -webkit-text-security: disc;
  4484. }
  4485. .password-alt li .select2-selection__choice__display:hover {
  4486. -webkit-text-security: unset;
  4487. }
  4488. .logTable .nowrap .log-label {
  4489. /*min-width: 100px !important;
  4490. max-width: 100px !important;
  4491. display: inline-block !important;
  4492. */
  4493. margin: 0 0 0 -4px;
  4494. padding: 0 5px;
  4495. min-width: 120px;
  4496. display: inline-block !important;
  4497. }
  4498. .logTable .nowrap .log-label .btn-label {
  4499. padding: 7px 7px 7px 15px;
  4500. }
  4501. .logTable .nowrap .log-label .text-uppercase {
  4502. margin-left: -7px;
  4503. vertical-align: -webkit-baseline-middle;
  4504. }
  4505. span.select2-selection__choice__remove {
  4506. -webkit-text-security: initial;
  4507. }
  4508. .dropside .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
  4509. margin-bottom: 2px;
  4510. margin-left: 60px;
  4511. top: 0;
  4512. }
  4513. .dropside.open>.dropdown-menu {
  4514. display: inline-flex;
  4515. }
  4516. .dropside .dropdown-menu>li>a {
  4517. display: inline;
  4518. padding: 3px 20px;
  4519. clear: both;
  4520. font-weight: 400;
  4521. line-height: 1.42857143;
  4522. white-space: nowrap;
  4523. }
  4524. .sortable-ghost {
  4525. background: #151515;
  4526. }
  4527. .sortable-chosen {
  4528. background: #2f2f2f;
  4529. }
  4530. td.mouse-grab.sort-tabs-handle {
  4531. background: rgba(0,0,0,.25) !important;
  4532. max-width: 35px !important;
  4533. padding: 0;
  4534. padding-left: 5px;
  4535. }
  4536. .multi-selected,
  4537. .tabEditor.multi-selected:hover {
  4538. background: rgba(0,0,0,.25) !important;
  4539. }
  4540. .input-group-btn:not(:last-child) .btn{
  4541. border-radius: 0;
  4542. }
  4543. .orgLogDiv select, .orgLogDiv input {
  4544. padding: 8px;
  4545. border-radius: 4px;
  4546. }
  4547. #managePluginTable img:before {
  4548. content: "loading";
  4549. height: 45px;
  4550. width: 45px;
  4551. display: block;
  4552. }
  4553. #managePluginTable img:after {
  4554. content: "";
  4555. display: block;
  4556. position: absolute;
  4557. z-index: 2;
  4558. top: 0;
  4559. left: 0;
  4560. width: 100%;
  4561. height: 100%;
  4562. background: url("../../plugins/images/organizr/logo-purple-square.png") no-repeat center center;
  4563. background-size: auto 100%;
  4564. }